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