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