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