daily update
[deliverable/binutils-gdb.git] / gdb / target.c
CommitLineData
c906108c 1/* Select target systems and architectures at runtime for GDB.
7998dfc3 2
ecd75fc8 3 Copyright (C) 1990-2014 Free Software Foundation, Inc.
7998dfc3 4
c906108c
SS
5 Contributed by Cygnus Support.
6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
21
22#include "defs.h"
23#include <errno.h>
0e9f083f 24#include <string.h>
c906108c 25#include "target.h"
68c765e2 26#include "target-dcache.h"
c906108c
SS
27#include "gdbcmd.h"
28#include "symtab.h"
29#include "inferior.h"
30#include "bfd.h"
31#include "symfile.h"
32#include "objfiles.h"
4930751a 33#include "dcache.h"
c906108c 34#include <signal.h>
4e052eda 35#include "regcache.h"
0088c768 36#include "gdb_assert.h"
b6591e8b 37#include "gdbcore.h"
9e35dae4 38#include "exceptions.h"
424163ea 39#include "target-descriptions.h"
e1ac3328 40#include "gdbthread.h"
b9db4ced 41#include "solib.h"
07b82ea5 42#include "exec.h"
edb3359d 43#include "inline-frame.h"
2f4d8875 44#include "tracepoint.h"
7313baad 45#include "gdb/fileio.h"
8ffcbaaf 46#include "agent.h"
c906108c 47
a14ed312 48static void target_info (char *, int);
c906108c 49
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
1397raw_memory_xfer_partial (struct target_ops *ops, void *readbuf,
1398 const void *writebuf, ULONGEST memaddr, LONGEST len)
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
PA
1429memory_xfer_partial_1 (struct target_ops *ops, enum target_object object,
1430 void *readbuf, const void *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)
1545 return -1;
1546 break;
1547
1548 case MEM_WO:
1549 if (readbuf != NULL)
1550 return -1;
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:
1560 return -1;
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,
1628 void *readbuf, const void *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
d914c394
SS
1700 if (writebuf && !may_write_memory)
1701 error (_("Writing to memory is not allowed (addr %s, len %s)"),
1702 core_addr_to_string_nz (offset), plongest (len));
1703
cf7a04e8
DJ
1704 /* If this is a memory transfer, let the memory-specific code
1705 have a look at it instead. Memory transfers are more
1706 complicated. */
29453a14
YQ
1707 if (object == TARGET_OBJECT_MEMORY || object == TARGET_OBJECT_STACK_MEMORY
1708 || object == TARGET_OBJECT_CODE_MEMORY)
4e5d721f
DE
1709 retval = memory_xfer_partial (ops, object, readbuf,
1710 writebuf, offset, len);
9f713294 1711 else if (object == TARGET_OBJECT_RAW_MEMORY)
cf7a04e8 1712 {
9f713294
YQ
1713 /* Request the normal memory object from other layers. */
1714 retval = raw_memory_xfer_partial (ops, readbuf, writebuf, offset, len);
cf7a04e8 1715 }
9f713294
YQ
1716 else
1717 retval = ops->to_xfer_partial (ops, object, annex, readbuf,
1718 writebuf, offset, len);
cf7a04e8 1719
27394598
AC
1720 if (targetdebug)
1721 {
1722 const unsigned char *myaddr = NULL;
1723
1724 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
1725 "%s:target_xfer_partial "
1726 "(%d, %s, %s, %s, %s, %s) = %s",
27394598
AC
1727 ops->to_shortname,
1728 (int) object,
1729 (annex ? annex : "(null)"),
53b71562
JB
1730 host_address_to_string (readbuf),
1731 host_address_to_string (writebuf),
0b1553bc 1732 core_addr_to_string_nz (offset),
b55e14c7 1733 pulongest (len), plongest (retval));
27394598
AC
1734
1735 if (readbuf)
1736 myaddr = readbuf;
1737 if (writebuf)
1738 myaddr = writebuf;
1739 if (retval > 0 && myaddr != NULL)
1740 {
1741 int i;
2bc416ba 1742
27394598
AC
1743 fputs_unfiltered (", bytes =", gdb_stdlog);
1744 for (i = 0; i < retval; i++)
1745 {
53b71562 1746 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
27394598
AC
1747 {
1748 if (targetdebug < 2 && i > 0)
1749 {
1750 fprintf_unfiltered (gdb_stdlog, " ...");
1751 break;
1752 }
1753 fprintf_unfiltered (gdb_stdlog, "\n");
1754 }
2bc416ba 1755
27394598
AC
1756 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1757 }
1758 }
2bc416ba 1759
27394598
AC
1760 fputc_unfiltered ('\n', gdb_stdlog);
1761 }
1762 return retval;
1763}
1764
578d3588
PA
1765/* Read LEN bytes of target memory at address MEMADDR, placing the
1766 results in GDB's memory at MYADDR. Returns either 0 for success or
1767 a target_xfer_error value if any error occurs.
c906108c
SS
1768
1769 If an error occurs, no guarantee is made about the contents of the data at
1770 MYADDR. In particular, the caller should not depend upon partial reads
1771 filling the buffer with good data. There is no way for the caller to know
1772 how much good data might have been transfered anyway. Callers that can
cf7a04e8 1773 deal with partial reads should call target_read (which will retry until
c378eb4e 1774 it makes no progress, and then return how much was transferred). */
c906108c
SS
1775
1776int
1b162304 1777target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
c906108c 1778{
c35b1492
PA
1779 /* Dispatch to the topmost target, not the flattened current_target.
1780 Memory accesses check target->to_has_(all_)memory, and the
1781 flattened target doesn't inherit those. */
1782 if (target_read (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
cf7a04e8
DJ
1783 myaddr, memaddr, len) == len)
1784 return 0;
0779438d 1785 else
578d3588 1786 return TARGET_XFER_E_IO;
c906108c
SS
1787}
1788
aee4bf85
PA
1789/* Like target_read_memory, but specify explicitly that this is a read
1790 from the target's raw memory. That is, this read bypasses the
1791 dcache, breakpoint shadowing, etc. */
1792
1793int
1794target_read_raw_memory (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1795{
1796 /* See comment in target_read_memory about why the request starts at
1797 current_target.beneath. */
1798 if (target_read (current_target.beneath, TARGET_OBJECT_RAW_MEMORY, NULL,
1799 myaddr, memaddr, len) == len)
1800 return 0;
1801 else
1802 return TARGET_XFER_E_IO;
1803}
1804
4e5d721f
DE
1805/* Like target_read_memory, but specify explicitly that this is a read from
1806 the target's stack. This may trigger different cache behavior. */
1807
1808int
45aa4659 1809target_read_stack (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
4e5d721f 1810{
aee4bf85
PA
1811 /* See comment in target_read_memory about why the request starts at
1812 current_target.beneath. */
4e5d721f
DE
1813 if (target_read (current_target.beneath, TARGET_OBJECT_STACK_MEMORY, NULL,
1814 myaddr, memaddr, len) == len)
1815 return 0;
1816 else
578d3588 1817 return TARGET_XFER_E_IO;
4e5d721f
DE
1818}
1819
29453a14
YQ
1820/* Like target_read_memory, but specify explicitly that this is a read from
1821 the target's code. This may trigger different cache behavior. */
1822
1823int
1824target_read_code (CORE_ADDR memaddr, gdb_byte *myaddr, ssize_t len)
1825{
aee4bf85
PA
1826 /* See comment in target_read_memory about why the request starts at
1827 current_target.beneath. */
29453a14
YQ
1828 if (target_read (current_target.beneath, TARGET_OBJECT_CODE_MEMORY, NULL,
1829 myaddr, memaddr, len) == len)
1830 return 0;
1831 else
1832 return TARGET_XFER_E_IO;
1833}
1834
7f79c47e 1835/* Write LEN bytes from MYADDR to target memory at address MEMADDR.
578d3588
PA
1836 Returns either 0 for success or a target_xfer_error value if any
1837 error occurs. If an error occurs, no guarantee is made about how
1838 much data got written. Callers that can deal with partial writes
1839 should call target_write. */
7f79c47e 1840
c906108c 1841int
45aa4659 1842target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
c906108c 1843{
aee4bf85
PA
1844 /* See comment in target_read_memory about why the request starts at
1845 current_target.beneath. */
c35b1492 1846 if (target_write (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
cf7a04e8
DJ
1847 myaddr, memaddr, len) == len)
1848 return 0;
0779438d 1849 else
578d3588 1850 return TARGET_XFER_E_IO;
c906108c 1851}
c5aa993b 1852
f0ba3972 1853/* Write LEN bytes from MYADDR to target raw memory at address
578d3588
PA
1854 MEMADDR. Returns either 0 for success or a target_xfer_error value
1855 if any error occurs. If an error occurs, no guarantee is made
1856 about how much data got written. Callers that can deal with
1857 partial writes should call target_write. */
f0ba3972
PA
1858
1859int
45aa4659 1860target_write_raw_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, ssize_t len)
f0ba3972 1861{
aee4bf85
PA
1862 /* See comment in target_read_memory about why the request starts at
1863 current_target.beneath. */
f0ba3972
PA
1864 if (target_write (current_target.beneath, TARGET_OBJECT_RAW_MEMORY, NULL,
1865 myaddr, memaddr, len) == len)
1866 return 0;
1867 else
578d3588 1868 return TARGET_XFER_E_IO;
f0ba3972
PA
1869}
1870
fd79ecee
DJ
1871/* Fetch the target's memory map. */
1872
1873VEC(mem_region_s) *
1874target_memory_map (void)
1875{
1876 VEC(mem_region_s) *result;
1877 struct mem_region *last_one, *this_one;
1878 int ix;
1879 struct target_ops *t;
1880
1881 if (targetdebug)
1882 fprintf_unfiltered (gdb_stdlog, "target_memory_map ()\n");
1883
1884 for (t = current_target.beneath; t != NULL; t = t->beneath)
1885 if (t->to_memory_map != NULL)
1886 break;
1887
1888 if (t == NULL)
1889 return NULL;
1890
1891 result = t->to_memory_map (t);
1892 if (result == NULL)
1893 return NULL;
1894
1895 qsort (VEC_address (mem_region_s, result),
1896 VEC_length (mem_region_s, result),
1897 sizeof (struct mem_region), mem_region_cmp);
1898
1899 /* Check that regions do not overlap. Simultaneously assign
1900 a numbering for the "mem" commands to use to refer to
1901 each region. */
1902 last_one = NULL;
1903 for (ix = 0; VEC_iterate (mem_region_s, result, ix, this_one); ix++)
1904 {
1905 this_one->number = ix;
1906
1907 if (last_one && last_one->hi > this_one->lo)
1908 {
1909 warning (_("Overlapping regions in memory map: ignoring"));
1910 VEC_free (mem_region_s, result);
1911 return NULL;
1912 }
1913 last_one = this_one;
1914 }
1915
1916 return result;
1917}
1918
a76d924d
DJ
1919void
1920target_flash_erase (ULONGEST address, LONGEST length)
1921{
1922 struct target_ops *t;
1923
1924 for (t = current_target.beneath; t != NULL; t = t->beneath)
1925 if (t->to_flash_erase != NULL)
5d502164
MS
1926 {
1927 if (targetdebug)
1928 fprintf_unfiltered (gdb_stdlog, "target_flash_erase (%s, %s)\n",
1929 hex_string (address), phex (length, 0));
1930 t->to_flash_erase (t, address, length);
1931 return;
1932 }
a76d924d
DJ
1933
1934 tcomplain ();
1935}
1936
1937void
1938target_flash_done (void)
1939{
1940 struct target_ops *t;
1941
1942 for (t = current_target.beneath; t != NULL; t = t->beneath)
1943 if (t->to_flash_done != NULL)
5d502164
MS
1944 {
1945 if (targetdebug)
1946 fprintf_unfiltered (gdb_stdlog, "target_flash_done\n");
1947 t->to_flash_done (t);
1948 return;
1949 }
a76d924d
DJ
1950
1951 tcomplain ();
1952}
1953
920d2a44
AC
1954static void
1955show_trust_readonly (struct ui_file *file, int from_tty,
1956 struct cmd_list_element *c, const char *value)
1957{
3e43a32a
MS
1958 fprintf_filtered (file,
1959 _("Mode for reading from readonly sections is %s.\n"),
920d2a44
AC
1960 value);
1961}
3a11626d 1962
1e3ff5ad
AC
1963/* More generic transfers. */
1964
0088c768 1965static LONGEST
8aa91c1e 1966default_xfer_partial (struct target_ops *ops, enum target_object object,
2bc416ba 1967 const char *annex, gdb_byte *readbuf,
b55e14c7 1968 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len)
0088c768
AC
1969{
1970 if (object == TARGET_OBJECT_MEMORY
c8e73a31
AC
1971 && ops->deprecated_xfer_memory != NULL)
1972 /* If available, fall back to the target's
1973 "deprecated_xfer_memory" method. */
0088c768 1974 {
4b8a223f 1975 int xfered = -1;
5d502164 1976
0088c768 1977 errno = 0;
4b8a223f
AC
1978 if (writebuf != NULL)
1979 {
1980 void *buffer = xmalloc (len);
1981 struct cleanup *cleanup = make_cleanup (xfree, buffer);
5d502164 1982
4b8a223f 1983 memcpy (buffer, writebuf, len);
c8e73a31
AC
1984 xfered = ops->deprecated_xfer_memory (offset, buffer, len,
1985 1/*write*/, NULL, ops);
4b8a223f
AC
1986 do_cleanups (cleanup);
1987 }
1988 if (readbuf != NULL)
244e85c8
MS
1989 xfered = ops->deprecated_xfer_memory (offset, readbuf, len,
1990 0/*read*/, NULL, ops);
0088c768
AC
1991 if (xfered > 0)
1992 return xfered;
1993 else if (xfered == 0 && errno == 0)
c8e73a31
AC
1994 /* "deprecated_xfer_memory" uses 0, cross checked against
1995 ERRNO as one indication of an error. */
0088c768
AC
1996 return 0;
1997 else
1998 return -1;
1999 }
2000 else if (ops->beneath != NULL)
cf7a04e8
DJ
2001 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
2002 readbuf, writebuf, offset, len);
2003 else
2004 return -1;
2005}
2006
2007/* The xfer_partial handler for the topmost target. Unlike the default,
2008 it does not need to handle memory specially; it just passes all
2009 requests down the stack. */
2010
2011static LONGEST
2012current_xfer_partial (struct target_ops *ops, enum target_object object,
2013 const char *annex, gdb_byte *readbuf,
b55e14c7 2014 const gdb_byte *writebuf, ULONGEST offset, ULONGEST len)
cf7a04e8
DJ
2015{
2016 if (ops->beneath != NULL)
2017 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
2018 readbuf, writebuf, offset, len);
0088c768
AC
2019 else
2020 return -1;
2021}
2022
7f79c47e 2023/* Target vector read/write partial wrapper functions. */
0088c768 2024
13547ab6 2025static LONGEST
1e3ff5ad
AC
2026target_read_partial (struct target_ops *ops,
2027 enum target_object object,
1b0ba102 2028 const char *annex, gdb_byte *buf,
1e3ff5ad
AC
2029 ULONGEST offset, LONGEST len)
2030{
27394598 2031 return target_xfer_partial (ops, object, annex, buf, NULL, offset, len);
1e3ff5ad
AC
2032}
2033
13547ab6 2034static LONGEST
1e3ff5ad
AC
2035target_write_partial (struct target_ops *ops,
2036 enum target_object object,
1b0ba102 2037 const char *annex, const gdb_byte *buf,
1e3ff5ad
AC
2038 ULONGEST offset, LONGEST len)
2039{
27394598 2040 return target_xfer_partial (ops, object, annex, NULL, buf, offset, len);
1e3ff5ad
AC
2041}
2042
2043/* Wrappers to perform the full transfer. */
7f79c47e
DE
2044
2045/* For docs on target_read see target.h. */
2046
1e3ff5ad
AC
2047LONGEST
2048target_read (struct target_ops *ops,
2049 enum target_object object,
1b0ba102 2050 const char *annex, gdb_byte *buf,
1e3ff5ad
AC
2051 ULONGEST offset, LONGEST len)
2052{
2053 LONGEST xfered = 0;
5d502164 2054
1e3ff5ad
AC
2055 while (xfered < len)
2056 {
0088c768 2057 LONGEST xfer = target_read_partial (ops, object, annex,
fc1a4b47 2058 (gdb_byte *) buf + xfered,
0088c768 2059 offset + xfered, len - xfered);
5d502164 2060
1e3ff5ad 2061 /* Call an observer, notifying them of the xfer progress? */
13547ab6
DJ
2062 if (xfer == 0)
2063 return xfered;
2064 if (xfer < 0)
0088c768 2065 return -1;
1e3ff5ad
AC
2066 xfered += xfer;
2067 QUIT;
2068 }
2069 return len;
2070}
2071
f1a507a1
JB
2072/* Assuming that the entire [begin, end) range of memory cannot be
2073 read, try to read whatever subrange is possible to read.
2074
2075 The function returns, in RESULT, either zero or one memory block.
2076 If there's a readable subrange at the beginning, it is completely
2077 read and returned. Any further readable subrange will not be read.
2078 Otherwise, if there's a readable subrange at the end, it will be
2079 completely read and returned. Any readable subranges before it
2080 (obviously, not starting at the beginning), will be ignored. In
2081 other cases -- either no readable subrange, or readable subrange(s)
2082 that is neither at the beginning, or end, nothing is returned.
2083
2084 The purpose of this function is to handle a read across a boundary
2085 of accessible memory in a case when memory map is not available.
2086 The above restrictions are fine for this case, but will give
2087 incorrect results if the memory is 'patchy'. However, supporting
2088 'patchy' memory would require trying to read every single byte,
2089 and it seems unacceptable solution. Explicit memory map is
2090 recommended for this case -- and target_read_memory_robust will
2091 take care of reading multiple ranges then. */
8dedea02
VP
2092
2093static void
3e43a32a
MS
2094read_whatever_is_readable (struct target_ops *ops,
2095 ULONGEST begin, ULONGEST end,
8dedea02 2096 VEC(memory_read_result_s) **result)
d5086790 2097{
f1a507a1 2098 gdb_byte *buf = xmalloc (end - begin);
8dedea02
VP
2099 ULONGEST current_begin = begin;
2100 ULONGEST current_end = end;
2101 int forward;
2102 memory_read_result_s r;
2103
2104 /* If we previously failed to read 1 byte, nothing can be done here. */
2105 if (end - begin <= 1)
13b3fd9b
MS
2106 {
2107 xfree (buf);
2108 return;
2109 }
8dedea02
VP
2110
2111 /* Check that either first or the last byte is readable, and give up
c378eb4e 2112 if not. This heuristic is meant to permit reading accessible memory
8dedea02
VP
2113 at the boundary of accessible region. */
2114 if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
2115 buf, begin, 1) == 1)
2116 {
2117 forward = 1;
2118 ++current_begin;
2119 }
2120 else if (target_read_partial (ops, TARGET_OBJECT_MEMORY, NULL,
2121 buf + (end-begin) - 1, end - 1, 1) == 1)
2122 {
2123 forward = 0;
2124 --current_end;
2125 }
2126 else
2127 {
13b3fd9b 2128 xfree (buf);
8dedea02
VP
2129 return;
2130 }
2131
2132 /* Loop invariant is that the [current_begin, current_end) was previously
2133 found to be not readable as a whole.
2134
2135 Note loop condition -- if the range has 1 byte, we can't divide the range
2136 so there's no point trying further. */
2137 while (current_end - current_begin > 1)
2138 {
2139 ULONGEST first_half_begin, first_half_end;
2140 ULONGEST second_half_begin, second_half_end;
2141 LONGEST xfer;
8dedea02 2142 ULONGEST middle = current_begin + (current_end - current_begin)/2;
f1a507a1 2143
8dedea02
VP
2144 if (forward)
2145 {
2146 first_half_begin = current_begin;
2147 first_half_end = middle;
2148 second_half_begin = middle;
2149 second_half_end = current_end;
2150 }
2151 else
2152 {
2153 first_half_begin = middle;
2154 first_half_end = current_end;
2155 second_half_begin = current_begin;
2156 second_half_end = middle;
2157 }
2158
2159 xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2160 buf + (first_half_begin - begin),
2161 first_half_begin,
2162 first_half_end - first_half_begin);
2163
2164 if (xfer == first_half_end - first_half_begin)
2165 {
c378eb4e 2166 /* This half reads up fine. So, the error must be in the
3e43a32a 2167 other half. */
8dedea02
VP
2168 current_begin = second_half_begin;
2169 current_end = second_half_end;
2170 }
2171 else
2172 {
c378eb4e
MS
2173 /* This half is not readable. Because we've tried one byte, we
2174 know some part of this half if actually redable. Go to the next
8dedea02
VP
2175 iteration to divide again and try to read.
2176
2177 We don't handle the other half, because this function only tries
2178 to read a single readable subrange. */
2179 current_begin = first_half_begin;
2180 current_end = first_half_end;
2181 }
2182 }
2183
2184 if (forward)
2185 {
2186 /* The [begin, current_begin) range has been read. */
2187 r.begin = begin;
2188 r.end = current_begin;
2189 r.data = buf;
2190 }
2191 else
2192 {
2193 /* The [current_end, end) range has been read. */
2194 LONGEST rlen = end - current_end;
f1a507a1 2195
8dedea02
VP
2196 r.data = xmalloc (rlen);
2197 memcpy (r.data, buf + current_end - begin, rlen);
2198 r.begin = current_end;
2199 r.end = end;
2200 xfree (buf);
2201 }
2202 VEC_safe_push(memory_read_result_s, (*result), &r);
2203}
2204
2205void
2206free_memory_read_result_vector (void *x)
2207{
2208 VEC(memory_read_result_s) *v = x;
2209 memory_read_result_s *current;
2210 int ix;
2211
2212 for (ix = 0; VEC_iterate (memory_read_result_s, v, ix, current); ++ix)
2213 {
2214 xfree (current->data);
2215 }
2216 VEC_free (memory_read_result_s, v);
2217}
2218
2219VEC(memory_read_result_s) *
2220read_memory_robust (struct target_ops *ops, ULONGEST offset, LONGEST len)
2221{
2222 VEC(memory_read_result_s) *result = 0;
2223
2224 LONGEST xfered = 0;
d5086790
VP
2225 while (xfered < len)
2226 {
8dedea02
VP
2227 struct mem_region *region = lookup_mem_region (offset + xfered);
2228 LONGEST rlen;
5d502164 2229
8dedea02
VP
2230 /* If there is no explicit region, a fake one should be created. */
2231 gdb_assert (region);
2232
2233 if (region->hi == 0)
2234 rlen = len - xfered;
2235 else
2236 rlen = region->hi - offset;
2237
2238 if (region->attrib.mode == MEM_NONE || region->attrib.mode == MEM_WO)
d5086790 2239 {
c378eb4e 2240 /* Cannot read this region. Note that we can end up here only
8dedea02
VP
2241 if the region is explicitly marked inaccessible, or
2242 'inaccessible-by-default' is in effect. */
2243 xfered += rlen;
2244 }
2245 else
2246 {
2247 LONGEST to_read = min (len - xfered, rlen);
2248 gdb_byte *buffer = (gdb_byte *)xmalloc (to_read);
2249
2250 LONGEST xfer = target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2251 (gdb_byte *) buffer,
2252 offset + xfered, to_read);
2253 /* Call an observer, notifying them of the xfer progress? */
d5086790 2254 if (xfer <= 0)
d5086790 2255 {
c378eb4e 2256 /* Got an error reading full chunk. See if maybe we can read
8dedea02
VP
2257 some subrange. */
2258 xfree (buffer);
3e43a32a
MS
2259 read_whatever_is_readable (ops, offset + xfered,
2260 offset + xfered + to_read, &result);
8dedea02 2261 xfered += to_read;
d5086790 2262 }
8dedea02
VP
2263 else
2264 {
2265 struct memory_read_result r;
2266 r.data = buffer;
2267 r.begin = offset + xfered;
2268 r.end = r.begin + xfer;
2269 VEC_safe_push (memory_read_result_s, result, &r);
2270 xfered += xfer;
2271 }
2272 QUIT;
d5086790 2273 }
d5086790 2274 }
8dedea02 2275 return result;
d5086790
VP
2276}
2277
8dedea02 2278
cf7a04e8
DJ
2279/* An alternative to target_write with progress callbacks. */
2280
1e3ff5ad 2281LONGEST
cf7a04e8
DJ
2282target_write_with_progress (struct target_ops *ops,
2283 enum target_object object,
2284 const char *annex, const gdb_byte *buf,
2285 ULONGEST offset, LONGEST len,
2286 void (*progress) (ULONGEST, void *), void *baton)
1e3ff5ad
AC
2287{
2288 LONGEST xfered = 0;
a76d924d
DJ
2289
2290 /* Give the progress callback a chance to set up. */
2291 if (progress)
2292 (*progress) (0, baton);
2293
1e3ff5ad
AC
2294 while (xfered < len)
2295 {
2296 LONGEST xfer = target_write_partial (ops, object, annex,
fc1a4b47 2297 (gdb_byte *) buf + xfered,
1e3ff5ad 2298 offset + xfered, len - xfered);
cf7a04e8 2299
13547ab6
DJ
2300 if (xfer == 0)
2301 return xfered;
2302 if (xfer < 0)
0088c768 2303 return -1;
cf7a04e8
DJ
2304
2305 if (progress)
2306 (*progress) (xfer, baton);
2307
1e3ff5ad
AC
2308 xfered += xfer;
2309 QUIT;
2310 }
2311 return len;
2312}
2313
7f79c47e
DE
2314/* For docs on target_write see target.h. */
2315
cf7a04e8
DJ
2316LONGEST
2317target_write (struct target_ops *ops,
2318 enum target_object object,
2319 const char *annex, const gdb_byte *buf,
2320 ULONGEST offset, LONGEST len)
2321{
2322 return target_write_with_progress (ops, object, annex, buf, offset, len,
2323 NULL, NULL);
2324}
2325
159f81f3
DJ
2326/* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
2327 the size of the transferred data. PADDING additional bytes are
2328 available in *BUF_P. This is a helper function for
2329 target_read_alloc; see the declaration of that function for more
2330 information. */
13547ab6 2331
159f81f3
DJ
2332static LONGEST
2333target_read_alloc_1 (struct target_ops *ops, enum target_object object,
2334 const char *annex, gdb_byte **buf_p, int padding)
13547ab6
DJ
2335{
2336 size_t buf_alloc, buf_pos;
2337 gdb_byte *buf;
2338 LONGEST n;
2339
2340 /* This function does not have a length parameter; it reads the
2341 entire OBJECT). Also, it doesn't support objects fetched partly
2342 from one target and partly from another (in a different stratum,
2343 e.g. a core file and an executable). Both reasons make it
2344 unsuitable for reading memory. */
2345 gdb_assert (object != TARGET_OBJECT_MEMORY);
2346
2347 /* Start by reading up to 4K at a time. The target will throttle
2348 this number down if necessary. */
2349 buf_alloc = 4096;
2350 buf = xmalloc (buf_alloc);
2351 buf_pos = 0;
2352 while (1)
2353 {
2354 n = target_read_partial (ops, object, annex, &buf[buf_pos],
159f81f3 2355 buf_pos, buf_alloc - buf_pos - padding);
13547ab6
DJ
2356 if (n < 0)
2357 {
2358 /* An error occurred. */
2359 xfree (buf);
2360 return -1;
2361 }
2362 else if (n == 0)
2363 {
2364 /* Read all there was. */
2365 if (buf_pos == 0)
2366 xfree (buf);
2367 else
2368 *buf_p = buf;
2369 return buf_pos;
2370 }
2371
2372 buf_pos += n;
2373
2374 /* If the buffer is filling up, expand it. */
2375 if (buf_alloc < buf_pos * 2)
2376 {
2377 buf_alloc *= 2;
2378 buf = xrealloc (buf, buf_alloc);
2379 }
2380
2381 QUIT;
2382 }
2383}
2384
159f81f3
DJ
2385/* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
2386 the size of the transferred data. See the declaration in "target.h"
2387 function for more information about the return value. */
2388
2389LONGEST
2390target_read_alloc (struct target_ops *ops, enum target_object object,
2391 const char *annex, gdb_byte **buf_p)
2392{
2393 return target_read_alloc_1 (ops, object, annex, buf_p, 0);
2394}
2395
2396/* Read OBJECT/ANNEX using OPS. The result is NUL-terminated and
2397 returned as a string, allocated using xmalloc. If an error occurs
2398 or the transfer is unsupported, NULL is returned. Empty objects
2399 are returned as allocated but empty strings. A warning is issued
2400 if the result contains any embedded NUL bytes. */
2401
2402char *
2403target_read_stralloc (struct target_ops *ops, enum target_object object,
2404 const char *annex)
2405{
39086a0e
PA
2406 gdb_byte *buffer;
2407 char *bufstr;
7313baad 2408 LONGEST i, transferred;
159f81f3 2409
39086a0e
PA
2410 transferred = target_read_alloc_1 (ops, object, annex, &buffer, 1);
2411 bufstr = (char *) buffer;
159f81f3
DJ
2412
2413 if (transferred < 0)
2414 return NULL;
2415
2416 if (transferred == 0)
2417 return xstrdup ("");
2418
39086a0e 2419 bufstr[transferred] = 0;
7313baad
UW
2420
2421 /* Check for embedded NUL bytes; but allow trailing NULs. */
39086a0e
PA
2422 for (i = strlen (bufstr); i < transferred; i++)
2423 if (bufstr[i] != 0)
7313baad
UW
2424 {
2425 warning (_("target object %d, annex %s, "
2426 "contained unexpected null characters"),
2427 (int) object, annex ? annex : "(none)");
2428 break;
2429 }
159f81f3 2430
39086a0e 2431 return bufstr;
159f81f3
DJ
2432}
2433
b6591e8b
AC
2434/* Memory transfer methods. */
2435
2436void
1b0ba102 2437get_target_memory (struct target_ops *ops, CORE_ADDR addr, gdb_byte *buf,
b6591e8b
AC
2438 LONGEST len)
2439{
07b82ea5
PA
2440 /* This method is used to read from an alternate, non-current
2441 target. This read must bypass the overlay support (as symbols
2442 don't match this target), and GDB's internal cache (wrong cache
2443 for this target). */
2444 if (target_read (ops, TARGET_OBJECT_RAW_MEMORY, NULL, buf, addr, len)
b6591e8b 2445 != len)
578d3588 2446 memory_error (TARGET_XFER_E_IO, addr);
b6591e8b
AC
2447}
2448
2449ULONGEST
5d502164
MS
2450get_target_memory_unsigned (struct target_ops *ops, CORE_ADDR addr,
2451 int len, enum bfd_endian byte_order)
b6591e8b 2452{
f6519ebc 2453 gdb_byte buf[sizeof (ULONGEST)];
b6591e8b
AC
2454
2455 gdb_assert (len <= sizeof (buf));
2456 get_target_memory (ops, addr, buf, len);
e17a4113 2457 return extract_unsigned_integer (buf, len, byte_order);
b6591e8b
AC
2458}
2459
3db08215
MM
2460/* See target.h. */
2461
2462int
2463forward_target_insert_breakpoint (struct target_ops *ops,
2464 struct gdbarch *gdbarch,
2465 struct bp_target_info *bp_tgt)
2466{
2467 for (; ops != NULL; ops = ops->beneath)
2468 if (ops->to_insert_breakpoint != NULL)
2469 return ops->to_insert_breakpoint (ops, gdbarch, bp_tgt);
2470
2471 return memory_insert_breakpoint (ops, gdbarch, bp_tgt);
2472}
2473
2474/* See target.h. */
2475
d914c394
SS
2476int
2477target_insert_breakpoint (struct gdbarch *gdbarch,
2478 struct bp_target_info *bp_tgt)
2479{
2480 if (!may_insert_breakpoints)
2481 {
2482 warning (_("May not insert breakpoints"));
2483 return 1;
2484 }
2485
3db08215 2486 return forward_target_insert_breakpoint (&current_target, gdbarch, bp_tgt);
d914c394
SS
2487}
2488
3db08215
MM
2489/* See target.h. */
2490
d914c394 2491int
3db08215
MM
2492forward_target_remove_breakpoint (struct target_ops *ops,
2493 struct gdbarch *gdbarch,
2494 struct bp_target_info *bp_tgt)
d914c394
SS
2495{
2496 /* This is kind of a weird case to handle, but the permission might
2497 have been changed after breakpoints were inserted - in which case
2498 we should just take the user literally and assume that any
2499 breakpoints should be left in place. */
2500 if (!may_insert_breakpoints)
2501 {
2502 warning (_("May not remove breakpoints"));
2503 return 1;
2504 }
2505
3db08215
MM
2506 for (; ops != NULL; ops = ops->beneath)
2507 if (ops->to_remove_breakpoint != NULL)
2508 return ops->to_remove_breakpoint (ops, gdbarch, bp_tgt);
2509
2510 return memory_remove_breakpoint (ops, gdbarch, bp_tgt);
2511}
2512
2513/* See target.h. */
2514
2515int
2516target_remove_breakpoint (struct gdbarch *gdbarch,
2517 struct bp_target_info *bp_tgt)
2518{
2519 return forward_target_remove_breakpoint (&current_target, gdbarch, bp_tgt);
d914c394
SS
2520}
2521
c906108c 2522static void
fba45db2 2523target_info (char *args, int from_tty)
c906108c
SS
2524{
2525 struct target_ops *t;
c906108c 2526 int has_all_mem = 0;
c5aa993b 2527
c906108c 2528 if (symfile_objfile != NULL)
4262abfb
JK
2529 printf_unfiltered (_("Symbols from \"%s\".\n"),
2530 objfile_name (symfile_objfile));
c906108c 2531
258b763a 2532 for (t = target_stack; t != NULL; t = t->beneath)
c906108c 2533 {
c35b1492 2534 if (!(*t->to_has_memory) (t))
c906108c
SS
2535 continue;
2536
c5aa993b 2537 if ((int) (t->to_stratum) <= (int) dummy_stratum)
c906108c
SS
2538 continue;
2539 if (has_all_mem)
3e43a32a
MS
2540 printf_unfiltered (_("\tWhile running this, "
2541 "GDB does not access memory from...\n"));
c5aa993b
JM
2542 printf_unfiltered ("%s:\n", t->to_longname);
2543 (t->to_files_info) (t);
c35b1492 2544 has_all_mem = (*t->to_has_all_memory) (t);
c906108c
SS
2545 }
2546}
2547
fd79ecee
DJ
2548/* This function is called before any new inferior is created, e.g.
2549 by running a program, attaching, or connecting to a target.
2550 It cleans up any state from previous invocations which might
2551 change between runs. This is a subset of what target_preopen
2552 resets (things which might change between targets). */
2553
2554void
2555target_pre_inferior (int from_tty)
2556{
c378eb4e 2557 /* Clear out solib state. Otherwise the solib state of the previous
b9db4ced 2558 inferior might have survived and is entirely wrong for the new
c378eb4e 2559 target. This has been observed on GNU/Linux using glibc 2.3. How
b9db4ced
UW
2560 to reproduce:
2561
2562 bash$ ./foo&
2563 [1] 4711
2564 bash$ ./foo&
2565 [1] 4712
2566 bash$ gdb ./foo
2567 [...]
2568 (gdb) attach 4711
2569 (gdb) detach
2570 (gdb) attach 4712
2571 Cannot access memory at address 0xdeadbeef
2572 */
b9db4ced 2573
50c71eaf
PA
2574 /* In some OSs, the shared library list is the same/global/shared
2575 across inferiors. If code is shared between processes, so are
2576 memory regions and features. */
f5656ead 2577 if (!gdbarch_has_global_solist (target_gdbarch ()))
50c71eaf
PA
2578 {
2579 no_shared_libraries (NULL, from_tty);
2580
2581 invalidate_target_mem_regions ();
424163ea 2582
50c71eaf
PA
2583 target_clear_description ();
2584 }
8ffcbaaf
YQ
2585
2586 agent_capability_invalidate ();
fd79ecee
DJ
2587}
2588
b8fa0bfa
PA
2589/* Callback for iterate_over_inferiors. Gets rid of the given
2590 inferior. */
2591
2592static int
2593dispose_inferior (struct inferior *inf, void *args)
2594{
2595 struct thread_info *thread;
2596
2597 thread = any_thread_of_process (inf->pid);
2598 if (thread)
2599 {
2600 switch_to_thread (thread->ptid);
2601
2602 /* Core inferiors actually should be detached, not killed. */
2603 if (target_has_execution)
2604 target_kill ();
2605 else
2606 target_detach (NULL, 0);
2607 }
2608
2609 return 0;
2610}
2611
c906108c
SS
2612/* This is to be called by the open routine before it does
2613 anything. */
2614
2615void
fba45db2 2616target_preopen (int from_tty)
c906108c 2617{
c5aa993b 2618 dont_repeat ();
c906108c 2619
b8fa0bfa 2620 if (have_inferiors ())
c5aa993b 2621 {
adf40b2e 2622 if (!from_tty
b8fa0bfa
PA
2623 || !have_live_inferiors ()
2624 || query (_("A program is being debugged already. Kill it? ")))
2625 iterate_over_inferiors (dispose_inferior, NULL);
c906108c 2626 else
8a3fe4f8 2627 error (_("Program not killed."));
c906108c
SS
2628 }
2629
2630 /* Calling target_kill may remove the target from the stack. But if
2631 it doesn't (which seems like a win for UDI), remove it now. */
87ab71f0
PA
2632 /* Leave the exec target, though. The user may be switching from a
2633 live process to a core of the same program. */
460014f5 2634 pop_all_targets_above (file_stratum);
fd79ecee
DJ
2635
2636 target_pre_inferior (from_tty);
c906108c
SS
2637}
2638
2639/* Detach a target after doing deferred register stores. */
2640
2641void
52554a0e 2642target_detach (const char *args, int from_tty)
c906108c 2643{
136d6dae
VP
2644 struct target_ops* t;
2645
f5656ead 2646 if (gdbarch_has_global_breakpoints (target_gdbarch ()))
50c71eaf
PA
2647 /* Don't remove global breakpoints here. They're removed on
2648 disconnection from the target. */
2649 ;
2650 else
2651 /* If we're in breakpoints-always-inserted mode, have to remove
2652 them before detaching. */
dfd4cc63 2653 remove_breakpoints_pid (ptid_get_pid (inferior_ptid));
74960c60 2654
24291992
PA
2655 prepare_for_detach ();
2656
136d6dae
VP
2657 for (t = current_target.beneath; t != NULL; t = t->beneath)
2658 {
2659 if (t->to_detach != NULL)
2660 {
2661 t->to_detach (t, args, from_tty);
947b8855
PA
2662 if (targetdebug)
2663 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n",
2664 args, from_tty);
136d6dae
VP
2665 return;
2666 }
2667 }
2668
9b20d036 2669 internal_error (__FILE__, __LINE__, _("could not find a target to detach"));
c906108c
SS
2670}
2671
6ad8ae5c
DJ
2672void
2673target_disconnect (char *args, int from_tty)
2674{
597320e7
DJ
2675 struct target_ops *t;
2676
50c71eaf
PA
2677 /* If we're in breakpoints-always-inserted mode or if breakpoints
2678 are global across processes, we have to remove them before
2679 disconnecting. */
74960c60
VP
2680 remove_breakpoints ();
2681
597320e7
DJ
2682 for (t = current_target.beneath; t != NULL; t = t->beneath)
2683 if (t->to_disconnect != NULL)
2684 {
2685 if (targetdebug)
2686 fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n",
2687 args, from_tty);
2688 t->to_disconnect (t, args, from_tty);
2689 return;
2690 }
2691
2692 tcomplain ();
6ad8ae5c
DJ
2693}
2694
117de6a9 2695ptid_t
47608cb1 2696target_wait (ptid_t ptid, struct target_waitstatus *status, int options)
117de6a9
PA
2697{
2698 struct target_ops *t;
2699
2700 for (t = current_target.beneath; t != NULL; t = t->beneath)
2701 {
2702 if (t->to_wait != NULL)
2703 {
47608cb1 2704 ptid_t retval = (*t->to_wait) (t, ptid, status, options);
117de6a9
PA
2705
2706 if (targetdebug)
2707 {
2708 char *status_string;
09826ec5 2709 char *options_string;
117de6a9
PA
2710
2711 status_string = target_waitstatus_to_string (status);
09826ec5 2712 options_string = target_options_to_string (options);
117de6a9 2713 fprintf_unfiltered (gdb_stdlog,
09826ec5
PA
2714 "target_wait (%d, status, options={%s})"
2715 " = %d, %s\n",
dfd4cc63
LM
2716 ptid_get_pid (ptid), options_string,
2717 ptid_get_pid (retval), status_string);
117de6a9 2718 xfree (status_string);
09826ec5 2719 xfree (options_string);
117de6a9
PA
2720 }
2721
2722 return retval;
2723 }
2724 }
2725
2726 noprocess ();
2727}
2728
2729char *
2730target_pid_to_str (ptid_t ptid)
2731{
2732 struct target_ops *t;
2733
2734 for (t = current_target.beneath; t != NULL; t = t->beneath)
2735 {
2736 if (t->to_pid_to_str != NULL)
2737 return (*t->to_pid_to_str) (t, ptid);
2738 }
2739
2740 return normal_pid_to_str (ptid);
2741}
2742
4694da01
TT
2743char *
2744target_thread_name (struct thread_info *info)
2745{
2746 struct target_ops *t;
2747
2748 for (t = current_target.beneath; t != NULL; t = t->beneath)
2749 {
2750 if (t->to_thread_name != NULL)
2751 return (*t->to_thread_name) (info);
2752 }
2753
2754 return NULL;
2755}
2756
e1ac3328 2757void
2ea28649 2758target_resume (ptid_t ptid, int step, enum gdb_signal signal)
e1ac3328 2759{
28439f5e
PA
2760 struct target_ops *t;
2761
4e5d721f 2762 target_dcache_invalidate ();
28439f5e
PA
2763
2764 for (t = current_target.beneath; t != NULL; t = t->beneath)
2765 {
2766 if (t->to_resume != NULL)
2767 {
2768 t->to_resume (t, ptid, step, signal);
2769 if (targetdebug)
2770 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n",
dfd4cc63 2771 ptid_get_pid (ptid),
28439f5e 2772 step ? "step" : "continue",
2ea28649 2773 gdb_signal_to_name (signal));
28439f5e 2774
e66408ed 2775 registers_changed_ptid (ptid);
28439f5e
PA
2776 set_executing (ptid, 1);
2777 set_running (ptid, 1);
edb3359d 2778 clear_inline_frame_state (ptid);
28439f5e
PA
2779 return;
2780 }
2781 }
2782
2783 noprocess ();
e1ac3328 2784}
2455069d
UW
2785
2786void
2787target_pass_signals (int numsigs, unsigned char *pass_signals)
2788{
2789 struct target_ops *t;
2790
2791 for (t = current_target.beneath; t != NULL; t = t->beneath)
2792 {
2793 if (t->to_pass_signals != NULL)
2794 {
2795 if (targetdebug)
2796 {
2797 int i;
2798
2799 fprintf_unfiltered (gdb_stdlog, "target_pass_signals (%d, {",
2800 numsigs);
2801
2802 for (i = 0; i < numsigs; i++)
2803 if (pass_signals[i])
2804 fprintf_unfiltered (gdb_stdlog, " %s",
2ea28649 2805 gdb_signal_to_name (i));
2455069d
UW
2806
2807 fprintf_unfiltered (gdb_stdlog, " })\n");
2808 }
2809
2810 (*t->to_pass_signals) (numsigs, pass_signals);
2811 return;
2812 }
2813 }
2814}
2815
9b224c5e
PA
2816void
2817target_program_signals (int numsigs, unsigned char *program_signals)
2818{
2819 struct target_ops *t;
2820
2821 for (t = current_target.beneath; t != NULL; t = t->beneath)
2822 {
2823 if (t->to_program_signals != NULL)
2824 {
2825 if (targetdebug)
2826 {
2827 int i;
2828
2829 fprintf_unfiltered (gdb_stdlog, "target_program_signals (%d, {",
2830 numsigs);
2831
2832 for (i = 0; i < numsigs; i++)
2833 if (program_signals[i])
2834 fprintf_unfiltered (gdb_stdlog, " %s",
2ea28649 2835 gdb_signal_to_name (i));
9b224c5e
PA
2836
2837 fprintf_unfiltered (gdb_stdlog, " })\n");
2838 }
2839
2840 (*t->to_program_signals) (numsigs, program_signals);
2841 return;
2842 }
2843 }
2844}
2845
ee057212
DJ
2846/* Look through the list of possible targets for a target that can
2847 follow forks. */
2848
2849int
07107ca6 2850target_follow_fork (int follow_child, int detach_fork)
ee057212
DJ
2851{
2852 struct target_ops *t;
2853
2854 for (t = current_target.beneath; t != NULL; t = t->beneath)
2855 {
2856 if (t->to_follow_fork != NULL)
2857 {
07107ca6 2858 int retval = t->to_follow_fork (t, follow_child, detach_fork);
5d502164 2859
ee057212 2860 if (targetdebug)
07107ca6
LM
2861 fprintf_unfiltered (gdb_stdlog,
2862 "target_follow_fork (%d, %d) = %d\n",
2863 follow_child, detach_fork, retval);
ee057212
DJ
2864 return retval;
2865 }
2866 }
2867
2868 /* Some target returned a fork event, but did not know how to follow it. */
2869 internal_error (__FILE__, __LINE__,
9b20d036 2870 _("could not find a target to follow fork"));
ee057212
DJ
2871}
2872
136d6dae
VP
2873void
2874target_mourn_inferior (void)
2875{
2876 struct target_ops *t;
5d502164 2877
136d6dae
VP
2878 for (t = current_target.beneath; t != NULL; t = t->beneath)
2879 {
2880 if (t->to_mourn_inferior != NULL)
2881 {
2882 t->to_mourn_inferior (t);
947b8855
PA
2883 if (targetdebug)
2884 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
efbd6e75
JB
2885
2886 /* We no longer need to keep handles on any of the object files.
2887 Make sure to release them to avoid unnecessarily locking any
2888 of them while we're not actually debugging. */
2889 bfd_cache_close_all ();
2890
136d6dae
VP
2891 return;
2892 }
2893 }
2894
2895 internal_error (__FILE__, __LINE__,
9b20d036 2896 _("could not find a target to follow mourn inferior"));
136d6dae
VP
2897}
2898
424163ea
DJ
2899/* Look for a target which can describe architectural features, starting
2900 from TARGET. If we find one, return its description. */
2901
2902const struct target_desc *
2903target_read_description (struct target_ops *target)
2904{
2905 struct target_ops *t;
2906
2907 for (t = target; t != NULL; t = t->beneath)
2908 if (t->to_read_description != NULL)
2909 {
2910 const struct target_desc *tdesc;
2911
2912 tdesc = t->to_read_description (t);
2913 if (tdesc)
2914 return tdesc;
2915 }
2916
2917 return NULL;
2918}
2919
08388c79
DE
2920/* The default implementation of to_search_memory.
2921 This implements a basic search of memory, reading target memory and
2922 performing the search here (as opposed to performing the search in on the
2923 target side with, for example, gdbserver). */
2924
2925int
2926simple_search_memory (struct target_ops *ops,
2927 CORE_ADDR start_addr, ULONGEST search_space_len,
2928 const gdb_byte *pattern, ULONGEST pattern_len,
2929 CORE_ADDR *found_addrp)
2930{
2931 /* NOTE: also defined in find.c testcase. */
2932#define SEARCH_CHUNK_SIZE 16000
2933 const unsigned chunk_size = SEARCH_CHUNK_SIZE;
2934 /* Buffer to hold memory contents for searching. */
2935 gdb_byte *search_buf;
2936 unsigned search_buf_size;
2937 struct cleanup *old_cleanups;
2938
2939 search_buf_size = chunk_size + pattern_len - 1;
2940
2941 /* No point in trying to allocate a buffer larger than the search space. */
2942 if (search_space_len < search_buf_size)
2943 search_buf_size = search_space_len;
2944
2945 search_buf = malloc (search_buf_size);
2946 if (search_buf == NULL)
5e1471f5 2947 error (_("Unable to allocate memory to perform the search."));
08388c79
DE
2948 old_cleanups = make_cleanup (free_current_contents, &search_buf);
2949
2950 /* Prime the search buffer. */
2951
2952 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2953 search_buf, start_addr, search_buf_size) != search_buf_size)
2954 {
b3dc46ff
AB
2955 warning (_("Unable to access %s bytes of target "
2956 "memory at %s, halting search."),
2957 pulongest (search_buf_size), hex_string (start_addr));
08388c79
DE
2958 do_cleanups (old_cleanups);
2959 return -1;
2960 }
2961
2962 /* Perform the search.
2963
2964 The loop is kept simple by allocating [N + pattern-length - 1] bytes.
2965 When we've scanned N bytes we copy the trailing bytes to the start and
2966 read in another N bytes. */
2967
2968 while (search_space_len >= pattern_len)
2969 {
2970 gdb_byte *found_ptr;
2971 unsigned nr_search_bytes = min (search_space_len, search_buf_size);
2972
2973 found_ptr = memmem (search_buf, nr_search_bytes,
2974 pattern, pattern_len);
2975
2976 if (found_ptr != NULL)
2977 {
2978 CORE_ADDR found_addr = start_addr + (found_ptr - search_buf);
5d502164 2979
08388c79
DE
2980 *found_addrp = found_addr;
2981 do_cleanups (old_cleanups);
2982 return 1;
2983 }
2984
2985 /* Not found in this chunk, skip to next chunk. */
2986
2987 /* Don't let search_space_len wrap here, it's unsigned. */
2988 if (search_space_len >= chunk_size)
2989 search_space_len -= chunk_size;
2990 else
2991 search_space_len = 0;
2992
2993 if (search_space_len >= pattern_len)
2994 {
2995 unsigned keep_len = search_buf_size - chunk_size;
8a35fb51 2996 CORE_ADDR read_addr = start_addr + chunk_size + keep_len;
08388c79
DE
2997 int nr_to_read;
2998
2999 /* Copy the trailing part of the previous iteration to the front
3000 of the buffer for the next iteration. */
3001 gdb_assert (keep_len == pattern_len - 1);
3002 memcpy (search_buf, search_buf + chunk_size, keep_len);
3003
3004 nr_to_read = min (search_space_len - keep_len, chunk_size);
3005
3006 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
3007 search_buf + keep_len, read_addr,
3008 nr_to_read) != nr_to_read)
3009 {
b3dc46ff 3010 warning (_("Unable to access %s bytes of target "
9b20d036 3011 "memory at %s, halting search."),
b3dc46ff 3012 plongest (nr_to_read),
08388c79
DE
3013 hex_string (read_addr));
3014 do_cleanups (old_cleanups);
3015 return -1;
3016 }
3017
3018 start_addr += chunk_size;
3019 }
3020 }
3021
3022 /* Not found. */
3023
3024 do_cleanups (old_cleanups);
3025 return 0;
3026}
3027
3028/* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
3029 sequence of bytes in PATTERN with length PATTERN_LEN.
3030
3031 The result is 1 if found, 0 if not found, and -1 if there was an error
3032 requiring halting of the search (e.g. memory read error).
3033 If the pattern is found the address is recorded in FOUND_ADDRP. */
3034
3035int
3036target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
3037 const gdb_byte *pattern, ULONGEST pattern_len,
3038 CORE_ADDR *found_addrp)
3039{
3040 struct target_ops *t;
3041 int found;
3042
3043 /* We don't use INHERIT to set current_target.to_search_memory,
3044 so we have to scan the target stack and handle targetdebug
3045 ourselves. */
3046
3047 if (targetdebug)
3048 fprintf_unfiltered (gdb_stdlog, "target_search_memory (%s, ...)\n",
3049 hex_string (start_addr));
3050
3051 for (t = current_target.beneath; t != NULL; t = t->beneath)
3052 if (t->to_search_memory != NULL)
3053 break;
3054
3055 if (t != NULL)
3056 {
3057 found = t->to_search_memory (t, start_addr, search_space_len,
3058 pattern, pattern_len, found_addrp);
3059 }
3060 else
3061 {
3062 /* If a special version of to_search_memory isn't available, use the
3063 simple version. */
c35b1492 3064 found = simple_search_memory (current_target.beneath,
08388c79
DE
3065 start_addr, search_space_len,
3066 pattern, pattern_len, found_addrp);
3067 }
3068
3069 if (targetdebug)
3070 fprintf_unfiltered (gdb_stdlog, " = %d\n", found);
3071
3072 return found;
3073}
3074
8edfe269
DJ
3075/* Look through the currently pushed targets. If none of them will
3076 be able to restart the currently running process, issue an error
3077 message. */
3078
3079void
3080target_require_runnable (void)
3081{
3082 struct target_ops *t;
3083
3084 for (t = target_stack; t != NULL; t = t->beneath)
3085 {
3086 /* If this target knows how to create a new program, then
3087 assume we will still be able to after killing the current
3088 one. Either killing and mourning will not pop T, or else
3089 find_default_run_target will find it again. */
3090 if (t->to_create_inferior != NULL)
3091 return;
3092
3093 /* Do not worry about thread_stratum targets that can not
3094 create inferiors. Assume they will be pushed again if
3095 necessary, and continue to the process_stratum. */
85e747d2
UW
3096 if (t->to_stratum == thread_stratum
3097 || t->to_stratum == arch_stratum)
8edfe269
DJ
3098 continue;
3099
3e43a32a
MS
3100 error (_("The \"%s\" target does not support \"run\". "
3101 "Try \"help target\" or \"continue\"."),
8edfe269
DJ
3102 t->to_shortname);
3103 }
3104
3105 /* This function is only called if the target is running. In that
3106 case there should have been a process_stratum target and it
c378eb4e 3107 should either know how to create inferiors, or not... */
9b20d036 3108 internal_error (__FILE__, __LINE__, _("No targets found"));
8edfe269
DJ
3109}
3110
c906108c
SS
3111/* Look through the list of possible targets for a target that can
3112 execute a run or attach command without any other data. This is
3113 used to locate the default process stratum.
3114
5f667f2d
PA
3115 If DO_MESG is not NULL, the result is always valid (error() is
3116 called for errors); else, return NULL on error. */
c906108c
SS
3117
3118static struct target_ops *
fba45db2 3119find_default_run_target (char *do_mesg)
c906108c
SS
3120{
3121 struct target_ops **t;
3122 struct target_ops *runable = NULL;
3123 int count;
3124
3125 count = 0;
3126
3127 for (t = target_structs; t < target_structs + target_struct_size;
3128 ++t)
3129 {
c5aa993b 3130 if ((*t)->to_can_run && target_can_run (*t))
c906108c
SS
3131 {
3132 runable = *t;
3133 ++count;
3134 }
3135 }
3136
3137 if (count != 1)
5f667f2d
PA
3138 {
3139 if (do_mesg)
3140 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
3141 else
3142 return NULL;
3143 }
c906108c
SS
3144
3145 return runable;
3146}
3147
3148void
136d6dae 3149find_default_attach (struct target_ops *ops, char *args, int from_tty)
c906108c
SS
3150{
3151 struct target_ops *t;
3152
c5aa993b 3153 t = find_default_run_target ("attach");
136d6dae 3154 (t->to_attach) (t, args, from_tty);
c906108c
SS
3155 return;
3156}
3157
c906108c 3158void
136d6dae
VP
3159find_default_create_inferior (struct target_ops *ops,
3160 char *exec_file, char *allargs, char **env,
c27cda74 3161 int from_tty)
c906108c
SS
3162{
3163 struct target_ops *t;
3164
c5aa993b 3165 t = find_default_run_target ("run");
136d6dae 3166 (t->to_create_inferior) (t, exec_file, allargs, env, from_tty);
c906108c
SS
3167 return;
3168}
3169
2c0b251b 3170static int
b84876c2
PA
3171find_default_can_async_p (void)
3172{
3173 struct target_ops *t;
3174
5f667f2d
PA
3175 /* This may be called before the target is pushed on the stack;
3176 look for the default process stratum. If there's none, gdb isn't
3177 configured with a native debugger, and target remote isn't
3178 connected yet. */
3179 t = find_default_run_target (NULL);
3180 if (t && t->to_can_async_p)
b84876c2
PA
3181 return (t->to_can_async_p) ();
3182 return 0;
3183}
3184
2c0b251b 3185static int
b84876c2
PA
3186find_default_is_async_p (void)
3187{
3188 struct target_ops *t;
3189
5f667f2d
PA
3190 /* This may be called before the target is pushed on the stack;
3191 look for the default process stratum. If there's none, gdb isn't
3192 configured with a native debugger, and target remote isn't
3193 connected yet. */
3194 t = find_default_run_target (NULL);
3195 if (t && t->to_is_async_p)
b84876c2
PA
3196 return (t->to_is_async_p) ();
3197 return 0;
3198}
3199
2c0b251b 3200static int
9908b566
VP
3201find_default_supports_non_stop (void)
3202{
3203 struct target_ops *t;
3204
3205 t = find_default_run_target (NULL);
3206 if (t && t->to_supports_non_stop)
3207 return (t->to_supports_non_stop) ();
3208 return 0;
3209}
3210
3211int
2c0b251b 3212target_supports_non_stop (void)
9908b566
VP
3213{
3214 struct target_ops *t;
5d502164 3215
9908b566
VP
3216 for (t = &current_target; t != NULL; t = t->beneath)
3217 if (t->to_supports_non_stop)
3218 return t->to_supports_non_stop ();
3219
3220 return 0;
3221}
3222
145b16a9
UW
3223/* Implement the "info proc" command. */
3224
451b7c33 3225int
145b16a9
UW
3226target_info_proc (char *args, enum info_proc_what what)
3227{
3228 struct target_ops *t;
3229
3230 /* If we're already connected to something that can get us OS
3231 related data, use it. Otherwise, try using the native
3232 target. */
3233 if (current_target.to_stratum >= process_stratum)
3234 t = current_target.beneath;
3235 else
3236 t = find_default_run_target (NULL);
3237
3238 for (; t != NULL; t = t->beneath)
3239 {
3240 if (t->to_info_proc != NULL)
3241 {
3242 t->to_info_proc (t, args, what);
3243
3244 if (targetdebug)
3245 fprintf_unfiltered (gdb_stdlog,
3246 "target_info_proc (\"%s\", %d)\n", args, what);
3247
451b7c33 3248 return 1;
145b16a9
UW
3249 }
3250 }
3251
451b7c33 3252 return 0;
145b16a9
UW
3253}
3254
03583c20
UW
3255static int
3256find_default_supports_disable_randomization (void)
3257{
3258 struct target_ops *t;
3259
3260 t = find_default_run_target (NULL);
3261 if (t && t->to_supports_disable_randomization)
3262 return (t->to_supports_disable_randomization) ();
3263 return 0;
3264}
3265
3266int
3267target_supports_disable_randomization (void)
3268{
3269 struct target_ops *t;
3270
3271 for (t = &current_target; t != NULL; t = t->beneath)
3272 if (t->to_supports_disable_randomization)
3273 return t->to_supports_disable_randomization ();
3274
3275 return 0;
3276}
9908b566 3277
07e059b5
VP
3278char *
3279target_get_osdata (const char *type)
3280{
07e059b5
VP
3281 struct target_ops *t;
3282
739ef7fb
PA
3283 /* If we're already connected to something that can get us OS
3284 related data, use it. Otherwise, try using the native
3285 target. */
3286 if (current_target.to_stratum >= process_stratum)
6d097e65 3287 t = current_target.beneath;
739ef7fb
PA
3288 else
3289 t = find_default_run_target ("get OS data");
07e059b5
VP
3290
3291 if (!t)
3292 return NULL;
3293
6d097e65 3294 return target_read_stralloc (t, TARGET_OBJECT_OSDATA, type);
07e059b5
VP
3295}
3296
6c95b8df
PA
3297/* Determine the current address space of thread PTID. */
3298
3299struct address_space *
3300target_thread_address_space (ptid_t ptid)
3301{
c0694254 3302 struct address_space *aspace;
6c95b8df 3303 struct inferior *inf;
c0694254
PA
3304 struct target_ops *t;
3305
3306 for (t = current_target.beneath; t != NULL; t = t->beneath)
3307 {
3308 if (t->to_thread_address_space != NULL)
3309 {
3310 aspace = t->to_thread_address_space (t, ptid);
3311 gdb_assert (aspace);
6c95b8df 3312
c0694254
PA
3313 if (targetdebug)
3314 fprintf_unfiltered (gdb_stdlog,
3315 "target_thread_address_space (%s) = %d\n",
3316 target_pid_to_str (ptid),
3317 address_space_num (aspace));
3318 return aspace;
3319 }
3320 }
6c95b8df
PA
3321
3322 /* Fall-back to the "main" address space of the inferior. */
3323 inf = find_inferior_pid (ptid_get_pid (ptid));
3324
3325 if (inf == NULL || inf->aspace == NULL)
3e43a32a 3326 internal_error (__FILE__, __LINE__,
9b20d036
MS
3327 _("Can't determine the current "
3328 "address space of thread %s\n"),
6c95b8df
PA
3329 target_pid_to_str (ptid));
3330
3331 return inf->aspace;
3332}
3333
7313baad
UW
3334
3335/* Target file operations. */
3336
3337static struct target_ops *
3338default_fileio_target (void)
3339{
3340 /* If we're already connected to something that can perform
3341 file I/O, use it. Otherwise, try using the native target. */
3342 if (current_target.to_stratum >= process_stratum)
3343 return current_target.beneath;
3344 else
3345 return find_default_run_target ("file I/O");
3346}
3347
3348/* Open FILENAME on the target, using FLAGS and MODE. Return a
3349 target file descriptor, or -1 if an error occurs (and set
3350 *TARGET_ERRNO). */
3351int
3352target_fileio_open (const char *filename, int flags, int mode,
3353 int *target_errno)
3354{
3355 struct target_ops *t;
3356
3357 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3358 {
3359 if (t->to_fileio_open != NULL)
3360 {
3361 int fd = t->to_fileio_open (filename, flags, mode, target_errno);
3362
3363 if (targetdebug)
3364 fprintf_unfiltered (gdb_stdlog,
3365 "target_fileio_open (%s,0x%x,0%o) = %d (%d)\n",
3366 filename, flags, mode,
3367 fd, fd != -1 ? 0 : *target_errno);
3368 return fd;
3369 }
3370 }
3371
3372 *target_errno = FILEIO_ENOSYS;
3373 return -1;
3374}
3375
3376/* Write up to LEN bytes from WRITE_BUF to FD on the target.
3377 Return the number of bytes written, or -1 if an error occurs
3378 (and set *TARGET_ERRNO). */
3379int
3380target_fileio_pwrite (int fd, const gdb_byte *write_buf, int len,
3381 ULONGEST offset, int *target_errno)
3382{
3383 struct target_ops *t;
3384
3385 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3386 {
3387 if (t->to_fileio_pwrite != NULL)
3388 {
3389 int ret = t->to_fileio_pwrite (fd, write_buf, len, offset,
3390 target_errno);
3391
3392 if (targetdebug)
3393 fprintf_unfiltered (gdb_stdlog,
a71b5a38 3394 "target_fileio_pwrite (%d,...,%d,%s) "
7313baad 3395 "= %d (%d)\n",
a71b5a38 3396 fd, len, pulongest (offset),
7313baad
UW
3397 ret, ret != -1 ? 0 : *target_errno);
3398 return ret;
3399 }
3400 }
3401
3402 *target_errno = FILEIO_ENOSYS;
3403 return -1;
3404}
3405
3406/* Read up to LEN bytes FD on the target into READ_BUF.
3407 Return the number of bytes read, or -1 if an error occurs
3408 (and set *TARGET_ERRNO). */
3409int
3410target_fileio_pread (int fd, gdb_byte *read_buf, int len,
3411 ULONGEST offset, int *target_errno)
3412{
3413 struct target_ops *t;
3414
3415 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3416 {
3417 if (t->to_fileio_pread != NULL)
3418 {
3419 int ret = t->to_fileio_pread (fd, read_buf, len, offset,
3420 target_errno);
3421
3422 if (targetdebug)
3423 fprintf_unfiltered (gdb_stdlog,
a71b5a38 3424 "target_fileio_pread (%d,...,%d,%s) "
7313baad 3425 "= %d (%d)\n",
a71b5a38 3426 fd, len, pulongest (offset),
7313baad
UW
3427 ret, ret != -1 ? 0 : *target_errno);
3428 return ret;
3429 }
3430 }
3431
3432 *target_errno = FILEIO_ENOSYS;
3433 return -1;
3434}
3435
3436/* Close FD on the target. Return 0, or -1 if an error occurs
3437 (and set *TARGET_ERRNO). */
3438int
3439target_fileio_close (int fd, int *target_errno)
3440{
3441 struct target_ops *t;
3442
3443 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3444 {
3445 if (t->to_fileio_close != NULL)
3446 {
3447 int ret = t->to_fileio_close (fd, target_errno);
3448
3449 if (targetdebug)
3450 fprintf_unfiltered (gdb_stdlog,
3451 "target_fileio_close (%d) = %d (%d)\n",
3452 fd, ret, ret != -1 ? 0 : *target_errno);
3453 return ret;
3454 }
3455 }
3456
3457 *target_errno = FILEIO_ENOSYS;
3458 return -1;
3459}
3460
3461/* Unlink FILENAME on the target. Return 0, or -1 if an error
3462 occurs (and set *TARGET_ERRNO). */
3463int
3464target_fileio_unlink (const char *filename, int *target_errno)
3465{
3466 struct target_ops *t;
3467
3468 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3469 {
3470 if (t->to_fileio_unlink != NULL)
3471 {
3472 int ret = t->to_fileio_unlink (filename, target_errno);
3473
3474 if (targetdebug)
3475 fprintf_unfiltered (gdb_stdlog,
3476 "target_fileio_unlink (%s) = %d (%d)\n",
3477 filename, ret, ret != -1 ? 0 : *target_errno);
3478 return ret;
3479 }
3480 }
3481
3482 *target_errno = FILEIO_ENOSYS;
3483 return -1;
3484}
3485
b9e7b9c3
UW
3486/* Read value of symbolic link FILENAME on the target. Return a
3487 null-terminated string allocated via xmalloc, or NULL if an error
3488 occurs (and set *TARGET_ERRNO). */
3489char *
3490target_fileio_readlink (const char *filename, int *target_errno)
3491{
3492 struct target_ops *t;
3493
3494 for (t = default_fileio_target (); t != NULL; t = t->beneath)
3495 {
3496 if (t->to_fileio_readlink != NULL)
3497 {
3498 char *ret = t->to_fileio_readlink (filename, target_errno);
3499
3500 if (targetdebug)
3501 fprintf_unfiltered (gdb_stdlog,
3502 "target_fileio_readlink (%s) = %s (%d)\n",
3503 filename, ret? ret : "(nil)",
3504 ret? 0 : *target_errno);
3505 return ret;
3506 }
3507 }
3508
3509 *target_errno = FILEIO_ENOSYS;
3510 return NULL;
3511}
3512
7313baad
UW
3513static void
3514target_fileio_close_cleanup (void *opaque)
3515{
3516 int fd = *(int *) opaque;
3517 int target_errno;
3518
3519 target_fileio_close (fd, &target_errno);
3520}
3521
3522/* Read target file FILENAME. Store the result in *BUF_P and
3523 return the size of the transferred data. PADDING additional bytes are
3524 available in *BUF_P. This is a helper function for
3525 target_fileio_read_alloc; see the declaration of that function for more
3526 information. */
3527
3528static LONGEST
3529target_fileio_read_alloc_1 (const char *filename,
3530 gdb_byte **buf_p, int padding)
3531{
3532 struct cleanup *close_cleanup;
3533 size_t buf_alloc, buf_pos;
3534 gdb_byte *buf;
3535 LONGEST n;
3536 int fd;
3537 int target_errno;
3538
3539 fd = target_fileio_open (filename, FILEIO_O_RDONLY, 0700, &target_errno);
3540 if (fd == -1)
3541 return -1;
3542
3543 close_cleanup = make_cleanup (target_fileio_close_cleanup, &fd);
3544
3545 /* Start by reading up to 4K at a time. The target will throttle
3546 this number down if necessary. */
3547 buf_alloc = 4096;
3548 buf = xmalloc (buf_alloc);
3549 buf_pos = 0;
3550 while (1)
3551 {
3552 n = target_fileio_pread (fd, &buf[buf_pos],
3553 buf_alloc - buf_pos - padding, buf_pos,
3554 &target_errno);
3555 if (n < 0)
3556 {
3557 /* An error occurred. */
3558 do_cleanups (close_cleanup);
3559 xfree (buf);
3560 return -1;
3561 }
3562 else if (n == 0)
3563 {
3564 /* Read all there was. */
3565 do_cleanups (close_cleanup);
3566 if (buf_pos == 0)
3567 xfree (buf);
3568 else
3569 *buf_p = buf;
3570 return buf_pos;
3571 }
3572
3573 buf_pos += n;
3574
3575 /* If the buffer is filling up, expand it. */
3576 if (buf_alloc < buf_pos * 2)
3577 {
3578 buf_alloc *= 2;
3579 buf = xrealloc (buf, buf_alloc);
3580 }
3581
3582 QUIT;
3583 }
3584}
3585
3586/* Read target file FILENAME. Store the result in *BUF_P and return
3587 the size of the transferred data. See the declaration in "target.h"
3588 function for more information about the return value. */
3589
3590LONGEST
3591target_fileio_read_alloc (const char *filename, gdb_byte **buf_p)
3592{
3593 return target_fileio_read_alloc_1 (filename, buf_p, 0);
3594}
3595
3596/* Read target file FILENAME. The result is NUL-terminated and
3597 returned as a string, allocated using xmalloc. If an error occurs
3598 or the transfer is unsupported, NULL is returned. Empty objects
3599 are returned as allocated but empty strings. A warning is issued
3600 if the result contains any embedded NUL bytes. */
3601
3602char *
3603target_fileio_read_stralloc (const char *filename)
3604{
39086a0e
PA
3605 gdb_byte *buffer;
3606 char *bufstr;
7313baad
UW
3607 LONGEST i, transferred;
3608
39086a0e
PA
3609 transferred = target_fileio_read_alloc_1 (filename, &buffer, 1);
3610 bufstr = (char *) buffer;
7313baad
UW
3611
3612 if (transferred < 0)
3613 return NULL;
3614
3615 if (transferred == 0)
3616 return xstrdup ("");
3617
39086a0e 3618 bufstr[transferred] = 0;
7313baad
UW
3619
3620 /* Check for embedded NUL bytes; but allow trailing NULs. */
39086a0e
PA
3621 for (i = strlen (bufstr); i < transferred; i++)
3622 if (bufstr[i] != 0)
7313baad
UW
3623 {
3624 warning (_("target file %s "
3625 "contained unexpected null characters"),
3626 filename);
3627 break;
3628 }
3629
39086a0e 3630 return bufstr;
7313baad
UW
3631}
3632
3633
e0d24f8d
WZ
3634static int
3635default_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
3636{
f5656ead 3637 return (len <= gdbarch_ptr_bit (target_gdbarch ()) / TARGET_CHAR_BIT);
ccaa32c7
GS
3638}
3639
5009afc5
AS
3640static int
3641default_watchpoint_addr_within_range (struct target_ops *target,
3642 CORE_ADDR addr,
3643 CORE_ADDR start, int length)
3644{
3645 return addr >= start && addr < start + length;
3646}
3647
c2250ad1
UW
3648static struct gdbarch *
3649default_thread_architecture (struct target_ops *ops, ptid_t ptid)
3650{
f5656ead 3651 return target_gdbarch ();
c2250ad1
UW
3652}
3653
c906108c 3654static int
fba45db2 3655return_zero (void)
c906108c
SS
3656{
3657 return 0;
3658}
3659
3660static int
fba45db2 3661return_one (void)
c906108c
SS
3662{
3663 return 1;
3664}
3665
ccaa32c7
GS
3666static int
3667return_minus_one (void)
3668{
3669 return -1;
3670}
3671
1b67eb02
AS
3672static void *
3673return_null (void)
3674{
3675 return 0;
3676}
3677
ed9a39eb
JM
3678/*
3679 * Find the next target down the stack from the specified target.
3680 */
3681
3682struct target_ops *
fba45db2 3683find_target_beneath (struct target_ops *t)
ed9a39eb 3684{
258b763a 3685 return t->beneath;
ed9a39eb
JM
3686}
3687
c906108c
SS
3688\f
3689/* The inferior process has died. Long live the inferior! */
3690
3691void
fba45db2 3692generic_mourn_inferior (void)
c906108c 3693{
7f9f62ba 3694 ptid_t ptid;
c906108c 3695
7f9f62ba 3696 ptid = inferior_ptid;
39f77062 3697 inferior_ptid = null_ptid;
7f9f62ba 3698
f59f708a
PA
3699 /* Mark breakpoints uninserted in case something tries to delete a
3700 breakpoint while we delete the inferior's threads (which would
3701 fail, since the inferior is long gone). */
3702 mark_breakpoints_out ();
3703
7f9f62ba
PA
3704 if (!ptid_equal (ptid, null_ptid))
3705 {
3706 int pid = ptid_get_pid (ptid);
6c95b8df 3707 exit_inferior (pid);
7f9f62ba
PA
3708 }
3709
f59f708a
PA
3710 /* Note this wipes step-resume breakpoints, so needs to be done
3711 after exit_inferior, which ends up referencing the step-resume
3712 breakpoints through clear_thread_inferior_resources. */
c906108c 3713 breakpoint_init_inferior (inf_exited);
f59f708a 3714
c906108c
SS
3715 registers_changed ();
3716
c906108c
SS
3717 reopen_exec_file ();
3718 reinit_frame_cache ();
3719
9a4105ab
AC
3720 if (deprecated_detach_hook)
3721 deprecated_detach_hook ();
c906108c
SS
3722}
3723\f
fd0a2a6f
MK
3724/* Convert a normal process ID to a string. Returns the string in a
3725 static buffer. */
c906108c
SS
3726
3727char *
39f77062 3728normal_pid_to_str (ptid_t ptid)
c906108c 3729{
fd0a2a6f 3730 static char buf[32];
c906108c 3731
5fff8fc0 3732 xsnprintf (buf, sizeof buf, "process %d", ptid_get_pid (ptid));
c906108c
SS
3733 return buf;
3734}
3735
2c0b251b 3736static char *
117de6a9
PA
3737dummy_pid_to_str (struct target_ops *ops, ptid_t ptid)
3738{
3739 return normal_pid_to_str (ptid);
3740}
3741
9b4eba8e
HZ
3742/* Error-catcher for target_find_memory_regions. */
3743static int
b8edc417 3744dummy_find_memory_regions (find_memory_region_ftype ignore1, void *ignore2)
be4d1333 3745{
9b4eba8e 3746 error (_("Command not implemented for this target."));
be4d1333
MS
3747 return 0;
3748}
3749
9b4eba8e
HZ
3750/* Error-catcher for target_make_corefile_notes. */
3751static char *
3752dummy_make_corefile_notes (bfd *ignore1, int *ignore2)
be4d1333 3753{
9b4eba8e 3754 error (_("Command not implemented for this target."));
be4d1333
MS
3755 return NULL;
3756}
3757
6b04bdb7
MS
3758/* Error-catcher for target_get_bookmark. */
3759static gdb_byte *
3760dummy_get_bookmark (char *ignore1, int ignore2)
3761{
3762 tcomplain ();
3763 return NULL;
3764}
3765
3766/* Error-catcher for target_goto_bookmark. */
3767static void
3768dummy_goto_bookmark (gdb_byte *ignore, int from_tty)
3769{
3770 tcomplain ();
3771}
3772
c906108c
SS
3773/* Set up the handful of non-empty slots needed by the dummy target
3774 vector. */
3775
3776static void
fba45db2 3777init_dummy_target (void)
c906108c
SS
3778{
3779 dummy_target.to_shortname = "None";
3780 dummy_target.to_longname = "None";
3781 dummy_target.to_doc = "";
3782 dummy_target.to_attach = find_default_attach;
136d6dae 3783 dummy_target.to_detach =
52554a0e 3784 (void (*)(struct target_ops *, const char *, int))target_ignore;
c906108c 3785 dummy_target.to_create_inferior = find_default_create_inferior;
b84876c2
PA
3786 dummy_target.to_can_async_p = find_default_can_async_p;
3787 dummy_target.to_is_async_p = find_default_is_async_p;
9908b566 3788 dummy_target.to_supports_non_stop = find_default_supports_non_stop;
03583c20
UW
3789 dummy_target.to_supports_disable_randomization
3790 = find_default_supports_disable_randomization;
117de6a9 3791 dummy_target.to_pid_to_str = dummy_pid_to_str;
c906108c 3792 dummy_target.to_stratum = dummy_stratum;
be4d1333
MS
3793 dummy_target.to_find_memory_regions = dummy_find_memory_regions;
3794 dummy_target.to_make_corefile_notes = dummy_make_corefile_notes;
6b04bdb7
MS
3795 dummy_target.to_get_bookmark = dummy_get_bookmark;
3796 dummy_target.to_goto_bookmark = dummy_goto_bookmark;
0b603eba 3797 dummy_target.to_xfer_partial = default_xfer_partial;
c35b1492
PA
3798 dummy_target.to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
3799 dummy_target.to_has_memory = (int (*) (struct target_ops *)) return_zero;
3800 dummy_target.to_has_stack = (int (*) (struct target_ops *)) return_zero;
3801 dummy_target.to_has_registers = (int (*) (struct target_ops *)) return_zero;
aeaec162
TT
3802 dummy_target.to_has_execution
3803 = (int (*) (struct target_ops *, ptid_t)) return_zero;
7155de5a
HZ
3804 dummy_target.to_stopped_by_watchpoint = return_zero;
3805 dummy_target.to_stopped_data_address =
3806 (int (*) (struct target_ops *, CORE_ADDR *)) return_zero;
c906108c
SS
3807 dummy_target.to_magic = OPS_MAGIC;
3808}
c906108c 3809\f
c906108c 3810static void
fba45db2 3811debug_to_open (char *args, int from_tty)
c906108c
SS
3812{
3813 debug_target.to_open (args, from_tty);
3814
96baa820 3815 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
c906108c
SS
3816}
3817
f1c07ab0 3818void
460014f5 3819target_close (struct target_ops *targ)
f1c07ab0 3820{
7fdc1521
TT
3821 gdb_assert (!target_is_pushed (targ));
3822
f1c07ab0 3823 if (targ->to_xclose != NULL)
460014f5 3824 targ->to_xclose (targ);
f1c07ab0 3825 else if (targ->to_close != NULL)
460014f5 3826 targ->to_close ();
947b8855
PA
3827
3828 if (targetdebug)
460014f5 3829 fprintf_unfiltered (gdb_stdlog, "target_close ()\n");
f1c07ab0
AC
3830}
3831
136d6dae
VP
3832void
3833target_attach (char *args, int from_tty)
3834{
3835 struct target_ops *t;
5d502164 3836
136d6dae
VP
3837 for (t = current_target.beneath; t != NULL; t = t->beneath)
3838 {
3839 if (t->to_attach != NULL)
3840 {
3841 t->to_attach (t, args, from_tty);
947b8855
PA
3842 if (targetdebug)
3843 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n",
3844 args, from_tty);
136d6dae
VP
3845 return;
3846 }
3847 }
3848
3849 internal_error (__FILE__, __LINE__,
9b20d036 3850 _("could not find a target to attach"));
136d6dae
VP
3851}
3852
28439f5e
PA
3853int
3854target_thread_alive (ptid_t ptid)
c906108c 3855{
28439f5e 3856 struct target_ops *t;
5d502164 3857
28439f5e
PA
3858 for (t = current_target.beneath; t != NULL; t = t->beneath)
3859 {
3860 if (t->to_thread_alive != NULL)
3861 {
3862 int retval;
c906108c 3863
28439f5e
PA
3864 retval = t->to_thread_alive (t, ptid);
3865 if (targetdebug)
3866 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
dfd4cc63 3867 ptid_get_pid (ptid), retval);
28439f5e
PA
3868
3869 return retval;
3870 }
3871 }
3872
3873 return 0;
3874}
3875
3876void
3877target_find_new_threads (void)
3878{
3879 struct target_ops *t;
5d502164 3880
28439f5e
PA
3881 for (t = current_target.beneath; t != NULL; t = t->beneath)
3882 {
3883 if (t->to_find_new_threads != NULL)
3884 {
3885 t->to_find_new_threads (t);
3886 if (targetdebug)
3887 fprintf_unfiltered (gdb_stdlog, "target_find_new_threads ()\n");
3888
3889 return;
3890 }
3891 }
c906108c
SS
3892}
3893
d914c394
SS
3894void
3895target_stop (ptid_t ptid)
3896{
3897 if (!may_stop)
3898 {
3899 warning (_("May not interrupt or stop the target, ignoring attempt"));
3900 return;
3901 }
3902
3903 (*current_target.to_stop) (ptid);
3904}
3905
c906108c 3906static void
28439f5e 3907debug_to_post_attach (int pid)
c906108c 3908{
28439f5e 3909 debug_target.to_post_attach (pid);
c906108c 3910
28439f5e 3911 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
c906108c
SS
3912}
3913
09826ec5
PA
3914/* Concatenate ELEM to LIST, a comma separate list, and return the
3915 result. The LIST incoming argument is released. */
3916
3917static char *
3918str_comma_list_concat_elem (char *list, const char *elem)
3919{
3920 if (list == NULL)
3921 return xstrdup (elem);
3922 else
3923 return reconcat (list, list, ", ", elem, (char *) NULL);
3924}
3925
3926/* Helper for target_options_to_string. If OPT is present in
3927 TARGET_OPTIONS, append the OPT_STR (string version of OPT) in RET.
3928 Returns the new resulting string. OPT is removed from
3929 TARGET_OPTIONS. */
3930
3931static char *
3932do_option (int *target_options, char *ret,
3933 int opt, char *opt_str)
3934{
3935 if ((*target_options & opt) != 0)
3936 {
3937 ret = str_comma_list_concat_elem (ret, opt_str);
3938 *target_options &= ~opt;
3939 }
3940
3941 return ret;
3942}
3943
3944char *
3945target_options_to_string (int target_options)
3946{
3947 char *ret = NULL;
3948
3949#define DO_TARG_OPTION(OPT) \
3950 ret = do_option (&target_options, ret, OPT, #OPT)
3951
3952 DO_TARG_OPTION (TARGET_WNOHANG);
3953
3954 if (target_options != 0)
3955 ret = str_comma_list_concat_elem (ret, "unknown???");
3956
3957 if (ret == NULL)
3958 ret = xstrdup ("");
3959 return ret;
3960}
3961
bf0c5130 3962static void
56be3814
UW
3963debug_print_register (const char * func,
3964 struct regcache *regcache, int regno)
bf0c5130 3965{
f8d29908 3966 struct gdbarch *gdbarch = get_regcache_arch (regcache);
5d502164 3967
bf0c5130 3968 fprintf_unfiltered (gdb_stdlog, "%s ", func);
f8d29908 3969 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
f8d29908
UW
3970 && gdbarch_register_name (gdbarch, regno) != NULL
3971 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
3972 fprintf_unfiltered (gdb_stdlog, "(%s)",
3973 gdbarch_register_name (gdbarch, regno));
bf0c5130
AC
3974 else
3975 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
0ff58721 3976 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch))
bf0c5130 3977 {
e17a4113 3978 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
f8d29908 3979 int i, size = register_size (gdbarch, regno);
e362b510 3980 gdb_byte buf[MAX_REGISTER_SIZE];
5d502164 3981
0ff58721 3982 regcache_raw_collect (regcache, regno, buf);
bf0c5130 3983 fprintf_unfiltered (gdb_stdlog, " = ");
81c4a259 3984 for (i = 0; i < size; i++)
bf0c5130
AC
3985 {
3986 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
3987 }
81c4a259 3988 if (size <= sizeof (LONGEST))
bf0c5130 3989 {
e17a4113 3990 ULONGEST val = extract_unsigned_integer (buf, size, byte_order);
5d502164 3991
0b1553bc
UW
3992 fprintf_unfiltered (gdb_stdlog, " %s %s",
3993 core_addr_to_string_nz (val), plongest (val));
bf0c5130
AC
3994 }
3995 }
3996 fprintf_unfiltered (gdb_stdlog, "\n");
3997}
3998
28439f5e
PA
3999void
4000target_fetch_registers (struct regcache *regcache, int regno)
c906108c 4001{
28439f5e 4002 struct target_ops *t;
5d502164 4003
28439f5e
PA
4004 for (t = current_target.beneath; t != NULL; t = t->beneath)
4005 {
4006 if (t->to_fetch_registers != NULL)
4007 {
4008 t->to_fetch_registers (t, regcache, regno);
4009 if (targetdebug)
4010 debug_print_register ("target_fetch_registers", regcache, regno);
4011 return;
4012 }
4013 }
c906108c
SS
4014}
4015
28439f5e
PA
4016void
4017target_store_registers (struct regcache *regcache, int regno)
c906108c 4018{
28439f5e 4019 struct target_ops *t;
5d502164 4020
d914c394
SS
4021 if (!may_write_registers)
4022 error (_("Writing to registers is not allowed (regno %d)"), regno);
4023
28439f5e
PA
4024 for (t = current_target.beneath; t != NULL; t = t->beneath)
4025 {
4026 if (t->to_store_registers != NULL)
4027 {
4028 t->to_store_registers (t, regcache, regno);
4029 if (targetdebug)
4030 {
4031 debug_print_register ("target_store_registers", regcache, regno);
4032 }
4033 return;
4034 }
4035 }
4036
4037 noprocess ();
c906108c
SS
4038}
4039
dc146f7c
VP
4040int
4041target_core_of_thread (ptid_t ptid)
4042{
4043 struct target_ops *t;
4044
4045 for (t = current_target.beneath; t != NULL; t = t->beneath)
4046 {
4047 if (t->to_core_of_thread != NULL)
4048 {
4049 int retval = t->to_core_of_thread (t, ptid);
5d502164 4050
dc146f7c 4051 if (targetdebug)
3e43a32a
MS
4052 fprintf_unfiltered (gdb_stdlog,
4053 "target_core_of_thread (%d) = %d\n",
dfd4cc63 4054 ptid_get_pid (ptid), retval);
dc146f7c
VP
4055 return retval;
4056 }
4057 }
4058
4059 return -1;
4060}
4061
4a5e7a5b
PA
4062int
4063target_verify_memory (const gdb_byte *data, CORE_ADDR memaddr, ULONGEST size)
4064{
4065 struct target_ops *t;
4066
4067 for (t = current_target.beneath; t != NULL; t = t->beneath)
4068 {
4069 if (t->to_verify_memory != NULL)
4070 {
4071 int retval = t->to_verify_memory (t, data, memaddr, size);
5d502164 4072
4a5e7a5b 4073 if (targetdebug)
3e43a32a
MS
4074 fprintf_unfiltered (gdb_stdlog,
4075 "target_verify_memory (%s, %s) = %d\n",
f5656ead 4076 paddress (target_gdbarch (), memaddr),
4a5e7a5b
PA
4077 pulongest (size),
4078 retval);
4079 return retval;
4080 }
4081 }
4082
4083 tcomplain ();
4084}
4085
9c06b0b4
TJB
4086/* The documentation for this function is in its prototype declaration in
4087 target.h. */
4088
4089int
4090target_insert_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask, int rw)
4091{
4092 struct target_ops *t;
4093
4094 for (t = current_target.beneath; t != NULL; t = t->beneath)
4095 if (t->to_insert_mask_watchpoint != NULL)
4096 {
4097 int ret;
4098
4099 ret = t->to_insert_mask_watchpoint (t, addr, mask, rw);
4100
4101 if (targetdebug)
4102 fprintf_unfiltered (gdb_stdlog, "\
4103target_insert_mask_watchpoint (%s, %s, %d) = %d\n",
4104 core_addr_to_string (addr),
4105 core_addr_to_string (mask), rw, ret);
4106
4107 return ret;
4108 }
4109
4110 return 1;
4111}
4112
4113/* The documentation for this function is in its prototype declaration in
4114 target.h. */
4115
4116int
4117target_remove_mask_watchpoint (CORE_ADDR addr, CORE_ADDR mask, int rw)
4118{
4119 struct target_ops *t;
4120
4121 for (t = current_target.beneath; t != NULL; t = t->beneath)
4122 if (t->to_remove_mask_watchpoint != NULL)
4123 {
4124 int ret;
4125
4126 ret = t->to_remove_mask_watchpoint (t, addr, mask, rw);
4127
4128 if (targetdebug)
4129 fprintf_unfiltered (gdb_stdlog, "\
4130target_remove_mask_watchpoint (%s, %s, %d) = %d\n",
4131 core_addr_to_string (addr),
4132 core_addr_to_string (mask), rw, ret);
4133
4134 return ret;
4135 }
4136
4137 return 1;
4138}
4139
4140/* The documentation for this function is in its prototype declaration
4141 in target.h. */
4142
4143int
4144target_masked_watch_num_registers (CORE_ADDR addr, CORE_ADDR mask)
4145{
4146 struct target_ops *t;
4147
4148 for (t = current_target.beneath; t != NULL; t = t->beneath)
4149 if (t->to_masked_watch_num_registers != NULL)
4150 return t->to_masked_watch_num_registers (t, addr, mask);
4151
4152 return -1;
4153}
4154
f1310107
TJB
4155/* The documentation for this function is in its prototype declaration
4156 in target.h. */
4157
4158int
4159target_ranged_break_num_registers (void)
4160{
4161 struct target_ops *t;
4162
4163 for (t = current_target.beneath; t != NULL; t = t->beneath)
4164 if (t->to_ranged_break_num_registers != NULL)
4165 return t->to_ranged_break_num_registers (t);
4166
4167 return -1;
4168}
4169
02d27625
MM
4170/* See target.h. */
4171
4172int
4173target_supports_btrace (void)
4174{
4175 struct target_ops *t;
4176
4177 for (t = current_target.beneath; t != NULL; t = t->beneath)
4178 if (t->to_supports_btrace != NULL)
4179 return t->to_supports_btrace ();
4180
4181 return 0;
4182}
4183
4184/* See target.h. */
4185
4186struct btrace_target_info *
4187target_enable_btrace (ptid_t ptid)
4188{
4189 struct target_ops *t;
4190
4191 for (t = current_target.beneath; t != NULL; t = t->beneath)
4192 if (t->to_enable_btrace != NULL)
4193 return t->to_enable_btrace (ptid);
4194
4195 tcomplain ();
4196 return NULL;
4197}
4198
4199/* See target.h. */
4200
4201void
4202target_disable_btrace (struct btrace_target_info *btinfo)
4203{
4204 struct target_ops *t;
4205
4206 for (t = current_target.beneath; t != NULL; t = t->beneath)
4207 if (t->to_disable_btrace != NULL)
d92f7ee3
SDJ
4208 {
4209 t->to_disable_btrace (btinfo);
4210 return;
4211 }
02d27625
MM
4212
4213 tcomplain ();
4214}
4215
4216/* See target.h. */
4217
4218void
4219target_teardown_btrace (struct btrace_target_info *btinfo)
4220{
4221 struct target_ops *t;
4222
4223 for (t = current_target.beneath; t != NULL; t = t->beneath)
4224 if (t->to_teardown_btrace != NULL)
d92f7ee3
SDJ
4225 {
4226 t->to_teardown_btrace (btinfo);
4227 return;
4228 }
02d27625
MM
4229
4230 tcomplain ();
4231}
4232
4233/* See target.h. */
4234
969c39fb
MM
4235enum btrace_error
4236target_read_btrace (VEC (btrace_block_s) **btrace,
4237 struct btrace_target_info *btinfo,
02d27625
MM
4238 enum btrace_read_type type)
4239{
4240 struct target_ops *t;
4241
4242 for (t = current_target.beneath; t != NULL; t = t->beneath)
4243 if (t->to_read_btrace != NULL)
969c39fb 4244 return t->to_read_btrace (btrace, btinfo, type);
02d27625
MM
4245
4246 tcomplain ();
969c39fb 4247 return BTRACE_ERR_NOT_SUPPORTED;
02d27625
MM
4248}
4249
d02ed0bb
MM
4250/* See target.h. */
4251
7c1687a9
MM
4252void
4253target_stop_recording (void)
4254{
4255 struct target_ops *t;
4256
4257 for (t = current_target.beneath; t != NULL; t = t->beneath)
4258 if (t->to_stop_recording != NULL)
4259 {
4260 t->to_stop_recording ();
4261 return;
4262 }
4263
4264 /* This is optional. */
4265}
4266
4267/* See target.h. */
4268
d02ed0bb
MM
4269void
4270target_info_record (void)
4271{
4272 struct target_ops *t;
4273
4274 for (t = current_target.beneath; t != NULL; t = t->beneath)
4275 if (t->to_info_record != NULL)
4276 {
4277 t->to_info_record ();
4278 return;
4279 }
4280
4281 tcomplain ();
4282}
4283
4284/* See target.h. */
4285
4286void
85e1311a 4287target_save_record (const char *filename)
d02ed0bb
MM
4288{
4289 struct target_ops *t;
4290
4291 for (t = current_target.beneath; t != NULL; t = t->beneath)
4292 if (t->to_save_record != NULL)
4293 {
4294 t->to_save_record (filename);
4295 return;
4296 }
4297
4298 tcomplain ();
4299}
4300
4301/* See target.h. */
4302
4303int
4304target_supports_delete_record (void)
4305{
4306 struct target_ops *t;
4307
4308 for (t = current_target.beneath; t != NULL; t = t->beneath)
4309 if (t->to_delete_record != NULL)
4310 return 1;
4311
4312 return 0;
4313}
4314
4315/* See target.h. */
4316
4317void
4318target_delete_record (void)
4319{
4320 struct target_ops *t;
4321
4322 for (t = current_target.beneath; t != NULL; t = t->beneath)
4323 if (t->to_delete_record != NULL)
4324 {
4325 t->to_delete_record ();
4326 return;
4327 }
4328
4329 tcomplain ();
4330}
4331
4332/* See target.h. */
4333
4334int
4335target_record_is_replaying (void)
4336{
4337 struct target_ops *t;
4338
4339 for (t = current_target.beneath; t != NULL; t = t->beneath)
4340 if (t->to_record_is_replaying != NULL)
4341 return t->to_record_is_replaying ();
4342
4343 return 0;
4344}
4345
4346/* See target.h. */
4347
4348void
4349target_goto_record_begin (void)
4350{
4351 struct target_ops *t;
4352
4353 for (t = current_target.beneath; t != NULL; t = t->beneath)
4354 if (t->to_goto_record_begin != NULL)
4355 {
4356 t->to_goto_record_begin ();
4357 return;
4358 }
4359
4360 tcomplain ();
4361}
4362
4363/* See target.h. */
4364
4365void
4366target_goto_record_end (void)
4367{
4368 struct target_ops *t;
4369
4370 for (t = current_target.beneath; t != NULL; t = t->beneath)
4371 if (t->to_goto_record_end != NULL)
4372 {
4373 t->to_goto_record_end ();
4374 return;
4375 }
4376
4377 tcomplain ();
4378}
4379
4380/* See target.h. */
4381
4382void
4383target_goto_record (ULONGEST insn)
4384{
4385 struct target_ops *t;
4386
4387 for (t = current_target.beneath; t != NULL; t = t->beneath)
4388 if (t->to_goto_record != NULL)
4389 {
4390 t->to_goto_record (insn);
4391 return;
4392 }
4393
4394 tcomplain ();
4395}
4396
67c86d06
MM
4397/* See target.h. */
4398
4399void
4400target_insn_history (int size, int flags)
4401{
4402 struct target_ops *t;
4403
4404 for (t = current_target.beneath; t != NULL; t = t->beneath)
4405 if (t->to_insn_history != NULL)
4406 {
4407 t->to_insn_history (size, flags);
4408 return;
4409 }
4410
4411 tcomplain ();
4412}
4413
4414/* See target.h. */
4415
4416void
4417target_insn_history_from (ULONGEST from, int size, int flags)
4418{
4419 struct target_ops *t;
4420
4421 for (t = current_target.beneath; t != NULL; t = t->beneath)
4422 if (t->to_insn_history_from != NULL)
4423 {
4424 t->to_insn_history_from (from, size, flags);
4425 return;
4426 }
4427
4428 tcomplain ();
4429}
4430
4431/* See target.h. */
4432
4433void
4434target_insn_history_range (ULONGEST begin, ULONGEST end, int flags)
4435{
4436 struct target_ops *t;
4437
4438 for (t = current_target.beneath; t != NULL; t = t->beneath)
4439 if (t->to_insn_history_range != NULL)
4440 {
4441 t->to_insn_history_range (begin, end, flags);
4442 return;
4443 }
4444
4445 tcomplain ();
4446}
4447
15984c13
MM
4448/* See target.h. */
4449
4450void
4451target_call_history (int size, int flags)
4452{
4453 struct target_ops *t;
4454
4455 for (t = current_target.beneath; t != NULL; t = t->beneath)
4456 if (t->to_call_history != NULL)
4457 {
4458 t->to_call_history (size, flags);
4459 return;
4460 }
4461
4462 tcomplain ();
4463}
4464
4465/* See target.h. */
4466
4467void
4468target_call_history_from (ULONGEST begin, int size, int flags)
4469{
4470 struct target_ops *t;
4471
4472 for (t = current_target.beneath; t != NULL; t = t->beneath)
4473 if (t->to_call_history_from != NULL)
4474 {
4475 t->to_call_history_from (begin, size, flags);
4476 return;
4477 }
4478
4479 tcomplain ();
4480}
4481
4482/* See target.h. */
4483
4484void
4485target_call_history_range (ULONGEST begin, ULONGEST end, int flags)
4486{
4487 struct target_ops *t;
4488
4489 for (t = current_target.beneath; t != NULL; t = t->beneath)
4490 if (t->to_call_history_range != NULL)
4491 {
4492 t->to_call_history_range (begin, end, flags);
4493 return;
4494 }
4495
4496 tcomplain ();
4497}
4498
c906108c 4499static void
f32dbf8c 4500debug_to_prepare_to_store (struct target_ops *self, struct regcache *regcache)
c906108c 4501{
f32dbf8c 4502 debug_target.to_prepare_to_store (&debug_target, regcache);
c906108c 4503
96baa820 4504 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
c906108c
SS
4505}
4506
ea001bdc
MM
4507/* See target.h. */
4508
4509const struct frame_unwind *
4510target_get_unwinder (void)
4511{
4512 struct target_ops *t;
4513
4514 for (t = current_target.beneath; t != NULL; t = t->beneath)
4515 if (t->to_get_unwinder != NULL)
4516 return t->to_get_unwinder;
4517
4518 return NULL;
4519}
4520
4521/* See target.h. */
4522
4523const struct frame_unwind *
4524target_get_tailcall_unwinder (void)
4525{
4526 struct target_ops *t;
4527
4528 for (t = current_target.beneath; t != NULL; t = t->beneath)
4529 if (t->to_get_tailcall_unwinder != NULL)
4530 return t->to_get_tailcall_unwinder;
4531
4532 return NULL;
4533}
4534
118e6252
MM
4535/* See target.h. */
4536
4537CORE_ADDR
4538forward_target_decr_pc_after_break (struct target_ops *ops,
4539 struct gdbarch *gdbarch)
4540{
4541 for (; ops != NULL; ops = ops->beneath)
4542 if (ops->to_decr_pc_after_break != NULL)
4543 return ops->to_decr_pc_after_break (ops, gdbarch);
4544
4545 return gdbarch_decr_pc_after_break (gdbarch);
4546}
4547
4548/* See target.h. */
4549
4550CORE_ADDR
4551target_decr_pc_after_break (struct gdbarch *gdbarch)
4552{
4553 return forward_target_decr_pc_after_break (current_target.beneath, gdbarch);
4554}
4555
c906108c 4556static int
961cb7b5 4557deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
c8e73a31
AC
4558 int write, struct mem_attrib *attrib,
4559 struct target_ops *target)
c906108c
SS
4560{
4561 int retval;
4562
c8e73a31
AC
4563 retval = debug_target.deprecated_xfer_memory (memaddr, myaddr, len, write,
4564 attrib, target);
c906108c 4565
96baa820 4566 fprintf_unfiltered (gdb_stdlog,
53b71562 4567 "target_xfer_memory (%s, xxx, %d, %s, xxx) = %d",
f5656ead 4568 paddress (target_gdbarch (), memaddr), len,
5af949e3 4569 write ? "write" : "read", retval);
c906108c 4570
c906108c
SS
4571 if (retval > 0)
4572 {
4573 int i;
4574
96baa820 4575 fputs_unfiltered (", bytes =", gdb_stdlog);
c906108c
SS
4576 for (i = 0; i < retval; i++)
4577 {
53b71562 4578 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
333dabeb
DJ
4579 {
4580 if (targetdebug < 2 && i > 0)
4581 {
4582 fprintf_unfiltered (gdb_stdlog, " ...");
4583 break;
4584 }
4585 fprintf_unfiltered (gdb_stdlog, "\n");
4586 }
2bc416ba 4587
96baa820 4588 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
c906108c
SS
4589 }
4590 }
4591
96baa820 4592 fputc_unfiltered ('\n', gdb_stdlog);
c906108c
SS
4593
4594 return retval;
4595}
4596
4597static void
fba45db2 4598debug_to_files_info (struct target_ops *target)
c906108c
SS
4599{
4600 debug_target.to_files_info (target);
4601
96baa820 4602 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
c906108c
SS
4603}
4604
4605static int
3db08215 4606debug_to_insert_breakpoint (struct target_ops *ops, struct gdbarch *gdbarch,
a6d9a66e 4607 struct bp_target_info *bp_tgt)
c906108c
SS
4608{
4609 int retval;
4610
3db08215 4611 retval = forward_target_insert_breakpoint (&debug_target, gdbarch, bp_tgt);
c906108c 4612
96baa820 4613 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4614 "target_insert_breakpoint (%s, xxx) = %ld\n",
4615 core_addr_to_string (bp_tgt->placed_address),
104c1213 4616 (unsigned long) retval);
c906108c
SS
4617 return retval;
4618}
4619
4620static int
3db08215 4621debug_to_remove_breakpoint (struct target_ops *ops, struct gdbarch *gdbarch,
a6d9a66e 4622 struct bp_target_info *bp_tgt)
c906108c
SS
4623{
4624 int retval;
4625
3db08215 4626 retval = forward_target_remove_breakpoint (&debug_target, gdbarch, bp_tgt);
c906108c 4627
96baa820 4628 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4629 "target_remove_breakpoint (%s, xxx) = %ld\n",
4630 core_addr_to_string (bp_tgt->placed_address),
104c1213 4631 (unsigned long) retval);
c906108c
SS
4632 return retval;
4633}
4634
ccaa32c7
GS
4635static int
4636debug_to_can_use_hw_breakpoint (int type, int cnt, int from_tty)
4637{
4638 int retval;
4639
4640 retval = debug_target.to_can_use_hw_breakpoint (type, cnt, from_tty);
4641
4642 fprintf_unfiltered (gdb_stdlog,
4643 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
4644 (unsigned long) type,
4645 (unsigned long) cnt,
4646 (unsigned long) from_tty,
4647 (unsigned long) retval);
4648 return retval;
4649}
4650
e0d24f8d
WZ
4651static int
4652debug_to_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
4653{
4654 CORE_ADDR retval;
4655
4656 retval = debug_target.to_region_ok_for_hw_watchpoint (addr, len);
4657
4658 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4659 "target_region_ok_for_hw_watchpoint (%s, %ld) = %s\n",
4660 core_addr_to_string (addr), (unsigned long) len,
4661 core_addr_to_string (retval));
e0d24f8d
WZ
4662 return retval;
4663}
4664
0cf6dd15
TJB
4665static int
4666debug_to_can_accel_watchpoint_condition (CORE_ADDR addr, int len, int rw,
4667 struct expression *cond)
4668{
4669 int retval;
4670
3e43a32a
MS
4671 retval = debug_target.to_can_accel_watchpoint_condition (addr, len,
4672 rw, cond);
0cf6dd15
TJB
4673
4674 fprintf_unfiltered (gdb_stdlog,
3e43a32a
MS
4675 "target_can_accel_watchpoint_condition "
4676 "(%s, %d, %d, %s) = %ld\n",
bd91e7ae
OS
4677 core_addr_to_string (addr), len, rw,
4678 host_address_to_string (cond), (unsigned long) retval);
0cf6dd15
TJB
4679 return retval;
4680}
4681
ccaa32c7
GS
4682static int
4683debug_to_stopped_by_watchpoint (void)
4684{
4685 int retval;
4686
4687 retval = debug_target.to_stopped_by_watchpoint ();
4688
4689 fprintf_unfiltered (gdb_stdlog,
d92524f1 4690 "target_stopped_by_watchpoint () = %ld\n",
ccaa32c7
GS
4691 (unsigned long) retval);
4692 return retval;
4693}
4694
4aa7a7f5
JJ
4695static int
4696debug_to_stopped_data_address (struct target_ops *target, CORE_ADDR *addr)
ccaa32c7 4697{
4aa7a7f5 4698 int retval;
ccaa32c7 4699
4aa7a7f5 4700 retval = debug_target.to_stopped_data_address (target, addr);
ccaa32c7
GS
4701
4702 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4703 "target_stopped_data_address ([%s]) = %ld\n",
4704 core_addr_to_string (*addr),
4aa7a7f5 4705 (unsigned long)retval);
ccaa32c7
GS
4706 return retval;
4707}
4708
5009afc5
AS
4709static int
4710debug_to_watchpoint_addr_within_range (struct target_ops *target,
4711 CORE_ADDR addr,
4712 CORE_ADDR start, int length)
4713{
4714 int retval;
4715
4716 retval = debug_target.to_watchpoint_addr_within_range (target, addr,
4717 start, length);
4718
4719 fprintf_filtered (gdb_stdlog,
bd91e7ae
OS
4720 "target_watchpoint_addr_within_range (%s, %s, %d) = %d\n",
4721 core_addr_to_string (addr), core_addr_to_string (start),
4722 length, retval);
5009afc5
AS
4723 return retval;
4724}
4725
ccaa32c7 4726static int
a6d9a66e
UW
4727debug_to_insert_hw_breakpoint (struct gdbarch *gdbarch,
4728 struct bp_target_info *bp_tgt)
ccaa32c7
GS
4729{
4730 int retval;
4731
a6d9a66e 4732 retval = debug_target.to_insert_hw_breakpoint (gdbarch, bp_tgt);
ccaa32c7
GS
4733
4734 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4735 "target_insert_hw_breakpoint (%s, xxx) = %ld\n",
4736 core_addr_to_string (bp_tgt->placed_address),
ccaa32c7
GS
4737 (unsigned long) retval);
4738 return retval;
4739}
4740
4741static int
a6d9a66e
UW
4742debug_to_remove_hw_breakpoint (struct gdbarch *gdbarch,
4743 struct bp_target_info *bp_tgt)
ccaa32c7
GS
4744{
4745 int retval;
4746
a6d9a66e 4747 retval = debug_target.to_remove_hw_breakpoint (gdbarch, bp_tgt);
ccaa32c7
GS
4748
4749 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4750 "target_remove_hw_breakpoint (%s, xxx) = %ld\n",
4751 core_addr_to_string (bp_tgt->placed_address),
ccaa32c7
GS
4752 (unsigned long) retval);
4753 return retval;
4754}
4755
4756static int
0cf6dd15
TJB
4757debug_to_insert_watchpoint (CORE_ADDR addr, int len, int type,
4758 struct expression *cond)
ccaa32c7
GS
4759{
4760 int retval;
4761
0cf6dd15 4762 retval = debug_target.to_insert_watchpoint (addr, len, type, cond);
ccaa32c7
GS
4763
4764 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4765 "target_insert_watchpoint (%s, %d, %d, %s) = %ld\n",
4766 core_addr_to_string (addr), len, type,
4767 host_address_to_string (cond), (unsigned long) retval);
ccaa32c7
GS
4768 return retval;
4769}
4770
4771static int
0cf6dd15
TJB
4772debug_to_remove_watchpoint (CORE_ADDR addr, int len, int type,
4773 struct expression *cond)
ccaa32c7
GS
4774{
4775 int retval;
4776
0cf6dd15 4777 retval = debug_target.to_remove_watchpoint (addr, len, type, cond);
ccaa32c7
GS
4778
4779 fprintf_unfiltered (gdb_stdlog,
bd91e7ae
OS
4780 "target_remove_watchpoint (%s, %d, %d, %s) = %ld\n",
4781 core_addr_to_string (addr), len, type,
4782 host_address_to_string (cond), (unsigned long) retval);
ccaa32c7
GS
4783 return retval;
4784}
4785
c906108c 4786static void
fba45db2 4787debug_to_terminal_init (void)
c906108c
SS
4788{
4789 debug_target.to_terminal_init ();
4790
96baa820 4791 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
c906108c
SS
4792}
4793
4794static void
fba45db2 4795debug_to_terminal_inferior (void)
c906108c
SS
4796{
4797 debug_target.to_terminal_inferior ();
4798
96baa820 4799 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
c906108c
SS
4800}
4801
4802static void
fba45db2 4803debug_to_terminal_ours_for_output (void)
c906108c
SS
4804{
4805 debug_target.to_terminal_ours_for_output ();
4806
96baa820 4807 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
c906108c
SS
4808}
4809
4810static void
fba45db2 4811debug_to_terminal_ours (void)
c906108c
SS
4812{
4813 debug_target.to_terminal_ours ();
4814
96baa820 4815 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
c906108c
SS
4816}
4817
a790ad35
SC
4818static void
4819debug_to_terminal_save_ours (void)
4820{
4821 debug_target.to_terminal_save_ours ();
4822
4823 fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
4824}
4825
c906108c 4826static void
503ebb2c 4827debug_to_terminal_info (const char *arg, int from_tty)
c906108c
SS
4828{
4829 debug_target.to_terminal_info (arg, from_tty);
4830
96baa820 4831 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
c906108c
SS
4832 from_tty);
4833}
4834
c906108c 4835static void
fba45db2 4836debug_to_load (char *args, int from_tty)
c906108c
SS
4837{
4838 debug_target.to_load (args, from_tty);
4839
96baa820 4840 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
c906108c
SS
4841}
4842
c906108c 4843static void
39f77062 4844debug_to_post_startup_inferior (ptid_t ptid)
c906108c 4845{
39f77062 4846 debug_target.to_post_startup_inferior (ptid);
c906108c 4847
96baa820 4848 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
dfd4cc63 4849 ptid_get_pid (ptid));
c906108c
SS
4850}
4851
77b06cd7 4852static int
fba45db2 4853debug_to_insert_fork_catchpoint (int pid)
c906108c 4854{
77b06cd7
TJB
4855 int retval;
4856
4857 retval = debug_target.to_insert_fork_catchpoint (pid);
4858
4859 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d) = %d\n",
4860 pid, retval);
c906108c 4861
77b06cd7 4862 return retval;
c906108c
SS
4863}
4864
4865static int
fba45db2 4866debug_to_remove_fork_catchpoint (int pid)
c906108c 4867{
c5aa993b 4868 int retval;
c906108c
SS
4869
4870 retval = debug_target.to_remove_fork_catchpoint (pid);
4871
96baa820 4872 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
c5aa993b 4873 pid, retval);
c906108c
SS
4874
4875 return retval;
4876}
4877
77b06cd7 4878static int
fba45db2 4879debug_to_insert_vfork_catchpoint (int pid)
c906108c 4880{
77b06cd7
TJB
4881 int retval;
4882
4883 retval = debug_target.to_insert_vfork_catchpoint (pid);
c906108c 4884
77b06cd7
TJB
4885 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d) = %d\n",
4886 pid, retval);
4887
4888 return retval;
c906108c
SS
4889}
4890
4891static int
fba45db2 4892debug_to_remove_vfork_catchpoint (int pid)
c906108c 4893{
c5aa993b 4894 int retval;
c906108c
SS
4895
4896 retval = debug_target.to_remove_vfork_catchpoint (pid);
4897
96baa820 4898 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
c5aa993b 4899 pid, retval);
c906108c
SS
4900
4901 return retval;
4902}
4903
77b06cd7 4904static int
fba45db2 4905debug_to_insert_exec_catchpoint (int pid)
c906108c 4906{
77b06cd7
TJB
4907 int retval;
4908
4909 retval = debug_target.to_insert_exec_catchpoint (pid);
c906108c 4910
77b06cd7
TJB
4911 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d) = %d\n",
4912 pid, retval);
4913
4914 return retval;
c906108c
SS
4915}
4916
4917static int
fba45db2 4918debug_to_remove_exec_catchpoint (int pid)
c906108c 4919{
c5aa993b 4920 int retval;
c906108c
SS
4921
4922 retval = debug_target.to_remove_exec_catchpoint (pid);
4923
96baa820 4924 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
c5aa993b 4925 pid, retval);
c906108c
SS
4926
4927 return retval;
4928}
4929
c906108c 4930static int
fba45db2 4931debug_to_has_exited (int pid, int wait_status, int *exit_status)
c906108c 4932{
c5aa993b 4933 int has_exited;
c906108c
SS
4934
4935 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status);
4936
96baa820 4937 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
c5aa993b 4938 pid, wait_status, *exit_status, has_exited);
c906108c
SS
4939
4940 return has_exited;
4941}
4942
c906108c 4943static int
fba45db2 4944debug_to_can_run (void)
c906108c
SS
4945{
4946 int retval;
4947
4948 retval = debug_target.to_can_run ();
4949
96baa820 4950 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
c906108c
SS
4951
4952 return retval;
4953}
4954
c2250ad1
UW
4955static struct gdbarch *
4956debug_to_thread_architecture (struct target_ops *ops, ptid_t ptid)
4957{
4958 struct gdbarch *retval;
4959
4960 retval = debug_target.to_thread_architecture (ops, ptid);
4961
3e43a32a
MS
4962 fprintf_unfiltered (gdb_stdlog,
4963 "target_thread_architecture (%s) = %s [%s]\n",
4964 target_pid_to_str (ptid),
4965 host_address_to_string (retval),
c2250ad1
UW
4966 gdbarch_bfd_arch_info (retval)->printable_name);
4967 return retval;
4968}
4969
c906108c 4970static void
94cc34af 4971debug_to_stop (ptid_t ptid)
c906108c 4972{
94cc34af 4973 debug_target.to_stop (ptid);
c906108c 4974
94cc34af
PA
4975 fprintf_unfiltered (gdb_stdlog, "target_stop (%s)\n",
4976 target_pid_to_str (ptid));
c906108c
SS
4977}
4978
96baa820
JM
4979static void
4980debug_to_rcmd (char *command,
d9fcf2fb 4981 struct ui_file *outbuf)
96baa820
JM
4982{
4983 debug_target.to_rcmd (command, outbuf);
4984 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
4985}
4986
c906108c 4987static char *
fba45db2 4988debug_to_pid_to_exec_file (int pid)
c906108c 4989{
c5aa993b 4990 char *exec_file;
c906108c
SS
4991
4992 exec_file = debug_target.to_pid_to_exec_file (pid);
4993
96baa820 4994 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
c5aa993b 4995 pid, exec_file);
c906108c
SS
4996
4997 return exec_file;
4998}
4999
c906108c 5000static void
fba45db2 5001setup_target_debug (void)
c906108c
SS
5002{
5003 memcpy (&debug_target, &current_target, sizeof debug_target);
5004
5005 current_target.to_open = debug_to_open;
c906108c 5006 current_target.to_post_attach = debug_to_post_attach;
c906108c 5007 current_target.to_prepare_to_store = debug_to_prepare_to_store;
c8e73a31 5008 current_target.deprecated_xfer_memory = deprecated_debug_xfer_memory;
c906108c
SS
5009 current_target.to_files_info = debug_to_files_info;
5010 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
5011 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
ccaa32c7
GS
5012 current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
5013 current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
5014 current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
5015 current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
5016 current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
5017 current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
5018 current_target.to_stopped_data_address = debug_to_stopped_data_address;
3e43a32a
MS
5019 current_target.to_watchpoint_addr_within_range
5020 = debug_to_watchpoint_addr_within_range;
5021 current_target.to_region_ok_for_hw_watchpoint
5022 = debug_to_region_ok_for_hw_watchpoint;
5023 current_target.to_can_accel_watchpoint_condition
5024 = debug_to_can_accel_watchpoint_condition;
c906108c
SS
5025 current_target.to_terminal_init = debug_to_terminal_init;
5026 current_target.to_terminal_inferior = debug_to_terminal_inferior;
3e43a32a
MS
5027 current_target.to_terminal_ours_for_output
5028 = debug_to_terminal_ours_for_output;
c906108c 5029 current_target.to_terminal_ours = debug_to_terminal_ours;
a790ad35 5030 current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
c906108c 5031 current_target.to_terminal_info = debug_to_terminal_info;
c906108c 5032 current_target.to_load = debug_to_load;
c906108c 5033 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
c906108c
SS
5034 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
5035 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
5036 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
5037 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
c906108c
SS
5038 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
5039 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
c906108c 5040 current_target.to_has_exited = debug_to_has_exited;
c906108c 5041 current_target.to_can_run = debug_to_can_run;
c906108c 5042 current_target.to_stop = debug_to_stop;
96baa820 5043 current_target.to_rcmd = debug_to_rcmd;
c906108c 5044 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
c2250ad1 5045 current_target.to_thread_architecture = debug_to_thread_architecture;
c906108c 5046}
c906108c 5047\f
c5aa993b
JM
5048
5049static char targ_desc[] =
3e43a32a
MS
5050"Names of targets and files being debugged.\nShows the entire \
5051stack of targets currently in use (including the exec-file,\n\
c906108c
SS
5052core-file, and process, if any), as well as the symbol file name.";
5053
96baa820
JM
5054static void
5055do_monitor_command (char *cmd,
5056 int from_tty)
5057{
2b5fe715
AC
5058 if ((current_target.to_rcmd
5059 == (void (*) (char *, struct ui_file *)) tcomplain)
96baa820 5060 || (current_target.to_rcmd == debug_to_rcmd
2b5fe715
AC
5061 && (debug_target.to_rcmd
5062 == (void (*) (char *, struct ui_file *)) tcomplain)))
8a3fe4f8 5063 error (_("\"monitor\" command not supported by this target."));
96baa820
JM
5064 target_rcmd (cmd, gdb_stdtarg);
5065}
5066
87680a14
JB
5067/* Print the name of each layers of our target stack. */
5068
5069static void
5070maintenance_print_target_stack (char *cmd, int from_tty)
5071{
5072 struct target_ops *t;
5073
5074 printf_filtered (_("The current target stack is:\n"));
5075
5076 for (t = target_stack; t != NULL; t = t->beneath)
5077 {
5078 printf_filtered (" - %s (%s)\n", t->to_shortname, t->to_longname);
5079 }
5080}
5081
c6ebd6cf
VP
5082/* Controls if async mode is permitted. */
5083int target_async_permitted = 0;
5084
5085/* The set command writes to this variable. If the inferior is
b5419e49 5086 executing, target_async_permitted is *not* updated. */
c6ebd6cf
VP
5087static int target_async_permitted_1 = 0;
5088
5089static void
9401a810
PA
5090set_target_async_command (char *args, int from_tty,
5091 struct cmd_list_element *c)
c6ebd6cf 5092{
c35b1492 5093 if (have_live_inferiors ())
c6ebd6cf
VP
5094 {
5095 target_async_permitted_1 = target_async_permitted;
5096 error (_("Cannot change this setting while the inferior is running."));
5097 }
5098
5099 target_async_permitted = target_async_permitted_1;
5100}
5101
5102static void
9401a810
PA
5103show_target_async_command (struct ui_file *file, int from_tty,
5104 struct cmd_list_element *c,
5105 const char *value)
c6ebd6cf 5106{
3e43a32a
MS
5107 fprintf_filtered (file,
5108 _("Controlling the inferior in "
5109 "asynchronous mode is %s.\n"), value);
c6ebd6cf
VP
5110}
5111
d914c394
SS
5112/* Temporary copies of permission settings. */
5113
5114static int may_write_registers_1 = 1;
5115static int may_write_memory_1 = 1;
5116static int may_insert_breakpoints_1 = 1;
5117static int may_insert_tracepoints_1 = 1;
5118static int may_insert_fast_tracepoints_1 = 1;
5119static int may_stop_1 = 1;
5120
5121/* Make the user-set values match the real values again. */
5122
5123void
5124update_target_permissions (void)
5125{
5126 may_write_registers_1 = may_write_registers;
5127 may_write_memory_1 = may_write_memory;
5128 may_insert_breakpoints_1 = may_insert_breakpoints;
5129 may_insert_tracepoints_1 = may_insert_tracepoints;
5130 may_insert_fast_tracepoints_1 = may_insert_fast_tracepoints;
5131 may_stop_1 = may_stop;
5132}
5133
5134/* The one function handles (most of) the permission flags in the same
5135 way. */
5136
5137static void
5138set_target_permissions (char *args, int from_tty,
5139 struct cmd_list_element *c)
5140{
5141 if (target_has_execution)
5142 {
5143 update_target_permissions ();
5144 error (_("Cannot change this setting while the inferior is running."));
5145 }
5146
5147 /* Make the real values match the user-changed values. */
5148 may_write_registers = may_write_registers_1;
5149 may_insert_breakpoints = may_insert_breakpoints_1;
5150 may_insert_tracepoints = may_insert_tracepoints_1;
5151 may_insert_fast_tracepoints = may_insert_fast_tracepoints_1;
5152 may_stop = may_stop_1;
5153 update_observer_mode ();
5154}
5155
5156/* Set memory write permission independently of observer mode. */
5157
5158static void
5159set_write_memory_permission (char *args, int from_tty,
5160 struct cmd_list_element *c)
5161{
5162 /* Make the real values match the user-changed values. */
5163 may_write_memory = may_write_memory_1;
5164 update_observer_mode ();
5165}
5166
5167
c906108c 5168void
fba45db2 5169initialize_targets (void)
c906108c
SS
5170{
5171 init_dummy_target ();
5172 push_target (&dummy_target);
5173
5174 add_info ("target", target_info, targ_desc);
5175 add_info ("files", target_info, targ_desc);
5176
ccce17b0 5177 add_setshow_zuinteger_cmd ("target", class_maintenance, &targetdebug, _("\
85c07804
AC
5178Set target debugging."), _("\
5179Show target debugging."), _("\
333dabeb
DJ
5180When non-zero, target debugging is enabled. Higher numbers are more\n\
5181verbose. Changes do not take effect until the next \"run\" or \"target\"\n\
85c07804 5182command."),
ccce17b0
YQ
5183 NULL,
5184 show_targetdebug,
5185 &setdebuglist, &showdebuglist);
3a11626d 5186
2bc416ba 5187 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
7915a72c
AC
5188 &trust_readonly, _("\
5189Set mode for reading from readonly sections."), _("\
5190Show mode for reading from readonly sections."), _("\
3a11626d
MS
5191When this mode is on, memory reads from readonly sections (such as .text)\n\
5192will be read from the object file instead of from the target. This will\n\
7915a72c 5193result in significant performance improvement for remote targets."),
2c5b56ce 5194 NULL,
920d2a44 5195 show_trust_readonly,
e707bbc2 5196 &setlist, &showlist);
96baa820
JM
5197
5198 add_com ("monitor", class_obscure, do_monitor_command,
1bedd215 5199 _("Send a command to the remote monitor (remote targets only)."));
96baa820 5200
87680a14
JB
5201 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
5202 _("Print the name of each layer of the internal target stack."),
5203 &maintenanceprintlist);
5204
c6ebd6cf
VP
5205 add_setshow_boolean_cmd ("target-async", no_class,
5206 &target_async_permitted_1, _("\
5207Set whether gdb controls the inferior in asynchronous mode."), _("\
5208Show whether gdb controls the inferior in asynchronous mode."), _("\
5209Tells gdb whether to control the inferior in asynchronous mode."),
9401a810
PA
5210 set_target_async_command,
5211 show_target_async_command,
c6ebd6cf
VP
5212 &setlist,
5213 &showlist);
5214
d914c394
SS
5215 add_setshow_boolean_cmd ("may-write-registers", class_support,
5216 &may_write_registers_1, _("\
5217Set permission to write into registers."), _("\
5218Show permission to write into registers."), _("\
5219When this permission is on, GDB may write into the target's registers.\n\
5220Otherwise, any sort of write attempt will result in an error."),
5221 set_target_permissions, NULL,
5222 &setlist, &showlist);
5223
5224 add_setshow_boolean_cmd ("may-write-memory", class_support,
5225 &may_write_memory_1, _("\
5226Set permission to write into target memory."), _("\
5227Show permission to write into target memory."), _("\
5228When this permission is on, GDB may write into the target's memory.\n\
5229Otherwise, any sort of write attempt will result in an error."),
5230 set_write_memory_permission, NULL,
5231 &setlist, &showlist);
5232
5233 add_setshow_boolean_cmd ("may-insert-breakpoints", class_support,
5234 &may_insert_breakpoints_1, _("\
5235Set permission to insert breakpoints in the target."), _("\
5236Show permission to insert breakpoints in the target."), _("\
5237When this permission is on, GDB may insert breakpoints in the program.\n\
5238Otherwise, any sort of insertion attempt will result in an error."),
5239 set_target_permissions, NULL,
5240 &setlist, &showlist);
5241
5242 add_setshow_boolean_cmd ("may-insert-tracepoints", class_support,
5243 &may_insert_tracepoints_1, _("\
5244Set permission to insert tracepoints in the target."), _("\
5245Show permission to insert tracepoints in the target."), _("\
5246When this permission is on, GDB may insert tracepoints in the program.\n\
5247Otherwise, any sort of insertion attempt will result in an error."),
5248 set_target_permissions, NULL,
5249 &setlist, &showlist);
5250
5251 add_setshow_boolean_cmd ("may-insert-fast-tracepoints", class_support,
5252 &may_insert_fast_tracepoints_1, _("\
5253Set permission to insert fast tracepoints in the target."), _("\
5254Show permission to insert fast tracepoints in the target."), _("\
5255When this permission is on, GDB may insert fast tracepoints.\n\
5256Otherwise, any sort of insertion attempt will result in an error."),
5257 set_target_permissions, NULL,
5258 &setlist, &showlist);
5259
5260 add_setshow_boolean_cmd ("may-interrupt", class_support,
5261 &may_stop_1, _("\
5262Set permission to interrupt or signal the target."), _("\
5263Show permission to interrupt or signal the target."), _("\
5264When this permission is on, GDB may interrupt/stop the target's execution.\n\
5265Otherwise, any attempt to interrupt or stop will be ignored."),
5266 set_target_permissions, NULL,
5267 &setlist, &showlist);
c906108c 5268}
This page took 1.757326 seconds and 4 git commands to generate.