* server.c (handle_query): Assign, not compare.
[deliverable/binutils-gdb.git] / gdb / target.c
CommitLineData
c906108c 1/* Select target systems and architectures at runtime for GDB.
7998dfc3 2
6aba47ca 3 Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4c38e0a4 4 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
f6519ebc 5 Free Software Foundation, Inc.
7998dfc3 6
c906108c
SS
7 Contributed by Cygnus Support.
8
c5aa993b 9 This file is part of GDB.
c906108c 10
c5aa993b
JM
11 This program is free software; you can redistribute it and/or modify
12 it under the terms of the GNU General Public License as published by
a9762ec7 13 the Free Software Foundation; either version 3 of the License, or
c5aa993b 14 (at your option) any later version.
c906108c 15
c5aa993b
JM
16 This program is distributed in the hope that it will be useful,
17 but WITHOUT ANY WARRANTY; without even the implied warranty of
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 GNU General Public License for more details.
c906108c 20
c5aa993b 21 You should have received a copy of the GNU General Public License
a9762ec7 22 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
23
24#include "defs.h"
25#include <errno.h>
c906108c
SS
26#include "gdb_string.h"
27#include "target.h"
28#include "gdbcmd.h"
29#include "symtab.h"
30#include "inferior.h"
31#include "bfd.h"
32#include "symfile.h"
33#include "objfiles.h"
03f2053f 34#include "gdb_wait.h"
4930751a 35#include "dcache.h"
c906108c 36#include <signal.h>
4e052eda 37#include "regcache.h"
0088c768 38#include "gdb_assert.h"
b6591e8b 39#include "gdbcore.h"
9e35dae4 40#include "exceptions.h"
424163ea 41#include "target-descriptions.h"
e1ac3328 42#include "gdbthread.h"
b9db4ced 43#include "solib.h"
07b82ea5 44#include "exec.h"
edb3359d 45#include "inline-frame.h"
2f4d8875 46#include "tracepoint.h"
c906108c 47
a14ed312 48static void target_info (char *, int);
c906108c 49
a14ed312 50static void default_terminal_info (char *, int);
c906108c 51
5009afc5
AS
52static int default_watchpoint_addr_within_range (struct target_ops *,
53 CORE_ADDR, CORE_ADDR, int);
54
e0d24f8d
WZ
55static int default_region_ok_for_hw_watchpoint (CORE_ADDR, int);
56
a14ed312 57static int nosymbol (char *, CORE_ADDR *);
c906108c 58
4ecb6f27 59static void tcomplain (void) ATTR_NORETURN;
c906108c 60
a14ed312 61static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *);
c906108c 62
a14ed312 63static int return_zero (void);
c906108c 64
a14ed312 65static int return_one (void);
c906108c 66
ccaa32c7
GS
67static int return_minus_one (void);
68
a14ed312 69void target_ignore (void);
c906108c 70
a14ed312 71static void target_command (char *, int);
c906108c 72
a14ed312 73static struct target_ops *find_default_run_target (char *);
c906108c 74
4b8a223f 75static LONGEST default_xfer_partial (struct target_ops *ops,
0088c768 76 enum target_object object,
1b0ba102
AC
77 const char *annex, gdb_byte *readbuf,
78 const gdb_byte *writebuf,
8aa91c1e 79 ULONGEST offset, LONGEST len);
0088c768 80
cf7a04e8
DJ
81static LONGEST current_xfer_partial (struct target_ops *ops,
82 enum target_object object,
83 const char *annex, gdb_byte *readbuf,
84 const gdb_byte *writebuf,
85 ULONGEST offset, LONGEST len);
c906108c 86
cf7a04e8
DJ
87static LONGEST target_xfer_partial (struct target_ops *ops,
88 enum target_object object,
89 const char *annex,
90 void *readbuf, const void *writebuf,
91 ULONGEST offset, LONGEST len);
c906108c 92
c2250ad1
UW
93static struct gdbarch *default_thread_architecture (struct target_ops *ops,
94 ptid_t ptid);
95
a14ed312 96static void init_dummy_target (void);
c906108c 97
aa869812
AC
98static struct target_ops debug_target;
99
a14ed312 100static void debug_to_open (char *, int);
c906108c 101
316f2060 102static void debug_to_prepare_to_store (struct regcache *);
c906108c 103
a14ed312 104static void debug_to_files_info (struct target_ops *);
c906108c 105
a6d9a66e
UW
106static int debug_to_insert_breakpoint (struct gdbarch *,
107 struct bp_target_info *);
c906108c 108
a6d9a66e
UW
109static int debug_to_remove_breakpoint (struct gdbarch *,
110 struct bp_target_info *);
c906108c 111
ccaa32c7
GS
112static int debug_to_can_use_hw_breakpoint (int, int, int);
113
a6d9a66e
UW
114static int debug_to_insert_hw_breakpoint (struct gdbarch *,
115 struct bp_target_info *);
ccaa32c7 116
a6d9a66e
UW
117static int debug_to_remove_hw_breakpoint (struct gdbarch *,
118 struct bp_target_info *);
ccaa32c7
GS
119
120static int debug_to_insert_watchpoint (CORE_ADDR, int, int);
121
122static int debug_to_remove_watchpoint (CORE_ADDR, int, int);
123
124static int debug_to_stopped_by_watchpoint (void);
125
4aa7a7f5 126static int debug_to_stopped_data_address (struct target_ops *, CORE_ADDR *);
ccaa32c7 127
5009afc5
AS
128static int debug_to_watchpoint_addr_within_range (struct target_ops *,
129 CORE_ADDR, CORE_ADDR, int);
130
e0d24f8d
WZ
131static int debug_to_region_ok_for_hw_watchpoint (CORE_ADDR, int);
132
a14ed312 133static void debug_to_terminal_init (void);
c906108c 134
a14ed312 135static void debug_to_terminal_inferior (void);
c906108c 136
a14ed312 137static void debug_to_terminal_ours_for_output (void);
c906108c 138
a790ad35
SC
139static void debug_to_terminal_save_ours (void);
140
a14ed312 141static void debug_to_terminal_ours (void);
c906108c 142
a14ed312 143static void debug_to_terminal_info (char *, int);
c906108c 144
a14ed312 145static void debug_to_load (char *, int);
c906108c 146
a14ed312 147static int debug_to_lookup_symbol (char *, CORE_ADDR *);
c906108c 148
a14ed312 149static int debug_to_can_run (void);
c906108c 150
39f77062 151static void debug_to_notice_signals (ptid_t);
c906108c 152
94cc34af 153static void debug_to_stop (ptid_t);
c906108c 154
5ac10fd1
AC
155/* NOTE: cagney/2004-09-29: Many targets reference this variable in
156 wierd and mysterious ways. Putting the variable here lets those
157 wierd and mysterious ways keep building while they are being
158 converted to the inferior inheritance structure. */
1df84f13 159struct target_ops deprecated_child_ops;
5ac10fd1 160
c906108c 161/* Pointer to array of target architecture structures; the size of the
2bc416ba 162 array; the current index into the array; the allocated size of the
c906108c
SS
163 array. */
164struct target_ops **target_structs;
165unsigned target_struct_size;
166unsigned target_struct_index;
167unsigned target_struct_allocsize;
168#define DEFAULT_ALLOCSIZE 10
169
170/* The initial current target, so that there is always a semi-valid
171 current target. */
172
173static struct target_ops dummy_target;
174
175/* Top of target stack. */
176
258b763a 177static struct target_ops *target_stack;
c906108c
SS
178
179/* The target structure we are currently using to talk to a process
180 or file or whatever "inferior" we have. */
181
182struct target_ops current_target;
183
184/* Command list for target. */
185
186static struct cmd_list_element *targetlist = NULL;
187
cf7a04e8
DJ
188/* Nonzero if we should trust readonly sections from the
189 executable when reading memory. */
190
191static int trust_readonly = 0;
192
8defab1a
DJ
193/* Nonzero if we should show true memory content including
194 memory breakpoint inserted by gdb. */
195
196static int show_memory_breakpoints = 0;
197
c906108c
SS
198/* Non-zero if we want to see trace of target level stuff. */
199
200static int targetdebug = 0;
920d2a44
AC
201static void
202show_targetdebug (struct ui_file *file, int from_tty,
203 struct cmd_list_element *c, const char *value)
204{
205 fprintf_filtered (file, _("Target debugging is %s.\n"), value);
206}
c906108c 207
a14ed312 208static void setup_target_debug (void);
c906108c 209
4e5d721f
DE
210/* The option sets this. */
211static int stack_cache_enabled_p_1 = 1;
212/* And set_stack_cache_enabled_p updates this.
213 The reason for the separation is so that we don't flush the cache for
214 on->on transitions. */
215static int stack_cache_enabled_p = 1;
216
217/* This is called *after* the stack-cache has been set.
218 Flush the cache for off->on and on->off transitions.
219 There's no real need to flush the cache for on->off transitions,
220 except cleanliness. */
221
222static void
223set_stack_cache_enabled_p (char *args, int from_tty,
224 struct cmd_list_element *c)
225{
226 if (stack_cache_enabled_p != stack_cache_enabled_p_1)
227 target_dcache_invalidate ();
228
229 stack_cache_enabled_p = stack_cache_enabled_p_1;
230}
231
232static void
233show_stack_cache_enabled_p (struct ui_file *file, int from_tty,
234 struct cmd_list_element *c, const char *value)
235{
236 fprintf_filtered (file, _("Cache use for stack accesses is %s.\n"), value);
237}
238
239/* Cache of memory operations, to speed up remote access. */
240static DCACHE *target_dcache;
241
242/* Invalidate the target dcache. */
243
244void
245target_dcache_invalidate (void)
246{
247 dcache_invalidate (target_dcache);
248}
4930751a 249
c906108c
SS
250/* The user just typed 'target' without the name of a target. */
251
c906108c 252static void
fba45db2 253target_command (char *arg, int from_tty)
c906108c
SS
254{
255 fputs_filtered ("Argument required (target name). Try `help target'\n",
256 gdb_stdout);
257}
258
c35b1492
PA
259/* Default target_has_* methods for process_stratum targets. */
260
261int
262default_child_has_all_memory (struct target_ops *ops)
263{
264 /* If no inferior selected, then we can't read memory here. */
265 if (ptid_equal (inferior_ptid, null_ptid))
266 return 0;
267
268 return 1;
269}
270
271int
272default_child_has_memory (struct target_ops *ops)
273{
274 /* If no inferior selected, then we can't read memory here. */
275 if (ptid_equal (inferior_ptid, null_ptid))
276 return 0;
277
278 return 1;
279}
280
281int
282default_child_has_stack (struct target_ops *ops)
283{
284 /* If no inferior selected, there's no stack. */
285 if (ptid_equal (inferior_ptid, null_ptid))
286 return 0;
287
288 return 1;
289}
290
291int
292default_child_has_registers (struct target_ops *ops)
293{
294 /* Can't read registers from no inferior. */
295 if (ptid_equal (inferior_ptid, null_ptid))
296 return 0;
297
298 return 1;
299}
300
301int
302default_child_has_execution (struct target_ops *ops)
303{
304 /* If there's no thread selected, then we can't make it run through
305 hoops. */
306 if (ptid_equal (inferior_ptid, null_ptid))
307 return 0;
308
309 return 1;
310}
311
312
313int
314target_has_all_memory_1 (void)
315{
316 struct target_ops *t;
317
318 for (t = current_target.beneath; t != NULL; t = t->beneath)
319 if (t->to_has_all_memory (t))
320 return 1;
321
322 return 0;
323}
324
325int
326target_has_memory_1 (void)
327{
328 struct target_ops *t;
329
330 for (t = current_target.beneath; t != NULL; t = t->beneath)
331 if (t->to_has_memory (t))
332 return 1;
333
334 return 0;
335}
336
337int
338target_has_stack_1 (void)
339{
340 struct target_ops *t;
341
342 for (t = current_target.beneath; t != NULL; t = t->beneath)
343 if (t->to_has_stack (t))
344 return 1;
345
346 return 0;
347}
348
349int
350target_has_registers_1 (void)
351{
352 struct target_ops *t;
353
354 for (t = current_target.beneath; t != NULL; t = t->beneath)
355 if (t->to_has_registers (t))
356 return 1;
357
358 return 0;
359}
360
361int
362target_has_execution_1 (void)
363{
364 struct target_ops *t;
365
366 for (t = current_target.beneath; t != NULL; t = t->beneath)
367 if (t->to_has_execution (t))
368 return 1;
369
370 return 0;
371}
372
c906108c
SS
373/* Add a possible target architecture to the list. */
374
375void
fba45db2 376add_target (struct target_ops *t)
c906108c 377{
0088c768 378 /* Provide default values for all "must have" methods. */
0b603eba
AC
379 if (t->to_xfer_partial == NULL)
380 t->to_xfer_partial = default_xfer_partial;
0088c768 381
c35b1492
PA
382 if (t->to_has_all_memory == NULL)
383 t->to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
384
385 if (t->to_has_memory == NULL)
386 t->to_has_memory = (int (*) (struct target_ops *)) return_zero;
387
388 if (t->to_has_stack == NULL)
389 t->to_has_stack = (int (*) (struct target_ops *)) return_zero;
390
391 if (t->to_has_registers == NULL)
392 t->to_has_registers = (int (*) (struct target_ops *)) return_zero;
393
394 if (t->to_has_execution == NULL)
395 t->to_has_execution = (int (*) (struct target_ops *)) return_zero;
396
c906108c
SS
397 if (!target_structs)
398 {
399 target_struct_allocsize = DEFAULT_ALLOCSIZE;
400 target_structs = (struct target_ops **) xmalloc
401 (target_struct_allocsize * sizeof (*target_structs));
402 }
403 if (target_struct_size >= target_struct_allocsize)
404 {
405 target_struct_allocsize *= 2;
406 target_structs = (struct target_ops **)
c5aa993b
JM
407 xrealloc ((char *) target_structs,
408 target_struct_allocsize * sizeof (*target_structs));
c906108c
SS
409 }
410 target_structs[target_struct_size++] = t;
c906108c
SS
411
412 if (targetlist == NULL)
1bedd215
AC
413 add_prefix_cmd ("target", class_run, target_command, _("\
414Connect to a target machine or process.\n\
c906108c
SS
415The first argument is the type or protocol of the target machine.\n\
416Remaining arguments are interpreted by the target protocol. For more\n\
417information on the arguments for a particular protocol, type\n\
1bedd215 418`help target ' followed by the protocol name."),
c906108c
SS
419 &targetlist, "target ", 0, &cmdlist);
420 add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc, &targetlist);
421}
422
423/* Stub functions */
424
425void
fba45db2 426target_ignore (void)
c906108c
SS
427{
428}
429
7d85a9c0
JB
430void
431target_kill (void)
432{
433 struct target_ops *t;
434
435 for (t = current_target.beneath; t != NULL; t = t->beneath)
436 if (t->to_kill != NULL)
437 {
438 if (targetdebug)
439 fprintf_unfiltered (gdb_stdlog, "target_kill ()\n");
440
441 t->to_kill (t);
442 return;
443 }
444
445 noprocess ();
446}
447
11cf8741
JM
448void
449target_load (char *arg, int from_tty)
450{
4e5d721f 451 target_dcache_invalidate ();
11cf8741
JM
452 (*current_target.to_load) (arg, from_tty);
453}
454
947b8855
PA
455void
456target_create_inferior (char *exec_file, char *args,
457 char **env, int from_tty)
136d6dae
VP
458{
459 struct target_ops *t;
460 for (t = current_target.beneath; t != NULL; t = t->beneath)
461 {
462 if (t->to_create_inferior != NULL)
463 {
464 t->to_create_inferior (t, exec_file, args, env, from_tty);
947b8855
PA
465 if (targetdebug)
466 fprintf_unfiltered (gdb_stdlog,
467 "target_create_inferior (%s, %s, xxx, %d)\n",
468 exec_file, args, from_tty);
136d6dae
VP
469 return;
470 }
471 }
472
473 internal_error (__FILE__, __LINE__,
474 "could not find a target to create inferior");
475}
476
d9d2d8b6
PA
477void
478target_terminal_inferior (void)
479{
480 /* A background resume (``run&'') should leave GDB in control of the
ba7f6c64
VP
481 terminal. Use target_can_async_p, not target_is_async_p, since at
482 this point the target is not async yet. However, if sync_execution
483 is not set, we know it will become async prior to resume. */
484 if (target_can_async_p () && !sync_execution)
d9d2d8b6
PA
485 return;
486
487 /* If GDB is resuming the inferior in the foreground, install
488 inferior's terminal modes. */
489 (*current_target.to_terminal_inferior) ();
490}
136d6dae 491
c906108c 492static int
fba45db2
KB
493nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write,
494 struct target_ops *t)
c906108c 495{
c5aa993b
JM
496 errno = EIO; /* Can't read/write this location */
497 return 0; /* No bytes handled */
c906108c
SS
498}
499
500static void
fba45db2 501tcomplain (void)
c906108c 502{
8a3fe4f8 503 error (_("You can't do that when your target is `%s'"),
c906108c
SS
504 current_target.to_shortname);
505}
506
507void
fba45db2 508noprocess (void)
c906108c 509{
8a3fe4f8 510 error (_("You can't do that without a process to debug."));
c906108c
SS
511}
512
c906108c 513static int
fba45db2 514nosymbol (char *name, CORE_ADDR *addrp)
c906108c 515{
c5aa993b 516 return 1; /* Symbol does not exist in target env */
c906108c
SS
517}
518
c906108c 519static void
fba45db2 520default_terminal_info (char *args, int from_tty)
c906108c 521{
a3f17187 522 printf_unfiltered (_("No saved terminal information.\n"));
c906108c
SS
523}
524
0ef643c8
JB
525/* A default implementation for the to_get_ada_task_ptid target method.
526
527 This function builds the PTID by using both LWP and TID as part of
528 the PTID lwp and tid elements. The pid used is the pid of the
529 inferior_ptid. */
530
2c0b251b 531static ptid_t
0ef643c8
JB
532default_get_ada_task_ptid (long lwp, long tid)
533{
534 return ptid_build (ptid_get_pid (inferior_ptid), lwp, tid);
535}
536
7998dfc3
AC
537/* Go through the target stack from top to bottom, copying over zero
538 entries in current_target, then filling in still empty entries. In
539 effect, we are doing class inheritance through the pushed target
540 vectors.
541
542 NOTE: cagney/2003-10-17: The problem with this inheritance, as it
543 is currently implemented, is that it discards any knowledge of
544 which target an inherited method originally belonged to.
545 Consequently, new new target methods should instead explicitly and
546 locally search the target stack for the target that can handle the
547 request. */
c906108c
SS
548
549static void
7998dfc3 550update_current_target (void)
c906108c 551{
7998dfc3
AC
552 struct target_ops *t;
553
08d8bcd7 554 /* First, reset current's contents. */
7998dfc3
AC
555 memset (&current_target, 0, sizeof (current_target));
556
557#define INHERIT(FIELD, TARGET) \
558 if (!current_target.FIELD) \
559 current_target.FIELD = (TARGET)->FIELD
560
561 for (t = target_stack; t; t = t->beneath)
562 {
563 INHERIT (to_shortname, t);
564 INHERIT (to_longname, t);
565 INHERIT (to_doc, t);
b52323fa
UW
566 /* Do not inherit to_open. */
567 /* Do not inherit to_close. */
136d6dae 568 /* Do not inherit to_attach. */
7998dfc3 569 INHERIT (to_post_attach, t);
dc177b7a 570 INHERIT (to_attach_no_wait, t);
136d6dae 571 /* Do not inherit to_detach. */
597320e7 572 /* Do not inherit to_disconnect. */
28439f5e 573 /* Do not inherit to_resume. */
117de6a9 574 /* Do not inherit to_wait. */
28439f5e
PA
575 /* Do not inherit to_fetch_registers. */
576 /* Do not inherit to_store_registers. */
7998dfc3 577 INHERIT (to_prepare_to_store, t);
c8e73a31 578 INHERIT (deprecated_xfer_memory, t);
7998dfc3
AC
579 INHERIT (to_files_info, t);
580 INHERIT (to_insert_breakpoint, t);
581 INHERIT (to_remove_breakpoint, t);
582 INHERIT (to_can_use_hw_breakpoint, t);
583 INHERIT (to_insert_hw_breakpoint, t);
584 INHERIT (to_remove_hw_breakpoint, t);
585 INHERIT (to_insert_watchpoint, t);
586 INHERIT (to_remove_watchpoint, t);
587 INHERIT (to_stopped_data_address, t);
74174d2e 588 INHERIT (to_have_steppable_watchpoint, t);
7998dfc3 589 INHERIT (to_have_continuable_watchpoint, t);
5009afc5
AS
590 INHERIT (to_stopped_by_watchpoint, t);
591 INHERIT (to_watchpoint_addr_within_range, t);
e0d24f8d 592 INHERIT (to_region_ok_for_hw_watchpoint, t);
7998dfc3
AC
593 INHERIT (to_terminal_init, t);
594 INHERIT (to_terminal_inferior, t);
595 INHERIT (to_terminal_ours_for_output, t);
596 INHERIT (to_terminal_ours, t);
597 INHERIT (to_terminal_save_ours, t);
598 INHERIT (to_terminal_info, t);
7d85a9c0 599 /* Do not inherit to_kill. */
7998dfc3
AC
600 INHERIT (to_load, t);
601 INHERIT (to_lookup_symbol, t);
136d6dae 602 /* Do no inherit to_create_inferior. */
7998dfc3
AC
603 INHERIT (to_post_startup_inferior, t);
604 INHERIT (to_acknowledge_created_inferior, t);
605 INHERIT (to_insert_fork_catchpoint, t);
606 INHERIT (to_remove_fork_catchpoint, t);
607 INHERIT (to_insert_vfork_catchpoint, t);
608 INHERIT (to_remove_vfork_catchpoint, t);
ee057212 609 /* Do not inherit to_follow_fork. */
7998dfc3
AC
610 INHERIT (to_insert_exec_catchpoint, t);
611 INHERIT (to_remove_exec_catchpoint, t);
a96d9b2e 612 INHERIT (to_set_syscall_catchpoint, t);
7998dfc3 613 INHERIT (to_has_exited, t);
117de6a9 614 /* Do not inherit to_mourn_inferiour. */
7998dfc3
AC
615 INHERIT (to_can_run, t);
616 INHERIT (to_notice_signals, t);
28439f5e
PA
617 /* Do not inherit to_thread_alive. */
618 /* Do not inherit to_find_new_threads. */
117de6a9 619 /* Do not inherit to_pid_to_str. */
7998dfc3
AC
620 INHERIT (to_extra_thread_info, t);
621 INHERIT (to_stop, t);
4b8a223f 622 /* Do not inherit to_xfer_partial. */
7998dfc3 623 INHERIT (to_rcmd, t);
7998dfc3 624 INHERIT (to_pid_to_exec_file, t);
49d03eab 625 INHERIT (to_log_command, t);
7998dfc3 626 INHERIT (to_stratum, t);
c35b1492
PA
627 /* Do not inherit to_has_all_memory */
628 /* Do not inherit to_has_memory */
629 /* Do not inherit to_has_stack */
630 /* Do not inherit to_has_registers */
631 /* Do not inherit to_has_execution */
7998dfc3 632 INHERIT (to_has_thread_control, t);
7998dfc3
AC
633 INHERIT (to_can_async_p, t);
634 INHERIT (to_is_async_p, t);
635 INHERIT (to_async, t);
b84876c2 636 INHERIT (to_async_mask, t);
7998dfc3
AC
637 INHERIT (to_find_memory_regions, t);
638 INHERIT (to_make_corefile_notes, t);
6b04bdb7
MS
639 INHERIT (to_get_bookmark, t);
640 INHERIT (to_goto_bookmark, t);
117de6a9 641 /* Do not inherit to_get_thread_local_address. */
b2175913 642 INHERIT (to_can_execute_reverse, t);
c2250ad1 643 INHERIT (to_thread_architecture, t);
424163ea 644 /* Do not inherit to_read_description. */
0ef643c8 645 INHERIT (to_get_ada_task_ptid, t);
08388c79 646 /* Do not inherit to_search_memory. */
8a305172 647 INHERIT (to_supports_multi_process, t);
35b1e5cc
SS
648 INHERIT (to_trace_init, t);
649 INHERIT (to_download_tracepoint, t);
650 INHERIT (to_download_trace_state_variable, t);
651 INHERIT (to_trace_set_readonly_regions, t);
652 INHERIT (to_trace_start, t);
653 INHERIT (to_get_trace_status, t);
654 INHERIT (to_trace_stop, t);
655 INHERIT (to_trace_find, t);
656 INHERIT (to_get_trace_state_variable_value, t);
00bf0b85
SS
657 INHERIT (to_save_trace_data, t);
658 INHERIT (to_upload_tracepoints, t);
659 INHERIT (to_upload_trace_state_variables, t);
660 INHERIT (to_get_raw_trace_data, t);
35b1e5cc 661 INHERIT (to_set_disconnected_tracing, t);
4daf5ac0 662 INHERIT (to_set_circular_trace_buffer, t);
7998dfc3 663 INHERIT (to_magic, t);
fd79ecee 664 /* Do not inherit to_memory_map. */
a76d924d
DJ
665 /* Do not inherit to_flash_erase. */
666 /* Do not inherit to_flash_done. */
7998dfc3
AC
667 }
668#undef INHERIT
669
670 /* Clean up a target struct so it no longer has any zero pointers in
0088c768
AC
671 it. Some entries are defaulted to a method that print an error,
672 others are hard-wired to a standard recursive default. */
c906108c
SS
673
674#define de_fault(field, value) \
7998dfc3
AC
675 if (!current_target.field) \
676 current_target.field = value
0d06e24b 677
2bc416ba
DJ
678 de_fault (to_open,
679 (void (*) (char *, int))
0d06e24b 680 tcomplain);
2bc416ba
DJ
681 de_fault (to_close,
682 (void (*) (int))
0d06e24b 683 target_ignore);
2bc416ba
DJ
684 de_fault (to_post_attach,
685 (void (*) (int))
0d06e24b 686 target_ignore);
2bc416ba 687 de_fault (to_prepare_to_store,
316f2060 688 (void (*) (struct regcache *))
0d06e24b 689 noprocess);
2bc416ba
DJ
690 de_fault (deprecated_xfer_memory,
691 (int (*) (CORE_ADDR, gdb_byte *, int, int, struct mem_attrib *, struct target_ops *))
0d06e24b 692 nomemory);
2bc416ba
DJ
693 de_fault (to_files_info,
694 (void (*) (struct target_ops *))
0d06e24b 695 target_ignore);
2bc416ba 696 de_fault (to_insert_breakpoint,
0d06e24b 697 memory_insert_breakpoint);
2bc416ba 698 de_fault (to_remove_breakpoint,
0d06e24b 699 memory_remove_breakpoint);
ccaa32c7
GS
700 de_fault (to_can_use_hw_breakpoint,
701 (int (*) (int, int, int))
702 return_zero);
703 de_fault (to_insert_hw_breakpoint,
a6d9a66e 704 (int (*) (struct gdbarch *, struct bp_target_info *))
ccaa32c7
GS
705 return_minus_one);
706 de_fault (to_remove_hw_breakpoint,
a6d9a66e 707 (int (*) (struct gdbarch *, struct bp_target_info *))
ccaa32c7
GS
708 return_minus_one);
709 de_fault (to_insert_watchpoint,
710 (int (*) (CORE_ADDR, int, int))
711 return_minus_one);
712 de_fault (to_remove_watchpoint,
713 (int (*) (CORE_ADDR, int, int))
714 return_minus_one);
715 de_fault (to_stopped_by_watchpoint,
716 (int (*) (void))
717 return_zero);
718 de_fault (to_stopped_data_address,
4aa7a7f5 719 (int (*) (struct target_ops *, CORE_ADDR *))
ccaa32c7 720 return_zero);
5009afc5
AS
721 de_fault (to_watchpoint_addr_within_range,
722 default_watchpoint_addr_within_range);
e0d24f8d
WZ
723 de_fault (to_region_ok_for_hw_watchpoint,
724 default_region_ok_for_hw_watchpoint);
2bc416ba
DJ
725 de_fault (to_terminal_init,
726 (void (*) (void))
0d06e24b 727 target_ignore);
2bc416ba
DJ
728 de_fault (to_terminal_inferior,
729 (void (*) (void))
0d06e24b 730 target_ignore);
2bc416ba
DJ
731 de_fault (to_terminal_ours_for_output,
732 (void (*) (void))
0d06e24b 733 target_ignore);
2bc416ba
DJ
734 de_fault (to_terminal_ours,
735 (void (*) (void))
0d06e24b 736 target_ignore);
2bc416ba
DJ
737 de_fault (to_terminal_save_ours,
738 (void (*) (void))
a790ad35 739 target_ignore);
2bc416ba 740 de_fault (to_terminal_info,
0d06e24b 741 default_terminal_info);
2bc416ba
DJ
742 de_fault (to_load,
743 (void (*) (char *, int))
0d06e24b 744 tcomplain);
2bc416ba
DJ
745 de_fault (to_lookup_symbol,
746 (int (*) (char *, CORE_ADDR *))
0d06e24b 747 nosymbol);
2bc416ba
DJ
748 de_fault (to_post_startup_inferior,
749 (void (*) (ptid_t))
0d06e24b 750 target_ignore);
2bc416ba
DJ
751 de_fault (to_acknowledge_created_inferior,
752 (void (*) (int))
0d06e24b 753 target_ignore);
2bc416ba
DJ
754 de_fault (to_insert_fork_catchpoint,
755 (void (*) (int))
0d06e24b 756 tcomplain);
2bc416ba
DJ
757 de_fault (to_remove_fork_catchpoint,
758 (int (*) (int))
0d06e24b 759 tcomplain);
2bc416ba
DJ
760 de_fault (to_insert_vfork_catchpoint,
761 (void (*) (int))
0d06e24b 762 tcomplain);
2bc416ba
DJ
763 de_fault (to_remove_vfork_catchpoint,
764 (int (*) (int))
0d06e24b 765 tcomplain);
2bc416ba
DJ
766 de_fault (to_insert_exec_catchpoint,
767 (void (*) (int))
0d06e24b 768 tcomplain);
2bc416ba
DJ
769 de_fault (to_remove_exec_catchpoint,
770 (int (*) (int))
0d06e24b 771 tcomplain);
a96d9b2e
SDJ
772 de_fault (to_set_syscall_catchpoint,
773 (int (*) (int, int, int, int, int *))
774 tcomplain);
2bc416ba
DJ
775 de_fault (to_has_exited,
776 (int (*) (int, int, int *))
0d06e24b 777 return_zero);
2bc416ba 778 de_fault (to_can_run,
0d06e24b 779 return_zero);
2bc416ba
DJ
780 de_fault (to_notice_signals,
781 (void (*) (ptid_t))
0d06e24b 782 target_ignore);
2bc416ba
DJ
783 de_fault (to_extra_thread_info,
784 (char *(*) (struct thread_info *))
0d06e24b 785 return_zero);
2bc416ba 786 de_fault (to_stop,
94cc34af 787 (void (*) (ptid_t))
0d06e24b 788 target_ignore);
cf7a04e8 789 current_target.to_xfer_partial = current_xfer_partial;
2bc416ba
DJ
790 de_fault (to_rcmd,
791 (void (*) (char *, struct ui_file *))
0d06e24b 792 tcomplain);
2bc416ba
DJ
793 de_fault (to_pid_to_exec_file,
794 (char *(*) (int))
0d06e24b 795 return_zero);
2bc416ba
DJ
796 de_fault (to_async,
797 (void (*) (void (*) (enum inferior_event_type, void*), void*))
0d06e24b 798 tcomplain);
b84876c2
PA
799 de_fault (to_async_mask,
800 (int (*) (int))
801 return_one);
c2250ad1
UW
802 de_fault (to_thread_architecture,
803 default_thread_architecture);
424163ea 804 current_target.to_read_description = NULL;
0ef643c8
JB
805 de_fault (to_get_ada_task_ptid,
806 (ptid_t (*) (long, long))
807 default_get_ada_task_ptid);
8a305172
PA
808 de_fault (to_supports_multi_process,
809 (int (*) (void))
810 return_zero);
35b1e5cc
SS
811 de_fault (to_trace_init,
812 (void (*) (void))
813 tcomplain);
814 de_fault (to_download_tracepoint,
815 (void (*) (struct breakpoint *))
816 tcomplain);
817 de_fault (to_download_trace_state_variable,
818 (void (*) (struct trace_state_variable *))
819 tcomplain);
820 de_fault (to_trace_set_readonly_regions,
821 (void (*) (void))
822 tcomplain);
823 de_fault (to_trace_start,
824 (void (*) (void))
825 tcomplain);
826 de_fault (to_get_trace_status,
00bf0b85 827 (int (*) (struct trace_status *))
35b1e5cc
SS
828 return_minus_one);
829 de_fault (to_trace_stop,
830 (void (*) (void))
831 tcomplain);
832 de_fault (to_trace_find,
833 (int (*) (enum trace_find_type, int, ULONGEST, ULONGEST, int *))
834 return_zero);
835 de_fault (to_get_trace_state_variable_value,
836 (int (*) (int, LONGEST *))
837 return_zero);
00bf0b85 838 de_fault (to_save_trace_data,
011aacb0 839 (int (*) (const char *))
00bf0b85
SS
840 tcomplain);
841 de_fault (to_upload_tracepoints,
842 (int (*) (struct uploaded_tp **))
843 return_zero);
844 de_fault (to_upload_trace_state_variables,
845 (int (*) (struct uploaded_tsv **))
846 return_zero);
847 de_fault (to_get_raw_trace_data,
848 (LONGEST (*) (gdb_byte *, ULONGEST, LONGEST))
849 tcomplain);
35b1e5cc
SS
850 de_fault (to_set_disconnected_tracing,
851 (void (*) (int))
4daf5ac0
SS
852 target_ignore);
853 de_fault (to_set_circular_trace_buffer,
854 (void (*) (int))
855 target_ignore);
c906108c 856#undef de_fault
c906108c 857
7998dfc3
AC
858 /* Finally, position the target-stack beneath the squashed
859 "current_target". That way code looking for a non-inherited
860 target method can quickly and simply find it. */
861 current_target.beneath = target_stack;
b4b61fdb
DJ
862
863 if (targetdebug)
864 setup_target_debug ();
c906108c
SS
865}
866
867/* Push a new target type into the stack of the existing target accessors,
868 possibly superseding some of the existing accessors.
869
870 Result is zero if the pushed target ended up on top of the stack,
871 nonzero if at least one target is on top of it.
872
873 Rather than allow an empty stack, we always have the dummy target at
874 the bottom stratum, so we can call the function vectors without
875 checking them. */
876
877int
fba45db2 878push_target (struct target_ops *t)
c906108c 879{
258b763a 880 struct target_ops **cur;
c906108c
SS
881
882 /* Check magic number. If wrong, it probably means someone changed
883 the struct definition, but not all the places that initialize one. */
884 if (t->to_magic != OPS_MAGIC)
885 {
c5aa993b
JM
886 fprintf_unfiltered (gdb_stderr,
887 "Magic number of %s target struct wrong\n",
888 t->to_shortname);
e2e0b3e5 889 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
c906108c
SS
890 }
891
258b763a
AC
892 /* Find the proper stratum to install this target in. */
893 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
c906108c 894 {
258b763a 895 if ((int) (t->to_stratum) >= (int) (*cur)->to_stratum)
c906108c
SS
896 break;
897 }
898
258b763a 899 /* If there's already targets at this stratum, remove them. */
88c231eb 900 /* FIXME: cagney/2003-10-15: I think this should be popping all
258b763a
AC
901 targets to CUR, and not just those at this stratum level. */
902 while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum)
903 {
904 /* There's already something at this stratum level. Close it,
905 and un-hook it from the stack. */
906 struct target_ops *tmp = (*cur);
907 (*cur) = (*cur)->beneath;
908 tmp->beneath = NULL;
f1c07ab0 909 target_close (tmp, 0);
258b763a 910 }
c906108c
SS
911
912 /* We have removed all targets in our stratum, now add the new one. */
258b763a
AC
913 t->beneath = (*cur);
914 (*cur) = t;
c906108c
SS
915
916 update_current_target ();
917
258b763a
AC
918 /* Not on top? */
919 return (t != target_stack);
c906108c
SS
920}
921
2bc416ba 922/* Remove a target_ops vector from the stack, wherever it may be.
c906108c
SS
923 Return how many times it was removed (0 or 1). */
924
925int
fba45db2 926unpush_target (struct target_ops *t)
c906108c 927{
258b763a
AC
928 struct target_ops **cur;
929 struct target_ops *tmp;
c906108c 930
c8d104ad
PA
931 if (t->to_stratum == dummy_stratum)
932 internal_error (__FILE__, __LINE__,
933 "Attempt to unpush the dummy target");
934
c906108c
SS
935 /* Look for the specified target. Note that we assume that a target
936 can only occur once in the target stack. */
937
258b763a
AC
938 for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath)
939 {
940 if ((*cur) == t)
941 break;
942 }
c906108c 943
258b763a 944 if ((*cur) == NULL)
c906108c
SS
945 return 0; /* Didn't find target_ops, quit now */
946
5269965e
AC
947 /* NOTE: cagney/2003-12-06: In '94 the close call was made
948 unconditional by moving it to before the above check that the
949 target was in the target stack (something about "Change the way
950 pushing and popping of targets work to support target overlays
951 and inheritance"). This doesn't make much sense - only open
952 targets should be closed. */
953 target_close (t, 0);
954
c906108c 955 /* Unchain the target */
258b763a
AC
956 tmp = (*cur);
957 (*cur) = (*cur)->beneath;
958 tmp->beneath = NULL;
c906108c
SS
959
960 update_current_target ();
c906108c
SS
961
962 return 1;
963}
964
965void
fba45db2 966pop_target (void)
c906108c 967{
b52323fa 968 target_close (target_stack, 0); /* Let it clean up */
258b763a 969 if (unpush_target (target_stack) == 1)
c906108c
SS
970 return;
971
c5aa993b
JM
972 fprintf_unfiltered (gdb_stderr,
973 "pop_target couldn't find target %s\n",
974 current_target.to_shortname);
e2e0b3e5 975 internal_error (__FILE__, __LINE__, _("failed internal consistency check"));
c906108c
SS
976}
977
aa76d38d 978void
87ab71f0 979pop_all_targets_above (enum strata above_stratum, int quitting)
aa76d38d 980{
87ab71f0 981 while ((int) (current_target.to_stratum) > (int) above_stratum)
aa76d38d 982 {
b52323fa 983 target_close (target_stack, quitting);
aa76d38d
PA
984 if (!unpush_target (target_stack))
985 {
986 fprintf_unfiltered (gdb_stderr,
987 "pop_all_targets couldn't find target %s\n",
b52323fa 988 target_stack->to_shortname);
aa76d38d
PA
989 internal_error (__FILE__, __LINE__,
990 _("failed internal consistency check"));
991 break;
992 }
993 }
994}
995
87ab71f0
PA
996void
997pop_all_targets (int quitting)
998{
999 pop_all_targets_above (dummy_stratum, quitting);
1000}
1001
72f5cf0e 1002/* Using the objfile specified in OBJFILE, find the address for the
9e35dae4
DJ
1003 current thread's thread-local storage with offset OFFSET. */
1004CORE_ADDR
1005target_translate_tls_address (struct objfile *objfile, CORE_ADDR offset)
1006{
1007 volatile CORE_ADDR addr = 0;
117de6a9
PA
1008 struct target_ops *target;
1009
1010 for (target = current_target.beneath;
1011 target != NULL;
1012 target = target->beneath)
1013 {
1014 if (target->to_get_thread_local_address != NULL)
1015 break;
1016 }
9e35dae4 1017
117de6a9 1018 if (target != NULL
1cf3db46 1019 && gdbarch_fetch_tls_load_module_address_p (target_gdbarch))
9e35dae4
DJ
1020 {
1021 ptid_t ptid = inferior_ptid;
1022 volatile struct gdb_exception ex;
1023
1024 TRY_CATCH (ex, RETURN_MASK_ALL)
1025 {
1026 CORE_ADDR lm_addr;
1027
1028 /* Fetch the load module address for this objfile. */
1cf3db46 1029 lm_addr = gdbarch_fetch_tls_load_module_address (target_gdbarch,
9e35dae4
DJ
1030 objfile);
1031 /* If it's 0, throw the appropriate exception. */
1032 if (lm_addr == 0)
1033 throw_error (TLS_LOAD_MODULE_NOT_FOUND_ERROR,
1034 _("TLS load module not found"));
1035
117de6a9 1036 addr = target->to_get_thread_local_address (target, ptid, lm_addr, offset);
9e35dae4
DJ
1037 }
1038 /* If an error occurred, print TLS related messages here. Otherwise,
1039 throw the error to some higher catcher. */
1040 if (ex.reason < 0)
1041 {
1042 int objfile_is_library = (objfile->flags & OBJF_SHARED);
1043
1044 switch (ex.error)
1045 {
1046 case TLS_NO_LIBRARY_SUPPORT_ERROR:
1047 error (_("Cannot find thread-local variables in this thread library."));
1048 break;
1049 case TLS_LOAD_MODULE_NOT_FOUND_ERROR:
1050 if (objfile_is_library)
1051 error (_("Cannot find shared library `%s' in dynamic"
1052 " linker's load module list"), objfile->name);
1053 else
1054 error (_("Cannot find executable file `%s' in dynamic"
1055 " linker's load module list"), objfile->name);
1056 break;
1057 case TLS_NOT_ALLOCATED_YET_ERROR:
1058 if (objfile_is_library)
1059 error (_("The inferior has not yet allocated storage for"
1060 " thread-local variables in\n"
1061 "the shared library `%s'\n"
1062 "for %s"),
1063 objfile->name, target_pid_to_str (ptid));
1064 else
1065 error (_("The inferior has not yet allocated storage for"
1066 " thread-local variables in\n"
1067 "the executable `%s'\n"
1068 "for %s"),
1069 objfile->name, target_pid_to_str (ptid));
1070 break;
1071 case TLS_GENERIC_ERROR:
1072 if (objfile_is_library)
1073 error (_("Cannot find thread-local storage for %s, "
1074 "shared library %s:\n%s"),
1075 target_pid_to_str (ptid),
1076 objfile->name, ex.message);
1077 else
1078 error (_("Cannot find thread-local storage for %s, "
1079 "executable file %s:\n%s"),
1080 target_pid_to_str (ptid),
1081 objfile->name, ex.message);
1082 break;
1083 default:
1084 throw_exception (ex);
1085 break;
1086 }
1087 }
1088 }
1089 /* It wouldn't be wrong here to try a gdbarch method, too; finding
1090 TLS is an ABI-specific thing. But we don't do that yet. */
1091 else
1092 error (_("Cannot find thread-local variables on this target"));
1093
1094 return addr;
1095}
1096
c906108c
SS
1097#undef MIN
1098#define MIN(A, B) (((A) <= (B)) ? (A) : (B))
1099
1100/* target_read_string -- read a null terminated string, up to LEN bytes,
1101 from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful.
1102 Set *STRING to a pointer to malloc'd memory containing the data; the caller
1103 is responsible for freeing it. Return the number of bytes successfully
1104 read. */
1105
1106int
fba45db2 1107target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop)
c906108c
SS
1108{
1109 int tlen, origlen, offset, i;
1b0ba102 1110 gdb_byte buf[4];
c906108c
SS
1111 int errcode = 0;
1112 char *buffer;
1113 int buffer_allocated;
1114 char *bufptr;
1115 unsigned int nbytes_read = 0;
1116
6217bf3e
MS
1117 gdb_assert (string);
1118
c906108c
SS
1119 /* Small for testing. */
1120 buffer_allocated = 4;
1121 buffer = xmalloc (buffer_allocated);
1122 bufptr = buffer;
1123
1124 origlen = len;
1125
1126 while (len > 0)
1127 {
1128 tlen = MIN (len, 4 - (memaddr & 3));
1129 offset = memaddr & 3;
1130
1b0ba102 1131 errcode = target_read_memory (memaddr & ~3, buf, sizeof buf);
c906108c
SS
1132 if (errcode != 0)
1133 {
1134 /* The transfer request might have crossed the boundary to an
1135 unallocated region of memory. Retry the transfer, requesting
1136 a single byte. */
1137 tlen = 1;
1138 offset = 0;
b8eb5af0 1139 errcode = target_read_memory (memaddr, buf, 1);
c906108c
SS
1140 if (errcode != 0)
1141 goto done;
1142 }
1143
1144 if (bufptr - buffer + tlen > buffer_allocated)
1145 {
1146 unsigned int bytes;
1147 bytes = bufptr - buffer;
1148 buffer_allocated *= 2;
1149 buffer = xrealloc (buffer, buffer_allocated);
1150 bufptr = buffer + bytes;
1151 }
1152
1153 for (i = 0; i < tlen; i++)
1154 {
1155 *bufptr++ = buf[i + offset];
1156 if (buf[i + offset] == '\000')
1157 {
1158 nbytes_read += i + 1;
1159 goto done;
1160 }
1161 }
1162
1163 memaddr += tlen;
1164 len -= tlen;
1165 nbytes_read += tlen;
1166 }
c5aa993b 1167done:
6217bf3e 1168 *string = buffer;
c906108c
SS
1169 if (errnop != NULL)
1170 *errnop = errcode;
c906108c
SS
1171 return nbytes_read;
1172}
1173
07b82ea5
PA
1174struct target_section_table *
1175target_get_section_table (struct target_ops *target)
1176{
1177 struct target_ops *t;
1178
1179 if (targetdebug)
1180 fprintf_unfiltered (gdb_stdlog, "target_get_section_table ()\n");
1181
1182 for (t = target; t != NULL; t = t->beneath)
1183 if (t->to_get_section_table != NULL)
1184 return (*t->to_get_section_table) (t);
1185
1186 return NULL;
1187}
1188
8db32d44 1189/* Find a section containing ADDR. */
07b82ea5 1190
0542c86d 1191struct target_section *
8db32d44
AC
1192target_section_by_addr (struct target_ops *target, CORE_ADDR addr)
1193{
07b82ea5 1194 struct target_section_table *table = target_get_section_table (target);
0542c86d 1195 struct target_section *secp;
07b82ea5
PA
1196
1197 if (table == NULL)
1198 return NULL;
1199
1200 for (secp = table->sections; secp < table->sections_end; secp++)
8db32d44
AC
1201 {
1202 if (addr >= secp->addr && addr < secp->endaddr)
1203 return secp;
1204 }
1205 return NULL;
1206}
1207
7f79c47e
DE
1208/* Perform a partial memory transfer.
1209 For docs see target.h, to_xfer_partial. */
cf7a04e8
DJ
1210
1211static LONGEST
4e5d721f
DE
1212memory_xfer_partial (struct target_ops *ops, enum target_object object,
1213 void *readbuf, const void *writebuf, ULONGEST memaddr,
1214 LONGEST len)
0779438d 1215{
cf7a04e8
DJ
1216 LONGEST res;
1217 int reg_len;
1218 struct mem_region *region;
4e5d721f 1219 struct inferior *inf;
cf7a04e8
DJ
1220
1221 /* Zero length requests are ok and require no work. */
1222 if (len == 0)
1223 return 0;
1224
07b82ea5
PA
1225 /* For accesses to unmapped overlay sections, read directly from
1226 files. Must do this first, as MEMADDR may need adjustment. */
1227 if (readbuf != NULL && overlay_debugging)
1228 {
1229 struct obj_section *section = find_pc_overlay (memaddr);
1230 if (pc_in_unmapped_range (memaddr, section))
1231 {
1232 struct target_section_table *table
1233 = target_get_section_table (ops);
1234 const char *section_name = section->the_bfd_section->name;
1235 memaddr = overlay_mapped_address (memaddr, section);
1236 return section_table_xfer_memory_partial (readbuf, writebuf,
1237 memaddr, len,
1238 table->sections,
1239 table->sections_end,
1240 section_name);
1241 }
1242 }
1243
1244 /* Try the executable files, if "trust-readonly-sections" is set. */
cf7a04e8
DJ
1245 if (readbuf != NULL && trust_readonly)
1246 {
0542c86d 1247 struct target_section *secp;
07b82ea5 1248 struct target_section_table *table;
cf7a04e8
DJ
1249
1250 secp = target_section_by_addr (ops, memaddr);
1251 if (secp != NULL
1252 && (bfd_get_section_flags (secp->bfd, secp->the_bfd_section)
1253 & SEC_READONLY))
07b82ea5
PA
1254 {
1255 table = target_get_section_table (ops);
1256 return section_table_xfer_memory_partial (readbuf, writebuf,
1257 memaddr, len,
1258 table->sections,
1259 table->sections_end,
1260 NULL);
1261 }
98646950
UW
1262 }
1263
cf7a04e8
DJ
1264 /* Try GDB's internal data cache. */
1265 region = lookup_mem_region (memaddr);
4b5752d0
VP
1266 /* region->hi == 0 means there's no upper bound. */
1267 if (memaddr + len < region->hi || region->hi == 0)
cf7a04e8
DJ
1268 reg_len = len;
1269 else
1270 reg_len = region->hi - memaddr;
1271
1272 switch (region->attrib.mode)
1273 {
1274 case MEM_RO:
1275 if (writebuf != NULL)
1276 return -1;
1277 break;
1278
1279 case MEM_WO:
1280 if (readbuf != NULL)
1281 return -1;
1282 break;
a76d924d
DJ
1283
1284 case MEM_FLASH:
1285 /* We only support writing to flash during "load" for now. */
1286 if (writebuf != NULL)
1287 error (_("Writing to flash memory forbidden in this context"));
1288 break;
4b5752d0
VP
1289
1290 case MEM_NONE:
1291 return -1;
cf7a04e8
DJ
1292 }
1293
6c95b8df
PA
1294 if (!ptid_equal (inferior_ptid, null_ptid))
1295 inf = find_inferior_pid (ptid_get_pid (inferior_ptid));
1296 else
1297 inf = NULL;
4e5d721f
DE
1298
1299 if (inf != NULL
2f4d8875
PA
1300 /* The dcache reads whole cache lines; that doesn't play well
1301 with reading from a trace buffer, because reading outside of
1302 the collected memory range fails. */
1303 && get_traceframe_number () == -1
4e5d721f
DE
1304 && (region->attrib.cache
1305 || (stack_cache_enabled_p && object == TARGET_OBJECT_STACK_MEMORY)))
cf7a04e8 1306 {
cf7a04e8 1307 if (readbuf != NULL)
25f122dc 1308 res = dcache_xfer_memory (ops, target_dcache, memaddr, readbuf,
cf7a04e8
DJ
1309 reg_len, 0);
1310 else
1311 /* FIXME drow/2006-08-09: If we're going to preserve const
1312 correctness dcache_xfer_memory should take readbuf and
1313 writebuf. */
25f122dc 1314 res = dcache_xfer_memory (ops, target_dcache, memaddr,
cf7a04e8
DJ
1315 (void *) writebuf,
1316 reg_len, 1);
1317 if (res <= 0)
1318 return -1;
1319 else
8defab1a
DJ
1320 {
1321 if (readbuf && !show_memory_breakpoints)
1322 breakpoint_restore_shadows (readbuf, memaddr, reg_len);
1323 return res;
1324 }
cf7a04e8
DJ
1325 }
1326
1327 /* If none of those methods found the memory we wanted, fall back
1328 to a target partial transfer. Normally a single call to
1329 to_xfer_partial is enough; if it doesn't recognize an object
1330 it will call the to_xfer_partial of the next target down.
1331 But for memory this won't do. Memory is the only target
1332 object which can be read from more than one valid target.
1333 A core file, for instance, could have some of memory but
1334 delegate other bits to the target below it. So, we must
1335 manually try all targets. */
1336
1337 do
1338 {
1339 res = ops->to_xfer_partial (ops, TARGET_OBJECT_MEMORY, NULL,
4b5752d0 1340 readbuf, writebuf, memaddr, reg_len);
cf7a04e8 1341 if (res > 0)
8defab1a 1342 break;
cf7a04e8 1343
5ad3a4ca
DJ
1344 /* We want to continue past core files to executables, but not
1345 past a running target's memory. */
c35b1492 1346 if (ops->to_has_all_memory (ops))
8defab1a 1347 break;
5ad3a4ca 1348
cf7a04e8
DJ
1349 ops = ops->beneath;
1350 }
1351 while (ops != NULL);
1352
8defab1a
DJ
1353 if (readbuf && !show_memory_breakpoints)
1354 breakpoint_restore_shadows (readbuf, memaddr, reg_len);
1355
41dcd03f
DE
1356 /* Make sure the cache gets updated no matter what - if we are writing
1357 to the stack. Even if this write is not tagged as such, we still need
1358 to update the cache. */
1359
1360 if (res > 0
1361 && inf != NULL
1362 && writebuf != NULL
1363 && !region->attrib.cache
1364 && stack_cache_enabled_p
1365 && object != TARGET_OBJECT_STACK_MEMORY)
1366 {
7d4f32d3 1367 dcache_update (target_dcache, memaddr, (void *) writebuf, res);
41dcd03f
DE
1368 }
1369
cf7a04e8
DJ
1370 /* If we still haven't got anything, return the last error. We
1371 give up. */
1372 return res;
0779438d
AC
1373}
1374
8defab1a
DJ
1375static void
1376restore_show_memory_breakpoints (void *arg)
1377{
1378 show_memory_breakpoints = (uintptr_t) arg;
1379}
1380
1381struct cleanup *
1382make_show_memory_breakpoints_cleanup (int show)
1383{
1384 int current = show_memory_breakpoints;
1385 show_memory_breakpoints = show;
1386
1387 return make_cleanup (restore_show_memory_breakpoints,
1388 (void *) (uintptr_t) current);
1389}
1390
7f79c47e
DE
1391/* For docs see target.h, to_xfer_partial. */
1392
27394598
AC
1393static LONGEST
1394target_xfer_partial (struct target_ops *ops,
1395 enum target_object object, const char *annex,
1396 void *readbuf, const void *writebuf,
1397 ULONGEST offset, LONGEST len)
1398{
1399 LONGEST retval;
1400
1401 gdb_assert (ops->to_xfer_partial != NULL);
cf7a04e8
DJ
1402
1403 /* If this is a memory transfer, let the memory-specific code
1404 have a look at it instead. Memory transfers are more
1405 complicated. */
4e5d721f
DE
1406 if (object == TARGET_OBJECT_MEMORY || object == TARGET_OBJECT_STACK_MEMORY)
1407 retval = memory_xfer_partial (ops, object, readbuf,
1408 writebuf, offset, len);
cf7a04e8
DJ
1409 else
1410 {
1411 enum target_object raw_object = object;
1412
1413 /* If this is a raw memory transfer, request the normal
1414 memory object from other layers. */
1415 if (raw_object == TARGET_OBJECT_RAW_MEMORY)
1416 raw_object = TARGET_OBJECT_MEMORY;
1417
1418 retval = ops->to_xfer_partial (ops, raw_object, annex, readbuf,
1419 writebuf, offset, len);
1420 }
1421
27394598
AC
1422 if (targetdebug)
1423 {
1424 const unsigned char *myaddr = NULL;
1425
1426 fprintf_unfiltered (gdb_stdlog,
53b71562 1427 "%s:target_xfer_partial (%d, %s, %s, %s, %s, %s) = %s",
27394598
AC
1428 ops->to_shortname,
1429 (int) object,
1430 (annex ? annex : "(null)"),
53b71562
JB
1431 host_address_to_string (readbuf),
1432 host_address_to_string (writebuf),
0b1553bc
UW
1433 core_addr_to_string_nz (offset),
1434 plongest (len), plongest (retval));
27394598
AC
1435
1436 if (readbuf)
1437 myaddr = readbuf;
1438 if (writebuf)
1439 myaddr = writebuf;
1440 if (retval > 0 && myaddr != NULL)
1441 {
1442 int i;
2bc416ba 1443
27394598
AC
1444 fputs_unfiltered (", bytes =", gdb_stdlog);
1445 for (i = 0; i < retval; i++)
1446 {
53b71562 1447 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
27394598
AC
1448 {
1449 if (targetdebug < 2 && i > 0)
1450 {
1451 fprintf_unfiltered (gdb_stdlog, " ...");
1452 break;
1453 }
1454 fprintf_unfiltered (gdb_stdlog, "\n");
1455 }
2bc416ba 1456
27394598
AC
1457 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
1458 }
1459 }
2bc416ba 1460
27394598
AC
1461 fputc_unfiltered ('\n', gdb_stdlog);
1462 }
1463 return retval;
1464}
1465
c906108c
SS
1466/* Read LEN bytes of target memory at address MEMADDR, placing the results in
1467 GDB's memory at MYADDR. Returns either 0 for success or an errno value
1468 if any error occurs.
1469
1470 If an error occurs, no guarantee is made about the contents of the data at
1471 MYADDR. In particular, the caller should not depend upon partial reads
1472 filling the buffer with good data. There is no way for the caller to know
1473 how much good data might have been transfered anyway. Callers that can
cf7a04e8
DJ
1474 deal with partial reads should call target_read (which will retry until
1475 it makes no progress, and then return how much was transferred). */
c906108c
SS
1476
1477int
fc1a4b47 1478target_read_memory (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
c906108c 1479{
c35b1492
PA
1480 /* Dispatch to the topmost target, not the flattened current_target.
1481 Memory accesses check target->to_has_(all_)memory, and the
1482 flattened target doesn't inherit those. */
1483 if (target_read (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
cf7a04e8
DJ
1484 myaddr, memaddr, len) == len)
1485 return 0;
0779438d 1486 else
cf7a04e8 1487 return EIO;
c906108c
SS
1488}
1489
4e5d721f
DE
1490/* Like target_read_memory, but specify explicitly that this is a read from
1491 the target's stack. This may trigger different cache behavior. */
1492
1493int
1494target_read_stack (CORE_ADDR memaddr, gdb_byte *myaddr, int len)
1495{
1496 /* Dispatch to the topmost target, not the flattened current_target.
1497 Memory accesses check target->to_has_(all_)memory, and the
1498 flattened target doesn't inherit those. */
1499
1500 if (target_read (current_target.beneath, TARGET_OBJECT_STACK_MEMORY, NULL,
1501 myaddr, memaddr, len) == len)
1502 return 0;
1503 else
1504 return EIO;
1505}
1506
7f79c47e
DE
1507/* Write LEN bytes from MYADDR to target memory at address MEMADDR.
1508 Returns either 0 for success or an errno value if any error occurs.
1509 If an error occurs, no guarantee is made about how much data got written.
1510 Callers that can deal with partial writes should call target_write. */
1511
c906108c 1512int
fc1a4b47 1513target_write_memory (CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
c906108c 1514{
c35b1492
PA
1515 /* Dispatch to the topmost target, not the flattened current_target.
1516 Memory accesses check target->to_has_(all_)memory, and the
1517 flattened target doesn't inherit those. */
1518 if (target_write (current_target.beneath, TARGET_OBJECT_MEMORY, NULL,
cf7a04e8
DJ
1519 myaddr, memaddr, len) == len)
1520 return 0;
0779438d 1521 else
cf7a04e8 1522 return EIO;
c906108c 1523}
c5aa993b 1524
fd79ecee
DJ
1525/* Fetch the target's memory map. */
1526
1527VEC(mem_region_s) *
1528target_memory_map (void)
1529{
1530 VEC(mem_region_s) *result;
1531 struct mem_region *last_one, *this_one;
1532 int ix;
1533 struct target_ops *t;
1534
1535 if (targetdebug)
1536 fprintf_unfiltered (gdb_stdlog, "target_memory_map ()\n");
1537
1538 for (t = current_target.beneath; t != NULL; t = t->beneath)
1539 if (t->to_memory_map != NULL)
1540 break;
1541
1542 if (t == NULL)
1543 return NULL;
1544
1545 result = t->to_memory_map (t);
1546 if (result == NULL)
1547 return NULL;
1548
1549 qsort (VEC_address (mem_region_s, result),
1550 VEC_length (mem_region_s, result),
1551 sizeof (struct mem_region), mem_region_cmp);
1552
1553 /* Check that regions do not overlap. Simultaneously assign
1554 a numbering for the "mem" commands to use to refer to
1555 each region. */
1556 last_one = NULL;
1557 for (ix = 0; VEC_iterate (mem_region_s, result, ix, this_one); ix++)
1558 {
1559 this_one->number = ix;
1560
1561 if (last_one && last_one->hi > this_one->lo)
1562 {
1563 warning (_("Overlapping regions in memory map: ignoring"));
1564 VEC_free (mem_region_s, result);
1565 return NULL;
1566 }
1567 last_one = this_one;
1568 }
1569
1570 return result;
1571}
1572
a76d924d
DJ
1573void
1574target_flash_erase (ULONGEST address, LONGEST length)
1575{
1576 struct target_ops *t;
1577
1578 for (t = current_target.beneath; t != NULL; t = t->beneath)
1579 if (t->to_flash_erase != NULL)
1580 {
1581 if (targetdebug)
1582 fprintf_unfiltered (gdb_stdlog, "target_flash_erase (%s, %s)\n",
5af949e3 1583 hex_string (address), phex (length, 0));
8944021f
DJ
1584 t->to_flash_erase (t, address, length);
1585 return;
a76d924d
DJ
1586 }
1587
1588 tcomplain ();
1589}
1590
1591void
1592target_flash_done (void)
1593{
1594 struct target_ops *t;
1595
1596 for (t = current_target.beneath; t != NULL; t = t->beneath)
1597 if (t->to_flash_done != NULL)
1598 {
1599 if (targetdebug)
1600 fprintf_unfiltered (gdb_stdlog, "target_flash_done\n");
8944021f
DJ
1601 t->to_flash_done (t);
1602 return;
a76d924d
DJ
1603 }
1604
1605 tcomplain ();
1606}
1607
920d2a44
AC
1608static void
1609show_trust_readonly (struct ui_file *file, int from_tty,
1610 struct cmd_list_element *c, const char *value)
1611{
1612 fprintf_filtered (file, _("\
1613Mode for reading from readonly sections is %s.\n"),
1614 value);
1615}
3a11626d 1616
1e3ff5ad
AC
1617/* More generic transfers. */
1618
0088c768 1619static LONGEST
8aa91c1e 1620default_xfer_partial (struct target_ops *ops, enum target_object object,
2bc416ba 1621 const char *annex, gdb_byte *readbuf,
1b0ba102 1622 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
0088c768
AC
1623{
1624 if (object == TARGET_OBJECT_MEMORY
c8e73a31
AC
1625 && ops->deprecated_xfer_memory != NULL)
1626 /* If available, fall back to the target's
1627 "deprecated_xfer_memory" method. */
0088c768 1628 {
4b8a223f 1629 int xfered = -1;
0088c768 1630 errno = 0;
4b8a223f
AC
1631 if (writebuf != NULL)
1632 {
1633 void *buffer = xmalloc (len);
1634 struct cleanup *cleanup = make_cleanup (xfree, buffer);
1635 memcpy (buffer, writebuf, len);
c8e73a31
AC
1636 xfered = ops->deprecated_xfer_memory (offset, buffer, len,
1637 1/*write*/, NULL, ops);
4b8a223f
AC
1638 do_cleanups (cleanup);
1639 }
1640 if (readbuf != NULL)
244e85c8
MS
1641 xfered = ops->deprecated_xfer_memory (offset, readbuf, len,
1642 0/*read*/, NULL, ops);
0088c768
AC
1643 if (xfered > 0)
1644 return xfered;
1645 else if (xfered == 0 && errno == 0)
c8e73a31
AC
1646 /* "deprecated_xfer_memory" uses 0, cross checked against
1647 ERRNO as one indication of an error. */
0088c768
AC
1648 return 0;
1649 else
1650 return -1;
1651 }
1652 else if (ops->beneath != NULL)
cf7a04e8
DJ
1653 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1654 readbuf, writebuf, offset, len);
1655 else
1656 return -1;
1657}
1658
1659/* The xfer_partial handler for the topmost target. Unlike the default,
1660 it does not need to handle memory specially; it just passes all
1661 requests down the stack. */
1662
1663static LONGEST
1664current_xfer_partial (struct target_ops *ops, enum target_object object,
1665 const char *annex, gdb_byte *readbuf,
1666 const gdb_byte *writebuf, ULONGEST offset, LONGEST len)
1667{
1668 if (ops->beneath != NULL)
1669 return ops->beneath->to_xfer_partial (ops->beneath, object, annex,
1670 readbuf, writebuf, offset, len);
0088c768
AC
1671 else
1672 return -1;
1673}
1674
7f79c47e 1675/* Target vector read/write partial wrapper functions. */
0088c768 1676
13547ab6 1677static LONGEST
1e3ff5ad
AC
1678target_read_partial (struct target_ops *ops,
1679 enum target_object object,
1b0ba102 1680 const char *annex, gdb_byte *buf,
1e3ff5ad
AC
1681 ULONGEST offset, LONGEST len)
1682{
27394598 1683 return target_xfer_partial (ops, object, annex, buf, NULL, offset, len);
1e3ff5ad
AC
1684}
1685
13547ab6 1686static LONGEST
1e3ff5ad
AC
1687target_write_partial (struct target_ops *ops,
1688 enum target_object object,
1b0ba102 1689 const char *annex, const gdb_byte *buf,
1e3ff5ad
AC
1690 ULONGEST offset, LONGEST len)
1691{
27394598 1692 return target_xfer_partial (ops, object, annex, NULL, buf, offset, len);
1e3ff5ad
AC
1693}
1694
1695/* Wrappers to perform the full transfer. */
7f79c47e
DE
1696
1697/* For docs on target_read see target.h. */
1698
1e3ff5ad
AC
1699LONGEST
1700target_read (struct target_ops *ops,
1701 enum target_object object,
1b0ba102 1702 const char *annex, gdb_byte *buf,
1e3ff5ad
AC
1703 ULONGEST offset, LONGEST len)
1704{
1705 LONGEST xfered = 0;
1706 while (xfered < len)
1707 {
0088c768 1708 LONGEST xfer = target_read_partial (ops, object, annex,
fc1a4b47 1709 (gdb_byte *) buf + xfered,
0088c768 1710 offset + xfered, len - xfered);
1e3ff5ad 1711 /* Call an observer, notifying them of the xfer progress? */
13547ab6
DJ
1712 if (xfer == 0)
1713 return xfered;
1714 if (xfer < 0)
0088c768 1715 return -1;
1e3ff5ad
AC
1716 xfered += xfer;
1717 QUIT;
1718 }
1719 return len;
1720}
1721
d5086790
VP
1722LONGEST
1723target_read_until_error (struct target_ops *ops,
1724 enum target_object object,
1725 const char *annex, gdb_byte *buf,
1726 ULONGEST offset, LONGEST len)
1727{
1728 LONGEST xfered = 0;
1729 while (xfered < len)
1730 {
1731 LONGEST xfer = target_read_partial (ops, object, annex,
1732 (gdb_byte *) buf + xfered,
1733 offset + xfered, len - xfered);
1734 /* Call an observer, notifying them of the xfer progress? */
1735 if (xfer == 0)
1736 return xfered;
1737 if (xfer < 0)
1738 {
1739 /* We've got an error. Try to read in smaller blocks. */
1740 ULONGEST start = offset + xfered;
1741 ULONGEST remaining = len - xfered;
1742 ULONGEST half;
1743
1744 /* If an attempt was made to read a random memory address,
1745 it's likely that the very first byte is not accessible.
1746 Try reading the first byte, to avoid doing log N tries
1747 below. */
1748 xfer = target_read_partial (ops, object, annex,
1749 (gdb_byte *) buf + xfered, start, 1);
1750 if (xfer <= 0)
1751 return xfered;
1752 start += 1;
1753 remaining -= 1;
1754 half = remaining/2;
1755
1756 while (half > 0)
1757 {
1758 xfer = target_read_partial (ops, object, annex,
1759 (gdb_byte *) buf + xfered,
1760 start, half);
1761 if (xfer == 0)
1762 return xfered;
1763 if (xfer < 0)
1764 {
1765 remaining = half;
1766 }
1767 else
1768 {
1769 /* We have successfully read the first half. So, the
1770 error must be in the second half. Adjust start and
1771 remaining to point at the second half. */
1772 xfered += xfer;
1773 start += xfer;
1774 remaining -= xfer;
1775 }
1776 half = remaining/2;
1777 }
1778
1779 return xfered;
1780 }
1781 xfered += xfer;
1782 QUIT;
1783 }
1784 return len;
1785}
1786
cf7a04e8
DJ
1787/* An alternative to target_write with progress callbacks. */
1788
1e3ff5ad 1789LONGEST
cf7a04e8
DJ
1790target_write_with_progress (struct target_ops *ops,
1791 enum target_object object,
1792 const char *annex, const gdb_byte *buf,
1793 ULONGEST offset, LONGEST len,
1794 void (*progress) (ULONGEST, void *), void *baton)
1e3ff5ad
AC
1795{
1796 LONGEST xfered = 0;
a76d924d
DJ
1797
1798 /* Give the progress callback a chance to set up. */
1799 if (progress)
1800 (*progress) (0, baton);
1801
1e3ff5ad
AC
1802 while (xfered < len)
1803 {
1804 LONGEST xfer = target_write_partial (ops, object, annex,
fc1a4b47 1805 (gdb_byte *) buf + xfered,
1e3ff5ad 1806 offset + xfered, len - xfered);
cf7a04e8 1807
13547ab6
DJ
1808 if (xfer == 0)
1809 return xfered;
1810 if (xfer < 0)
0088c768 1811 return -1;
cf7a04e8
DJ
1812
1813 if (progress)
1814 (*progress) (xfer, baton);
1815
1e3ff5ad
AC
1816 xfered += xfer;
1817 QUIT;
1818 }
1819 return len;
1820}
1821
7f79c47e
DE
1822/* For docs on target_write see target.h. */
1823
cf7a04e8
DJ
1824LONGEST
1825target_write (struct target_ops *ops,
1826 enum target_object object,
1827 const char *annex, const gdb_byte *buf,
1828 ULONGEST offset, LONGEST len)
1829{
1830 return target_write_with_progress (ops, object, annex, buf, offset, len,
1831 NULL, NULL);
1832}
1833
159f81f3
DJ
1834/* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
1835 the size of the transferred data. PADDING additional bytes are
1836 available in *BUF_P. This is a helper function for
1837 target_read_alloc; see the declaration of that function for more
1838 information. */
13547ab6 1839
159f81f3
DJ
1840static LONGEST
1841target_read_alloc_1 (struct target_ops *ops, enum target_object object,
1842 const char *annex, gdb_byte **buf_p, int padding)
13547ab6
DJ
1843{
1844 size_t buf_alloc, buf_pos;
1845 gdb_byte *buf;
1846 LONGEST n;
1847
1848 /* This function does not have a length parameter; it reads the
1849 entire OBJECT). Also, it doesn't support objects fetched partly
1850 from one target and partly from another (in a different stratum,
1851 e.g. a core file and an executable). Both reasons make it
1852 unsuitable for reading memory. */
1853 gdb_assert (object != TARGET_OBJECT_MEMORY);
1854
1855 /* Start by reading up to 4K at a time. The target will throttle
1856 this number down if necessary. */
1857 buf_alloc = 4096;
1858 buf = xmalloc (buf_alloc);
1859 buf_pos = 0;
1860 while (1)
1861 {
1862 n = target_read_partial (ops, object, annex, &buf[buf_pos],
159f81f3 1863 buf_pos, buf_alloc - buf_pos - padding);
13547ab6
DJ
1864 if (n < 0)
1865 {
1866 /* An error occurred. */
1867 xfree (buf);
1868 return -1;
1869 }
1870 else if (n == 0)
1871 {
1872 /* Read all there was. */
1873 if (buf_pos == 0)
1874 xfree (buf);
1875 else
1876 *buf_p = buf;
1877 return buf_pos;
1878 }
1879
1880 buf_pos += n;
1881
1882 /* If the buffer is filling up, expand it. */
1883 if (buf_alloc < buf_pos * 2)
1884 {
1885 buf_alloc *= 2;
1886 buf = xrealloc (buf, buf_alloc);
1887 }
1888
1889 QUIT;
1890 }
1891}
1892
159f81f3
DJ
1893/* Read OBJECT/ANNEX using OPS. Store the result in *BUF_P and return
1894 the size of the transferred data. See the declaration in "target.h"
1895 function for more information about the return value. */
1896
1897LONGEST
1898target_read_alloc (struct target_ops *ops, enum target_object object,
1899 const char *annex, gdb_byte **buf_p)
1900{
1901 return target_read_alloc_1 (ops, object, annex, buf_p, 0);
1902}
1903
1904/* Read OBJECT/ANNEX using OPS. The result is NUL-terminated and
1905 returned as a string, allocated using xmalloc. If an error occurs
1906 or the transfer is unsupported, NULL is returned. Empty objects
1907 are returned as allocated but empty strings. A warning is issued
1908 if the result contains any embedded NUL bytes. */
1909
1910char *
1911target_read_stralloc (struct target_ops *ops, enum target_object object,
1912 const char *annex)
1913{
1914 gdb_byte *buffer;
1915 LONGEST transferred;
1916
1917 transferred = target_read_alloc_1 (ops, object, annex, &buffer, 1);
1918
1919 if (transferred < 0)
1920 return NULL;
1921
1922 if (transferred == 0)
1923 return xstrdup ("");
1924
1925 buffer[transferred] = 0;
1926 if (strlen (buffer) < transferred)
1927 warning (_("target object %d, annex %s, "
1928 "contained unexpected null characters"),
1929 (int) object, annex ? annex : "(none)");
1930
1931 return (char *) buffer;
1932}
1933
b6591e8b
AC
1934/* Memory transfer methods. */
1935
1936void
1b0ba102 1937get_target_memory (struct target_ops *ops, CORE_ADDR addr, gdb_byte *buf,
b6591e8b
AC
1938 LONGEST len)
1939{
07b82ea5
PA
1940 /* This method is used to read from an alternate, non-current
1941 target. This read must bypass the overlay support (as symbols
1942 don't match this target), and GDB's internal cache (wrong cache
1943 for this target). */
1944 if (target_read (ops, TARGET_OBJECT_RAW_MEMORY, NULL, buf, addr, len)
b6591e8b
AC
1945 != len)
1946 memory_error (EIO, addr);
1947}
1948
1949ULONGEST
1950get_target_memory_unsigned (struct target_ops *ops,
e17a4113 1951 CORE_ADDR addr, int len, enum bfd_endian byte_order)
b6591e8b 1952{
f6519ebc 1953 gdb_byte buf[sizeof (ULONGEST)];
b6591e8b
AC
1954
1955 gdb_assert (len <= sizeof (buf));
1956 get_target_memory (ops, addr, buf, len);
e17a4113 1957 return extract_unsigned_integer (buf, len, byte_order);
b6591e8b
AC
1958}
1959
c906108c 1960static void
fba45db2 1961target_info (char *args, int from_tty)
c906108c
SS
1962{
1963 struct target_ops *t;
c906108c 1964 int has_all_mem = 0;
c5aa993b 1965
c906108c 1966 if (symfile_objfile != NULL)
a3f17187 1967 printf_unfiltered (_("Symbols from \"%s\".\n"), symfile_objfile->name);
c906108c 1968
258b763a 1969 for (t = target_stack; t != NULL; t = t->beneath)
c906108c 1970 {
c35b1492 1971 if (!(*t->to_has_memory) (t))
c906108c
SS
1972 continue;
1973
c5aa993b 1974 if ((int) (t->to_stratum) <= (int) dummy_stratum)
c906108c
SS
1975 continue;
1976 if (has_all_mem)
a3f17187 1977 printf_unfiltered (_("\tWhile running this, GDB does not access memory from...\n"));
c5aa993b
JM
1978 printf_unfiltered ("%s:\n", t->to_longname);
1979 (t->to_files_info) (t);
c35b1492 1980 has_all_mem = (*t->to_has_all_memory) (t);
c906108c
SS
1981 }
1982}
1983
fd79ecee
DJ
1984/* This function is called before any new inferior is created, e.g.
1985 by running a program, attaching, or connecting to a target.
1986 It cleans up any state from previous invocations which might
1987 change between runs. This is a subset of what target_preopen
1988 resets (things which might change between targets). */
1989
1990void
1991target_pre_inferior (int from_tty)
1992{
b9db4ced
UW
1993 /* Clear out solib state. Otherwise the solib state of the previous
1994 inferior might have survived and is entirely wrong for the new
1995 target. This has been observed on GNU/Linux using glibc 2.3. How
1996 to reproduce:
1997
1998 bash$ ./foo&
1999 [1] 4711
2000 bash$ ./foo&
2001 [1] 4712
2002 bash$ gdb ./foo
2003 [...]
2004 (gdb) attach 4711
2005 (gdb) detach
2006 (gdb) attach 4712
2007 Cannot access memory at address 0xdeadbeef
2008 */
b9db4ced 2009
50c71eaf
PA
2010 /* In some OSs, the shared library list is the same/global/shared
2011 across inferiors. If code is shared between processes, so are
2012 memory regions and features. */
2013 if (!gdbarch_has_global_solist (target_gdbarch))
2014 {
2015 no_shared_libraries (NULL, from_tty);
2016
2017 invalidate_target_mem_regions ();
424163ea 2018
50c71eaf
PA
2019 target_clear_description ();
2020 }
fd79ecee
DJ
2021}
2022
b8fa0bfa
PA
2023/* Callback for iterate_over_inferiors. Gets rid of the given
2024 inferior. */
2025
2026static int
2027dispose_inferior (struct inferior *inf, void *args)
2028{
2029 struct thread_info *thread;
2030
2031 thread = any_thread_of_process (inf->pid);
2032 if (thread)
2033 {
2034 switch_to_thread (thread->ptid);
2035
2036 /* Core inferiors actually should be detached, not killed. */
2037 if (target_has_execution)
2038 target_kill ();
2039 else
2040 target_detach (NULL, 0);
2041 }
2042
2043 return 0;
2044}
2045
c906108c
SS
2046/* This is to be called by the open routine before it does
2047 anything. */
2048
2049void
fba45db2 2050target_preopen (int from_tty)
c906108c 2051{
c5aa993b 2052 dont_repeat ();
c906108c 2053
b8fa0bfa 2054 if (have_inferiors ())
c5aa993b 2055 {
adf40b2e 2056 if (!from_tty
b8fa0bfa
PA
2057 || !have_live_inferiors ()
2058 || query (_("A program is being debugged already. Kill it? ")))
2059 iterate_over_inferiors (dispose_inferior, NULL);
c906108c 2060 else
8a3fe4f8 2061 error (_("Program not killed."));
c906108c
SS
2062 }
2063
2064 /* Calling target_kill may remove the target from the stack. But if
2065 it doesn't (which seems like a win for UDI), remove it now. */
87ab71f0
PA
2066 /* Leave the exec target, though. The user may be switching from a
2067 live process to a core of the same program. */
2068 pop_all_targets_above (file_stratum, 0);
fd79ecee
DJ
2069
2070 target_pre_inferior (from_tty);
c906108c
SS
2071}
2072
2073/* Detach a target after doing deferred register stores. */
2074
2075void
fba45db2 2076target_detach (char *args, int from_tty)
c906108c 2077{
136d6dae
VP
2078 struct target_ops* t;
2079
2567c7d9 2080 if (gdbarch_has_global_breakpoints (target_gdbarch))
50c71eaf
PA
2081 /* Don't remove global breakpoints here. They're removed on
2082 disconnection from the target. */
2083 ;
2084 else
2085 /* If we're in breakpoints-always-inserted mode, have to remove
2086 them before detaching. */
6c95b8df 2087 remove_breakpoints_pid (PIDGET (inferior_ptid));
74960c60 2088
24291992
PA
2089 prepare_for_detach ();
2090
136d6dae
VP
2091 for (t = current_target.beneath; t != NULL; t = t->beneath)
2092 {
2093 if (t->to_detach != NULL)
2094 {
2095 t->to_detach (t, args, from_tty);
947b8855
PA
2096 if (targetdebug)
2097 fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n",
2098 args, from_tty);
136d6dae
VP
2099 return;
2100 }
2101 }
2102
2103 internal_error (__FILE__, __LINE__, "could not find a target to detach");
c906108c
SS
2104}
2105
6ad8ae5c
DJ
2106void
2107target_disconnect (char *args, int from_tty)
2108{
597320e7
DJ
2109 struct target_ops *t;
2110
50c71eaf
PA
2111 /* If we're in breakpoints-always-inserted mode or if breakpoints
2112 are global across processes, we have to remove them before
2113 disconnecting. */
74960c60
VP
2114 remove_breakpoints ();
2115
597320e7
DJ
2116 for (t = current_target.beneath; t != NULL; t = t->beneath)
2117 if (t->to_disconnect != NULL)
2118 {
2119 if (targetdebug)
2120 fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n",
2121 args, from_tty);
2122 t->to_disconnect (t, args, from_tty);
2123 return;
2124 }
2125
2126 tcomplain ();
6ad8ae5c
DJ
2127}
2128
117de6a9 2129ptid_t
47608cb1 2130target_wait (ptid_t ptid, struct target_waitstatus *status, int options)
117de6a9
PA
2131{
2132 struct target_ops *t;
2133
2134 for (t = current_target.beneath; t != NULL; t = t->beneath)
2135 {
2136 if (t->to_wait != NULL)
2137 {
47608cb1 2138 ptid_t retval = (*t->to_wait) (t, ptid, status, options);
117de6a9
PA
2139
2140 if (targetdebug)
2141 {
2142 char *status_string;
2143
2144 status_string = target_waitstatus_to_string (status);
2145 fprintf_unfiltered (gdb_stdlog,
2146 "target_wait (%d, status) = %d, %s\n",
2147 PIDGET (ptid), PIDGET (retval),
2148 status_string);
2149 xfree (status_string);
2150 }
2151
2152 return retval;
2153 }
2154 }
2155
2156 noprocess ();
2157}
2158
2159char *
2160target_pid_to_str (ptid_t ptid)
2161{
2162 struct target_ops *t;
2163
2164 for (t = current_target.beneath; t != NULL; t = t->beneath)
2165 {
2166 if (t->to_pid_to_str != NULL)
2167 return (*t->to_pid_to_str) (t, ptid);
2168 }
2169
2170 return normal_pid_to_str (ptid);
2171}
2172
e1ac3328
VP
2173void
2174target_resume (ptid_t ptid, int step, enum target_signal signal)
2175{
28439f5e
PA
2176 struct target_ops *t;
2177
4e5d721f 2178 target_dcache_invalidate ();
28439f5e
PA
2179
2180 for (t = current_target.beneath; t != NULL; t = t->beneath)
2181 {
2182 if (t->to_resume != NULL)
2183 {
2184 t->to_resume (t, ptid, step, signal);
2185 if (targetdebug)
2186 fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n",
2187 PIDGET (ptid),
2188 step ? "step" : "continue",
2189 target_signal_to_name (signal));
2190
2191 set_executing (ptid, 1);
2192 set_running (ptid, 1);
edb3359d 2193 clear_inline_frame_state (ptid);
28439f5e
PA
2194 return;
2195 }
2196 }
2197
2198 noprocess ();
e1ac3328 2199}
ee057212
DJ
2200/* Look through the list of possible targets for a target that can
2201 follow forks. */
2202
2203int
2204target_follow_fork (int follow_child)
2205{
2206 struct target_ops *t;
2207
2208 for (t = current_target.beneath; t != NULL; t = t->beneath)
2209 {
2210 if (t->to_follow_fork != NULL)
2211 {
2212 int retval = t->to_follow_fork (t, follow_child);
2213 if (targetdebug)
2214 fprintf_unfiltered (gdb_stdlog, "target_follow_fork (%d) = %d\n",
2215 follow_child, retval);
2216 return retval;
2217 }
2218 }
2219
2220 /* Some target returned a fork event, but did not know how to follow it. */
2221 internal_error (__FILE__, __LINE__,
2222 "could not find a target to follow fork");
2223}
2224
136d6dae
VP
2225void
2226target_mourn_inferior (void)
2227{
2228 struct target_ops *t;
2229 for (t = current_target.beneath; t != NULL; t = t->beneath)
2230 {
2231 if (t->to_mourn_inferior != NULL)
2232 {
2233 t->to_mourn_inferior (t);
947b8855
PA
2234 if (targetdebug)
2235 fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n");
efbd6e75
JB
2236
2237 /* We no longer need to keep handles on any of the object files.
2238 Make sure to release them to avoid unnecessarily locking any
2239 of them while we're not actually debugging. */
2240 bfd_cache_close_all ();
2241
136d6dae
VP
2242 return;
2243 }
2244 }
2245
2246 internal_error (__FILE__, __LINE__,
2247 "could not find a target to follow mourn inferiour");
2248}
2249
424163ea
DJ
2250/* Look for a target which can describe architectural features, starting
2251 from TARGET. If we find one, return its description. */
2252
2253const struct target_desc *
2254target_read_description (struct target_ops *target)
2255{
2256 struct target_ops *t;
2257
2258 for (t = target; t != NULL; t = t->beneath)
2259 if (t->to_read_description != NULL)
2260 {
2261 const struct target_desc *tdesc;
2262
2263 tdesc = t->to_read_description (t);
2264 if (tdesc)
2265 return tdesc;
2266 }
2267
2268 return NULL;
2269}
2270
08388c79
DE
2271/* The default implementation of to_search_memory.
2272 This implements a basic search of memory, reading target memory and
2273 performing the search here (as opposed to performing the search in on the
2274 target side with, for example, gdbserver). */
2275
2276int
2277simple_search_memory (struct target_ops *ops,
2278 CORE_ADDR start_addr, ULONGEST search_space_len,
2279 const gdb_byte *pattern, ULONGEST pattern_len,
2280 CORE_ADDR *found_addrp)
2281{
2282 /* NOTE: also defined in find.c testcase. */
2283#define SEARCH_CHUNK_SIZE 16000
2284 const unsigned chunk_size = SEARCH_CHUNK_SIZE;
2285 /* Buffer to hold memory contents for searching. */
2286 gdb_byte *search_buf;
2287 unsigned search_buf_size;
2288 struct cleanup *old_cleanups;
2289
2290 search_buf_size = chunk_size + pattern_len - 1;
2291
2292 /* No point in trying to allocate a buffer larger than the search space. */
2293 if (search_space_len < search_buf_size)
2294 search_buf_size = search_space_len;
2295
2296 search_buf = malloc (search_buf_size);
2297 if (search_buf == NULL)
5e1471f5 2298 error (_("Unable to allocate memory to perform the search."));
08388c79
DE
2299 old_cleanups = make_cleanup (free_current_contents, &search_buf);
2300
2301 /* Prime the search buffer. */
2302
2303 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2304 search_buf, start_addr, search_buf_size) != search_buf_size)
2305 {
5e1471f5 2306 warning (_("Unable to access target memory at %s, halting search."),
08388c79
DE
2307 hex_string (start_addr));
2308 do_cleanups (old_cleanups);
2309 return -1;
2310 }
2311
2312 /* Perform the search.
2313
2314 The loop is kept simple by allocating [N + pattern-length - 1] bytes.
2315 When we've scanned N bytes we copy the trailing bytes to the start and
2316 read in another N bytes. */
2317
2318 while (search_space_len >= pattern_len)
2319 {
2320 gdb_byte *found_ptr;
2321 unsigned nr_search_bytes = min (search_space_len, search_buf_size);
2322
2323 found_ptr = memmem (search_buf, nr_search_bytes,
2324 pattern, pattern_len);
2325
2326 if (found_ptr != NULL)
2327 {
2328 CORE_ADDR found_addr = start_addr + (found_ptr - search_buf);
2329 *found_addrp = found_addr;
2330 do_cleanups (old_cleanups);
2331 return 1;
2332 }
2333
2334 /* Not found in this chunk, skip to next chunk. */
2335
2336 /* Don't let search_space_len wrap here, it's unsigned. */
2337 if (search_space_len >= chunk_size)
2338 search_space_len -= chunk_size;
2339 else
2340 search_space_len = 0;
2341
2342 if (search_space_len >= pattern_len)
2343 {
2344 unsigned keep_len = search_buf_size - chunk_size;
8a35fb51 2345 CORE_ADDR read_addr = start_addr + chunk_size + keep_len;
08388c79
DE
2346 int nr_to_read;
2347
2348 /* Copy the trailing part of the previous iteration to the front
2349 of the buffer for the next iteration. */
2350 gdb_assert (keep_len == pattern_len - 1);
2351 memcpy (search_buf, search_buf + chunk_size, keep_len);
2352
2353 nr_to_read = min (search_space_len - keep_len, chunk_size);
2354
2355 if (target_read (ops, TARGET_OBJECT_MEMORY, NULL,
2356 search_buf + keep_len, read_addr,
2357 nr_to_read) != nr_to_read)
2358 {
5e1471f5 2359 warning (_("Unable to access target memory at %s, halting search."),
08388c79
DE
2360 hex_string (read_addr));
2361 do_cleanups (old_cleanups);
2362 return -1;
2363 }
2364
2365 start_addr += chunk_size;
2366 }
2367 }
2368
2369 /* Not found. */
2370
2371 do_cleanups (old_cleanups);
2372 return 0;
2373}
2374
2375/* Search SEARCH_SPACE_LEN bytes beginning at START_ADDR for the
2376 sequence of bytes in PATTERN with length PATTERN_LEN.
2377
2378 The result is 1 if found, 0 if not found, and -1 if there was an error
2379 requiring halting of the search (e.g. memory read error).
2380 If the pattern is found the address is recorded in FOUND_ADDRP. */
2381
2382int
2383target_search_memory (CORE_ADDR start_addr, ULONGEST search_space_len,
2384 const gdb_byte *pattern, ULONGEST pattern_len,
2385 CORE_ADDR *found_addrp)
2386{
2387 struct target_ops *t;
2388 int found;
2389
2390 /* We don't use INHERIT to set current_target.to_search_memory,
2391 so we have to scan the target stack and handle targetdebug
2392 ourselves. */
2393
2394 if (targetdebug)
2395 fprintf_unfiltered (gdb_stdlog, "target_search_memory (%s, ...)\n",
2396 hex_string (start_addr));
2397
2398 for (t = current_target.beneath; t != NULL; t = t->beneath)
2399 if (t->to_search_memory != NULL)
2400 break;
2401
2402 if (t != NULL)
2403 {
2404 found = t->to_search_memory (t, start_addr, search_space_len,
2405 pattern, pattern_len, found_addrp);
2406 }
2407 else
2408 {
2409 /* If a special version of to_search_memory isn't available, use the
2410 simple version. */
c35b1492 2411 found = simple_search_memory (current_target.beneath,
08388c79
DE
2412 start_addr, search_space_len,
2413 pattern, pattern_len, found_addrp);
2414 }
2415
2416 if (targetdebug)
2417 fprintf_unfiltered (gdb_stdlog, " = %d\n", found);
2418
2419 return found;
2420}
2421
8edfe269
DJ
2422/* Look through the currently pushed targets. If none of them will
2423 be able to restart the currently running process, issue an error
2424 message. */
2425
2426void
2427target_require_runnable (void)
2428{
2429 struct target_ops *t;
2430
2431 for (t = target_stack; t != NULL; t = t->beneath)
2432 {
2433 /* If this target knows how to create a new program, then
2434 assume we will still be able to after killing the current
2435 one. Either killing and mourning will not pop T, or else
2436 find_default_run_target will find it again. */
2437 if (t->to_create_inferior != NULL)
2438 return;
2439
2440 /* Do not worry about thread_stratum targets that can not
2441 create inferiors. Assume they will be pushed again if
2442 necessary, and continue to the process_stratum. */
85e747d2
UW
2443 if (t->to_stratum == thread_stratum
2444 || t->to_stratum == arch_stratum)
8edfe269
DJ
2445 continue;
2446
2447 error (_("\
2448The \"%s\" target does not support \"run\". Try \"help target\" or \"continue\"."),
2449 t->to_shortname);
2450 }
2451
2452 /* This function is only called if the target is running. In that
2453 case there should have been a process_stratum target and it
2454 should either know how to create inferiors, or not... */
2455 internal_error (__FILE__, __LINE__, "No targets found");
2456}
2457
c906108c
SS
2458/* Look through the list of possible targets for a target that can
2459 execute a run or attach command without any other data. This is
2460 used to locate the default process stratum.
2461
5f667f2d
PA
2462 If DO_MESG is not NULL, the result is always valid (error() is
2463 called for errors); else, return NULL on error. */
c906108c
SS
2464
2465static struct target_ops *
fba45db2 2466find_default_run_target (char *do_mesg)
c906108c
SS
2467{
2468 struct target_ops **t;
2469 struct target_ops *runable = NULL;
2470 int count;
2471
2472 count = 0;
2473
2474 for (t = target_structs; t < target_structs + target_struct_size;
2475 ++t)
2476 {
c5aa993b 2477 if ((*t)->to_can_run && target_can_run (*t))
c906108c
SS
2478 {
2479 runable = *t;
2480 ++count;
2481 }
2482 }
2483
2484 if (count != 1)
5f667f2d
PA
2485 {
2486 if (do_mesg)
2487 error (_("Don't know how to %s. Try \"help target\"."), do_mesg);
2488 else
2489 return NULL;
2490 }
c906108c
SS
2491
2492 return runable;
2493}
2494
2495void
136d6dae 2496find_default_attach (struct target_ops *ops, char *args, int from_tty)
c906108c
SS
2497{
2498 struct target_ops *t;
2499
c5aa993b 2500 t = find_default_run_target ("attach");
136d6dae 2501 (t->to_attach) (t, args, from_tty);
c906108c
SS
2502 return;
2503}
2504
c906108c 2505void
136d6dae
VP
2506find_default_create_inferior (struct target_ops *ops,
2507 char *exec_file, char *allargs, char **env,
c27cda74 2508 int from_tty)
c906108c
SS
2509{
2510 struct target_ops *t;
2511
c5aa993b 2512 t = find_default_run_target ("run");
136d6dae 2513 (t->to_create_inferior) (t, exec_file, allargs, env, from_tty);
c906108c
SS
2514 return;
2515}
2516
2c0b251b 2517static int
b84876c2
PA
2518find_default_can_async_p (void)
2519{
2520 struct target_ops *t;
2521
5f667f2d
PA
2522 /* This may be called before the target is pushed on the stack;
2523 look for the default process stratum. If there's none, gdb isn't
2524 configured with a native debugger, and target remote isn't
2525 connected yet. */
2526 t = find_default_run_target (NULL);
2527 if (t && t->to_can_async_p)
b84876c2
PA
2528 return (t->to_can_async_p) ();
2529 return 0;
2530}
2531
2c0b251b 2532static int
b84876c2
PA
2533find_default_is_async_p (void)
2534{
2535 struct target_ops *t;
2536
5f667f2d
PA
2537 /* This may be called before the target is pushed on the stack;
2538 look for the default process stratum. If there's none, gdb isn't
2539 configured with a native debugger, and target remote isn't
2540 connected yet. */
2541 t = find_default_run_target (NULL);
2542 if (t && t->to_is_async_p)
b84876c2
PA
2543 return (t->to_is_async_p) ();
2544 return 0;
2545}
2546
2c0b251b 2547static int
9908b566
VP
2548find_default_supports_non_stop (void)
2549{
2550 struct target_ops *t;
2551
2552 t = find_default_run_target (NULL);
2553 if (t && t->to_supports_non_stop)
2554 return (t->to_supports_non_stop) ();
2555 return 0;
2556}
2557
2558int
2c0b251b 2559target_supports_non_stop (void)
9908b566
VP
2560{
2561 struct target_ops *t;
2562 for (t = &current_target; t != NULL; t = t->beneath)
2563 if (t->to_supports_non_stop)
2564 return t->to_supports_non_stop ();
2565
2566 return 0;
2567}
2568
2569
07e059b5
VP
2570char *
2571target_get_osdata (const char *type)
2572{
2573 char *document;
2574 struct target_ops *t;
2575
739ef7fb
PA
2576 /* If we're already connected to something that can get us OS
2577 related data, use it. Otherwise, try using the native
2578 target. */
2579 if (current_target.to_stratum >= process_stratum)
6d097e65 2580 t = current_target.beneath;
739ef7fb
PA
2581 else
2582 t = find_default_run_target ("get OS data");
07e059b5
VP
2583
2584 if (!t)
2585 return NULL;
2586
6d097e65 2587 return target_read_stralloc (t, TARGET_OBJECT_OSDATA, type);
07e059b5
VP
2588}
2589
6c95b8df
PA
2590/* Determine the current address space of thread PTID. */
2591
2592struct address_space *
2593target_thread_address_space (ptid_t ptid)
2594{
c0694254 2595 struct address_space *aspace;
6c95b8df 2596 struct inferior *inf;
c0694254
PA
2597 struct target_ops *t;
2598
2599 for (t = current_target.beneath; t != NULL; t = t->beneath)
2600 {
2601 if (t->to_thread_address_space != NULL)
2602 {
2603 aspace = t->to_thread_address_space (t, ptid);
2604 gdb_assert (aspace);
6c95b8df 2605
c0694254
PA
2606 if (targetdebug)
2607 fprintf_unfiltered (gdb_stdlog,
2608 "target_thread_address_space (%s) = %d\n",
2609 target_pid_to_str (ptid),
2610 address_space_num (aspace));
2611 return aspace;
2612 }
2613 }
6c95b8df
PA
2614
2615 /* Fall-back to the "main" address space of the inferior. */
2616 inf = find_inferior_pid (ptid_get_pid (ptid));
2617
2618 if (inf == NULL || inf->aspace == NULL)
2619 internal_error (__FILE__, __LINE__, "\
2620Can't determine the current address space of thread %s\n",
2621 target_pid_to_str (ptid));
2622
2623 return inf->aspace;
2624}
2625
e0d24f8d
WZ
2626static int
2627default_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
2628{
ffe5a37e 2629 return (len <= gdbarch_ptr_bit (target_gdbarch) / TARGET_CHAR_BIT);
ccaa32c7
GS
2630}
2631
5009afc5
AS
2632static int
2633default_watchpoint_addr_within_range (struct target_ops *target,
2634 CORE_ADDR addr,
2635 CORE_ADDR start, int length)
2636{
2637 return addr >= start && addr < start + length;
2638}
2639
c2250ad1
UW
2640static struct gdbarch *
2641default_thread_architecture (struct target_ops *ops, ptid_t ptid)
2642{
2643 return target_gdbarch;
2644}
2645
c906108c 2646static int
fba45db2 2647return_zero (void)
c906108c
SS
2648{
2649 return 0;
2650}
2651
2652static int
fba45db2 2653return_one (void)
c906108c
SS
2654{
2655 return 1;
2656}
2657
ccaa32c7
GS
2658static int
2659return_minus_one (void)
2660{
2661 return -1;
2662}
2663
7a292a7a
SS
2664/* Find a single runnable target in the stack and return it. If for
2665 some reason there is more than one, return NULL. */
2666
2667struct target_ops *
fba45db2 2668find_run_target (void)
7a292a7a
SS
2669{
2670 struct target_ops **t;
2671 struct target_ops *runable = NULL;
2672 int count;
c5aa993b 2673
7a292a7a 2674 count = 0;
c5aa993b 2675
7a292a7a
SS
2676 for (t = target_structs; t < target_structs + target_struct_size; ++t)
2677 {
c5aa993b 2678 if ((*t)->to_can_run && target_can_run (*t))
7a292a7a
SS
2679 {
2680 runable = *t;
2681 ++count;
2682 }
2683 }
c5aa993b 2684
7a292a7a
SS
2685 return (count == 1 ? runable : NULL);
2686}
2687
ed9a39eb
JM
2688/* Find a single core_stratum target in the list of targets and return it.
2689 If for some reason there is more than one, return NULL. */
2690
c906108c 2691struct target_ops *
fba45db2 2692find_core_target (void)
c906108c
SS
2693{
2694 struct target_ops **t;
2695 struct target_ops *runable = NULL;
2696 int count;
c5aa993b 2697
c906108c 2698 count = 0;
c5aa993b 2699
c906108c
SS
2700 for (t = target_structs; t < target_structs + target_struct_size;
2701 ++t)
2702 {
2703 if ((*t)->to_stratum == core_stratum)
2704 {
2705 runable = *t;
2706 ++count;
2707 }
2708 }
c5aa993b
JM
2709
2710 return (count == 1 ? runable : NULL);
c906108c 2711}
ed9a39eb
JM
2712
2713/*
2714 * Find the next target down the stack from the specified target.
2715 */
2716
2717struct target_ops *
fba45db2 2718find_target_beneath (struct target_ops *t)
ed9a39eb 2719{
258b763a 2720 return t->beneath;
ed9a39eb
JM
2721}
2722
c906108c
SS
2723\f
2724/* The inferior process has died. Long live the inferior! */
2725
2726void
fba45db2 2727generic_mourn_inferior (void)
c906108c 2728{
7f9f62ba 2729 ptid_t ptid;
c906108c 2730
7f9f62ba 2731 ptid = inferior_ptid;
39f77062 2732 inferior_ptid = null_ptid;
7f9f62ba
PA
2733
2734 if (!ptid_equal (ptid, null_ptid))
2735 {
2736 int pid = ptid_get_pid (ptid);
6c95b8df 2737 exit_inferior (pid);
7f9f62ba
PA
2738 }
2739
c906108c
SS
2740 breakpoint_init_inferior (inf_exited);
2741 registers_changed ();
2742
c906108c
SS
2743 reopen_exec_file ();
2744 reinit_frame_cache ();
2745
9a4105ab
AC
2746 if (deprecated_detach_hook)
2747 deprecated_detach_hook ();
c906108c
SS
2748}
2749\f
8807d78b 2750/* Helper function for child_wait and the derivatives of child_wait.
c906108c
SS
2751 HOSTSTATUS is the waitstatus from wait() or the equivalent; store our
2752 translation of that in OURSTATUS. */
2753void
fba45db2 2754store_waitstatus (struct target_waitstatus *ourstatus, int hoststatus)
c906108c 2755{
c906108c
SS
2756 if (WIFEXITED (hoststatus))
2757 {
2758 ourstatus->kind = TARGET_WAITKIND_EXITED;
2759 ourstatus->value.integer = WEXITSTATUS (hoststatus);
2760 }
2761 else if (!WIFSTOPPED (hoststatus))
2762 {
2763 ourstatus->kind = TARGET_WAITKIND_SIGNALLED;
2764 ourstatus->value.sig = target_signal_from_host (WTERMSIG (hoststatus));
2765 }
2766 else
2767 {
2768 ourstatus->kind = TARGET_WAITKIND_STOPPED;
2769 ourstatus->value.sig = target_signal_from_host (WSTOPSIG (hoststatus));
2770 }
2771}
2772\f
fd0a2a6f
MK
2773/* Convert a normal process ID to a string. Returns the string in a
2774 static buffer. */
c906108c
SS
2775
2776char *
39f77062 2777normal_pid_to_str (ptid_t ptid)
c906108c 2778{
fd0a2a6f 2779 static char buf[32];
c906108c 2780
5fff8fc0 2781 xsnprintf (buf, sizeof buf, "process %d", ptid_get_pid (ptid));
c906108c
SS
2782 return buf;
2783}
2784
2c0b251b 2785static char *
117de6a9
PA
2786dummy_pid_to_str (struct target_ops *ops, ptid_t ptid)
2787{
2788 return normal_pid_to_str (ptid);
2789}
2790
9b4eba8e
HZ
2791/* Error-catcher for target_find_memory_regions. */
2792static int
2793dummy_find_memory_regions (int (*ignore1) (), void *ignore2)
be4d1333 2794{
9b4eba8e 2795 error (_("Command not implemented for this target."));
be4d1333
MS
2796 return 0;
2797}
2798
9b4eba8e
HZ
2799/* Error-catcher for target_make_corefile_notes. */
2800static char *
2801dummy_make_corefile_notes (bfd *ignore1, int *ignore2)
be4d1333 2802{
9b4eba8e 2803 error (_("Command not implemented for this target."));
be4d1333
MS
2804 return NULL;
2805}
2806
6b04bdb7
MS
2807/* Error-catcher for target_get_bookmark. */
2808static gdb_byte *
2809dummy_get_bookmark (char *ignore1, int ignore2)
2810{
2811 tcomplain ();
2812 return NULL;
2813}
2814
2815/* Error-catcher for target_goto_bookmark. */
2816static void
2817dummy_goto_bookmark (gdb_byte *ignore, int from_tty)
2818{
2819 tcomplain ();
2820}
2821
c906108c
SS
2822/* Set up the handful of non-empty slots needed by the dummy target
2823 vector. */
2824
2825static void
fba45db2 2826init_dummy_target (void)
c906108c
SS
2827{
2828 dummy_target.to_shortname = "None";
2829 dummy_target.to_longname = "None";
2830 dummy_target.to_doc = "";
2831 dummy_target.to_attach = find_default_attach;
136d6dae
VP
2832 dummy_target.to_detach =
2833 (void (*)(struct target_ops *, char *, int))target_ignore;
c906108c 2834 dummy_target.to_create_inferior = find_default_create_inferior;
b84876c2
PA
2835 dummy_target.to_can_async_p = find_default_can_async_p;
2836 dummy_target.to_is_async_p = find_default_is_async_p;
9908b566 2837 dummy_target.to_supports_non_stop = find_default_supports_non_stop;
117de6a9 2838 dummy_target.to_pid_to_str = dummy_pid_to_str;
c906108c 2839 dummy_target.to_stratum = dummy_stratum;
be4d1333
MS
2840 dummy_target.to_find_memory_regions = dummy_find_memory_regions;
2841 dummy_target.to_make_corefile_notes = dummy_make_corefile_notes;
6b04bdb7
MS
2842 dummy_target.to_get_bookmark = dummy_get_bookmark;
2843 dummy_target.to_goto_bookmark = dummy_goto_bookmark;
0b603eba 2844 dummy_target.to_xfer_partial = default_xfer_partial;
c35b1492
PA
2845 dummy_target.to_has_all_memory = (int (*) (struct target_ops *)) return_zero;
2846 dummy_target.to_has_memory = (int (*) (struct target_ops *)) return_zero;
2847 dummy_target.to_has_stack = (int (*) (struct target_ops *)) return_zero;
2848 dummy_target.to_has_registers = (int (*) (struct target_ops *)) return_zero;
2849 dummy_target.to_has_execution = (int (*) (struct target_ops *)) return_zero;
7155de5a
HZ
2850 dummy_target.to_stopped_by_watchpoint = return_zero;
2851 dummy_target.to_stopped_data_address =
2852 (int (*) (struct target_ops *, CORE_ADDR *)) return_zero;
c906108c
SS
2853 dummy_target.to_magic = OPS_MAGIC;
2854}
c906108c 2855\f
c906108c 2856static void
fba45db2 2857debug_to_open (char *args, int from_tty)
c906108c
SS
2858{
2859 debug_target.to_open (args, from_tty);
2860
96baa820 2861 fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty);
c906108c
SS
2862}
2863
f1c07ab0
AC
2864void
2865target_close (struct target_ops *targ, int quitting)
2866{
2867 if (targ->to_xclose != NULL)
2868 targ->to_xclose (targ, quitting);
2869 else if (targ->to_close != NULL)
2870 targ->to_close (quitting);
947b8855
PA
2871
2872 if (targetdebug)
2873 fprintf_unfiltered (gdb_stdlog, "target_close (%d)\n", quitting);
f1c07ab0
AC
2874}
2875
136d6dae
VP
2876void
2877target_attach (char *args, int from_tty)
2878{
2879 struct target_ops *t;
2880 for (t = current_target.beneath; t != NULL; t = t->beneath)
2881 {
2882 if (t->to_attach != NULL)
2883 {
2884 t->to_attach (t, args, from_tty);
947b8855
PA
2885 if (targetdebug)
2886 fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n",
2887 args, from_tty);
136d6dae
VP
2888 return;
2889 }
2890 }
2891
2892 internal_error (__FILE__, __LINE__,
2893 "could not find a target to attach");
2894}
2895
28439f5e
PA
2896int
2897target_thread_alive (ptid_t ptid)
c906108c 2898{
28439f5e
PA
2899 struct target_ops *t;
2900 for (t = current_target.beneath; t != NULL; t = t->beneath)
2901 {
2902 if (t->to_thread_alive != NULL)
2903 {
2904 int retval;
c906108c 2905
28439f5e
PA
2906 retval = t->to_thread_alive (t, ptid);
2907 if (targetdebug)
2908 fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n",
2909 PIDGET (ptid), retval);
2910
2911 return retval;
2912 }
2913 }
2914
2915 return 0;
2916}
2917
2918void
2919target_find_new_threads (void)
2920{
2921 struct target_ops *t;
2922 for (t = current_target.beneath; t != NULL; t = t->beneath)
2923 {
2924 if (t->to_find_new_threads != NULL)
2925 {
2926 t->to_find_new_threads (t);
2927 if (targetdebug)
2928 fprintf_unfiltered (gdb_stdlog, "target_find_new_threads ()\n");
2929
2930 return;
2931 }
2932 }
c906108c
SS
2933}
2934
c906108c 2935static void
28439f5e 2936debug_to_post_attach (int pid)
c906108c 2937{
28439f5e 2938 debug_target.to_post_attach (pid);
c906108c 2939
28439f5e 2940 fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid);
c906108c
SS
2941}
2942
f00150c9
DE
2943/* Return a pretty printed form of target_waitstatus.
2944 Space for the result is malloc'd, caller must free. */
c906108c 2945
f00150c9
DE
2946char *
2947target_waitstatus_to_string (const struct target_waitstatus *ws)
2948{
2949 const char *kind_str = "status->kind = ";
c906108c 2950
f00150c9 2951 switch (ws->kind)
c906108c
SS
2952 {
2953 case TARGET_WAITKIND_EXITED:
f00150c9
DE
2954 return xstrprintf ("%sexited, status = %d",
2955 kind_str, ws->value.integer);
c906108c 2956 case TARGET_WAITKIND_STOPPED:
f00150c9
DE
2957 return xstrprintf ("%sstopped, signal = %s",
2958 kind_str, target_signal_to_name (ws->value.sig));
c906108c 2959 case TARGET_WAITKIND_SIGNALLED:
f00150c9
DE
2960 return xstrprintf ("%ssignalled, signal = %s",
2961 kind_str, target_signal_to_name (ws->value.sig));
c906108c 2962 case TARGET_WAITKIND_LOADED:
f00150c9 2963 return xstrprintf ("%sloaded", kind_str);
c906108c 2964 case TARGET_WAITKIND_FORKED:
f00150c9 2965 return xstrprintf ("%sforked", kind_str);
c906108c 2966 case TARGET_WAITKIND_VFORKED:
f00150c9 2967 return xstrprintf ("%svforked", kind_str);
c906108c 2968 case TARGET_WAITKIND_EXECD:
f00150c9
DE
2969 return xstrprintf ("%sexecd", kind_str);
2970 case TARGET_WAITKIND_SYSCALL_ENTRY:
a96d9b2e 2971 return xstrprintf ("%sentered syscall", kind_str);
f00150c9 2972 case TARGET_WAITKIND_SYSCALL_RETURN:
a96d9b2e 2973 return xstrprintf ("%sexited syscall", kind_str);
c906108c 2974 case TARGET_WAITKIND_SPURIOUS:
f00150c9
DE
2975 return xstrprintf ("%sspurious", kind_str);
2976 case TARGET_WAITKIND_IGNORE:
2977 return xstrprintf ("%signore", kind_str);
2978 case TARGET_WAITKIND_NO_HISTORY:
2979 return xstrprintf ("%sno-history", kind_str);
c906108c 2980 default:
f00150c9 2981 return xstrprintf ("%sunknown???", kind_str);
c906108c 2982 }
f00150c9
DE
2983}
2984
bf0c5130 2985static void
56be3814
UW
2986debug_print_register (const char * func,
2987 struct regcache *regcache, int regno)
bf0c5130 2988{
f8d29908 2989 struct gdbarch *gdbarch = get_regcache_arch (regcache);
bf0c5130 2990 fprintf_unfiltered (gdb_stdlog, "%s ", func);
f8d29908 2991 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch)
f8d29908
UW
2992 && gdbarch_register_name (gdbarch, regno) != NULL
2993 && gdbarch_register_name (gdbarch, regno)[0] != '\0')
2994 fprintf_unfiltered (gdb_stdlog, "(%s)",
2995 gdbarch_register_name (gdbarch, regno));
bf0c5130
AC
2996 else
2997 fprintf_unfiltered (gdb_stdlog, "(%d)", regno);
0ff58721 2998 if (regno >= 0 && regno < gdbarch_num_regs (gdbarch))
bf0c5130 2999 {
e17a4113 3000 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
f8d29908 3001 int i, size = register_size (gdbarch, regno);
d9d9c31f 3002 unsigned char buf[MAX_REGISTER_SIZE];
0ff58721 3003 regcache_raw_collect (regcache, regno, buf);
bf0c5130 3004 fprintf_unfiltered (gdb_stdlog, " = ");
81c4a259 3005 for (i = 0; i < size; i++)
bf0c5130
AC
3006 {
3007 fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]);
3008 }
81c4a259 3009 if (size <= sizeof (LONGEST))
bf0c5130 3010 {
e17a4113 3011 ULONGEST val = extract_unsigned_integer (buf, size, byte_order);
0b1553bc
UW
3012 fprintf_unfiltered (gdb_stdlog, " %s %s",
3013 core_addr_to_string_nz (val), plongest (val));
bf0c5130
AC
3014 }
3015 }
3016 fprintf_unfiltered (gdb_stdlog, "\n");
3017}
3018
28439f5e
PA
3019void
3020target_fetch_registers (struct regcache *regcache, int regno)
c906108c 3021{
28439f5e
PA
3022 struct target_ops *t;
3023 for (t = current_target.beneath; t != NULL; t = t->beneath)
3024 {
3025 if (t->to_fetch_registers != NULL)
3026 {
3027 t->to_fetch_registers (t, regcache, regno);
3028 if (targetdebug)
3029 debug_print_register ("target_fetch_registers", regcache, regno);
3030 return;
3031 }
3032 }
c906108c
SS
3033}
3034
28439f5e
PA
3035void
3036target_store_registers (struct regcache *regcache, int regno)
c906108c 3037{
28439f5e
PA
3038
3039 struct target_ops *t;
3040 for (t = current_target.beneath; t != NULL; t = t->beneath)
3041 {
3042 if (t->to_store_registers != NULL)
3043 {
3044 t->to_store_registers (t, regcache, regno);
3045 if (targetdebug)
3046 {
3047 debug_print_register ("target_store_registers", regcache, regno);
3048 }
3049 return;
3050 }
3051 }
3052
3053 noprocess ();
c906108c
SS
3054}
3055
dc146f7c
VP
3056int
3057target_core_of_thread (ptid_t ptid)
3058{
3059 struct target_ops *t;
3060
3061 for (t = current_target.beneath; t != NULL; t = t->beneath)
3062 {
3063 if (t->to_core_of_thread != NULL)
3064 {
3065 int retval = t->to_core_of_thread (t, ptid);
3066 if (targetdebug)
3067 fprintf_unfiltered (gdb_stdlog, "target_core_of_thread (%d) = %d\n",
3068 PIDGET (ptid), retval);
3069 return retval;
3070 }
3071 }
3072
3073 return -1;
3074}
3075
c906108c 3076static void
316f2060 3077debug_to_prepare_to_store (struct regcache *regcache)
c906108c 3078{
316f2060 3079 debug_target.to_prepare_to_store (regcache);
c906108c 3080
96baa820 3081 fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n");
c906108c
SS
3082}
3083
3084static int
961cb7b5 3085deprecated_debug_xfer_memory (CORE_ADDR memaddr, bfd_byte *myaddr, int len,
c8e73a31
AC
3086 int write, struct mem_attrib *attrib,
3087 struct target_ops *target)
c906108c
SS
3088{
3089 int retval;
3090
c8e73a31
AC
3091 retval = debug_target.deprecated_xfer_memory (memaddr, myaddr, len, write,
3092 attrib, target);
c906108c 3093
96baa820 3094 fprintf_unfiltered (gdb_stdlog,
53b71562 3095 "target_xfer_memory (%s, xxx, %d, %s, xxx) = %d",
5af949e3
UW
3096 paddress (target_gdbarch, memaddr), len,
3097 write ? "write" : "read", retval);
c906108c 3098
c906108c
SS
3099 if (retval > 0)
3100 {
3101 int i;
3102
96baa820 3103 fputs_unfiltered (", bytes =", gdb_stdlog);
c906108c
SS
3104 for (i = 0; i < retval; i++)
3105 {
53b71562 3106 if ((((intptr_t) &(myaddr[i])) & 0xf) == 0)
333dabeb
DJ
3107 {
3108 if (targetdebug < 2 && i > 0)
3109 {
3110 fprintf_unfiltered (gdb_stdlog, " ...");
3111 break;
3112 }
3113 fprintf_unfiltered (gdb_stdlog, "\n");
3114 }
2bc416ba 3115
96baa820 3116 fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff);
c906108c
SS
3117 }
3118 }
3119
96baa820 3120 fputc_unfiltered ('\n', gdb_stdlog);
c906108c
SS
3121
3122 return retval;
3123}
3124
3125static void
fba45db2 3126debug_to_files_info (struct target_ops *target)
c906108c
SS
3127{
3128 debug_target.to_files_info (target);
3129
96baa820 3130 fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n");
c906108c
SS
3131}
3132
3133static int
a6d9a66e
UW
3134debug_to_insert_breakpoint (struct gdbarch *gdbarch,
3135 struct bp_target_info *bp_tgt)
c906108c
SS
3136{
3137 int retval;
3138
a6d9a66e 3139 retval = debug_target.to_insert_breakpoint (gdbarch, bp_tgt);
c906108c 3140
96baa820 3141 fprintf_unfiltered (gdb_stdlog,
104c1213 3142 "target_insert_breakpoint (0x%lx, xxx) = %ld\n",
8181d85f 3143 (unsigned long) bp_tgt->placed_address,
104c1213 3144 (unsigned long) retval);
c906108c
SS
3145 return retval;
3146}
3147
3148static int
a6d9a66e
UW
3149debug_to_remove_breakpoint (struct gdbarch *gdbarch,
3150 struct bp_target_info *bp_tgt)
c906108c
SS
3151{
3152 int retval;
3153
a6d9a66e 3154 retval = debug_target.to_remove_breakpoint (gdbarch, bp_tgt);
c906108c 3155
96baa820 3156 fprintf_unfiltered (gdb_stdlog,
104c1213 3157 "target_remove_breakpoint (0x%lx, xxx) = %ld\n",
8181d85f 3158 (unsigned long) bp_tgt->placed_address,
104c1213 3159 (unsigned long) retval);
c906108c
SS
3160 return retval;
3161}
3162
ccaa32c7
GS
3163static int
3164debug_to_can_use_hw_breakpoint (int type, int cnt, int from_tty)
3165{
3166 int retval;
3167
3168 retval = debug_target.to_can_use_hw_breakpoint (type, cnt, from_tty);
3169
3170 fprintf_unfiltered (gdb_stdlog,
3171 "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n",
3172 (unsigned long) type,
3173 (unsigned long) cnt,
3174 (unsigned long) from_tty,
3175 (unsigned long) retval);
3176 return retval;
3177}
3178
e0d24f8d
WZ
3179static int
3180debug_to_region_ok_for_hw_watchpoint (CORE_ADDR addr, int len)
3181{
3182 CORE_ADDR retval;
3183
3184 retval = debug_target.to_region_ok_for_hw_watchpoint (addr, len);
3185
3186 fprintf_unfiltered (gdb_stdlog,
d92524f1 3187 "target_region_ok_for_hw_watchpoint (%ld, %ld) = 0x%lx\n",
e0d24f8d
WZ
3188 (unsigned long) addr,
3189 (unsigned long) len,
3190 (unsigned long) retval);
3191 return retval;
3192}
3193
ccaa32c7
GS
3194static int
3195debug_to_stopped_by_watchpoint (void)
3196{
3197 int retval;
3198
3199 retval = debug_target.to_stopped_by_watchpoint ();
3200
3201 fprintf_unfiltered (gdb_stdlog,
d92524f1 3202 "target_stopped_by_watchpoint () = %ld\n",
ccaa32c7
GS
3203 (unsigned long) retval);
3204 return retval;
3205}
3206
4aa7a7f5
JJ
3207static int
3208debug_to_stopped_data_address (struct target_ops *target, CORE_ADDR *addr)
ccaa32c7 3209{
4aa7a7f5 3210 int retval;
ccaa32c7 3211
4aa7a7f5 3212 retval = debug_target.to_stopped_data_address (target, addr);
ccaa32c7
GS
3213
3214 fprintf_unfiltered (gdb_stdlog,
4aa7a7f5
JJ
3215 "target_stopped_data_address ([0x%lx]) = %ld\n",
3216 (unsigned long)*addr,
3217 (unsigned long)retval);
ccaa32c7
GS
3218 return retval;
3219}
3220
5009afc5
AS
3221static int
3222debug_to_watchpoint_addr_within_range (struct target_ops *target,
3223 CORE_ADDR addr,
3224 CORE_ADDR start, int length)
3225{
3226 int retval;
3227
3228 retval = debug_target.to_watchpoint_addr_within_range (target, addr,
3229 start, length);
3230
3231 fprintf_filtered (gdb_stdlog,
3232 "target_watchpoint_addr_within_range (0x%lx, 0x%lx, %d) = %d\n",
3233 (unsigned long) addr, (unsigned long) start, length,
3234 retval);
3235 return retval;
3236}
3237
ccaa32c7 3238static int
a6d9a66e
UW
3239debug_to_insert_hw_breakpoint (struct gdbarch *gdbarch,
3240 struct bp_target_info *bp_tgt)
ccaa32c7
GS
3241{
3242 int retval;
3243
a6d9a66e 3244 retval = debug_target.to_insert_hw_breakpoint (gdbarch, bp_tgt);
ccaa32c7
GS
3245
3246 fprintf_unfiltered (gdb_stdlog,
3247 "target_insert_hw_breakpoint (0x%lx, xxx) = %ld\n",
8181d85f 3248 (unsigned long) bp_tgt->placed_address,
ccaa32c7
GS
3249 (unsigned long) retval);
3250 return retval;
3251}
3252
3253static int
a6d9a66e
UW
3254debug_to_remove_hw_breakpoint (struct gdbarch *gdbarch,
3255 struct bp_target_info *bp_tgt)
ccaa32c7
GS
3256{
3257 int retval;
3258
a6d9a66e 3259 retval = debug_target.to_remove_hw_breakpoint (gdbarch, bp_tgt);
ccaa32c7
GS
3260
3261 fprintf_unfiltered (gdb_stdlog,
3262 "target_remove_hw_breakpoint (0x%lx, xxx) = %ld\n",
8181d85f 3263 (unsigned long) bp_tgt->placed_address,
ccaa32c7
GS
3264 (unsigned long) retval);
3265 return retval;
3266}
3267
3268static int
3269debug_to_insert_watchpoint (CORE_ADDR addr, int len, int type)
3270{
3271 int retval;
3272
3273 retval = debug_target.to_insert_watchpoint (addr, len, type);
3274
3275 fprintf_unfiltered (gdb_stdlog,
3276 "target_insert_watchpoint (0x%lx, %d, %d) = %ld\n",
3277 (unsigned long) addr, len, type, (unsigned long) retval);
3278 return retval;
3279}
3280
3281static int
3282debug_to_remove_watchpoint (CORE_ADDR addr, int len, int type)
3283{
3284 int retval;
3285
ecde4882 3286 retval = debug_target.to_remove_watchpoint (addr, len, type);
ccaa32c7
GS
3287
3288 fprintf_unfiltered (gdb_stdlog,
ecde4882 3289 "target_remove_watchpoint (0x%lx, %d, %d) = %ld\n",
ccaa32c7
GS
3290 (unsigned long) addr, len, type, (unsigned long) retval);
3291 return retval;
3292}
3293
c906108c 3294static void
fba45db2 3295debug_to_terminal_init (void)
c906108c
SS
3296{
3297 debug_target.to_terminal_init ();
3298
96baa820 3299 fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n");
c906108c
SS
3300}
3301
3302static void
fba45db2 3303debug_to_terminal_inferior (void)
c906108c
SS
3304{
3305 debug_target.to_terminal_inferior ();
3306
96baa820 3307 fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n");
c906108c
SS
3308}
3309
3310static void
fba45db2 3311debug_to_terminal_ours_for_output (void)
c906108c
SS
3312{
3313 debug_target.to_terminal_ours_for_output ();
3314
96baa820 3315 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n");
c906108c
SS
3316}
3317
3318static void
fba45db2 3319debug_to_terminal_ours (void)
c906108c
SS
3320{
3321 debug_target.to_terminal_ours ();
3322
96baa820 3323 fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n");
c906108c
SS
3324}
3325
a790ad35
SC
3326static void
3327debug_to_terminal_save_ours (void)
3328{
3329 debug_target.to_terminal_save_ours ();
3330
3331 fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n");
3332}
3333
c906108c 3334static void
fba45db2 3335debug_to_terminal_info (char *arg, int from_tty)
c906108c
SS
3336{
3337 debug_target.to_terminal_info (arg, from_tty);
3338
96baa820 3339 fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg,
c906108c
SS
3340 from_tty);
3341}
3342
c906108c 3343static void
fba45db2 3344debug_to_load (char *args, int from_tty)
c906108c
SS
3345{
3346 debug_target.to_load (args, from_tty);
3347
96baa820 3348 fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty);
c906108c
SS
3349}
3350
3351static int
fba45db2 3352debug_to_lookup_symbol (char *name, CORE_ADDR *addrp)
c906108c
SS
3353{
3354 int retval;
3355
3356 retval = debug_target.to_lookup_symbol (name, addrp);
3357
96baa820 3358 fprintf_unfiltered (gdb_stdlog, "target_lookup_symbol (%s, xxx)\n", name);
c906108c
SS
3359
3360 return retval;
3361}
3362
c906108c 3363static void
39f77062 3364debug_to_post_startup_inferior (ptid_t ptid)
c906108c 3365{
39f77062 3366 debug_target.to_post_startup_inferior (ptid);
c906108c 3367
96baa820 3368 fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n",
39f77062 3369 PIDGET (ptid));
c906108c
SS
3370}
3371
3372static void
fba45db2 3373debug_to_acknowledge_created_inferior (int pid)
c906108c
SS
3374{
3375 debug_target.to_acknowledge_created_inferior (pid);
3376
96baa820 3377 fprintf_unfiltered (gdb_stdlog, "target_acknowledge_created_inferior (%d)\n",
c906108c
SS
3378 pid);
3379}
3380
fa113d1a 3381static void
fba45db2 3382debug_to_insert_fork_catchpoint (int pid)
c906108c 3383{
fa113d1a 3384 debug_target.to_insert_fork_catchpoint (pid);
c906108c 3385
fa113d1a
AC
3386 fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d)\n",
3387 pid);
c906108c
SS
3388}
3389
3390static int
fba45db2 3391debug_to_remove_fork_catchpoint (int pid)
c906108c 3392{
c5aa993b 3393 int retval;
c906108c
SS
3394
3395 retval = debug_target.to_remove_fork_catchpoint (pid);
3396
96baa820 3397 fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n",
c5aa993b 3398 pid, retval);
c906108c
SS
3399
3400 return retval;
3401}
3402
fa113d1a 3403static void
fba45db2 3404debug_to_insert_vfork_catchpoint (int pid)
c906108c 3405{
fa113d1a 3406 debug_target.to_insert_vfork_catchpoint (pid);
c906108c 3407
fa113d1a
AC
3408 fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d)\n",
3409 pid);
c906108c
SS
3410}
3411
3412static int
fba45db2 3413debug_to_remove_vfork_catchpoint (int pid)
c906108c 3414{
c5aa993b 3415 int retval;
c906108c
SS
3416
3417 retval = debug_target.to_remove_vfork_catchpoint (pid);
3418
96baa820 3419 fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n",
c5aa993b 3420 pid, retval);
c906108c
SS
3421
3422 return retval;
3423}
3424
fa113d1a 3425static void
fba45db2 3426debug_to_insert_exec_catchpoint (int pid)
c906108c 3427{
fa113d1a 3428 debug_target.to_insert_exec_catchpoint (pid);
c906108c 3429
fa113d1a
AC
3430 fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d)\n",
3431 pid);
c906108c
SS
3432}
3433
3434static int
fba45db2 3435debug_to_remove_exec_catchpoint (int pid)
c906108c 3436{
c5aa993b 3437 int retval;
c906108c
SS
3438
3439 retval = debug_target.to_remove_exec_catchpoint (pid);
3440
96baa820 3441 fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n",
c5aa993b 3442 pid, retval);
c906108c
SS
3443
3444 return retval;
3445}
3446
c906108c 3447static int
fba45db2 3448debug_to_has_exited (int pid, int wait_status, int *exit_status)
c906108c 3449{
c5aa993b 3450 int has_exited;
c906108c
SS
3451
3452 has_exited = debug_target.to_has_exited (pid, wait_status, exit_status);
3453
96baa820 3454 fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n",
c5aa993b 3455 pid, wait_status, *exit_status, has_exited);
c906108c
SS
3456
3457 return has_exited;
3458}
3459
c906108c 3460static int
fba45db2 3461debug_to_can_run (void)
c906108c
SS
3462{
3463 int retval;
3464
3465 retval = debug_target.to_can_run ();
3466
96baa820 3467 fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval);
c906108c
SS
3468
3469 return retval;
3470}
3471
3472static void
39f77062 3473debug_to_notice_signals (ptid_t ptid)
c906108c 3474{
39f77062 3475 debug_target.to_notice_signals (ptid);
c906108c 3476
39f77062
KB
3477 fprintf_unfiltered (gdb_stdlog, "target_notice_signals (%d)\n",
3478 PIDGET (ptid));
c906108c
SS
3479}
3480
c2250ad1
UW
3481static struct gdbarch *
3482debug_to_thread_architecture (struct target_ops *ops, ptid_t ptid)
3483{
3484 struct gdbarch *retval;
3485
3486 retval = debug_target.to_thread_architecture (ops, ptid);
3487
67e5d36c
PM
3488 fprintf_unfiltered (gdb_stdlog, "target_thread_architecture (%s) = %s [%s]\n",
3489 target_pid_to_str (ptid), host_address_to_string (retval),
c2250ad1
UW
3490 gdbarch_bfd_arch_info (retval)->printable_name);
3491 return retval;
3492}
3493
c906108c 3494static void
94cc34af 3495debug_to_stop (ptid_t ptid)
c906108c 3496{
94cc34af 3497 debug_target.to_stop (ptid);
c906108c 3498
94cc34af
PA
3499 fprintf_unfiltered (gdb_stdlog, "target_stop (%s)\n",
3500 target_pid_to_str (ptid));
c906108c
SS
3501}
3502
96baa820
JM
3503static void
3504debug_to_rcmd (char *command,
d9fcf2fb 3505 struct ui_file *outbuf)
96baa820
JM
3506{
3507 debug_target.to_rcmd (command, outbuf);
3508 fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command);
3509}
3510
c906108c 3511static char *
fba45db2 3512debug_to_pid_to_exec_file (int pid)
c906108c 3513{
c5aa993b 3514 char *exec_file;
c906108c
SS
3515
3516 exec_file = debug_target.to_pid_to_exec_file (pid);
3517
96baa820 3518 fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n",
c5aa993b 3519 pid, exec_file);
c906108c
SS
3520
3521 return exec_file;
3522}
3523
c906108c 3524static void
fba45db2 3525setup_target_debug (void)
c906108c
SS
3526{
3527 memcpy (&debug_target, &current_target, sizeof debug_target);
3528
3529 current_target.to_open = debug_to_open;
c906108c 3530 current_target.to_post_attach = debug_to_post_attach;
c906108c 3531 current_target.to_prepare_to_store = debug_to_prepare_to_store;
c8e73a31 3532 current_target.deprecated_xfer_memory = deprecated_debug_xfer_memory;
c906108c
SS
3533 current_target.to_files_info = debug_to_files_info;
3534 current_target.to_insert_breakpoint = debug_to_insert_breakpoint;
3535 current_target.to_remove_breakpoint = debug_to_remove_breakpoint;
ccaa32c7
GS
3536 current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint;
3537 current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint;
3538 current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint;
3539 current_target.to_insert_watchpoint = debug_to_insert_watchpoint;
3540 current_target.to_remove_watchpoint = debug_to_remove_watchpoint;
3541 current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint;
3542 current_target.to_stopped_data_address = debug_to_stopped_data_address;
5009afc5 3543 current_target.to_watchpoint_addr_within_range = debug_to_watchpoint_addr_within_range;
e0d24f8d 3544 current_target.to_region_ok_for_hw_watchpoint = debug_to_region_ok_for_hw_watchpoint;
c906108c
SS
3545 current_target.to_terminal_init = debug_to_terminal_init;
3546 current_target.to_terminal_inferior = debug_to_terminal_inferior;
3547 current_target.to_terminal_ours_for_output = debug_to_terminal_ours_for_output;
3548 current_target.to_terminal_ours = debug_to_terminal_ours;
a790ad35 3549 current_target.to_terminal_save_ours = debug_to_terminal_save_ours;
c906108c 3550 current_target.to_terminal_info = debug_to_terminal_info;
c906108c
SS
3551 current_target.to_load = debug_to_load;
3552 current_target.to_lookup_symbol = debug_to_lookup_symbol;
c906108c
SS
3553 current_target.to_post_startup_inferior = debug_to_post_startup_inferior;
3554 current_target.to_acknowledge_created_inferior = debug_to_acknowledge_created_inferior;
c906108c
SS
3555 current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint;
3556 current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint;
3557 current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint;
3558 current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint;
c906108c
SS
3559 current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint;
3560 current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint;
c906108c 3561 current_target.to_has_exited = debug_to_has_exited;
c906108c
SS
3562 current_target.to_can_run = debug_to_can_run;
3563 current_target.to_notice_signals = debug_to_notice_signals;
c906108c 3564 current_target.to_stop = debug_to_stop;
96baa820 3565 current_target.to_rcmd = debug_to_rcmd;
c906108c 3566 current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file;
c2250ad1 3567 current_target.to_thread_architecture = debug_to_thread_architecture;
c906108c 3568}
c906108c 3569\f
c5aa993b
JM
3570
3571static char targ_desc[] =
3572"Names of targets and files being debugged.\n\
c906108c
SS
3573Shows the entire stack of targets currently in use (including the exec-file,\n\
3574core-file, and process, if any), as well as the symbol file name.";
3575
96baa820
JM
3576static void
3577do_monitor_command (char *cmd,
3578 int from_tty)
3579{
2b5fe715
AC
3580 if ((current_target.to_rcmd
3581 == (void (*) (char *, struct ui_file *)) tcomplain)
96baa820 3582 || (current_target.to_rcmd == debug_to_rcmd
2b5fe715
AC
3583 && (debug_target.to_rcmd
3584 == (void (*) (char *, struct ui_file *)) tcomplain)))
8a3fe4f8 3585 error (_("\"monitor\" command not supported by this target."));
96baa820
JM
3586 target_rcmd (cmd, gdb_stdtarg);
3587}
3588
87680a14
JB
3589/* Print the name of each layers of our target stack. */
3590
3591static void
3592maintenance_print_target_stack (char *cmd, int from_tty)
3593{
3594 struct target_ops *t;
3595
3596 printf_filtered (_("The current target stack is:\n"));
3597
3598 for (t = target_stack; t != NULL; t = t->beneath)
3599 {
3600 printf_filtered (" - %s (%s)\n", t->to_shortname, t->to_longname);
3601 }
3602}
3603
c6ebd6cf
VP
3604/* Controls if async mode is permitted. */
3605int target_async_permitted = 0;
3606
3607/* The set command writes to this variable. If the inferior is
3608 executing, linux_nat_async_permitted is *not* updated. */
3609static int target_async_permitted_1 = 0;
3610
3611static void
3612set_maintenance_target_async_permitted (char *args, int from_tty,
3613 struct cmd_list_element *c)
3614{
c35b1492 3615 if (have_live_inferiors ())
c6ebd6cf
VP
3616 {
3617 target_async_permitted_1 = target_async_permitted;
3618 error (_("Cannot change this setting while the inferior is running."));
3619 }
3620
3621 target_async_permitted = target_async_permitted_1;
3622}
3623
3624static void
3625show_maintenance_target_async_permitted (struct ui_file *file, int from_tty,
3626 struct cmd_list_element *c,
3627 const char *value)
3628{
3629 fprintf_filtered (file, _("\
3630Controlling the inferior in asynchronous mode is %s.\n"), value);
3631}
3632
c906108c 3633void
fba45db2 3634initialize_targets (void)
c906108c
SS
3635{
3636 init_dummy_target ();
3637 push_target (&dummy_target);
3638
3639 add_info ("target", target_info, targ_desc);
3640 add_info ("files", target_info, targ_desc);
3641
85c07804
AC
3642 add_setshow_zinteger_cmd ("target", class_maintenance, &targetdebug, _("\
3643Set target debugging."), _("\
3644Show target debugging."), _("\
333dabeb
DJ
3645When non-zero, target debugging is enabled. Higher numbers are more\n\
3646verbose. Changes do not take effect until the next \"run\" or \"target\"\n\
85c07804
AC
3647command."),
3648 NULL,
920d2a44 3649 show_targetdebug,
85c07804 3650 &setdebuglist, &showdebuglist);
3a11626d 3651
2bc416ba 3652 add_setshow_boolean_cmd ("trust-readonly-sections", class_support,
7915a72c
AC
3653 &trust_readonly, _("\
3654Set mode for reading from readonly sections."), _("\
3655Show mode for reading from readonly sections."), _("\
3a11626d
MS
3656When this mode is on, memory reads from readonly sections (such as .text)\n\
3657will be read from the object file instead of from the target. This will\n\
7915a72c 3658result in significant performance improvement for remote targets."),
2c5b56ce 3659 NULL,
920d2a44 3660 show_trust_readonly,
e707bbc2 3661 &setlist, &showlist);
96baa820
JM
3662
3663 add_com ("monitor", class_obscure, do_monitor_command,
1bedd215 3664 _("Send a command to the remote monitor (remote targets only)."));
96baa820 3665
87680a14
JB
3666 add_cmd ("target-stack", class_maintenance, maintenance_print_target_stack,
3667 _("Print the name of each layer of the internal target stack."),
3668 &maintenanceprintlist);
3669
c6ebd6cf
VP
3670 add_setshow_boolean_cmd ("target-async", no_class,
3671 &target_async_permitted_1, _("\
3672Set whether gdb controls the inferior in asynchronous mode."), _("\
3673Show whether gdb controls the inferior in asynchronous mode."), _("\
3674Tells gdb whether to control the inferior in asynchronous mode."),
3675 set_maintenance_target_async_permitted,
3676 show_maintenance_target_async_permitted,
3677 &setlist,
3678 &showlist);
3679
4e5d721f 3680 add_setshow_boolean_cmd ("stack-cache", class_support,
9cf1b572 3681 &stack_cache_enabled_p_1, _("\
4e5d721f
DE
3682Set cache use for stack access."), _("\
3683Show cache use for stack access."), _("\
3684When on, use the data cache for all stack access, regardless of any\n\
3685configured memory regions. This improves remote performance significantly.\n\
3686By default, caching for stack access is on."),
3687 set_stack_cache_enabled_p,
3688 show_stack_cache_enabled_p,
3689 &setlist, &showlist);
3690
8add0441 3691 target_dcache = dcache_init ();
c906108c 3692}
This page took 1.260258 seconds and 4 git commands to generate.