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