Automatic date update in version.in
[binutils-gdb.git] / gdb / gdbthread.h
blob11c553a99ca14b6e8dff922a1cf0d9a4acd4368e
1 /* Multi-process/thread control defs for GDB, the GNU debugger.
2 Copyright (C) 1987-2024 Free Software Foundation, Inc.
3 Contributed by Lynx Real-Time Systems, Inc. Los Gatos, CA.
6 This file is part of GDB.
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
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
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.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #ifndef GDBTHREAD_H
22 #define GDBTHREAD_H
24 struct symtab;
26 #include "breakpoint.h"
27 #include "frame.h"
28 #include "ui-out.h"
29 #include "btrace.h"
30 #include "target/waitstatus.h"
31 #include "target/target.h"
32 #include "cli/cli-utils.h"
33 #include "gdbsupport/refcounted-object.h"
34 #include "gdbsupport/common-gdbthread.h"
35 #include "gdbsupport/forward-scope-exit.h"
36 #include "displaced-stepping.h"
37 #include "gdbsupport/intrusive_list.h"
38 #include "thread-fsm.h"
39 #include "language.h"
41 struct inferior;
42 struct process_stratum_target;
44 /* When true, print debug messages related to GDB thread creation and
45 deletion. */
47 extern bool debug_threads;
49 /* Print a "threads" debug statement. */
51 #define threads_debug_printf(fmt, ...) \
52 debug_prefixed_printf_cond (debug_threads, "threads", fmt, ##__VA_ARGS__)
54 /* Frontend view of the thread state. Possible extensions: stepping,
55 finishing, until(ling),...
57 NOTE: Since the thread state is not a boolean, most times, you do
58 not want to check it with negation. If you really want to check if
59 the thread is stopped,
61 use (good):
63 if (tp->state == THREAD_STOPPED)
65 instead of (bad):
67 if (tp->state != THREAD_RUNNING)
69 The latter is also true for exited threads, most likely not what
70 you want. */
71 enum thread_state
73 /* In the frontend's perpective, the thread is stopped. */
74 THREAD_STOPPED,
76 /* In the frontend's perpective, the thread is running. */
77 THREAD_RUNNING,
79 /* The thread is listed, but known to have exited. We keep it
80 listed (but not visible) until it's safe to delete it. */
81 THREAD_EXITED,
84 /* STEP_OVER_ALL means step over all subroutine calls.
85 STEP_OVER_UNDEBUGGABLE means step over calls to undebuggable functions.
86 STEP_OVER_NONE means don't step over any subroutine calls. */
88 enum step_over_calls_kind
90 STEP_OVER_NONE,
91 STEP_OVER_ALL,
92 STEP_OVER_UNDEBUGGABLE
95 /* Inferior thread specific part of `struct infcall_control_state'.
97 Inferior process counterpart is `struct inferior_control_state'. */
99 struct thread_control_state
101 /* User/external stepping state. */
103 /* Step-resume or longjmp-resume breakpoint. */
104 struct breakpoint *step_resume_breakpoint = nullptr;
106 /* Exception-resume breakpoint. */
107 struct breakpoint *exception_resume_breakpoint = nullptr;
109 /* Breakpoints used for software single stepping. Plural, because
110 it may have multiple locations. E.g., if stepping over a
111 conditional branch instruction we can't decode the condition for,
112 we'll need to put a breakpoint at the branch destination, and
113 another at the instruction after the branch. */
114 struct breakpoint *single_step_breakpoints = nullptr;
116 /* Range to single step within.
118 If this is nonzero, respond to a single-step signal by continuing
119 to step if the pc is in this range.
121 If step_range_start and step_range_end are both 1, it means to
122 step for a single instruction (FIXME: it might clean up
123 wait_for_inferior in a minor way if this were changed to the
124 address of the instruction and that address plus one. But maybe
125 not). */
126 CORE_ADDR step_range_start = 0; /* Inclusive */
127 CORE_ADDR step_range_end = 0; /* Exclusive */
129 /* Function the thread was in as of last it started stepping. */
130 struct symbol *step_start_function = nullptr;
132 /* If GDB issues a target step request, and this is nonzero, the
133 target should single-step this thread once, and then continue
134 single-stepping it without GDB core involvement as long as the
135 thread stops in the step range above. If this is zero, the
136 target should ignore the step range, and only issue one single
137 step. */
138 int may_range_step = 0;
140 /* Stack frame address as of when stepping command was issued.
141 This is how we know when we step into a subroutine call, and how
142 to set the frame for the breakpoint used to step out. */
143 struct frame_id step_frame_id {};
145 /* Similarly, the frame ID of the underlying stack frame (skipping
146 any inlined frames). */
147 struct frame_id step_stack_frame_id {};
149 /* True if the the thread is presently stepping over a breakpoint or
150 a watchpoint, either with an inline step over or a displaced (out
151 of line) step, and we're now expecting it to report a trap for
152 the finished single step. */
153 int trap_expected = 0;
155 /* Nonzero if the thread is being proceeded for a "finish" command
156 or a similar situation when return value should be printed. */
157 int proceed_to_finish = 0;
159 /* Nonzero if the thread is being proceeded for an inferior function
160 call. */
161 int in_infcall = 0;
163 enum step_over_calls_kind step_over_calls = STEP_OVER_NONE;
165 /* Nonzero if stopped due to a step command. */
166 int stop_step = 0;
168 /* Chain containing status of breakpoint(s) the thread stopped
169 at. */
170 bpstat *stop_bpstat = nullptr;
172 /* Whether the command that started the thread was a stepping
173 command. This is used to decide whether "set scheduler-locking
174 step" behaves like "on" or "off". */
175 int stepping_command = 0;
178 /* Inferior thread specific part of `struct infcall_suspend_state'. */
180 struct thread_suspend_state
182 /* Last signal that the inferior received (why it stopped). When
183 the thread is resumed, this signal is delivered. Note: the
184 target should not check whether the signal is in pass state,
185 because the signal may have been explicitly passed with the
186 "signal" command, which overrides "handle nopass". If the signal
187 should be suppressed, the core will take care of clearing this
188 before the target is resumed. */
189 enum gdb_signal stop_signal = GDB_SIGNAL_0;
191 /* The reason the thread last stopped, if we need to track it
192 (breakpoint, watchpoint, etc.) */
193 enum target_stop_reason stop_reason = TARGET_STOPPED_BY_NO_REASON;
195 /* The waitstatus for this thread's last event. */
196 struct target_waitstatus waitstatus;
197 /* If true WAITSTATUS hasn't been handled yet. */
198 int waitstatus_pending_p = 0;
200 /* Record the pc of the thread the last time it stopped. (This is
201 not the current thread's PC as that may have changed since the
202 last stop, e.g., "return" command, or "p $pc = 0xf000").
204 - If the thread's PC has not changed since the thread last
205 stopped, then proceed skips a breakpoint at the current PC,
206 otherwise we let the thread run into the breakpoint.
208 - If the thread has an unprocessed event pending, as indicated by
209 waitstatus_pending_p, this is used in coordination with
210 stop_reason: if the thread's PC has changed since the thread
211 last stopped, a pending breakpoint waitstatus is discarded.
213 - If the thread is running, then this field has its value removed by
214 calling stop_pc.reset() (see thread_info::set_executing()).
215 Attempting to read a std::optional with no value is undefined
216 behaviour and will trigger an assertion error when _GLIBCXX_DEBUG is
217 defined, which should make error easier to track down. */
218 std::optional<CORE_ADDR> stop_pc;
221 /* Base class for target-specific thread data. */
222 struct private_thread_info
224 virtual ~private_thread_info () = 0;
227 /* Unique pointer wrapper for private_thread_info. */
228 using private_thread_info_up = std::unique_ptr<private_thread_info>;
230 /* Threads are intrusively refcounted objects. Being the
231 user-selected thread is normally considered an implicit strong
232 reference and is thus not accounted in the refcount, unlike
233 inferior objects. This is necessary, because there's no "current
234 thread" pointer. Instead the current thread is inferred from the
235 inferior_ptid global. However, when GDB needs to remember the
236 selected thread to later restore it, GDB bumps the thread object's
237 refcount, to prevent something deleting the thread object before
238 reverting back (e.g., due to a "kill" command). If the thread
239 meanwhile exits before being re-selected, then the thread object is
240 left listed in the thread list, but marked with state
241 THREAD_EXITED. (See scoped_restore_current_thread and
242 delete_thread). All other thread references are considered weak
243 references. Placing a thread in the thread list is an implicit
244 strong reference, and is thus not accounted for in the thread's
245 refcount.
247 The intrusive_list_node base links threads in a per-inferior list.
248 We place it first in the inherit order to work around PR gcc/113599. */
250 class thread_info : public intrusive_list_node<thread_info>,
251 public refcounted_object
253 public:
254 explicit thread_info (inferior *inf, ptid_t ptid);
255 ~thread_info ();
257 bool deletable () const;
259 /* Mark this thread as running and notify observers. */
260 void set_running (bool running);
262 ptid_t ptid; /* "Actual process id";
263 In fact, this may be overloaded with
264 kernel thread id, etc. */
266 /* Each thread has two GDB IDs.
268 a) The thread ID (Id). This consists of the pair of:
270 - the number of the thread's inferior and,
272 - the thread's thread number in its inferior, aka, the
273 per-inferior thread number. This number is unique in the
274 inferior but not unique between inferiors.
276 b) The global ID (GId). This is a a single integer unique
277 between all inferiors.
279 E.g.:
281 (gdb) info threads -gid
282 Id GId Target Id Frame
283 * 1.1 1 Thread A 0x16a09237 in foo () at foo.c:10
284 1.2 3 Thread B 0x15ebc6ed in bar () at foo.c:20
285 1.3 5 Thread C 0x15ebc6ed in bar () at foo.c:20
286 2.1 2 Thread A 0x16a09237 in foo () at foo.c:10
287 2.2 4 Thread B 0x15ebc6ed in bar () at foo.c:20
288 2.3 6 Thread C 0x15ebc6ed in bar () at foo.c:20
290 Above, both inferiors 1 and 2 have threads numbered 1-3, but each
291 thread has its own unique global ID. */
293 /* The thread's global GDB thread number. This is exposed to MI,
294 Python/Scheme, visible with "info threads -gid", and is also what
295 the $_gthread convenience variable is bound to. */
296 int global_num;
298 /* The per-inferior thread number. This is unique in the inferior
299 the thread belongs to, but not unique between inferiors. This is
300 what the $_thread convenience variable is bound to. */
301 int per_inf_num;
303 /* The inferior this thread belongs to. */
304 struct inferior *inf;
306 /* The user-given name of the thread.
308 Returns nullptr if the thread does not have a user-given name. */
309 const char *name () const
311 return m_name.get ();
314 /* Set the user-given name of the thread.
316 Pass nullptr to clear the name. */
317 void set_name (gdb::unique_xmalloc_ptr<char> name)
319 m_name = std::move (name);
322 bool executing () const
323 { return m_executing; }
325 /* Set the thread's 'm_executing' field from EXECUTING, and if EXECUTING
326 is true also clears the thread's stop_pc. */
327 void set_executing (bool executing);
329 bool resumed () const
330 { return m_resumed; }
332 /* Set the thread's 'm_resumed' field from RESUMED. The thread may also
333 be added to (when RESUMED is true), or removed from (when RESUMED is
334 false), the list of threads with a pending wait status. */
335 void set_resumed (bool resumed);
337 /* Frontend view of the thread state. Note that the THREAD_RUNNING/
338 THREAD_STOPPED states are different from EXECUTING. When the
339 thread is stopped internally while handling an internal event,
340 like a software single-step breakpoint, EXECUTING will be false,
341 but STATE will still be THREAD_RUNNING. */
342 enum thread_state state = THREAD_STOPPED;
344 /* State of GDB control of inferior thread execution.
345 See `struct thread_control_state'. */
346 thread_control_state control;
348 /* Save M_SUSPEND to SUSPEND. */
350 void save_suspend_to (thread_suspend_state &suspend) const
352 suspend = m_suspend;
355 /* Restore M_SUSPEND from SUSPEND. */
357 void restore_suspend_from (const thread_suspend_state &suspend)
359 m_suspend = suspend;
362 /* Return this thread's stop PC. This should only be called when it is
363 known that stop_pc has a value. If this function is being used in a
364 situation where a thread may not have had a stop_pc assigned, then
365 stop_pc_p() can be used to check if the stop_pc is defined. */
367 CORE_ADDR stop_pc () const
369 gdb_assert (m_suspend.stop_pc.has_value ());
370 return *m_suspend.stop_pc;
373 /* Set this thread's stop PC. */
375 void set_stop_pc (CORE_ADDR stop_pc)
377 m_suspend.stop_pc = stop_pc;
380 /* Remove the stop_pc stored on this thread. */
382 void clear_stop_pc ()
384 m_suspend.stop_pc.reset ();
387 /* Return true if this thread has a cached stop pc value, otherwise
388 return false. */
390 bool stop_pc_p () const
392 return m_suspend.stop_pc.has_value ();
395 /* Return true if this thread has a pending wait status. */
397 bool has_pending_waitstatus () const
399 return m_suspend.waitstatus_pending_p;
402 /* Get this thread's pending wait status.
404 May only be called if has_pending_waitstatus returns true. */
406 const target_waitstatus &pending_waitstatus () const
408 gdb_assert (this->has_pending_waitstatus ());
410 return m_suspend.waitstatus;
413 /* Set this thread's pending wait status.
415 May only be called if has_pending_waitstatus returns false. */
417 void set_pending_waitstatus (const target_waitstatus &ws);
419 /* Clear this thread's pending wait status.
421 May only be called if has_pending_waitstatus returns true. */
423 void clear_pending_waitstatus ();
425 /* Return this thread's stop signal. */
427 gdb_signal stop_signal () const
429 return m_suspend.stop_signal;
432 /* Set this thread's stop signal. */
434 void set_stop_signal (gdb_signal sig)
436 m_suspend.stop_signal = sig;
439 /* Return this thread's stop reason. */
441 target_stop_reason stop_reason () const
443 return m_suspend.stop_reason;
446 /* Set this thread's stop reason. */
448 void set_stop_reason (target_stop_reason reason)
450 m_suspend.stop_reason = reason;
453 /* Get the FSM associated with the thread. */
455 struct thread_fsm *thread_fsm () const
457 return m_thread_fsm.get ();
460 /* Get the owning reference to the FSM associated with the thread.
462 After a call to this method, "thread_fsm () == nullptr". */
464 std::unique_ptr<struct thread_fsm> release_thread_fsm ()
466 return std::move (m_thread_fsm);
469 /* Set the FSM associated with the current thread.
471 It is invalid to set the FSM if another FSM is already installed. */
473 void set_thread_fsm (std::unique_ptr<struct thread_fsm> fsm)
475 gdb_assert (m_thread_fsm == nullptr);
476 m_thread_fsm = std::move (fsm);
479 /* Record the thread options last set for this thread. */
481 void set_thread_options (gdb_thread_options thread_options);
483 /* Get the thread options last set for this thread. */
485 gdb_thread_options thread_options () const
487 return m_thread_options;
490 int current_line = 0;
491 struct symtab *current_symtab = NULL;
493 /* Internal stepping state. */
495 /* Record the pc of the thread the last time it was resumed. (It
496 can't be done on stop as the PC may change since the last stop,
497 e.g., "return" command, or "p $pc = 0xf000"). This is maintained
498 by proceed and keep_going, and among other things, it's used in
499 adjust_pc_after_break to distinguish a hardware single-step
500 SIGTRAP from a breakpoint SIGTRAP. */
501 CORE_ADDR prev_pc = 0;
503 /* Did we set the thread stepping a breakpoint instruction? This is
504 used in conjunction with PREV_PC to decide whether to adjust the
505 PC. */
506 int stepped_breakpoint = 0;
508 /* Should we step over breakpoint next time keep_going is called? */
509 int stepping_over_breakpoint = 0;
511 /* Should we step over a watchpoint next time keep_going is called?
512 This is needed on targets with non-continuable, non-steppable
513 watchpoints. */
514 int stepping_over_watchpoint = 0;
516 /* Set to TRUE if we should finish single-stepping over a breakpoint
517 after hitting the current step-resume breakpoint. The context here
518 is that GDB is to do `next' or `step' while signal arrives.
519 When stepping over a breakpoint and signal arrives, GDB will attempt
520 to skip signal handler, so it inserts a step_resume_breakpoint at the
521 signal return address, and resume inferior.
522 step_after_step_resume_breakpoint is set to TRUE at this moment in
523 order to keep GDB in mind that there is still a breakpoint to step over
524 when GDB gets back SIGTRAP from step_resume_breakpoint. */
525 int step_after_step_resume_breakpoint = 0;
527 /* This is used to remember when a fork or vfork event was caught by
528 a catchpoint, and thus the event is to be followed at the next
529 resume of the thread, and not immediately. */
530 struct target_waitstatus pending_follow;
532 /* True if this thread has been explicitly requested to stop. */
533 int stop_requested = 0;
535 /* The initiating frame of a nexting operation, used for deciding
536 which exceptions to intercept. If it is null_frame_id no
537 bp_longjmp or bp_exception but longjmp has been caught just for
538 bp_longjmp_call_dummy. */
539 struct frame_id initiating_frame = null_frame_id;
541 /* Private data used by the target vector implementation. */
542 private_thread_info_up priv;
544 /* Branch trace information for this thread. */
545 struct btrace_thread_info btrace {};
547 /* Flag which indicates that the stack temporaries should be stored while
548 evaluating expressions. */
549 bool stack_temporaries_enabled = false;
551 /* Values that are stored as temporaries on stack while evaluating
552 expressions. */
553 std::vector<struct value *> stack_temporaries;
555 /* Step-over chain. A thread is in the step-over queue if this node is
556 linked. */
557 intrusive_list_node<thread_info> step_over_list_node;
559 /* Node for list of threads that are resumed and have a pending wait status.
561 The list head for this is in process_stratum_target, hence all threads in
562 this list belong to that process target. */
563 intrusive_list_node<thread_info> resumed_with_pending_wait_status_node;
565 /* Displaced-step state for this thread. */
566 displaced_step_thread_state displaced_step_state;
568 private:
569 /* True if this thread is resumed from infrun's perspective.
570 Note that a thread can be marked both as not-executing and
571 resumed at the same time. This happens if we try to resume a
572 thread that has a wait status pending. We shouldn't let the
573 thread really run until that wait status has been processed, but
574 we should not process that wait status if we didn't try to let
575 the thread run. */
576 bool m_resumed = false;
578 /* True means the thread is executing. Note: this is different
579 from saying that there is an active target and we are stopped at
580 a breakpoint, for instance. This is a real indicator whether the
581 thread is off and running. */
582 bool m_executing = false;
584 /* State of inferior thread to restore after GDB is done with an inferior
585 call. See `struct thread_suspend_state'. */
586 thread_suspend_state m_suspend;
588 /* The user-given name of the thread.
590 Nullptr if the thread does not have a user-given name. */
591 gdb::unique_xmalloc_ptr<char> m_name;
593 /* Pointer to the state machine manager object that handles what is
594 left to do for the thread's execution command after the target
595 stops. Several execution commands use it. */
596 std::unique_ptr<struct thread_fsm> m_thread_fsm;
598 /* The thread options as last set with a call to
599 set_thread_options. */
600 gdb_thread_options m_thread_options;
603 using thread_info_resumed_with_pending_wait_status_node
604 = intrusive_member_node<thread_info,
605 &thread_info::resumed_with_pending_wait_status_node>;
606 using thread_info_resumed_with_pending_wait_status_list
607 = intrusive_list<thread_info,
608 thread_info_resumed_with_pending_wait_status_node>;
610 /* A gdb::ref_ptr pointer to a thread_info. */
612 using thread_info_ref
613 = gdb::ref_ptr<struct thread_info, refcounted_object_ref_policy>;
615 /* A gdb::ref_ptr pointer to an inferior. This would ideally be in
616 inferior.h, but it can't due to header dependencies (inferior.h
617 includes gdbthread.h). */
619 using inferior_ref
620 = gdb::ref_ptr<struct inferior, refcounted_object_ref_policy>;
622 /* Create an empty thread list, or empty the existing one. */
623 extern void init_thread_list (void);
625 /* Add a thread to the thread list, print a message
626 that a new thread is found, and return the pointer to
627 the new thread. Caller my use this pointer to
628 initialize the private thread data. */
629 extern struct thread_info *add_thread (process_stratum_target *targ,
630 ptid_t ptid);
632 /* Same as add_thread, but does not print a message about new
633 thread. */
634 extern struct thread_info *add_thread_silent (process_stratum_target *targ,
635 ptid_t ptid);
637 /* Same as add_thread, and sets the private info. */
638 extern struct thread_info *add_thread_with_info (process_stratum_target *targ,
639 ptid_t ptid,
640 private_thread_info_up);
642 /* Delete thread THREAD and notify of thread exit. If the thread is
643 currently not deletable, don't actually delete it but still tag it
644 as exited and do the notification. EXIT_CODE is the thread's exit
645 code. If SILENT, don't actually notify the CLI. THREAD must not
646 be NULL or an assertion will fail. */
647 extern void delete_thread_with_exit_code (thread_info *thread,
648 ULONGEST exit_code,
649 bool silent = false);
651 /* Delete thread THREAD and notify of thread exit. If the thread is
652 currently not deletable, don't actually delete it but still tag it
653 as exited and do the notification. THREAD must not be NULL or an
654 assertion will fail. */
655 extern void delete_thread (thread_info *thread);
657 /* Like delete_thread, but be quiet about it. Used when the process
658 this thread belonged to has already exited, for example. */
659 extern void delete_thread_silent (struct thread_info *thread);
661 /* Mark the thread exited, but don't delete it or remove it from the
662 inferior thread list. EXIT_CODE is the thread's exit code, if
663 available. If SILENT, then don't inform the CLI about the
664 exit. */
665 extern void set_thread_exited (thread_info *tp,
666 std::optional<ULONGEST> exit_code = {},
667 bool silent = false);
669 /* Delete a step_resume_breakpoint from the thread database. */
670 extern void delete_step_resume_breakpoint (struct thread_info *);
672 /* Delete an exception_resume_breakpoint from the thread database. */
673 extern void delete_exception_resume_breakpoint (struct thread_info *);
675 /* Delete the single-step breakpoints of thread TP, if any. */
676 extern void delete_single_step_breakpoints (struct thread_info *tp);
678 /* Check if the thread has software single stepping breakpoints
679 set. */
680 extern int thread_has_single_step_breakpoints_set (struct thread_info *tp);
682 /* Check whether the thread has software single stepping breakpoints
683 set at PC. */
684 extern int thread_has_single_step_breakpoint_here (struct thread_info *tp,
685 const address_space *aspace,
686 CORE_ADDR addr);
688 /* Returns whether to show inferior-qualified thread IDs, or plain
689 thread numbers. Inferior-qualified IDs are shown whenever we have
690 multiple inferiors, or the only inferior left has number > 1. */
691 extern int show_inferior_qualified_tids (void);
693 /* Return a string version of THR's thread ID. If there are multiple
694 inferiors, then this prints the inferior-qualifier form, otherwise
695 it only prints the thread number. The result is stored in a
696 circular static buffer, NUMCELLS deep. */
697 const char *print_thread_id (struct thread_info *thr);
699 /* Like print_thread_id, but always prints the inferior-qualified form,
700 even when there is only a single inferior. */
701 const char *print_full_thread_id (struct thread_info *thr);
703 /* Boolean test for an already-known ptid. */
704 extern bool in_thread_list (process_stratum_target *targ, ptid_t ptid);
706 /* Boolean test for an already-known global thread id (GDB's homegrown
707 global id, not the system's). */
708 extern int valid_global_thread_id (int global_id);
710 /* Find thread by GDB global thread ID. */
711 struct thread_info *find_thread_global_id (int global_id);
713 /* Find thread by thread library specific handle in inferior INF. */
714 struct thread_info *find_thread_by_handle
715 (gdb::array_view<const gdb_byte> handle, struct inferior *inf);
717 /* Finds the first thread of the specified inferior. */
718 extern struct thread_info *first_thread_of_inferior (inferior *inf);
720 /* Returns any thread of inferior INF, giving preference to the
721 current thread. */
722 extern struct thread_info *any_thread_of_inferior (inferior *inf);
724 /* Returns any non-exited thread of inferior INF, giving preference to
725 the current thread, and to not executing threads. */
726 extern struct thread_info *any_live_thread_of_inferior (inferior *inf);
728 /* Change the ptid of thread OLD_PTID to NEW_PTID. */
729 void thread_change_ptid (process_stratum_target *targ,
730 ptid_t old_ptid, ptid_t new_ptid);
732 /* Iterator function to call a user-provided callback function
733 once for each known thread. */
734 typedef int (*thread_callback_func) (struct thread_info *, void *);
735 extern struct thread_info *iterate_over_threads (thread_callback_func, void *);
737 /* Pull in the internals of the inferiors/threads ranges and
738 iterators. Must be done after struct thread_info is defined. */
739 #include "thread-iter.h"
741 /* Return a range that can be used to walk over threads, with
742 range-for.
744 Used like this, it walks over all threads of all inferiors of all
745 targets:
747 for (thread_info *thr : all_threads ())
748 { .... }
750 FILTER_PTID can be used to filter out threads that don't match.
751 FILTER_PTID can be:
753 - minus_one_ptid, meaning walk all threads of all inferiors of
754 PROC_TARGET. If PROC_TARGET is NULL, then of all targets.
756 - A process ptid, in which case walk all threads of the specified
757 process. PROC_TARGET must be non-NULL in this case.
759 - A thread ptid, in which case walk that thread only. PROC_TARGET
760 must be non-NULL in this case.
763 inline all_matching_threads_range
764 all_threads (process_stratum_target *proc_target = nullptr,
765 ptid_t filter_ptid = minus_one_ptid)
767 return all_matching_threads_range (proc_target, filter_ptid);
770 /* Return a range that can be used to walk over all non-exited threads
771 of all inferiors, with range-for. Arguments are like all_threads
772 above. */
774 inline all_non_exited_threads_range
775 all_non_exited_threads (process_stratum_target *proc_target = nullptr,
776 ptid_t filter_ptid = minus_one_ptid)
778 return all_non_exited_threads_range (proc_target, filter_ptid);
781 /* Return a range that can be used to walk over all threads of all
782 inferiors, with range-for, safely. I.e., it is safe to delete the
783 currently-iterated thread. When combined with range-for, this
784 allow convenient patterns like this:
786 for (thread_info *t : all_threads_safe ())
787 if (some_condition ())
788 delete f;
791 inline all_threads_safe_range
792 all_threads_safe ()
794 return all_threads_safe_range (all_threads_iterator::begin_t {});
797 extern int thread_count (process_stratum_target *proc_target);
799 /* Return true if we have any thread in any inferior. */
800 extern bool any_thread_p ();
802 /* Switch context to thread THR. */
803 extern void switch_to_thread (struct thread_info *thr);
805 /* Switch context to no thread selected. */
806 extern void switch_to_no_thread ();
808 /* Switch from one thread to another. Does not read registers. */
809 extern void switch_to_thread_no_regs (struct thread_info *thread);
811 /* Marks or clears thread(s) PTID of TARG as resumed. If PTID is
812 MINUS_ONE_PTID, applies to all threads of TARG. If
813 ptid_is_pid(PTID) is true, applies to all threads of the process
814 pointed at by {TARG,PTID}. */
815 extern void set_resumed (process_stratum_target *targ,
816 ptid_t ptid, bool resumed);
818 /* Marks thread PTID of TARG as running, or as stopped. If PTID is
819 minus_one_ptid, marks all threads of TARG. */
820 extern void set_running (process_stratum_target *targ,
821 ptid_t ptid, bool running);
823 /* Marks or clears thread(s) PTID of TARG as having been requested to
824 stop. If PTID is MINUS_ONE_PTID, applies to all threads of TARG.
825 If ptid_is_pid(PTID) is true, applies to all threads of the process
826 pointed at by {TARG, PTID}. If STOP, then the
827 THREAD_STOP_REQUESTED observer is called with PTID as argument. */
828 extern void set_stop_requested (process_stratum_target *targ,
829 ptid_t ptid, bool stop);
831 /* Marks thread PTID of TARG as executing, or not. If PTID is
832 minus_one_ptid, marks all threads of TARG.
834 Note that this is different from the running state. See the
835 description of state and executing fields of struct
836 thread_info. */
837 extern void set_executing (process_stratum_target *targ,
838 ptid_t ptid, bool executing);
840 /* True if any (known or unknown) thread of TARG is or may be
841 executing. */
842 extern bool threads_are_executing (process_stratum_target *targ);
844 /* Merge the executing property of thread PTID of TARG over to its
845 thread state property (frontend running/stopped view).
847 "not executing" -> "stopped"
848 "executing" -> "running"
849 "exited" -> "exited"
851 If PTID is minus_one_ptid, go over all threads of TARG.
853 Notifications are only emitted if the thread state did change. */
854 extern void finish_thread_state (process_stratum_target *targ, ptid_t ptid);
856 /* Calls finish_thread_state on scope exit, unless release() is called
857 to disengage. */
858 using scoped_finish_thread_state
859 = FORWARD_SCOPE_EXIT (finish_thread_state);
861 /* Commands with a prefix of `thread'. */
862 extern struct cmd_list_element *thread_cmd_list;
864 extern void thread_command (const char *tidstr, int from_tty);
866 /* Print notices on thread events (attach, detach, etc.), set with
867 `set print thread-events'. */
868 extern bool print_thread_events;
870 /* Prints the list of threads and their details on UIOUT. If
871 REQUESTED_THREADS, a list of GDB ids/ranges, is not NULL, only
872 print threads whose ID is included in the list. If PID is not -1,
873 only print threads from the process PID. Otherwise, threads from
874 all attached PIDs are printed. If both REQUESTED_THREADS is not
875 NULL and PID is not -1, then the thread is printed if it belongs to
876 the specified process. Otherwise, an error is raised. */
877 extern void print_thread_info (struct ui_out *uiout,
878 const char *requested_threads,
879 int pid);
881 /* Save/restore current inferior/thread/frame. */
883 class scoped_restore_current_thread
885 public:
886 scoped_restore_current_thread ();
887 ~scoped_restore_current_thread ();
889 scoped_restore_current_thread (scoped_restore_current_thread &&rhs);
891 DISABLE_COPY_AND_ASSIGN (scoped_restore_current_thread);
893 /* Cancel restoring on scope exit. */
894 void dont_restore () { m_dont_restore = true; }
896 private:
897 void restore ();
899 bool m_dont_restore = false;
900 thread_info_ref m_thread;
901 inferior_ref m_inf;
903 frame_id m_selected_frame_id;
904 int m_selected_frame_level;
905 bool m_was_stopped;
906 /* Save/restore the language as well, because selecting a frame
907 changes the current language to the frame's language if "set
908 language auto". */
909 scoped_restore_current_language m_lang;
912 /* Returns a pointer into the thread_info corresponding to
913 INFERIOR_PTID. INFERIOR_PTID *must* be in the thread list. */
914 extern struct thread_info* inferior_thread (void);
916 extern void update_thread_list (void);
918 /* Delete any thread the target says is no longer alive. */
920 extern void prune_threads (void);
922 /* Delete threads marked THREAD_EXITED. Unlike prune_threads, this
923 does not consult the target about whether the thread is alive right
924 now. */
925 extern void delete_exited_threads (void);
927 /* Return true if PC is in the stepping range of THREAD. */
929 bool pc_in_thread_step_range (CORE_ADDR pc, struct thread_info *thread);
931 /* Enable storing stack temporaries for thread THR and disable and
932 clear the stack temporaries on destruction. Holds a strong
933 reference to THR. */
935 class enable_thread_stack_temporaries
937 public:
939 explicit enable_thread_stack_temporaries (struct thread_info *thr)
940 : m_thr (thread_info_ref::new_reference (thr))
942 m_thr->stack_temporaries_enabled = true;
943 m_thr->stack_temporaries.clear ();
946 ~enable_thread_stack_temporaries ()
948 m_thr->stack_temporaries_enabled = false;
949 m_thr->stack_temporaries.clear ();
952 DISABLE_COPY_AND_ASSIGN (enable_thread_stack_temporaries);
954 private:
956 thread_info_ref m_thr;
959 extern bool thread_stack_temporaries_enabled_p (struct thread_info *tp);
961 extern void push_thread_stack_temporary (struct thread_info *tp, struct value *v);
963 extern value *get_last_thread_stack_temporary (struct thread_info *tp);
965 extern bool value_in_thread_stack_temporaries (struct value *,
966 struct thread_info *thr);
968 /* Thread step-over list type. */
969 using thread_step_over_list_node
970 = intrusive_member_node<thread_info, &thread_info::step_over_list_node>;
971 using thread_step_over_list
972 = intrusive_list<thread_info, thread_step_over_list_node>;
973 using thread_step_over_list_iterator
974 = reference_to_pointer_iterator<thread_step_over_list::iterator>;
975 using thread_step_over_list_safe_iterator
976 = basic_safe_iterator<thread_step_over_list_iterator>;
977 using thread_step_over_list_safe_range
978 = iterator_range<thread_step_over_list_safe_iterator>;
980 static inline thread_step_over_list_safe_range
981 make_thread_step_over_list_safe_range (thread_step_over_list &list)
983 return thread_step_over_list_safe_range
984 (thread_step_over_list_safe_iterator (list.begin (),
985 list.end ()),
986 thread_step_over_list_safe_iterator (list.end (),
987 list.end ()));
990 /* Add TP to the end of the global pending step-over chain. */
992 extern void global_thread_step_over_chain_enqueue (thread_info *tp);
994 /* Append the thread step over list LIST to the global thread step over
995 chain. */
997 extern void global_thread_step_over_chain_enqueue_chain
998 (thread_step_over_list &&list);
1000 /* Remove TP from the global pending step-over chain. */
1002 extern void global_thread_step_over_chain_remove (thread_info *tp);
1004 /* Return true if TP is in any step-over chain. */
1006 extern int thread_is_in_step_over_chain (struct thread_info *tp);
1008 /* Return the length of the the step over chain TP is in.
1010 If TP is non-nullptr, the thread must be in a step over chain.
1011 TP may be nullptr, in which case it denotes an empty list, so a length of
1012 0. */
1014 extern int thread_step_over_chain_length (const thread_step_over_list &l);
1016 /* Cancel any ongoing execution command. */
1018 extern void thread_cancel_execution_command (struct thread_info *thr);
1020 /* Check whether it makes sense to access a register of the current
1021 thread at this point. If not, throw an error (e.g., the thread is
1022 executing). */
1023 extern void validate_registers_access (void);
1025 /* Check whether it makes sense to access a register of THREAD at this point.
1026 Returns true if registers may be accessed; false otherwise. */
1027 extern bool can_access_registers_thread (struct thread_info *thread);
1029 /* Returns whether to show which thread hit the breakpoint, received a
1030 signal, etc. and ended up causing a user-visible stop. This is
1031 true iff we ever detected multiple threads. */
1032 extern int show_thread_that_caused_stop (void);
1034 /* Print the message for a thread or/and frame selected. */
1035 extern void print_selected_thread_frame (struct ui_out *uiout,
1036 user_selected_what selection);
1038 /* Helper for the CLI's "thread" command and for MI's -thread-select.
1039 Selects thread THR. TIDSTR is the original string the thread ID
1040 was parsed from. This is used in the error message if THR is not
1041 alive anymore. */
1042 extern void thread_select (const char *tidstr, class thread_info *thr);
1044 /* Return THREAD's name.
1046 If THREAD has a user-given name, return it. Otherwise, query the thread's
1047 target to get the name. May return nullptr. */
1048 extern const char *thread_name (thread_info *thread);
1050 /* Switch to thread TP if it is alive. Returns true if successfully
1051 switched, false otherwise. */
1053 extern bool switch_to_thread_if_alive (thread_info *thr);
1055 /* Assuming that THR is the current thread, execute CMD.
1056 If ADA_TASK is not empty, it is the Ada task ID, and will
1057 be printed instead of the thread information.
1058 FLAGS.QUIET controls the printing of the thread information.
1059 FLAGS.CONT and FLAGS.SILENT control how to handle errors. Can throw an
1060 exception if !FLAGS.SILENT and !FLAGS.CONT and CMD fails. */
1062 extern void thread_try_catch_cmd (thread_info *thr,
1063 std::optional<int> ada_task,
1064 const char *cmd, int from_tty,
1065 const qcs_flags &flags);
1067 /* Return a string representation of STATE. */
1069 extern const char *thread_state_string (enum thread_state state);
1071 #endif /* GDBTHREAD_H */