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