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