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