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