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