gdb: Coalesce/aggregate (async) vCont packets/actions
[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.
1bac305b 3
618f726f 4 Copyright (C) 1986-2016 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
a9762ec7 10 the Free Software Foundation; either version 3 of the License, or
c5aa993b 11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b 18 You should have received a copy of the GNU General Public License
a9762ec7 19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
20
21#if !defined (INFERIOR_H)
22#define INFERIOR_H 1
23
da3331ec
AC
24struct target_waitstatus;
25struct frame_info;
26struct ui_file;
27struct type;
67a2b77e 28struct gdbarch;
72cec141 29struct regcache;
b77209e0 30struct ui_out;
7e1789f5 31struct terminal_info;
6ecd4729 32struct target_desc_info;
67a2b77e 33
c906108c
SS
34/* For bpstat. */
35#include "breakpoint.h"
36
2ea28649 37/* For enum gdb_signal. */
c906108c
SS
38#include "target.h"
39
aa0cd9c1
AC
40/* For struct frame_id. */
41#include "frame.h"
42
6c95b8df 43#include "progspace.h"
8e260fc0 44#include "registry.h"
6c95b8df 45
16c381f0
JK
46struct infcall_suspend_state;
47struct infcall_control_state;
7a292a7a 48
16c381f0
JK
49extern struct infcall_suspend_state *save_infcall_suspend_state (void);
50extern struct infcall_control_state *save_infcall_control_state (void);
c906108c 51
16c381f0
JK
52extern void restore_infcall_suspend_state (struct infcall_suspend_state *);
53extern void restore_infcall_control_state (struct infcall_control_state *);
b89667eb 54
16c381f0
JK
55extern struct cleanup *make_cleanup_restore_infcall_suspend_state
56 (struct infcall_suspend_state *);
57extern struct cleanup *make_cleanup_restore_infcall_control_state
58 (struct infcall_control_state *);
b89667eb 59
16c381f0
JK
60extern void discard_infcall_suspend_state (struct infcall_suspend_state *);
61extern void discard_infcall_control_state (struct infcall_control_state *);
7a292a7a 62
16c381f0
JK
63extern struct regcache *
64 get_infcall_suspend_state_regcache (struct infcall_suspend_state *);
b89667eb 65
ce696e05
KB
66/* Save value of inferior_ptid so that it may be restored by
67 a later call to do_cleanups(). Returns the struct cleanup
68 pointer needed for later doing the cleanup. */
69extern struct cleanup * save_inferior_ptid (void);
70
a14ed312 71extern void set_sigint_trap (void);
c906108c 72
a14ed312 73extern void clear_sigint_trap (void);
c906108c 74
3cb3b8df 75/* Set/get file name for default use for standard in/out in the inferior. */
c906108c 76
3cb3b8df
BR
77extern void set_inferior_io_terminal (const char *terminal_name);
78extern const char *get_inferior_io_terminal (void);
c906108c 79
39f77062 80/* Collected pid, tid, etc. of the debugged inferior. When there's
dfd4cc63 81 no inferior, ptid_get_pid (inferior_ptid) will be 0. */
c906108c 82
39f77062 83extern ptid_t inferior_ptid;
c906108c 84
a14ed312 85extern void generic_mourn_inferior (void);
c906108c 86
9898f801
UW
87extern CORE_ADDR unsigned_pointer_to_address (struct gdbarch *gdbarch,
88 struct type *type,
b60c417a 89 const gdb_byte *buf);
9898f801
UW
90extern void unsigned_address_to_pointer (struct gdbarch *gdbarch,
91 struct type *type, gdb_byte *buf,
ac2e2ef7 92 CORE_ADDR addr);
9898f801
UW
93extern CORE_ADDR signed_pointer_to_address (struct gdbarch *gdbarch,
94 struct type *type,
b60c417a 95 const gdb_byte *buf);
9898f801
UW
96extern void address_to_signed_pointer (struct gdbarch *gdbarch,
97 struct type *type, gdb_byte *buf,
ac2e2ef7 98 CORE_ADDR addr);
4478b372 99
a14ed312 100extern void reopen_exec_file (void);
c906108c 101
c906108c
SS
102/* From misc files */
103
0ab7a791
AC
104extern void default_print_registers_info (struct gdbarch *gdbarch,
105 struct ui_file *file,
106 struct frame_info *frame,
107 int regnum, int all);
666e11c5 108
cc86d1cb
YQ
109/* Default implementation of gdbarch_print_float_info. Print
110 the values of all floating point registers. */
111
112extern void default_print_float_info (struct gdbarch *gdbarch,
113 struct ui_file *file,
114 struct frame_info *frame,
115 const char *args);
116
0a4f40a2 117extern void child_terminal_info (struct target_ops *self, const char *, int);
c906108c 118
a14ed312 119extern void term_info (char *, int);
c906108c 120
d6b64346
PA
121extern void child_terminal_ours (struct target_ops *self);
122
123extern void child_terminal_ours_for_output (struct target_ops *self);
c906108c 124
d6b64346 125extern void child_terminal_inferior (struct target_ops *self);
c906108c 126
d6b64346 127extern void child_terminal_init (struct target_ops *self);
c906108c 128
d6b64346 129extern void child_terminal_init_with_pgrp (int pgrp);
c906108c 130
c906108c
SS
131/* From fork-child.c */
132
136d6dae
VP
133extern int fork_inferior (char *, char *, char **,
134 void (*)(void),
e69860f1
TG
135 void (*)(int), void (*)(void), char *,
136 void (*)(const char *,
137 char * const *, char * const *));
c906108c
SS
138
139
a14ed312 140extern void startup_inferior (int);
c906108c 141
bd57a748 142extern char *construct_inferior_arguments (int, char **);
552c04a7 143
c906108c
SS
144/* From infcmd.c */
145
6efcd9a8
PA
146/* Initial inferior setup. Determines the exec file is not yet known,
147 takes any necessary post-attaching actions, fetches the target
148 description and syncs the shared library list. */
149
150extern void setup_inferior (int from_tty);
151
281b533b
DJ
152extern void post_create_inferior (struct target_ops *, int);
153
a14ed312 154extern void attach_command (char *, int);
c906108c 155
a250df2e 156extern char *get_inferior_args (void);
07091751 157
3f81c18a 158extern void set_inferior_args (char *);
07091751 159
552c04a7
TT
160extern void set_inferior_args_vector (int, char **);
161
36dc181b
EZ
162extern void registers_info (char *, int);
163
77ebaa5a
VP
164extern void continue_1 (int all_threads);
165
77ebaa5a
VP
166extern void interrupt_target_1 (int all_threads);
167
186c406b
TT
168extern void delete_longjmp_breakpoint_cleanup (void *arg);
169
6418d433
VP
170extern void detach_command (char *, int);
171
1941c569
PA
172extern void notice_new_inferior (ptid_t, int, int);
173
0700e23e
PA
174extern struct value *get_return_value (struct value *function,
175 struct type *value_type);
cc72b2a2 176
329ea579
PA
177/* Prepare for execution command. TARGET is the target that will run
178 the command. BACKGROUND determines whether this is a foreground
179 (synchronous) or background (asynchronous) command. */
180
181extern void prepare_execution_command (struct target_ops *target,
182 int background);
183
98882a26
PA
184/* Whether to start up the debuggee under a shell.
185
186 If startup-with-shell is set, GDB's "run" will attempt to start up
187 the debuggee under a shell.
188
189 This is in order for argument-expansion to occur. E.g.,
190
191 (gdb) run *
192
193 The "*" gets expanded by the shell into a list of files.
194
195 While this is a nice feature, it may be handy to bypass the shell
196 in some cases. To disable this feature, do "set startup-with-shell
197 false".
198
199 The catch-exec traps expected during start-up will be one more if
200 the target is started up with a shell. */
201extern int startup_with_shell;
202
c906108c
SS
203/* Address at which inferior stopped. */
204
205extern CORE_ADDR stop_pc;
206
c906108c
SS
207/* Nonzero if stopped due to completion of a stack dummy routine. */
208
aa7d318d 209extern enum stop_stack_kind stop_stack_dummy;
c906108c
SS
210
211/* Nonzero if program stopped due to a random (unexpected) signal in
212 inferior process. */
213
214extern int stopped_by_random_signal;
215
a49f981f
MS
216/* STEP_OVER_ALL means step over all subroutine calls.
217 STEP_OVER_UNDEBUGGABLE means step over calls to undebuggable functions.
218 STEP_OVER_NONE means don't step over any subroutine calls. */
c906108c 219
5fbbeb29
CF
220enum step_over_calls_kind
221 {
222 STEP_OVER_NONE,
223 STEP_OVER_ALL,
a4acd088
CF
224 STEP_OVER_UNDEBUGGABLE
225 };
226
b0f4b84b
DJ
227/* Anything but NO_STOP_QUIETLY means we expect a trap and the caller
228 will handle it themselves. STOP_QUIETLY is used when running in
229 the shell before the child program has been exec'd and when running
230 through shared library loading. STOP_QUIETLY_REMOTE is used when
231 setting up a remote connection; it is like STOP_QUIETLY_NO_SIGSTOP
232 except that there is no need to hide a signal. */
c54cfec8 233
7c0bc051
DE
234/* STOP_QUIETLY_NO_SIGSTOP is used to handle a tricky situation with attach.
235 When doing an attach, the kernel stops the debuggee with a SIGSTOP.
236 On newer GNU/Linux kernels (>= 2.5.61) the handling of SIGSTOP for
237 a ptraced process has changed. Earlier versions of the kernel
238 would ignore these SIGSTOPs, while now SIGSTOP is treated like any
239 other signal, i.e. it is not muffled.
240
c54cfec8
EZ
241 If the gdb user does a 'continue' after the 'attach', gdb passes
242 the global variable stop_signal (which stores the signal from the
243 attach, SIGSTOP) to the ptrace(PTRACE_CONT,...) call. This is
244 problematic, because the kernel doesn't ignore such SIGSTOP
1777feb0 245 now. I.e. it is reported back to gdb, which in turn presents it
c54cfec8 246 back to the user.
7c0bc051 247
c54cfec8
EZ
248 To avoid the problem, we use STOP_QUIETLY_NO_SIGSTOP, which allows
249 gdb to clear the value of stop_signal after the attach, so that it
250 is not passed back down to the kernel. */
251
252enum stop_kind
253 {
254 NO_STOP_QUIETLY = 0,
255 STOP_QUIETLY,
b0f4b84b 256 STOP_QUIETLY_REMOTE,
c54cfec8
EZ
257 STOP_QUIETLY_NO_SIGSTOP
258 };
c906108c 259
c906108c 260\f
faaf634c 261/* Possible values for gdbarch_call_dummy_location. */
c906108c 262#define ON_STACK 1
c906108c
SS
263#define AT_ENTRY_POINT 4
264
98882a26
PA
265/* Number of traps that happen between exec'ing the shell to run an
266 inferior and when we finally get to the inferior code, not counting
32a8097b
PA
267 the exec for the shell. This is 1 on all supported
268 implementations. */
98882a26 269#define START_INFERIOR_TRAPS_EXPECTED 1
b77209e0
PA
270
271struct private_inferior;
272
16c381f0
JK
273/* Inferior process specific part of `struct infcall_control_state'.
274
275 Inferior thread counterpart is `struct thread_control_state'. */
276
277struct inferior_control_state
278{
279 /* See the definition of stop_kind above. */
280 enum stop_kind stop_soon;
281};
282
b77209e0
PA
283/* GDB represents the state of each program execution with an object
284 called an inferior. An inferior typically corresponds to a process
285 but is more general and applies also to targets that do not have a
286 notion of processes. Each run of an executable creates a new
287 inferior, as does each attachment to an existing process.
288 Inferiors have unique internal identifiers that are different from
289 target process ids. Each inferior may in turn have multiple
290 threads running in it. */
291
292struct inferior
293{
294 /* Pointer to next inferior in singly-linked list of inferiors. */
295 struct inferior *next;
296
297 /* Convenient handle (GDB inferior id). Unique across all
298 inferiors. */
299 int num;
300
301 /* Actual target inferior id, usually, a process id. This matches
302 the ptid_t.pid member of threads of this inferior. */
303 int pid;
e714e1bf
UW
304 /* True if the PID was actually faked by GDB. */
305 int fake_pid_p;
b77209e0 306
5d5658a1
PA
307 /* The highest thread number this inferior ever had. */
308 int highest_thread_num;
309
16c381f0
JK
310 /* State of GDB control of inferior process execution.
311 See `struct inferior_control_state'. */
312 struct inferior_control_state control;
313
6c95b8df
PA
314 /* True if this was an auto-created inferior, e.g. created from
315 following a fork; false, if this inferior was manually added by
316 the user, and we should not attempt to prune it
317 automatically. */
318 int removable;
319
320 /* The address space bound to this inferior. */
321 struct address_space *aspace;
322
323 /* The program space bound to this inferior. */
324 struct program_space *pspace;
325
3f81c18a
VP
326 /* The arguments string to use when running. */
327 char *args;
328
329 /* The size of elements in argv. */
330 int argc;
331
332 /* The vector version of arguments. If ARGC is nonzero,
333 then we must compute ARGS from this (via the target).
334 This is always coming from main's argv and therefore
335 should never be freed. */
336 char **argv;
337
338 /* The name of terminal device to use for I/O. */
339 char *terminal;
340
341 /* Environment to use for running inferior,
342 in format described in environ.h. */
343 struct gdb_environ *environment;
344
181e7f93
PA
345 /* Nonzero if this child process was attached rather than
346 forked. */
347 int attach_flag;
348
6c95b8df
PA
349 /* If this inferior is a vfork child, then this is the pointer to
350 its vfork parent, if GDB is still attached to it. */
351 struct inferior *vfork_parent;
352
353 /* If this process is a vfork parent, this is the pointer to the
354 child. Since a vfork parent is left frozen by the kernel until
355 the child execs or exits, a process can only have one vfork child
356 at a given time. */
357 struct inferior *vfork_child;
358
359 /* True if this inferior should be detached when it's vfork sibling
360 exits or execs. */
361 int pending_detach;
362
363 /* True if this inferior is a vfork parent waiting for a vfork child
364 not under our control to be done with the shared memory region,
365 either by exiting or execing. */
366 int waiting_for_vfork_done;
367
24291992
PA
368 /* True if we're in the process of detaching from this inferior. */
369 int detaching;
370
e0ba6746
PA
371 /* What is left to do for an execution command after any thread of
372 this inferior stops. For continuations associated with a
373 specific thread, see `struct thread_info'. */
374 struct continuation *continuations;
375
6efcd9a8
PA
376 /* True if setup_inferior wasn't called for this inferior yet.
377 Until that is done, we must not access inferior memory or
378 registers, as we haven't determined the target
379 architecture/description. */
380 int needs_setup;
381
b77209e0 382 /* Private data used by the target vector implementation. */
fe978cb0 383 struct private_inferior *priv;
a96d9b2e 384
8cf64490
TT
385 /* HAS_EXIT_CODE is true if the inferior exited with an exit code.
386 In this case, the EXIT_CODE field is also valid. */
387 int has_exit_code;
388 LONGEST exit_code;
389
7dcd53a0
TT
390 /* Default flags to pass to the symbol reading functions. These are
391 used whenever a new objfile is created. The valid values come
392 from enum symfile_add_flags. */
393 int symfile_flags;
394
6ecd4729
PA
395 /* Info about an inferior's target description (if it's fetched; the
396 user supplied description's filename, if any; etc.). */
397 struct target_desc_info *tdesc_info;
398
399 /* The architecture associated with the inferior through the
400 connection to the target.
401
402 The architecture vector provides some information that is really
403 a property of the inferior, accessed through a particular target:
404 ptrace operations; the layout of certain RSP packets; the
405 solib_ops vector; etc. To differentiate architecture accesses to
406 per-inferior/target properties from
407 per-thread/per-frame/per-objfile properties, accesses to
408 per-inferior/target properties should be made through
409 this gdbarch. */
410 struct gdbarch *gdbarch;
411
6c95b8df 412 /* Per inferior data-pointers required by other GDB modules. */
8e260fc0 413 REGISTRY_FIELDS;
b77209e0
PA
414};
415
6c95b8df
PA
416/* Keep a registry of per-inferior data-pointers required by other GDB
417 modules. */
418
8e260fc0 419DECLARE_REGISTRY (inferior);
6c95b8df 420
b77209e0
PA
421/* Create an empty inferior list, or empty the existing one. */
422extern void init_inferior_list (void);
423
424/* Add an inferior to the inferior list, print a message that a new
425 inferior is found, and return the pointer to the new inferior.
426 Caller may use this pointer to initialize the private inferior
427 data. */
428extern struct inferior *add_inferior (int pid);
429
430/* Same as add_inferior, but don't print new inferior notifications to
431 the CLI. */
432extern struct inferior *add_inferior_silent (int pid);
433
7a41607e 434extern void delete_inferior (struct inferior *todel);
b77209e0
PA
435
436/* Delete an existing inferior list entry, due to inferior detaching. */
437extern void detach_inferior (int pid);
438
6c95b8df
PA
439extern void exit_inferior (int pid);
440
441extern void exit_inferior_silent (int pid);
442
443extern void exit_inferior_num_silent (int num);
444
445extern void inferior_appeared (struct inferior *inf, int pid);
446
82f73884
PA
447/* Get rid of all inferiors. */
448extern void discard_all_inferiors (void);
449
b77209e0
PA
450/* Translate the integer inferior id (GDB's homegrown id, not the system's)
451 into a "pid" (which may be overloaded with extra inferior information). */
452extern int gdb_inferior_id_to_pid (int);
453
454/* Translate a target 'pid' into the integer inferior id (GDB's
455 homegrown id, not the system's). */
456extern int pid_to_gdb_inferior_id (int pid);
457
458/* Boolean test for an already-known pid. */
459extern int in_inferior_list (int pid);
460
461/* Boolean test for an already-known inferior id (GDB's homegrown id,
462 not the system's). */
2c0b251b 463extern int valid_gdb_inferior_id (int num);
b77209e0 464
6c95b8df 465/* Search function to lookup an inferior by target 'pid'. */
b77209e0
PA
466extern struct inferior *find_inferior_pid (int pid);
467
c9657e70
SM
468/* Search function to lookup an inferior whose pid is equal to 'ptid.pid'. */
469extern struct inferior *find_inferior_ptid (ptid_t ptid);
470
6c95b8df
PA
471/* Search function to lookup an inferior by GDB 'num'. */
472extern struct inferior *find_inferior_id (int num);
473
32990ada
PA
474/* Find an inferior bound to PSPACE, giving preference to the current
475 inferior. */
6c95b8df
PA
476extern struct inferior *
477 find_inferior_for_program_space (struct program_space *pspace);
478
b77209e0
PA
479/* Inferior iterator function.
480
481 Calls a callback function once for each inferior, so long as the
482 callback function returns false. If the callback function returns
483 true, the iteration will end and the current inferior will be
484 returned. This can be useful for implementing a search for a
485 inferior with arbitrary attributes, or for applying some operation
486 to every inferior.
487
488 It is safe to delete the iterated inferior from the callback. */
489extern struct inferior *iterate_over_inferiors (int (*) (struct inferior *,
490 void *),
491 void *);
492
b77209e0
PA
493/* Returns true if the inferior list is not empty. */
494extern int have_inferiors (void);
495
8020350c
DB
496/* Returns the number of live inferiors (real live processes). */
497extern int number_of_live_inferiors (void);
498
c35b1492
PA
499/* Returns true if there are any live inferiors in the inferior list
500 (not cores, not executables, real live processes). */
501extern int have_live_inferiors (void);
502
b77209e0
PA
503/* Return a pointer to the current inferior. It is an error to call
504 this if there is no current inferior. */
505extern struct inferior *current_inferior (void);
506
6c95b8df
PA
507extern void set_current_inferior (struct inferior *);
508
509extern struct cleanup *save_current_inferior (void);
510
c65b3e0d
PA
511/* Traverse all inferiors. */
512
513#define ALL_INFERIORS(I) \
514 for ((I) = inferior_list; (I); (I) = (I)->next)
515
85ad3aaf
PA
516/* Traverse all non-exited inferiors. */
517
518#define ALL_NON_EXITED_INFERIORS(I) \
519 ALL_INFERIORS (I) \
520 if ((I)->pid != 0)
521
6c95b8df
PA
522extern struct inferior *inferior_list;
523
524/* Prune away automatically added inferiors that aren't required
525 anymore. */
526extern void prune_inferiors (void);
527
528extern int number_of_inferiors (void);
529
a79b8f6e
VP
530extern struct inferior *add_inferior_with_spaces (void);
531
4034d0ff
AT
532/* Print the current selected inferior. */
533extern void print_selected_inferior (struct ui_out *uiout);
534
c906108c 535#endif /* !defined (INFERIOR_H) */
This page took 2.196401 seconds and 4 git commands to generate.