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