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