More make_cleanups/catch_errors warning fixes.
[deliverable/binutils-gdb.git] / gdb / target.h
CommitLineData
bd5635a1 1/* Interface between GDB and target environments, including files and processes
fcbc95a7 2 Copyright 1990, 1991, 1992, 1993, 1994 Free Software Foundation, Inc.
bd5635a1
RP
3 Contributed by Cygnus Support. Written by John Gilmore.
4
5This file is part of GDB.
6
75af490b 7This program is free software; you can redistribute it and/or modify
bd5635a1 8it under the terms of the GNU General Public License as published by
75af490b
JG
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
bd5635a1 11
75af490b 12This program is distributed in the hope that it will be useful,
bd5635a1
RP
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
75af490b 18along with this program; if not, write to the Free Software
cb1709ae 19Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
75af490b
JG
20
21#if !defined (TARGET_H)
22#define TARGET_H
bd5635a1
RP
23
24/* This include file defines the interface between the main part
25 of the debugger, and the part which is target-specific, or
26 specific to the communications interface between us and the
27 target.
28
29 A TARGET is an interface between the debugger and a particular
30 kind of file or process. Targets can be STACKED in STRATA,
31 so that more than one target can potentially respond to a request.
32 In particular, memory accesses will walk down the stack of targets
33 until they find a target that is interested in handling that particular
34 address. STRATA are artificial boundaries on the stack, within
35 which particular kinds of targets live. Strata exist so that
36 people don't get confused by pushing e.g. a process target and then
37 a file target, and wondering why they can't see the current values
38 of variables any more (the file target is handling them and they
39 never get to the process target). So when you push a file target,
40 it goes into the file stratum, which is always below the process
41 stratum. */
42
75af490b 43#include "bfd.h"
4ef1f467 44#include "symtab.h"
75af490b 45
bd5635a1
RP
46enum strata {
47 dummy_stratum, /* The lowest of the low */
48 file_stratum, /* Executable files, etc */
49 core_stratum, /* Core dump files */
e8bf33c4 50 download_stratum, /* Downloading of remote targets */
75af490b 51 process_stratum /* Executing processes */
bd5635a1
RP
52};
53
3ab2abae
MS
54enum thread_control_capabilities {
55 tc_none = 0, /* Default: can't control thread execution. */
56 tc_schedlock = 1, /* Can lock the thread scheduler. */
57 tc_switch = 2, /* Can switch the running thread on demand. */
58};
59
67ac9759
JK
60/* Stuff for target_wait. */
61
62/* Generally, what has the program done? */
63enum target_waitkind {
64 /* The program has exited. The exit status is in value.integer. */
65 TARGET_WAITKIND_EXITED,
66
67 /* The program has stopped with a signal. Which signal is in value.sig. */
68 TARGET_WAITKIND_STOPPED,
69
70 /* The program has terminated with a signal. Which signal is in
71 value.sig. */
fcbc95a7
JK
72 TARGET_WAITKIND_SIGNALLED,
73
74 /* The program is letting us know that it dynamically loaded something
75 (e.g. it called load(2) on AIX). */
76 TARGET_WAITKIND_LOADED,
77
4ef1f467
DT
78 /* The program has forked. A "related" process' ID is in value.related_pid.
79 I.e., if the child forks, value.related_pid is the parent's ID.
80 */
81 TARGET_WAITKIND_FORKED,
82
83 /* The program has vforked. A "related" process's ID is in value.related_pid.
84 */
85 TARGET_WAITKIND_VFORKED,
86
87 /* The program has exec'ed a new executable file. The new file's pathname
88 is pointed to by value.execd_pathname.
89 */
90 TARGET_WAITKIND_EXECD,
91
92 /* The program has entered or returned from a system call. On HP-UX, this
93 is used in the hardware watchpoint implementation. The syscall's unique
94 integer ID number is in value.syscall_id;
95 */
96 TARGET_WAITKIND_SYSCALL_ENTRY,
97 TARGET_WAITKIND_SYSCALL_RETURN,
98
fcbc95a7
JK
99 /* Nothing happened, but we stopped anyway. This perhaps should be handled
100 within target_wait, but I'm not sure target_wait should be resuming the
101 inferior. */
102 TARGET_WAITKIND_SPURIOUS
67ac9759
JK
103 };
104
105/* The numbering of these signals is chosen to match traditional unix
106 signals (insofar as various unices use the same numbers, anyway).
107 It is also the numbering of the GDB remote protocol. Other remote
108 protocols, if they use a different numbering, should make sure to
109 translate appropriately. */
110
111/* This is based strongly on Unix/POSIX signals for several reasons:
112 (1) This set of signals represents a widely-accepted attempt to
113 represent events of this sort in a portable fashion, (2) we want a
114 signal to make it from wait to child_wait to the user intact, (3) many
115 remote protocols use a similar encoding. However, it is
116 recognized that this set of signals has limitations (such as not
117 distinguishing between various kinds of SIGSEGV, or not
118 distinguishing hitting a breakpoint from finishing a single step).
119 So in the future we may get around this either by adding additional
120 signals for breakpoint, single-step, etc., or by adding signal
121 codes; the latter seems more in the spirit of what BSD, System V,
122 etc. are doing to address these issues. */
123
124/* For an explanation of what each signal means, see
125 target_signal_to_string. */
126
127enum target_signal {
128 /* Used some places (e.g. stop_signal) to record the concept that
129 there is no signal. */
130 TARGET_SIGNAL_0 = 0,
1c95d7ab 131 TARGET_SIGNAL_FIRST = 0,
67ac9759
JK
132 TARGET_SIGNAL_HUP = 1,
133 TARGET_SIGNAL_INT = 2,
134 TARGET_SIGNAL_QUIT = 3,
135 TARGET_SIGNAL_ILL = 4,
136 TARGET_SIGNAL_TRAP = 5,
137 TARGET_SIGNAL_ABRT = 6,
138 TARGET_SIGNAL_EMT = 7,
139 TARGET_SIGNAL_FPE = 8,
140 TARGET_SIGNAL_KILL = 9,
141 TARGET_SIGNAL_BUS = 10,
142 TARGET_SIGNAL_SEGV = 11,
143 TARGET_SIGNAL_SYS = 12,
144 TARGET_SIGNAL_PIPE = 13,
145 TARGET_SIGNAL_ALRM = 14,
146 TARGET_SIGNAL_TERM = 15,
147 TARGET_SIGNAL_URG = 16,
148 TARGET_SIGNAL_STOP = 17,
149 TARGET_SIGNAL_TSTP = 18,
150 TARGET_SIGNAL_CONT = 19,
151 TARGET_SIGNAL_CHLD = 20,
152 TARGET_SIGNAL_TTIN = 21,
153 TARGET_SIGNAL_TTOU = 22,
154 TARGET_SIGNAL_IO = 23,
155 TARGET_SIGNAL_XCPU = 24,
156 TARGET_SIGNAL_XFSZ = 25,
157 TARGET_SIGNAL_VTALRM = 26,
158 TARGET_SIGNAL_PROF = 27,
159 TARGET_SIGNAL_WINCH = 28,
160 TARGET_SIGNAL_LOST = 29,
161 TARGET_SIGNAL_USR1 = 30,
162 TARGET_SIGNAL_USR2 = 31,
163 TARGET_SIGNAL_PWR = 32,
164 /* Similar to SIGIO. Perhaps they should have the same number. */
165 TARGET_SIGNAL_POLL = 33,
166 TARGET_SIGNAL_WIND = 34,
167 TARGET_SIGNAL_PHONE = 35,
168 TARGET_SIGNAL_WAITING = 36,
169 TARGET_SIGNAL_LWP = 37,
170 TARGET_SIGNAL_DANGER = 38,
171 TARGET_SIGNAL_GRANT = 39,
172 TARGET_SIGNAL_RETRACT = 40,
173 TARGET_SIGNAL_MSG = 41,
174 TARGET_SIGNAL_SOUND = 42,
175 TARGET_SIGNAL_SAK = 43,
e8bf33c4
JK
176 TARGET_SIGNAL_PRIO = 44,
177 TARGET_SIGNAL_REALTIME_33 = 45,
178 TARGET_SIGNAL_REALTIME_34 = 46,
179 TARGET_SIGNAL_REALTIME_35 = 47,
180 TARGET_SIGNAL_REALTIME_36 = 48,
181 TARGET_SIGNAL_REALTIME_37 = 49,
182 TARGET_SIGNAL_REALTIME_38 = 50,
183 TARGET_SIGNAL_REALTIME_39 = 51,
184 TARGET_SIGNAL_REALTIME_40 = 52,
185 TARGET_SIGNAL_REALTIME_41 = 53,
186 TARGET_SIGNAL_REALTIME_42 = 54,
187 TARGET_SIGNAL_REALTIME_43 = 55,
188 TARGET_SIGNAL_REALTIME_44 = 56,
189 TARGET_SIGNAL_REALTIME_45 = 57,
190 TARGET_SIGNAL_REALTIME_46 = 58,
191 TARGET_SIGNAL_REALTIME_47 = 59,
192 TARGET_SIGNAL_REALTIME_48 = 60,
193 TARGET_SIGNAL_REALTIME_49 = 61,
194 TARGET_SIGNAL_REALTIME_50 = 62,
195 TARGET_SIGNAL_REALTIME_51 = 63,
196 TARGET_SIGNAL_REALTIME_52 = 64,
197 TARGET_SIGNAL_REALTIME_53 = 65,
198 TARGET_SIGNAL_REALTIME_54 = 66,
199 TARGET_SIGNAL_REALTIME_55 = 67,
200 TARGET_SIGNAL_REALTIME_56 = 68,
201 TARGET_SIGNAL_REALTIME_57 = 69,
202 TARGET_SIGNAL_REALTIME_58 = 70,
203 TARGET_SIGNAL_REALTIME_59 = 71,
204 TARGET_SIGNAL_REALTIME_60 = 72,
205 TARGET_SIGNAL_REALTIME_61 = 73,
206 TARGET_SIGNAL_REALTIME_62 = 74,
207 TARGET_SIGNAL_REALTIME_63 = 75,
dd0ce8f6 208#if defined(MACH) || defined(__MACH__)
647e52ea
SG
209 /* Mach exceptions */
210 TARGET_EXC_BAD_ACCESS = 76,
211 TARGET_EXC_BAD_INSTRUCTION = 77,
212 TARGET_EXC_ARITHMETIC = 78,
213 TARGET_EXC_EMULATION = 79,
214 TARGET_EXC_SOFTWARE = 80,
215 TARGET_EXC_BREAKPOINT = 81,
dd0ce8f6 216#endif
67ac9759
JK
217 /* Some signal we don't know about. */
218 TARGET_SIGNAL_UNKNOWN,
219
fcbc95a7
JK
220 /* Use whatever signal we use when one is not specifically specified
221 (for passing to proceed and so on). */
222 TARGET_SIGNAL_DEFAULT,
223
67ac9759
JK
224 /* Last and unused enum value, for sizing arrays, etc. */
225 TARGET_SIGNAL_LAST
226};
227
228struct target_waitstatus {
229 enum target_waitkind kind;
230
4ef1f467 231 /* Forked child pid, execd pathname, exit status or signal number. */
67ac9759
JK
232 union {
233 int integer;
234 enum target_signal sig;
4ef1f467
DT
235 int related_pid;
236 char * execd_pathname;
237 int syscall_id;
67ac9759
JK
238 } value;
239};
240
241/* Return the string for a signal. */
242extern char *target_signal_to_string PARAMS ((enum target_signal));
243
244/* Return the name (SIGHUP, etc.) for a signal. */
245extern char *target_signal_to_name PARAMS ((enum target_signal));
246
247/* Given a name (SIGHUP, etc.), return its signal. */
248enum target_signal target_signal_from_name PARAMS ((char *));
4ef1f467 249
67ac9759 250\f
e8bf33c4
JK
251/* If certain kinds of activity happen, target_wait should perform
252 callbacks. */
253/* Right now we just call (*TARGET_ACTIVITY_FUNCTION) if I/O is possible
254 on TARGET_ACTIVITY_FD. */
255extern int target_activity_fd;
256/* Returns zero to leave the inferior alone, one to interrupt it. */
257extern int (*target_activity_function) PARAMS ((void));
258\f
75af490b
JG
259struct target_ops
260{
261 char *to_shortname; /* Name this target type */
262 char *to_longname; /* Name for printing */
263 char *to_doc; /* Documentation. Does not include trailing
264 newline, and starts with a one-line descrip-
265 tion (probably similar to to_longname). */
266 void (*to_open) PARAMS ((char *, int));
267 void (*to_close) PARAMS ((int));
268 void (*to_attach) PARAMS ((char *, int));
4ef1f467
DT
269 void (*to_post_attach) PARAMS ((int));
270 void (*to_require_attach) PARAMS ((char *, int));
75af490b 271 void (*to_detach) PARAMS ((char *, int));
4ef1f467 272 void (*to_require_detach) PARAMS ((int, char *, int));
67ac9759
JK
273 void (*to_resume) PARAMS ((int, int, enum target_signal));
274 int (*to_wait) PARAMS ((int, struct target_waitstatus *));
4ef1f467 275 void (*to_post_wait) PARAMS ((int, int));
75af490b
JG
276 void (*to_fetch_registers) PARAMS ((int));
277 void (*to_store_registers) PARAMS ((int));
278 void (*to_prepare_to_store) PARAMS ((void));
f1e7bafc
JK
279
280 /* Transfer LEN bytes of memory between GDB address MYADDR and
281 target address MEMADDR. If WRITE, transfer them to the target, else
282 transfer them from the target. TARGET is the target from which we
283 get this function.
284
285 Return value, N, is one of the following:
286
287 0 means that we can't handle this. If errno has been set, it is the
288 error which prevented us from doing it (FIXME: What about bfd_error?).
289
290 positive (call it N) means that we have transferred N bytes
291 starting at MEMADDR. We might be able to handle more bytes
292 beyond this length, but no promises.
293
294 negative (call its absolute value N) means that we cannot
295 transfer right at MEMADDR, but we could transfer at least
296 something at MEMADDR + N. */
297
298 int (*to_xfer_memory) PARAMS ((CORE_ADDR memaddr, char *myaddr,
299 int len, int write,
300 struct target_ops * target));
301
c20c1bdf
JK
302#if 0
303 /* Enable this after 4.12. */
304
305 /* Search target memory. Start at STARTADDR and take LEN bytes of
306 target memory, and them with MASK, and compare to DATA. If they
307 match, set *ADDR_FOUND to the address we found it at, store the data
308 we found at LEN bytes starting at DATA_FOUND, and return. If
309 not, add INCREMENT to the search address and keep trying until
310 the search address is outside of the range [LORANGE,HIRANGE).
311
312 If we don't find anything, set *ADDR_FOUND to (CORE_ADDR)0 and return. */
313 void (*to_search) PARAMS ((int len, char *data, char *mask,
314 CORE_ADDR startaddr, int increment,
315 CORE_ADDR lorange, CORE_ADDR hirange,
316 CORE_ADDR *addr_found, char *data_found));
317
318#define target_search(len, data, mask, startaddr, increment, lorange, hirange, addr_found, data_found) \
e8bf33c4 319 (*current_target.to_search) (len, data, mask, startaddr, increment, \
c20c1bdf
JK
320 lorange, hirange, addr_found, data_found)
321#endif /* 0 */
322
75af490b
JG
323 void (*to_files_info) PARAMS ((struct target_ops *));
324 int (*to_insert_breakpoint) PARAMS ((CORE_ADDR, char *));
325 int (*to_remove_breakpoint) PARAMS ((CORE_ADDR, char *));
326 void (*to_terminal_init) PARAMS ((void));
327 void (*to_terminal_inferior) PARAMS ((void));
328 void (*to_terminal_ours_for_output) PARAMS ((void));
329 void (*to_terminal_ours) PARAMS ((void));
330 void (*to_terminal_info) PARAMS ((char *, int));
331 void (*to_kill) PARAMS ((void));
332 void (*to_load) PARAMS ((char *, int));
333 int (*to_lookup_symbol) PARAMS ((char *, CORE_ADDR *));
334 void (*to_create_inferior) PARAMS ((char *, char *, char **));
4ef1f467
DT
335 void (*to_post_startup_inferior) PARAMS ((int));
336 void (*to_acknowledge_created_inferior) PARAMS ((int));
337 void (*to_clone_and_follow_inferior) PARAMS ((int, int *));
338 void (*to_post_follow_inferior_by_clone) PARAMS ((void));
339 int (*to_insert_fork_catchpoint) PARAMS ((int));
340 int (*to_remove_fork_catchpoint) PARAMS ((int));
341 int (*to_insert_vfork_catchpoint) PARAMS ((int));
342 int (*to_remove_vfork_catchpoint) PARAMS ((int));
343 int (*to_has_forked) PARAMS ((int, int *));
344 int (*to_has_vforked) PARAMS ((int, int *));
345 int (*to_can_follow_vfork_prior_to_exec) PARAMS ((void));
346 void (*to_post_follow_vfork) PARAMS ((int, int, int, int));
347 int (*to_insert_exec_catchpoint) PARAMS ((int));
348 int (*to_remove_exec_catchpoint) PARAMS ((int));
349 int (*to_has_execd) PARAMS ((int, char **));
350 int (*to_reported_exec_events_per_exec_call) PARAMS ((void));
351 int (*to_has_syscall_event) PARAMS ((int, enum target_waitkind *, int *));
352 int (*to_has_exited) PARAMS ((int, int, int *));
75af490b 353 void (*to_mourn_inferior) PARAMS ((void));
836e343b 354 int (*to_can_run) PARAMS ((void));
67ac9759 355 void (*to_notice_signals) PARAMS ((int pid));
cb1709ae 356 int (*to_thread_alive) PARAMS ((int pid));
e8bf33c4 357 void (*to_stop) PARAMS ((void));
7269d43e 358 int (*to_query) PARAMS ((char, char *, char *, int *));
4ef1f467
DT
359 struct symtab_and_line * (*to_enable_exception_callback) PARAMS ((enum exception_event_kind, int));
360 struct exception_event_record * (*to_get_current_exception_event) PARAMS ((void));
361 char * (*to_pid_to_exec_file) PARAMS ((int pid));
362 char * (*to_core_file_to_sym_file) PARAMS ((char *));
75af490b
JG
363 enum strata to_stratum;
364 struct target_ops
e8bf33c4 365 *DONT_USE; /* formerly to_next */
75af490b
JG
366 int to_has_all_memory;
367 int to_has_memory;
368 int to_has_stack;
369 int to_has_registers;
370 int to_has_execution;
3ab2abae 371 int to_has_thread_control; /* control thread execution */
75af490b
JG
372 struct section_table
373 *to_sections;
374 struct section_table
375 *to_sections_end;
376 int to_magic;
377 /* Need sub-structure for target machine related rather than comm related? */
bd5635a1
RP
378};
379
380/* Magic number for checking ops size. If a struct doesn't end with this
381 number, somebody changed the declaration but didn't change all the
382 places that initialize one. */
383
384#define OPS_MAGIC 3840
385
f1e7bafc
JK
386/* The ops structure for our "current" target process. This should
387 never be NULL. If there is no target, it points to the dummy_target. */
bd5635a1 388
e8bf33c4
JK
389extern struct target_ops current_target;
390
391/* An item on the target stack. */
392
393struct target_stack_item
394{
395 struct target_stack_item *next;
396 struct target_ops *target_ops;
397};
398
399/* The target stack. */
400
401extern struct target_stack_item *target_stack;
bd5635a1
RP
402
403/* Define easy words for doing these operations on our current target. */
404
e8bf33c4
JK
405#define target_shortname (current_target.to_shortname)
406#define target_longname (current_target.to_longname)
bd5635a1 407
9136fe49
JK
408/* The open routine takes the rest of the parameters from the command,
409 and (if successful) pushes a new target onto the stack.
410 Targets should supply this routine, if only to provide an error message. */
bd5635a1 411#define target_open(name, from_tty) \
e8bf33c4 412 (*current_target.to_open) (name, from_tty)
bd5635a1
RP
413
414/* Does whatever cleanup is required for a target that we are no longer
415 going to be calling. Argument says whether we are quitting gdb and
416 should not get hung in case of errors, or whether we want a clean
417 termination even if it takes a while. This routine is automatically
418 always called just before a routine is popped off the target stack.
419 Closing file descriptors and freeing memory are typical things it should
420 do. */
421
422#define target_close(quitting) \
e8bf33c4 423 (*current_target.to_close) (quitting)
bd5635a1 424
836e343b
JG
425/* Attaches to a process on the target side. Arguments are as passed
426 to the `attach' command by the user. This routine can be called
427 when the target is not on the target-stack, if the target_can_run
428 routine returns 1; in that case, it must push itself onto the stack.
429 Upon exit, the target should be ready for normal operations, and
430 should be ready to deliver the status of the process immediately
431 (without waiting) to an upcoming target_wait call. */
bd5635a1
RP
432
433#define target_attach(args, from_tty) \
e8bf33c4 434 (*current_target.to_attach) (args, from_tty)
bd5635a1 435
4ef1f467
DT
436/* The target_attach operation places a process under debugger control,
437 and stops the process.
438
439 This operation provides a target-specific hook that allows the
440 necessary bookkeeping to be performed after an attach completes.
441 */
442#define target_post_attach(pid) \
443 (*current_target.to_post_attach) (pid)
444
445/* Attaches to a process on the target side, if not already attached.
446 (If already attached, takes no action.)
447
448 This operation can be used to follow the child process of a fork.
449 On some targets, such child processes of an original inferior process
450 are automatically under debugger control, and thus do not require an
451 actual attach operation. */
452
453#define target_require_attach(args, from_tty) \
454 (*current_target.to_require_attach) (args, from_tty)
455
bd5635a1
RP
456/* Takes a program previously attached to and detaches it.
457 The program may resume execution (some targets do, some don't) and will
458 no longer stop on signals, etc. We better not have left any breakpoints
459 in the program or it'll die when it hits one. ARGS is arguments
460 typed by the user (e.g. a signal to send the process). FROM_TTY
461 says whether to be verbose or not. */
462
f1e7bafc
JK
463extern void
464target_detach PARAMS ((char *, int));
bd5635a1 465
4ef1f467
DT
466/* Detaches from a process on the target side, if not already dettached.
467 (If already detached, takes no action.)
468
469 This operation can be used to follow the parent process of a fork.
470 On some targets, such child processes of an original inferior process
471 are automatically under debugger control, and thus do require an actual
472 detach operation.
473
474 PID is the process id of the child to detach from.
475 ARGS is arguments typed by the user (e.g. a signal to send the process).
476 FROM_TTY says whether to be verbose or not. */
477
478#define target_require_detach(pid, args, from_tty) \
479 (*current_target.to_require_detach) (pid, args, from_tty)
480
f1e7bafc 481/* Resume execution of the target process PID. STEP says whether to
fcbc95a7
JK
482 single-step or to run free; SIGGNAL is the signal to be given to
483 the target, or TARGET_SIGNAL_0 for no signal. The caller may not
484 pass TARGET_SIGNAL_DEFAULT. */
bd5635a1 485
f1e7bafc 486#define target_resume(pid, step, siggnal) \
e8bf33c4 487 (*current_target.to_resume) (pid, step, siggnal)
bd5635a1 488
c20c1bdf
JK
489/* Wait for process pid to do something. Pid = -1 to wait for any pid
490 to do something. Return pid of child, or -1 in case of error;
491 store status through argument pointer STATUS. Note that it is
492 *not* OK to return_to_top_level out of target_wait without popping
493 the debugging target from the stack; GDB isn't prepared to get back
494 to the prompt with a debugging target but without the frame cache,
495 stop_pc, etc., set up. */
bd5635a1 496
67ac9759 497#define target_wait(pid, status) \
e8bf33c4 498 (*current_target.to_wait) (pid, status)
bd5635a1 499
4ef1f467
DT
500/* The target_wait operation waits for a process event to occur, and
501 thereby stop the process.
502
503 On some targets, certain events may happen in sequences. gdb's
504 correct response to any single event of such a sequence may require
505 knowledge of what earlier events in the sequence have been seen.
506
507 This operation provides a target-specific hook that allows the
508 necessary bookkeeping to be performed to track such sequences.
509 */
510
511#define target_post_wait(pid, status) \
512 (*current_target.to_post_wait) (pid, status)
513
75af490b 514/* Fetch register REGNO, or all regs if regno == -1. No result. */
bd5635a1
RP
515
516#define target_fetch_registers(regno) \
e8bf33c4 517 (*current_target.to_fetch_registers) (regno)
bd5635a1
RP
518
519/* Store at least register REGNO, or all regs if REGNO == -1.
f1e7bafc
JK
520 It can store as many registers as it wants to, so target_prepare_to_store
521 must have been previously called. Calls error() if there are problems. */
bd5635a1
RP
522
523#define target_store_registers(regs) \
e8bf33c4 524 (*current_target.to_store_registers) (regs)
bd5635a1
RP
525
526/* Get ready to modify the registers array. On machines which store
527 individual registers, this doesn't need to do anything. On machines
528 which store all the registers in one fell swoop, this makes sure
529 that REGISTERS contains all the registers from the program being
530 debugged. */
531
532#define target_prepare_to_store() \
e8bf33c4 533 (*current_target.to_prepare_to_store) ()
bd5635a1 534
4ad0021e 535extern int target_read_string PARAMS ((CORE_ADDR, char **, int, int *));
75af490b
JG
536
537extern int
abcf64e7
MA
538target_read_memory PARAMS ((CORE_ADDR memaddr, char *myaddr, int len));
539
540extern int
541target_read_memory_section PARAMS ((CORE_ADDR memaddr, char *myaddr, int len,
542 asection *bfd_section));
75af490b 543
f1e7bafc
JK
544extern int
545target_read_memory_partial PARAMS ((CORE_ADDR, char *, int, int *));
546
75af490b
JG
547extern int
548target_write_memory PARAMS ((CORE_ADDR, char *, int));
549
550extern int
551xfer_memory PARAMS ((CORE_ADDR, char *, int, int, struct target_ops *));
552
553extern int
554child_xfer_memory PARAMS ((CORE_ADDR, char *, int, int, struct target_ops *));
555
4ef1f467
DT
556extern char *
557child_pid_to_exec_file PARAMS ((int));
558
559extern char *
560child_core_file_to_sym_file PARAMS ((char *));
561
562extern void
563child_post_attach PARAMS ((int));
564
565extern void
566child_post_wait PARAMS ((int, int));
567
568extern void
569child_post_startup_inferior PARAMS ((int));
570
571extern void
572child_acknowledge_created_inferior PARAMS ((int));
573
574extern void
575child_clone_and_follow_inferior PARAMS ((int, int *));
576
577extern void
578child_post_follow_inferior_by_clone PARAMS ((void));
579
580extern int
581child_insert_fork_catchpoint PARAMS ((int));
582
583extern int
584child_remove_fork_catchpoint PARAMS ((int));
585
586extern int
587child_insert_vfork_catchpoint PARAMS ((int));
588
589extern int
590child_remove_vfork_catchpoint PARAMS ((int));
591
592extern int
593child_has_forked PARAMS ((int, int *));
594
595extern int
596child_has_vforked PARAMS ((int, int *));
597
598extern void
599child_acknowledge_created_inferior PARAMS ((int));
600
601extern int
602child_can_follow_vfork_prior_to_exec PARAMS ((void));
603
604extern void
605child_post_follow_vfork PARAMS ((int, int, int, int));
606
607extern int
608child_insert_exec_catchpoint PARAMS ((int));
609
610extern int
611child_remove_exec_catchpoint PARAMS ((int));
612
613extern int
614child_has_execd PARAMS ((int, char **));
615
616extern int
617child_reported_exec_events_per_exec_call PARAMS ((void));
618
619extern int
620child_has_syscall_event PARAMS ((int, enum target_waitkind *, int *));
621
622extern int
623child_has_exited PARAMS ((int, int, int *));
624
625extern int
626child_thread_alive PARAMS ((int));
627
75af490b
JG
628/* From exec.c */
629
630extern void
631print_section_info PARAMS ((struct target_ops *, bfd *));
bd5635a1
RP
632
633/* Print a line about the current target. */
634
635#define target_files_info() \
e8bf33c4 636 (*current_target.to_files_info) (&current_target)
bd5635a1
RP
637
638/* Insert a breakpoint at address ADDR in the target machine.
639 SAVE is a pointer to memory allocated for saving the
640 target contents. It is guaranteed by the caller to be long enough
641 to save "sizeof BREAKPOINT" bytes. Result is 0 for success, or
642 an errno value. */
643
644#define target_insert_breakpoint(addr, save) \
e8bf33c4 645 (*current_target.to_insert_breakpoint) (addr, save)
bd5635a1
RP
646
647/* Remove a breakpoint at address ADDR in the target machine.
648 SAVE is a pointer to the same save area
649 that was previously passed to target_insert_breakpoint.
650 Result is 0 for success, or an errno value. */
651
652#define target_remove_breakpoint(addr, save) \
e8bf33c4 653 (*current_target.to_remove_breakpoint) (addr, save)
bd5635a1
RP
654
655/* Initialize the terminal settings we record for the inferior,
656 before we actually run the inferior. */
657
658#define target_terminal_init() \
e8bf33c4 659 (*current_target.to_terminal_init) ()
f1e7bafc 660
bd5635a1
RP
661/* Put the inferior's terminal settings into effect.
662 This is preparation for starting or resuming the inferior. */
663
664#define target_terminal_inferior() \
e8bf33c4 665 (*current_target.to_terminal_inferior) ()
bd5635a1
RP
666
667/* Put some of our terminal settings into effect,
668 enough to get proper results from our output,
669 but do not change into or out of RAW mode
670 so that no input is discarded.
671
672 After doing this, either terminal_ours or terminal_inferior
673 should be called to get back to a normal state of affairs. */
674
675#define target_terminal_ours_for_output() \
e8bf33c4 676 (*current_target.to_terminal_ours_for_output) ()
bd5635a1
RP
677
678/* Put our terminal settings into effect.
679 First record the inferior's terminal settings
680 so they can be restored properly later. */
681
682#define target_terminal_ours() \
e8bf33c4 683 (*current_target.to_terminal_ours) ()
bd5635a1
RP
684
685/* Print useful information about our terminal status, if such a thing
686 exists. */
687
688#define target_terminal_info(arg, from_tty) \
e8bf33c4 689 (*current_target.to_terminal_info) (arg, from_tty)
bd5635a1
RP
690
691/* Kill the inferior process. Make it go away. */
692
75af490b 693#define target_kill() \
e8bf33c4 694 (*current_target.to_kill) ()
bd5635a1
RP
695
696/* Load an executable file into the target process. This is expected to
697 not only bring new code into the target process, but also to update
698 GDB's symbol tables to match. */
699
700#define target_load(arg, from_tty) \
e8bf33c4 701 (*current_target.to_load) (arg, from_tty)
bd5635a1 702
bd5635a1
RP
703/* Look up a symbol in the target's symbol table. NAME is the symbol
704 name. ADDRP is a CORE_ADDR * pointing to where the value of the symbol
705 should be returned. The result is 0 if successful, nonzero if the
706 symbol does not exist in the target environment. This function should
707 not call error() if communication with the target is interrupted, since
708 it is called from symbol reading, but should return nonzero, possibly
709 doing a complain(). */
710
711#define target_lookup_symbol(name, addrp) \
e8bf33c4 712 (*current_target.to_lookup_symbol) (name, addrp)
bd5635a1
RP
713
714/* Start an inferior process and set inferior_pid to its pid.
715 EXEC_FILE is the file to run.
716 ALLARGS is a string containing the arguments to the program.
717 ENV is the environment vector to pass. Errors reported with error().
718 On VxWorks and various standalone systems, we ignore exec_file. */
719
720#define target_create_inferior(exec_file, args, env) \
e8bf33c4 721 (*current_target.to_create_inferior) (exec_file, args, env)
bd5635a1 722
4ef1f467
DT
723
724/* Some targets (such as ttrace-based HPUX) don't allow us to request
725 notification of inferior events such as fork and vork immediately
726 after the inferior is created. (This because of how gdb gets an
727 inferior created via invoking a shell to do it. In such a scenario,
728 if the shell init file has commands in it, the shell will fork and
729 exec for each of those commands, and we will see each such fork
730 event. Very bad.)
731
732 Such targets will supply an appropriate definition for this function.
733 */
734#define target_post_startup_inferior(pid) \
735 (*current_target.to_post_startup_inferior) (pid)
736
737/* On some targets, the sequence of starting up an inferior requires
738 some synchronization between gdb and the new inferior process, PID.
739 */
740#define target_acknowledge_created_inferior(pid) \
741 (*current_target.to_acknowledge_created_inferior) (pid)
742
743/* An inferior process has been created via a fork() or similar
744 system call. This function will clone the debugger, then ensure
745 that CHILD_PID is attached to by that debugger.
746
747 FOLLOWED_CHILD is set TRUE on return *for the clone debugger only*,
748 and FALSE otherwise. (The original and clone debuggers can use this
749 to determine which they are, if need be.)
750
751 (This is not a terribly useful feature without a GUI to prevent
752 the two debuggers from competing for shell input.)
753 */
754#define target_clone_and_follow_inferior(child_pid,followed_child) \
755 (*current_target.to_clone_and_follow_inferior) (child_pid, followed_child)
756
757/* This operation is intended to be used as the last in a sequence of
758 steps taken when following both parent and child of a fork. This
759 is used by a clone of the debugger, which will follow the child.
760
761 The original debugger has detached from this process, and the
762 clone has attached to it.
763
764 On some targets, this requires a bit of cleanup to make it work
765 correctly.
766 */
767#define target_post_follow_inferior_by_clone() \
768 (*current_target.to_post_follow_inferior_by_clone) ()
769
770/* On some targets, we can catch an inferior fork or vfork event when it
771 occurs. These functions insert/remove an already-created catchpoint for
772 such events.
773 */
774#define target_insert_fork_catchpoint(pid) \
775 (*current_target.to_insert_fork_catchpoint) (pid)
776
777#define target_remove_fork_catchpoint(pid) \
778 (*current_target.to_remove_fork_catchpoint) (pid)
779
780#define target_insert_vfork_catchpoint(pid) \
781 (*current_target.to_insert_vfork_catchpoint) (pid)
782
783#define target_remove_vfork_catchpoint(pid) \
784 (*current_target.to_remove_vfork_catchpoint) (pid)
785
786/* Returns TRUE if PID has invoked the fork() system call. And,
787 also sets CHILD_PID to the process id of the other ("child")
788 inferior process that was created by that call.
789 */
790#define target_has_forked(pid,child_pid) \
791 (*current_target.to_has_forked) (pid,child_pid)
792
793/* Returns TRUE if PID has invoked the vfork() system call. And,
794 also sets CHILD_PID to the process id of the other ("child")
795 inferior process that was created by that call.
796 */
797#define target_has_vforked(pid,child_pid) \
798 (*current_target.to_has_vforked) (pid,child_pid)
799
800/* Some platforms (such as pre-10.20 HP-UX) don't allow us to do
801 anything to a vforked child before it subsequently calls exec().
802 On such platforms, we say that the debugger cannot "follow" the
803 child until it has vforked.
804
805 This function should be defined to return 1 by those targets
806 which can allow the debugger to immediately follow a vforked
807 child, and 0 if they cannot.
808 */
809#define target_can_follow_vfork_prior_to_exec() \
810 (*current_target.to_can_follow_vfork_prior_to_exec) ()
811
812/* An inferior process has been created via a vfork() system call.
813 The debugger has followed the parent, the child, or both. The
814 process of setting up for that follow may have required some
815 target-specific trickery to track the sequence of reported events.
816 If so, this function should be defined by those targets that
817 require the debugger to perform cleanup or initialization after
818 the vfork follow.
819 */
820#define target_post_follow_vfork(parent_pid,followed_parent,child_pid,followed_child) \
821 (*current_target.to_post_follow_vfork) (parent_pid,followed_parent,child_pid,followed_child)
822
823/* On some targets, we can catch an inferior exec event when it
824 occurs. These functions insert/remove an already-created catchpoint
825 for such events.
826 */
827#define target_insert_exec_catchpoint(pid) \
828 (*current_target.to_insert_exec_catchpoint) (pid)
829
830#define target_remove_exec_catchpoint(pid) \
831 (*current_target.to_remove_exec_catchpoint) (pid)
832
833/* Returns TRUE if PID has invoked a flavor of the exec() system call.
834 And, also sets EXECD_PATHNAME to the pathname of the executable file
835 that was passed to exec(), and is now being executed.
836 */
837#define target_has_execd(pid,execd_pathname) \
838 (*current_target.to_has_execd) (pid,execd_pathname)
839
840/* Returns the number of exec events that are reported when a process
841 invokes a flavor of the exec() system call on this target, if exec
842 events are being reported.
843 */
844#define target_reported_exec_events_per_exec_call() \
845 (*current_target.to_reported_exec_events_per_exec_call) ()
846
847/* Returns TRUE if PID has reported a syscall event. And, also sets
848 KIND to the appropriate TARGET_WAITKIND_, and sets SYSCALL_ID to
849 the unique integer ID of the syscall.
850 */
851#define target_has_syscall_event(pid,kind,syscall_id) \
852 (*current_target.to_has_syscall_event) (pid,kind,syscall_id)
853
854/* Returns TRUE if PID has exited. And, also sets EXIT_STATUS to the
855 exit code of PID, if any.
856 */
857#define target_has_exited(pid,wait_status,exit_status) \
858 (*current_target.to_has_exited) (pid,wait_status,exit_status)
859
860/* The debugger has completed a blocking wait() call. There is now
861 some process event that must be processed. This function should
862 be defined by those targets that require the debugger to perform
863 cleanup or internal state changes in response to the process event.
864 */
865
bd5635a1
RP
866/* The inferior process has died. Do what is right. */
867
868#define target_mourn_inferior() \
e8bf33c4 869 (*current_target.to_mourn_inferior) ()
bd5635a1 870
836e343b
JG
871/* Does target have enough data to do a run or attach command? */
872
873#define target_can_run(t) \
874 ((t)->to_can_run) ()
875
f1e7bafc
JK
876/* post process changes to signal handling in the inferior. */
877
67ac9759 878#define target_notice_signals(pid) \
e8bf33c4
JK
879 (*current_target.to_notice_signals) (pid)
880
cb1709ae
DP
881/* Check to see if a thread is still alive. */
882
883#define target_thread_alive(pid) \
884 (*current_target.to_thread_alive) (pid)
885
e8bf33c4
JK
886/* Make target stop in a continuable fashion. (For instance, under Unix, this
887 should act like SIGSTOP). This function is normally used by GUIs to
888 implement a stop button. */
889
dd0ce8f6 890#define target_stop current_target.to_stop
f1e7bafc 891
7269d43e
FN
892/* Queries the target side for some information. The first argument is a
893 letter specifying the type of the query, which is used to determine who
894 should process it. The second argument is a string that specifies which
895 information is desired and the third is a buffer that carries back the
896 response from the target side. The fourth parameter is the size of the
897 output buffer supplied. */
898
899#define target_query(query_type, query, resp_buffer, bufffer_size) \
900 (*current_target.to_query) (query_type, query, resp_buffer, bufffer_size)
901
4ef1f467
DT
902/* Get the symbol information for a breakpointable routine called when
903 an exception event occurs.
904 Intended mainly for C++, and for those
905 platforms/implementations where such a callback mechanism is available,
906 e.g. HP-UX with ANSI C++ (aCC). Some compilers (e.g. g++) support
907 different mechanisms for debugging exceptions. */
908
909#define target_enable_exception_callback(kind, enable) \
910 (*current_target.to_enable_exception_callback) (kind, enable)
911
912/* Get the current exception event kind -- throw or catch, etc. */
913
914#define target_get_current_exception_event() \
915 (*current_target.to_get_current_exception_event) ()
916
bd5635a1
RP
917/* Pointer to next target in the chain, e.g. a core file and an exec file. */
918
919#define target_next \
e8bf33c4 920 (current_target.to_next)
bd5635a1
RP
921
922/* Does the target include all of memory, or only part of it? This
923 determines whether we look up the target chain for other parts of
924 memory if this target can't satisfy a request. */
925
926#define target_has_all_memory \
e8bf33c4 927 (current_target.to_has_all_memory)
bd5635a1
RP
928
929/* Does the target include memory? (Dummy targets don't.) */
930
931#define target_has_memory \
e8bf33c4 932 (current_target.to_has_memory)
bd5635a1
RP
933
934/* Does the target have a stack? (Exec files don't, VxWorks doesn't, until
935 we start a process.) */
936
937#define target_has_stack \
e8bf33c4 938 (current_target.to_has_stack)
bd5635a1
RP
939
940/* Does the target have registers? (Exec files don't.) */
941
942#define target_has_registers \
e8bf33c4 943 (current_target.to_has_registers)
bd5635a1 944
f1e7bafc
JK
945/* Does the target have execution? Can we make it jump (through
946 hoops), or pop its stack a few times? FIXME: If this is to work that
947 way, it needs to check whether an inferior actually exists.
948 remote-udi.c and probably other targets can be the current target
949 when the inferior doesn't actually exist at the moment. Right now
950 this just tells us whether this target is *capable* of execution. */
bd5635a1
RP
951
952#define target_has_execution \
e8bf33c4 953 (current_target.to_has_execution)
bd5635a1 954
3ab2abae
MS
955/* Can the target support the debugger control of thread execution?
956 a) Can it lock the thread scheduler?
957 b) Can it switch the currently running thread? */
958
959#define target_can_lock_scheduler \
960 (current_target.to_has_thread_control & tc_schedlock)
961
962#define target_can_switch_threads \
963 (current_target.to_has_thread_control & tc_switch)
964
1c95d7ab
JK
965extern void target_link PARAMS ((char *, CORE_ADDR *));
966
f1e7bafc
JK
967/* Converts a process id to a string. Usually, the string just contains
968 `process xyz', but on some systems it may contain
969 `process xyz thread abc'. */
970
971#ifndef target_pid_to_str
972#define target_pid_to_str(PID) \
973 normal_pid_to_str (PID)
974extern char *normal_pid_to_str PARAMS ((int pid));
975#endif
976
4ef1f467
DT
977#ifndef target_tid_to_str
978#define target_tid_to_str(PID) \
979 normal_pid_to_str (PID)
980extern char *normal_pid_to_str PARAMS ((int pid));
981#endif
982
983
cb1709ae
DP
984#ifndef target_new_objfile
985#define target_new_objfile(OBJFILE)
986#endif
987
4ef1f467
DT
988#ifndef target_pid_or_tid_to_str
989#define target_pid_or_tid_to_str(ID) \
990 normal_pid_to_str (ID)
991#endif
992
993/* Attempts to find the pathname of the executable file
994 that was run to create a specified process.
995
996 The process PID must be stopped when this operation is used.
997
998 If the executable file cannot be determined, NULL is returned.
999
1000 Else, a pointer to a character string containing the pathname
1001 is returned. This string should be copied into a buffer by
1002 the client if the string will not be immediately used, or if
1003 it must persist.
1004 */
1005
1006#define target_pid_to_exec_file(pid) \
1007 (current_target.to_pid_to_exec_file) (pid)
1008
cb1709ae
DP
1009/* Hook to call target-dependant code after reading in a new symbol table. */
1010
1011#ifndef TARGET_SYMFILE_POSTREAD
1012#define TARGET_SYMFILE_POSTREAD(OBJFILE)
1013#endif
1014
1015/* Hook to call target dependant code just after inferior target process has
1016 started. */
1017
1018#ifndef TARGET_CREATE_INFERIOR_HOOK
1019#define TARGET_CREATE_INFERIOR_HOOK(PID)
1020#endif
1021
e8bf33c4
JK
1022/* Hardware watchpoint interfaces. */
1023
1024/* Returns non-zero if we were stopped by a hardware watchpoint (memory read or
1025 write). */
1026
1027#ifndef STOPPED_BY_WATCHPOINT
1028#define STOPPED_BY_WATCHPOINT(w) 0
1029#endif
1030
4ef1f467
DT
1031/* HP-UX supplies these operations, which respectively disable and enable
1032 the memory page-protections that are used to implement hardware watchpoints
1033 on that platform. See wait_for_inferior's use of these.
1034 */
1035#if !defined(TARGET_DISABLE_HW_WATCHPOINTS)
1036#define TARGET_DISABLE_HW_WATCHPOINTS(pid)
1037#endif
1038
1039#if !defined(TARGET_ENABLE_HW_WATCHPOINTS)
1040#define TARGET_ENABLE_HW_WATCHPOINTS(pid)
1041#endif
1042
cb1709ae
DP
1043/* Provide defaults for systems that don't support hardware watchpoints. */
1044
1045#ifndef TARGET_HAS_HARDWARE_WATCHPOINTS
1046
1047/* Returns non-zero if we can set a hardware watchpoint of type TYPE. TYPE is
1048 one of bp_hardware_watchpoint, bp_read_watchpoint, bp_write_watchpoint, or
1049 bp_hardware_breakpoint. CNT is the number of such watchpoints used so far
1050 (including this one?). OTHERTYPE is who knows what... */
1051
1052#define TARGET_CAN_USE_HARDWARE_WATCHPOINT(TYPE,CNT,OTHERTYPE) 0
1053
4ef1f467
DT
1054#if !defined(TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT)
1055#define TARGET_REGION_SIZE_OK_FOR_HW_WATCHPOINT(byte_count) \
1056 (LONGEST)(byte_count) <= REGISTER_SIZE
1057#endif
1058
1059/* However, some addresses may not be profitable to use hardware to watch,
1060 or may be difficult to understand when the addressed object is out of
1061 scope, and hence should be unwatched. On some targets, this may have
1062 severe performance penalties, such that we might as well use regular
1063 watchpoints, and save (possibly precious) hardware watchpoints for other
1064 locations.
1065 */
1066#if !defined(TARGET_RANGE_PROFITABLE_FOR_HW_WATCHPOINT)
1067#define TARGET_RANGE_PROFITABLE_FOR_HW_WATCHPOINT(pid,start,len) 0
1068#endif
1069
1070
abcf64e7
MA
1071/* Set/clear a hardware watchpoint starting at ADDR, for LEN bytes. TYPE is 0
1072 for write, 1 for read, and 2 for read/write accesses. Returns 0 for
1073 success, non-zero for failure. */
cb1709ae
DP
1074
1075#define target_remove_watchpoint(ADDR,LEN,TYPE) -1
1076#define target_insert_watchpoint(ADDR,LEN,TYPE) -1
1077
1078#endif /* TARGET_HAS_HARDWARE_WATCHPOINTS */
1079
1080#ifndef target_insert_hw_breakpoint
1081#define target_remove_hw_breakpoint(ADDR,SHADOW) -1
1082#define target_insert_hw_breakpoint(ADDR,SHADOW) -1
1083#endif
1084
1085#ifndef target_stopped_data_address
1086#define target_stopped_data_address() 0
1087#endif
1088
1089/* If defined, then we need to decr pc by this much after a hardware break-
1090 point. Presumably this overrides DECR_PC_AFTER_BREAK... */
1091
1092#ifndef DECR_PC_AFTER_HW_BREAK
1093#define DECR_PC_AFTER_HW_BREAK 0
1094#endif
1095
4ef1f467
DT
1096/* Sometimes gdb may pick up what appears to be a valid target address
1097 from a minimal symbol, but the value really means, essentially,
1098 "This is an index into a table which is populated when the inferior
1099 is run. Therefore, do not attempt to use this as a PC."
1100 */
1101#if !defined(PC_REQUIRES_RUN_BEFORE_USE)
1102#define PC_REQUIRES_RUN_BEFORE_USE(pc) (0)
1103#endif
1104
1105/* This will only be defined by a target that supports catching vfork events,
1106 such as HP-UX.
1107
1108 On some targets (such as HP-UX 10.20 and earlier), resuming a newly vforked
1109 child process after it has exec'd, causes the parent process to resume as
1110 well. To prevent the parent from running spontaneously, such targets should
1111 define this to a function that prevents that from happening.
1112 */
1113#if !defined(ENSURE_VFORKING_PARENT_REMAINS_STOPPED)
1114#define ENSURE_VFORKING_PARENT_REMAINS_STOPPED(PID) (0)
1115#endif
1116
1117/* This will only be defined by a target that supports catching vfork events,
1118 such as HP-UX.
1119
1120 On some targets (such as HP-UX 10.20 and earlier), a newly vforked child
1121 process must be resumed when it delivers its exec event, before the parent
1122 vfork event will be delivered to us.
1123 */
1124#if !defined(RESUME_EXECD_VFORKING_CHILD_TO_GET_PARENT_VFORK)
1125#define RESUME_EXECD_VFORKING_CHILD_TO_GET_PARENT_VFORK() (0)
1126#endif
1127
bd5635a1
RP
1128/* Routines for maintenance of the target structures...
1129
1130 add_target: Add a target to the list of all possible targets.
1131
1132 push_target: Make this target the top of the stack of currently used
1133 targets, within its particular stratum of the stack. Result
1134 is 0 if now atop the stack, nonzero if not on top (maybe
1135 should warn user).
1136
1137 unpush_target: Remove this from the stack of currently used targets,
1138 no matter where it is on the list. Returns 0 if no
1139 change, 1 if removed from stack.
1140
1141 pop_target: Remove the top thing on the stack of current targets. */
1142
75af490b
JG
1143extern void
1144add_target PARAMS ((struct target_ops *));
1145
1146extern int
1147push_target PARAMS ((struct target_ops *));
1148
1149extern int
1150unpush_target PARAMS ((struct target_ops *));
1151
1152extern void
1153target_preopen PARAMS ((int));
1154
1155extern void
1156pop_target PARAMS ((void));
1157
1158/* Struct section_table maps address ranges to file sections. It is
1159 mostly used with BFD files, but can be used without (e.g. for handling
1160 raw disks, or files not in formats handled by BFD). */
1161
1162struct section_table {
1163 CORE_ADDR addr; /* Lowest address in section */
1164 CORE_ADDR endaddr; /* 1+highest address in section */
82a2edfb 1165
1c95d7ab 1166 sec_ptr the_bfd_section;
82a2edfb 1167
75af490b
JG
1168 bfd *bfd; /* BFD file pointer */
1169};
1170
1171/* Builds a section table, given args BFD, SECTABLE_PTR, SECEND_PTR.
1172 Returns 0 if OK, 1 on error. */
1173
1174extern int
1175build_section_table PARAMS ((bfd *, struct section_table **,
1176 struct section_table **));
1177
75af490b
JG
1178/* From mem-break.c */
1179
4ef1f467 1180extern int memory_remove_breakpoint PARAMS ((CORE_ADDR, char *));
75af490b 1181
4ef1f467
DT
1182extern int memory_insert_breakpoint PARAMS ((CORE_ADDR, char *));
1183
1184extern breakpoint_from_pc_fn memory_breakpoint_from_pc;
1185#ifndef BREAKPOINT_FROM_PC
1186#define BREAKPOINT_FROM_PC(pcptr, lenptr) memory_breakpoint_from_pc (pcptr, lenptr)
1187#endif
75af490b 1188
abcf64e7 1189
dcc8abce
JG
1190/* From target.c */
1191
abcf64e7
MA
1192extern void
1193initialize_targets PARAMS ((void));
1194
1195extern void
dcc8abce
JG
1196noprocess PARAMS ((void));
1197
abcf64e7 1198extern void
836e343b
JG
1199find_default_attach PARAMS ((char *, int));
1200
4ef1f467
DT
1201void
1202find_default_require_attach PARAMS ((char *, int));
1203
1204void
1205find_default_require_detach PARAMS ((int, char *, int));
1206
abcf64e7 1207extern void
836e343b
JG
1208find_default_create_inferior PARAMS ((char *, char *, char **));
1209
4ef1f467
DT
1210void
1211find_default_clone_and_follow_inferior PARAMS ((int, int *));
1212
abcf64e7 1213extern struct target_ops *
f1e7bafc
JK
1214find_core_target PARAMS ((void));
1215\f
67ac9759
JK
1216/* Stuff that should be shared among the various remote targets. */
1217
1218/* Debugging level. 0 is off, and non-zero values mean to print some debug
1219 information (higher values, more information). */
1220extern int remote_debug;
1221
c20c1bdf 1222/* Speed in bits per second, or -1 which means don't mess with the speed. */
67ac9759 1223extern int baud_rate;
cb1709ae
DP
1224/* Timeout limit for response from target. */
1225extern int remote_timeout;
abcf64e7
MA
1226
1227extern asection *target_memory_bfd_section;
67ac9759
JK
1228\f
1229/* Functions for helping to write a native target. */
1230
1231/* This is for native targets which use a unix/POSIX-style waitstatus. */
1232extern void store_waitstatus PARAMS ((struct target_waitstatus *, int));
1233
1234/* Convert between host signal numbers and enum target_signal's. */
1235extern enum target_signal target_signal_from_host PARAMS ((int));
1236extern int target_signal_to_host PARAMS ((enum target_signal));
1237
e8bf33c4
JK
1238/* Convert from a number used in a GDB command to an enum target_signal. */
1239extern enum target_signal target_signal_from_command PARAMS ((int));
1240
abcf64e7
MA
1241/* Any target can call this to switch to remote protocol (in remote.c). */
1242extern void push_remote_target PARAMS ((char *name, int from_tty));
1243\f
1244/* Imported from machine dependent code */
1245
4ef1f467
DT
1246#ifndef SOFTWARE_SINGLE_STEP_P
1247#define SOFTWARE_SINGLE_STEP_P 0
1248#define SOFTWARE_SINGLE_STEP(sig,bp_p) abort ()
1249#endif /* SOFTWARE_SINGLE_STEP_P */
1250
1251/* Blank target vector entries are initialized to target_ignore. */
1252void target_ignore PARAMS ((void));
1253
1254/* Macro for getting target's idea of a frame pointer.
1255 FIXME: GDB's whole scheme for dealing with "frames" and
1256 "frame pointers" needs a serious shakedown. */
1257#ifndef TARGET_VIRTUAL_FRAME_POINTER
1258#define TARGET_VIRTUAL_FRAME_POINTER(ADDR, REGP, OFFP) \
1259 do { *(REGP) = FP_REGNUM; *(OFFP) = 0; } while (0)
1260#endif /* TARGET_VIRTUAL_FRAME_POINTER */
abcf64e7 1261
75af490b 1262#endif /* !defined (TARGET_H) */
This page took 0.427749 seconds and 4 git commands to generate.