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