Fix typos.
[deliverable/binutils-gdb.git] / gdb / inferior.h
CommitLineData
c906108c
SS
1/* Variables that describe the inferior process running under GDB:
2 Where it is, why it stopped, and how to step it.
3 Copyright 1986, 1989, 1992, 1996, 1998 Free Software Foundation, Inc.
4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
c906108c 11
c5aa993b
JM
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
c906108c 16
c5aa993b
JM
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
c906108c
SS
21
22#if !defined (INFERIOR_H)
23#define INFERIOR_H 1
24
25/* For bpstat. */
26#include "breakpoint.h"
27
28/* For enum target_signal. */
29#include "target.h"
30
7a292a7a 31/* Structure in which to save the status of the inferior. Create/Save
c906108c
SS
32 through "save_inferior_status", restore through
33 "restore_inferior_status".
7a292a7a 34
c906108c
SS
35 This pair of routines should be called around any transfer of
36 control to the inferior which you don't want showing up in your
37 control variables. */
38
7a292a7a 39struct inferior_status;
7a292a7a 40
a14ed312 41extern struct inferior_status *save_inferior_status (int);
7a292a7a 42
a14ed312 43extern void restore_inferior_status (struct inferior_status *);
7a292a7a 44
74b7792f
AC
45extern struct cleanup *make_cleanup_restore_inferior_status (struct inferior_status *);
46
a14ed312 47extern void discard_inferior_status (struct inferior_status *);
7a292a7a 48
a14ed312
KB
49extern void write_inferior_status_register (struct inferior_status
50 *inf_status, int regno,
51 LONGEST val);
c906108c
SS
52
53/* This macro gives the number of registers actually in use by the
54 inferior. This may be less than the total number of registers,
fcdc5976
MS
55 perhaps depending on the actual CPU in use or program being run.
56 FIXME: This could be replaced by the new MULTI_ARCH capability. */
c906108c
SS
57
58#ifndef ARCH_NUM_REGS
59#define ARCH_NUM_REGS NUM_REGS
60#endif
61
fcdc5976
MS
62/* This macro gives the number of pseudo-registers that live in the
63 register namespace but do not get fetched or stored on the target.
64 These pseudo-registers may be aliases for other registers,
65 combinations of other registers, or they may be computed by GDB.
66 FIXME: move into gdbarch.[ch] */
67#ifndef NUM_PSEUDO_REGS
68#define NUM_PSEUDO_REGS 0
69#endif
70
71/* This function is called when the value of a pseudo-register needs
72 to be updated. Typically it will be defined on a per-architecture
73 basis. FIXME: move into gdbarch.[ch]. */
74#ifndef ARCH_FETCH_PSEUDO_REGISTERS
75#define ARCH_FETCH_PSEUDO_REGISTERS(REGNUM) /* no-op */
76#endif
77
78/* This function is called when the value of a pseudo-register needs
79 to be set or stored. Typically it will be defined on a per-architecture
80 basis. FIXME: move into gdbarch.[ch]. */
81#ifndef ARCH_STORE_PSEUDO_REGISTERS
82#define ARCH_STORE_PSEUDO_REGISTERS(REGNUM) /* no-op */
83#endif
84
a14ed312 85extern void set_sigint_trap (void);
c906108c 86
a14ed312 87extern void clear_sigint_trap (void);
c906108c 88
a14ed312 89extern void set_sigio_trap (void);
c906108c 90
a14ed312 91extern void clear_sigio_trap (void);
c906108c
SS
92
93/* File name for default use for standard in/out in the inferior. */
94
95extern char *inferior_io_terminal;
96
97/* Pid of our debugged inferior, or 0 if no inferior now. */
98
99extern int inferior_pid;
100
43ff13b4
JM
101/* Is the inferior running right now, as a result of a 'run&',
102 'continue&' etc command? This is used in asycn gdb to determine
103 whether a command that the user enters while the target is running
104 is allowed or not. */
105extern int target_executing;
106
107/* Are we simulating synchronous execution? This is used in async gdb
108 to implement the 'run', 'continue' etc commands, which will not
109 redisplay the prompt until the execution is actually over. */
110extern int sync_execution;
111
c906108c
SS
112/* This is only valid when inferior_pid is non-zero.
113
114 If this is 0, then exec events should be noticed and responded to
115 by the debugger (i.e., be reported to the user).
116
117 If this is > 0, then that many subsequent exec events should be
118 ignored (i.e., not be reported to the user).
c5aa993b 119 */
c906108c
SS
120extern int inferior_ignoring_startup_exec_events;
121
122/* This is only valid when inferior_ignoring_startup_exec_events is
123 zero.
124
125 Some targets (stupidly) report more than one exec event per actual
126 call to an event() system call. If only the last such exec event
127 need actually be noticed and responded to by the debugger (i.e.,
128 be reported to the user), then this is the number of "leading"
129 exec events which should be ignored.
c5aa993b 130 */
c906108c
SS
131extern int inferior_ignoring_leading_exec_events;
132
133/* Inferior environment. */
134
135extern struct environ *inferior_environ;
136
7a292a7a
SS
137/* Character array containing an image of the inferior programs'
138 registers. */
c906108c 139
7a292a7a 140extern char *registers;
c906108c 141
7a292a7a
SS
142/* Character array containing the current state of each register
143 (unavailable<0, valid=0, invalid>0). */
c906108c 144
7a292a7a 145extern signed char *register_valid;
c906108c 146
a14ed312 147extern void clear_proceed_status (void);
c906108c 148
a14ed312 149extern void proceed (CORE_ADDR, enum target_signal, int);
c906108c 150
a14ed312 151extern void kill_inferior (void);
c906108c 152
a14ed312 153extern void generic_mourn_inferior (void);
c906108c 154
a14ed312 155extern void terminal_ours (void);
c906108c 156
a14ed312 157extern int run_stack_dummy (CORE_ADDR, char *);
c906108c 158
a14ed312 159extern CORE_ADDR read_pc (void);
c906108c 160
a14ed312 161extern CORE_ADDR read_pc_pid (int);
c906108c 162
a14ed312 163extern CORE_ADDR generic_target_read_pc (int);
0f71a2f6 164
a14ed312 165extern void write_pc (CORE_ADDR);
c906108c 166
a14ed312 167extern void write_pc_pid (CORE_ADDR, int);
c906108c 168
a14ed312 169extern void generic_target_write_pc (CORE_ADDR, int);
0f71a2f6 170
a14ed312 171extern CORE_ADDR read_sp (void);
c906108c 172
a14ed312 173extern CORE_ADDR generic_target_read_sp (void);
0f71a2f6 174
a14ed312 175extern void write_sp (CORE_ADDR);
c906108c 176
a14ed312 177extern void generic_target_write_sp (CORE_ADDR);
0f71a2f6 178
a14ed312 179extern CORE_ADDR read_fp (void);
c906108c 180
a14ed312 181extern CORE_ADDR generic_target_read_fp (void);
0f71a2f6 182
a14ed312 183extern void write_fp (CORE_ADDR);
c906108c 184
a14ed312 185extern void generic_target_write_fp (CORE_ADDR);
0f71a2f6 186
ac2e2ef7 187extern CORE_ADDR unsigned_pointer_to_address (struct type *type, void *buf);
4478b372 188
ac2e2ef7
AC
189extern void unsigned_address_to_pointer (struct type *type, void *buf,
190 CORE_ADDR addr);
191extern CORE_ADDR signed_pointer_to_address (struct type *type, void *buf);
192extern void address_to_signed_pointer (struct type *type, void *buf,
193 CORE_ADDR addr);
4478b372 194
a14ed312 195extern void wait_for_inferior (void);
c906108c 196
a14ed312 197extern void fetch_inferior_event (void *);
43ff13b4 198
a14ed312 199extern void init_wait_for_inferior (void);
c906108c 200
a14ed312 201extern void close_exec_file (void);
c906108c 202
a14ed312 203extern void reopen_exec_file (void);
c906108c
SS
204
205/* The `resume' routine should only be called in special circumstances.
206 Normally, use `proceed', which handles a lot of bookkeeping. */
207
a14ed312 208extern void resume (int, enum target_signal);
c906108c
SS
209
210/* From misc files */
211
a14ed312 212extern void store_inferior_registers (int);
c906108c 213
a14ed312 214extern void fetch_inferior_registers (int);
c906108c 215
a14ed312 216extern void solib_create_inferior_hook (void);
c906108c 217
a14ed312 218extern void child_terminal_info (char *, int);
c906108c 219
a14ed312 220extern void term_info (char *, int);
c906108c 221
a14ed312 222extern void terminal_ours_for_output (void);
c906108c 223
a14ed312 224extern void terminal_inferior (void);
c906108c 225
a14ed312 226extern void terminal_init_inferior (void);
c906108c 227
a14ed312 228extern void terminal_init_inferior_with_pgrp (int pgrp);
c906108c
SS
229
230/* From infptrace.c or infttrace.c */
231
a14ed312 232extern int attach (int);
c906108c
SS
233
234#if !defined(REQUIRE_ATTACH)
235#define REQUIRE_ATTACH attach
236#endif
237
238#if !defined(REQUIRE_DETACH)
239#define REQUIRE_DETACH(pid,siggnal) detach (siggnal)
240#endif
241
a14ed312 242extern void detach (int);
c906108c 243
7a292a7a 244/* PTRACE method of waiting for inferior process. */
a14ed312 245int ptrace_wait (int, int *);
c906108c 246
a14ed312 247extern void child_resume (int, int, enum target_signal);
c906108c
SS
248
249#ifndef PTRACE_ARG3_TYPE
250#define PTRACE_ARG3_TYPE int /* Correct definition for most systems. */
251#endif
252
a14ed312 253extern int call_ptrace (int, int, PTRACE_ARG3_TYPE, int);
c906108c 254
a14ed312 255extern void pre_fork_inferior (void);
c906108c
SS
256
257/* From procfs.c */
258
a14ed312 259extern int proc_iterate_over_mappings (int (*)(int, CORE_ADDR));
c906108c 260
a14ed312 261extern int procfs_first_available (void);
c906108c 262
c906108c
SS
263/* From fork-child.c */
264
a14ed312
KB
265extern void fork_inferior (char *, char *, char **,
266 void (*)(void),
267 void (*)(int), void (*)(void), char *);
c906108c
SS
268
269
a14ed312 270extern void clone_and_follow_inferior (int, int *);
c906108c 271
a14ed312 272extern void startup_inferior (int);
c906108c
SS
273
274/* From inflow.c */
275
a14ed312 276extern void new_tty_prefork (char *);
c906108c 277
a14ed312 278extern int gdb_has_a_terminal (void);
c906108c
SS
279
280/* From infrun.c */
281
a14ed312 282extern void start_remote (void);
c906108c 283
a14ed312 284extern void normal_stop (void);
c906108c 285
a14ed312 286extern int signal_stop_state (int);
c906108c 287
a14ed312 288extern int signal_print_state (int);
c906108c 289
a14ed312 290extern int signal_pass_state (int);
c906108c 291
a14ed312 292extern int signal_stop_update (int, int);
d4f3574e 293
a14ed312 294extern int signal_print_update (int, int);
d4f3574e 295
a14ed312 296extern int signal_pass_update (int, int);
d4f3574e 297
c906108c
SS
298/* From infcmd.c */
299
a14ed312 300extern void tty_command (char *, int);
c906108c 301
a14ed312 302extern void attach_command (char *, int);
c906108c
SS
303
304/* Last signal that the inferior received (why it stopped). */
305
306extern enum target_signal stop_signal;
307
308/* Address at which inferior stopped. */
309
310extern CORE_ADDR stop_pc;
311
312/* Chain containing status of breakpoint(s) that we have stopped at. */
313
314extern bpstat stop_bpstat;
315
316/* Flag indicating that a command has proceeded the inferior past the
317 current breakpoint. */
318
319extern int breakpoint_proceeded;
320
321/* Nonzero if stopped due to a step command. */
322
323extern int stop_step;
324
325/* Nonzero if stopped due to completion of a stack dummy routine. */
326
327extern int stop_stack_dummy;
328
329/* Nonzero if program stopped due to a random (unexpected) signal in
330 inferior process. */
331
332extern int stopped_by_random_signal;
333
334/* Range to single step within.
335 If this is nonzero, respond to a single-step signal
336 by continuing to step if the pc is in this range.
337
338 If step_range_start and step_range_end are both 1, it means to step for
339 a single instruction (FIXME: it might clean up wait_for_inferior in a
340 minor way if this were changed to the address of the instruction and
341 that address plus one. But maybe not.). */
342
343extern CORE_ADDR step_range_start; /* Inclusive */
c5aa993b 344extern CORE_ADDR step_range_end; /* Exclusive */
c906108c
SS
345
346/* Stack frame address as of when stepping command was issued.
347 This is how we know when we step into a subroutine call,
348 and how to set the frame for the breakpoint used to step out. */
349
350extern CORE_ADDR step_frame_address;
351
352/* Our notion of the current stack pointer. */
353
354extern CORE_ADDR step_sp;
355
356/* 1 means step over all subroutine calls.
357 -1 means step over calls to undebuggable functions. */
358
359extern int step_over_calls;
360
361/* If stepping, nonzero means step count is > 1
362 so don't print frame next time inferior stops
363 if it stops due to stepping. */
364
365extern int step_multi;
366
367/* Nonzero means expecting a trap and caller will handle it themselves.
368 It is used after attach, due to attaching to a process;
369 when running in the shell before the child program has been exec'd;
370 and when running some kinds of remote stuff (FIXME?). */
371
372extern int stop_soon_quietly;
373
374/* Nonzero if proceed is being used for a "finish" command or a similar
375 situation when stop_registers should be saved. */
376
377extern int proceed_to_finish;
378
379/* Save register contents here when about to pop a stack dummy frame,
380 if-and-only-if proceed_to_finish is set.
381 Thus this contains the return value from the called function (assuming
382 values are returned in a register). */
383
7a292a7a 384extern char *stop_registers;
c906108c
SS
385
386/* Nonzero if the child process in inferior_pid was attached rather
387 than forked. */
388
389extern int attach_flag;
390\f
391/* Sigtramp is a routine that the kernel calls (which then calls the
392 signal handler). On most machines it is a library routine that
393 is linked into the executable.
394
395 This macro, given a program counter value and the name of the
396 function in which that PC resides (which can be null if the
397 name is not known), returns nonzero if the PC and name show
398 that we are in sigtramp.
399
400 On most machines just see if the name is sigtramp (and if we have
401 no name, assume we are not in sigtramp). */
402#if !defined (IN_SIGTRAMP)
403#if defined (SIGTRAMP_START)
404#define IN_SIGTRAMP(pc, name) \
405 ((pc) >= SIGTRAMP_START(pc) \
406 && (pc) < SIGTRAMP_END(pc) \
407 )
408#else
409#define IN_SIGTRAMP(pc, name) \
410 (name && STREQ ("_sigtramp", name))
411#endif
412#endif
413\f
414/* Possible values for CALL_DUMMY_LOCATION. */
415#define ON_STACK 1
416#define BEFORE_TEXT_END 2
417#define AFTER_TEXT_END 3
418#define AT_ENTRY_POINT 4
419
7a292a7a
SS
420#if !defined (USE_GENERIC_DUMMY_FRAMES)
421#define USE_GENERIC_DUMMY_FRAMES 0
422#endif
423
c906108c
SS
424#if !defined (CALL_DUMMY_LOCATION)
425#define CALL_DUMMY_LOCATION ON_STACK
426#endif /* No CALL_DUMMY_LOCATION. */
427
7a292a7a 428#if !defined (CALL_DUMMY_ADDRESS)
11cf8741 429#define CALL_DUMMY_ADDRESS() (internal_error ("CALL_DUMMY_ADDRESS"), 0)
7a292a7a
SS
430#endif
431#if !defined (CALL_DUMMY_START_OFFSET)
11cf8741 432#define CALL_DUMMY_START_OFFSET (internal_error ("CALL_DUMMY_START_OFFSET"), 0)
7a292a7a
SS
433#endif
434#if !defined (CALL_DUMMY_BREAKPOINT_OFFSET)
435#define CALL_DUMMY_BREAKPOINT_OFFSET_P (0)
11cf8741 436#define CALL_DUMMY_BREAKPOINT_OFFSET (internal_error ("CALL_DUMMY_BREAKPOINT_OFFSET"), 0)
7a292a7a
SS
437#endif
438#if !defined CALL_DUMMY_BREAKPOINT_OFFSET_P
439#define CALL_DUMMY_BREAKPOINT_OFFSET_P (1)
440#endif
441#if !defined (CALL_DUMMY_LENGTH)
11cf8741 442#define CALL_DUMMY_LENGTH (internal_error ("CALL_DUMMY_LENGTH"), 0)
7a292a7a
SS
443#endif
444
445#if defined (CALL_DUMMY_STACK_ADJUST)
446#if !defined (CALL_DUMMY_STACK_ADJUST_P)
447#define CALL_DUMMY_STACK_ADJUST_P (1)
448#endif
449#endif
450#if !defined (CALL_DUMMY_STACK_ADJUST)
11cf8741 451#define CALL_DUMMY_STACK_ADJUST (internal_error ("CALL_DUMMY_STACK_ADJUST"), 0)
7a292a7a
SS
452#endif
453#if !defined (CALL_DUMMY_STACK_ADJUST_P)
454#define CALL_DUMMY_STACK_ADJUST_P (0)
455#endif
456
ba886e9d
AC
457/* FIXME: cagney/2000-04-17: gdbarch should manage this. The default
458 shouldn't be necessary. */
459
7a292a7a
SS
460#if !defined (CALL_DUMMY_P)
461#if defined (CALL_DUMMY)
462#define CALL_DUMMY_P 1
463#else
464#define CALL_DUMMY_P 0
465#endif
466#endif
467
7a292a7a 468#if !defined PUSH_DUMMY_FRAME
11cf8741 469#define PUSH_DUMMY_FRAME (internal_error ("PUSH_DUMMY_FRAME"), 0)
7a292a7a
SS
470#endif
471
472#if !defined FIX_CALL_DUMMY
11cf8741 473#define FIX_CALL_DUMMY(a1,a2,a3,a4,a5,a6,a7) (internal_error ("FIX_CALL_DUMMY"), 0)
7a292a7a
SS
474#endif
475
476#if !defined STORE_STRUCT_RETURN
11cf8741 477#define STORE_STRUCT_RETURN(a1,a2) (internal_error ("STORE_STRUCT_RETURN"), 0)
7a292a7a
SS
478#endif
479
480
481/* Are we in a call dummy? */
482
a14ed312
KB
483extern int pc_in_call_dummy_before_text_end (CORE_ADDR pc, CORE_ADDR sp,
484 CORE_ADDR frame_address);
0f71a2f6 485#if !GDB_MULTI_ARCH
7a292a7a
SS
486#if !defined (PC_IN_CALL_DUMMY) && CALL_DUMMY_LOCATION == BEFORE_TEXT_END
487#define PC_IN_CALL_DUMMY(pc, sp, frame_address) pc_in_call_dummy_before_text_end (pc, sp, frame_address)
c906108c 488#endif /* Before text_end. */
0f71a2f6 489#endif
c906108c 490
a14ed312
KB
491extern int pc_in_call_dummy_after_text_end (CORE_ADDR pc, CORE_ADDR sp,
492 CORE_ADDR frame_address);
0f71a2f6 493#if !GDB_MULTI_ARCH
7a292a7a 494#if !defined (PC_IN_CALL_DUMMY) && CALL_DUMMY_LOCATION == AFTER_TEXT_END
c5aa993b 495#define PC_IN_CALL_DUMMY(pc, sp, frame_address) pc_in_call_dummy_after_text_end (pc, sp, frame_address)
7a292a7a 496#endif
0f71a2f6 497#endif
7a292a7a 498
a14ed312
KB
499extern int pc_in_call_dummy_on_stack (CORE_ADDR pc, CORE_ADDR sp,
500 CORE_ADDR frame_address);
0f71a2f6 501#if !GDB_MULTI_ARCH
7a292a7a
SS
502#if !defined (PC_IN_CALL_DUMMY) && CALL_DUMMY_LOCATION == ON_STACK
503#define PC_IN_CALL_DUMMY(pc, sp, frame_address) pc_in_call_dummy_on_stack (pc, sp, frame_address)
504#endif
0f71a2f6 505#endif
7a292a7a 506
a14ed312
KB
507extern int pc_in_call_dummy_at_entry_point (CORE_ADDR pc, CORE_ADDR sp,
508 CORE_ADDR frame_address);
0f71a2f6 509#if !GDB_MULTI_ARCH
7a292a7a
SS
510#if !defined (PC_IN_CALL_DUMMY) && CALL_DUMMY_LOCATION == AT_ENTRY_POINT
511#define PC_IN_CALL_DUMMY(pc, sp, frame_address) pc_in_call_dummy_at_entry_point (pc, sp, frame_address)
512#endif
0f71a2f6 513#endif
c906108c
SS
514
515/* It's often not enough for our clients to know whether the PC is merely
516 somewhere within the call dummy. They may need to know whether the
517 call dummy has actually completed. (For example, wait_for_inferior
518 wants to know when it should truly stop because the call dummy has
519 completed. If we're single-stepping because of slow watchpoints,
520 then we may find ourselves stopped at the entry of the call dummy,
521 and want to continue stepping until we reach the end.)
522
523 Note that this macro is intended for targets (like HP-UX) which
524 require more than a single breakpoint in their call dummies, and
525 therefore cannot use the CALL_DUMMY_BREAKPOINT_OFFSET mechanism.
526
527 If a target does define CALL_DUMMY_BREAKPOINT_OFFSET, then this
528 default implementation of CALL_DUMMY_HAS_COMPLETED is sufficient.
529 Else, a target may wish to supply an implementation that works in
530 the presense of multiple breakpoints in its call dummy.
c5aa993b 531 */
c906108c
SS
532#if !defined(CALL_DUMMY_HAS_COMPLETED)
533#define CALL_DUMMY_HAS_COMPLETED(pc, sp, frame_address) \
534 PC_IN_CALL_DUMMY((pc), (sp), (frame_address))
535#endif
536
537/* If STARTUP_WITH_SHELL is set, GDB's "run"
538 will attempts to start up the debugee under a shell.
539 This is in order for argument-expansion to occur. E.g.,
540 (gdb) run *
541 The "*" gets expanded by the shell into a list of files.
542 While this is a nice feature, it turns out to interact badly
543 with some of the catch-fork/catch-exec features we have added.
544 In particular, if the shell does any fork/exec's before
545 the exec of the target program, that can confuse GDB.
546 To disable this feature, set STARTUP_WITH_SHELL to 0.
547 To enable this feature, set STARTUP_WITH_SHELL to 1.
548 The catch-exec traps expected during start-up will
549 be 1 if target is not started up with a shell, 2 if it is.
550 - RT
551 If you disable this, you need to decrement
552 START_INFERIOR_TRAPS_EXPECTED in tm.h. */
553#define STARTUP_WITH_SHELL 1
554#if !defined(START_INFERIOR_TRAPS_EXPECTED)
555#define START_INFERIOR_TRAPS_EXPECTED 2
556#endif
557#endif /* !defined (INFERIOR_H) */
This page took 0.086465 seconds and 4 git commands to generate.