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