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