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