convert to_ranged_break_num_registers
[deliverable/binutils-gdb.git] / gdb / target.c
CommitLineData
c906108c 1/* Select target systems and architectures at runtime for GDB.
7998dfc3 2
ecd75fc8 3 Copyright (C) 1990-2014 Free Software Foundation, Inc.
7998dfc3 4
c906108c
SS
5 Contributed by Cygnus Support.
6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22#include "defs.h"
23#include <errno.h>
0e9f083f 24#include <string.h>
c906108c 25#include "target.h"
68c765e2 26#include "target-dcache.h"
c906108c
SS
27#include "gdbcmd.h"
28#include "symtab.h"
29#include "inferior.h"
30#include "bfd.h"
31#include "symfile.h"
32#include "objfiles.h"
4930751a 33#include "dcache.h"
c906108c 34#include <signal.h>
4e052eda 35#include "regcache.h"
0088c768 36#include "gdb_assert.h"
b6591e8b 37#include "gdbcore.h"
9e35dae4 38#include "exceptions.h"
424163ea 39#include "target-descriptions.h"
e1ac3328 40#include "gdbthread.h"
b9db4ced 41#include "solib.h"
07b82ea5 42#include "exec.h"
edb3359d 43#include "inline-frame.h"
2f4d8875 44#include "tracepoint.h"
7313baad 45#include "gdb/fileio.h"
8ffcbaaf 46#include "agent.h"
c906108c 47
a14ed312 48static void target_info (char *, int);
c906108c 49
0a4f40a2 50static void default_terminal_info (struct target_ops *, const char *, int);
c906108c 51
5009afc5
AS
52static int default_watchpoint_addr_within_range (struct target_ops *,
53 CORE_ADDR, CORE_ADDR, int);
54
31568a15
TT
55static int default_region_ok_for_hw_watchpoint (struct target_ops *,
56 CORE_ADDR, int);
e0d24f8d 57
a53f3625
TT
58static void default_rcmd (struct target_ops *, char *, struct ui_file *);
59
4229b31d
TT
60static ptid_t default_get_ada_task_ptid (struct target_ops *self,
61 long lwp, long tid);
62
c25c4a8b 63static void tcomplain (void) ATTRIBUTE_NORETURN;
c906108c 64
a14ed312 65static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
c906108c 66
a14ed312 67static int return_zero (void);
c906108c 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
4ac248ca
YQ
75static target_xfer_partial_ftype default_xfer_partial;
76
c2250ad1
UW
77static struct gdbarch *default_thread_architecture (struct target_ops *ops,
78 ptid_t ptid);
79
0b5a2719
TT
80static int dummy_find_memory_regions (struct target_ops *self,
81 find_memory_region_ftype ignore1,
82 void *ignore2);
83
16f796b1
TT
84static char *dummy_make_corefile_notes (struct target_ops *self,
85 bfd *ignore1, int *ignore2);
86
6b84065d
TT
87static int find_default_can_async_p (struct target_ops *ignore);
88
89static int find_default_is_async_p (struct target_ops *ignore);
90
fe31bf5b
TT
91static enum exec_direction_kind default_execution_direction
92 (struct target_ops *self);
93
1101cb7b
TT
94#include "target-delegates.c"
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
f32dbf8c
MM
102static void debug_to_prepare_to_store (struct target_ops *self,
103 struct regcache *);
c906108c 104
a14ed312 105static void debug_to_files_info (struct target_ops *);
c906108c 106
3db08215 107static int debug_to_insert_breakpoint (struct target_ops *, struct gdbarch *,
a6d9a66e 108 struct bp_target_info *);
c906108c 109
3db08215 110static int debug_to_remove_breakpoint (struct target_ops *, struct gdbarch *,
a6d9a66e 111 struct bp_target_info *);
c906108c 112
5461485a
TT
113static int debug_to_can_use_hw_breakpoint (struct target_ops *self,
114 int, int, int);
ccaa32c7 115
23a26771
TT
116static int debug_to_insert_hw_breakpoint (struct target_ops *self,
117 struct gdbarch *,
a6d9a66e 118 struct bp_target_info *);
ccaa32c7 119
a64dc96c
TT
120static int debug_to_remove_hw_breakpoint (struct target_ops *self,
121 struct gdbarch *,
a6d9a66e 122 struct bp_target_info *);
ccaa32c7 123
7bb99c53
TT
124static int debug_to_insert_watchpoint (struct target_ops *self,
125 CORE_ADDR, int, int,
0cf6dd15 126 struct expression *);
ccaa32c7 127
11b5219a
TT
128static int debug_to_remove_watchpoint (struct target_ops *self,
129 CORE_ADDR, int, int,
0cf6dd15 130 struct expression *);
ccaa32c7 131
4aa7a7f5 132static int debug_to_stopped_data_address (struct target_ops *, CORE_ADDR *);
ccaa32c7 133
5009afc5
AS
134static int debug_to_watchpoint_addr_within_range (struct target_ops *,
135 CORE_ADDR, CORE_ADDR, int);
136
31568a15
TT
137static int debug_to_region_ok_for_hw_watchpoint (struct target_ops *self,
138 CORE_ADDR, int);
e0d24f8d 139
c3a5ff89
TT
140static int debug_to_can_accel_watchpoint_condition (struct target_ops *self,
141 CORE_ADDR, int, int,
0cf6dd15
TJB
142 struct expression *);
143
c42bf286 144static void debug_to_terminal_init (struct target_ops *self);
c906108c 145
d2f640d4 146static void debug_to_terminal_inferior (struct target_ops *self);
c906108c 147
2e1e1a19 148static void debug_to_terminal_ours_for_output (struct target_ops *self);
c906108c 149
ae3bd431 150static void debug_to_terminal_save_ours (struct target_ops *self);
a790ad35 151
e3594fd1 152static void debug_to_terminal_ours (struct target_ops *self);
c906108c 153
71a9f134 154static void debug_to_load (struct target_ops *self, char *, int);
c906108c 155
da82bd6b 156static int debug_to_can_run (struct target_ops *self);
c906108c 157
1eab8a48 158static void debug_to_stop (struct target_ops *self, ptid_t);
c906108c 159
c906108c 160/* Pointer to array of target architecture structures; the size of the
2bc416ba 161 array; the current index into the array; the allocated size of the
c906108c
SS
162 array. */
163struct target_ops **target_structs;
164unsigned target_struct_size;
c906108c
SS
165unsigned target_struct_allocsize;
166#define DEFAULT_ALLOCSIZE 10
167
168/* The initial current target, so that there is always a semi-valid
169 current target. */
170
171static struct target_ops dummy_target;
172
173/* Top of target stack. */
174
258b763a 175static struct target_ops *target_stack;
c906108c
SS
176
177/* The target structure we are currently using to talk to a process
178 or file or whatever "inferior" we have. */
179
180struct target_ops current_target;
181
182/* Command list for target. */
183
184static struct cmd_list_element *targetlist = NULL;
185
cf7a04e8
DJ
186/* Nonzero if we should trust readonly sections from the
187 executable when reading memory. */
188
189static int trust_readonly = 0;
190
8defab1a
DJ
191/* Nonzero if we should show true memory content including
192 memory breakpoint inserted by gdb. */
193
194static int show_memory_breakpoints = 0;
195
d914c394
SS
196/* These globals control whether GDB attempts to perform these
197 operations; they are useful for targets that need to prevent
198 inadvertant disruption, such as in non-stop mode. */
199
200int may_write_registers = 1;
201
202int may_write_memory = 1;
203
204int may_insert_breakpoints = 1;
205
206int may_insert_tracepoints = 1;
207
208int may_insert_fast_tracepoints = 1;
209
210int may_stop = 1;
211
c906108c
SS
212/* Non-zero if we want to see trace of target level stuff. */
213
ccce17b0 214static unsigned int targetdebug = 0;
920d2a44
AC
215static void
216show_targetdebug (struct ui_file *file, int from_tty,
217 struct cmd_list_element *c, const char *value)
218{
219 fprintf_filtered (file, _("Target debugging is %s.\n"), value);
220}
c906108c 221
a14ed312 222static void setup_target_debug (void);
c906108c 223
c906108c
SS
224/* The user just typed 'target' without the name of a target. */
225
c906108c 226static void
fba45db2 227target_command (char *arg, int from_tty)
c906108c
SS
228{
229 fputs_filtered ("Argument required (target name). Try `help target'\n",
230 gdb_stdout);
231}
232
c35b1492
PA
233/* Default target_has_* methods for process_stratum targets. */
234
235int
236default_child_has_all_memory (struct target_ops *ops)
237{
238 /* If no inferior selected, then we can't read memory here. */
239 if (ptid_equal (inferior_ptid, null_ptid))
240 return 0;
241
242 return 1;
243}
244
245int
246default_child_has_memory (struct target_ops *ops)
247{
248 /* If no inferior selected, then we can't read memory here. */
249 if (ptid_equal (inferior_ptid, null_ptid))
250 return 0;
251
252 return 1;
253}
254
255int
256default_child_has_stack (struct target_ops *ops)
257{
258 /* If no inferior selected, there's no stack. */
259 if (ptid_equal (inferior_ptid, null_ptid))
260 return 0;
261
262 return 1;
263}
264
265int
266default_child_has_registers (struct target_ops *ops)
267{
268 /* Can't read registers from no inferior. */
269 if (ptid_equal (inferior_ptid, null_ptid))
270 return 0;
271
272 return 1;
273}
274
275int
aeaec162 276default_child_has_execution (struct target_ops *ops, ptid_t the_ptid)
c35b1492
PA
277{
278 /* If there's no thread selected, then we can't make it run through
279 hoops. */
aeaec162 280 if (ptid_equal (the_ptid, null_ptid))
c35b1492
PA
281 return 0;
282
283 return 1;
284}
285
286
287int
288target_has_all_memory_1 (void)
289{
290 struct target_ops *t;
291
292 for (t = current_target.beneath; t != NULL; t = t->beneath)
293 if (t->to_has_all_memory (t))
294 return 1;
295
296 return 0;
297}
298
299int
300target_has_memory_1 (void)
301{
302 struct target_ops *t;
303
304 for (t = current_target.beneath; t != NULL; t = t->beneath)
305 if (t->to_has_memory (t))
306 return 1;
307
308 return 0;
309}
310
311int
312target_has_stack_1 (void)
313{
314 struct target_ops *t;
315
316 for (t = current_target.beneath; t != NULL; t = t->beneath)
317 if (t->to_has_stack (t))
318 return 1;
319
320 return 0;
321}
322
323int
324target_has_registers_1 (void)
325{
326 struct target_ops *t;
327
328 for (t = current_target.beneath; t != NULL; t = t->beneath)
329 if (t->to_has_registers (t))
330 return 1;
331
332 return 0;
333}
334
335int
aeaec162 336target_has_execution_1 (ptid_t the_ptid)
c35b1492
PA
337{
338 struct target_ops *t;
339
340 for (t = current_target.beneath; t != NULL; t = t->beneath)
aeaec162 341 if (t->to_has_execution (t, the_ptid))
c35b1492
PA
342 return 1;
343
344 return 0;
345}
346
aeaec162
TT
347int
348target_has_execution_current (void)
349{
350 return target_has_execution_1 (inferior_ptid);
351}
352
c22a2b88
TT
353/* Complete initialization of T. This ensures that various fields in
354 T are set, if needed by the target implementation. */
c906108c
SS
355
356void
c22a2b88 357complete_target_initialization (struct target_ops *t)
c906108c 358{
0088c768 359 /* Provide default values for all "must have" methods. */
0b603eba
AC
360 if (t->to_xfer_partial == NULL)
361 t->to_xfer_partial = default_xfer_partial;
0088c768 362
c35b1492
PA
363 if (t->to_has_all_memory == NULL)
364 t->to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
365
366 if (t->to_has_memory == NULL)
367 t->to_has_memory = (int (*) (struct target_ops *)) return_zero;
368
369 if (t->to_has_stack == NULL)
370 t->to_has_stack = (int (*) (struct target_ops *)) return_zero;
371
372 if (t->to_has_registers == NULL)
373 t->to_has_registers = (int (*) (struct target_ops *)) return_zero;
374
375 if (t->to_has_execution == NULL)
aeaec162 376 t->to_has_execution = (int (*) (struct target_ops *, ptid_t)) return_zero;
1101cb7b
TT
377
378 install_delegators (t);
c22a2b88
TT
379}
380
381/* Add possible target architecture T to the list and add a new
382 command 'target T->to_shortname'. Set COMPLETER as the command's
383 completer if not NULL. */
384
385void
386add_target_with_completer (struct target_ops *t,
387 completer_ftype *completer)
388{
389 struct cmd_list_element *c;
390
391 complete_target_initialization (t);
c35b1492 392
c906108c
SS
393 if (!target_structs)
394 {
395 target_struct_allocsize = DEFAULT_ALLOCSIZE;
396 target_structs = (struct target_ops **) xmalloc
397 (target_struct_allocsize * sizeof (*target_structs));
398 }
399 if (target_struct_size >= target_struct_allocsize)
400 {
401 target_struct_allocsize *= 2;
402 target_structs = (struct target_ops **)
c5aa993b
JM
403 xrealloc ((char *) target_structs,
404 target_struct_allocsize * sizeof (*target_structs));
c906108c
SS
405 }
406 target_structs[target_struct_size++] = t;
c906108c
SS
407
408 if (targetlist == NULL)
1bedd215
AC
409 add_prefix_cmd ("target", class_run, target_command, _("\
410Connect to a target machine or process.\n\
c906108c
SS
411The first argument is the type or protocol of the target machine.\n\
412Remaining arguments are interpreted by the target protocol. For more\n\
413information on the arguments for a particular protocol, type\n\
1bedd215 414`help target ' followed by the protocol name."),
c906108c 415 &targetlist, "target ", 0, &cmdlist);
9852c492
YQ
416 c = add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc,
417 &targetlist);
418 if (completer != NULL)
419 set_cmd_completer (c, completer);
420}
421
422/* Add a possible target architecture to the list. */
423
424void
425add_target (struct target_ops *t)
426{
427 add_target_with_completer (t, NULL);
c906108c
SS
428}
429
b48d48eb
MM
430/* See target.h. */
431
432void
433add_deprecated_target_alias (struct target_ops *t, char *alias)
434{
435 struct cmd_list_element *c;
436 char *alt;
437
438 /* If we use add_alias_cmd, here, we do not get the deprecated warning,
439 see PR cli/15104. */
440 c = add_cmd (alias, no_class, t->to_open, t->to_doc, &targetlist);
441 alt = xstrprintf ("target %s", t->to_shortname);
442 deprecate_cmd (c, alt);
443}
444
c906108c
SS
445/* Stub functions */
446
447void
fba45db2 448target_ignore (void)
c906108c
SS
449{
450}
451
7d85a9c0
JB
452void
453target_kill (void)
454{
455 struct target_ops *t;
456
457 for (t = current_target.beneath; t != NULL; t = t->beneath)
458 if (t->to_kill != NULL)
459 {
460 if (targetdebug)
461 fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
462
463 t->to_kill (t);
464 return;
465 }
466
467 noprocess ();
468}
469
11cf8741
JM
470void
471target_load (char *arg, int from_tty)
472{
4e5d721f 473 target_dcache_invalidate ();
71a9f134 474 (*current_target.to_load) (&current_target, arg, from_tty);
11cf8741
JM
475}
476
947b8855
PA
477void
478target_create_inferior (char *exec_file, char *args,
479 char **env, int from_tty)
136d6dae
VP
480{
481 struct target_ops *t;
5d502164 482
136d6dae
VP
483 for (t = current_target.beneath; t != NULL; t = t->beneath)
484 {
485 if (t->to_create_inferior != NULL)
486 {
487 t->to_create_inferior (t, exec_file, args, env, from_tty);
947b8855
PA
488 if (targetdebug)
489 fprintf_unfiltered (gdb_stdlog,
490 "target_create_inferior (%s, %s, xxx, %d)\n",
491 exec_file, args, from_tty);
136d6dae
VP
492 return;
493 }
494 }
495
496 internal_error (__FILE__, __LINE__,
9b20d036 497 _("could not find a target to create inferior"));
136d6dae
VP
498}
499
d9d2d8b6
PA
500void
501target_terminal_inferior (void)
502{
503 /* A background resume (``run&'') should leave GDB in control of the
c378eb4e 504 terminal. Use target_can_async_p, not target_is_async_p, since at
ba7f6c64
VP
505 this point the target is not async yet. However, if sync_execution
506 is not set, we know it will become async prior to resume. */
507 if (target_can_async_p () && !sync_execution)
d9d2d8b6
PA
508 return;
509
510 /* If GDB is resuming the inferior in the foreground, install
511 inferior's terminal modes. */
d2f640d4 512 (*current_target.to_terminal_inferior) (&current_target);
d9d2d8b6 513}
136d6dae 514
c906108c 515static int
fba45db2
KB
516nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
517 struct target_ops *t)
c906108c 518{
c378eb4e
MS
519 errno = EIO; /* Can't read/write this location. */
520 return 0; /* No bytes handled. */
c906108c
SS
521}
522
523static void
fba45db2 524tcomplain (void)
c906108c 525{
8a3fe4f8 526 error (_("You can't do that when your target is `%s'"),
c906108c
SS
527 current_target.to_shortname);
528}
529
530void
fba45db2 531noprocess (void)
c906108c 532{
8a3fe4f8 533 error (_("You can't do that without a process to debug."));
c906108c
SS
534}
535
c906108c 536static void
0a4f40a2 537default_terminal_info (struct target_ops *self, const char *args, int from_tty)
c906108c 538{
a3f17187 539 printf_unfiltered (_("No saved terminal information.\n"));
c906108c
SS
540}
541
0ef643c8
JB
542/* A default implementation for the to_get_ada_task_ptid target method.
543
544 This function builds the PTID by using both LWP and TID as part of
545 the PTID lwp and tid elements. The pid used is the pid of the
546 inferior_ptid. */
547
2c0b251b 548static ptid_t
1e6b91a4 549default_get_ada_task_ptid (struct target_ops *self, long lwp, long tid)
0ef643c8
JB
550{
551 return ptid_build (ptid_get_pid (inferior_ptid), lwp, tid);
552}
553
32231432 554static enum exec_direction_kind
4c612759 555default_execution_direction (struct target_ops *self)
32231432
PA
556{
557 if (!target_can_execute_reverse)
558 return EXEC_FORWARD;
559 else if (!target_can_async_p ())
560 return EXEC_FORWARD;
561 else
562 gdb_assert_not_reached ("\
563to_execution_direction must be implemented for reverse async");
564}
565
7998dfc3
AC
566/* Go through the target stack from top to bottom, copying over zero
567 entries in current_target, then filling in still empty entries. In
568 effect, we are doing class inheritance through the pushed target
569 vectors.
570
571 NOTE: cagney/2003-10-17: The problem with this inheritance, as it
572 is currently implemented, is that it discards any knowledge of
573 which target an inherited method originally belonged to.
574 Consequently, new new target methods should instead explicitly and
575 locally search the target stack for the target that can handle the
576 request. */
c906108c
SS
577
578static void
7998dfc3 579update_current_target (void)
c906108c 580{
7998dfc3
AC
581 struct target_ops *t;
582
08d8bcd7 583 /* First, reset current's contents. */
7998dfc3
AC
584 memset (&current_target, 0, sizeof (current_target));
585
1101cb7b
TT
586 /* Install the delegators. */
587 install_delegators (&current_target);
588
7998dfc3
AC
589#define INHERIT(FIELD, TARGET) \
590 if (!current_target.FIELD) \
591 current_target.FIELD = (TARGET)->FIELD
592
593 for (t = target_stack; t; t = t->beneath)
594 {
595 INHERIT (to_shortname, t);
596 INHERIT (to_longname, t);
597 INHERIT (to_doc, t);
b52323fa
UW
598 /* Do not inherit to_open. */
599 /* Do not inherit to_close. */
136d6dae 600 /* Do not inherit to_attach. */
bebd3233 601 /* Do not inherit to_post_attach. */
dc177b7a 602 INHERIT (to_attach_no_wait, t);
136d6dae 603 /* Do not inherit to_detach. */
597320e7 604 /* Do not inherit to_disconnect. */
28439f5e 605 /* Do not inherit to_resume. */
117de6a9 606 /* Do not inherit to_wait. */
28439f5e
PA
607 /* Do not inherit to_fetch_registers. */
608 /* Do not inherit to_store_registers. */
6c628163 609 /* Do not inherit to_prepare_to_store. */
c8e73a31 610 INHERIT (deprecated_xfer_memory, t);
f86e59b2 611 /* Do not inherit to_files_info. */
3db08215
MM
612 /* Do not inherit to_insert_breakpoint. */
613 /* Do not inherit to_remove_breakpoint. */
52b51d06 614 /* Do not inherit to_can_use_hw_breakpoint. */
61b371f9 615 /* Do not inherit to_insert_hw_breakpoint. */
418dabac 616 /* Do not inherit to_remove_hw_breakpoint. */
f1310107 617 /* Do not inherit to_ranged_break_num_registers. */
016facd4 618 /* Do not inherit to_insert_watchpoint. */
61dd109f 619 /* Do not inherit to_remove_watchpoint. */
9c06b0b4
TJB
620 /* Do not inherit to_insert_mask_watchpoint. */
621 /* Do not inherit to_remove_mask_watchpoint. */
6b84065d 622 /* Do not inherit to_stopped_data_address. */
74174d2e 623 INHERIT (to_have_steppable_watchpoint, t);
7998dfc3 624 INHERIT (to_have_continuable_watchpoint, t);
6b84065d 625 /* Do not inherit to_stopped_by_watchpoint. */
65f160a9 626 /* Do not inherit to_watchpoint_addr_within_range. */
d03655e4 627 /* Do not inherit to_region_ok_for_hw_watchpoint. */
77cdffe9 628 /* Do not inherit to_can_accel_watchpoint_condition. */
9c06b0b4 629 /* Do not inherit to_masked_watch_num_registers. */
0343661d 630 /* Do not inherit to_terminal_init. */
ddeaacc9 631 /* Do not inherit to_terminal_inferior. */
74fcbef9 632 /* Do not inherit to_terminal_ours_for_output. */
e4a733f1 633 /* Do not inherit to_terminal_ours. */
c6ea8f79 634 /* Do not inherit to_terminal_save_ours. */
e19e919f 635 /* Do not inherit to_terminal_info. */
7d85a9c0 636 /* Do not inherit to_kill. */
7634da87 637 /* Do not inherit to_load. */
136d6dae 638 /* Do no inherit to_create_inferior. */
340ba4bf 639 /* Do not inherit to_post_startup_inferior. */
5958ebeb 640 /* Do not inherit to_insert_fork_catchpoint. */
e1a21fb7 641 /* Do not inherit to_remove_fork_catchpoint. */
7e18a8dc 642 /* Do not inherit to_insert_vfork_catchpoint. */
95c3375e 643 /* Do not inherit to_remove_vfork_catchpoint. */
ee057212 644 /* Do not inherit to_follow_fork. */
62f64d7a 645 /* Do not inherit to_insert_exec_catchpoint. */
cda0f38c 646 /* Do not inherit to_remove_exec_catchpoint. */
6a9fa051 647 /* Do not inherit to_set_syscall_catchpoint. */
0db88c1d 648 /* Do not inherit to_has_exited. */
82892036 649 /* Do not inherit to_mourn_inferior. */
7998dfc3 650 INHERIT (to_can_run, t);
2455069d 651 /* Do not inherit to_pass_signals. */
9b224c5e 652 /* Do not inherit to_program_signals. */
28439f5e
PA
653 /* Do not inherit to_thread_alive. */
654 /* Do not inherit to_find_new_threads. */
117de6a9 655 /* Do not inherit to_pid_to_str. */
4a7e6dda 656 /* Do not inherit to_extra_thread_info. */
825828fc 657 /* Do not inherit to_thread_name. */
46ee7e8d 658 /* Do not inherit to_stop. */
4b8a223f 659 /* Do not inherit to_xfer_partial. */
a53f3625 660 /* Do not inherit to_rcmd. */
830ca330 661 /* Do not inherit to_pid_to_exec_file. */
d9cb0195 662 /* Do not inherit to_log_command. */
7998dfc3 663 INHERIT (to_stratum, t);
c378eb4e
MS
664 /* Do not inherit to_has_all_memory. */
665 /* Do not inherit to_has_memory. */
666 /* Do not inherit to_has_stack. */
667 /* Do not inherit to_has_registers. */
668 /* Do not inherit to_has_execution. */
7998dfc3 669 INHERIT (to_has_thread_control, t);
6b84065d
TT
670 /* Do not inherit to_can_async_p. */
671 /* Do not inherit to_is_async_p. */
672 /* Do not inherit to_async. */
0b5a2719 673 /* Do not inherit to_find_memory_regions. */
16f796b1 674 /* Do not inherit to_make_corefile_notes. */
3dbafbbb 675 /* Do not inherit to_get_bookmark. */
9bb9d61d 676 /* Do not inherit to_goto_bookmark. */
117de6a9 677 /* Do not inherit to_get_thread_local_address. */
53e1cfc7 678 /* Do not inherit to_can_execute_reverse. */
fe31bf5b 679 /* Do not inherit to_execution_direction. */
43eba180 680 /* Do not inherit to_thread_architecture. */
424163ea 681 /* Do not inherit to_read_description. */
4229b31d 682 /* Do not inherit to_get_ada_task_ptid. */
08388c79 683 /* Do not inherit to_search_memory. */
a7304748 684 /* Do not inherit to_supports_multi_process. */
aab1b22d 685 /* Do not inherit to_supports_enable_disable_tracepoint. */
9409d39e 686 /* Do not inherit to_supports_string_tracing. */
5536135b 687 /* Do not inherit to_trace_init. */
9a980a22 688 /* Do not inherit to_download_tracepoint. */
719acc4a 689 /* Do not inherit to_can_download_tracepoint. */
94eb98b9 690 /* Do not inherit to_download_trace_state_variable. */
151f70f1 691 /* Do not inherit to_enable_tracepoint. */
05c41993 692 /* Do not inherit to_disable_tracepoint. */
86dd181d 693 /* Do not inherit to_trace_set_readonly_regions. */
25da2e80 694 /* Do not inherit to_trace_start. */
4072d4ff 695 /* Do not inherit to_get_trace_status. */
6fea14cd 696 /* Do not inherit to_get_tracepoint_status. */
e51c07ea 697 /* Do not inherit to_trace_stop. */
afc94e66 698 /* Do not inherit to_trace_find. */
959bcd0b 699 /* Do not inherit to_get_trace_state_variable_value. */
a2e6c147 700 /* Do not inherit to_save_trace_data. */
1e949b00 701 /* Do not inherit to_upload_tracepoints. */
08120467 702 /* Do not inherit to_upload_trace_state_variables. */
ace92e7d 703 /* Do not inherit to_get_raw_trace_data. */
9249843f 704 /* Do not inherit to_get_min_fast_tracepoint_insn_len. */
0bcfeddf 705 /* Do not inherit to_set_disconnected_tracing. */
8d526939 706 /* Do not inherit to_set_circular_trace_buffer. */
91df8d1d 707 /* Do not inherit to_set_trace_buffer_size. */
8586ccaa 708 /* Do not inherit to_set_trace_notes. */
22bcceee 709 /* Do not inherit to_get_tib_address. */
dcd6917f 710 /* Do not inherit to_set_permissions. */
4c3e4425 711 /* Do not inherit to_static_tracepoint_marker_at. */
d6522a22 712 /* Do not inherit to_static_tracepoint_markers_by_strid. */
92155eeb 713 /* Do not inherit to_traceframe_info. */
d9db5b21 714 /* Do not inherit to_use_agent. */
9a7d8b48 715 /* Do not inherit to_can_use_agent. */
0de91722 716 /* Do not inherit to_augmented_libraries_svr4_read. */
7998dfc3 717 INHERIT (to_magic, t);
ccfde2a0
TT
718 /* Do not inherit
719 to_supports_evaluation_of_breakpoint_conditions. */
843f59ed 720 /* Do not inherit to_can_run_breakpoint_commands. */
fd79ecee 721 /* Do not inherit to_memory_map. */
a76d924d
DJ
722 /* Do not inherit to_flash_erase. */
723 /* Do not inherit to_flash_done. */
7998dfc3
AC
724 }
725#undef INHERIT
726
727 /* Clean up a target struct so it no longer has any zero pointers in
0088c768
AC
728 it. Some entries are defaulted to a method that print an error,
729 others are hard-wired to a standard recursive default. */
c906108c
SS
730
731#define de_fault(field, value) \
7998dfc3
AC
732 if (!current_target.field) \
733 current_target.field = value
0d06e24b 734
2bc416ba
DJ
735 de_fault (to_open,
736 (void (*) (char *, int))
0d06e24b 737 tcomplain);
2bc416ba 738 de_fault (to_close,
de90e03d 739 (void (*) (struct target_ops *))
0d06e24b 740 target_ignore);
2bc416ba 741 de_fault (deprecated_xfer_memory,
3e43a32a
MS
742 (int (*) (CORE_ADDR, gdb_byte *, int, int,
743 struct mem_attrib *, struct target_ops *))
0d06e24b 744 nomemory);
2bc416ba 745 de_fault (to_can_run,
da82bd6b 746 (int (*) (struct target_ops *))
0d06e24b 747 return_zero);
424163ea 748 current_target.to_read_description = NULL;
32231432 749
c906108c 750#undef de_fault
c906108c 751
7998dfc3
AC
752 /* Finally, position the target-stack beneath the squashed
753 "current_target". That way code looking for a non-inherited
754 target method can quickly and simply find it. */
755 current_target.beneath = target_stack;
b4b61fdb
DJ
756
757 if (targetdebug)
758 setup_target_debug ();
c906108c
SS
759}
760
761/* Push a new target type into the stack of the existing target accessors,
762 possibly superseding some of the existing accessors.
763
c906108c
SS
764 Rather than allow an empty stack, we always have the dummy target at
765 the bottom stratum, so we can call the function vectors without
766 checking them. */
767
b26a4dcb 768void
fba45db2 769push_target (struct target_ops *t)
c906108c 770{
258b763a 771 struct target_ops **cur;
c906108c
SS
772
773 /* Check magic number. If wrong, it probably means someone changed
774 the struct definition, but not all the places that initialize one. */
775 if (t->to_magic != OPS_MAGIC)
776 {
c5aa993b
JM
777 fprintf_unfiltered (gdb_stderr,
778 "Magic number of %s target struct wrong\n",
779 t->to_shortname);
3e43a32a
MS
780 internal_error (__FILE__, __LINE__,
781 _("failed internal consistency check"));
c906108c
SS
782 }
783
258b763a
AC
784 /* Find the proper stratum to install this target in. */
785 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
c906108c 786 {
258b763a 787 if ((int) (t->to_stratum) >= (int) (*cur)->to_stratum)
c906108c
SS
788 break;
789 }
790
258b763a 791 /* If there's already targets at this stratum, remove them. */
88c231eb 792 /* FIXME: cagney/2003-10-15: I think this should be popping all
258b763a
AC
793 targets to CUR, and not just those at this stratum level. */
794 while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
795 {
796 /* There's already something at this stratum level. Close it,
797 and un-hook it from the stack. */
798 struct target_ops *tmp = (*cur);
5d502164 799
258b763a
AC
800 (*cur) = (*cur)->beneath;
801 tmp->beneath = NULL;
460014f5 802 target_close (tmp);
258b763a 803 }
c906108c
SS
804
805 /* We have removed all targets in our stratum, now add the new one. */
258b763a
AC
806 t->beneath = (*cur);
807 (*cur) = t;
c906108c
SS
808
809 update_current_target ();
c906108c
SS
810}
811
2bc416ba 812/* Remove a target_ops vector from the stack, wherever it may be.
c906108c
SS
813 Return how many times it was removed (0 or 1). */
814
815int
fba45db2 816unpush_target (struct target_ops *t)
c906108c 817{
258b763a
AC
818 struct target_ops **cur;
819 struct target_ops *tmp;
c906108c 820
c8d104ad
PA
821 if (t->to_stratum == dummy_stratum)
822 internal_error (__FILE__, __LINE__,
9b20d036 823 _("Attempt to unpush the dummy target"));
c8d104ad 824
c906108c 825 /* Look for the specified target. Note that we assume that a target
c378eb4e 826 can only occur once in the target stack. */
c906108c 827
258b763a
AC
828 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
829 {
830 if ((*cur) == t)
831 break;
832 }
c906108c 833
305436e0
PA
834 /* If we don't find target_ops, quit. Only open targets should be
835 closed. */
258b763a 836 if ((*cur) == NULL)
305436e0 837 return 0;
5269965e 838
c378eb4e 839 /* Unchain the target. */
258b763a
AC
840 tmp = (*cur);
841 (*cur) = (*cur)->beneath;
842 tmp->beneath = NULL;
c906108c
SS
843
844 update_current_target ();
c906108c 845
305436e0
PA
846 /* Finally close the target. Note we do this after unchaining, so
847 any target method calls from within the target_close
848 implementation don't end up in T anymore. */
460014f5 849 target_close (t);
305436e0 850
c906108c
SS
851 return 1;
852}
853
aa76d38d 854void
460014f5 855pop_all_targets_above (enum strata above_stratum)
aa76d38d 856{
87ab71f0 857 while ((int) (current_target.to_stratum) > (int) above_stratum)
aa76d38d 858 {
aa76d38d
PA
859 if (!unpush_target (target_stack))
860 {
861 fprintf_unfiltered (gdb_stderr,
862 "pop_all_targets couldn't find target %s\n",
b52323fa 863 target_stack->to_shortname);
aa76d38d
PA
864 internal_error (__FILE__, __LINE__,
865 _("failed internal consistency check"));
866 break;
867 }
868 }
869}
870
87ab71f0 871void
460014f5 872pop_all_targets (void)
87ab71f0 873{
460014f5 874 pop_all_targets_above (dummy_stratum);
87ab71f0
PA
875}
876
c0edd9ed
JK
877/* Return 1 if T is now pushed in the target stack. Return 0 otherwise. */
878
879int
880target_is_pushed (struct target_ops *t)
881{
882 struct target_ops **cur;
883
884 /* Check magic number. If wrong, it probably means someone changed
885 the struct definition, but not all the places that initialize one. */
886 if (t->to_magic != OPS_MAGIC)
887 {
888 fprintf_unfiltered (gdb_stderr,
889 "Magic number of %s target struct wrong\n",
890 t->to_shortname);
3e43a32a
MS
891 internal_error (__FILE__, __LINE__,
892 _("failed internal consistency check"));
c0edd9ed
JK
893 }
894
895 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
896 if (*cur == t)
897 return 1;
898
899 return 0;
900}
901
72f5cf0e 902/* Using the objfile specified in OBJFILE, find the address for the
9e35dae4
DJ
903 current thread's thread-local storage with offset OFFSET. */
904CORE_ADDR
905target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)
906{
907 volatile CORE_ADDR addr = 0;
117de6a9
PA
908 struct target_ops *target;
909
910 for (target = current_target.beneath;
911 target != NULL;
912 target = target->beneath)
913 {
914 if (target->to_get_thread_local_address != NULL)
915 break;
916 }
9e35dae4 917
117de6a9 918 if (target != NULL
f5656ead 919 && gdbarch_fetch_tls_load_module_address_p (target_gdbarch ()))
9e35dae4
DJ
920 {
921 ptid_t ptid = inferior_ptid;
922 volatile struct gdb_exception ex;
923
924 TRY_CATCH (ex, RETURN_MASK_ALL)
925 {
926 CORE_ADDR lm_addr;
927
928 /* Fetch the load module address for this objfile. */
f5656ead 929 lm_addr = gdbarch_fetch_tls_load_module_address (target_gdbarch (),
9e35dae4
DJ
930 objfile);
931 /* If it's 0, throw the appropriate exception. */
932 if (lm_addr == 0)
933 throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
934 _("TLS load module not found"));
935
3e43a32a
MS
936 addr = target->to_get_thread_local_address (target, ptid,
937 lm_addr, offset);
9e35dae4
DJ
938 }
939 /* If an error occurred, print TLS related messages here. Otherwise,
940 throw the error to some higher catcher. */
941 if (ex.reason < 0)
942 {
943 int objfile_is_library = (objfile->flags & OBJF_SHARED);
944
945 switch (ex.error)
946 {
947 case TLS_NO_LIBRARY_SUPPORT_ERROR:
3e43a32a
MS
948 error (_("Cannot find thread-local variables "
949 "in this thread library."));
9e35dae4
DJ
950 break;
951 case TLS_LOAD_MODULE_NOT_FOUND_ERROR:
952 if (objfile_is_library)
953 error (_("Cannot find shared library `%s' in dynamic"
4262abfb 954 " linker's load module list"), objfile_name (objfile));
9e35dae4
DJ
955 else
956 error (_("Cannot find executable file `%s' in dynamic"
4262abfb 957 " linker's load module list"), objfile_name (objfile));
9e35dae4
DJ
958 break;
959 case TLS_NOT_ALLOCATED_YET_ERROR:
960 if (objfile_is_library)
961 error (_("The inferior has not yet allocated storage for"
962 " thread-local variables in\n"
963 "the shared library `%s'\n"
964 "for %s"),
4262abfb 965 objfile_name (objfile), target_pid_to_str (ptid));
9e35dae4
DJ
966 else
967 error (_("The inferior has not yet allocated storage for"
968 " thread-local variables in\n"
969 "the executable `%s'\n"
970 "for %s"),
4262abfb 971 objfile_name (objfile), target_pid_to_str (ptid));
9e35dae4
DJ
972 break;
973 case TLS_GENERIC_ERROR:
974 if (objfile_is_library)
975 error (_("Cannot find thread-local storage for %s, "
976 "shared library %s:\n%s"),
977 target_pid_to_str (ptid),
4262abfb 978 objfile_name (objfile), ex.message);
9e35dae4
DJ
979 else
980 error (_("Cannot find thread-local storage for %s, "
981 "executable file %s:\n%s"),
982 target_pid_to_str (ptid),
4262abfb 983 objfile_name (objfile), ex.message);
9e35dae4
DJ
984 break;
985 default:
986 throw_exception (ex);
987 break;
988 }
989 }
990 }
991 /* It wouldn't be wrong here to try a gdbarch method, too; finding
992 TLS is an ABI-specific thing. But we don't do that yet. */
993 else
994 error (_("Cannot find thread-local variables on this target"));
995
996 return addr;
997}
998
6be7b56e 999const char *
9b409511 1000target_xfer_status_to_string (enum target_xfer_status err)
6be7b56e
PA
1001{
1002#define CASE(X) case X: return #X
1003 switch (err)
1004 {
1005 CASE(TARGET_XFER_E_IO);
1006 CASE(TARGET_XFER_E_UNAVAILABLE);
1007 default:
1008 return "<unknown>";
1009 }
1010#undef CASE
1011};
1012
1013
c906108c
SS
1014#undef MIN
1015#define MIN(A, B) (((A) <= (B)) ? (A) : (B))
1016
1017/* target_read_string -- read a null terminated string, up to LEN bytes,
1018 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
1019 Set *STRING to a pointer to malloc'd memory containing the data; the caller
1020 is responsible for freeing it. Return the number of bytes successfully
1021 read. */
1022
1023int
fba45db2 1024target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
c906108c 1025{
c2e8b827 1026 int tlen, offset, i;
1b0ba102 1027 gdb_byte buf[4];
c906108c
SS
1028 int errcode = 0;
1029 char *buffer;
1030 int buffer_allocated;
1031 char *bufptr;
1032 unsigned int nbytes_read = 0;
1033
6217bf3e
MS
1034 gdb_assert (string);
1035
c906108c
SS
1036 /* Small for testing. */
1037 buffer_allocated = 4;
1038 buffer = xmalloc (buffer_allocated);
1039 bufptr = buffer;
1040
c906108c
SS
1041 while (len > 0)
1042 {
1043 tlen = MIN (len, 4 - (memaddr & 3));
1044 offset = memaddr & 3;
1045
1b0ba102 1046 errcode = target_read_memory (memaddr & ~3, buf, sizeof buf);
c906108c
SS
1047 if (errcode != 0)
1048 {
1049 /* The transfer request might have crossed the boundary to an
c378eb4e 1050 unallocated region of memory. Retry the transfer, requesting
c906108c
SS
1051 a single byte. */
1052 tlen = 1;
1053 offset = 0;
b8eb5af0 1054 errcode = target_read_memory (memaddr, buf, 1);
c906108c
SS
1055 if (errcode != 0)
1056 goto done;
1057 }
1058
1059 if (bufptr - buffer + tlen > buffer_allocated)
1060 {
1061 unsigned int bytes;
5d502164 1062
c906108c
SS
1063 bytes = bufptr - buffer;
1064 buffer_allocated *= 2;
1065 buffer = xrealloc (buffer, buffer_allocated);
1066 bufptr = buffer + bytes;
1067 }
1068
1069 for (i = 0; i < tlen; i++)
1070 {
1071 *bufptr++ = buf[i + offset];
1072 if (buf[i + offset] == '\000')
1073 {
1074 nbytes_read += i + 1;
1075 goto done;
1076 }
1077 }
1078
1079 memaddr += tlen;
1080 len -= tlen;
1081 nbytes_read += tlen;
1082 }
c5aa993b 1083done:
6217bf3e 1084 *string = buffer;
c906108c
SS
1085 if (errnop != NULL)
1086 *errnop = errcode;
c906108c
SS
1087 return nbytes_read;
1088}
1089
07b82ea5
PA
1090struct target_section_table *
1091target_get_section_table (struct target_ops *target)
1092{
1093 struct target_ops *t;
1094
1095 if (targetdebug)
1096 fprintf_unfiltered (gdb_stdlog, "target_get_section_table ()\n");
1097
1098 for (t = target; t != NULL; t = t->beneath)
1099 if (t->to_get_section_table != NULL)
1100 return (*t->to_get_section_table) (t);
1101
1102 return NULL;
1103}
1104
8db32d44 1105/* Find a section containing ADDR. */
07b82ea5 1106
0542c86d 1107struct target_section *
8db32d44
AC
1108target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
1109{
07b82ea5 1110 struct target_section_table *table = target_get_section_table (target);
0542c86d 1111 struct target_section *secp;
07b82ea5
PA
1112
1113 if (table == NULL)
1114 return NULL;
1115
1116 for (secp = table->sections; secp < table->sections_end; secp++)
8db32d44
AC
1117 {
1118 if (addr >= secp->addr && addr < secp->endaddr)
1119 return secp;
1120 }
1121 return NULL;
1122}
1123
e6e4e701
PA
1124/* Read memory from the live target, even if currently inspecting a
1125 traceframe. The return is the same as that of target_read. */
1126
9b409511 1127static enum target_xfer_status
e6e4e701 1128target_read_live_memory (enum target_object object,
9b409511
YQ
1129 ULONGEST memaddr, gdb_byte *myaddr, ULONGEST len,
1130 ULONGEST *xfered_len)
e6e4e701 1131{
9b409511 1132 enum target_xfer_status ret;
e6e4e701
PA
1133 struct cleanup *cleanup;
1134
1135 /* Switch momentarily out of tfind mode so to access live memory.
1136 Note that this must not clear global state, such as the frame
1137 cache, which must still remain valid for the previous traceframe.
1138 We may be _building_ the frame cache at this point. */
1139 cleanup = make_cleanup_restore_traceframe_number ();
1140 set_traceframe_number (-1);
1141
9b409511
YQ
1142 ret = target_xfer_partial (current_target.beneath, object, NULL,
1143 myaddr, NULL, memaddr, len, xfered_len);
e6e4e701
PA
1144
1145 do_cleanups (cleanup);
1146 return ret;
1147}
1148
1149/* Using the set of read-only target sections of OPS, read live
1150 read-only memory. Note that the actual reads start from the
5657161f
PA
1151 top-most target again.
1152
1153 For interface/parameters/return description see target.h,
1154 to_xfer_partial. */
e6e4e701 1155
9b409511 1156static enum target_xfer_status
e6e4e701
PA
1157memory_xfer_live_readonly_partial (struct target_ops *ops,
1158 enum target_object object,
1159 gdb_byte *readbuf, ULONGEST memaddr,
9b409511 1160 ULONGEST len, ULONGEST *xfered_len)
e6e4e701
PA
1161{
1162 struct target_section *secp;
1163 struct target_section_table *table;
1164
1165 secp = target_section_by_addr (ops, memaddr);
1166 if (secp != NULL
2b2848e2
DE
1167 && (bfd_get_section_flags (secp->the_bfd_section->owner,
1168 secp->the_bfd_section)
e6e4e701
PA
1169 & SEC_READONLY))
1170 {
1171 struct target_section *p;
1172 ULONGEST memend = memaddr + len;
1173
1174 table = target_get_section_table (ops);
1175
1176 for (p = table->sections; p < table->sections_end; p++)
1177 {
1178 if (memaddr >= p->addr)
1179 {
1180 if (memend <= p->endaddr)
1181 {
1182 /* Entire transfer is within this section. */
1183 return target_read_live_memory (object, memaddr,
9b409511 1184 readbuf, len, xfered_len);
e6e4e701
PA
1185 }
1186 else if (memaddr >= p->endaddr)
1187 {
1188 /* This section ends before the transfer starts. */
1189 continue;
1190 }
1191 else
1192 {
1193 /* This section overlaps the transfer. Just do half. */
1194 len = p->endaddr - memaddr;
1195 return target_read_live_memory (object, memaddr,
9b409511 1196 readbuf, len, xfered_len);
e6e4e701
PA
1197 }
1198 }
1199 }
1200 }
1201
9b409511 1202 return TARGET_XFER_EOF;
e6e4e701
PA
1203}
1204
9f713294
YQ
1205/* Read memory from more than one valid target. A core file, for
1206 instance, could have some of memory but delegate other bits to
1207 the target below it. So, we must manually try all targets. */
1208
9b409511 1209static enum target_xfer_status
17fde6d0 1210raw_memory_xfer_partial (struct target_ops *ops, gdb_byte *readbuf,
9b409511
YQ
1211 const gdb_byte *writebuf, ULONGEST memaddr, LONGEST len,
1212 ULONGEST *xfered_len)
9f713294 1213{
9b409511 1214 enum target_xfer_status res;
9f713294
YQ
1215
1216 do
1217 {
1218 res = ops->to_xfer_partial (ops, TARGET_OBJECT_MEMORY, NULL,
9b409511
YQ
1219 readbuf, writebuf, memaddr, len,
1220 xfered_len);
1221 if (res == TARGET_XFER_OK)
9f713294
YQ
1222 break;
1223
633785ff
MM
1224 /* Stop if the target reports that the memory is not available. */
1225 if (res == TARGET_XFER_E_UNAVAILABLE)
1226 break;
1227
9f713294
YQ
1228 /* We want to continue past core files to executables, but not
1229 past a running target's memory. */
1230 if (ops->to_has_all_memory (ops))
1231 break;
1232
1233 ops = ops->beneath;
1234 }
1235 while (ops != NULL);
1236
1237 return res;
1238}
1239
7f79c47e
DE
1240/* Perform a partial memory transfer.
1241 For docs see target.h, to_xfer_partial. */
cf7a04e8 1242
9b409511 1243static enum target_xfer_status
f0ba3972 1244memory_xfer_partial_1 (struct target_ops *ops, enum target_object object,
17fde6d0 1245 gdb_byte *readbuf, const gdb_byte *writebuf, ULONGEST memaddr,
9b409511 1246 ULONGEST len, ULONGEST *xfered_len)
0779438d 1247{
9b409511 1248 enum target_xfer_status res;
cf7a04e8
DJ
1249 int reg_len;
1250 struct mem_region *region;
4e5d721f 1251 struct inferior *inf;
cf7a04e8 1252
07b82ea5
PA
1253 /* For accesses to unmapped overlay sections, read directly from
1254 files. Must do this first, as MEMADDR may need adjustment. */
1255 if (readbuf != NULL && overlay_debugging)
1256 {
1257 struct obj_section *section = find_pc_overlay (memaddr);
5d502164 1258
07b82ea5
PA
1259 if (pc_in_unmapped_range (memaddr, section))
1260 {
1261 struct target_section_table *table
1262 = target_get_section_table (ops);
1263 const char *section_name = section->the_bfd_section->name;
5d502164 1264
07b82ea5
PA
1265 memaddr = overlay_mapped_address (memaddr, section);
1266 return section_table_xfer_memory_partial (readbuf, writebuf,
9b409511 1267 memaddr, len, xfered_len,
07b82ea5
PA
1268 table->sections,
1269 table->sections_end,
1270 section_name);
1271 }
1272 }
1273
1274 /* Try the executable files, if "trust-readonly-sections" is set. */
cf7a04e8
DJ
1275 if (readbuf != NULL && trust_readonly)
1276 {
0542c86d 1277 struct target_section *secp;
07b82ea5 1278 struct target_section_table *table;
cf7a04e8
DJ
1279
1280 secp = target_section_by_addr (ops, memaddr);
1281 if (secp != NULL
2b2848e2
DE
1282 && (bfd_get_section_flags (secp->the_bfd_section->owner,
1283 secp->the_bfd_section)
cf7a04e8 1284 & SEC_READONLY))
07b82ea5
PA
1285 {
1286 table = target_get_section_table (ops);
1287 return section_table_xfer_memory_partial (readbuf, writebuf,
9b409511 1288 memaddr, len, xfered_len,
07b82ea5
PA
1289 table->sections,
1290 table->sections_end,
1291 NULL);
1292 }
98646950
UW
1293 }
1294
e6e4e701
PA
1295 /* If reading unavailable memory in the context of traceframes, and
1296 this address falls within a read-only section, fallback to
1297 reading from live memory. */
1298 if (readbuf != NULL && get_traceframe_number () != -1)
1299 {
1300 VEC(mem_range_s) *available;
1301
1302 /* If we fail to get the set of available memory, then the
1303 target does not support querying traceframe info, and so we
1304 attempt reading from the traceframe anyway (assuming the
1305 target implements the old QTro packet then). */
1306 if (traceframe_available_memory (&available, memaddr, len))
1307 {
1308 struct cleanup *old_chain;
1309
1310 old_chain = make_cleanup (VEC_cleanup(mem_range_s), &available);
1311
1312 if (VEC_empty (mem_range_s, available)
1313 || VEC_index (mem_range_s, available, 0)->start != memaddr)
1314 {
1315 /* Don't read into the traceframe's available
1316 memory. */
1317 if (!VEC_empty (mem_range_s, available))
1318 {
1319 LONGEST oldlen = len;
1320
1321 len = VEC_index (mem_range_s, available, 0)->start - memaddr;
1322 gdb_assert (len <= oldlen);
1323 }
1324
1325 do_cleanups (old_chain);
1326
1327 /* This goes through the topmost target again. */
1328 res = memory_xfer_live_readonly_partial (ops, object,
9b409511
YQ
1329 readbuf, memaddr,
1330 len, xfered_len);
1331 if (res == TARGET_XFER_OK)
1332 return TARGET_XFER_OK;
1333 else
1334 {
1335 /* No use trying further, we know some memory starting
1336 at MEMADDR isn't available. */
1337 *xfered_len = len;
1338 return TARGET_XFER_E_UNAVAILABLE;
1339 }
e6e4e701
PA
1340 }
1341
1342 /* Don't try to read more than how much is available, in
1343 case the target implements the deprecated QTro packet to
1344 cater for older GDBs (the target's knowledge of read-only
1345 sections may be outdated by now). */
1346 len = VEC_index (mem_range_s, available, 0)->length;
1347
1348 do_cleanups (old_chain);
1349 }
1350 }
1351
cf7a04e8
DJ
1352 /* Try GDB's internal data cache. */
1353 region = lookup_mem_region (memaddr);
4b5752d0
VP
1354 /* region->hi == 0 means there's no upper bound. */
1355 if (memaddr + len < region->hi || region->hi == 0)
cf7a04e8
DJ
1356 reg_len = len;
1357 else
1358 reg_len = region->hi - memaddr;
1359
1360 switch (region->attrib.mode)
1361 {
1362 case MEM_RO:
1363 if (writebuf != NULL)
2ed4b548 1364 return TARGET_XFER_E_IO;
cf7a04e8
DJ
1365 break;
1366
1367 case MEM_WO:
1368 if (readbuf != NULL)
2ed4b548 1369 return TARGET_XFER_E_IO;
cf7a04e8 1370 break;
a76d924d
DJ
1371
1372 case MEM_FLASH:
1373 /* We only support writing to flash during "load" for now. */
1374 if (writebuf != NULL)
1375 error (_("Writing to flash memory forbidden in this context"));
1376 break;
4b5752d0
VP
1377
1378 case MEM_NONE:
2ed4b548 1379 return TARGET_XFER_E_IO;
cf7a04e8
DJ
1380 }
1381
6c95b8df
PA
1382 if (!ptid_equal (inferior_ptid, null_ptid))
1383 inf = find_inferior_pid (ptid_get_pid (inferior_ptid));
1384 else
1385 inf = NULL;
4e5d721f
DE
1386
1387 if (inf != NULL
2f4d8875
PA
1388 /* The dcache reads whole cache lines; that doesn't play well
1389 with reading from a trace buffer, because reading outside of
1390 the collected memory range fails. */
1391 && get_traceframe_number () == -1
4e5d721f 1392 && (region->attrib.cache
29453a14
YQ
1393 || (stack_cache_enabled_p () && object == TARGET_OBJECT_STACK_MEMORY)
1394 || (code_cache_enabled_p () && object == TARGET_OBJECT_CODE_MEMORY)))
cf7a04e8 1395 {
2a2f9fe4 1396 DCACHE *dcache = target_dcache_get_or_init ();
9b409511 1397 int l;
2a2f9fe4 1398
cf7a04e8 1399 if (readbuf != NULL)
9b409511 1400 l = dcache_xfer_memory (ops, dcache, memaddr, readbuf, reg_len, 0);
cf7a04e8
DJ
1401 else
1402 /* FIXME drow/2006-08-09: If we're going to preserve const
1403 correctness dcache_xfer_memory should take readbuf and
1404 writebuf. */
9b409511 1405 l = dcache_xfer_memory (ops, dcache, memaddr, (void *) writebuf,
cf7a04e8 1406 reg_len, 1);
9b409511
YQ
1407 if (l <= 0)
1408 return TARGET_XFER_E_IO;
cf7a04e8 1409 else
9b409511
YQ
1410 {
1411 *xfered_len = (ULONGEST) l;
1412 return TARGET_XFER_OK;
1413 }
cf7a04e8
DJ
1414 }
1415
1416 /* If none of those methods found the memory we wanted, fall back
1417 to a target partial transfer. Normally a single call to
1418 to_xfer_partial is enough; if it doesn't recognize an object
1419 it will call the to_xfer_partial of the next target down.
1420 But for memory this won't do. Memory is the only target
9b409511
YQ
1421 object which can be read from more than one valid target.
1422 A core file, for instance, could have some of memory but
1423 delegate other bits to the target below it. So, we must
1424 manually try all targets. */
1425
1426 res = raw_memory_xfer_partial (ops, readbuf, writebuf, memaddr, reg_len,
1427 xfered_len);
cf7a04e8 1428
41dcd03f
DE
1429 /* Make sure the cache gets updated no matter what - if we are writing
1430 to the stack. Even if this write is not tagged as such, we still need
1431 to update the cache. */
1432
9b409511 1433 if (res == TARGET_XFER_OK
41dcd03f
DE
1434 && inf != NULL
1435 && writebuf != NULL
f2de9785 1436 && target_dcache_init_p ()
41dcd03f 1437 && !region->attrib.cache
29453a14
YQ
1438 && ((stack_cache_enabled_p () && object != TARGET_OBJECT_STACK_MEMORY)
1439 || (code_cache_enabled_p () && object != TARGET_OBJECT_CODE_MEMORY)))
41dcd03f 1440 {
f2de9785 1441 DCACHE *dcache = target_dcache_get ();
2a2f9fe4 1442
9b409511 1443 dcache_update (dcache, memaddr, (void *) writebuf, reg_len);
41dcd03f
DE
1444 }
1445
cf7a04e8
DJ
1446 /* If we still haven't got anything, return the last error. We
1447 give up. */
1448 return res;
0779438d
AC
1449}
1450
f0ba3972
PA
1451/* Perform a partial memory transfer. For docs see target.h,
1452 to_xfer_partial. */
1453
9b409511 1454static enum target_xfer_status
f0ba3972 1455memory_xfer_partial (struct target_ops *ops, enum target_object object,
9b409511
YQ
1456 gdb_byte *readbuf, const gdb_byte *writebuf,
1457 ULONGEST memaddr, ULONGEST len, ULONGEST *xfered_len)
f0ba3972 1458{
9b409511 1459 enum target_xfer_status res;
f0ba3972
PA
1460
1461 /* Zero length requests are ok and require no work. */
1462 if (len == 0)
9b409511 1463 return TARGET_XFER_EOF;
f0ba3972
PA
1464
1465 /* Fill in READBUF with breakpoint shadows, or WRITEBUF with
1466 breakpoint insns, thus hiding out from higher layers whether
1467 there are software breakpoints inserted in the code stream. */
1468 if (readbuf != NULL)
1469 {
9b409511
YQ
1470 res = memory_xfer_partial_1 (ops, object, readbuf, NULL, memaddr, len,
1471 xfered_len);
f0ba3972 1472
9b409511 1473 if (res == TARGET_XFER_OK && !show_memory_breakpoints)
f0ba3972
PA
1474 breakpoint_xfer_memory (readbuf, NULL, NULL, memaddr, res);
1475 }
1476 else
1477 {
1478 void *buf;
1479 struct cleanup *old_chain;
1480
67c059c2
AB
1481 /* A large write request is likely to be partially satisfied
1482 by memory_xfer_partial_1. We will continually malloc
1483 and free a copy of the entire write request for breakpoint
1484 shadow handling even though we only end up writing a small
1485 subset of it. Cap writes to 4KB to mitigate this. */
1486 len = min (4096, len);
1487
f0ba3972
PA
1488 buf = xmalloc (len);
1489 old_chain = make_cleanup (xfree, buf);
1490 memcpy (buf, writebuf, len);
1491
1492 breakpoint_xfer_memory (NULL, buf, writebuf, memaddr, len);
9b409511
YQ
1493 res = memory_xfer_partial_1 (ops, object, NULL, buf, memaddr, len,
1494 xfered_len);
f0ba3972
PA
1495
1496 do_cleanups (old_chain);
1497 }
1498
1499 return res;
1500}
1501
8defab1a
DJ
1502static void
1503restore_show_memory_breakpoints (void *arg)
1504{
1505 show_memory_breakpoints = (uintptr_t) arg;
1506}
1507
1508struct cleanup *
1509make_show_memory_breakpoints_cleanup (int show)
1510{
1511 int current = show_memory_breakpoints;
8defab1a 1512
5d502164 1513 show_memory_breakpoints = show;
8defab1a
DJ
1514 return make_cleanup (restore_show_memory_breakpoints,
1515 (void *) (uintptr_t) current);
1516}
1517
7f79c47e
DE
1518/* For docs see target.h, to_xfer_partial. */
1519
9b409511 1520enum target_xfer_status
27394598
AC
1521target_xfer_partial (struct target_ops *ops,
1522 enum target_object object, const char *annex,
4ac248ca 1523 gdb_byte *readbuf, const gdb_byte *writebuf,
9b409511
YQ
1524 ULONGEST offset, ULONGEST len,
1525 ULONGEST *xfered_len)
27394598 1526{
9b409511 1527 enum target_xfer_status retval;
27394598
AC
1528
1529 gdb_assert (ops->to_xfer_partial != NULL);
cf7a04e8 1530
ce6d0892
YQ
1531 /* Transfer is done when LEN is zero. */
1532 if (len == 0)
9b409511 1533 return TARGET_XFER_EOF;
ce6d0892 1534
d914c394
SS
1535 if (writebuf && !may_write_memory)
1536 error (_("Writing to memory is not allowed (addr %s, len %s)"),
1537 core_addr_to_string_nz (offset), plongest (len));
1538
9b409511
YQ
1539 *xfered_len = 0;
1540
cf7a04e8
DJ
1541 /* If this is a memory transfer, let the memory-specific code
1542 have a look at it instead. Memory transfers are more
1543 complicated. */
29453a14
YQ
1544 if (object == TARGET_OBJECT_MEMORY || object == TARGET_OBJECT_STACK_MEMORY
1545 || object == TARGET_OBJECT_CODE_MEMORY)
4e5d721f 1546 retval = memory_xfer_partial (ops, object, readbuf,
9b409511 1547 writebuf, offset, len, xfered_len);
9f713294 1548 else if (object == TARGET_OBJECT_RAW_MEMORY)
cf7a04e8 1549 {
9f713294 1550 /* Request the normal memory object from other layers. */
9b409511
YQ
1551 retval = raw_memory_xfer_partial (ops, readbuf, writebuf, offset, len,
1552 xfered_len);
cf7a04e8 1553 }
9f713294
YQ
1554 else
1555 retval = ops->to_xfer_partial (ops, object, annex, readbuf,
9b409511 1556 writebuf, offset, len, xfered_len);
cf7a04e8 1557
27394598
AC
1558 if (targetdebug)
1559 {
1560 const unsigned char *myaddr = NULL;
1561
1562 fprintf_unfiltered (gdb_stdlog,
3e43a32a 1563 "%s:target_xfer_partial "
9b409511 1564 "(%d, %s, %s, %s, %s, %s) = %d, %s",
27394598
AC
1565 ops->to_shortname,
1566 (int) object,
1567 (annex ? annex : "(null)"),
53b71562
JB
1568 host_address_to_string (readbuf),
1569 host_address_to_string (writebuf),
0b1553bc 1570 core_addr_to_string_nz (offset),
9b409511
YQ
1571 pulongest (len), retval,
1572 pulongest (*xfered_len));
27394598
AC
1573
1574 if (readbuf)
1575 myaddr = readbuf;
1576 if (writebuf)
1577 myaddr = writebuf;
9b409511 1578 if (retval == TARGET_XFER_OK && myaddr != NULL)
27394598
AC
1579 {
1580 int i;
2bc416ba 1581
27394598 1582 fputs_unfiltered (", bytes =", gdb_stdlog);
9b409511 1583 for (i = 0; i < *xfered_len; i++)
27394598 1584 {
53b71562 1585 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
27394598
AC
1586 {
1587 if (targetdebug < 2 && i > 0)
1588 {
1589 fprintf_unfiltered (gdb_stdlog, " ...");
1590 break;
1591 }
1592 fprintf_unfiltered (gdb_stdlog, "\n");
1593 }
2bc416ba 1594
27394598
AC
1595 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1596 }
1597 }
2bc416ba 1598
27394598
AC
1599 fputc_unfiltered ('\n', gdb_stdlog);
1600 }
9b409511
YQ
1601
1602 /* Check implementations of to_xfer_partial update *XFERED_LEN
1603 properly. Do assertion after printing debug messages, so that we
1604 can find more clues on assertion failure from debugging messages. */
1605 if (retval == TARGET_XFER_OK || retval == TARGET_XFER_E_UNAVAILABLE)
1606 gdb_assert (*xfered_len > 0);
1607
27394598
AC
1608 return retval;
1609}
1610
578d3588
PA
1611/* Read LEN bytes of target memory at address MEMADDR, placing the
1612 results in GDB's memory at MYADDR. Returns either 0 for success or
9b409511 1613 TARGET_XFER_E_IO if any error occurs.
c906108c
SS
1614
1615 If an error occurs, no guarantee is made about the contents of the data at
1616 MYADDR. In particular, the caller should not depend upon partial reads
1617 filling the buffer with good data. There is no way for the caller to know
1618 how much good data might have been transfered anyway. Callers that can
cf7a04e8 1619 deal with partial reads should call target_read (which will retry until
c378eb4e 1620 it makes no progress, and then return how much was transferred). */
c906108c
SS
1621
1622int
1b162304 1623target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
c906108c 1624{
c35b1492
PA
1625 /* Dispatch to the topmost target, not the flattened current_target.
1626 Memory accesses check target->to_has_(all_)memory, and the
1627 flattened target doesn't inherit those. */
1628 if (target_read (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
cf7a04e8
DJ
1629 myaddr, memaddr, len) == len)
1630 return 0;
0779438d 1631 else
578d3588 1632 return TARGET_XFER_E_IO;
c906108c
SS
1633}
1634
aee4bf85
PA
1635/* Like target_read_memory, but specify explicitly that this is a read
1636 from the target's raw memory. That is, this read bypasses the
1637 dcache, breakpoint shadowing, etc. */
1638
1639int
1640target_read_raw_memory (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1641{
1642 /* See comment in target_read_memory about why the request starts at
1643 current_target.beneath. */
1644 if (target_read (current_target.beneath, TARGET_OBJECT_RAW_MEMORY, NULL,
1645 myaddr, memaddr, len) == len)
1646 return 0;
1647 else
1648 return TARGET_XFER_E_IO;
1649}
1650
4e5d721f
DE
1651/* Like target_read_memory, but specify explicitly that this is a read from
1652 the target's stack. This may trigger different cache behavior. */
1653
1654int
45aa4659 1655target_read_stack (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
4e5d721f 1656{
aee4bf85
PA
1657 /* See comment in target_read_memory about why the request starts at
1658 current_target.beneath. */
4e5d721f
DE
1659 if (target_read (current_target.beneath, TARGET_OBJECT_STACK_MEMORY, NULL,
1660 myaddr, memaddr, len) == len)
1661 return 0;
1662 else
578d3588 1663 return TARGET_XFER_E_IO;
4e5d721f
DE
1664}
1665
29453a14
YQ
1666/* Like target_read_memory, but specify explicitly that this is a read from
1667 the target's code. This may trigger different cache behavior. */
1668
1669int
1670target_read_code (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1671{
aee4bf85
PA
1672 /* See comment in target_read_memory about why the request starts at
1673 current_target.beneath. */
29453a14
YQ
1674 if (target_read (current_target.beneath, TARGET_OBJECT_CODE_MEMORY, NULL,
1675 myaddr, memaddr, len) == len)
1676 return 0;
1677 else
1678 return TARGET_XFER_E_IO;
1679}
1680
7f79c47e 1681/* Write LEN bytes from MYADDR to target memory at address MEMADDR.
9b409511 1682 Returns either 0 for success or TARGET_XFER_E_IO if any
578d3588
PA
1683 error occurs. If an error occurs, no guarantee is made about how
1684 much data got written. Callers that can deal with partial writes
1685 should call target_write. */
7f79c47e 1686
c906108c 1687int
45aa4659 1688target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
c906108c 1689{
aee4bf85
PA
1690 /* See comment in target_read_memory about why the request starts at
1691 current_target.beneath. */
c35b1492 1692 if (target_write (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
cf7a04e8
DJ
1693 myaddr, memaddr, len) == len)
1694 return 0;
0779438d 1695 else
578d3588 1696 return TARGET_XFER_E_IO;
c906108c 1697}
c5aa993b 1698
f0ba3972 1699/* Write LEN bytes from MYADDR to target raw memory at address
9b409511 1700 MEMADDR. Returns either 0 for success or TARGET_XFER_E_IO
578d3588
PA
1701 if any error occurs. If an error occurs, no guarantee is made
1702 about how much data got written. Callers that can deal with
1703 partial writes should call target_write. */
f0ba3972
PA
1704
1705int
45aa4659 1706target_write_raw_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
f0ba3972 1707{
aee4bf85
PA
1708 /* See comment in target_read_memory about why the request starts at
1709 current_target.beneath. */
f0ba3972
PA
1710 if (target_write (current_target.beneath, TARGET_OBJECT_RAW_MEMORY, NULL,
1711 myaddr, memaddr, len) == len)
1712 return 0;
1713 else
578d3588 1714 return TARGET_XFER_E_IO;
f0ba3972
PA
1715}
1716
fd79ecee
DJ
1717/* Fetch the target's memory map. */
1718
1719VEC(mem_region_s) *
1720target_memory_map (void)
1721{
1722 VEC(mem_region_s) *result;
1723 struct mem_region *last_one, *this_one;
1724 int ix;
1725 struct target_ops *t;
1726
1727 if (targetdebug)
1728 fprintf_unfiltered (gdb_stdlog, "target_memory_map ()\n");
1729
1730 for (t = current_target.beneath; t != NULL; t = t->beneath)
1731 if (t->to_memory_map != NULL)
1732 break;
1733
1734 if (t == NULL)
1735 return NULL;
1736
1737 result = t->to_memory_map (t);
1738 if (result == NULL)
1739 return NULL;
1740
1741 qsort (VEC_address (mem_region_s, result),
1742 VEC_length (mem_region_s, result),
1743 sizeof (struct mem_region), mem_region_cmp);
1744
1745 /* Check that regions do not overlap. Simultaneously assign
1746 a numbering for the "mem" commands to use to refer to
1747 each region. */
1748 last_one = NULL;
1749 for (ix = 0; VEC_iterate (mem_region_s, result, ix, this_one); ix++)
1750 {
1751 this_one->number = ix;
1752
1753 if (last_one && last_one->hi > this_one->lo)
1754 {
1755 warning (_("Overlapping regions in memory map: ignoring"));
1756 VEC_free (mem_region_s, result);
1757 return NULL;
1758 }
1759 last_one = this_one;
1760 }
1761
1762 return result;
1763}
1764
a76d924d
DJ
1765void
1766target_flash_erase (ULONGEST address, LONGEST length)
1767{
1768 struct target_ops *t;
1769
1770 for (t = current_target.beneath; t != NULL; t = t->beneath)
1771 if (t->to_flash_erase != NULL)
5d502164
MS
1772 {
1773 if (targetdebug)
1774 fprintf_unfiltered (gdb_stdlog, "target_flash_erase (%s, %s)\n",
1775 hex_string (address), phex (length, 0));
1776 t->to_flash_erase (t, address, length);
1777 return;
1778 }
a76d924d
DJ
1779
1780 tcomplain ();
1781}
1782
1783void
1784target_flash_done (void)
1785{
1786 struct target_ops *t;
1787
1788 for (t = current_target.beneath; t != NULL; t = t->beneath)
1789 if (t->to_flash_done != NULL)
5d502164
MS
1790 {
1791 if (targetdebug)
1792 fprintf_unfiltered (gdb_stdlog, "target_flash_done\n");
1793 t->to_flash_done (t);
1794 return;
1795 }
a76d924d
DJ
1796
1797 tcomplain ();
1798}
1799
920d2a44
AC
1800static void
1801show_trust_readonly (struct ui_file *file, int from_tty,
1802 struct cmd_list_element *c, const char *value)
1803{
3e43a32a
MS
1804 fprintf_filtered (file,
1805 _("Mode for reading from readonly sections is %s.\n"),
920d2a44
AC
1806 value);
1807}
3a11626d 1808
1e3ff5ad
AC
1809/* More generic transfers. */
1810
9b409511 1811static enum target_xfer_status
8aa91c1e 1812default_xfer_partial (struct target_ops *ops, enum target_object object,
2bc416ba 1813 const char *annex, gdb_byte *readbuf,
9b409511
YQ
1814 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len,
1815 ULONGEST *xfered_len)
0088c768
AC
1816{
1817 if (object == TARGET_OBJECT_MEMORY
c8e73a31
AC
1818 && ops->deprecated_xfer_memory != NULL)
1819 /* If available, fall back to the target's
1820 "deprecated_xfer_memory" method. */
0088c768 1821 {
4b8a223f 1822 int xfered = -1;
5d502164 1823
0088c768 1824 errno = 0;
4b8a223f
AC
1825 if (writebuf != NULL)
1826 {
1827 void *buffer = xmalloc (len);
1828 struct cleanup *cleanup = make_cleanup (xfree, buffer);
5d502164 1829
4b8a223f 1830 memcpy (buffer, writebuf, len);
c8e73a31
AC
1831 xfered = ops->deprecated_xfer_memory (offset, buffer, len,
1832 1/*write*/, NULL, ops);
4b8a223f
AC
1833 do_cleanups (cleanup);
1834 }
1835 if (readbuf != NULL)
244e85c8
MS
1836 xfered = ops->deprecated_xfer_memory (offset, readbuf, len,
1837 0/*read*/, NULL, ops);
0088c768 1838 if (xfered > 0)
9b409511
YQ
1839 {
1840 *xfered_len = (ULONGEST) xfered;
1841 return TARGET_XFER_E_IO;
1842 }
0088c768 1843 else if (xfered == 0 && errno == 0)
c8e73a31
AC
1844 /* "deprecated_xfer_memory" uses 0, cross checked against
1845 ERRNO as one indication of an error. */
9b409511 1846 return TARGET_XFER_EOF;
0088c768 1847 else
9b409511 1848 return TARGET_XFER_E_IO;
0088c768 1849 }
0088c768 1850 else
6b84065d
TT
1851 {
1852 gdb_assert (ops->beneath != NULL);
1853 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1854 readbuf, writebuf, offset, len,
1855 xfered_len);
1856 }
0088c768
AC
1857}
1858
7f79c47e 1859/* Target vector read/write partial wrapper functions. */
0088c768 1860
9b409511 1861static enum target_xfer_status
1e3ff5ad
AC
1862target_read_partial (struct target_ops *ops,
1863 enum target_object object,
1b0ba102 1864 const char *annex, gdb_byte *buf,
9b409511
YQ
1865 ULONGEST offset, ULONGEST len,
1866 ULONGEST *xfered_len)
1e3ff5ad 1867{
9b409511
YQ
1868 return target_xfer_partial (ops, object, annex, buf, NULL, offset, len,
1869 xfered_len);
1e3ff5ad
AC
1870}
1871
8a55ffb0 1872static enum target_xfer_status
1e3ff5ad
AC
1873target_write_partial (struct target_ops *ops,
1874 enum target_object object,
1b0ba102 1875 const char *annex, const gdb_byte *buf,
9b409511 1876 ULONGEST offset, LONGEST len, ULONGEST *xfered_len)
1e3ff5ad 1877{
9b409511
YQ
1878 return target_xfer_partial (ops, object, annex, NULL, buf, offset, len,
1879 xfered_len);
1e3ff5ad
AC
1880}
1881
1882/* Wrappers to perform the full transfer. */
7f79c47e
DE
1883
1884/* For docs on target_read see target.h. */
1885
1e3ff5ad
AC
1886LONGEST
1887target_read (struct target_ops *ops,
1888 enum target_object object,
1b0ba102 1889 const char *annex, gdb_byte *buf,
1e3ff5ad
AC
1890 ULONGEST offset, LONGEST len)
1891{
1892 LONGEST xfered = 0;
5d502164 1893
1e3ff5ad
AC
1894 while (xfered < len)
1895 {
9b409511
YQ
1896 ULONGEST xfered_len;
1897 enum target_xfer_status status;
1898
1899 status = target_read_partial (ops, object, annex,
1900 (gdb_byte *) buf + xfered,
1901 offset + xfered, len - xfered,
1902 &xfered_len);
5d502164 1903
1e3ff5ad 1904 /* Call an observer, notifying them of the xfer progress? */
9b409511 1905 if (status == TARGET_XFER_EOF)
13547ab6 1906 return xfered;
9b409511
YQ
1907 else if (status == TARGET_XFER_OK)
1908 {
1909 xfered += xfered_len;
1910 QUIT;
1911 }
1912 else
0088c768 1913 return -1;
9b409511 1914
1e3ff5ad
AC
1915 }
1916 return len;
1917}
1918
f1a507a1
JB
1919/* Assuming that the entire [begin, end) range of memory cannot be
1920 read, try to read whatever subrange is possible to read.
1921
1922 The function returns, in RESULT, either zero or one memory block.
1923 If there's a readable subrange at the beginning, it is completely
1924 read and returned. Any further readable subrange will not be read.
1925 Otherwise, if there's a readable subrange at the end, it will be
1926 completely read and returned. Any readable subranges before it
1927 (obviously, not starting at the beginning), will be ignored. In
1928 other cases -- either no readable subrange, or readable subrange(s)
1929 that is neither at the beginning, or end, nothing is returned.
1930
1931 The purpose of this function is to handle a read across a boundary
1932 of accessible memory in a case when memory map is not available.
1933 The above restrictions are fine for this case, but will give
1934 incorrect results if the memory is 'patchy'. However, supporting
1935 'patchy' memory would require trying to read every single byte,
1936 and it seems unacceptable solution. Explicit memory map is
1937 recommended for this case -- and target_read_memory_robust will
1938 take care of reading multiple ranges then. */
8dedea02
VP
1939
1940static void
3e43a32a
MS
1941read_whatever_is_readable (struct target_ops *ops,
1942 ULONGEST begin, ULONGEST end,
8dedea02 1943 VEC(memory_read_result_s) **result)
d5086790 1944{
f1a507a1 1945 gdb_byte *buf = xmalloc (end - begin);
8dedea02
VP
1946 ULONGEST current_begin = begin;
1947 ULONGEST current_end = end;
1948 int forward;
1949 memory_read_result_s r;
9b409511 1950 ULONGEST xfered_len;
8dedea02
VP
1951
1952 /* If we previously failed to read 1 byte, nothing can be done here. */
1953 if (end - begin <= 1)
13b3fd9b
MS
1954 {
1955 xfree (buf);
1956 return;
1957 }
8dedea02
VP
1958
1959 /* Check that either first or the last byte is readable, and give up
c378eb4e 1960 if not. This heuristic is meant to permit reading accessible memory
8dedea02
VP
1961 at the boundary of accessible region. */
1962 if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
9b409511 1963 buf, begin, 1, &xfered_len) == TARGET_XFER_OK)
8dedea02
VP
1964 {
1965 forward = 1;
1966 ++current_begin;
1967 }
1968 else if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
9b409511
YQ
1969 buf + (end-begin) - 1, end - 1, 1,
1970 &xfered_len) == TARGET_XFER_OK)
8dedea02
VP
1971 {
1972 forward = 0;
1973 --current_end;
1974 }
1975 else
1976 {
13b3fd9b 1977 xfree (buf);
8dedea02
VP
1978 return;
1979 }
1980
1981 /* Loop invariant is that the [current_begin, current_end) was previously
1982 found to be not readable as a whole.
1983
1984 Note loop condition -- if the range has 1 byte, we can't divide the range
1985 so there's no point trying further. */
1986 while (current_end - current_begin > 1)
1987 {
1988 ULONGEST first_half_begin, first_half_end;
1989 ULONGEST second_half_begin, second_half_end;
1990 LONGEST xfer;
8dedea02 1991 ULONGEST middle = current_begin + (current_end - current_begin)/2;
f1a507a1 1992
8dedea02
VP
1993 if (forward)
1994 {
1995 first_half_begin = current_begin;
1996 first_half_end = middle;
1997 second_half_begin = middle;
1998 second_half_end = current_end;
1999 }
2000 else
2001 {
2002 first_half_begin = middle;
2003 first_half_end = current_end;
2004 second_half_begin = current_begin;
2005 second_half_end = middle;
2006 }
2007
2008 xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2009 buf + (first_half_begin - begin),
2010 first_half_begin,
2011 first_half_end - first_half_begin);
2012
2013 if (xfer == first_half_end - first_half_begin)
2014 {
c378eb4e 2015 /* This half reads up fine. So, the error must be in the
3e43a32a 2016 other half. */
8dedea02
VP
2017 current_begin = second_half_begin;
2018 current_end = second_half_end;
2019 }
2020 else
2021 {
c378eb4e
MS
2022 /* This half is not readable. Because we've tried one byte, we
2023 know some part of this half if actually redable. Go to the next
8dedea02
VP
2024 iteration to divide again and try to read.
2025
2026 We don't handle the other half, because this function only tries
2027 to read a single readable subrange. */
2028 current_begin = first_half_begin;
2029 current_end = first_half_end;
2030 }
2031 }
2032
2033 if (forward)
2034 {
2035 /* The [begin, current_begin) range has been read. */
2036 r.begin = begin;
2037 r.end = current_begin;
2038 r.data = buf;
2039 }
2040 else
2041 {
2042 /* The [current_end, end) range has been read. */
2043 LONGEST rlen = end - current_end;
f1a507a1 2044
8dedea02
VP
2045 r.data = xmalloc (rlen);
2046 memcpy (r.data, buf + current_end - begin, rlen);
2047 r.begin = current_end;
2048 r.end = end;
2049 xfree (buf);
2050 }
2051 VEC_safe_push(memory_read_result_s, (*result), &r);
2052}
2053
2054void
2055free_memory_read_result_vector (void *x)
2056{
2057 VEC(memory_read_result_s) *v = x;
2058 memory_read_result_s *current;
2059 int ix;
2060
2061 for (ix = 0; VEC_iterate (memory_read_result_s, v, ix, current); ++ix)
2062 {
2063 xfree (current->data);
2064 }
2065 VEC_free (memory_read_result_s, v);
2066}
2067
2068VEC(memory_read_result_s) *
2069read_memory_robust (struct target_ops *ops, ULONGEST offset, LONGEST len)
2070{
2071 VEC(memory_read_result_s) *result = 0;
2072
2073 LONGEST xfered = 0;
d5086790
VP
2074 while (xfered < len)
2075 {
8dedea02
VP
2076 struct mem_region *region = lookup_mem_region (offset + xfered);
2077 LONGEST rlen;
5d502164 2078
8dedea02
VP
2079 /* If there is no explicit region, a fake one should be created. */
2080 gdb_assert (region);
2081
2082 if (region->hi == 0)
2083 rlen = len - xfered;
2084 else
2085 rlen = region->hi - offset;
2086
2087 if (region->attrib.mode == MEM_NONE || region->attrib.mode == MEM_WO)
d5086790 2088 {
c378eb4e 2089 /* Cannot read this region. Note that we can end up here only
8dedea02
VP
2090 if the region is explicitly marked inaccessible, or
2091 'inaccessible-by-default' is in effect. */
2092 xfered += rlen;
2093 }
2094 else
2095 {
2096 LONGEST to_read = min (len - xfered, rlen);
2097 gdb_byte *buffer = (gdb_byte *)xmalloc (to_read);
2098
2099 LONGEST xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2100 (gdb_byte *) buffer,
2101 offset + xfered, to_read);
2102 /* Call an observer, notifying them of the xfer progress? */
d5086790 2103 if (xfer <= 0)
d5086790 2104 {
c378eb4e 2105 /* Got an error reading full chunk. See if maybe we can read
8dedea02
VP
2106 some subrange. */
2107 xfree (buffer);
3e43a32a
MS
2108 read_whatever_is_readable (ops, offset + xfered,
2109 offset + xfered + to_read, &result);
8dedea02 2110 xfered += to_read;
d5086790 2111 }
8dedea02
VP
2112 else
2113 {
2114 struct memory_read_result r;
2115 r.data = buffer;
2116 r.begin = offset + xfered;
2117 r.end = r.begin + xfer;
2118 VEC_safe_push (memory_read_result_s, result, &r);
2119 xfered += xfer;
2120 }
2121 QUIT;
d5086790 2122 }
d5086790 2123 }
8dedea02 2124 return result;
d5086790
VP
2125}
2126
8dedea02 2127
cf7a04e8
DJ
2128/* An alternative to target_write with progress callbacks. */
2129
1e3ff5ad 2130LONGEST
cf7a04e8
DJ
2131target_write_with_progress (struct target_ops *ops,
2132 enum target_object object,
2133 const char *annex, const gdb_byte *buf,
2134 ULONGEST offset, LONGEST len,
2135 void (*progress) (ULONGEST, void *), void *baton)
1e3ff5ad
AC
2136{
2137 LONGEST xfered = 0;
a76d924d
DJ
2138
2139 /* Give the progress callback a chance to set up. */
2140 if (progress)
2141 (*progress) (0, baton);
2142
1e3ff5ad
AC
2143 while (xfered < len)
2144 {
9b409511
YQ
2145 ULONGEST xfered_len;
2146 enum target_xfer_status status;
2147
2148 status = target_write_partial (ops, object, annex,
2149 (gdb_byte *) buf + xfered,
2150 offset + xfered, len - xfered,
2151 &xfered_len);
cf7a04e8 2152
9b409511 2153 if (status == TARGET_XFER_EOF)
13547ab6 2154 return xfered;
9b409511 2155 if (TARGET_XFER_STATUS_ERROR_P (status))
0088c768 2156 return -1;
cf7a04e8 2157
9b409511 2158 gdb_assert (status == TARGET_XFER_OK);
cf7a04e8 2159 if (progress)
9b409511 2160 (*progress) (xfered_len, baton);
cf7a04e8 2161
9b409511 2162 xfered += xfered_len;
1e3ff5ad
AC
2163 QUIT;
2164 }
2165 return len;
2166}
2167
7f79c47e
DE
2168/* For docs on target_write see target.h. */
2169
cf7a04e8
DJ
2170LONGEST
2171target_write (struct target_ops *ops,
2172 enum target_object object,
2173 const char *annex, const gdb_byte *buf,
2174 ULONGEST offset, LONGEST len)
2175{
2176 return target_write_with_progress (ops, object, annex, buf, offset, len,
2177 NULL, NULL);
2178}
2179
159f81f3
DJ
2180/* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
2181 the size of the transferred data. PADDING additional bytes are
2182 available in *BUF_P. This is a helper function for
2183 target_read_alloc; see the declaration of that function for more
2184 information. */
13547ab6 2185
159f81f3
DJ
2186static LONGEST
2187target_read_alloc_1 (struct target_ops *ops, enum target_object object,
2188 const char *annex, gdb_byte **buf_p, int padding)
13547ab6
DJ
2189{
2190 size_t buf_alloc, buf_pos;
2191 gdb_byte *buf;
13547ab6
DJ
2192
2193 /* This function does not have a length parameter; it reads the
2194 entire OBJECT). Also, it doesn't support objects fetched partly
2195 from one target and partly from another (in a different stratum,
2196 e.g. a core file and an executable). Both reasons make it
2197 unsuitable for reading memory. */
2198 gdb_assert (object != TARGET_OBJECT_MEMORY);
2199
2200 /* Start by reading up to 4K at a time. The target will throttle
2201 this number down if necessary. */
2202 buf_alloc = 4096;
2203 buf = xmalloc (buf_alloc);
2204 buf_pos = 0;
2205 while (1)
2206 {
9b409511
YQ
2207 ULONGEST xfered_len;
2208 enum target_xfer_status status;
2209
2210 status = target_read_partial (ops, object, annex, &buf[buf_pos],
2211 buf_pos, buf_alloc - buf_pos - padding,
2212 &xfered_len);
2213
2214 if (status == TARGET_XFER_EOF)
13547ab6
DJ
2215 {
2216 /* Read all there was. */
2217 if (buf_pos == 0)
2218 xfree (buf);
2219 else
2220 *buf_p = buf;
2221 return buf_pos;
2222 }
9b409511
YQ
2223 else if (status != TARGET_XFER_OK)
2224 {
2225 /* An error occurred. */
2226 xfree (buf);
2227 return TARGET_XFER_E_IO;
2228 }
13547ab6 2229
9b409511 2230 buf_pos += xfered_len;
13547ab6
DJ
2231
2232 /* If the buffer is filling up, expand it. */
2233 if (buf_alloc < buf_pos * 2)
2234 {
2235 buf_alloc *= 2;
2236 buf = xrealloc (buf, buf_alloc);
2237 }
2238
2239 QUIT;
2240 }
2241}
2242
159f81f3
DJ
2243/* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
2244 the size of the transferred data. See the declaration in "target.h"
2245 function for more information about the return value. */
2246
2247LONGEST
2248target_read_alloc (struct target_ops *ops, enum target_object object,
2249 const char *annex, gdb_byte **buf_p)
2250{
2251 return target_read_alloc_1 (ops, object, annex, buf_p, 0);
2252}
2253
2254/* Read OBJECT/ANNEX using OPS. The result is NUL-terminated and
2255 returned as a string, allocated using xmalloc. If an error occurs
2256 or the transfer is unsupported, NULL is returned. Empty objects
2257 are returned as allocated but empty strings. A warning is issued
2258 if the result contains any embedded NUL bytes. */
2259
2260char *
2261target_read_stralloc (struct target_ops *ops, enum target_object object,
2262 const char *annex)
2263{
39086a0e
PA
2264 gdb_byte *buffer;
2265 char *bufstr;
7313baad 2266 LONGEST i, transferred;
159f81f3 2267
39086a0e
PA
2268 transferred = target_read_alloc_1 (ops, object, annex, &buffer, 1);
2269 bufstr = (char *) buffer;
159f81f3
DJ
2270
2271 if (transferred < 0)
2272 return NULL;
2273
2274 if (transferred == 0)
2275 return xstrdup ("");
2276
39086a0e 2277 bufstr[transferred] = 0;
7313baad
UW
2278
2279 /* Check for embedded NUL bytes; but allow trailing NULs. */
39086a0e
PA
2280 for (i = strlen (bufstr); i < transferred; i++)
2281 if (bufstr[i] != 0)
7313baad
UW
2282 {
2283 warning (_("target object %d, annex %s, "
2284 "contained unexpected null characters"),
2285 (int) object, annex ? annex : "(none)");
2286 break;
2287 }
159f81f3 2288
39086a0e 2289 return bufstr;
159f81f3
DJ
2290}
2291
b6591e8b
AC
2292/* Memory transfer methods. */
2293
2294void
1b0ba102 2295get_target_memory (struct target_ops *ops, CORE_ADDR addr, gdb_byte *buf,
b6591e8b
AC
2296 LONGEST len)
2297{
07b82ea5
PA
2298 /* This method is used to read from an alternate, non-current
2299 target. This read must bypass the overlay support (as symbols
2300 don't match this target), and GDB's internal cache (wrong cache
2301 for this target). */
2302 if (target_read (ops, TARGET_OBJECT_RAW_MEMORY, NULL, buf, addr, len)
b6591e8b 2303 != len)
578d3588 2304 memory_error (TARGET_XFER_E_IO, addr);
b6591e8b
AC
2305}
2306
2307ULONGEST
5d502164
MS
2308get_target_memory_unsigned (struct target_ops *ops, CORE_ADDR addr,
2309 int len, enum bfd_endian byte_order)
b6591e8b 2310{
f6519ebc 2311 gdb_byte buf[sizeof (ULONGEST)];
b6591e8b
AC
2312
2313 gdb_assert (len <= sizeof (buf));
2314 get_target_memory (ops, addr, buf, len);
e17a4113 2315 return extract_unsigned_integer (buf, len, byte_order);
b6591e8b
AC
2316}
2317
3db08215
MM
2318/* See target.h. */
2319
d914c394
SS
2320int
2321target_insert_breakpoint (struct gdbarch *gdbarch,
2322 struct bp_target_info *bp_tgt)
2323{
2324 if (!may_insert_breakpoints)
2325 {
2326 warning (_("May not insert breakpoints"));
2327 return 1;
2328 }
2329
6b84065d
TT
2330 return current_target.to_insert_breakpoint (&current_target,
2331 gdbarch, bp_tgt);
d914c394
SS
2332}
2333
3db08215
MM
2334/* See target.h. */
2335
d914c394 2336int
6b84065d
TT
2337target_remove_breakpoint (struct gdbarch *gdbarch,
2338 struct bp_target_info *bp_tgt)
d914c394
SS
2339{
2340 /* This is kind of a weird case to handle, but the permission might
2341 have been changed after breakpoints were inserted - in which case
2342 we should just take the user literally and assume that any
2343 breakpoints should be left in place. */
2344 if (!may_insert_breakpoints)
2345 {
2346 warning (_("May not remove breakpoints"));
2347 return 1;
2348 }
2349
6b84065d
TT
2350 return current_target.to_remove_breakpoint (&current_target,
2351 gdbarch, bp_tgt);
d914c394
SS
2352}
2353
c906108c 2354static void
fba45db2 2355target_info (char *args, int from_tty)
c906108c
SS
2356{
2357 struct target_ops *t;
c906108c 2358 int has_all_mem = 0;
c5aa993b 2359
c906108c 2360 if (symfile_objfile != NULL)
4262abfb
JK
2361 printf_unfiltered (_("Symbols from \"%s\".\n"),
2362 objfile_name (symfile_objfile));
c906108c 2363
258b763a 2364 for (t = target_stack; t != NULL; t = t->beneath)
c906108c 2365 {
c35b1492 2366 if (!(*t->to_has_memory) (t))
c906108c
SS
2367 continue;
2368
c5aa993b 2369 if ((int) (t->to_stratum) <= (int) dummy_stratum)
c906108c
SS
2370 continue;
2371 if (has_all_mem)
3e43a32a
MS
2372 printf_unfiltered (_("\tWhile running this, "
2373 "GDB does not access memory from...\n"));
c5aa993b
JM
2374 printf_unfiltered ("%s:\n", t->to_longname);
2375 (t->to_files_info) (t);
c35b1492 2376 has_all_mem = (*t->to_has_all_memory) (t);
c906108c
SS
2377 }
2378}
2379
fd79ecee
DJ
2380/* This function is called before any new inferior is created, e.g.
2381 by running a program, attaching, or connecting to a target.
2382 It cleans up any state from previous invocations which might
2383 change between runs. This is a subset of what target_preopen
2384 resets (things which might change between targets). */
2385
2386void
2387target_pre_inferior (int from_tty)
2388{
c378eb4e 2389 /* Clear out solib state. Otherwise the solib state of the previous
b9db4ced 2390 inferior might have survived and is entirely wrong for the new
c378eb4e 2391 target. This has been observed on GNU/Linux using glibc 2.3. How
b9db4ced
UW
2392 to reproduce:
2393
2394 bash$ ./foo&
2395 [1] 4711
2396 bash$ ./foo&
2397 [1] 4712
2398 bash$ gdb ./foo
2399 [...]
2400 (gdb) attach 4711
2401 (gdb) detach
2402 (gdb) attach 4712
2403 Cannot access memory at address 0xdeadbeef
2404 */
b9db4ced 2405
50c71eaf
PA
2406 /* In some OSs, the shared library list is the same/global/shared
2407 across inferiors. If code is shared between processes, so are
2408 memory regions and features. */
f5656ead 2409 if (!gdbarch_has_global_solist (target_gdbarch ()))
50c71eaf
PA
2410 {
2411 no_shared_libraries (NULL, from_tty);
2412
2413 invalidate_target_mem_regions ();
424163ea 2414
50c71eaf
PA
2415 target_clear_description ();
2416 }
8ffcbaaf
YQ
2417
2418 agent_capability_invalidate ();
fd79ecee
DJ
2419}
2420
b8fa0bfa
PA
2421/* Callback for iterate_over_inferiors. Gets rid of the given
2422 inferior. */
2423
2424static int
2425dispose_inferior (struct inferior *inf, void *args)
2426{
2427 struct thread_info *thread;
2428
2429 thread = any_thread_of_process (inf->pid);
2430 if (thread)
2431 {
2432 switch_to_thread (thread->ptid);
2433
2434 /* Core inferiors actually should be detached, not killed. */
2435 if (target_has_execution)
2436 target_kill ();
2437 else
2438 target_detach (NULL, 0);
2439 }
2440
2441 return 0;
2442}
2443
c906108c
SS
2444/* This is to be called by the open routine before it does
2445 anything. */
2446
2447void
fba45db2 2448target_preopen (int from_tty)
c906108c 2449{
c5aa993b 2450 dont_repeat ();
c906108c 2451
b8fa0bfa 2452 if (have_inferiors ())
c5aa993b 2453 {
adf40b2e 2454 if (!from_tty
b8fa0bfa
PA
2455 || !have_live_inferiors ()
2456 || query (_("A program is being debugged already. Kill it? ")))
2457 iterate_over_inferiors (dispose_inferior, NULL);
c906108c 2458 else
8a3fe4f8 2459 error (_("Program not killed."));
c906108c
SS
2460 }
2461
2462 /* Calling target_kill may remove the target from the stack. But if
2463 it doesn't (which seems like a win for UDI), remove it now. */
87ab71f0
PA
2464 /* Leave the exec target, though. The user may be switching from a
2465 live process to a core of the same program. */
460014f5 2466 pop_all_targets_above (file_stratum);
fd79ecee
DJ
2467
2468 target_pre_inferior (from_tty);
c906108c
SS
2469}
2470
2471/* Detach a target after doing deferred register stores. */
2472
2473void
52554a0e 2474target_detach (const char *args, int from_tty)
c906108c 2475{
136d6dae
VP
2476 struct target_ops* t;
2477
f5656ead 2478 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
50c71eaf
PA
2479 /* Don't remove global breakpoints here. They're removed on
2480 disconnection from the target. */
2481 ;
2482 else
2483 /* If we're in breakpoints-always-inserted mode, have to remove
2484 them before detaching. */
dfd4cc63 2485 remove_breakpoints_pid (ptid_get_pid (inferior_ptid));
74960c60 2486
24291992
PA
2487 prepare_for_detach ();
2488
09da0d0a
TT
2489 current_target.to_detach (&current_target, args, from_tty);
2490 if (targetdebug)
2491 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n",
2492 args, from_tty);
c906108c
SS
2493}
2494
6ad8ae5c
DJ
2495void
2496target_disconnect (char *args, int from_tty)
2497{
597320e7
DJ
2498 struct target_ops *t;
2499
50c71eaf
PA
2500 /* If we're in breakpoints-always-inserted mode or if breakpoints
2501 are global across processes, we have to remove them before
2502 disconnecting. */
74960c60
VP
2503 remove_breakpoints ();
2504
597320e7
DJ
2505 for (t = current_target.beneath; t != NULL; t = t->beneath)
2506 if (t->to_disconnect != NULL)
2507 {
2508 if (targetdebug)
2509 fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n",
2510 args, from_tty);
2511 t->to_disconnect (t, args, from_tty);
2512 return;
2513 }
2514
2515 tcomplain ();
6ad8ae5c
DJ
2516}
2517
117de6a9 2518ptid_t
47608cb1 2519target_wait (ptid_t ptid, struct target_waitstatus *status, int options)
117de6a9
PA
2520{
2521 struct target_ops *t;
6b84065d
TT
2522 ptid_t retval = (current_target.to_wait) (&current_target, ptid,
2523 status, options);
117de6a9 2524
6b84065d 2525 if (targetdebug)
117de6a9 2526 {
6b84065d
TT
2527 char *status_string;
2528 char *options_string;
117de6a9 2529
6b84065d
TT
2530 status_string = target_waitstatus_to_string (status);
2531 options_string = target_options_to_string (options);
2532 fprintf_unfiltered (gdb_stdlog,
2533 "target_wait (%d, status, options={%s})"
2534 " = %d, %s\n",
2535 ptid_get_pid (ptid), options_string,
2536 ptid_get_pid (retval), status_string);
2537 xfree (status_string);
2538 xfree (options_string);
117de6a9
PA
2539 }
2540
6b84065d 2541 return retval;
117de6a9
PA
2542}
2543
2544char *
2545target_pid_to_str (ptid_t ptid)
2546{
2547 struct target_ops *t;
2548
2549 for (t = current_target.beneath; t != NULL; t = t->beneath)
2550 {
2551 if (t->to_pid_to_str != NULL)
2552 return (*t->to_pid_to_str) (t, ptid);
2553 }
2554
2555 return normal_pid_to_str (ptid);
2556}
2557
4694da01
TT
2558char *
2559target_thread_name (struct thread_info *info)
2560{
825828fc 2561 return current_target.to_thread_name (&current_target, info);
4694da01
TT
2562}
2563
e1ac3328 2564void
2ea28649 2565target_resume (ptid_t ptid, int step, enum gdb_signal signal)
e1ac3328 2566{
28439f5e
PA
2567 struct target_ops *t;
2568
4e5d721f 2569 target_dcache_invalidate ();
28439f5e 2570
6b84065d
TT
2571 current_target.to_resume (&current_target, ptid, step, signal);
2572 if (targetdebug)
2573 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n",
2574 ptid_get_pid (ptid),
2575 step ? "step" : "continue",
2576 gdb_signal_to_name (signal));
28439f5e 2577
6b84065d
TT
2578 registers_changed_ptid (ptid);
2579 set_executing (ptid, 1);
2580 set_running (ptid, 1);
2581 clear_inline_frame_state (ptid);
e1ac3328 2582}
2455069d
UW
2583
2584void
2585target_pass_signals (int numsigs, unsigned char *pass_signals)
2586{
2587 struct target_ops *t;
2588
2589 for (t = current_target.beneath; t != NULL; t = t->beneath)
2590 {
2591 if (t->to_pass_signals != NULL)
2592 {
2593 if (targetdebug)
2594 {
2595 int i;
2596
2597 fprintf_unfiltered (gdb_stdlog, "target_pass_signals (%d, {",
2598 numsigs);
2599
2600 for (i = 0; i < numsigs; i++)
2601 if (pass_signals[i])
2602 fprintf_unfiltered (gdb_stdlog, " %s",
2ea28649 2603 gdb_signal_to_name (i));
2455069d
UW
2604
2605 fprintf_unfiltered (gdb_stdlog, " })\n");
2606 }
2607
94bedb42 2608 (*t->to_pass_signals) (t, numsigs, pass_signals);
2455069d
UW
2609 return;
2610 }
2611 }
2612}
2613
9b224c5e
PA
2614void
2615target_program_signals (int numsigs, unsigned char *program_signals)
2616{
2617 struct target_ops *t;
2618
2619 for (t = current_target.beneath; t != NULL; t = t->beneath)
2620 {
2621 if (t->to_program_signals != NULL)
2622 {
2623 if (targetdebug)
2624 {
2625 int i;
2626
2627 fprintf_unfiltered (gdb_stdlog, "target_program_signals (%d, {",
2628 numsigs);
2629
2630 for (i = 0; i < numsigs; i++)
2631 if (program_signals[i])
2632 fprintf_unfiltered (gdb_stdlog, " %s",
2ea28649 2633 gdb_signal_to_name (i));
9b224c5e
PA
2634
2635 fprintf_unfiltered (gdb_stdlog, " })\n");
2636 }
2637
daf5e9b6 2638 (*t->to_program_signals) (t, numsigs, program_signals);
9b224c5e
PA
2639 return;
2640 }
2641 }
2642}
2643
ee057212
DJ
2644/* Look through the list of possible targets for a target that can
2645 follow forks. */
2646
2647int
07107ca6 2648target_follow_fork (int follow_child, int detach_fork)
ee057212
DJ
2649{
2650 struct target_ops *t;
2651
2652 for (t = current_target.beneath; t != NULL; t = t->beneath)
2653 {
2654 if (t->to_follow_fork != NULL)
2655 {
07107ca6 2656 int retval = t->to_follow_fork (t, follow_child, detach_fork);
5d502164 2657
ee057212 2658 if (targetdebug)
07107ca6
LM
2659 fprintf_unfiltered (gdb_stdlog,
2660 "target_follow_fork (%d, %d) = %d\n",
2661 follow_child, detach_fork, retval);
ee057212
DJ
2662 return retval;
2663 }
2664 }
2665
2666 /* Some target returned a fork event, but did not know how to follow it. */
2667 internal_error (__FILE__, __LINE__,
9b20d036 2668 _("could not find a target to follow fork"));
ee057212
DJ
2669}
2670
136d6dae
VP
2671void
2672target_mourn_inferior (void)
2673{
2674 struct target_ops *t;
5d502164 2675
136d6dae
VP
2676 for (t = current_target.beneath; t != NULL; t = t->beneath)
2677 {
2678 if (t->to_mourn_inferior != NULL)
2679 {
2680 t->to_mourn_inferior (t);
947b8855
PA
2681 if (targetdebug)
2682 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
efbd6e75
JB
2683
2684 /* We no longer need to keep handles on any of the object files.
2685 Make sure to release them to avoid unnecessarily locking any
2686 of them while we're not actually debugging. */
2687 bfd_cache_close_all ();
2688
136d6dae
VP
2689 return;
2690 }
2691 }
2692
2693 internal_error (__FILE__, __LINE__,
9b20d036 2694 _("could not find a target to follow mourn inferior"));
136d6dae
VP
2695}
2696
424163ea
DJ
2697/* Look for a target which can describe architectural features, starting
2698 from TARGET. If we find one, return its description. */
2699
2700const struct target_desc *
2701target_read_description (struct target_ops *target)
2702{
2703 struct target_ops *t;
2704
2705 for (t = target; t != NULL; t = t->beneath)
2706 if (t->to_read_description != NULL)
2707 {
2708 const struct target_desc *tdesc;
2709
2710 tdesc = t->to_read_description (t);
2711 if (tdesc)
2712 return tdesc;
2713 }
2714
2715 return NULL;
2716}
2717
08388c79
DE
2718/* The default implementation of to_search_memory.
2719 This implements a basic search of memory, reading target memory and
2720 performing the search here (as opposed to performing the search in on the
2721 target side with, for example, gdbserver). */
2722
2723int
2724simple_search_memory (struct target_ops *ops,
2725 CORE_ADDR start_addr, ULONGEST search_space_len,
2726 const gdb_byte *pattern, ULONGEST pattern_len,
2727 CORE_ADDR *found_addrp)
2728{
2729 /* NOTE: also defined in find.c testcase. */
2730#define SEARCH_CHUNK_SIZE 16000
2731 const unsigned chunk_size = SEARCH_CHUNK_SIZE;
2732 /* Buffer to hold memory contents for searching. */
2733 gdb_byte *search_buf;
2734 unsigned search_buf_size;
2735 struct cleanup *old_cleanups;
2736
2737 search_buf_size = chunk_size + pattern_len - 1;
2738
2739 /* No point in trying to allocate a buffer larger than the search space. */
2740 if (search_space_len < search_buf_size)
2741 search_buf_size = search_space_len;
2742
2743 search_buf = malloc (search_buf_size);
2744 if (search_buf == NULL)
5e1471f5 2745 error (_("Unable to allocate memory to perform the search."));
08388c79
DE
2746 old_cleanups = make_cleanup (free_current_contents, &search_buf);
2747
2748 /* Prime the search buffer. */
2749
2750 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2751 search_buf, start_addr, search_buf_size) != search_buf_size)
2752 {
b3dc46ff
AB
2753 warning (_("Unable to access %s bytes of target "
2754 "memory at %s, halting search."),
2755 pulongest (search_buf_size), hex_string (start_addr));
08388c79
DE
2756 do_cleanups (old_cleanups);
2757 return -1;
2758 }
2759
2760 /* Perform the search.
2761
2762 The loop is kept simple by allocating [N + pattern-length - 1] bytes.
2763 When we've scanned N bytes we copy the trailing bytes to the start and
2764 read in another N bytes. */
2765
2766 while (search_space_len >= pattern_len)
2767 {
2768 gdb_byte *found_ptr;
2769 unsigned nr_search_bytes = min (search_space_len, search_buf_size);
2770
2771 found_ptr = memmem (search_buf, nr_search_bytes,
2772 pattern, pattern_len);
2773
2774 if (found_ptr != NULL)
2775 {
2776 CORE_ADDR found_addr = start_addr + (found_ptr - search_buf);
5d502164 2777
08388c79
DE
2778 *found_addrp = found_addr;
2779 do_cleanups (old_cleanups);
2780 return 1;
2781 }
2782
2783 /* Not found in this chunk, skip to next chunk. */
2784
2785 /* Don't let search_space_len wrap here, it's unsigned. */
2786 if (search_space_len >= chunk_size)
2787 search_space_len -= chunk_size;
2788 else
2789 search_space_len = 0;
2790
2791 if (search_space_len >= pattern_len)
2792 {
2793 unsigned keep_len = search_buf_size - chunk_size;
8a35fb51 2794 CORE_ADDR read_addr = start_addr + chunk_size + keep_len;
08388c79
DE
2795 int nr_to_read;
2796
2797 /* Copy the trailing part of the previous iteration to the front
2798 of the buffer for the next iteration. */
2799 gdb_assert (keep_len == pattern_len - 1);
2800 memcpy (search_buf, search_buf + chunk_size, keep_len);
2801
2802 nr_to_read = min (search_space_len - keep_len, chunk_size);
2803
2804 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2805 search_buf + keep_len, read_addr,
2806 nr_to_read) != nr_to_read)
2807 {
b3dc46ff 2808 warning (_("Unable to access %s bytes of target "
9b20d036 2809 "memory at %s, halting search."),
b3dc46ff 2810 plongest (nr_to_read),
08388c79
DE
2811 hex_string (read_addr));
2812 do_cleanups (old_cleanups);
2813 return -1;
2814 }
2815
2816 start_addr += chunk_size;
2817 }
2818 }
2819
2820 /* Not found. */
2821
2822 do_cleanups (old_cleanups);
2823 return 0;
2824}
2825
2826/* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
2827 sequence of bytes in PATTERN with length PATTERN_LEN.
2828
2829 The result is 1 if found, 0 if not found, and -1 if there was an error
2830 requiring halting of the search (e.g. memory read error).
2831 If the pattern is found the address is recorded in FOUND_ADDRP. */
2832
2833int
2834target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
2835 const gdb_byte *pattern, ULONGEST pattern_len,
2836 CORE_ADDR *found_addrp)
2837{
2838 struct target_ops *t;
2839 int found;
2840
2841 /* We don't use INHERIT to set current_target.to_search_memory,
2842 so we have to scan the target stack and handle targetdebug
2843 ourselves. */
2844
2845 if (targetdebug)
2846 fprintf_unfiltered (gdb_stdlog, "target_search_memory (%s, ...)\n",
2847 hex_string (start_addr));
2848
2849 for (t = current_target.beneath; t != NULL; t = t->beneath)
2850 if (t->to_search_memory != NULL)
2851 break;
2852
2853 if (t != NULL)
2854 {
2855 found = t->to_search_memory (t, start_addr, search_space_len,
2856 pattern, pattern_len, found_addrp);
2857 }
2858 else
2859 {
2860 /* If a special version of to_search_memory isn't available, use the
2861 simple version. */
c35b1492 2862 found = simple_search_memory (current_target.beneath,
08388c79
DE
2863 start_addr, search_space_len,
2864 pattern, pattern_len, found_addrp);
2865 }
2866
2867 if (targetdebug)
2868 fprintf_unfiltered (gdb_stdlog, " = %d\n", found);
2869
2870 return found;
2871}
2872
8edfe269
DJ
2873/* Look through the currently pushed targets. If none of them will
2874 be able to restart the currently running process, issue an error
2875 message. */
2876
2877void
2878target_require_runnable (void)
2879{
2880 struct target_ops *t;
2881
2882 for (t = target_stack; t != NULL; t = t->beneath)
2883 {
2884 /* If this target knows how to create a new program, then
2885 assume we will still be able to after killing the current
2886 one. Either killing and mourning will not pop T, or else
2887 find_default_run_target will find it again. */
2888 if (t->to_create_inferior != NULL)
2889 return;
2890
2891 /* Do not worry about thread_stratum targets that can not
2892 create inferiors. Assume they will be pushed again if
2893 necessary, and continue to the process_stratum. */
85e747d2
UW
2894 if (t->to_stratum == thread_stratum
2895 || t->to_stratum == arch_stratum)
8edfe269
DJ
2896 continue;
2897
3e43a32a
MS
2898 error (_("The \"%s\" target does not support \"run\". "
2899 "Try \"help target\" or \"continue\"."),
8edfe269
DJ
2900 t->to_shortname);
2901 }
2902
2903 /* This function is only called if the target is running. In that
2904 case there should have been a process_stratum target and it
c378eb4e 2905 should either know how to create inferiors, or not... */
9b20d036 2906 internal_error (__FILE__, __LINE__, _("No targets found"));
8edfe269
DJ
2907}
2908
c906108c
SS
2909/* Look through the list of possible targets for a target that can
2910 execute a run or attach command without any other data. This is
2911 used to locate the default process stratum.
2912
5f667f2d
PA
2913 If DO_MESG is not NULL, the result is always valid (error() is
2914 called for errors); else, return NULL on error. */
c906108c
SS
2915
2916static struct target_ops *
fba45db2 2917find_default_run_target (char *do_mesg)
c906108c
SS
2918{
2919 struct target_ops **t;
2920 struct target_ops *runable = NULL;
2921 int count;
2922
2923 count = 0;
2924
2925 for (t = target_structs; t < target_structs + target_struct_size;
2926 ++t)
2927 {
c5aa993b 2928 if ((*t)->to_can_run && target_can_run (*t))
c906108c
SS
2929 {
2930 runable = *t;
2931 ++count;
2932 }
2933 }
2934
2935 if (count != 1)
5f667f2d
PA
2936 {
2937 if (do_mesg)
2938 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
2939 else
2940 return NULL;
2941 }
c906108c
SS
2942
2943 return runable;
2944}
2945
2946void
136d6dae 2947find_default_attach (struct target_ops *ops, char *args, int from_tty)
c906108c
SS
2948{
2949 struct target_ops *t;
2950
c5aa993b 2951 t = find_default_run_target ("attach");
136d6dae 2952 (t->to_attach) (t, args, from_tty);
c906108c
SS
2953 return;
2954}
2955
c906108c 2956void
136d6dae
VP
2957find_default_create_inferior (struct target_ops *ops,
2958 char *exec_file, char *allargs, char **env,
c27cda74 2959 int from_tty)
c906108c
SS
2960{
2961 struct target_ops *t;
2962
c5aa993b 2963 t = find_default_run_target ("run");
136d6dae 2964 (t->to_create_inferior) (t, exec_file, allargs, env, from_tty);
c906108c
SS
2965 return;
2966}
2967
2c0b251b 2968static int
6a109b6b 2969find_default_can_async_p (struct target_ops *ignore)
b84876c2
PA
2970{
2971 struct target_ops *t;
2972
5f667f2d
PA
2973 /* This may be called before the target is pushed on the stack;
2974 look for the default process stratum. If there's none, gdb isn't
2975 configured with a native debugger, and target remote isn't
2976 connected yet. */
2977 t = find_default_run_target (NULL);
6b84065d 2978 if (t && t->to_can_async_p != delegate_can_async_p)
6a109b6b 2979 return (t->to_can_async_p) (t);
b84876c2
PA
2980 return 0;
2981}
2982
2c0b251b 2983static int
6a109b6b 2984find_default_is_async_p (struct target_ops *ignore)
b84876c2
PA
2985{
2986 struct target_ops *t;
2987
5f667f2d
PA
2988 /* This may be called before the target is pushed on the stack;
2989 look for the default process stratum. If there's none, gdb isn't
2990 configured with a native debugger, and target remote isn't
2991 connected yet. */
2992 t = find_default_run_target (NULL);
6b84065d 2993 if (t && t->to_is_async_p != delegate_is_async_p)
6a109b6b 2994 return (t->to_is_async_p) (t);
b84876c2
PA
2995 return 0;
2996}
2997
2c0b251b 2998static int
2a9a2795 2999find_default_supports_non_stop (struct target_ops *self)
9908b566
VP
3000{
3001 struct target_ops *t;
3002
3003 t = find_default_run_target (NULL);
3004 if (t && t->to_supports_non_stop)
2a9a2795 3005 return (t->to_supports_non_stop) (t);
9908b566
VP
3006 return 0;
3007}
3008
3009int
2c0b251b 3010target_supports_non_stop (void)
9908b566
VP
3011{
3012 struct target_ops *t;
5d502164 3013
9908b566
VP
3014 for (t = &current_target; t != NULL; t = t->beneath)
3015 if (t->to_supports_non_stop)
2a9a2795 3016 return t->to_supports_non_stop (t);
9908b566
VP
3017
3018 return 0;
3019}
3020
145b16a9
UW
3021/* Implement the "info proc" command. */
3022
451b7c33 3023int
145b16a9
UW
3024target_info_proc (char *args, enum info_proc_what what)
3025{
3026 struct target_ops *t;
3027
3028 /* If we're already connected to something that can get us OS
3029 related data, use it. Otherwise, try using the native
3030 target. */
3031 if (current_target.to_stratum >= process_stratum)
3032 t = current_target.beneath;
3033 else
3034 t = find_default_run_target (NULL);
3035
3036 for (; t != NULL; t = t->beneath)
3037 {
3038 if (t->to_info_proc != NULL)
3039 {
3040 t->to_info_proc (t, args, what);
3041
3042 if (targetdebug)
3043 fprintf_unfiltered (gdb_stdlog,
3044 "target_info_proc (\"%s\", %d)\n", args, what);
3045
451b7c33 3046 return 1;
145b16a9
UW
3047 }
3048 }
3049
451b7c33 3050 return 0;
145b16a9
UW
3051}
3052
03583c20 3053static int
2bfc0540 3054find_default_supports_disable_randomization (struct target_ops *self)
03583c20
UW
3055{
3056 struct target_ops *t;
3057
3058 t = find_default_run_target (NULL);
3059 if (t && t->to_supports_disable_randomization)
2bfc0540 3060 return (t->to_supports_disable_randomization) (t);
03583c20
UW
3061 return 0;
3062}
3063
3064int
3065target_supports_disable_randomization (void)
3066{
3067 struct target_ops *t;
3068
3069 for (t = &current_target; t != NULL; t = t->beneath)
3070 if (t->to_supports_disable_randomization)
2bfc0540 3071 return t->to_supports_disable_randomization (t);
03583c20
UW
3072
3073 return 0;
3074}
9908b566 3075
07e059b5
VP
3076char *
3077target_get_osdata (const char *type)
3078{
07e059b5
VP
3079 struct target_ops *t;
3080
739ef7fb
PA
3081 /* If we're already connected to something that can get us OS
3082 related data, use it. Otherwise, try using the native
3083 target. */
3084 if (current_target.to_stratum >= process_stratum)
6d097e65 3085 t = current_target.beneath;
739ef7fb
PA
3086 else
3087 t = find_default_run_target ("get OS data");
07e059b5
VP
3088
3089 if (!t)
3090 return NULL;
3091
6d097e65 3092 return target_read_stralloc (t, TARGET_OBJECT_OSDATA, type);
07e059b5
VP
3093}
3094
6c95b8df
PA
3095/* Determine the current address space of thread PTID. */
3096
3097struct address_space *
3098target_thread_address_space (ptid_t ptid)
3099{
c0694254 3100 struct address_space *aspace;
6c95b8df 3101 struct inferior *inf;
c0694254
PA
3102 struct target_ops *t;
3103
3104 for (t = current_target.beneath; t != NULL; t = t->beneath)
3105 {
3106 if (t->to_thread_address_space != NULL)
3107 {
3108 aspace = t->to_thread_address_space (t, ptid);
3109 gdb_assert (aspace);
6c95b8df 3110
c0694254
PA
3111 if (targetdebug)
3112 fprintf_unfiltered (gdb_stdlog,
3113 "target_thread_address_space (%s) = %d\n",
3114 target_pid_to_str (ptid),
3115 address_space_num (aspace));
3116 return aspace;
3117 }
3118 }
6c95b8df
PA
3119
3120 /* Fall-back to the "main" address space of the inferior. */
3121 inf = find_inferior_pid (ptid_get_pid (ptid));
3122
3123 if (inf == NULL || inf->aspace == NULL)
3e43a32a 3124 internal_error (__FILE__, __LINE__,
9b20d036
MS
3125 _("Can't determine the current "
3126 "address space of thread %s\n"),
6c95b8df
PA
3127 target_pid_to_str (ptid));
3128
3129 return inf->aspace;
3130}
3131
7313baad
UW
3132
3133/* Target file operations. */
3134
3135static struct target_ops *
3136default_fileio_target (void)
3137{
3138 /* If we're already connected to something that can perform
3139 file I/O, use it. Otherwise, try using the native target. */
3140 if (current_target.to_stratum >= process_stratum)
3141 return current_target.beneath;
3142 else
3143 return find_default_run_target ("file I/O");
3144}
3145
3146/* Open FILENAME on the target, using FLAGS and MODE. Return a
3147 target file descriptor, or -1 if an error occurs (and set
3148 *TARGET_ERRNO). */
3149int
3150target_fileio_open (const char *filename, int flags, int mode,
3151 int *target_errno)
3152{
3153 struct target_ops *t;
3154
3155 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3156 {
3157 if (t->to_fileio_open != NULL)
3158 {
cd897586 3159 int fd = t->to_fileio_open (t, filename, flags, mode, target_errno);
7313baad
UW
3160
3161 if (targetdebug)
3162 fprintf_unfiltered (gdb_stdlog,
3163 "target_fileio_open (%s,0x%x,0%o) = %d (%d)\n",
3164 filename, flags, mode,
3165 fd, fd != -1 ? 0 : *target_errno);
3166 return fd;
3167 }
3168 }
3169
3170 *target_errno = FILEIO_ENOSYS;
3171 return -1;
3172}
3173
3174/* Write up to LEN bytes from WRITE_BUF to FD on the target.
3175 Return the number of bytes written, or -1 if an error occurs
3176 (and set *TARGET_ERRNO). */
3177int
3178target_fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
3179 ULONGEST offset, int *target_errno)
3180{
3181 struct target_ops *t;
3182
3183 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3184 {
3185 if (t->to_fileio_pwrite != NULL)
3186 {
0d866f62 3187 int ret = t->to_fileio_pwrite (t, fd, write_buf, len, offset,
7313baad
UW
3188 target_errno);
3189
3190 if (targetdebug)
3191 fprintf_unfiltered (gdb_stdlog,
a71b5a38 3192 "target_fileio_pwrite (%d,...,%d,%s) "
7313baad 3193 "= %d (%d)\n",
a71b5a38 3194 fd, len, pulongest (offset),
7313baad
UW
3195 ret, ret != -1 ? 0 : *target_errno);
3196 return ret;
3197 }
3198 }
3199
3200 *target_errno = FILEIO_ENOSYS;
3201 return -1;
3202}
3203
3204/* Read up to LEN bytes FD on the target into READ_BUF.
3205 Return the number of bytes read, or -1 if an error occurs
3206 (and set *TARGET_ERRNO). */
3207int
3208target_fileio_pread (int fd, gdb_byte *read_buf, int len,
3209 ULONGEST offset, int *target_errno)
3210{
3211 struct target_ops *t;
3212
3213 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3214 {
3215 if (t->to_fileio_pread != NULL)
3216 {
a3be983c 3217 int ret = t->to_fileio_pread (t, fd, read_buf, len, offset,
7313baad
UW
3218 target_errno);
3219
3220 if (targetdebug)
3221 fprintf_unfiltered (gdb_stdlog,
a71b5a38 3222 "target_fileio_pread (%d,...,%d,%s) "
7313baad 3223 "= %d (%d)\n",
a71b5a38 3224 fd, len, pulongest (offset),
7313baad
UW
3225 ret, ret != -1 ? 0 : *target_errno);
3226 return ret;
3227 }
3228 }
3229
3230 *target_errno = FILEIO_ENOSYS;
3231 return -1;
3232}
3233
3234/* Close FD on the target. Return 0, or -1 if an error occurs
3235 (and set *TARGET_ERRNO). */
3236int
3237target_fileio_close (int fd, int *target_errno)
3238{
3239 struct target_ops *t;
3240
3241 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3242 {
3243 if (t->to_fileio_close != NULL)
3244 {
df39ea25 3245 int ret = t->to_fileio_close (t, fd, target_errno);
7313baad
UW
3246
3247 if (targetdebug)
3248 fprintf_unfiltered (gdb_stdlog,
3249 "target_fileio_close (%d) = %d (%d)\n",
3250 fd, ret, ret != -1 ? 0 : *target_errno);
3251 return ret;
3252 }
3253 }
3254
3255 *target_errno = FILEIO_ENOSYS;
3256 return -1;
3257}
3258
3259/* Unlink FILENAME on the target. Return 0, or -1 if an error
3260 occurs (and set *TARGET_ERRNO). */
3261int
3262target_fileio_unlink (const char *filename, int *target_errno)
3263{
3264 struct target_ops *t;
3265
3266 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3267 {
3268 if (t->to_fileio_unlink != NULL)
3269 {
dbbca37d 3270 int ret = t->to_fileio_unlink (t, filename, target_errno);
7313baad
UW
3271
3272 if (targetdebug)
3273 fprintf_unfiltered (gdb_stdlog,
3274 "target_fileio_unlink (%s) = %d (%d)\n",
3275 filename, ret, ret != -1 ? 0 : *target_errno);
3276 return ret;
3277 }
3278 }
3279
3280 *target_errno = FILEIO_ENOSYS;
3281 return -1;
3282}
3283
b9e7b9c3
UW
3284/* Read value of symbolic link FILENAME on the target. Return a
3285 null-terminated string allocated via xmalloc, or NULL if an error
3286 occurs (and set *TARGET_ERRNO). */
3287char *
3288target_fileio_readlink (const char *filename, int *target_errno)
3289{
3290 struct target_ops *t;
3291
3292 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3293 {
3294 if (t->to_fileio_readlink != NULL)
3295 {
fab5aa7c 3296 char *ret = t->to_fileio_readlink (t, filename, target_errno);
b9e7b9c3
UW
3297
3298 if (targetdebug)
3299 fprintf_unfiltered (gdb_stdlog,
3300 "target_fileio_readlink (%s) = %s (%d)\n",
3301 filename, ret? ret : "(nil)",
3302 ret? 0 : *target_errno);
3303 return ret;
3304 }
3305 }
3306
3307 *target_errno = FILEIO_ENOSYS;
3308 return NULL;
3309}
3310
7313baad
UW
3311static void
3312target_fileio_close_cleanup (void *opaque)
3313{
3314 int fd = *(int *) opaque;
3315 int target_errno;
3316
3317 target_fileio_close (fd, &target_errno);
3318}
3319
3320/* Read target file FILENAME. Store the result in *BUF_P and
3321 return the size of the transferred data. PADDING additional bytes are
3322 available in *BUF_P. This is a helper function for
3323 target_fileio_read_alloc; see the declaration of that function for more
3324 information. */
3325
3326static LONGEST
3327target_fileio_read_alloc_1 (const char *filename,
3328 gdb_byte **buf_p, int padding)
3329{
3330 struct cleanup *close_cleanup;
3331 size_t buf_alloc, buf_pos;
3332 gdb_byte *buf;
3333 LONGEST n;
3334 int fd;
3335 int target_errno;
3336
3337 fd = target_fileio_open (filename, FILEIO_O_RDONLY, 0700, &target_errno);
3338 if (fd == -1)
3339 return -1;
3340
3341 close_cleanup = make_cleanup (target_fileio_close_cleanup, &fd);
3342
3343 /* Start by reading up to 4K at a time. The target will throttle
3344 this number down if necessary. */
3345 buf_alloc = 4096;
3346 buf = xmalloc (buf_alloc);
3347 buf_pos = 0;
3348 while (1)
3349 {
3350 n = target_fileio_pread (fd, &buf[buf_pos],
3351 buf_alloc - buf_pos - padding, buf_pos,
3352 &target_errno);
3353 if (n < 0)
3354 {
3355 /* An error occurred. */
3356 do_cleanups (close_cleanup);
3357 xfree (buf);
3358 return -1;
3359 }
3360 else if (n == 0)
3361 {
3362 /* Read all there was. */
3363 do_cleanups (close_cleanup);
3364 if (buf_pos == 0)
3365 xfree (buf);
3366 else
3367 *buf_p = buf;
3368 return buf_pos;
3369 }
3370
3371 buf_pos += n;
3372
3373 /* If the buffer is filling up, expand it. */
3374 if (buf_alloc < buf_pos * 2)
3375 {
3376 buf_alloc *= 2;
3377 buf = xrealloc (buf, buf_alloc);
3378 }
3379
3380 QUIT;
3381 }
3382}
3383
3384/* Read target file FILENAME. Store the result in *BUF_P and return
3385 the size of the transferred data. See the declaration in "target.h"
3386 function for more information about the return value. */
3387
3388LONGEST
3389target_fileio_read_alloc (const char *filename, gdb_byte **buf_p)
3390{
3391 return target_fileio_read_alloc_1 (filename, buf_p, 0);
3392}
3393
3394/* Read target file FILENAME. The result is NUL-terminated and
3395 returned as a string, allocated using xmalloc. If an error occurs
3396 or the transfer is unsupported, NULL is returned. Empty objects
3397 are returned as allocated but empty strings. A warning is issued
3398 if the result contains any embedded NUL bytes. */
3399
3400char *
3401target_fileio_read_stralloc (const char *filename)
3402{
39086a0e
PA
3403 gdb_byte *buffer;
3404 char *bufstr;
7313baad
UW
3405 LONGEST i, transferred;
3406
39086a0e
PA
3407 transferred = target_fileio_read_alloc_1 (filename, &buffer, 1);
3408 bufstr = (char *) buffer;
7313baad
UW
3409
3410 if (transferred < 0)
3411 return NULL;
3412
3413 if (transferred == 0)
3414 return xstrdup ("");
3415
39086a0e 3416 bufstr[transferred] = 0;
7313baad
UW
3417
3418 /* Check for embedded NUL bytes; but allow trailing NULs. */
39086a0e
PA
3419 for (i = strlen (bufstr); i < transferred; i++)
3420 if (bufstr[i] != 0)
7313baad
UW
3421 {
3422 warning (_("target file %s "
3423 "contained unexpected null characters"),
3424 filename);
3425 break;
3426 }
3427
39086a0e 3428 return bufstr;
7313baad
UW
3429}
3430
3431
e0d24f8d 3432static int
31568a15
TT
3433default_region_ok_for_hw_watchpoint (struct target_ops *self,
3434 CORE_ADDR addr, int len)
e0d24f8d 3435{
f5656ead 3436 return (len <= gdbarch_ptr_bit (target_gdbarch ()) / TARGET_CHAR_BIT);
ccaa32c7
GS
3437}
3438
5009afc5
AS
3439static int
3440default_watchpoint_addr_within_range (struct target_ops *target,
3441 CORE_ADDR addr,
3442 CORE_ADDR start, int length)
3443{
3444 return addr >= start && addr < start + length;
3445}
3446
c2250ad1
UW
3447static struct gdbarch *
3448default_thread_architecture (struct target_ops *ops, ptid_t ptid)
3449{
f5656ead 3450 return target_gdbarch ();
c2250ad1
UW
3451}
3452
c906108c 3453static int
fba45db2 3454return_zero (void)
c906108c
SS
3455{
3456 return 0;
3457}
3458
ed9a39eb
JM
3459/*
3460 * Find the next target down the stack from the specified target.
3461 */
3462
3463struct target_ops *
fba45db2 3464find_target_beneath (struct target_ops *t)
ed9a39eb 3465{
258b763a 3466 return t->beneath;
ed9a39eb
JM
3467}
3468
8b06beed
TT
3469/* See target.h. */
3470
3471struct target_ops *
3472find_target_at (enum strata stratum)
3473{
3474 struct target_ops *t;
3475
3476 for (t = current_target.beneath; t != NULL; t = t->beneath)
3477 if (t->to_stratum == stratum)
3478 return t;
3479
3480 return NULL;
3481}
3482
c906108c
SS
3483\f
3484/* The inferior process has died. Long live the inferior! */
3485
3486void
fba45db2 3487generic_mourn_inferior (void)
c906108c 3488{
7f9f62ba 3489 ptid_t ptid;
c906108c 3490
7f9f62ba 3491 ptid = inferior_ptid;
39f77062 3492 inferior_ptid = null_ptid;
7f9f62ba 3493
f59f708a
PA
3494 /* Mark breakpoints uninserted in case something tries to delete a
3495 breakpoint while we delete the inferior's threads (which would
3496 fail, since the inferior is long gone). */
3497 mark_breakpoints_out ();
3498
7f9f62ba
PA
3499 if (!ptid_equal (ptid, null_ptid))
3500 {
3501 int pid = ptid_get_pid (ptid);
6c95b8df 3502 exit_inferior (pid);
7f9f62ba
PA
3503 }
3504
f59f708a
PA
3505 /* Note this wipes step-resume breakpoints, so needs to be done
3506 after exit_inferior, which ends up referencing the step-resume
3507 breakpoints through clear_thread_inferior_resources. */
c906108c 3508 breakpoint_init_inferior (inf_exited);
f59f708a 3509
c906108c
SS
3510 registers_changed ();
3511
c906108c
SS
3512 reopen_exec_file ();
3513 reinit_frame_cache ();
3514
9a4105ab
AC
3515 if (deprecated_detach_hook)
3516 deprecated_detach_hook ();
c906108c
SS
3517}
3518\f
fd0a2a6f
MK
3519/* Convert a normal process ID to a string. Returns the string in a
3520 static buffer. */
c906108c
SS
3521
3522char *
39f77062 3523normal_pid_to_str (ptid_t ptid)
c906108c 3524{
fd0a2a6f 3525 static char buf[32];
c906108c 3526
5fff8fc0 3527 xsnprintf (buf, sizeof buf, "process %d", ptid_get_pid (ptid));
c906108c
SS
3528 return buf;
3529}
3530
2c0b251b 3531static char *
117de6a9
PA
3532dummy_pid_to_str (struct target_ops *ops, ptid_t ptid)
3533{
3534 return normal_pid_to_str (ptid);
3535}
3536
9b4eba8e
HZ
3537/* Error-catcher for target_find_memory_regions. */
3538static int
2e73927c
TT
3539dummy_find_memory_regions (struct target_ops *self,
3540 find_memory_region_ftype ignore1, void *ignore2)
be4d1333 3541{
9b4eba8e 3542 error (_("Command not implemented for this target."));
be4d1333
MS
3543 return 0;
3544}
3545
9b4eba8e
HZ
3546/* Error-catcher for target_make_corefile_notes. */
3547static char *
fc6691b2
TT
3548dummy_make_corefile_notes (struct target_ops *self,
3549 bfd *ignore1, int *ignore2)
be4d1333 3550{
9b4eba8e 3551 error (_("Command not implemented for this target."));
be4d1333
MS
3552 return NULL;
3553}
3554
c906108c
SS
3555/* Set up the handful of non-empty slots needed by the dummy target
3556 vector. */
3557
3558static void
fba45db2 3559init_dummy_target (void)
c906108c
SS
3560{
3561 dummy_target.to_shortname = "None";
3562 dummy_target.to_longname = "None";
3563 dummy_target.to_doc = "";
c906108c 3564 dummy_target.to_create_inferior = find_default_create_inferior;
9908b566 3565 dummy_target.to_supports_non_stop = find_default_supports_non_stop;
03583c20
UW
3566 dummy_target.to_supports_disable_randomization
3567 = find_default_supports_disable_randomization;
117de6a9 3568 dummy_target.to_pid_to_str = dummy_pid_to_str;
c906108c 3569 dummy_target.to_stratum = dummy_stratum;
c35b1492
PA
3570 dummy_target.to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
3571 dummy_target.to_has_memory = (int (*) (struct target_ops *)) return_zero;
3572 dummy_target.to_has_stack = (int (*) (struct target_ops *)) return_zero;
3573 dummy_target.to_has_registers = (int (*) (struct target_ops *)) return_zero;
aeaec162
TT
3574 dummy_target.to_has_execution
3575 = (int (*) (struct target_ops *, ptid_t)) return_zero;
c906108c 3576 dummy_target.to_magic = OPS_MAGIC;
1101cb7b
TT
3577
3578 install_dummy_methods (&dummy_target);
c906108c 3579}
c906108c 3580\f
c906108c 3581static void
fba45db2 3582debug_to_open (char *args, int from_tty)
c906108c
SS
3583{
3584 debug_target.to_open (args, from_tty);
3585
96baa820 3586 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
c906108c
SS
3587}
3588
f1c07ab0 3589void
460014f5 3590target_close (struct target_ops *targ)
f1c07ab0 3591{
7fdc1521
TT
3592 gdb_assert (!target_is_pushed (targ));
3593
f1c07ab0 3594 if (targ->to_xclose != NULL)
460014f5 3595 targ->to_xclose (targ);
f1c07ab0 3596 else if (targ->to_close != NULL)
de90e03d 3597 targ->to_close (targ);
947b8855
PA
3598
3599 if (targetdebug)
460014f5 3600 fprintf_unfiltered (gdb_stdlog, "target_close ()\n");
f1c07ab0
AC
3601}
3602
136d6dae
VP
3603void
3604target_attach (char *args, int from_tty)
3605{
e9a29200
TT
3606 current_target.to_attach (&current_target, args, from_tty);
3607 if (targetdebug)
3608 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n",
3609 args, from_tty);
136d6dae
VP
3610}
3611
28439f5e
PA
3612int
3613target_thread_alive (ptid_t ptid)
c906108c 3614{
28439f5e 3615 struct target_ops *t;
5d502164 3616
28439f5e
PA
3617 for (t = current_target.beneath; t != NULL; t = t->beneath)
3618 {
3619 if (t->to_thread_alive != NULL)
3620 {
3621 int retval;
c906108c 3622
28439f5e
PA
3623 retval = t->to_thread_alive (t, ptid);
3624 if (targetdebug)
3625 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
dfd4cc63 3626 ptid_get_pid (ptid), retval);
28439f5e
PA
3627
3628 return retval;
3629 }
3630 }
3631
3632 return 0;
3633}
3634
3635void
3636target_find_new_threads (void)
3637{
3638 struct target_ops *t;
5d502164 3639
28439f5e
PA
3640 for (t = current_target.beneath; t != NULL; t = t->beneath)
3641 {
3642 if (t->to_find_new_threads != NULL)
3643 {
3644 t->to_find_new_threads (t);
3645 if (targetdebug)
3646 fprintf_unfiltered (gdb_stdlog, "target_find_new_threads ()\n");
3647
3648 return;
3649 }
3650 }
c906108c
SS
3651}
3652
d914c394
SS
3653void
3654target_stop (ptid_t ptid)
3655{
3656 if (!may_stop)
3657 {
3658 warning (_("May not interrupt or stop the target, ignoring attempt"));
3659 return;
3660 }
3661
1eab8a48 3662 (*current_target.to_stop) (&current_target, ptid);
d914c394
SS
3663}
3664
c906108c 3665static void
f045800c 3666debug_to_post_attach (struct target_ops *self, int pid)
c906108c 3667{
f045800c 3668 debug_target.to_post_attach (&debug_target, pid);
c906108c 3669
28439f5e 3670 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
c906108c
SS
3671}
3672
09826ec5
PA
3673/* Concatenate ELEM to LIST, a comma separate list, and return the
3674 result. The LIST incoming argument is released. */
3675
3676static char *
3677str_comma_list_concat_elem (char *list, const char *elem)
3678{
3679 if (list == NULL)
3680 return xstrdup (elem);
3681 else
3682 return reconcat (list, list, ", ", elem, (char *) NULL);
3683}
3684
3685/* Helper for target_options_to_string. If OPT is present in
3686 TARGET_OPTIONS, append the OPT_STR (string version of OPT) in RET.
3687 Returns the new resulting string. OPT is removed from
3688 TARGET_OPTIONS. */
3689
3690static char *
3691do_option (int *target_options, char *ret,
3692 int opt, char *opt_str)
3693{
3694 if ((*target_options & opt) != 0)
3695 {
3696 ret = str_comma_list_concat_elem (ret, opt_str);
3697 *target_options &= ~opt;
3698 }
3699
3700 return ret;
3701}
3702
3703char *
3704target_options_to_string (int target_options)
3705{
3706 char *ret = NULL;
3707
3708#define DO_TARG_OPTION(OPT) \
3709 ret = do_option (&target_options, ret, OPT, #OPT)
3710
3711 DO_TARG_OPTION (TARGET_WNOHANG);
3712
3713 if (target_options != 0)
3714 ret = str_comma_list_concat_elem (ret, "unknown???");
3715
3716 if (ret == NULL)
3717 ret = xstrdup ("");
3718 return ret;
3719}
3720
bf0c5130 3721static void
56be3814
UW
3722debug_print_register (const char * func,
3723 struct regcache *regcache, int regno)
bf0c5130 3724{
f8d29908 3725 struct gdbarch *gdbarch = get_regcache_arch (regcache);
5d502164 3726
bf0c5130 3727 fprintf_unfiltered (gdb_stdlog, "%s ", func);
f8d29908 3728 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
f8d29908
UW
3729 && gdbarch_register_name (gdbarch, regno) != NULL
3730 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
3731 fprintf_unfiltered (gdb_stdlog, "(%s)",
3732 gdbarch_register_name (gdbarch, regno));
bf0c5130
AC
3733 else
3734 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
0ff58721 3735 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch))
bf0c5130 3736 {
e17a4113 3737 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
f8d29908 3738 int i, size = register_size (gdbarch, regno);
e362b510 3739 gdb_byte buf[MAX_REGISTER_SIZE];
5d502164 3740
0ff58721 3741 regcache_raw_collect (regcache, regno, buf);
bf0c5130 3742 fprintf_unfiltered (gdb_stdlog, " = ");
81c4a259 3743 for (i = 0; i < size; i++)
bf0c5130
AC
3744 {
3745 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
3746 }
81c4a259 3747 if (size <= sizeof (LONGEST))
bf0c5130 3748 {
e17a4113 3749 ULONGEST val = extract_unsigned_integer (buf, size, byte_order);
5d502164 3750
0b1553bc
UW
3751 fprintf_unfiltered (gdb_stdlog, " %s %s",
3752 core_addr_to_string_nz (val), plongest (val));
bf0c5130
AC
3753 }
3754 }
3755 fprintf_unfiltered (gdb_stdlog, "\n");
3756}
3757
28439f5e
PA
3758void
3759target_fetch_registers (struct regcache *regcache, int regno)
c906108c 3760{
ad5989bd
TT
3761 current_target.to_fetch_registers (&current_target, regcache, regno);
3762 if (targetdebug)
3763 debug_print_register ("target_fetch_registers", regcache, regno);
c906108c
SS
3764}
3765
28439f5e
PA
3766void
3767target_store_registers (struct regcache *regcache, int regno)
c906108c 3768{
28439f5e 3769 struct target_ops *t;
5d502164 3770
d914c394
SS
3771 if (!may_write_registers)
3772 error (_("Writing to registers is not allowed (regno %d)"), regno);
3773
6b84065d
TT
3774 current_target.to_store_registers (&current_target, regcache, regno);
3775 if (targetdebug)
28439f5e 3776 {
6b84065d 3777 debug_print_register ("target_store_registers", regcache, regno);
28439f5e 3778 }
c906108c
SS
3779}
3780
dc146f7c
VP
3781int
3782target_core_of_thread (ptid_t ptid)
3783{
3784 struct target_ops *t;
3785
3786 for (t = current_target.beneath; t != NULL; t = t->beneath)
3787 {
3788 if (t->to_core_of_thread != NULL)
3789 {
3790 int retval = t->to_core_of_thread (t, ptid);
5d502164 3791
dc146f7c 3792 if (targetdebug)
3e43a32a
MS
3793 fprintf_unfiltered (gdb_stdlog,
3794 "target_core_of_thread (%d) = %d\n",
dfd4cc63 3795 ptid_get_pid (ptid), retval);
dc146f7c
VP
3796 return retval;
3797 }
3798 }
3799
3800 return -1;
3801}
3802
4a5e7a5b
PA
3803int
3804target_verify_memory (const gdb_byte *data, CORE_ADDR memaddr, ULONGEST size)
3805{
3806 struct target_ops *t;
3807
3808 for (t = current_target.beneath; t != NULL; t = t->beneath)
3809 {
3810 if (t->to_verify_memory != NULL)
3811 {
3812 int retval = t->to_verify_memory (t, data, memaddr, size);
5d502164 3813
4a5e7a5b 3814 if (targetdebug)
3e43a32a
MS
3815 fprintf_unfiltered (gdb_stdlog,
3816 "target_verify_memory (%s, %s) = %d\n",
f5656ead 3817 paddress (target_gdbarch (), memaddr),
4a5e7a5b
PA
3818 pulongest (size),
3819 retval);
3820 return retval;
3821 }
3822 }
3823
3824 tcomplain ();
3825}
3826
9c06b0b4
TJB
3827/* The documentation for this function is in its prototype declaration in
3828 target.h. */
3829
3830int
3831target_insert_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask, int rw)
3832{
3833 struct target_ops *t;
3834
3835 for (t = current_target.beneath; t != NULL; t = t->beneath)
3836 if (t->to_insert_mask_watchpoint != NULL)
3837 {
3838 int ret;
3839
3840 ret = t->to_insert_mask_watchpoint (t, addr, mask, rw);
3841
3842 if (targetdebug)
3843 fprintf_unfiltered (gdb_stdlog, "\
3844target_insert_mask_watchpoint (%s, %s, %d) = %d\n",
3845 core_addr_to_string (addr),
3846 core_addr_to_string (mask), rw, ret);
3847
3848 return ret;
3849 }
3850
3851 return 1;
3852}
3853
3854/* The documentation for this function is in its prototype declaration in
3855 target.h. */
3856
3857int
3858target_remove_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask, int rw)
3859{
3860 struct target_ops *t;
3861
3862 for (t = current_target.beneath; t != NULL; t = t->beneath)
3863 if (t->to_remove_mask_watchpoint != NULL)
3864 {
3865 int ret;
3866
3867 ret = t->to_remove_mask_watchpoint (t, addr, mask, rw);
3868
3869 if (targetdebug)
3870 fprintf_unfiltered (gdb_stdlog, "\
3871target_remove_mask_watchpoint (%s, %s, %d) = %d\n",
3872 core_addr_to_string (addr),
3873 core_addr_to_string (mask), rw, ret);
3874
3875 return ret;
3876 }
3877
3878 return 1;
3879}
3880
3881/* The documentation for this function is in its prototype declaration
3882 in target.h. */
3883
3884int
3885target_masked_watch_num_registers (CORE_ADDR addr, CORE_ADDR mask)
3886{
3887 struct target_ops *t;
3888
3889 for (t = current_target.beneath; t != NULL; t = t->beneath)
3890 if (t->to_masked_watch_num_registers != NULL)
3891 return t->to_masked_watch_num_registers (t, addr, mask);
3892
3893 return -1;
3894}
3895
f1310107
TJB
3896/* The documentation for this function is in its prototype declaration
3897 in target.h. */
3898
3899int
3900target_ranged_break_num_registers (void)
3901{
a134316b 3902 return current_target.to_ranged_break_num_registers (&current_target);
f1310107
TJB
3903}
3904
02d27625
MM
3905/* See target.h. */
3906
02d27625
MM
3907struct btrace_target_info *
3908target_enable_btrace (ptid_t ptid)
3909{
3910 struct target_ops *t;
3911
3912 for (t = current_target.beneath; t != NULL; t = t->beneath)
3913 if (t->to_enable_btrace != NULL)
e3c49f88 3914 return t->to_enable_btrace (t, ptid);
02d27625
MM
3915
3916 tcomplain ();
3917 return NULL;
3918}
3919
3920/* See target.h. */
3921
3922void
3923target_disable_btrace (struct btrace_target_info *btinfo)
3924{
3925 struct target_ops *t;
3926
3927 for (t = current_target.beneath; t != NULL; t = t->beneath)
3928 if (t->to_disable_btrace != NULL)
d92f7ee3 3929 {
25e95349 3930 t->to_disable_btrace (t, btinfo);
d92f7ee3
SDJ
3931 return;
3932 }
02d27625
MM
3933
3934 tcomplain ();
3935}
3936
3937/* See target.h. */
3938
3939void
3940target_teardown_btrace (struct btrace_target_info *btinfo)
3941{
3942 struct target_ops *t;
3943
3944 for (t = current_target.beneath; t != NULL; t = t->beneath)
3945 if (t->to_teardown_btrace != NULL)
d92f7ee3 3946 {
1777056d 3947 t->to_teardown_btrace (t, btinfo);
d92f7ee3
SDJ
3948 return;
3949 }
02d27625
MM
3950
3951 tcomplain ();
3952}
3953
3954/* See target.h. */
3955
969c39fb
MM
3956enum btrace_error
3957target_read_btrace (VEC (btrace_block_s) **btrace,
3958 struct btrace_target_info *btinfo,
02d27625
MM
3959 enum btrace_read_type type)
3960{
3961 struct target_ops *t;
3962
3963 for (t = current_target.beneath; t != NULL; t = t->beneath)
3964 if (t->to_read_btrace != NULL)
39c49f83 3965 return t->to_read_btrace (t, btrace, btinfo, type);
02d27625
MM
3966
3967 tcomplain ();
969c39fb 3968 return BTRACE_ERR_NOT_SUPPORTED;
02d27625
MM
3969}
3970
d02ed0bb
MM
3971/* See target.h. */
3972
7c1687a9
MM
3973void
3974target_stop_recording (void)
3975{
3976 struct target_ops *t;
3977
3978 for (t = current_target.beneath; t != NULL; t = t->beneath)
3979 if (t->to_stop_recording != NULL)
3980 {
c6cd7c02 3981 t->to_stop_recording (t);
7c1687a9
MM
3982 return;
3983 }
3984
3985 /* This is optional. */
3986}
3987
3988/* See target.h. */
3989
d02ed0bb
MM
3990void
3991target_info_record (void)
3992{
3993 struct target_ops *t;
3994
3995 for (t = current_target.beneath; t != NULL; t = t->beneath)
3996 if (t->to_info_record != NULL)
3997 {
630d6a4a 3998 t->to_info_record (t);
d02ed0bb
MM
3999 return;
4000 }
4001
4002 tcomplain ();
4003}
4004
4005/* See target.h. */
4006
4007void
85e1311a 4008target_save_record (const char *filename)
d02ed0bb
MM
4009{
4010 struct target_ops *t;
4011
4012 for (t = current_target.beneath; t != NULL; t = t->beneath)
4013 if (t->to_save_record != NULL)
4014 {
1390f529 4015 t->to_save_record (t, filename);
d02ed0bb
MM
4016 return;
4017 }
4018
4019 tcomplain ();
4020}
4021
4022/* See target.h. */
4023
4024int
4025target_supports_delete_record (void)
4026{
4027 struct target_ops *t;
4028
4029 for (t = current_target.beneath; t != NULL; t = t->beneath)
4030 if (t->to_delete_record != NULL)
4031 return 1;
4032
4033 return 0;
4034}
4035
4036/* See target.h. */
4037
4038void
4039target_delete_record (void)
4040{
4041 struct target_ops *t;
4042
4043 for (t = current_target.beneath; t != NULL; t = t->beneath)
4044 if (t->to_delete_record != NULL)
4045 {
d1b55219 4046 t->to_delete_record (t);
d02ed0bb
MM
4047 return;
4048 }
4049
4050 tcomplain ();
4051}
4052
4053/* See target.h. */
4054
4055int
4056target_record_is_replaying (void)
4057{
4058 struct target_ops *t;
4059
4060 for (t = current_target.beneath; t != NULL; t = t->beneath)
4061 if (t->to_record_is_replaying != NULL)
1c63c994 4062 return t->to_record_is_replaying (t);
d02ed0bb
MM
4063
4064 return 0;
4065}
4066
4067/* See target.h. */
4068
4069void
4070target_goto_record_begin (void)
4071{
4072 struct target_ops *t;
4073
4074 for (t = current_target.beneath; t != NULL; t = t->beneath)
4075 if (t->to_goto_record_begin != NULL)
4076 {
08475817 4077 t->to_goto_record_begin (t);
d02ed0bb
MM
4078 return;
4079 }
4080
4081 tcomplain ();
4082}
4083
4084/* See target.h. */
4085
4086void
4087target_goto_record_end (void)
4088{
4089 struct target_ops *t;
4090
4091 for (t = current_target.beneath; t != NULL; t = t->beneath)
4092 if (t->to_goto_record_end != NULL)
4093 {
307a1b91 4094 t->to_goto_record_end (t);
d02ed0bb
MM
4095 return;
4096 }
4097
4098 tcomplain ();
4099}
4100
4101/* See target.h. */
4102
4103void
4104target_goto_record (ULONGEST insn)
4105{
4106 struct target_ops *t;
4107
4108 for (t = current_target.beneath; t != NULL; t = t->beneath)
4109 if (t->to_goto_record != NULL)
4110 {
606183ac 4111 t->to_goto_record (t, insn);
d02ed0bb
MM
4112 return;
4113 }
4114
4115 tcomplain ();
4116}
4117
67c86d06
MM
4118/* See target.h. */
4119
4120void
4121target_insn_history (int size, int flags)
4122{
4123 struct target_ops *t;
4124
4125 for (t = current_target.beneath; t != NULL; t = t->beneath)
4126 if (t->to_insn_history != NULL)
4127 {
7a6c5609 4128 t->to_insn_history (t, size, flags);
67c86d06
MM
4129 return;
4130 }
4131
4132 tcomplain ();
4133}
4134
4135/* See target.h. */
4136
4137void
4138target_insn_history_from (ULONGEST from, int size, int flags)
4139{
4140 struct target_ops *t;
4141
4142 for (t = current_target.beneath; t != NULL; t = t->beneath)
4143 if (t->to_insn_history_from != NULL)
4144 {
9abc3ff3 4145 t->to_insn_history_from (t, from, size, flags);
67c86d06
MM
4146 return;
4147 }
4148
4149 tcomplain ();
4150}
4151
4152/* See target.h. */
4153
4154void
4155target_insn_history_range (ULONGEST begin, ULONGEST end, int flags)
4156{
4157 struct target_ops *t;
4158
4159 for (t = current_target.beneath; t != NULL; t = t->beneath)
4160 if (t->to_insn_history_range != NULL)
4161 {
4e99c6b7 4162 t->to_insn_history_range (t, begin, end, flags);
67c86d06
MM
4163 return;
4164 }
4165
4166 tcomplain ();
4167}
4168
15984c13
MM
4169/* See target.h. */
4170
4171void
4172target_call_history (int size, int flags)
4173{
4174 struct target_ops *t;
4175
4176 for (t = current_target.beneath; t != NULL; t = t->beneath)
4177 if (t->to_call_history != NULL)
4178 {
5df2fcba 4179 t->to_call_history (t, size, flags);
15984c13
MM
4180 return;
4181 }
4182
4183 tcomplain ();
4184}
4185
4186/* See target.h. */
4187
4188void
4189target_call_history_from (ULONGEST begin, int size, int flags)
4190{
4191 struct target_ops *t;
4192
4193 for (t = current_target.beneath; t != NULL; t = t->beneath)
4194 if (t->to_call_history_from != NULL)
4195 {
ec0aea04 4196 t->to_call_history_from (t, begin, size, flags);
15984c13
MM
4197 return;
4198 }
4199
4200 tcomplain ();
4201}
4202
4203/* See target.h. */
4204
4205void
4206target_call_history_range (ULONGEST begin, ULONGEST end, int flags)
4207{
4208 struct target_ops *t;
4209
4210 for (t = current_target.beneath; t != NULL; t = t->beneath)
4211 if (t->to_call_history_range != NULL)
4212 {
f0d960ea 4213 t->to_call_history_range (t, begin, end, flags);
15984c13
MM
4214 return;
4215 }
4216
4217 tcomplain ();
4218}
4219
c906108c 4220static void
f32dbf8c 4221debug_to_prepare_to_store (struct target_ops *self, struct regcache *regcache)
c906108c 4222{
f32dbf8c 4223 debug_target.to_prepare_to_store (&debug_target, regcache);
c906108c 4224
96baa820 4225 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
c906108c
SS
4226}
4227
ea001bdc
MM
4228/* See target.h. */
4229
4230const struct frame_unwind *
4231target_get_unwinder (void)
4232{
4233 struct target_ops *t;
4234
4235 for (t = current_target.beneath; t != NULL; t = t->beneath)
4236 if (t->to_get_unwinder != NULL)
4237 return t->to_get_unwinder;
4238
4239 return NULL;
4240}
4241
4242/* See target.h. */
4243
4244const struct frame_unwind *
4245target_get_tailcall_unwinder (void)
4246{
4247 struct target_ops *t;
4248
4249 for (t = current_target.beneath; t != NULL; t = t->beneath)
4250 if (t->to_get_tailcall_unwinder != NULL)
4251 return t->to_get_tailcall_unwinder;
4252
4253 return NULL;
4254}
4255
118e6252
MM
4256/* See target.h. */
4257
4258CORE_ADDR
4259forward_target_decr_pc_after_break (struct target_ops *ops,
4260 struct gdbarch *gdbarch)
4261{
4262 for (; ops != NULL; ops = ops->beneath)
4263 if (ops->to_decr_pc_after_break != NULL)
4264 return ops->to_decr_pc_after_break (ops, gdbarch);
4265
4266 return gdbarch_decr_pc_after_break (gdbarch);
4267}
4268
4269/* See target.h. */
4270
4271CORE_ADDR
4272target_decr_pc_after_break (struct gdbarch *gdbarch)
4273{
4274 return forward_target_decr_pc_after_break (current_target.beneath, gdbarch);
4275}
4276
c906108c 4277static int
961cb7b5 4278deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
c8e73a31
AC
4279 int write, struct mem_attrib *attrib,
4280 struct target_ops *target)
c906108c
SS
4281{
4282 int retval;
4283
c8e73a31
AC
4284 retval = debug_target.deprecated_xfer_memory (memaddr, myaddr, len, write,
4285 attrib, target);
c906108c 4286
96baa820 4287 fprintf_unfiltered (gdb_stdlog,
53b71562 4288 "target_xfer_memory (%s, xxx, %d, %s, xxx) = %d",
f5656ead 4289 paddress (target_gdbarch (), memaddr), len,
5af949e3 4290 write ? "write" : "read", retval);
c906108c 4291
c906108c
SS
4292 if (retval > 0)
4293 {
4294 int i;
4295
96baa820 4296 fputs_unfiltered (", bytes =", gdb_stdlog);
c906108c
SS
4297 for (i = 0; i < retval; i++)
4298 {
53b71562 4299 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
333dabeb
DJ
4300 {
4301 if (targetdebug < 2 && i > 0)
4302 {
4303 fprintf_unfiltered (gdb_stdlog, " ...");
4304 break;
4305 }
4306 fprintf_unfiltered (gdb_stdlog, "\n");
4307 }
2bc416ba 4308
96baa820 4309 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
c906108c
SS
4310 }
4311 }
4312
96baa820 4313 fputc_unfiltered ('\n', gdb_stdlog);
c906108c
SS
4314
4315 return retval;
4316}
4317
4318static void
fba45db2 4319debug_to_files_info (struct target_ops *target)
c906108c
SS
4320{
4321 debug_target.to_files_info (target);
4322
96baa820 4323 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
c906108c
SS
4324}
4325
4326static int
3db08215 4327debug_to_insert_breakpoint (struct target_ops *ops, struct gdbarch *gdbarch,
a6d9a66e 4328 struct bp_target_info *bp_tgt)
c906108c
SS
4329{
4330 int retval;
4331
6b84065d 4332 retval = debug_target.to_insert_breakpoint (&debug_target, gdbarch, bp_tgt);
c906108c 4333
96baa820 4334 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4335 "target_insert_breakpoint (%s, xxx) = %ld\n",
4336 core_addr_to_string (bp_tgt->placed_address),
104c1213 4337 (unsigned long) retval);
c906108c
SS
4338 return retval;
4339}
4340
4341static int
3db08215 4342debug_to_remove_breakpoint (struct target_ops *ops, struct gdbarch *gdbarch,
a6d9a66e 4343 struct bp_target_info *bp_tgt)
c906108c
SS
4344{
4345 int retval;
4346
6b84065d 4347 retval = debug_target.to_remove_breakpoint (&debug_target, gdbarch, bp_tgt);
c906108c 4348
96baa820 4349 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4350 "target_remove_breakpoint (%s, xxx) = %ld\n",
4351 core_addr_to_string (bp_tgt->placed_address),
104c1213 4352 (unsigned long) retval);
c906108c
SS
4353 return retval;
4354}
4355
ccaa32c7 4356static int
5461485a
TT
4357debug_to_can_use_hw_breakpoint (struct target_ops *self,
4358 int type, int cnt, int from_tty)
ccaa32c7
GS
4359{
4360 int retval;
4361
5461485a
TT
4362 retval = debug_target.to_can_use_hw_breakpoint (&debug_target,
4363 type, cnt, from_tty);
ccaa32c7
GS
4364
4365 fprintf_unfiltered (gdb_stdlog,
4366 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
4367 (unsigned long) type,
4368 (unsigned long) cnt,
4369 (unsigned long) from_tty,
4370 (unsigned long) retval);
4371 return retval;
4372}
4373
e0d24f8d 4374static int
31568a15
TT
4375debug_to_region_ok_for_hw_watchpoint (struct target_ops *self,
4376 CORE_ADDR addr, int len)
e0d24f8d
WZ
4377{
4378 CORE_ADDR retval;
4379
31568a15
TT
4380 retval = debug_target.to_region_ok_for_hw_watchpoint (&debug_target,
4381 addr, len);
e0d24f8d
WZ
4382
4383 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4384 "target_region_ok_for_hw_watchpoint (%s, %ld) = %s\n",
4385 core_addr_to_string (addr), (unsigned long) len,
4386 core_addr_to_string (retval));
e0d24f8d
WZ
4387 return retval;
4388}
4389
0cf6dd15 4390static int
c3a5ff89
TT
4391debug_to_can_accel_watchpoint_condition (struct target_ops *self,
4392 CORE_ADDR addr, int len, int rw,
0cf6dd15
TJB
4393 struct expression *cond)
4394{
4395 int retval;
4396
c3a5ff89
TT
4397 retval = debug_target.to_can_accel_watchpoint_condition (&debug_target,
4398 addr, len,
3e43a32a 4399 rw, cond);
0cf6dd15
TJB
4400
4401 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
4402 "target_can_accel_watchpoint_condition "
4403 "(%s, %d, %d, %s) = %ld\n",
bd91e7ae
OS
4404 core_addr_to_string (addr), len, rw,
4405 host_address_to_string (cond), (unsigned long) retval);
0cf6dd15
TJB
4406 return retval;
4407}
4408
ccaa32c7 4409static int
6a109b6b 4410debug_to_stopped_by_watchpoint (struct target_ops *ops)
ccaa32c7
GS
4411{
4412 int retval;
4413
6a109b6b 4414 retval = debug_target.to_stopped_by_watchpoint (&debug_target);
ccaa32c7
GS
4415
4416 fprintf_unfiltered (gdb_stdlog,
d92524f1 4417 "target_stopped_by_watchpoint () = %ld\n",
ccaa32c7
GS
4418 (unsigned long) retval);
4419 return retval;
4420}
4421
4aa7a7f5
JJ
4422static int
4423debug_to_stopped_data_address (struct target_ops *target, CORE_ADDR *addr)
ccaa32c7 4424{
4aa7a7f5 4425 int retval;
ccaa32c7 4426
4aa7a7f5 4427 retval = debug_target.to_stopped_data_address (target, addr);
ccaa32c7
GS
4428
4429 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4430 "target_stopped_data_address ([%s]) = %ld\n",
4431 core_addr_to_string (*addr),
4aa7a7f5 4432 (unsigned long)retval);
ccaa32c7
GS
4433 return retval;
4434}
4435
5009afc5
AS
4436static int
4437debug_to_watchpoint_addr_within_range (struct target_ops *target,
4438 CORE_ADDR addr,
4439 CORE_ADDR start, int length)
4440{
4441 int retval;
4442
4443 retval = debug_target.to_watchpoint_addr_within_range (target, addr,
4444 start, length);
4445
4446 fprintf_filtered (gdb_stdlog,
bd91e7ae
OS
4447 "target_watchpoint_addr_within_range (%s, %s, %d) = %d\n",
4448 core_addr_to_string (addr), core_addr_to_string (start),
4449 length, retval);
5009afc5
AS
4450 return retval;
4451}
4452
ccaa32c7 4453static int
23a26771
TT
4454debug_to_insert_hw_breakpoint (struct target_ops *self,
4455 struct gdbarch *gdbarch,
a6d9a66e 4456 struct bp_target_info *bp_tgt)
ccaa32c7
GS
4457{
4458 int retval;
4459
23a26771
TT
4460 retval = debug_target.to_insert_hw_breakpoint (&debug_target,
4461 gdbarch, bp_tgt);
ccaa32c7
GS
4462
4463 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4464 "target_insert_hw_breakpoint (%s, xxx) = %ld\n",
4465 core_addr_to_string (bp_tgt->placed_address),
ccaa32c7
GS
4466 (unsigned long) retval);
4467 return retval;
4468}
4469
4470static int
a64dc96c
TT
4471debug_to_remove_hw_breakpoint (struct target_ops *self,
4472 struct gdbarch *gdbarch,
a6d9a66e 4473 struct bp_target_info *bp_tgt)
ccaa32c7
GS
4474{
4475 int retval;
4476
a64dc96c
TT
4477 retval = debug_target.to_remove_hw_breakpoint (&debug_target,
4478 gdbarch, bp_tgt);
ccaa32c7
GS
4479
4480 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4481 "target_remove_hw_breakpoint (%s, xxx) = %ld\n",
4482 core_addr_to_string (bp_tgt->placed_address),
ccaa32c7
GS
4483 (unsigned long) retval);
4484 return retval;
4485}
4486
4487static int
7bb99c53
TT
4488debug_to_insert_watchpoint (struct target_ops *self,
4489 CORE_ADDR addr, int len, int type,
0cf6dd15 4490 struct expression *cond)
ccaa32c7
GS
4491{
4492 int retval;
4493
7bb99c53
TT
4494 retval = debug_target.to_insert_watchpoint (&debug_target,
4495 addr, len, type, cond);
ccaa32c7
GS
4496
4497 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4498 "target_insert_watchpoint (%s, %d, %d, %s) = %ld\n",
4499 core_addr_to_string (addr), len, type,
4500 host_address_to_string (cond), (unsigned long) retval);
ccaa32c7
GS
4501 return retval;
4502}
4503
4504static int
11b5219a
TT
4505debug_to_remove_watchpoint (struct target_ops *self,
4506 CORE_ADDR addr, int len, int type,
0cf6dd15 4507 struct expression *cond)
ccaa32c7
GS
4508{
4509 int retval;
4510
11b5219a
TT
4511 retval = debug_target.to_remove_watchpoint (&debug_target,
4512 addr, len, type, cond);
ccaa32c7
GS
4513
4514 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4515 "target_remove_watchpoint (%s, %d, %d, %s) = %ld\n",
4516 core_addr_to_string (addr), len, type,
4517 host_address_to_string (cond), (unsigned long) retval);
ccaa32c7
GS
4518 return retval;
4519}
4520
c906108c 4521static void
c42bf286 4522debug_to_terminal_init (struct target_ops *self)
c906108c 4523{
c42bf286 4524 debug_target.to_terminal_init (&debug_target);
c906108c 4525
96baa820 4526 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
c906108c
SS
4527}
4528
4529static void
d2f640d4 4530debug_to_terminal_inferior (struct target_ops *self)
c906108c 4531{
d2f640d4 4532 debug_target.to_terminal_inferior (&debug_target);
c906108c 4533
96baa820 4534 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
c906108c
SS
4535}
4536
4537static void
2e1e1a19 4538debug_to_terminal_ours_for_output (struct target_ops *self)
c906108c 4539{
2e1e1a19 4540 debug_target.to_terminal_ours_for_output (&debug_target);
c906108c 4541
96baa820 4542 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
c906108c
SS
4543}
4544
4545static void
e3594fd1 4546debug_to_terminal_ours (struct target_ops *self)
c906108c 4547{
e3594fd1 4548 debug_target.to_terminal_ours (&debug_target);
c906108c 4549
96baa820 4550 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
c906108c
SS
4551}
4552
a790ad35 4553static void
ae3bd431 4554debug_to_terminal_save_ours (struct target_ops *self)
a790ad35 4555{
ae3bd431 4556 debug_target.to_terminal_save_ours (&debug_target);
a790ad35
SC
4557
4558 fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
4559}
4560
c906108c 4561static void
0a4f40a2
TT
4562debug_to_terminal_info (struct target_ops *self,
4563 const char *arg, int from_tty)
c906108c 4564{
0a4f40a2 4565 debug_target.to_terminal_info (&debug_target, arg, from_tty);
c906108c 4566
96baa820 4567 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
c906108c
SS
4568 from_tty);
4569}
4570
c906108c 4571static void
71a9f134 4572debug_to_load (struct target_ops *self, char *args, int from_tty)
c906108c 4573{
71a9f134 4574 debug_target.to_load (&debug_target, args, from_tty);
c906108c 4575
96baa820 4576 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
c906108c
SS
4577}
4578
c906108c 4579static void
2e97a79e 4580debug_to_post_startup_inferior (struct target_ops *self, ptid_t ptid)
c906108c 4581{
2e97a79e 4582 debug_target.to_post_startup_inferior (&debug_target, ptid);
c906108c 4583
96baa820 4584 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
dfd4cc63 4585 ptid_get_pid (ptid));
c906108c
SS
4586}
4587
77b06cd7 4588static int
a863b201 4589debug_to_insert_fork_catchpoint (struct target_ops *self, int pid)
c906108c 4590{
77b06cd7
TJB
4591 int retval;
4592
a863b201 4593 retval = debug_target.to_insert_fork_catchpoint (&debug_target, pid);
77b06cd7
TJB
4594
4595 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d) = %d\n",
4596 pid, retval);
c906108c 4597
77b06cd7 4598 return retval;
c906108c
SS
4599}
4600
4601static int
973fc227 4602debug_to_remove_fork_catchpoint (struct target_ops *self, int pid)
c906108c 4603{
c5aa993b 4604 int retval;
c906108c 4605
973fc227 4606 retval = debug_target.to_remove_fork_catchpoint (&debug_target, pid);
c906108c 4607
96baa820 4608 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
c5aa993b 4609 pid, retval);
c906108c
SS
4610
4611 return retval;
4612}
4613
77b06cd7 4614static int
3ecc7da0 4615debug_to_insert_vfork_catchpoint (struct target_ops *self, int pid)
c906108c 4616{
77b06cd7
TJB
4617 int retval;
4618
3ecc7da0 4619 retval = debug_target.to_insert_vfork_catchpoint (&debug_target, pid);
c906108c 4620
77b06cd7
TJB
4621 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d) = %d\n",
4622 pid, retval);
4623
4624 return retval;
c906108c
SS
4625}
4626
4627static int
e98cf0cd 4628debug_to_remove_vfork_catchpoint (struct target_ops *self, int pid)
c906108c 4629{
c5aa993b 4630 int retval;
c906108c 4631
e98cf0cd 4632 retval = debug_target.to_remove_vfork_catchpoint (&debug_target, pid);
c906108c 4633
96baa820 4634 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
c5aa993b 4635 pid, retval);
c906108c
SS
4636
4637 return retval;
4638}
4639
77b06cd7 4640static int
ba025e51 4641debug_to_insert_exec_catchpoint (struct target_ops *self, int pid)
c906108c 4642{
77b06cd7
TJB
4643 int retval;
4644
ba025e51 4645 retval = debug_target.to_insert_exec_catchpoint (&debug_target, pid);
c906108c 4646
77b06cd7
TJB
4647 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d) = %d\n",
4648 pid, retval);
4649
4650 return retval;
c906108c
SS
4651}
4652
4653static int
758e29d2 4654debug_to_remove_exec_catchpoint (struct target_ops *self, int pid)
c906108c 4655{
c5aa993b 4656 int retval;
c906108c 4657
758e29d2 4658 retval = debug_target.to_remove_exec_catchpoint (&debug_target, pid);
c906108c 4659
96baa820 4660 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
c5aa993b 4661 pid, retval);
c906108c
SS
4662
4663 return retval;
4664}
4665
c906108c 4666static int
d796e1d6
TT
4667debug_to_has_exited (struct target_ops *self,
4668 int pid, int wait_status, int *exit_status)
c906108c 4669{
c5aa993b 4670 int has_exited;
c906108c 4671
d796e1d6
TT
4672 has_exited = debug_target.to_has_exited (&debug_target,
4673 pid, wait_status, exit_status);
c906108c 4674
96baa820 4675 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
c5aa993b 4676 pid, wait_status, *exit_status, has_exited);
c906108c
SS
4677
4678 return has_exited;
4679}
4680
c906108c 4681static int
da82bd6b 4682debug_to_can_run (struct target_ops *self)
c906108c
SS
4683{
4684 int retval;
4685
da82bd6b 4686 retval = debug_target.to_can_run (&debug_target);
c906108c 4687
96baa820 4688 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
c906108c
SS
4689
4690 return retval;
4691}
4692
c2250ad1
UW
4693static struct gdbarch *
4694debug_to_thread_architecture (struct target_ops *ops, ptid_t ptid)
4695{
4696 struct gdbarch *retval;
4697
4698 retval = debug_target.to_thread_architecture (ops, ptid);
4699
3e43a32a
MS
4700 fprintf_unfiltered (gdb_stdlog,
4701 "target_thread_architecture (%s) = %s [%s]\n",
4702 target_pid_to_str (ptid),
4703 host_address_to_string (retval),
c2250ad1
UW
4704 gdbarch_bfd_arch_info (retval)->printable_name);
4705 return retval;
4706}
4707
c906108c 4708static void
1eab8a48 4709debug_to_stop (struct target_ops *self, ptid_t ptid)
c906108c 4710{
1eab8a48 4711 debug_target.to_stop (&debug_target, ptid);
c906108c 4712
94cc34af
PA
4713 fprintf_unfiltered (gdb_stdlog, "target_stop (%s)\n",
4714 target_pid_to_str (ptid));
c906108c
SS
4715}
4716
96baa820 4717static void
1aac633b 4718debug_to_rcmd (struct target_ops *self, char *command,
d9fcf2fb 4719 struct ui_file *outbuf)
96baa820 4720{
1aac633b 4721 debug_target.to_rcmd (&debug_target, command, outbuf);
96baa820
JM
4722 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
4723}
4724
c906108c 4725static char *
8dd27370 4726debug_to_pid_to_exec_file (struct target_ops *self, int pid)
c906108c 4727{
c5aa993b 4728 char *exec_file;
c906108c 4729
8dd27370 4730 exec_file = debug_target.to_pid_to_exec_file (&debug_target, pid);
c906108c 4731
96baa820 4732 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
c5aa993b 4733 pid, exec_file);
c906108c
SS
4734
4735 return exec_file;
4736}
4737
c906108c 4738static void
fba45db2 4739setup_target_debug (void)
c906108c
SS
4740{
4741 memcpy (&debug_target, &current_target, sizeof debug_target);
4742
4743 current_target.to_open = debug_to_open;
c906108c 4744 current_target.to_post_attach = debug_to_post_attach;
c906108c 4745 current_target.to_prepare_to_store = debug_to_prepare_to_store;
c8e73a31 4746 current_target.deprecated_xfer_memory = deprecated_debug_xfer_memory;
c906108c
SS
4747 current_target.to_files_info = debug_to_files_info;
4748 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
4749 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
ccaa32c7
GS
4750 current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
4751 current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
4752 current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
4753 current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
4754 current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
4755 current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
4756 current_target.to_stopped_data_address = debug_to_stopped_data_address;
3e43a32a
MS
4757 current_target.to_watchpoint_addr_within_range
4758 = debug_to_watchpoint_addr_within_range;
4759 current_target.to_region_ok_for_hw_watchpoint
4760 = debug_to_region_ok_for_hw_watchpoint;
4761 current_target.to_can_accel_watchpoint_condition
4762 = debug_to_can_accel_watchpoint_condition;
c906108c
SS
4763 current_target.to_terminal_init = debug_to_terminal_init;
4764 current_target.to_terminal_inferior = debug_to_terminal_inferior;
3e43a32a
MS
4765 current_target.to_terminal_ours_for_output
4766 = debug_to_terminal_ours_for_output;
c906108c 4767 current_target.to_terminal_ours = debug_to_terminal_ours;
a790ad35 4768 current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
c906108c 4769 current_target.to_terminal_info = debug_to_terminal_info;
c906108c 4770 current_target.to_load = debug_to_load;
c906108c 4771 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
c906108c
SS
4772 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
4773 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
4774 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
4775 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
c906108c
SS
4776 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
4777 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
c906108c 4778 current_target.to_has_exited = debug_to_has_exited;
c906108c 4779 current_target.to_can_run = debug_to_can_run;
c906108c 4780 current_target.to_stop = debug_to_stop;
96baa820 4781 current_target.to_rcmd = debug_to_rcmd;
c906108c 4782 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
c2250ad1 4783 current_target.to_thread_architecture = debug_to_thread_architecture;
c906108c 4784}
c906108c 4785\f
c5aa993b
JM
4786
4787static char targ_desc[] =
3e43a32a
MS
4788"Names of targets and files being debugged.\nShows the entire \
4789stack of targets currently in use (including the exec-file,\n\
c906108c
SS
4790core-file, and process, if any), as well as the symbol file name.";
4791
a53f3625
TT
4792static void
4793default_rcmd (struct target_ops *self, char *command, struct ui_file *output)
4794{
4795 error (_("\"monitor\" command not supported by this target."));
4796}
4797
96baa820
JM
4798static void
4799do_monitor_command (char *cmd,
4800 int from_tty)
4801{
96baa820
JM
4802 target_rcmd (cmd, gdb_stdtarg);
4803}
4804
87680a14
JB
4805/* Print the name of each layers of our target stack. */
4806
4807static void
4808maintenance_print_target_stack (char *cmd, int from_tty)
4809{
4810 struct target_ops *t;
4811
4812 printf_filtered (_("The current target stack is:\n"));
4813
4814 for (t = target_stack; t != NULL; t = t->beneath)
4815 {
4816 printf_filtered (" - %s (%s)\n", t->to_shortname, t->to_longname);
4817 }
4818}
4819
c6ebd6cf
VP
4820/* Controls if async mode is permitted. */
4821int target_async_permitted = 0;
4822
4823/* The set command writes to this variable. If the inferior is
b5419e49 4824 executing, target_async_permitted is *not* updated. */
c6ebd6cf
VP
4825static int target_async_permitted_1 = 0;
4826
4827static void
9401a810
PA
4828set_target_async_command (char *args, int from_tty,
4829 struct cmd_list_element *c)
c6ebd6cf 4830{
c35b1492 4831 if (have_live_inferiors ())
c6ebd6cf
VP
4832 {
4833 target_async_permitted_1 = target_async_permitted;
4834 error (_("Cannot change this setting while the inferior is running."));
4835 }
4836
4837 target_async_permitted = target_async_permitted_1;
4838}
4839
4840static void
9401a810
PA
4841show_target_async_command (struct ui_file *file, int from_tty,
4842 struct cmd_list_element *c,
4843 const char *value)
c6ebd6cf 4844{
3e43a32a
MS
4845 fprintf_filtered (file,
4846 _("Controlling the inferior in "
4847 "asynchronous mode is %s.\n"), value);
c6ebd6cf
VP
4848}
4849
d914c394
SS
4850/* Temporary copies of permission settings. */
4851
4852static int may_write_registers_1 = 1;
4853static int may_write_memory_1 = 1;
4854static int may_insert_breakpoints_1 = 1;
4855static int may_insert_tracepoints_1 = 1;
4856static int may_insert_fast_tracepoints_1 = 1;
4857static int may_stop_1 = 1;
4858
4859/* Make the user-set values match the real values again. */
4860
4861void
4862update_target_permissions (void)
4863{
4864 may_write_registers_1 = may_write_registers;
4865 may_write_memory_1 = may_write_memory;
4866 may_insert_breakpoints_1 = may_insert_breakpoints;
4867 may_insert_tracepoints_1 = may_insert_tracepoints;
4868 may_insert_fast_tracepoints_1 = may_insert_fast_tracepoints;
4869 may_stop_1 = may_stop;
4870}
4871
4872/* The one function handles (most of) the permission flags in the same
4873 way. */
4874
4875static void
4876set_target_permissions (char *args, int from_tty,
4877 struct cmd_list_element *c)
4878{
4879 if (target_has_execution)
4880 {
4881 update_target_permissions ();
4882 error (_("Cannot change this setting while the inferior is running."));
4883 }
4884
4885 /* Make the real values match the user-changed values. */
4886 may_write_registers = may_write_registers_1;
4887 may_insert_breakpoints = may_insert_breakpoints_1;
4888 may_insert_tracepoints = may_insert_tracepoints_1;
4889 may_insert_fast_tracepoints = may_insert_fast_tracepoints_1;
4890 may_stop = may_stop_1;
4891 update_observer_mode ();
4892}
4893
4894/* Set memory write permission independently of observer mode. */
4895
4896static void
4897set_write_memory_permission (char *args, int from_tty,
4898 struct cmd_list_element *c)
4899{
4900 /* Make the real values match the user-changed values. */
4901 may_write_memory = may_write_memory_1;
4902 update_observer_mode ();
4903}
4904
4905
c906108c 4906void
fba45db2 4907initialize_targets (void)
c906108c
SS
4908{
4909 init_dummy_target ();
4910 push_target (&dummy_target);
4911
4912 add_info ("target", target_info, targ_desc);
4913 add_info ("files", target_info, targ_desc);
4914
ccce17b0 4915 add_setshow_zuinteger_cmd ("target", class_maintenance, &targetdebug, _("\
85c07804
AC
4916Set target debugging."), _("\
4917Show target debugging."), _("\
333dabeb
DJ
4918When non-zero, target debugging is enabled. Higher numbers are more\n\
4919verbose. Changes do not take effect until the next \"run\" or \"target\"\n\
85c07804 4920command."),
ccce17b0
YQ
4921 NULL,
4922 show_targetdebug,
4923 &setdebuglist, &showdebuglist);
3a11626d 4924
2bc416ba 4925 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
7915a72c
AC
4926 &trust_readonly, _("\
4927Set mode for reading from readonly sections."), _("\
4928Show mode for reading from readonly sections."), _("\
3a11626d
MS
4929When this mode is on, memory reads from readonly sections (such as .text)\n\
4930will be read from the object file instead of from the target. This will\n\
7915a72c 4931result in significant performance improvement for remote targets."),
2c5b56ce 4932 NULL,
920d2a44 4933 show_trust_readonly,
e707bbc2 4934 &setlist, &showlist);
96baa820
JM
4935
4936 add_com ("monitor", class_obscure, do_monitor_command,
1bedd215 4937 _("Send a command to the remote monitor (remote targets only)."));
96baa820 4938
87680a14
JB
4939 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
4940 _("Print the name of each layer of the internal target stack."),
4941 &maintenanceprintlist);
4942
c6ebd6cf
VP
4943 add_setshow_boolean_cmd ("target-async", no_class,
4944 &target_async_permitted_1, _("\
4945Set whether gdb controls the inferior in asynchronous mode."), _("\
4946Show whether gdb controls the inferior in asynchronous mode."), _("\
4947Tells gdb whether to control the inferior in asynchronous mode."),
9401a810
PA
4948 set_target_async_command,
4949 show_target_async_command,
c6ebd6cf
VP
4950 &setlist,
4951 &showlist);
4952
d914c394
SS
4953 add_setshow_boolean_cmd ("may-write-registers", class_support,
4954 &may_write_registers_1, _("\
4955Set permission to write into registers."), _("\
4956Show permission to write into registers."), _("\
4957When this permission is on, GDB may write into the target's registers.\n\
4958Otherwise, any sort of write attempt will result in an error."),
4959 set_target_permissions, NULL,
4960 &setlist, &showlist);
4961
4962 add_setshow_boolean_cmd ("may-write-memory", class_support,
4963 &may_write_memory_1, _("\
4964Set permission to write into target memory."), _("\
4965Show permission to write into target memory."), _("\
4966When this permission is on, GDB may write into the target's memory.\n\
4967Otherwise, any sort of write attempt will result in an error."),
4968 set_write_memory_permission, NULL,
4969 &setlist, &showlist);
4970
4971 add_setshow_boolean_cmd ("may-insert-breakpoints", class_support,
4972 &may_insert_breakpoints_1, _("\
4973Set permission to insert breakpoints in the target."), _("\
4974Show permission to insert breakpoints in the target."), _("\
4975When this permission is on, GDB may insert breakpoints in the program.\n\
4976Otherwise, any sort of insertion attempt will result in an error."),
4977 set_target_permissions, NULL,
4978 &setlist, &showlist);
4979
4980 add_setshow_boolean_cmd ("may-insert-tracepoints", class_support,
4981 &may_insert_tracepoints_1, _("\
4982Set permission to insert tracepoints in the target."), _("\
4983Show permission to insert tracepoints in the target."), _("\
4984When this permission is on, GDB may insert tracepoints in the program.\n\
4985Otherwise, any sort of insertion attempt will result in an error."),
4986 set_target_permissions, NULL,
4987 &setlist, &showlist);
4988
4989 add_setshow_boolean_cmd ("may-insert-fast-tracepoints", class_support,
4990 &may_insert_fast_tracepoints_1, _("\
4991Set permission to insert fast tracepoints in the target."), _("\
4992Show permission to insert fast tracepoints in the target."), _("\
4993When this permission is on, GDB may insert fast tracepoints.\n\
4994Otherwise, any sort of insertion attempt will result in an error."),
4995 set_target_permissions, NULL,
4996 &setlist, &showlist);
4997
4998 add_setshow_boolean_cmd ("may-interrupt", class_support,
4999 &may_stop_1, _("\
5000Set permission to interrupt or signal the target."), _("\
5001Show permission to interrupt or signal the target."), _("\
5002When this permission is on, GDB may interrupt/stop the target's execution.\n\
5003Otherwise, any attempt to interrupt or stop will be ignored."),
5004 set_target_permissions, NULL,
5005 &setlist, &showlist);
c906108c 5006}
This page took 1.985014 seconds and 4 git commands to generate.