]>
Commit | Line | Data |
---|---|---|
c906108c | 1 | /* Select target systems and architectures at runtime for GDB. |
7998dfc3 AC |
2 | |
3 | Copyright 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998, | |
4 | 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. | |
5 | ||
c906108c SS |
6 | Contributed by Cygnus Support. |
7 | ||
c5aa993b | 8 | This file is part of GDB. |
c906108c | 9 | |
c5aa993b JM |
10 | This program is free software; you can redistribute it and/or modify |
11 | it under the terms of the GNU General Public License as published by | |
12 | the Free Software Foundation; either version 2 of the License, or | |
13 | (at your option) any later version. | |
c906108c | 14 | |
c5aa993b JM |
15 | This program is distributed in the hope that it will be useful, |
16 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 | GNU General Public License for more details. | |
c906108c | 19 | |
c5aa993b JM |
20 | You should have received a copy of the GNU General Public License |
21 | along with this program; if not, write to the Free Software | |
22 | Foundation, Inc., 59 Temple Place - Suite 330, | |
23 | Boston, MA 02111-1307, USA. */ | |
c906108c SS |
24 | |
25 | #include "defs.h" | |
26 | #include <errno.h> | |
c906108c SS |
27 | #include "gdb_string.h" |
28 | #include "target.h" | |
29 | #include "gdbcmd.h" | |
30 | #include "symtab.h" | |
31 | #include "inferior.h" | |
32 | #include "bfd.h" | |
33 | #include "symfile.h" | |
34 | #include "objfiles.h" | |
03f2053f | 35 | #include "gdb_wait.h" |
4930751a | 36 | #include "dcache.h" |
c906108c | 37 | #include <signal.h> |
4e052eda | 38 | #include "regcache.h" |
0088c768 | 39 | #include "gdb_assert.h" |
b6591e8b | 40 | #include "gdbcore.h" |
c906108c | 41 | |
a14ed312 | 42 | static void target_info (char *, int); |
c906108c | 43 | |
a14ed312 | 44 | static void maybe_kill_then_create_inferior (char *, char *, char **); |
c906108c | 45 | |
a14ed312 | 46 | static void maybe_kill_then_attach (char *, int); |
c906108c | 47 | |
a14ed312 | 48 | static void kill_or_be_killed (int); |
c906108c | 49 | |
a14ed312 | 50 | static void default_terminal_info (char *, int); |
c906108c | 51 | |
ccaa32c7 GS |
52 | static int default_region_size_ok_for_hw_watchpoint (int); |
53 | ||
a14ed312 | 54 | static int nosymbol (char *, CORE_ADDR *); |
c906108c | 55 | |
a14ed312 | 56 | static void tcomplain (void); |
c906108c | 57 | |
a14ed312 | 58 | static int nomemory (CORE_ADDR, char *, int, int, struct target_ops *); |
c906108c | 59 | |
a14ed312 | 60 | static int return_zero (void); |
c906108c | 61 | |
a14ed312 | 62 | static int return_one (void); |
c906108c | 63 | |
ccaa32c7 GS |
64 | static int return_minus_one (void); |
65 | ||
a14ed312 | 66 | void target_ignore (void); |
c906108c | 67 | |
a14ed312 | 68 | static void target_command (char *, int); |
c906108c | 69 | |
a14ed312 | 70 | static struct target_ops *find_default_run_target (char *); |
c906108c | 71 | |
a14ed312 | 72 | static void nosupport_runtime (void); |
392a587b | 73 | |
39f77062 | 74 | static void normal_target_post_startup_inferior (ptid_t ptid); |
392a587b | 75 | |
4b8a223f | 76 | static LONGEST default_xfer_partial (struct target_ops *ops, |
0088c768 | 77 | enum target_object object, |
8aa91c1e AC |
78 | const char *annex, void *readbuf, |
79 | const void *writebuf, | |
80 | ULONGEST offset, LONGEST len); | |
0088c768 | 81 | |
917317f4 JM |
82 | /* Transfer LEN bytes between target address MEMADDR and GDB address |
83 | MYADDR. Returns 0 for success, errno code for failure (which | |
84 | includes partial transfers -- if you want a more useful response to | |
85 | partial transfers, try either target_read_memory_partial or | |
86 | target_write_memory_partial). */ | |
c906108c | 87 | |
570b8f7c AC |
88 | static int target_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, |
89 | int write); | |
c906108c | 90 | |
a14ed312 | 91 | static void init_dummy_target (void); |
c906108c | 92 | |
a14ed312 | 93 | static void debug_to_open (char *, int); |
c906108c | 94 | |
a14ed312 | 95 | static void debug_to_close (int); |
c906108c | 96 | |
a14ed312 | 97 | static void debug_to_attach (char *, int); |
c906108c | 98 | |
a14ed312 | 99 | static void debug_to_detach (char *, int); |
c906108c | 100 | |
6ad8ae5c DJ |
101 | static void debug_to_disconnect (char *, int); |
102 | ||
39f77062 | 103 | static void debug_to_resume (ptid_t, int, enum target_signal); |
c906108c | 104 | |
39f77062 | 105 | static ptid_t debug_to_wait (ptid_t, struct target_waitstatus *); |
c906108c | 106 | |
a14ed312 | 107 | static void debug_to_fetch_registers (int); |
c906108c | 108 | |
a14ed312 | 109 | static void debug_to_store_registers (int); |
c906108c | 110 | |
a14ed312 | 111 | static void debug_to_prepare_to_store (void); |
c906108c | 112 | |
5ae5f592 AC |
113 | static int debug_to_xfer_memory (CORE_ADDR, char *, int, int, |
114 | struct mem_attrib *, struct target_ops *); | |
c906108c | 115 | |
a14ed312 | 116 | static void debug_to_files_info (struct target_ops *); |
c906108c | 117 | |
a14ed312 | 118 | static int debug_to_insert_breakpoint (CORE_ADDR, char *); |
c906108c | 119 | |
a14ed312 | 120 | static int debug_to_remove_breakpoint (CORE_ADDR, char *); |
c906108c | 121 | |
ccaa32c7 GS |
122 | static int debug_to_can_use_hw_breakpoint (int, int, int); |
123 | ||
124 | static int debug_to_insert_hw_breakpoint (CORE_ADDR, char *); | |
125 | ||
126 | static int debug_to_remove_hw_breakpoint (CORE_ADDR, char *); | |
127 | ||
128 | static int debug_to_insert_watchpoint (CORE_ADDR, int, int); | |
129 | ||
130 | static int debug_to_remove_watchpoint (CORE_ADDR, int, int); | |
131 | ||
132 | static int debug_to_stopped_by_watchpoint (void); | |
133 | ||
134 | static CORE_ADDR debug_to_stopped_data_address (void); | |
135 | ||
136 | static int debug_to_region_size_ok_for_hw_watchpoint (int); | |
137 | ||
a14ed312 | 138 | static void debug_to_terminal_init (void); |
c906108c | 139 | |
a14ed312 | 140 | static void debug_to_terminal_inferior (void); |
c906108c | 141 | |
a14ed312 | 142 | static void debug_to_terminal_ours_for_output (void); |
c906108c | 143 | |
a790ad35 SC |
144 | static void debug_to_terminal_save_ours (void); |
145 | ||
a14ed312 | 146 | static void debug_to_terminal_ours (void); |
c906108c | 147 | |
a14ed312 | 148 | static void debug_to_terminal_info (char *, int); |
c906108c | 149 | |
a14ed312 | 150 | static void debug_to_kill (void); |
c906108c | 151 | |
a14ed312 | 152 | static void debug_to_load (char *, int); |
c906108c | 153 | |
a14ed312 | 154 | static int debug_to_lookup_symbol (char *, CORE_ADDR *); |
c906108c | 155 | |
a14ed312 | 156 | static void debug_to_create_inferior (char *, char *, char **); |
c906108c | 157 | |
a14ed312 | 158 | static void debug_to_mourn_inferior (void); |
c906108c | 159 | |
a14ed312 | 160 | static int debug_to_can_run (void); |
c906108c | 161 | |
39f77062 | 162 | static void debug_to_notice_signals (ptid_t); |
c906108c | 163 | |
39f77062 | 164 | static int debug_to_thread_alive (ptid_t); |
c906108c | 165 | |
a14ed312 | 166 | static void debug_to_stop (void); |
c906108c | 167 | |
c906108c SS |
168 | /* Pointer to array of target architecture structures; the size of the |
169 | array; the current index into the array; the allocated size of the | |
170 | array. */ | |
171 | struct target_ops **target_structs; | |
172 | unsigned target_struct_size; | |
173 | unsigned target_struct_index; | |
174 | unsigned target_struct_allocsize; | |
175 | #define DEFAULT_ALLOCSIZE 10 | |
176 | ||
177 | /* The initial current target, so that there is always a semi-valid | |
178 | current target. */ | |
179 | ||
180 | static struct target_ops dummy_target; | |
181 | ||
182 | /* Top of target stack. */ | |
183 | ||
258b763a | 184 | static struct target_ops *target_stack; |
c906108c SS |
185 | |
186 | /* The target structure we are currently using to talk to a process | |
187 | or file or whatever "inferior" we have. */ | |
188 | ||
189 | struct target_ops current_target; | |
190 | ||
191 | /* Command list for target. */ | |
192 | ||
193 | static struct cmd_list_element *targetlist = NULL; | |
194 | ||
195 | /* Nonzero if we are debugging an attached outside process | |
196 | rather than an inferior. */ | |
197 | ||
198 | int attach_flag; | |
199 | ||
c906108c SS |
200 | /* Non-zero if we want to see trace of target level stuff. */ |
201 | ||
202 | static int targetdebug = 0; | |
203 | ||
a14ed312 | 204 | static void setup_target_debug (void); |
c906108c | 205 | |
4930751a C |
206 | DCACHE *target_dcache; |
207 | ||
c906108c SS |
208 | /* The user just typed 'target' without the name of a target. */ |
209 | ||
c906108c | 210 | static void |
fba45db2 | 211 | target_command (char *arg, int from_tty) |
c906108c SS |
212 | { |
213 | fputs_filtered ("Argument required (target name). Try `help target'\n", | |
214 | gdb_stdout); | |
215 | } | |
216 | ||
217 | /* Add a possible target architecture to the list. */ | |
218 | ||
219 | void | |
fba45db2 | 220 | add_target (struct target_ops *t) |
c906108c | 221 | { |
0088c768 | 222 | /* Provide default values for all "must have" methods. */ |
0b603eba AC |
223 | if (t->to_xfer_partial == NULL) |
224 | t->to_xfer_partial = default_xfer_partial; | |
0088c768 | 225 | |
c906108c SS |
226 | if (!target_structs) |
227 | { | |
228 | target_struct_allocsize = DEFAULT_ALLOCSIZE; | |
229 | target_structs = (struct target_ops **) xmalloc | |
230 | (target_struct_allocsize * sizeof (*target_structs)); | |
231 | } | |
232 | if (target_struct_size >= target_struct_allocsize) | |
233 | { | |
234 | target_struct_allocsize *= 2; | |
235 | target_structs = (struct target_ops **) | |
c5aa993b JM |
236 | xrealloc ((char *) target_structs, |
237 | target_struct_allocsize * sizeof (*target_structs)); | |
c906108c SS |
238 | } |
239 | target_structs[target_struct_size++] = t; | |
c906108c SS |
240 | |
241 | if (targetlist == NULL) | |
242 | add_prefix_cmd ("target", class_run, target_command, | |
243 | "Connect to a target machine or process.\n\ | |
244 | The first argument is the type or protocol of the target machine.\n\ | |
245 | Remaining arguments are interpreted by the target protocol. For more\n\ | |
246 | information on the arguments for a particular protocol, type\n\ | |
247 | `help target ' followed by the protocol name.", | |
248 | &targetlist, "target ", 0, &cmdlist); | |
249 | add_cmd (t->to_shortname, no_class, t->to_open, t->to_doc, &targetlist); | |
250 | } | |
251 | ||
252 | /* Stub functions */ | |
253 | ||
254 | void | |
fba45db2 | 255 | target_ignore (void) |
c906108c SS |
256 | { |
257 | } | |
258 | ||
11cf8741 JM |
259 | void |
260 | target_load (char *arg, int from_tty) | |
261 | { | |
4930751a | 262 | dcache_invalidate (target_dcache); |
11cf8741 JM |
263 | (*current_target.to_load) (arg, from_tty); |
264 | } | |
265 | ||
c906108c | 266 | static int |
fba45db2 KB |
267 | nomemory (CORE_ADDR memaddr, char *myaddr, int len, int write, |
268 | struct target_ops *t) | |
c906108c | 269 | { |
c5aa993b JM |
270 | errno = EIO; /* Can't read/write this location */ |
271 | return 0; /* No bytes handled */ | |
c906108c SS |
272 | } |
273 | ||
274 | static void | |
fba45db2 | 275 | tcomplain (void) |
c906108c SS |
276 | { |
277 | error ("You can't do that when your target is `%s'", | |
278 | current_target.to_shortname); | |
279 | } | |
280 | ||
281 | void | |
fba45db2 | 282 | noprocess (void) |
c906108c SS |
283 | { |
284 | error ("You can't do that without a process to debug."); | |
285 | } | |
286 | ||
c906108c | 287 | static int |
fba45db2 | 288 | nosymbol (char *name, CORE_ADDR *addrp) |
c906108c | 289 | { |
c5aa993b | 290 | return 1; /* Symbol does not exist in target env */ |
c906108c SS |
291 | } |
292 | ||
392a587b | 293 | static void |
fba45db2 | 294 | nosupport_runtime (void) |
c906108c | 295 | { |
39f77062 | 296 | if (ptid_equal (inferior_ptid, null_ptid)) |
c906108c SS |
297 | noprocess (); |
298 | else | |
299 | error ("No run-time support for this"); | |
300 | } | |
301 | ||
302 | ||
c906108c | 303 | static void |
fba45db2 | 304 | default_terminal_info (char *args, int from_tty) |
c906108c | 305 | { |
c5aa993b | 306 | printf_unfiltered ("No saved terminal information.\n"); |
c906108c SS |
307 | } |
308 | ||
309 | /* This is the default target_create_inferior and target_attach function. | |
310 | If the current target is executing, it asks whether to kill it off. | |
311 | If this function returns without calling error(), it has killed off | |
312 | the target, and the operation should be attempted. */ | |
313 | ||
314 | static void | |
fba45db2 | 315 | kill_or_be_killed (int from_tty) |
c906108c SS |
316 | { |
317 | if (target_has_execution) | |
318 | { | |
319 | printf_unfiltered ("You are already running a program:\n"); | |
320 | target_files_info (); | |
c5aa993b JM |
321 | if (query ("Kill it? ")) |
322 | { | |
323 | target_kill (); | |
324 | if (target_has_execution) | |
325 | error ("Killing the program did not help."); | |
326 | return; | |
327 | } | |
328 | else | |
329 | { | |
330 | error ("Program not killed."); | |
331 | } | |
c906108c | 332 | } |
c5aa993b | 333 | tcomplain (); |
c906108c SS |
334 | } |
335 | ||
336 | static void | |
fba45db2 | 337 | maybe_kill_then_attach (char *args, int from_tty) |
c906108c SS |
338 | { |
339 | kill_or_be_killed (from_tty); | |
340 | target_attach (args, from_tty); | |
341 | } | |
342 | ||
343 | static void | |
fba45db2 | 344 | maybe_kill_then_create_inferior (char *exec, char *args, char **env) |
c906108c SS |
345 | { |
346 | kill_or_be_killed (0); | |
347 | target_create_inferior (exec, args, env); | |
348 | } | |
349 | ||
7998dfc3 AC |
350 | /* Go through the target stack from top to bottom, copying over zero |
351 | entries in current_target, then filling in still empty entries. In | |
352 | effect, we are doing class inheritance through the pushed target | |
353 | vectors. | |
354 | ||
355 | NOTE: cagney/2003-10-17: The problem with this inheritance, as it | |
356 | is currently implemented, is that it discards any knowledge of | |
357 | which target an inherited method originally belonged to. | |
358 | Consequently, new new target methods should instead explicitly and | |
359 | locally search the target stack for the target that can handle the | |
360 | request. */ | |
c906108c SS |
361 | |
362 | static void | |
7998dfc3 | 363 | update_current_target (void) |
c906108c | 364 | { |
7998dfc3 AC |
365 | struct target_ops *t; |
366 | ||
367 | /* First, reset curren'ts contents. */ | |
368 | memset (¤t_target, 0, sizeof (current_target)); | |
369 | ||
370 | #define INHERIT(FIELD, TARGET) \ | |
371 | if (!current_target.FIELD) \ | |
372 | current_target.FIELD = (TARGET)->FIELD | |
373 | ||
374 | for (t = target_stack; t; t = t->beneath) | |
375 | { | |
376 | INHERIT (to_shortname, t); | |
377 | INHERIT (to_longname, t); | |
378 | INHERIT (to_doc, t); | |
379 | INHERIT (to_open, t); | |
380 | INHERIT (to_close, t); | |
381 | INHERIT (to_attach, t); | |
382 | INHERIT (to_post_attach, t); | |
383 | INHERIT (to_detach, t); | |
384 | INHERIT (to_disconnect, t); | |
385 | INHERIT (to_resume, t); | |
386 | INHERIT (to_wait, t); | |
387 | INHERIT (to_post_wait, t); | |
388 | INHERIT (to_fetch_registers, t); | |
389 | INHERIT (to_store_registers, t); | |
390 | INHERIT (to_prepare_to_store, t); | |
391 | INHERIT (to_xfer_memory, t); | |
392 | INHERIT (to_files_info, t); | |
393 | INHERIT (to_insert_breakpoint, t); | |
394 | INHERIT (to_remove_breakpoint, t); | |
395 | INHERIT (to_can_use_hw_breakpoint, t); | |
396 | INHERIT (to_insert_hw_breakpoint, t); | |
397 | INHERIT (to_remove_hw_breakpoint, t); | |
398 | INHERIT (to_insert_watchpoint, t); | |
399 | INHERIT (to_remove_watchpoint, t); | |
400 | INHERIT (to_stopped_data_address, t); | |
401 | INHERIT (to_stopped_by_watchpoint, t); | |
402 | INHERIT (to_have_continuable_watchpoint, t); | |
403 | INHERIT (to_region_size_ok_for_hw_watchpoint, t); | |
404 | INHERIT (to_terminal_init, t); | |
405 | INHERIT (to_terminal_inferior, t); | |
406 | INHERIT (to_terminal_ours_for_output, t); | |
407 | INHERIT (to_terminal_ours, t); | |
408 | INHERIT (to_terminal_save_ours, t); | |
409 | INHERIT (to_terminal_info, t); | |
410 | INHERIT (to_kill, t); | |
411 | INHERIT (to_load, t); | |
412 | INHERIT (to_lookup_symbol, t); | |
413 | INHERIT (to_create_inferior, t); | |
414 | INHERIT (to_post_startup_inferior, t); | |
415 | INHERIT (to_acknowledge_created_inferior, t); | |
416 | INHERIT (to_insert_fork_catchpoint, t); | |
417 | INHERIT (to_remove_fork_catchpoint, t); | |
418 | INHERIT (to_insert_vfork_catchpoint, t); | |
419 | INHERIT (to_remove_vfork_catchpoint, t); | |
420 | INHERIT (to_follow_fork, t); | |
421 | INHERIT (to_insert_exec_catchpoint, t); | |
422 | INHERIT (to_remove_exec_catchpoint, t); | |
423 | INHERIT (to_reported_exec_events_per_exec_call, t); | |
424 | INHERIT (to_has_exited, t); | |
425 | INHERIT (to_mourn_inferior, t); | |
426 | INHERIT (to_can_run, t); | |
427 | INHERIT (to_notice_signals, t); | |
428 | INHERIT (to_thread_alive, t); | |
429 | INHERIT (to_find_new_threads, t); | |
430 | INHERIT (to_pid_to_str, t); | |
431 | INHERIT (to_extra_thread_info, t); | |
432 | INHERIT (to_stop, t); | |
4b8a223f | 433 | /* Do not inherit to_xfer_partial. */ |
7998dfc3 AC |
434 | INHERIT (to_rcmd, t); |
435 | INHERIT (to_enable_exception_callback, t); | |
436 | INHERIT (to_get_current_exception_event, t); | |
437 | INHERIT (to_pid_to_exec_file, t); | |
438 | INHERIT (to_stratum, t); | |
439 | INHERIT (to_has_all_memory, t); | |
440 | INHERIT (to_has_memory, t); | |
441 | INHERIT (to_has_stack, t); | |
442 | INHERIT (to_has_registers, t); | |
443 | INHERIT (to_has_execution, t); | |
444 | INHERIT (to_has_thread_control, t); | |
445 | INHERIT (to_sections, t); | |
446 | INHERIT (to_sections_end, t); | |
447 | INHERIT (to_can_async_p, t); | |
448 | INHERIT (to_is_async_p, t); | |
449 | INHERIT (to_async, t); | |
450 | INHERIT (to_async_mask_value, t); | |
451 | INHERIT (to_find_memory_regions, t); | |
452 | INHERIT (to_make_corefile_notes, t); | |
453 | INHERIT (to_get_thread_local_address, t); | |
454 | INHERIT (to_magic, t); | |
455 | } | |
456 | #undef INHERIT | |
457 | ||
458 | /* Clean up a target struct so it no longer has any zero pointers in | |
0088c768 AC |
459 | it. Some entries are defaulted to a method that print an error, |
460 | others are hard-wired to a standard recursive default. */ | |
c906108c SS |
461 | |
462 | #define de_fault(field, value) \ | |
7998dfc3 AC |
463 | if (!current_target.field) \ |
464 | current_target.field = value | |
0d06e24b JM |
465 | |
466 | de_fault (to_open, | |
467 | (void (*) (char *, int)) | |
468 | tcomplain); | |
469 | de_fault (to_close, | |
470 | (void (*) (int)) | |
471 | target_ignore); | |
472 | de_fault (to_attach, | |
473 | maybe_kill_then_attach); | |
474 | de_fault (to_post_attach, | |
475 | (void (*) (int)) | |
476 | target_ignore); | |
0d06e24b JM |
477 | de_fault (to_detach, |
478 | (void (*) (char *, int)) | |
479 | target_ignore); | |
6ad8ae5c DJ |
480 | de_fault (to_disconnect, |
481 | (void (*) (char *, int)) | |
482 | tcomplain); | |
0d06e24b | 483 | de_fault (to_resume, |
39f77062 | 484 | (void (*) (ptid_t, int, enum target_signal)) |
0d06e24b JM |
485 | noprocess); |
486 | de_fault (to_wait, | |
39f77062 | 487 | (ptid_t (*) (ptid_t, struct target_waitstatus *)) |
0d06e24b JM |
488 | noprocess); |
489 | de_fault (to_post_wait, | |
39f77062 | 490 | (void (*) (ptid_t, int)) |
0d06e24b JM |
491 | target_ignore); |
492 | de_fault (to_fetch_registers, | |
493 | (void (*) (int)) | |
494 | target_ignore); | |
495 | de_fault (to_store_registers, | |
496 | (void (*) (int)) | |
497 | noprocess); | |
498 | de_fault (to_prepare_to_store, | |
499 | (void (*) (void)) | |
500 | noprocess); | |
501 | de_fault (to_xfer_memory, | |
29e57380 | 502 | (int (*) (CORE_ADDR, char *, int, int, struct mem_attrib *, struct target_ops *)) |
0d06e24b JM |
503 | nomemory); |
504 | de_fault (to_files_info, | |
505 | (void (*) (struct target_ops *)) | |
506 | target_ignore); | |
507 | de_fault (to_insert_breakpoint, | |
508 | memory_insert_breakpoint); | |
509 | de_fault (to_remove_breakpoint, | |
510 | memory_remove_breakpoint); | |
ccaa32c7 GS |
511 | de_fault (to_can_use_hw_breakpoint, |
512 | (int (*) (int, int, int)) | |
513 | return_zero); | |
514 | de_fault (to_insert_hw_breakpoint, | |
515 | (int (*) (CORE_ADDR, char *)) | |
516 | return_minus_one); | |
517 | de_fault (to_remove_hw_breakpoint, | |
518 | (int (*) (CORE_ADDR, char *)) | |
519 | return_minus_one); | |
520 | de_fault (to_insert_watchpoint, | |
521 | (int (*) (CORE_ADDR, int, int)) | |
522 | return_minus_one); | |
523 | de_fault (to_remove_watchpoint, | |
524 | (int (*) (CORE_ADDR, int, int)) | |
525 | return_minus_one); | |
526 | de_fault (to_stopped_by_watchpoint, | |
527 | (int (*) (void)) | |
528 | return_zero); | |
529 | de_fault (to_stopped_data_address, | |
530 | (CORE_ADDR (*) (void)) | |
531 | return_zero); | |
532 | de_fault (to_region_size_ok_for_hw_watchpoint, | |
533 | default_region_size_ok_for_hw_watchpoint); | |
0d06e24b JM |
534 | de_fault (to_terminal_init, |
535 | (void (*) (void)) | |
536 | target_ignore); | |
537 | de_fault (to_terminal_inferior, | |
538 | (void (*) (void)) | |
539 | target_ignore); | |
540 | de_fault (to_terminal_ours_for_output, | |
541 | (void (*) (void)) | |
542 | target_ignore); | |
543 | de_fault (to_terminal_ours, | |
544 | (void (*) (void)) | |
545 | target_ignore); | |
a790ad35 SC |
546 | de_fault (to_terminal_save_ours, |
547 | (void (*) (void)) | |
548 | target_ignore); | |
0d06e24b JM |
549 | de_fault (to_terminal_info, |
550 | default_terminal_info); | |
551 | de_fault (to_kill, | |
552 | (void (*) (void)) | |
553 | noprocess); | |
554 | de_fault (to_load, | |
555 | (void (*) (char *, int)) | |
556 | tcomplain); | |
557 | de_fault (to_lookup_symbol, | |
558 | (int (*) (char *, CORE_ADDR *)) | |
559 | nosymbol); | |
560 | de_fault (to_create_inferior, | |
561 | maybe_kill_then_create_inferior); | |
562 | de_fault (to_post_startup_inferior, | |
39f77062 | 563 | (void (*) (ptid_t)) |
0d06e24b JM |
564 | target_ignore); |
565 | de_fault (to_acknowledge_created_inferior, | |
566 | (void (*) (int)) | |
567 | target_ignore); | |
0d06e24b JM |
568 | de_fault (to_insert_fork_catchpoint, |
569 | (int (*) (int)) | |
570 | tcomplain); | |
571 | de_fault (to_remove_fork_catchpoint, | |
572 | (int (*) (int)) | |
573 | tcomplain); | |
574 | de_fault (to_insert_vfork_catchpoint, | |
575 | (int (*) (int)) | |
576 | tcomplain); | |
577 | de_fault (to_remove_vfork_catchpoint, | |
578 | (int (*) (int)) | |
579 | tcomplain); | |
4c9ba7e0 | 580 | de_fault (to_follow_fork, |
6604731b | 581 | (int (*) (int)) |
0d06e24b JM |
582 | target_ignore); |
583 | de_fault (to_insert_exec_catchpoint, | |
584 | (int (*) (int)) | |
585 | tcomplain); | |
586 | de_fault (to_remove_exec_catchpoint, | |
587 | (int (*) (int)) | |
588 | tcomplain); | |
0d06e24b JM |
589 | de_fault (to_reported_exec_events_per_exec_call, |
590 | (int (*) (void)) | |
591 | return_one); | |
0d06e24b JM |
592 | de_fault (to_has_exited, |
593 | (int (*) (int, int, int *)) | |
594 | return_zero); | |
595 | de_fault (to_mourn_inferior, | |
596 | (void (*) (void)) | |
597 | noprocess); | |
598 | de_fault (to_can_run, | |
599 | return_zero); | |
600 | de_fault (to_notice_signals, | |
39f77062 | 601 | (void (*) (ptid_t)) |
0d06e24b JM |
602 | target_ignore); |
603 | de_fault (to_thread_alive, | |
39f77062 | 604 | (int (*) (ptid_t)) |
0d06e24b JM |
605 | return_zero); |
606 | de_fault (to_find_new_threads, | |
607 | (void (*) (void)) | |
608 | target_ignore); | |
609 | de_fault (to_extra_thread_info, | |
610 | (char *(*) (struct thread_info *)) | |
611 | return_zero); | |
612 | de_fault (to_stop, | |
613 | (void (*) (void)) | |
614 | target_ignore); | |
4b8a223f | 615 | current_target.to_xfer_partial = default_xfer_partial; |
0d06e24b | 616 | de_fault (to_rcmd, |
d9fcf2fb | 617 | (void (*) (char *, struct ui_file *)) |
0d06e24b JM |
618 | tcomplain); |
619 | de_fault (to_enable_exception_callback, | |
620 | (struct symtab_and_line * (*) (enum exception_event_kind, int)) | |
621 | nosupport_runtime); | |
622 | de_fault (to_get_current_exception_event, | |
623 | (struct exception_event_record * (*) (void)) | |
624 | nosupport_runtime); | |
625 | de_fault (to_pid_to_exec_file, | |
626 | (char *(*) (int)) | |
627 | return_zero); | |
0d06e24b JM |
628 | de_fault (to_can_async_p, |
629 | (int (*) (void)) | |
630 | return_zero); | |
631 | de_fault (to_is_async_p, | |
632 | (int (*) (void)) | |
633 | return_zero); | |
634 | de_fault (to_async, | |
635 | (void (*) (void (*) (enum inferior_event_type, void*), void*)) | |
636 | tcomplain); | |
c906108c | 637 | #undef de_fault |
c906108c | 638 | |
7998dfc3 AC |
639 | /* Finally, position the target-stack beneath the squashed |
640 | "current_target". That way code looking for a non-inherited | |
641 | target method can quickly and simply find it. */ | |
642 | current_target.beneath = target_stack; | |
c906108c SS |
643 | } |
644 | ||
645 | /* Push a new target type into the stack of the existing target accessors, | |
646 | possibly superseding some of the existing accessors. | |
647 | ||
648 | Result is zero if the pushed target ended up on top of the stack, | |
649 | nonzero if at least one target is on top of it. | |
650 | ||
651 | Rather than allow an empty stack, we always have the dummy target at | |
652 | the bottom stratum, so we can call the function vectors without | |
653 | checking them. */ | |
654 | ||
655 | int | |
fba45db2 | 656 | push_target (struct target_ops *t) |
c906108c | 657 | { |
258b763a | 658 | struct target_ops **cur; |
c906108c SS |
659 | |
660 | /* Check magic number. If wrong, it probably means someone changed | |
661 | the struct definition, but not all the places that initialize one. */ | |
662 | if (t->to_magic != OPS_MAGIC) | |
663 | { | |
c5aa993b JM |
664 | fprintf_unfiltered (gdb_stderr, |
665 | "Magic number of %s target struct wrong\n", | |
666 | t->to_shortname); | |
e1e9e218 | 667 | internal_error (__FILE__, __LINE__, "failed internal consistency check"); |
c906108c SS |
668 | } |
669 | ||
258b763a AC |
670 | /* Find the proper stratum to install this target in. */ |
671 | for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath) | |
c906108c | 672 | { |
258b763a | 673 | if ((int) (t->to_stratum) >= (int) (*cur)->to_stratum) |
c906108c SS |
674 | break; |
675 | } | |
676 | ||
258b763a AC |
677 | /* If there's already targets at this stratum, remove them. */ |
678 | /* FIXME: cagney/2003-10-15: I think this should be poping all | |
679 | targets to CUR, and not just those at this stratum level. */ | |
680 | while ((*cur) != NULL && t->to_stratum == (*cur)->to_stratum) | |
681 | { | |
682 | /* There's already something at this stratum level. Close it, | |
683 | and un-hook it from the stack. */ | |
684 | struct target_ops *tmp = (*cur); | |
685 | (*cur) = (*cur)->beneath; | |
686 | tmp->beneath = NULL; | |
f1c07ab0 | 687 | target_close (tmp, 0); |
258b763a | 688 | } |
c906108c SS |
689 | |
690 | /* We have removed all targets in our stratum, now add the new one. */ | |
258b763a AC |
691 | t->beneath = (*cur); |
692 | (*cur) = t; | |
c906108c SS |
693 | |
694 | update_current_target (); | |
695 | ||
c906108c SS |
696 | if (targetdebug) |
697 | setup_target_debug (); | |
c906108c | 698 | |
258b763a AC |
699 | /* Not on top? */ |
700 | return (t != target_stack); | |
c906108c SS |
701 | } |
702 | ||
703 | /* Remove a target_ops vector from the stack, wherever it may be. | |
704 | Return how many times it was removed (0 or 1). */ | |
705 | ||
706 | int | |
fba45db2 | 707 | unpush_target (struct target_ops *t) |
c906108c | 708 | { |
258b763a AC |
709 | struct target_ops **cur; |
710 | struct target_ops *tmp; | |
c906108c | 711 | |
f1c07ab0 | 712 | target_close (t, 0); |
c906108c SS |
713 | |
714 | /* Look for the specified target. Note that we assume that a target | |
715 | can only occur once in the target stack. */ | |
716 | ||
258b763a AC |
717 | for (cur = &target_stack; (*cur) != NULL; cur = &(*cur)->beneath) |
718 | { | |
719 | if ((*cur) == t) | |
720 | break; | |
721 | } | |
c906108c | 722 | |
258b763a | 723 | if ((*cur) == NULL) |
c906108c SS |
724 | return 0; /* Didn't find target_ops, quit now */ |
725 | ||
726 | /* Unchain the target */ | |
258b763a AC |
727 | tmp = (*cur); |
728 | (*cur) = (*cur)->beneath; | |
729 | tmp->beneath = NULL; | |
c906108c SS |
730 | |
731 | update_current_target (); | |
c906108c SS |
732 | |
733 | return 1; | |
734 | } | |
735 | ||
736 | void | |
fba45db2 | 737 | pop_target (void) |
c906108c | 738 | { |
f1c07ab0 | 739 | target_close (¤t_target, 0); /* Let it clean up */ |
258b763a | 740 | if (unpush_target (target_stack) == 1) |
c906108c SS |
741 | return; |
742 | ||
c5aa993b JM |
743 | fprintf_unfiltered (gdb_stderr, |
744 | "pop_target couldn't find target %s\n", | |
745 | current_target.to_shortname); | |
e1e9e218 | 746 | internal_error (__FILE__, __LINE__, "failed internal consistency check"); |
c906108c SS |
747 | } |
748 | ||
749 | #undef MIN | |
750 | #define MIN(A, B) (((A) <= (B)) ? (A) : (B)) | |
751 | ||
752 | /* target_read_string -- read a null terminated string, up to LEN bytes, | |
753 | from MEMADDR in target. Set *ERRNOP to the errno code, or 0 if successful. | |
754 | Set *STRING to a pointer to malloc'd memory containing the data; the caller | |
755 | is responsible for freeing it. Return the number of bytes successfully | |
756 | read. */ | |
757 | ||
758 | int | |
fba45db2 | 759 | target_read_string (CORE_ADDR memaddr, char **string, int len, int *errnop) |
c906108c SS |
760 | { |
761 | int tlen, origlen, offset, i; | |
762 | char buf[4]; | |
763 | int errcode = 0; | |
764 | char *buffer; | |
765 | int buffer_allocated; | |
766 | char *bufptr; | |
767 | unsigned int nbytes_read = 0; | |
768 | ||
769 | /* Small for testing. */ | |
770 | buffer_allocated = 4; | |
771 | buffer = xmalloc (buffer_allocated); | |
772 | bufptr = buffer; | |
773 | ||
774 | origlen = len; | |
775 | ||
776 | while (len > 0) | |
777 | { | |
778 | tlen = MIN (len, 4 - (memaddr & 3)); | |
779 | offset = memaddr & 3; | |
780 | ||
d4b2399a | 781 | errcode = target_xfer_memory (memaddr & ~3, buf, 4, 0); |
c906108c SS |
782 | if (errcode != 0) |
783 | { | |
784 | /* The transfer request might have crossed the boundary to an | |
785 | unallocated region of memory. Retry the transfer, requesting | |
786 | a single byte. */ | |
787 | tlen = 1; | |
788 | offset = 0; | |
d4b2399a | 789 | errcode = target_xfer_memory (memaddr, buf, 1, 0); |
c906108c SS |
790 | if (errcode != 0) |
791 | goto done; | |
792 | } | |
793 | ||
794 | if (bufptr - buffer + tlen > buffer_allocated) | |
795 | { | |
796 | unsigned int bytes; | |
797 | bytes = bufptr - buffer; | |
798 | buffer_allocated *= 2; | |
799 | buffer = xrealloc (buffer, buffer_allocated); | |
800 | bufptr = buffer + bytes; | |
801 | } | |
802 | ||
803 | for (i = 0; i < tlen; i++) | |
804 | { | |
805 | *bufptr++ = buf[i + offset]; | |
806 | if (buf[i + offset] == '\000') | |
807 | { | |
808 | nbytes_read += i + 1; | |
809 | goto done; | |
810 | } | |
811 | } | |
812 | ||
813 | memaddr += tlen; | |
814 | len -= tlen; | |
815 | nbytes_read += tlen; | |
816 | } | |
c5aa993b | 817 | done: |
c906108c SS |
818 | if (errnop != NULL) |
819 | *errnop = errcode; | |
820 | if (string != NULL) | |
821 | *string = buffer; | |
822 | return nbytes_read; | |
823 | } | |
824 | ||
8db32d44 AC |
825 | /* Find a section containing ADDR. */ |
826 | struct section_table * | |
827 | target_section_by_addr (struct target_ops *target, CORE_ADDR addr) | |
828 | { | |
829 | struct section_table *secp; | |
830 | for (secp = target->to_sections; | |
831 | secp < target->to_sections_end; | |
832 | secp++) | |
833 | { | |
834 | if (addr >= secp->addr && addr < secp->endaddr) | |
835 | return secp; | |
836 | } | |
837 | return NULL; | |
838 | } | |
839 | ||
c906108c SS |
840 | /* Read LEN bytes of target memory at address MEMADDR, placing the results in |
841 | GDB's memory at MYADDR. Returns either 0 for success or an errno value | |
842 | if any error occurs. | |
843 | ||
844 | If an error occurs, no guarantee is made about the contents of the data at | |
845 | MYADDR. In particular, the caller should not depend upon partial reads | |
846 | filling the buffer with good data. There is no way for the caller to know | |
847 | how much good data might have been transfered anyway. Callers that can | |
848 | deal with partial reads should call target_read_memory_partial. */ | |
849 | ||
850 | int | |
fba45db2 | 851 | target_read_memory (CORE_ADDR memaddr, char *myaddr, int len) |
c906108c | 852 | { |
d4b2399a | 853 | return target_xfer_memory (memaddr, myaddr, len, 0); |
c906108c SS |
854 | } |
855 | ||
c906108c | 856 | int |
fba45db2 | 857 | target_write_memory (CORE_ADDR memaddr, char *myaddr, int len) |
c906108c | 858 | { |
d4b2399a | 859 | return target_xfer_memory (memaddr, myaddr, len, 1); |
c906108c | 860 | } |
c5aa993b | 861 | |
3a11626d MS |
862 | static int trust_readonly = 0; |
863 | ||
67e0617e C |
864 | /* Move memory to or from the targets. The top target gets priority; |
865 | if it cannot handle it, it is offered to the next one down, etc. | |
c906108c | 866 | |
67e0617e | 867 | Result is -1 on error, or the number of bytes transfered. */ |
c906108c | 868 | |
4930751a | 869 | int |
29e57380 C |
870 | do_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write, |
871 | struct mem_attrib *attrib) | |
c906108c | 872 | { |
c906108c | 873 | int res; |
4930751a | 874 | int done = 0; |
c906108c | 875 | struct target_ops *t; |
c906108c SS |
876 | |
877 | /* Zero length requests are ok and require no work. */ | |
878 | if (len == 0) | |
879 | return 0; | |
880 | ||
c906108c SS |
881 | /* to_xfer_memory is not guaranteed to set errno, even when it returns |
882 | 0. */ | |
883 | errno = 0; | |
884 | ||
3a11626d MS |
885 | if (!write && trust_readonly) |
886 | { | |
8db32d44 | 887 | struct section_table *secp; |
2ceb85d0 BE |
888 | /* User-settable option, "trust-readonly-sections". If true, |
889 | then memory from any SEC_READONLY bfd section may be read | |
8db32d44 AC |
890 | directly from the bfd file. */ |
891 | secp = target_section_by_addr (¤t_target, memaddr); | |
892 | if (secp != NULL | |
893 | && (bfd_get_section_flags (secp->bfd, secp->the_bfd_section) | |
894 | & SEC_READONLY)) | |
895 | return xfer_memory (memaddr, myaddr, len, 0, attrib, ¤t_target); | |
3a11626d MS |
896 | } |
897 | ||
67e0617e | 898 | /* The quick case is that the top target can handle the transfer. */ |
c906108c | 899 | res = current_target.to_xfer_memory |
29e57380 | 900 | (memaddr, myaddr, len, write, attrib, ¤t_target); |
c906108c | 901 | |
67e0617e C |
902 | /* If res <= 0 then we call it again in the loop. Ah well. */ |
903 | if (res <= 0) | |
c906108c | 904 | { |
258b763a | 905 | for (t = target_stack; t != NULL; t = t->beneath) |
c906108c | 906 | { |
c906108c SS |
907 | if (!t->to_has_memory) |
908 | continue; | |
909 | ||
29e57380 | 910 | res = t->to_xfer_memory (memaddr, myaddr, len, write, attrib, t); |
c906108c SS |
911 | if (res > 0) |
912 | break; /* Handled all or part of xfer */ | |
913 | if (t->to_has_all_memory) | |
914 | break; | |
915 | } | |
916 | ||
4930751a | 917 | if (res <= 0) |
67e0617e | 918 | return -1; |
4930751a | 919 | } |
67e0617e C |
920 | |
921 | return res; | |
4930751a C |
922 | } |
923 | ||
67e0617e C |
924 | |
925 | /* Perform a memory transfer. Iterate until the entire region has | |
926 | been transfered. | |
927 | ||
928 | Result is 0 or errno value. */ | |
929 | ||
4930751a C |
930 | static int |
931 | target_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write) | |
932 | { | |
933 | int res; | |
29e57380 C |
934 | int reg_len; |
935 | struct mem_region *region; | |
4930751a C |
936 | |
937 | /* Zero length requests are ok and require no work. */ | |
938 | if (len == 0) | |
939 | { | |
940 | return 0; | |
941 | } | |
942 | ||
943 | while (len > 0) | |
944 | { | |
29e57380 C |
945 | region = lookup_mem_region(memaddr); |
946 | if (memaddr + len < region->hi) | |
947 | reg_len = len; | |
948 | else | |
949 | reg_len = region->hi - memaddr; | |
950 | ||
951 | switch (region->attrib.mode) | |
c906108c | 952 | { |
29e57380 C |
953 | case MEM_RO: |
954 | if (write) | |
955 | return EIO; | |
956 | break; | |
957 | ||
958 | case MEM_WO: | |
c906108c | 959 | if (!write) |
c906108c | 960 | return EIO; |
29e57380 | 961 | break; |
c906108c | 962 | } |
4930751a | 963 | |
29e57380 C |
964 | while (reg_len > 0) |
965 | { | |
966 | if (region->attrib.cache) | |
8add0441 | 967 | res = dcache_xfer_memory (target_dcache, memaddr, myaddr, |
29e57380 C |
968 | reg_len, write); |
969 | else | |
8add0441 | 970 | res = do_xfer_memory (memaddr, myaddr, reg_len, write, |
29e57380 C |
971 | ®ion->attrib); |
972 | ||
973 | if (res <= 0) | |
974 | { | |
975 | /* If this address is for nonexistent memory, read zeros | |
976 | if reading, or do nothing if writing. Return | |
977 | error. */ | |
978 | if (!write) | |
979 | memset (myaddr, 0, len); | |
980 | if (errno == 0) | |
981 | return EIO; | |
982 | else | |
983 | return errno; | |
984 | } | |
985 | ||
986 | memaddr += res; | |
987 | myaddr += res; | |
988 | len -= res; | |
989 | reg_len -= res; | |
990 | } | |
c906108c | 991 | } |
4930751a | 992 | |
c906108c SS |
993 | return 0; /* We managed to cover it all somehow. */ |
994 | } | |
995 | ||
996 | ||
67e0617e C |
997 | /* Perform a partial memory transfer. |
998 | ||
999 | Result is -1 on error, or the number of bytes transfered. */ | |
917317f4 JM |
1000 | |
1001 | static int | |
4930751a | 1002 | target_xfer_memory_partial (CORE_ADDR memaddr, char *myaddr, int len, |
917317f4 JM |
1003 | int write_p, int *err) |
1004 | { | |
1005 | int res; | |
29e57380 C |
1006 | int reg_len; |
1007 | struct mem_region *region; | |
917317f4 JM |
1008 | |
1009 | /* Zero length requests are ok and require no work. */ | |
1010 | if (len == 0) | |
1011 | { | |
1012 | *err = 0; | |
1013 | return 0; | |
1014 | } | |
1015 | ||
29e57380 C |
1016 | region = lookup_mem_region(memaddr); |
1017 | if (memaddr + len < region->hi) | |
1018 | reg_len = len; | |
1019 | else | |
1020 | reg_len = region->hi - memaddr; | |
1021 | ||
1022 | switch (region->attrib.mode) | |
1023 | { | |
1024 | case MEM_RO: | |
1025 | if (write_p) | |
1026 | { | |
1027 | *err = EIO; | |
873406a6 | 1028 | return -1; |
29e57380 C |
1029 | } |
1030 | break; | |
1031 | ||
1032 | case MEM_WO: | |
1033 | if (write_p) | |
1034 | { | |
1035 | *err = EIO; | |
873406a6 | 1036 | return -1; |
29e57380 C |
1037 | } |
1038 | break; | |
1039 | } | |
1040 | ||
1041 | if (region->attrib.cache) | |
1042 | res = dcache_xfer_memory (target_dcache, memaddr, myaddr, | |
1043 | reg_len, write_p); | |
1044 | else | |
1045 | res = do_xfer_memory (memaddr, myaddr, reg_len, write_p, | |
1046 | ®ion->attrib); | |
1047 | ||
4930751a | 1048 | if (res <= 0) |
917317f4 | 1049 | { |
4930751a C |
1050 | if (errno != 0) |
1051 | *err = errno; | |
1052 | else | |
1053 | *err = EIO; | |
917317f4 | 1054 | |
4930751a | 1055 | return -1; |
917317f4 JM |
1056 | } |
1057 | ||
4930751a | 1058 | *err = 0; |
67e0617e | 1059 | return res; |
917317f4 JM |
1060 | } |
1061 | ||
1062 | int | |
1063 | target_read_memory_partial (CORE_ADDR memaddr, char *buf, int len, int *err) | |
1064 | { | |
1065 | return target_xfer_memory_partial (memaddr, buf, len, 0, err); | |
1066 | } | |
1067 | ||
1068 | int | |
1069 | target_write_memory_partial (CORE_ADDR memaddr, char *buf, int len, int *err) | |
1070 | { | |
1071 | return target_xfer_memory_partial (memaddr, buf, len, 1, err); | |
1072 | } | |
1073 | ||
1e3ff5ad AC |
1074 | /* More generic transfers. */ |
1075 | ||
0088c768 | 1076 | static LONGEST |
8aa91c1e AC |
1077 | default_xfer_partial (struct target_ops *ops, enum target_object object, |
1078 | const char *annex, void *readbuf, | |
1079 | const void *writebuf, ULONGEST offset, LONGEST len) | |
0088c768 AC |
1080 | { |
1081 | if (object == TARGET_OBJECT_MEMORY | |
1082 | && ops->to_xfer_memory != NULL) | |
1083 | /* If available, fall back to the target's "to_xfer_memory" | |
1084 | method. */ | |
1085 | { | |
4b8a223f | 1086 | int xfered = -1; |
0088c768 | 1087 | errno = 0; |
4b8a223f AC |
1088 | if (writebuf != NULL) |
1089 | { | |
1090 | void *buffer = xmalloc (len); | |
1091 | struct cleanup *cleanup = make_cleanup (xfree, buffer); | |
1092 | memcpy (buffer, writebuf, len); | |
1093 | xfered = ops->to_xfer_memory (offset, buffer, len, 1/*write*/, NULL, | |
1094 | ops); | |
1095 | do_cleanups (cleanup); | |
1096 | } | |
1097 | if (readbuf != NULL) | |
1098 | xfered = ops->to_xfer_memory (offset, readbuf, len, 0/*read*/, NULL, | |
0088c768 | 1099 | ops); |
0088c768 AC |
1100 | if (xfered > 0) |
1101 | return xfered; | |
1102 | else if (xfered == 0 && errno == 0) | |
1103 | /* "to_xfer_memory" uses 0, cross checked against ERRNO as one | |
1104 | indication of an error. */ | |
1105 | return 0; | |
1106 | else | |
1107 | return -1; | |
1108 | } | |
1109 | else if (ops->beneath != NULL) | |
4b8a223f | 1110 | return ops->beneath->to_xfer_partial (ops->beneath, object, annex, |
8aa91c1e | 1111 | readbuf, writebuf, offset, len); |
0088c768 AC |
1112 | else |
1113 | return -1; | |
1114 | } | |
1115 | ||
1116 | /* Target vector read/write partial wrapper functions. | |
1117 | ||
1118 | NOTE: cagney/2003-10-21: I wonder if having "to_xfer_partial | |
1119 | (inbuf, outbuf)", instead of separate read/write methods, make life | |
1120 | easier. */ | |
1121 | ||
1e3ff5ad AC |
1122 | LONGEST |
1123 | target_read_partial (struct target_ops *ops, | |
1124 | enum target_object object, | |
1125 | const char *annex, void *buf, | |
1126 | ULONGEST offset, LONGEST len) | |
1127 | { | |
4b8a223f | 1128 | gdb_assert (ops->to_xfer_partial != NULL); |
8aa91c1e | 1129 | return ops->to_xfer_partial (ops, object, annex, buf, NULL, offset, len); |
1e3ff5ad AC |
1130 | } |
1131 | ||
1132 | LONGEST | |
1133 | target_write_partial (struct target_ops *ops, | |
1134 | enum target_object object, | |
1135 | const char *annex, const void *buf, | |
1136 | ULONGEST offset, LONGEST len) | |
1137 | { | |
4b8a223f | 1138 | gdb_assert (ops->to_xfer_partial != NULL); |
8aa91c1e | 1139 | return ops->to_xfer_partial (ops, object, annex, NULL, buf, offset, len); |
1e3ff5ad AC |
1140 | } |
1141 | ||
1142 | /* Wrappers to perform the full transfer. */ | |
1143 | LONGEST | |
1144 | target_read (struct target_ops *ops, | |
1145 | enum target_object object, | |
1146 | const char *annex, void *buf, | |
1147 | ULONGEST offset, LONGEST len) | |
1148 | { | |
1149 | LONGEST xfered = 0; | |
1150 | while (xfered < len) | |
1151 | { | |
0088c768 AC |
1152 | LONGEST xfer = target_read_partial (ops, object, annex, |
1153 | (bfd_byte *) buf + xfered, | |
1154 | offset + xfered, len - xfered); | |
1e3ff5ad | 1155 | /* Call an observer, notifying them of the xfer progress? */ |
0088c768 AC |
1156 | if (xfer <= 0) |
1157 | /* Call memory_error? */ | |
1158 | return -1; | |
1e3ff5ad AC |
1159 | xfered += xfer; |
1160 | QUIT; | |
1161 | } | |
1162 | return len; | |
1163 | } | |
1164 | ||
1165 | LONGEST | |
1166 | target_write (struct target_ops *ops, | |
1167 | enum target_object object, | |
1168 | const char *annex, const void *buf, | |
1169 | ULONGEST offset, LONGEST len) | |
1170 | { | |
1171 | LONGEST xfered = 0; | |
1172 | while (xfered < len) | |
1173 | { | |
1174 | LONGEST xfer = target_write_partial (ops, object, annex, | |
1175 | (bfd_byte *) buf + xfered, | |
1176 | offset + xfered, len - xfered); | |
1177 | /* Call an observer, notifying them of the xfer progress? */ | |
0088c768 AC |
1178 | if (xfer <= 0) |
1179 | /* Call memory_error? */ | |
1180 | return -1; | |
1e3ff5ad AC |
1181 | xfered += xfer; |
1182 | QUIT; | |
1183 | } | |
1184 | return len; | |
1185 | } | |
1186 | ||
b6591e8b AC |
1187 | /* Memory transfer methods. */ |
1188 | ||
1189 | void | |
1190 | get_target_memory (struct target_ops *ops, CORE_ADDR addr, void *buf, | |
1191 | LONGEST len) | |
1192 | { | |
1193 | if (target_read (ops, TARGET_OBJECT_MEMORY, NULL, buf, addr, len) | |
1194 | != len) | |
1195 | memory_error (EIO, addr); | |
1196 | } | |
1197 | ||
1198 | ULONGEST | |
1199 | get_target_memory_unsigned (struct target_ops *ops, | |
1200 | CORE_ADDR addr, int len) | |
1201 | { | |
1202 | char buf[sizeof (ULONGEST)]; | |
1203 | ||
1204 | gdb_assert (len <= sizeof (buf)); | |
1205 | get_target_memory (ops, addr, buf, len); | |
1206 | return extract_unsigned_integer (buf, len); | |
1207 | } | |
1208 | ||
c906108c | 1209 | static void |
fba45db2 | 1210 | target_info (char *args, int from_tty) |
c906108c SS |
1211 | { |
1212 | struct target_ops *t; | |
c906108c | 1213 | int has_all_mem = 0; |
c5aa993b | 1214 | |
c906108c SS |
1215 | if (symfile_objfile != NULL) |
1216 | printf_unfiltered ("Symbols from \"%s\".\n", symfile_objfile->name); | |
1217 | ||
1218 | #ifdef FILES_INFO_HOOK | |
1219 | if (FILES_INFO_HOOK ()) | |
1220 | return; | |
1221 | #endif | |
1222 | ||
258b763a | 1223 | for (t = target_stack; t != NULL; t = t->beneath) |
c906108c | 1224 | { |
c906108c SS |
1225 | if (!t->to_has_memory) |
1226 | continue; | |
1227 | ||
c5aa993b | 1228 | if ((int) (t->to_stratum) <= (int) dummy_stratum) |
c906108c SS |
1229 | continue; |
1230 | if (has_all_mem) | |
c5aa993b JM |
1231 | printf_unfiltered ("\tWhile running this, GDB does not access memory from...\n"); |
1232 | printf_unfiltered ("%s:\n", t->to_longname); | |
1233 | (t->to_files_info) (t); | |
c906108c SS |
1234 | has_all_mem = t->to_has_all_memory; |
1235 | } | |
1236 | } | |
1237 | ||
1238 | /* This is to be called by the open routine before it does | |
1239 | anything. */ | |
1240 | ||
1241 | void | |
fba45db2 | 1242 | target_preopen (int from_tty) |
c906108c | 1243 | { |
c5aa993b | 1244 | dont_repeat (); |
c906108c SS |
1245 | |
1246 | if (target_has_execution) | |
c5aa993b | 1247 | { |
adf40b2e JM |
1248 | if (!from_tty |
1249 | || query ("A program is being debugged already. Kill it? ")) | |
c5aa993b | 1250 | target_kill (); |
c906108c | 1251 | else |
c5aa993b | 1252 | error ("Program not killed."); |
c906108c SS |
1253 | } |
1254 | ||
1255 | /* Calling target_kill may remove the target from the stack. But if | |
1256 | it doesn't (which seems like a win for UDI), remove it now. */ | |
1257 | ||
1258 | if (target_has_execution) | |
1259 | pop_target (); | |
1260 | } | |
1261 | ||
1262 | /* Detach a target after doing deferred register stores. */ | |
1263 | ||
1264 | void | |
fba45db2 | 1265 | target_detach (char *args, int from_tty) |
c906108c SS |
1266 | { |
1267 | /* Handle any optimized stores to the inferior. */ | |
1268 | #ifdef DO_DEFERRED_STORES | |
1269 | DO_DEFERRED_STORES; | |
1270 | #endif | |
1271 | (current_target.to_detach) (args, from_tty); | |
1272 | } | |
1273 | ||
6ad8ae5c DJ |
1274 | void |
1275 | target_disconnect (char *args, int from_tty) | |
1276 | { | |
1277 | /* Handle any optimized stores to the inferior. */ | |
1278 | #ifdef DO_DEFERRED_STORES | |
1279 | DO_DEFERRED_STORES; | |
1280 | #endif | |
1281 | (current_target.to_disconnect) (args, from_tty); | |
1282 | } | |
1283 | ||
c906108c | 1284 | void |
fba45db2 | 1285 | target_link (char *modname, CORE_ADDR *t_reloc) |
c906108c | 1286 | { |
c5aa993b | 1287 | if (STREQ (current_target.to_shortname, "rombug")) |
c906108c SS |
1288 | { |
1289 | (current_target.to_lookup_symbol) (modname, t_reloc); | |
1290 | if (*t_reloc == 0) | |
c5aa993b | 1291 | error ("Unable to link to %s and get relocation in rombug", modname); |
c906108c SS |
1292 | } |
1293 | else | |
2acceee2 | 1294 | *t_reloc = (CORE_ADDR) -1; |
c906108c SS |
1295 | } |
1296 | ||
ed9a39eb JM |
1297 | int |
1298 | target_async_mask (int mask) | |
1299 | { | |
1300 | int saved_async_masked_status = target_async_mask_value; | |
1301 | target_async_mask_value = mask; | |
1302 | return saved_async_masked_status; | |
1303 | } | |
1304 | ||
c906108c SS |
1305 | /* Look through the list of possible targets for a target that can |
1306 | execute a run or attach command without any other data. This is | |
1307 | used to locate the default process stratum. | |
1308 | ||
1309 | Result is always valid (error() is called for errors). */ | |
1310 | ||
1311 | static struct target_ops * | |
fba45db2 | 1312 | find_default_run_target (char *do_mesg) |
c906108c SS |
1313 | { |
1314 | struct target_ops **t; | |
1315 | struct target_ops *runable = NULL; | |
1316 | int count; | |
1317 | ||
1318 | count = 0; | |
1319 | ||
1320 | for (t = target_structs; t < target_structs + target_struct_size; | |
1321 | ++t) | |
1322 | { | |
c5aa993b | 1323 | if ((*t)->to_can_run && target_can_run (*t)) |
c906108c SS |
1324 | { |
1325 | runable = *t; | |
1326 | ++count; | |
1327 | } | |
1328 | } | |
1329 | ||
1330 | if (count != 1) | |
1331 | error ("Don't know how to %s. Try \"help target\".", do_mesg); | |
1332 | ||
1333 | return runable; | |
1334 | } | |
1335 | ||
1336 | void | |
fba45db2 | 1337 | find_default_attach (char *args, int from_tty) |
c906108c SS |
1338 | { |
1339 | struct target_ops *t; | |
1340 | ||
c5aa993b | 1341 | t = find_default_run_target ("attach"); |
c906108c SS |
1342 | (t->to_attach) (args, from_tty); |
1343 | return; | |
1344 | } | |
1345 | ||
c906108c | 1346 | void |
fba45db2 | 1347 | find_default_create_inferior (char *exec_file, char *allargs, char **env) |
c906108c SS |
1348 | { |
1349 | struct target_ops *t; | |
1350 | ||
c5aa993b | 1351 | t = find_default_run_target ("run"); |
c906108c SS |
1352 | (t->to_create_inferior) (exec_file, allargs, env); |
1353 | return; | |
1354 | } | |
1355 | ||
ccaa32c7 GS |
1356 | static int |
1357 | default_region_size_ok_for_hw_watchpoint (int byte_count) | |
1358 | { | |
b1e29e33 | 1359 | return (byte_count <= DEPRECATED_REGISTER_SIZE); |
ccaa32c7 GS |
1360 | } |
1361 | ||
c906108c | 1362 | static int |
fba45db2 | 1363 | return_zero (void) |
c906108c SS |
1364 | { |
1365 | return 0; | |
1366 | } | |
1367 | ||
1368 | static int | |
fba45db2 | 1369 | return_one (void) |
c906108c SS |
1370 | { |
1371 | return 1; | |
1372 | } | |
1373 | ||
ccaa32c7 GS |
1374 | static int |
1375 | return_minus_one (void) | |
1376 | { | |
1377 | return -1; | |
1378 | } | |
1379 | ||
6426a772 JM |
1380 | /* |
1381 | * Resize the to_sections pointer. Also make sure that anyone that | |
1382 | * was holding on to an old value of it gets updated. | |
1383 | * Returns the old size. | |
1384 | */ | |
1385 | ||
1386 | int | |
1387 | target_resize_to_sections (struct target_ops *target, int num_added) | |
1388 | { | |
1389 | struct target_ops **t; | |
1390 | struct section_table *old_value; | |
1391 | int old_count; | |
1392 | ||
1393 | old_value = target->to_sections; | |
1394 | ||
1395 | if (target->to_sections) | |
1396 | { | |
1397 | old_count = target->to_sections_end - target->to_sections; | |
1398 | target->to_sections = (struct section_table *) | |
1399 | xrealloc ((char *) target->to_sections, | |
1400 | (sizeof (struct section_table)) * (num_added + old_count)); | |
1401 | } | |
1402 | else | |
1403 | { | |
1404 | old_count = 0; | |
1405 | target->to_sections = (struct section_table *) | |
1406 | xmalloc ((sizeof (struct section_table)) * num_added); | |
1407 | } | |
1408 | target->to_sections_end = target->to_sections + (num_added + old_count); | |
1409 | ||
1410 | /* Check to see if anyone else was pointing to this structure. | |
1411 | If old_value was null, then no one was. */ | |
1412 | ||
1413 | if (old_value) | |
1414 | { | |
1415 | for (t = target_structs; t < target_structs + target_struct_size; | |
1416 | ++t) | |
1417 | { | |
1418 | if ((*t)->to_sections == old_value) | |
1419 | { | |
1420 | (*t)->to_sections = target->to_sections; | |
1421 | (*t)->to_sections_end = target->to_sections_end; | |
1422 | } | |
1423 | } | |
1424 | } | |
1425 | ||
1426 | return old_count; | |
1427 | ||
1428 | } | |
1429 | ||
07cd4b97 JB |
1430 | /* Remove all target sections taken from ABFD. |
1431 | ||
1432 | Scan the current target stack for targets whose section tables | |
1433 | refer to sections from BFD, and remove those sections. We use this | |
1434 | when we notice that the inferior has unloaded a shared object, for | |
1435 | example. */ | |
1436 | void | |
1437 | remove_target_sections (bfd *abfd) | |
1438 | { | |
1439 | struct target_ops **t; | |
1440 | ||
1441 | for (t = target_structs; t < target_structs + target_struct_size; t++) | |
1442 | { | |
1443 | struct section_table *src, *dest; | |
1444 | ||
1445 | dest = (*t)->to_sections; | |
1446 | for (src = (*t)->to_sections; src < (*t)->to_sections_end; src++) | |
1447 | if (src->bfd != abfd) | |
1448 | { | |
1449 | /* Keep this section. */ | |
1450 | if (dest < src) *dest = *src; | |
1451 | dest++; | |
1452 | } | |
1453 | ||
1454 | /* If we've dropped any sections, resize the section table. */ | |
1455 | if (dest < src) | |
1456 | target_resize_to_sections (*t, dest - src); | |
1457 | } | |
1458 | } | |
1459 | ||
1460 | ||
1461 | ||
1462 | ||
7a292a7a SS |
1463 | /* Find a single runnable target in the stack and return it. If for |
1464 | some reason there is more than one, return NULL. */ | |
1465 | ||
1466 | struct target_ops * | |
fba45db2 | 1467 | find_run_target (void) |
7a292a7a SS |
1468 | { |
1469 | struct target_ops **t; | |
1470 | struct target_ops *runable = NULL; | |
1471 | int count; | |
c5aa993b | 1472 | |
7a292a7a | 1473 | count = 0; |
c5aa993b | 1474 | |
7a292a7a SS |
1475 | for (t = target_structs; t < target_structs + target_struct_size; ++t) |
1476 | { | |
c5aa993b | 1477 | if ((*t)->to_can_run && target_can_run (*t)) |
7a292a7a SS |
1478 | { |
1479 | runable = *t; | |
1480 | ++count; | |
1481 | } | |
1482 | } | |
c5aa993b | 1483 | |
7a292a7a SS |
1484 | return (count == 1 ? runable : NULL); |
1485 | } | |
1486 | ||
ed9a39eb JM |
1487 | /* Find a single core_stratum target in the list of targets and return it. |
1488 | If for some reason there is more than one, return NULL. */ | |
1489 | ||
c906108c | 1490 | struct target_ops * |
fba45db2 | 1491 | find_core_target (void) |
c906108c SS |
1492 | { |
1493 | struct target_ops **t; | |
1494 | struct target_ops *runable = NULL; | |
1495 | int count; | |
c5aa993b | 1496 | |
c906108c | 1497 | count = 0; |
c5aa993b | 1498 | |
c906108c SS |
1499 | for (t = target_structs; t < target_structs + target_struct_size; |
1500 | ++t) | |
1501 | { | |
1502 | if ((*t)->to_stratum == core_stratum) | |
1503 | { | |
1504 | runable = *t; | |
1505 | ++count; | |
1506 | } | |
1507 | } | |
c5aa993b JM |
1508 | |
1509 | return (count == 1 ? runable : NULL); | |
c906108c | 1510 | } |
ed9a39eb JM |
1511 | |
1512 | /* | |
1513 | * Find the next target down the stack from the specified target. | |
1514 | */ | |
1515 | ||
1516 | struct target_ops * | |
fba45db2 | 1517 | find_target_beneath (struct target_ops *t) |
ed9a39eb | 1518 | { |
258b763a | 1519 | return t->beneath; |
ed9a39eb JM |
1520 | } |
1521 | ||
c906108c SS |
1522 | \f |
1523 | /* The inferior process has died. Long live the inferior! */ | |
1524 | ||
1525 | void | |
fba45db2 | 1526 | generic_mourn_inferior (void) |
c906108c SS |
1527 | { |
1528 | extern int show_breakpoint_hit_counts; | |
1529 | ||
39f77062 | 1530 | inferior_ptid = null_ptid; |
c906108c SS |
1531 | attach_flag = 0; |
1532 | breakpoint_init_inferior (inf_exited); | |
1533 | registers_changed (); | |
1534 | ||
1535 | #ifdef CLEAR_DEFERRED_STORES | |
1536 | /* Delete any pending stores to the inferior... */ | |
1537 | CLEAR_DEFERRED_STORES; | |
1538 | #endif | |
1539 | ||
1540 | reopen_exec_file (); | |
1541 | reinit_frame_cache (); | |
1542 | ||
1543 | /* It is confusing to the user for ignore counts to stick around | |
1544 | from previous runs of the inferior. So clear them. */ | |
1545 | /* However, it is more confusing for the ignore counts to disappear when | |
1546 | using hit counts. So don't clear them if we're counting hits. */ | |
1547 | if (!show_breakpoint_hit_counts) | |
1548 | breakpoint_clear_ignore_counts (); | |
c5b739b5 FN |
1549 | |
1550 | if (detach_hook) | |
1551 | detach_hook (); | |
c906108c SS |
1552 | } |
1553 | \f | |
c906108c SS |
1554 | /* Helper function for child_wait and the Lynx derivatives of child_wait. |
1555 | HOSTSTATUS is the waitstatus from wait() or the equivalent; store our | |
1556 | translation of that in OURSTATUS. */ | |
1557 | void | |
fba45db2 | 1558 | store_waitstatus (struct target_waitstatus *ourstatus, int hoststatus) |
c906108c SS |
1559 | { |
1560 | #ifdef CHILD_SPECIAL_WAITSTATUS | |
1561 | /* CHILD_SPECIAL_WAITSTATUS should return nonzero and set *OURSTATUS | |
1562 | if it wants to deal with hoststatus. */ | |
1563 | if (CHILD_SPECIAL_WAITSTATUS (ourstatus, hoststatus)) | |
1564 | return; | |
1565 | #endif | |
1566 | ||
1567 | if (WIFEXITED (hoststatus)) | |
1568 | { | |
1569 | ourstatus->kind = TARGET_WAITKIND_EXITED; | |
1570 | ourstatus->value.integer = WEXITSTATUS (hoststatus); | |
1571 | } | |
1572 | else if (!WIFSTOPPED (hoststatus)) | |
1573 | { | |
1574 | ourstatus->kind = TARGET_WAITKIND_SIGNALLED; | |
1575 | ourstatus->value.sig = target_signal_from_host (WTERMSIG (hoststatus)); | |
1576 | } | |
1577 | else | |
1578 | { | |
1579 | ourstatus->kind = TARGET_WAITKIND_STOPPED; | |
1580 | ourstatus->value.sig = target_signal_from_host (WSTOPSIG (hoststatus)); | |
1581 | } | |
1582 | } | |
1583 | \f | |
c906108c | 1584 | /* Returns zero to leave the inferior alone, one to interrupt it. */ |
507f3c78 | 1585 | int (*target_activity_function) (void); |
c906108c SS |
1586 | int target_activity_fd; |
1587 | \f | |
1588 | /* Convert a normal process ID to a string. Returns the string in a static | |
1589 | buffer. */ | |
1590 | ||
1591 | char * | |
39f77062 | 1592 | normal_pid_to_str (ptid_t ptid) |
c906108c SS |
1593 | { |
1594 | static char buf[30]; | |
1595 | ||
39f77062 | 1596 | sprintf (buf, "process %d", PIDGET (ptid)); |
c906108c SS |
1597 | return buf; |
1598 | } | |
1599 | ||
1600 | /* Some targets (such as ttrace-based HPUX) don't allow us to request | |
1601 | notification of inferior events such as fork and vork immediately | |
1602 | after the inferior is created. (This because of how gdb gets an | |
1603 | inferior created via invoking a shell to do it. In such a scenario, | |
1604 | if the shell init file has commands in it, the shell will fork and | |
1605 | exec for each of those commands, and we will see each such fork | |
1606 | event. Very bad.) | |
c5aa993b | 1607 | |
c906108c SS |
1608 | This function is used by all targets that allow us to request |
1609 | notification of forks, etc at inferior creation time; e.g., in | |
1610 | target_acknowledge_forked_child. | |
c5aa993b | 1611 | */ |
392a587b | 1612 | static void |
39f77062 | 1613 | normal_target_post_startup_inferior (ptid_t ptid) |
c906108c SS |
1614 | { |
1615 | /* This space intentionally left blank. */ | |
1616 | } | |
1617 | ||
be4d1333 | 1618 | /* Error-catcher for target_find_memory_regions */ |
be4d1333 MS |
1619 | static int dummy_find_memory_regions (int (*ignore1) (), void *ignore2) |
1620 | { | |
1621 | error ("No target."); | |
1622 | return 0; | |
1623 | } | |
1624 | ||
1625 | /* Error-catcher for target_make_corefile_notes */ | |
be4d1333 MS |
1626 | static char * dummy_make_corefile_notes (bfd *ignore1, int *ignore2) |
1627 | { | |
1628 | error ("No target."); | |
1629 | return NULL; | |
1630 | } | |
1631 | ||
c906108c SS |
1632 | /* Set up the handful of non-empty slots needed by the dummy target |
1633 | vector. */ | |
1634 | ||
1635 | static void | |
fba45db2 | 1636 | init_dummy_target (void) |
c906108c SS |
1637 | { |
1638 | dummy_target.to_shortname = "None"; | |
1639 | dummy_target.to_longname = "None"; | |
1640 | dummy_target.to_doc = ""; | |
1641 | dummy_target.to_attach = find_default_attach; | |
c906108c | 1642 | dummy_target.to_create_inferior = find_default_create_inferior; |
ed9a39eb | 1643 | dummy_target.to_pid_to_str = normal_pid_to_str; |
c906108c | 1644 | dummy_target.to_stratum = dummy_stratum; |
be4d1333 MS |
1645 | dummy_target.to_find_memory_regions = dummy_find_memory_regions; |
1646 | dummy_target.to_make_corefile_notes = dummy_make_corefile_notes; | |
0b603eba | 1647 | dummy_target.to_xfer_partial = default_xfer_partial; |
c906108c SS |
1648 | dummy_target.to_magic = OPS_MAGIC; |
1649 | } | |
c906108c | 1650 | \f |
c5aa993b | 1651 | |
c906108c SS |
1652 | static struct target_ops debug_target; |
1653 | ||
1654 | static void | |
fba45db2 | 1655 | debug_to_open (char *args, int from_tty) |
c906108c SS |
1656 | { |
1657 | debug_target.to_open (args, from_tty); | |
1658 | ||
96baa820 | 1659 | fprintf_unfiltered (gdb_stdlog, "target_open (%s, %d)\n", args, from_tty); |
c906108c SS |
1660 | } |
1661 | ||
1662 | static void | |
fba45db2 | 1663 | debug_to_close (int quitting) |
c906108c | 1664 | { |
f1c07ab0 | 1665 | target_close (&debug_target, quitting); |
96baa820 | 1666 | fprintf_unfiltered (gdb_stdlog, "target_close (%d)\n", quitting); |
c906108c SS |
1667 | } |
1668 | ||
f1c07ab0 AC |
1669 | void |
1670 | target_close (struct target_ops *targ, int quitting) | |
1671 | { | |
1672 | if (targ->to_xclose != NULL) | |
1673 | targ->to_xclose (targ, quitting); | |
1674 | else if (targ->to_close != NULL) | |
1675 | targ->to_close (quitting); | |
1676 | } | |
1677 | ||
c906108c | 1678 | static void |
fba45db2 | 1679 | debug_to_attach (char *args, int from_tty) |
c906108c SS |
1680 | { |
1681 | debug_target.to_attach (args, from_tty); | |
1682 | ||
96baa820 | 1683 | fprintf_unfiltered (gdb_stdlog, "target_attach (%s, %d)\n", args, from_tty); |
c906108c SS |
1684 | } |
1685 | ||
1686 | ||
1687 | static void | |
fba45db2 | 1688 | debug_to_post_attach (int pid) |
c906108c SS |
1689 | { |
1690 | debug_target.to_post_attach (pid); | |
1691 | ||
96baa820 | 1692 | fprintf_unfiltered (gdb_stdlog, "target_post_attach (%d)\n", pid); |
c906108c SS |
1693 | } |
1694 | ||
c906108c | 1695 | static void |
fba45db2 | 1696 | debug_to_detach (char *args, int from_tty) |
c906108c SS |
1697 | { |
1698 | debug_target.to_detach (args, from_tty); | |
1699 | ||
96baa820 | 1700 | fprintf_unfiltered (gdb_stdlog, "target_detach (%s, %d)\n", args, from_tty); |
c906108c SS |
1701 | } |
1702 | ||
6ad8ae5c DJ |
1703 | static void |
1704 | debug_to_disconnect (char *args, int from_tty) | |
1705 | { | |
1706 | debug_target.to_disconnect (args, from_tty); | |
1707 | ||
1708 | fprintf_unfiltered (gdb_stdlog, "target_disconnect (%s, %d)\n", | |
1709 | args, from_tty); | |
1710 | } | |
1711 | ||
c906108c | 1712 | static void |
39f77062 | 1713 | debug_to_resume (ptid_t ptid, int step, enum target_signal siggnal) |
c906108c | 1714 | { |
39f77062 | 1715 | debug_target.to_resume (ptid, step, siggnal); |
c906108c | 1716 | |
39f77062 | 1717 | fprintf_unfiltered (gdb_stdlog, "target_resume (%d, %s, %s)\n", PIDGET (ptid), |
c906108c SS |
1718 | step ? "step" : "continue", |
1719 | target_signal_to_name (siggnal)); | |
1720 | } | |
1721 | ||
39f77062 KB |
1722 | static ptid_t |
1723 | debug_to_wait (ptid_t ptid, struct target_waitstatus *status) | |
c906108c | 1724 | { |
39f77062 | 1725 | ptid_t retval; |
c906108c | 1726 | |
39f77062 | 1727 | retval = debug_target.to_wait (ptid, status); |
c906108c | 1728 | |
96baa820 | 1729 | fprintf_unfiltered (gdb_stdlog, |
39f77062 KB |
1730 | "target_wait (%d, status) = %d, ", PIDGET (ptid), |
1731 | PIDGET (retval)); | |
96baa820 | 1732 | fprintf_unfiltered (gdb_stdlog, "status->kind = "); |
c906108c SS |
1733 | switch (status->kind) |
1734 | { | |
1735 | case TARGET_WAITKIND_EXITED: | |
96baa820 | 1736 | fprintf_unfiltered (gdb_stdlog, "exited, status = %d\n", |
c906108c SS |
1737 | status->value.integer); |
1738 | break; | |
1739 | case TARGET_WAITKIND_STOPPED: | |
96baa820 | 1740 | fprintf_unfiltered (gdb_stdlog, "stopped, signal = %s\n", |
c906108c SS |
1741 | target_signal_to_name (status->value.sig)); |
1742 | break; | |
1743 | case TARGET_WAITKIND_SIGNALLED: | |
96baa820 | 1744 | fprintf_unfiltered (gdb_stdlog, "signalled, signal = %s\n", |
c906108c SS |
1745 | target_signal_to_name (status->value.sig)); |
1746 | break; | |
1747 | case TARGET_WAITKIND_LOADED: | |
96baa820 | 1748 | fprintf_unfiltered (gdb_stdlog, "loaded\n"); |
c906108c SS |
1749 | break; |
1750 | case TARGET_WAITKIND_FORKED: | |
96baa820 | 1751 | fprintf_unfiltered (gdb_stdlog, "forked\n"); |
c906108c SS |
1752 | break; |
1753 | case TARGET_WAITKIND_VFORKED: | |
96baa820 | 1754 | fprintf_unfiltered (gdb_stdlog, "vforked\n"); |
c906108c SS |
1755 | break; |
1756 | case TARGET_WAITKIND_EXECD: | |
96baa820 | 1757 | fprintf_unfiltered (gdb_stdlog, "execd\n"); |
c906108c SS |
1758 | break; |
1759 | case TARGET_WAITKIND_SPURIOUS: | |
96baa820 | 1760 | fprintf_unfiltered (gdb_stdlog, "spurious\n"); |
c906108c SS |
1761 | break; |
1762 | default: | |
96baa820 | 1763 | fprintf_unfiltered (gdb_stdlog, "unknown???\n"); |
c906108c SS |
1764 | break; |
1765 | } | |
1766 | ||
1767 | return retval; | |
1768 | } | |
1769 | ||
1770 | static void | |
39f77062 | 1771 | debug_to_post_wait (ptid_t ptid, int status) |
c906108c | 1772 | { |
39f77062 | 1773 | debug_target.to_post_wait (ptid, status); |
c906108c | 1774 | |
96baa820 | 1775 | fprintf_unfiltered (gdb_stdlog, "target_post_wait (%d, %d)\n", |
39f77062 | 1776 | PIDGET (ptid), status); |
c906108c SS |
1777 | } |
1778 | ||
bf0c5130 AC |
1779 | static void |
1780 | debug_print_register (const char * func, int regno) | |
1781 | { | |
1782 | fprintf_unfiltered (gdb_stdlog, "%s ", func); | |
1783 | if (regno >= 0 && regno < NUM_REGS + NUM_PSEUDO_REGS | |
1784 | && REGISTER_NAME (regno) != NULL && REGISTER_NAME (regno)[0] != '\0') | |
1785 | fprintf_unfiltered (gdb_stdlog, "(%s)", REGISTER_NAME (regno)); | |
1786 | else | |
1787 | fprintf_unfiltered (gdb_stdlog, "(%d)", regno); | |
1788 | if (regno >= 0) | |
1789 | { | |
1790 | int i; | |
d9d9c31f | 1791 | unsigned char buf[MAX_REGISTER_SIZE]; |
4caf0990 | 1792 | deprecated_read_register_gen (regno, buf); |
bf0c5130 | 1793 | fprintf_unfiltered (gdb_stdlog, " = "); |
12c266ea | 1794 | for (i = 0; i < DEPRECATED_REGISTER_RAW_SIZE (regno); i++) |
bf0c5130 AC |
1795 | { |
1796 | fprintf_unfiltered (gdb_stdlog, "%02x", buf[i]); | |
1797 | } | |
12c266ea | 1798 | if (DEPRECATED_REGISTER_RAW_SIZE (regno) <= sizeof (LONGEST)) |
bf0c5130 AC |
1799 | { |
1800 | fprintf_unfiltered (gdb_stdlog, " 0x%s %s", | |
1801 | paddr_nz (read_register (regno)), | |
1802 | paddr_d (read_register (regno))); | |
1803 | } | |
1804 | } | |
1805 | fprintf_unfiltered (gdb_stdlog, "\n"); | |
1806 | } | |
1807 | ||
c906108c | 1808 | static void |
fba45db2 | 1809 | debug_to_fetch_registers (int regno) |
c906108c SS |
1810 | { |
1811 | debug_target.to_fetch_registers (regno); | |
bf0c5130 | 1812 | debug_print_register ("target_fetch_registers", regno); |
c906108c SS |
1813 | } |
1814 | ||
1815 | static void | |
fba45db2 | 1816 | debug_to_store_registers (int regno) |
c906108c SS |
1817 | { |
1818 | debug_target.to_store_registers (regno); | |
bf0c5130 AC |
1819 | debug_print_register ("target_store_registers", regno); |
1820 | fprintf_unfiltered (gdb_stdlog, "\n"); | |
c906108c SS |
1821 | } |
1822 | ||
1823 | static void | |
fba45db2 | 1824 | debug_to_prepare_to_store (void) |
c906108c SS |
1825 | { |
1826 | debug_target.to_prepare_to_store (); | |
1827 | ||
96baa820 | 1828 | fprintf_unfiltered (gdb_stdlog, "target_prepare_to_store ()\n"); |
c906108c SS |
1829 | } |
1830 | ||
1831 | static int | |
fba45db2 | 1832 | debug_to_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len, int write, |
29e57380 | 1833 | struct mem_attrib *attrib, |
fba45db2 | 1834 | struct target_ops *target) |
c906108c SS |
1835 | { |
1836 | int retval; | |
1837 | ||
29e57380 C |
1838 | retval = debug_target.to_xfer_memory (memaddr, myaddr, len, write, |
1839 | attrib, target); | |
c906108c | 1840 | |
96baa820 | 1841 | fprintf_unfiltered (gdb_stdlog, |
c906108c | 1842 | "target_xfer_memory (0x%x, xxx, %d, %s, xxx) = %d", |
c5aa993b | 1843 | (unsigned int) memaddr, /* possable truncate long long */ |
c906108c SS |
1844 | len, write ? "write" : "read", retval); |
1845 | ||
c5aa993b | 1846 | |
c906108c SS |
1847 | |
1848 | if (retval > 0) | |
1849 | { | |
1850 | int i; | |
1851 | ||
96baa820 | 1852 | fputs_unfiltered (", bytes =", gdb_stdlog); |
c906108c SS |
1853 | for (i = 0; i < retval; i++) |
1854 | { | |
1855 | if ((((long) &(myaddr[i])) & 0xf) == 0) | |
96baa820 JM |
1856 | fprintf_unfiltered (gdb_stdlog, "\n"); |
1857 | fprintf_unfiltered (gdb_stdlog, " %02x", myaddr[i] & 0xff); | |
c906108c SS |
1858 | } |
1859 | } | |
1860 | ||
96baa820 | 1861 | fputc_unfiltered ('\n', gdb_stdlog); |
c906108c SS |
1862 | |
1863 | return retval; | |
1864 | } | |
1865 | ||
1866 | static void | |
fba45db2 | 1867 | debug_to_files_info (struct target_ops *target) |
c906108c SS |
1868 | { |
1869 | debug_target.to_files_info (target); | |
1870 | ||
96baa820 | 1871 | fprintf_unfiltered (gdb_stdlog, "target_files_info (xxx)\n"); |
c906108c SS |
1872 | } |
1873 | ||
1874 | static int | |
fba45db2 | 1875 | debug_to_insert_breakpoint (CORE_ADDR addr, char *save) |
c906108c SS |
1876 | { |
1877 | int retval; | |
1878 | ||
1879 | retval = debug_target.to_insert_breakpoint (addr, save); | |
1880 | ||
96baa820 | 1881 | fprintf_unfiltered (gdb_stdlog, |
104c1213 JM |
1882 | "target_insert_breakpoint (0x%lx, xxx) = %ld\n", |
1883 | (unsigned long) addr, | |
1884 | (unsigned long) retval); | |
c906108c SS |
1885 | return retval; |
1886 | } | |
1887 | ||
1888 | static int | |
fba45db2 | 1889 | debug_to_remove_breakpoint (CORE_ADDR addr, char *save) |
c906108c SS |
1890 | { |
1891 | int retval; | |
1892 | ||
1893 | retval = debug_target.to_remove_breakpoint (addr, save); | |
1894 | ||
96baa820 | 1895 | fprintf_unfiltered (gdb_stdlog, |
104c1213 JM |
1896 | "target_remove_breakpoint (0x%lx, xxx) = %ld\n", |
1897 | (unsigned long) addr, | |
1898 | (unsigned long) retval); | |
c906108c SS |
1899 | return retval; |
1900 | } | |
1901 | ||
ccaa32c7 GS |
1902 | static int |
1903 | debug_to_can_use_hw_breakpoint (int type, int cnt, int from_tty) | |
1904 | { | |
1905 | int retval; | |
1906 | ||
1907 | retval = debug_target.to_can_use_hw_breakpoint (type, cnt, from_tty); | |
1908 | ||
1909 | fprintf_unfiltered (gdb_stdlog, | |
1910 | "target_can_use_hw_breakpoint (%ld, %ld, %ld) = %ld\n", | |
1911 | (unsigned long) type, | |
1912 | (unsigned long) cnt, | |
1913 | (unsigned long) from_tty, | |
1914 | (unsigned long) retval); | |
1915 | return retval; | |
1916 | } | |
1917 | ||
1918 | static int | |
1919 | debug_to_region_size_ok_for_hw_watchpoint (int byte_count) | |
1920 | { | |
1921 | CORE_ADDR retval; | |
1922 | ||
1923 | retval = debug_target.to_region_size_ok_for_hw_watchpoint (byte_count); | |
1924 | ||
1925 | fprintf_unfiltered (gdb_stdlog, | |
1926 | "TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT (%ld) = 0x%lx\n", | |
1927 | (unsigned long) byte_count, | |
1928 | (unsigned long) retval); | |
1929 | return retval; | |
1930 | } | |
1931 | ||
1932 | static int | |
1933 | debug_to_stopped_by_watchpoint (void) | |
1934 | { | |
1935 | int retval; | |
1936 | ||
1937 | retval = debug_target.to_stopped_by_watchpoint (); | |
1938 | ||
1939 | fprintf_unfiltered (gdb_stdlog, | |
1940 | "STOPPED_BY_WATCHPOINT () = %ld\n", | |
1941 | (unsigned long) retval); | |
1942 | return retval; | |
1943 | } | |
1944 | ||
1945 | static CORE_ADDR | |
1946 | debug_to_stopped_data_address (void) | |
1947 | { | |
1948 | CORE_ADDR retval; | |
1949 | ||
1950 | retval = debug_target.to_stopped_data_address (); | |
1951 | ||
1952 | fprintf_unfiltered (gdb_stdlog, | |
1953 | "target_stopped_data_address () = 0x%lx\n", | |
1954 | (unsigned long) retval); | |
1955 | return retval; | |
1956 | } | |
1957 | ||
1958 | static int | |
1959 | debug_to_insert_hw_breakpoint (CORE_ADDR addr, char *save) | |
1960 | { | |
1961 | int retval; | |
1962 | ||
1963 | retval = debug_target.to_insert_hw_breakpoint (addr, save); | |
1964 | ||
1965 | fprintf_unfiltered (gdb_stdlog, | |
1966 | "target_insert_hw_breakpoint (0x%lx, xxx) = %ld\n", | |
1967 | (unsigned long) addr, | |
1968 | (unsigned long) retval); | |
1969 | return retval; | |
1970 | } | |
1971 | ||
1972 | static int | |
1973 | debug_to_remove_hw_breakpoint (CORE_ADDR addr, char *save) | |
1974 | { | |
1975 | int retval; | |
1976 | ||
1977 | retval = debug_target.to_remove_hw_breakpoint (addr, save); | |
1978 | ||
1979 | fprintf_unfiltered (gdb_stdlog, | |
1980 | "target_remove_hw_breakpoint (0x%lx, xxx) = %ld\n", | |
1981 | (unsigned long) addr, | |
1982 | (unsigned long) retval); | |
1983 | return retval; | |
1984 | } | |
1985 | ||
1986 | static int | |
1987 | debug_to_insert_watchpoint (CORE_ADDR addr, int len, int type) | |
1988 | { | |
1989 | int retval; | |
1990 | ||
1991 | retval = debug_target.to_insert_watchpoint (addr, len, type); | |
1992 | ||
1993 | fprintf_unfiltered (gdb_stdlog, | |
1994 | "target_insert_watchpoint (0x%lx, %d, %d) = %ld\n", | |
1995 | (unsigned long) addr, len, type, (unsigned long) retval); | |
1996 | return retval; | |
1997 | } | |
1998 | ||
1999 | static int | |
2000 | debug_to_remove_watchpoint (CORE_ADDR addr, int len, int type) | |
2001 | { | |
2002 | int retval; | |
2003 | ||
2004 | retval = debug_target.to_insert_watchpoint (addr, len, type); | |
2005 | ||
2006 | fprintf_unfiltered (gdb_stdlog, | |
2007 | "target_insert_watchpoint (0x%lx, %d, %d) = %ld\n", | |
2008 | (unsigned long) addr, len, type, (unsigned long) retval); | |
2009 | return retval; | |
2010 | } | |
2011 | ||
c906108c | 2012 | static void |
fba45db2 | 2013 | debug_to_terminal_init (void) |
c906108c SS |
2014 | { |
2015 | debug_target.to_terminal_init (); | |
2016 | ||
96baa820 | 2017 | fprintf_unfiltered (gdb_stdlog, "target_terminal_init ()\n"); |
c906108c SS |
2018 | } |
2019 | ||
2020 | static void | |
fba45db2 | 2021 | debug_to_terminal_inferior (void) |
c906108c SS |
2022 | { |
2023 | debug_target.to_terminal_inferior (); | |
2024 | ||
96baa820 | 2025 | fprintf_unfiltered (gdb_stdlog, "target_terminal_inferior ()\n"); |
c906108c SS |
2026 | } |
2027 | ||
2028 | static void | |
fba45db2 | 2029 | debug_to_terminal_ours_for_output (void) |
c906108c SS |
2030 | { |
2031 | debug_target.to_terminal_ours_for_output (); | |
2032 | ||
96baa820 | 2033 | fprintf_unfiltered (gdb_stdlog, "target_terminal_ours_for_output ()\n"); |
c906108c SS |
2034 | } |
2035 | ||
2036 | static void | |
fba45db2 | 2037 | debug_to_terminal_ours (void) |
c906108c SS |
2038 | { |
2039 | debug_target.to_terminal_ours (); | |
2040 | ||
96baa820 | 2041 | fprintf_unfiltered (gdb_stdlog, "target_terminal_ours ()\n"); |
c906108c SS |
2042 | } |
2043 | ||
a790ad35 SC |
2044 | static void |
2045 | debug_to_terminal_save_ours (void) | |
2046 | { | |
2047 | debug_target.to_terminal_save_ours (); | |
2048 | ||
2049 | fprintf_unfiltered (gdb_stdlog, "target_terminal_save_ours ()\n"); | |
2050 | } | |
2051 | ||
c906108c | 2052 | static void |
fba45db2 | 2053 | debug_to_terminal_info (char *arg, int from_tty) |
c906108c SS |
2054 | { |
2055 | debug_target.to_terminal_info (arg, from_tty); | |
2056 | ||
96baa820 | 2057 | fprintf_unfiltered (gdb_stdlog, "target_terminal_info (%s, %d)\n", arg, |
c906108c SS |
2058 | from_tty); |
2059 | } | |
2060 | ||
2061 | static void | |
fba45db2 | 2062 | debug_to_kill (void) |
c906108c SS |
2063 | { |
2064 | debug_target.to_kill (); | |
2065 | ||
96baa820 | 2066 | fprintf_unfiltered (gdb_stdlog, "target_kill ()\n"); |
c906108c SS |
2067 | } |
2068 | ||
2069 | static void | |
fba45db2 | 2070 | debug_to_load (char *args, int from_tty) |
c906108c SS |
2071 | { |
2072 | debug_target.to_load (args, from_tty); | |
2073 | ||
96baa820 | 2074 | fprintf_unfiltered (gdb_stdlog, "target_load (%s, %d)\n", args, from_tty); |
c906108c SS |
2075 | } |
2076 | ||
2077 | static int | |
fba45db2 | 2078 | debug_to_lookup_symbol (char *name, CORE_ADDR *addrp) |
c906108c SS |
2079 | { |
2080 | int retval; | |
2081 | ||
2082 | retval = debug_target.to_lookup_symbol (name, addrp); | |
2083 | ||
96baa820 | 2084 | fprintf_unfiltered (gdb_stdlog, "target_lookup_symbol (%s, xxx)\n", name); |
c906108c SS |
2085 | |
2086 | return retval; | |
2087 | } | |
2088 | ||
2089 | static void | |
fba45db2 | 2090 | debug_to_create_inferior (char *exec_file, char *args, char **env) |
c906108c SS |
2091 | { |
2092 | debug_target.to_create_inferior (exec_file, args, env); | |
2093 | ||
96baa820 | 2094 | fprintf_unfiltered (gdb_stdlog, "target_create_inferior (%s, %s, xxx)\n", |
c906108c SS |
2095 | exec_file, args); |
2096 | } | |
2097 | ||
2098 | static void | |
39f77062 | 2099 | debug_to_post_startup_inferior (ptid_t ptid) |
c906108c | 2100 | { |
39f77062 | 2101 | debug_target.to_post_startup_inferior (ptid); |
c906108c | 2102 | |
96baa820 | 2103 | fprintf_unfiltered (gdb_stdlog, "target_post_startup_inferior (%d)\n", |
39f77062 | 2104 | PIDGET (ptid)); |
c906108c SS |
2105 | } |
2106 | ||
2107 | static void | |
fba45db2 | 2108 | debug_to_acknowledge_created_inferior (int pid) |
c906108c SS |
2109 | { |
2110 | debug_target.to_acknowledge_created_inferior (pid); | |
2111 | ||
96baa820 | 2112 | fprintf_unfiltered (gdb_stdlog, "target_acknowledge_created_inferior (%d)\n", |
c906108c SS |
2113 | pid); |
2114 | } | |
2115 | ||
c906108c | 2116 | static int |
fba45db2 | 2117 | debug_to_insert_fork_catchpoint (int pid) |
c906108c | 2118 | { |
c5aa993b | 2119 | int retval; |
c906108c SS |
2120 | |
2121 | retval = debug_target.to_insert_fork_catchpoint (pid); | |
2122 | ||
96baa820 | 2123 | fprintf_unfiltered (gdb_stdlog, "target_insert_fork_catchpoint (%d) = %d\n", |
c5aa993b | 2124 | pid, retval); |
c906108c SS |
2125 | |
2126 | return retval; | |
2127 | } | |
2128 | ||
2129 | static int | |
fba45db2 | 2130 | debug_to_remove_fork_catchpoint (int pid) |
c906108c | 2131 | { |
c5aa993b | 2132 | int retval; |
c906108c SS |
2133 | |
2134 | retval = debug_target.to_remove_fork_catchpoint (pid); | |
2135 | ||
96baa820 | 2136 | fprintf_unfiltered (gdb_stdlog, "target_remove_fork_catchpoint (%d) = %d\n", |
c5aa993b | 2137 | pid, retval); |
c906108c SS |
2138 | |
2139 | return retval; | |
2140 | } | |
2141 | ||
2142 | static int | |
fba45db2 | 2143 | debug_to_insert_vfork_catchpoint (int pid) |
c906108c | 2144 | { |
c5aa993b | 2145 | int retval; |
c906108c SS |
2146 | |
2147 | retval = debug_target.to_insert_vfork_catchpoint (pid); | |
2148 | ||
96baa820 | 2149 | fprintf_unfiltered (gdb_stdlog, "target_insert_vfork_catchpoint (%d)= %d\n", |
c5aa993b | 2150 | pid, retval); |
c906108c SS |
2151 | |
2152 | return retval; | |
2153 | } | |
2154 | ||
2155 | static int | |
fba45db2 | 2156 | debug_to_remove_vfork_catchpoint (int pid) |
c906108c | 2157 | { |
c5aa993b | 2158 | int retval; |
c906108c SS |
2159 | |
2160 | retval = debug_target.to_remove_vfork_catchpoint (pid); | |
2161 | ||
96baa820 | 2162 | fprintf_unfiltered (gdb_stdlog, "target_remove_vfork_catchpoint (%d) = %d\n", |
c5aa993b | 2163 | pid, retval); |
c906108c SS |
2164 | |
2165 | return retval; | |
2166 | } | |
2167 | ||
6604731b DJ |
2168 | static int |
2169 | debug_to_follow_fork (int follow_child) | |
c906108c | 2170 | { |
6604731b | 2171 | int retval = debug_target.to_follow_fork (follow_child); |
c906108c | 2172 | |
6604731b DJ |
2173 | fprintf_unfiltered (gdb_stdlog, "target_follow_fork (%d) = %d\n", |
2174 | follow_child, retval); | |
2175 | ||
2176 | return retval; | |
c906108c SS |
2177 | } |
2178 | ||
2179 | static int | |
fba45db2 | 2180 | debug_to_insert_exec_catchpoint (int pid) |
c906108c | 2181 | { |
c5aa993b | 2182 | int retval; |
c906108c SS |
2183 | |
2184 | retval = debug_target.to_insert_exec_catchpoint (pid); | |
2185 | ||
96baa820 | 2186 | fprintf_unfiltered (gdb_stdlog, "target_insert_exec_catchpoint (%d) = %d\n", |
c5aa993b | 2187 | pid, retval); |
c906108c SS |
2188 | |
2189 | return retval; | |
2190 | } | |
2191 | ||
2192 | static int | |
fba45db2 | 2193 | debug_to_remove_exec_catchpoint (int pid) |
c906108c | 2194 | { |
c5aa993b | 2195 | int retval; |
c906108c SS |
2196 | |
2197 | retval = debug_target.to_remove_exec_catchpoint (pid); | |
2198 | ||
96baa820 | 2199 | fprintf_unfiltered (gdb_stdlog, "target_remove_exec_catchpoint (%d) = %d\n", |
c5aa993b | 2200 | pid, retval); |
c906108c SS |
2201 | |
2202 | return retval; | |
2203 | } | |
2204 | ||
c906108c | 2205 | static int |
fba45db2 | 2206 | debug_to_reported_exec_events_per_exec_call (void) |
c906108c | 2207 | { |
c5aa993b | 2208 | int reported_exec_events; |
c906108c SS |
2209 | |
2210 | reported_exec_events = debug_target.to_reported_exec_events_per_exec_call (); | |
2211 | ||
96baa820 | 2212 | fprintf_unfiltered (gdb_stdlog, |
c906108c | 2213 | "target_reported_exec_events_per_exec_call () = %d\n", |
c5aa993b | 2214 | reported_exec_events); |
c906108c SS |
2215 | |
2216 | return reported_exec_events; | |
2217 | } | |
2218 | ||
c906108c | 2219 | static int |
fba45db2 | 2220 | debug_to_has_exited (int pid, int wait_status, int *exit_status) |
c906108c | 2221 | { |
c5aa993b | 2222 | int has_exited; |
c906108c SS |
2223 | |
2224 | has_exited = debug_target.to_has_exited (pid, wait_status, exit_status); | |
2225 | ||
96baa820 | 2226 | fprintf_unfiltered (gdb_stdlog, "target_has_exited (%d, %d, %d) = %d\n", |
c5aa993b | 2227 | pid, wait_status, *exit_status, has_exited); |
c906108c SS |
2228 | |
2229 | return has_exited; | |
2230 | } | |
2231 | ||
2232 | static void | |
fba45db2 | 2233 | debug_to_mourn_inferior (void) |
c906108c SS |
2234 | { |
2235 | debug_target.to_mourn_inferior (); | |
2236 | ||
96baa820 | 2237 | fprintf_unfiltered (gdb_stdlog, "target_mourn_inferior ()\n"); |
c906108c SS |
2238 | } |
2239 | ||
2240 | static int | |
fba45db2 | 2241 | debug_to_can_run (void) |
c906108c SS |
2242 | { |
2243 | int retval; | |
2244 | ||
2245 | retval = debug_target.to_can_run (); | |
2246 | ||
96baa820 | 2247 | fprintf_unfiltered (gdb_stdlog, "target_can_run () = %d\n", retval); |
c906108c SS |
2248 | |
2249 | return retval; | |
2250 | } | |
2251 | ||
2252 | static void | |
39f77062 | 2253 | debug_to_notice_signals (ptid_t ptid) |
c906108c | 2254 | { |
39f77062 | 2255 | debug_target.to_notice_signals (ptid); |
c906108c | 2256 | |
39f77062 KB |
2257 | fprintf_unfiltered (gdb_stdlog, "target_notice_signals (%d)\n", |
2258 | PIDGET (ptid)); | |
c906108c SS |
2259 | } |
2260 | ||
2261 | static int | |
39f77062 | 2262 | debug_to_thread_alive (ptid_t ptid) |
c906108c SS |
2263 | { |
2264 | int retval; | |
2265 | ||
39f77062 | 2266 | retval = debug_target.to_thread_alive (ptid); |
c906108c | 2267 | |
96baa820 | 2268 | fprintf_unfiltered (gdb_stdlog, "target_thread_alive (%d) = %d\n", |
39f77062 | 2269 | PIDGET (ptid), retval); |
c906108c SS |
2270 | |
2271 | return retval; | |
2272 | } | |
2273 | ||
0d06e24b | 2274 | static void |
fba45db2 | 2275 | debug_to_find_new_threads (void) |
0d06e24b JM |
2276 | { |
2277 | debug_target.to_find_new_threads (); | |
2278 | ||
2279 | fputs_unfiltered ("target_find_new_threads ()\n", gdb_stdlog); | |
2280 | } | |
2281 | ||
c906108c | 2282 | static void |
fba45db2 | 2283 | debug_to_stop (void) |
c906108c SS |
2284 | { |
2285 | debug_target.to_stop (); | |
2286 | ||
96baa820 | 2287 | fprintf_unfiltered (gdb_stdlog, "target_stop ()\n"); |
c906108c SS |
2288 | } |
2289 | ||
1e3ff5ad | 2290 | static LONGEST |
8aa91c1e AC |
2291 | debug_to_xfer_partial (struct target_ops *ops, enum target_object object, |
2292 | const char *annex, void *readbuf, const void *writebuf, | |
2293 | ULONGEST offset, LONGEST len) | |
1e3ff5ad AC |
2294 | { |
2295 | LONGEST retval; | |
2296 | ||
4b8a223f | 2297 | retval = debug_target.to_xfer_partial (&debug_target, object, annex, |
8aa91c1e | 2298 | readbuf, writebuf, offset, len); |
1e3ff5ad AC |
2299 | |
2300 | fprintf_unfiltered (gdb_stdlog, | |
4b8a223f | 2301 | "target_xfer_partial (%d, %s, 0x%lx, 0x%lx, 0x%s, %s) = %s\n", |
1e3ff5ad | 2302 | (int) object, (annex ? annex : "(null)"), |
8aa91c1e | 2303 | (long) readbuf, (long) writebuf, paddr_nz (offset), |
1e3ff5ad | 2304 | paddr_d (len), paddr_d (retval)); |
c906108c SS |
2305 | |
2306 | return retval; | |
2307 | } | |
2308 | ||
96baa820 JM |
2309 | static void |
2310 | debug_to_rcmd (char *command, | |
d9fcf2fb | 2311 | struct ui_file *outbuf) |
96baa820 JM |
2312 | { |
2313 | debug_target.to_rcmd (command, outbuf); | |
2314 | fprintf_unfiltered (gdb_stdlog, "target_rcmd (%s, ...)\n", command); | |
2315 | } | |
2316 | ||
c906108c | 2317 | static struct symtab_and_line * |
fba45db2 | 2318 | debug_to_enable_exception_callback (enum exception_event_kind kind, int enable) |
c906108c | 2319 | { |
7a292a7a SS |
2320 | struct symtab_and_line *result; |
2321 | result = debug_target.to_enable_exception_callback (kind, enable); | |
96baa820 | 2322 | fprintf_unfiltered (gdb_stdlog, |
c906108c SS |
2323 | "target get_exception_callback_sal (%d, %d)\n", |
2324 | kind, enable); | |
7a292a7a | 2325 | return result; |
c906108c SS |
2326 | } |
2327 | ||
2328 | static struct exception_event_record * | |
fba45db2 | 2329 | debug_to_get_current_exception_event (void) |
c906108c | 2330 | { |
7a292a7a | 2331 | struct exception_event_record *result; |
c5aa993b | 2332 | result = debug_target.to_get_current_exception_event (); |
96baa820 | 2333 | fprintf_unfiltered (gdb_stdlog, "target get_current_exception_event ()\n"); |
7a292a7a | 2334 | return result; |
c906108c SS |
2335 | } |
2336 | ||
2337 | static char * | |
fba45db2 | 2338 | debug_to_pid_to_exec_file (int pid) |
c906108c | 2339 | { |
c5aa993b | 2340 | char *exec_file; |
c906108c SS |
2341 | |
2342 | exec_file = debug_target.to_pid_to_exec_file (pid); | |
2343 | ||
96baa820 | 2344 | fprintf_unfiltered (gdb_stdlog, "target_pid_to_exec_file (%d) = %s\n", |
c5aa993b | 2345 | pid, exec_file); |
c906108c SS |
2346 | |
2347 | return exec_file; | |
2348 | } | |
2349 | ||
c906108c | 2350 | static void |
fba45db2 | 2351 | setup_target_debug (void) |
c906108c SS |
2352 | { |
2353 | memcpy (&debug_target, ¤t_target, sizeof debug_target); | |
2354 | ||
2355 | current_target.to_open = debug_to_open; | |
2356 | current_target.to_close = debug_to_close; | |
2357 | current_target.to_attach = debug_to_attach; | |
2358 | current_target.to_post_attach = debug_to_post_attach; | |
c906108c | 2359 | current_target.to_detach = debug_to_detach; |
6ad8ae5c | 2360 | current_target.to_disconnect = debug_to_disconnect; |
c906108c SS |
2361 | current_target.to_resume = debug_to_resume; |
2362 | current_target.to_wait = debug_to_wait; | |
2363 | current_target.to_post_wait = debug_to_post_wait; | |
2364 | current_target.to_fetch_registers = debug_to_fetch_registers; | |
2365 | current_target.to_store_registers = debug_to_store_registers; | |
2366 | current_target.to_prepare_to_store = debug_to_prepare_to_store; | |
2367 | current_target.to_xfer_memory = debug_to_xfer_memory; | |
2368 | current_target.to_files_info = debug_to_files_info; | |
2369 | current_target.to_insert_breakpoint = debug_to_insert_breakpoint; | |
2370 | current_target.to_remove_breakpoint = debug_to_remove_breakpoint; | |
ccaa32c7 GS |
2371 | current_target.to_can_use_hw_breakpoint = debug_to_can_use_hw_breakpoint; |
2372 | current_target.to_insert_hw_breakpoint = debug_to_insert_hw_breakpoint; | |
2373 | current_target.to_remove_hw_breakpoint = debug_to_remove_hw_breakpoint; | |
2374 | current_target.to_insert_watchpoint = debug_to_insert_watchpoint; | |
2375 | current_target.to_remove_watchpoint = debug_to_remove_watchpoint; | |
2376 | current_target.to_stopped_by_watchpoint = debug_to_stopped_by_watchpoint; | |
2377 | current_target.to_stopped_data_address = debug_to_stopped_data_address; | |
2378 | current_target.to_region_size_ok_for_hw_watchpoint = debug_to_region_size_ok_for_hw_watchpoint; | |
c906108c SS |
2379 | current_target.to_terminal_init = debug_to_terminal_init; |
2380 | current_target.to_terminal_inferior = debug_to_terminal_inferior; | |
2381 | current_target.to_terminal_ours_for_output = debug_to_terminal_ours_for_output; | |
2382 | current_target.to_terminal_ours = debug_to_terminal_ours; | |
a790ad35 | 2383 | current_target.to_terminal_save_ours = debug_to_terminal_save_ours; |
c906108c SS |
2384 | current_target.to_terminal_info = debug_to_terminal_info; |
2385 | current_target.to_kill = debug_to_kill; | |
2386 | current_target.to_load = debug_to_load; | |
2387 | current_target.to_lookup_symbol = debug_to_lookup_symbol; | |
2388 | current_target.to_create_inferior = debug_to_create_inferior; | |
2389 | current_target.to_post_startup_inferior = debug_to_post_startup_inferior; | |
2390 | current_target.to_acknowledge_created_inferior = debug_to_acknowledge_created_inferior; | |
c906108c SS |
2391 | current_target.to_insert_fork_catchpoint = debug_to_insert_fork_catchpoint; |
2392 | current_target.to_remove_fork_catchpoint = debug_to_remove_fork_catchpoint; | |
2393 | current_target.to_insert_vfork_catchpoint = debug_to_insert_vfork_catchpoint; | |
2394 | current_target.to_remove_vfork_catchpoint = debug_to_remove_vfork_catchpoint; | |
6604731b | 2395 | current_target.to_follow_fork = debug_to_follow_fork; |
c906108c SS |
2396 | current_target.to_insert_exec_catchpoint = debug_to_insert_exec_catchpoint; |
2397 | current_target.to_remove_exec_catchpoint = debug_to_remove_exec_catchpoint; | |
c906108c | 2398 | current_target.to_reported_exec_events_per_exec_call = debug_to_reported_exec_events_per_exec_call; |
c906108c SS |
2399 | current_target.to_has_exited = debug_to_has_exited; |
2400 | current_target.to_mourn_inferior = debug_to_mourn_inferior; | |
2401 | current_target.to_can_run = debug_to_can_run; | |
2402 | current_target.to_notice_signals = debug_to_notice_signals; | |
2403 | current_target.to_thread_alive = debug_to_thread_alive; | |
0d06e24b | 2404 | current_target.to_find_new_threads = debug_to_find_new_threads; |
c906108c | 2405 | current_target.to_stop = debug_to_stop; |
4b8a223f | 2406 | current_target.to_xfer_partial = debug_to_xfer_partial; |
96baa820 | 2407 | current_target.to_rcmd = debug_to_rcmd; |
c906108c SS |
2408 | current_target.to_enable_exception_callback = debug_to_enable_exception_callback; |
2409 | current_target.to_get_current_exception_event = debug_to_get_current_exception_event; | |
2410 | current_target.to_pid_to_exec_file = debug_to_pid_to_exec_file; | |
c906108c SS |
2411 | |
2412 | } | |
c906108c | 2413 | \f |
c5aa993b JM |
2414 | |
2415 | static char targ_desc[] = | |
2416 | "Names of targets and files being debugged.\n\ | |
c906108c SS |
2417 | Shows the entire stack of targets currently in use (including the exec-file,\n\ |
2418 | core-file, and process, if any), as well as the symbol file name."; | |
2419 | ||
96baa820 JM |
2420 | static void |
2421 | do_monitor_command (char *cmd, | |
2422 | int from_tty) | |
2423 | { | |
2b5fe715 AC |
2424 | if ((current_target.to_rcmd |
2425 | == (void (*) (char *, struct ui_file *)) tcomplain) | |
96baa820 | 2426 | || (current_target.to_rcmd == debug_to_rcmd |
2b5fe715 AC |
2427 | && (debug_target.to_rcmd |
2428 | == (void (*) (char *, struct ui_file *)) tcomplain))) | |
96baa820 JM |
2429 | { |
2430 | error ("\"monitor\" command not supported by this target.\n"); | |
2431 | } | |
2432 | target_rcmd (cmd, gdb_stdtarg); | |
2433 | } | |
2434 | ||
c906108c | 2435 | void |
fba45db2 | 2436 | initialize_targets (void) |
c906108c SS |
2437 | { |
2438 | init_dummy_target (); | |
2439 | push_target (&dummy_target); | |
2440 | ||
2441 | add_info ("target", target_info, targ_desc); | |
2442 | add_info ("files", target_info, targ_desc); | |
2443 | ||
3a11626d MS |
2444 | add_show_from_set |
2445 | (add_set_cmd ("target", class_maintenance, var_zinteger, | |
2446 | (char *) &targetdebug, | |
2447 | "Set target debugging.\n\ | |
5d161b24 | 2448 | When non-zero, target debugging is enabled.", &setdebuglist), |
3a11626d MS |
2449 | &showdebuglist); |
2450 | ||
e707bbc2 AC |
2451 | add_setshow_boolean_cmd ("trust-readonly-sections", class_support, |
2452 | &trust_readonly, "\ | |
2453 | Set mode for reading from readonly sections.\n\ | |
3a11626d MS |
2454 | When this mode is on, memory reads from readonly sections (such as .text)\n\ |
2455 | will be read from the object file instead of from the target. This will\n\ | |
e707bbc2 | 2456 | result in significant performance improvement for remote targets.", "\ |
c0e624e7 | 2457 | Show mode for reading from readonly sections.\n", |
e707bbc2 AC |
2458 | NULL, NULL, |
2459 | &setlist, &showlist); | |
96baa820 JM |
2460 | |
2461 | add_com ("monitor", class_obscure, do_monitor_command, | |
2462 | "Send a command to the remote monitor (remote targets only)."); | |
2463 | ||
8add0441 | 2464 | target_dcache = dcache_init (); |
c906108c | 2465 | } |