1 /* Target-struct-independent code to start (run) and stop an inferior
4 Copyright (C) 1986-2022 Free Software Foundation, Inc.
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/>. */
22 #include "displaced-stepping.h"
28 #include "breakpoint.h"
32 #include "target-connection.h"
33 #include "gdbthread.h"
40 #include "observable.h"
45 #include "mi/mi-common.h"
46 #include "event-top.h"
48 #include "record-full.h"
49 #include "inline-frame.h"
51 #include "tracepoint.h"
55 #include "completer.h"
56 #include "target-descriptions.h"
57 #include "target-dcache.h"
60 #include "gdbsupport/event-loop.h"
61 #include "thread-fsm.h"
62 #include "gdbsupport/enum-flags.h"
63 #include "progspace-and-thread.h"
64 #include "gdbsupport/gdb_optional.h"
65 #include "arch-utils.h"
66 #include "gdbsupport/scope-exit.h"
67 #include "gdbsupport/forward-scope-exit.h"
68 #include "gdbsupport/gdb_select.h"
69 #include <unordered_map>
70 #include "async-event.h"
71 #include "gdbsupport/selftest.h"
72 #include "scoped-mock-context.h"
73 #include "test-target.h"
74 #include "gdbsupport/common-debug.h"
75 #include "gdbsupport/buildargv.h"
77 /* Prototypes for local functions */
79 static void sig_print_info (enum gdb_signal
);
81 static void sig_print_header (void);
83 static void follow_inferior_reset_breakpoints (void);
85 static bool currently_stepping (struct thread_info
*tp
);
87 static void insert_hp_step_resume_breakpoint_at_frame (struct frame_info
*);
89 static void insert_step_resume_breakpoint_at_caller (struct frame_info
*);
91 static void insert_longjmp_resume_breakpoint (struct gdbarch
*, CORE_ADDR
);
93 static bool maybe_software_singlestep (struct gdbarch
*gdbarch
);
95 static void resume (gdb_signal sig
);
97 static void wait_for_inferior (inferior
*inf
);
99 static void restart_threads (struct thread_info
*event_thread
,
100 inferior
*inf
= nullptr);
102 static bool start_step_over (void);
104 static bool step_over_info_valid_p (void);
106 /* Asynchronous signal handler registered as event loop source for
107 when we have pending events ready to be passed to the core. */
108 static struct async_event_handler
*infrun_async_inferior_event_token
;
110 /* Stores whether infrun_async was previously enabled or disabled.
111 Starts off as -1, indicating "never enabled/disabled". */
112 static int infrun_is_async
= -1;
117 infrun_async (int enable
)
119 if (infrun_is_async
!= enable
)
121 infrun_is_async
= enable
;
123 infrun_debug_printf ("enable=%d", enable
);
126 mark_async_event_handler (infrun_async_inferior_event_token
);
128 clear_async_event_handler (infrun_async_inferior_event_token
);
135 mark_infrun_async_event_handler (void)
137 mark_async_event_handler (infrun_async_inferior_event_token
);
140 /* When set, stop the 'step' command if we enter a function which has
141 no line number information. The normal behavior is that we step
142 over such function. */
143 bool step_stop_if_no_debug
= false;
145 show_step_stop_if_no_debug (struct ui_file
*file
, int from_tty
,
146 struct cmd_list_element
*c
, const char *value
)
148 gdb_printf (file
, _("Mode of the step operation is %s.\n"), value
);
151 /* proceed and normal_stop use this to notify the user when the
152 inferior stopped in a different thread than it had been running
155 static ptid_t previous_inferior_ptid
;
157 /* If set (default for legacy reasons), when following a fork, GDB
158 will detach from one of the fork branches, child or parent.
159 Exactly which branch is detached depends on 'set follow-fork-mode'
162 static bool detach_fork
= true;
164 bool debug_infrun
= false;
166 show_debug_infrun (struct ui_file
*file
, int from_tty
,
167 struct cmd_list_element
*c
, const char *value
)
169 gdb_printf (file
, _("Inferior debugging is %s.\n"), value
);
172 /* Support for disabling address space randomization. */
174 bool disable_randomization
= true;
177 show_disable_randomization (struct ui_file
*file
, int from_tty
,
178 struct cmd_list_element
*c
, const char *value
)
180 if (target_supports_disable_randomization ())
182 _("Disabling randomization of debuggee's "
183 "virtual address space is %s.\n"),
186 gdb_puts (_("Disabling randomization of debuggee's "
187 "virtual address space is unsupported on\n"
188 "this platform.\n"), file
);
192 set_disable_randomization (const char *args
, int from_tty
,
193 struct cmd_list_element
*c
)
195 if (!target_supports_disable_randomization ())
196 error (_("Disabling randomization of debuggee's "
197 "virtual address space is unsupported on\n"
201 /* User interface for non-stop mode. */
203 bool non_stop
= false;
204 static bool non_stop_1
= false;
207 set_non_stop (const char *args
, int from_tty
,
208 struct cmd_list_element
*c
)
210 if (target_has_execution ())
212 non_stop_1
= non_stop
;
213 error (_("Cannot change this setting while the inferior is running."));
216 non_stop
= non_stop_1
;
220 show_non_stop (struct ui_file
*file
, int from_tty
,
221 struct cmd_list_element
*c
, const char *value
)
224 _("Controlling the inferior in non-stop mode is %s.\n"),
228 /* "Observer mode" is somewhat like a more extreme version of
229 non-stop, in which all GDB operations that might affect the
230 target's execution have been disabled. */
232 static bool observer_mode
= false;
233 static bool observer_mode_1
= false;
236 set_observer_mode (const char *args
, int from_tty
,
237 struct cmd_list_element
*c
)
239 if (target_has_execution ())
241 observer_mode_1
= observer_mode
;
242 error (_("Cannot change this setting while the inferior is running."));
245 observer_mode
= observer_mode_1
;
247 may_write_registers
= !observer_mode
;
248 may_write_memory
= !observer_mode
;
249 may_insert_breakpoints
= !observer_mode
;
250 may_insert_tracepoints
= !observer_mode
;
251 /* We can insert fast tracepoints in or out of observer mode,
252 but enable them if we're going into this mode. */
254 may_insert_fast_tracepoints
= true;
255 may_stop
= !observer_mode
;
256 update_target_permissions ();
258 /* Going *into* observer mode we must force non-stop, then
259 going out we leave it that way. */
262 pagination_enabled
= 0;
263 non_stop
= non_stop_1
= true;
267 gdb_printf (_("Observer mode is now %s.\n"),
268 (observer_mode
? "on" : "off"));
272 show_observer_mode (struct ui_file
*file
, int from_tty
,
273 struct cmd_list_element
*c
, const char *value
)
275 gdb_printf (file
, _("Observer mode is %s.\n"), value
);
278 /* This updates the value of observer mode based on changes in
279 permissions. Note that we are deliberately ignoring the values of
280 may-write-registers and may-write-memory, since the user may have
281 reason to enable these during a session, for instance to turn on a
282 debugging-related global. */
285 update_observer_mode (void)
287 bool newval
= (!may_insert_breakpoints
288 && !may_insert_tracepoints
289 && may_insert_fast_tracepoints
293 /* Let the user know if things change. */
294 if (newval
!= observer_mode
)
295 gdb_printf (_("Observer mode is now %s.\n"),
296 (newval
? "on" : "off"));
298 observer_mode
= observer_mode_1
= newval
;
301 /* Tables of how to react to signals; the user sets them. */
303 static unsigned char signal_stop
[GDB_SIGNAL_LAST
];
304 static unsigned char signal_print
[GDB_SIGNAL_LAST
];
305 static unsigned char signal_program
[GDB_SIGNAL_LAST
];
307 /* Table of signals that are registered with "catch signal". A
308 non-zero entry indicates that the signal is caught by some "catch
310 static unsigned char signal_catch
[GDB_SIGNAL_LAST
];
312 /* Table of signals that the target may silently handle.
313 This is automatically determined from the flags above,
314 and simply cached here. */
315 static unsigned char signal_pass
[GDB_SIGNAL_LAST
];
317 #define SET_SIGS(nsigs,sigs,flags) \
319 int signum = (nsigs); \
320 while (signum-- > 0) \
321 if ((sigs)[signum]) \
322 (flags)[signum] = 1; \
325 #define UNSET_SIGS(nsigs,sigs,flags) \
327 int signum = (nsigs); \
328 while (signum-- > 0) \
329 if ((sigs)[signum]) \
330 (flags)[signum] = 0; \
333 /* Update the target's copy of SIGNAL_PROGRAM. The sole purpose of
334 this function is to avoid exporting `signal_program'. */
337 update_signals_program_target (void)
339 target_program_signals (signal_program
);
342 /* Value to pass to target_resume() to cause all threads to resume. */
344 #define RESUME_ALL minus_one_ptid
346 /* Command list pointer for the "stop" placeholder. */
348 static struct cmd_list_element
*stop_command
;
350 /* Nonzero if we want to give control to the user when we're notified
351 of shared library events by the dynamic linker. */
352 int stop_on_solib_events
;
354 /* Enable or disable optional shared library event breakpoints
355 as appropriate when the above flag is changed. */
358 set_stop_on_solib_events (const char *args
,
359 int from_tty
, struct cmd_list_element
*c
)
361 update_solib_breakpoints ();
365 show_stop_on_solib_events (struct ui_file
*file
, int from_tty
,
366 struct cmd_list_element
*c
, const char *value
)
368 gdb_printf (file
, _("Stopping for shared library events is %s.\n"),
372 /* True after stop if current stack frame should be printed. */
374 static bool stop_print_frame
;
376 /* This is a cached copy of the target/ptid/waitstatus of the last
377 event returned by target_wait().
378 This information is returned by get_last_target_status(). */
379 static process_stratum_target
*target_last_proc_target
;
380 static ptid_t target_last_wait_ptid
;
381 static struct target_waitstatus target_last_waitstatus
;
383 void init_thread_stepping_state (struct thread_info
*tss
);
385 static const char follow_fork_mode_child
[] = "child";
386 static const char follow_fork_mode_parent
[] = "parent";
388 static const char *const follow_fork_mode_kind_names
[] = {
389 follow_fork_mode_child
,
390 follow_fork_mode_parent
,
394 static const char *follow_fork_mode_string
= follow_fork_mode_parent
;
396 show_follow_fork_mode_string (struct ui_file
*file
, int from_tty
,
397 struct cmd_list_element
*c
, const char *value
)
400 _("Debugger response to a program "
401 "call of fork or vfork is \"%s\".\n"),
406 /* Handle changes to the inferior list based on the type of fork,
407 which process is being followed, and whether the other process
408 should be detached. On entry inferior_ptid must be the ptid of
409 the fork parent. At return inferior_ptid is the ptid of the
410 followed inferior. */
413 follow_fork_inferior (bool follow_child
, bool detach_fork
)
415 target_waitkind fork_kind
= inferior_thread ()->pending_follow
.kind ();
416 gdb_assert (fork_kind
== TARGET_WAITKIND_FORKED
417 || fork_kind
== TARGET_WAITKIND_VFORKED
);
418 bool has_vforked
= fork_kind
== TARGET_WAITKIND_VFORKED
;
419 ptid_t parent_ptid
= inferior_ptid
;
420 ptid_t child_ptid
= inferior_thread ()->pending_follow
.child_ptid ();
423 && !non_stop
/* Non-stop always resumes both branches. */
424 && current_ui
->prompt_state
== PROMPT_BLOCKED
425 && !(follow_child
|| detach_fork
|| sched_multi
))
427 /* The parent stays blocked inside the vfork syscall until the
428 child execs or exits. If we don't let the child run, then
429 the parent stays blocked. If we're telling the parent to run
430 in the foreground, the user will not be able to ctrl-c to get
431 back the terminal, effectively hanging the debug session. */
432 gdb_printf (gdb_stderr
, _("\
433 Can not resume the parent process over vfork in the foreground while\n\
434 holding the child stopped. Try \"set detach-on-fork\" or \
435 \"set schedule-multiple\".\n"));
439 inferior
*parent_inf
= current_inferior ();
440 inferior
*child_inf
= nullptr;
442 gdb_assert (parent_inf
->thread_waiting_for_vfork_done
== nullptr);
446 /* Detach new forked process? */
449 /* Before detaching from the child, remove all breakpoints
450 from it. If we forked, then this has already been taken
451 care of by infrun.c. If we vforked however, any
452 breakpoint inserted in the parent is visible in the
453 child, even those added while stopped in a vfork
454 catchpoint. This will remove the breakpoints from the
455 parent also, but they'll be reinserted below. */
458 /* Keep breakpoints list in sync. */
459 remove_breakpoints_inf (current_inferior ());
462 if (print_inferior_events
)
464 /* Ensure that we have a process ptid. */
465 ptid_t process_ptid
= ptid_t (child_ptid
.pid ());
467 target_terminal::ours_for_output ();
468 gdb_printf (_("[Detaching after %s from child %s]\n"),
469 has_vforked
? "vfork" : "fork",
470 target_pid_to_str (process_ptid
).c_str ());
475 /* Add process to GDB's tables. */
476 child_inf
= add_inferior (child_ptid
.pid ());
478 child_inf
->attach_flag
= parent_inf
->attach_flag
;
479 copy_terminal_info (child_inf
, parent_inf
);
480 child_inf
->gdbarch
= parent_inf
->gdbarch
;
481 copy_inferior_target_desc_info (child_inf
, parent_inf
);
483 child_inf
->symfile_flags
= SYMFILE_NO_READ
;
485 /* If this is a vfork child, then the address-space is
486 shared with the parent. */
489 child_inf
->pspace
= parent_inf
->pspace
;
490 child_inf
->aspace
= parent_inf
->aspace
;
492 exec_on_vfork (child_inf
);
494 /* The parent will be frozen until the child is done
495 with the shared region. Keep track of the
497 child_inf
->vfork_parent
= parent_inf
;
498 child_inf
->pending_detach
= 0;
499 parent_inf
->vfork_child
= child_inf
;
500 parent_inf
->pending_detach
= 0;
504 child_inf
->aspace
= new address_space ();
505 child_inf
->pspace
= new program_space (child_inf
->aspace
);
506 child_inf
->removable
= 1;
507 clone_program_space (child_inf
->pspace
, parent_inf
->pspace
);
513 /* If we detached from the child, then we have to be careful
514 to not insert breakpoints in the parent until the child
515 is done with the shared memory region. However, if we're
516 staying attached to the child, then we can and should
517 insert breakpoints, so that we can debug it. A
518 subsequent child exec or exit is enough to know when does
519 the child stops using the parent's address space. */
520 parent_inf
->thread_waiting_for_vfork_done
521 = detach_fork
? inferior_thread () : nullptr;
522 parent_inf
->pspace
->breakpoints_not_allowed
= detach_fork
;
527 /* Follow the child. */
529 if (print_inferior_events
)
531 std::string parent_pid
= target_pid_to_str (parent_ptid
);
532 std::string child_pid
= target_pid_to_str (child_ptid
);
534 target_terminal::ours_for_output ();
535 gdb_printf (_("[Attaching after %s %s to child %s]\n"),
537 has_vforked
? "vfork" : "fork",
541 /* Add the new inferior first, so that the target_detach below
542 doesn't unpush the target. */
544 child_inf
= add_inferior (child_ptid
.pid ());
546 child_inf
->attach_flag
= parent_inf
->attach_flag
;
547 copy_terminal_info (child_inf
, parent_inf
);
548 child_inf
->gdbarch
= parent_inf
->gdbarch
;
549 copy_inferior_target_desc_info (child_inf
, parent_inf
);
553 /* If this is a vfork child, then the address-space is shared
555 child_inf
->aspace
= parent_inf
->aspace
;
556 child_inf
->pspace
= parent_inf
->pspace
;
558 exec_on_vfork (child_inf
);
560 else if (detach_fork
)
562 /* We follow the child and detach from the parent: move the parent's
563 program space to the child. This simplifies some things, like
564 doing "next" over fork() and landing on the expected line in the
565 child (note, that is broken with "set detach-on-fork off").
567 Before assigning brand new spaces for the parent, remove
568 breakpoints from it: because the new pspace won't match
569 currently inserted locations, the normal detach procedure
570 wouldn't remove them, and we would leave them inserted when
572 remove_breakpoints_inf (parent_inf
);
574 child_inf
->aspace
= parent_inf
->aspace
;
575 child_inf
->pspace
= parent_inf
->pspace
;
576 parent_inf
->aspace
= new address_space ();
577 parent_inf
->pspace
= new program_space (parent_inf
->aspace
);
578 clone_program_space (parent_inf
->pspace
, child_inf
->pspace
);
580 /* The parent inferior is still the current one, so keep things
582 set_current_program_space (parent_inf
->pspace
);
586 child_inf
->aspace
= new address_space ();
587 child_inf
->pspace
= new program_space (child_inf
->aspace
);
588 child_inf
->removable
= 1;
589 child_inf
->symfile_flags
= SYMFILE_NO_READ
;
590 clone_program_space (child_inf
->pspace
, parent_inf
->pspace
);
594 gdb_assert (current_inferior () == parent_inf
);
596 /* If we are setting up an inferior for the child, target_follow_fork is
597 responsible for pushing the appropriate targets on the new inferior's
598 target stack and adding the initial thread (with ptid CHILD_PTID).
600 If we are not setting up an inferior for the child (because following
601 the parent and detach_fork is true), it is responsible for detaching
603 target_follow_fork (child_inf
, child_ptid
, fork_kind
, follow_child
,
606 /* target_follow_fork must leave the parent as the current inferior. If we
607 want to follow the child, we make it the current one below. */
608 gdb_assert (current_inferior () == parent_inf
);
610 /* If there is a child inferior, target_follow_fork must have created a thread
612 if (child_inf
!= nullptr)
613 gdb_assert (!child_inf
->thread_list
.empty ());
615 /* Clear the parent thread's pending follow field. Do this before calling
616 target_detach, so that the target can differentiate the two following
619 - We continue past a fork with "follow-fork-mode == child" &&
620 "detach-on-fork on", and therefore detach the parent. In that
621 case the target should not detach the fork child.
622 - We run to a fork catchpoint and the user types "detach". In that
623 case, the target should detach the fork child in addition to the
626 The former case will have pending_follow cleared, the later will have
627 pending_follow set. */
628 thread_info
*parent_thread
= find_thread_ptid (parent_inf
, parent_ptid
);
629 gdb_assert (parent_thread
!= nullptr);
630 parent_thread
->pending_follow
.set_spurious ();
632 /* Detach the parent if needed. */
635 /* If we're vforking, we want to hold on to the parent until
636 the child exits or execs. At child exec or exit time we
637 can remove the old breakpoints from the parent and detach
638 or resume debugging it. Otherwise, detach the parent now;
639 we'll want to reuse it's program/address spaces, but we
640 can't set them to the child before removing breakpoints
641 from the parent, otherwise, the breakpoints module could
642 decide to remove breakpoints from the wrong process (since
643 they'd be assigned to the same address space). */
647 gdb_assert (child_inf
->vfork_parent
== NULL
);
648 gdb_assert (parent_inf
->vfork_child
== NULL
);
649 child_inf
->vfork_parent
= parent_inf
;
650 child_inf
->pending_detach
= 0;
651 parent_inf
->vfork_child
= child_inf
;
652 parent_inf
->pending_detach
= detach_fork
;
654 else if (detach_fork
)
656 if (print_inferior_events
)
658 /* Ensure that we have a process ptid. */
659 ptid_t process_ptid
= ptid_t (parent_ptid
.pid ());
661 target_terminal::ours_for_output ();
662 gdb_printf (_("[Detaching after fork from "
664 target_pid_to_str (process_ptid
).c_str ());
667 target_detach (parent_inf
, 0);
671 /* If we ended up creating a new inferior, call post_create_inferior to inform
672 the various subcomponents. */
673 if (child_inf
!= nullptr)
675 /* If FOLLOW_CHILD, we leave CHILD_INF as the current inferior
676 (do not restore the parent as the current inferior). */
677 gdb::optional
<scoped_restore_current_thread
> maybe_restore
;
680 maybe_restore
.emplace ();
682 switch_to_thread (*child_inf
->threads ().begin ());
683 post_create_inferior (0);
689 /* Tell the target to follow the fork we're stopped at. Returns true
690 if the inferior should be resumed; false, if the target for some
691 reason decided it's best not to resume. */
696 bool follow_child
= (follow_fork_mode_string
== follow_fork_mode_child
);
697 bool should_resume
= true;
699 /* Copy user stepping state to the new inferior thread. FIXME: the
700 followed fork child thread should have a copy of most of the
701 parent thread structure's run control related fields, not just these.
702 Initialized to avoid "may be used uninitialized" warnings from gcc. */
703 struct breakpoint
*step_resume_breakpoint
= NULL
;
704 struct breakpoint
*exception_resume_breakpoint
= NULL
;
705 CORE_ADDR step_range_start
= 0;
706 CORE_ADDR step_range_end
= 0;
707 int current_line
= 0;
708 symtab
*current_symtab
= NULL
;
709 struct frame_id step_frame_id
= { 0 };
713 process_stratum_target
*wait_target
;
715 struct target_waitstatus wait_status
;
717 /* Get the last target status returned by target_wait(). */
718 get_last_target_status (&wait_target
, &wait_ptid
, &wait_status
);
720 /* If not stopped at a fork event, then there's nothing else to
722 if (wait_status
.kind () != TARGET_WAITKIND_FORKED
723 && wait_status
.kind () != TARGET_WAITKIND_VFORKED
)
726 /* Check if we switched over from WAIT_PTID, since the event was
728 if (wait_ptid
!= minus_one_ptid
729 && (current_inferior ()->process_target () != wait_target
730 || inferior_ptid
!= wait_ptid
))
732 /* We did. Switch back to WAIT_PTID thread, to tell the
733 target to follow it (in either direction). We'll
734 afterwards refuse to resume, and inform the user what
736 thread_info
*wait_thread
= find_thread_ptid (wait_target
, wait_ptid
);
737 switch_to_thread (wait_thread
);
738 should_resume
= false;
742 thread_info
*tp
= inferior_thread ();
744 /* If there were any forks/vforks that were caught and are now to be
745 followed, then do so now. */
746 switch (tp
->pending_follow
.kind ())
748 case TARGET_WAITKIND_FORKED
:
749 case TARGET_WAITKIND_VFORKED
:
751 ptid_t parent
, child
;
752 std::unique_ptr
<struct thread_fsm
> thread_fsm
;
754 /* If the user did a next/step, etc, over a fork call,
755 preserve the stepping state in the fork child. */
756 if (follow_child
&& should_resume
)
758 step_resume_breakpoint
= clone_momentary_breakpoint
759 (tp
->control
.step_resume_breakpoint
);
760 step_range_start
= tp
->control
.step_range_start
;
761 step_range_end
= tp
->control
.step_range_end
;
762 current_line
= tp
->current_line
;
763 current_symtab
= tp
->current_symtab
;
764 step_frame_id
= tp
->control
.step_frame_id
;
765 exception_resume_breakpoint
766 = clone_momentary_breakpoint (tp
->control
.exception_resume_breakpoint
);
767 thread_fsm
= tp
->release_thread_fsm ();
769 /* For now, delete the parent's sr breakpoint, otherwise,
770 parent/child sr breakpoints are considered duplicates,
771 and the child version will not be installed. Remove
772 this when the breakpoints module becomes aware of
773 inferiors and address spaces. */
774 delete_step_resume_breakpoint (tp
);
775 tp
->control
.step_range_start
= 0;
776 tp
->control
.step_range_end
= 0;
777 tp
->control
.step_frame_id
= null_frame_id
;
778 delete_exception_resume_breakpoint (tp
);
781 parent
= inferior_ptid
;
782 child
= tp
->pending_follow
.child_ptid ();
784 /* If handling a vfork, stop all the inferior's threads, they will be
785 restarted when the vfork shared region is complete. */
786 if (tp
->pending_follow
.kind () == TARGET_WAITKIND_VFORKED
787 && target_is_non_stop_p ())
788 stop_all_threads ("handling vfork", tp
->inf
);
790 process_stratum_target
*parent_targ
= tp
->inf
->process_target ();
791 /* Set up inferior(s) as specified by the caller, and tell the
792 target to do whatever is necessary to follow either parent
794 if (follow_fork_inferior (follow_child
, detach_fork
))
796 /* Target refused to follow, or there's some other reason
797 we shouldn't resume. */
802 /* This makes sure we don't try to apply the "Switched
803 over from WAIT_PID" logic above. */
804 nullify_last_target_wait_ptid ();
806 /* If we followed the child, switch to it... */
809 thread_info
*child_thr
= find_thread_ptid (parent_targ
, child
);
810 switch_to_thread (child_thr
);
812 /* ... and preserve the stepping state, in case the
813 user was stepping over the fork call. */
816 tp
= inferior_thread ();
817 tp
->control
.step_resume_breakpoint
818 = step_resume_breakpoint
;
819 tp
->control
.step_range_start
= step_range_start
;
820 tp
->control
.step_range_end
= step_range_end
;
821 tp
->current_line
= current_line
;
822 tp
->current_symtab
= current_symtab
;
823 tp
->control
.step_frame_id
= step_frame_id
;
824 tp
->control
.exception_resume_breakpoint
825 = exception_resume_breakpoint
;
826 tp
->set_thread_fsm (std::move (thread_fsm
));
830 /* If we get here, it was because we're trying to
831 resume from a fork catchpoint, but, the user
832 has switched threads away from the thread that
833 forked. In that case, the resume command
834 issued is most likely not applicable to the
835 child, so just warn, and refuse to resume. */
836 warning (_("Not resuming: switched threads "
837 "before following fork child."));
840 /* Reset breakpoints in the child as appropriate. */
841 follow_inferior_reset_breakpoints ();
846 case TARGET_WAITKIND_SPURIOUS
:
847 /* Nothing to follow. */
850 internal_error (__FILE__
, __LINE__
,
851 "Unexpected pending_follow.kind %d\n",
852 tp
->pending_follow
.kind ());
856 return should_resume
;
860 follow_inferior_reset_breakpoints (void)
862 struct thread_info
*tp
= inferior_thread ();
864 /* Was there a step_resume breakpoint? (There was if the user
865 did a "next" at the fork() call.) If so, explicitly reset its
866 thread number. Cloned step_resume breakpoints are disabled on
867 creation, so enable it here now that it is associated with the
870 step_resumes are a form of bp that are made to be per-thread.
871 Since we created the step_resume bp when the parent process
872 was being debugged, and now are switching to the child process,
873 from the breakpoint package's viewpoint, that's a switch of
874 "threads". We must update the bp's notion of which thread
875 it is for, or it'll be ignored when it triggers. */
877 if (tp
->control
.step_resume_breakpoint
)
879 breakpoint_re_set_thread (tp
->control
.step_resume_breakpoint
);
880 tp
->control
.step_resume_breakpoint
->loc
->enabled
= 1;
883 /* Treat exception_resume breakpoints like step_resume breakpoints. */
884 if (tp
->control
.exception_resume_breakpoint
)
886 breakpoint_re_set_thread (tp
->control
.exception_resume_breakpoint
);
887 tp
->control
.exception_resume_breakpoint
->loc
->enabled
= 1;
890 /* Reinsert all breakpoints in the child. The user may have set
891 breakpoints after catching the fork, in which case those
892 were never set in the child, but only in the parent. This makes
893 sure the inserted breakpoints match the breakpoint list. */
895 breakpoint_re_set ();
896 insert_breakpoints ();
899 /* The child has exited or execed: resume THREAD, a thread of the parent,
900 if it was meant to be executing. */
903 proceed_after_vfork_done (thread_info
*thread
)
905 if (thread
->state
== THREAD_RUNNING
906 && !thread
->executing ()
907 && !thread
->stop_requested
908 && thread
->stop_signal () == GDB_SIGNAL_0
)
910 infrun_debug_printf ("resuming vfork parent thread %s",
911 thread
->ptid
.to_string ().c_str ());
913 switch_to_thread (thread
);
914 clear_proceed_status (0);
915 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
);
919 /* Called whenever we notice an exec or exit event, to handle
920 detaching or resuming a vfork parent. */
923 handle_vfork_child_exec_or_exit (int exec
)
925 struct inferior
*inf
= current_inferior ();
927 if (inf
->vfork_parent
)
929 inferior
*resume_parent
= nullptr;
931 /* This exec or exit marks the end of the shared memory region
932 between the parent and the child. Break the bonds. */
933 inferior
*vfork_parent
= inf
->vfork_parent
;
934 inf
->vfork_parent
->vfork_child
= NULL
;
935 inf
->vfork_parent
= NULL
;
937 /* If the user wanted to detach from the parent, now is the
939 if (vfork_parent
->pending_detach
)
941 struct program_space
*pspace
;
942 struct address_space
*aspace
;
944 /* follow-fork child, detach-on-fork on. */
946 vfork_parent
->pending_detach
= 0;
948 scoped_restore_current_pspace_and_thread restore_thread
;
950 /* We're letting loose of the parent. */
951 thread_info
*tp
= any_live_thread_of_inferior (vfork_parent
);
952 switch_to_thread (tp
);
954 /* We're about to detach from the parent, which implicitly
955 removes breakpoints from its address space. There's a
956 catch here: we want to reuse the spaces for the child,
957 but, parent/child are still sharing the pspace at this
958 point, although the exec in reality makes the kernel give
959 the child a fresh set of new pages. The problem here is
960 that the breakpoints module being unaware of this, would
961 likely chose the child process to write to the parent
962 address space. Swapping the child temporarily away from
963 the spaces has the desired effect. Yes, this is "sort
966 pspace
= inf
->pspace
;
967 aspace
= inf
->aspace
;
971 if (print_inferior_events
)
974 = target_pid_to_str (ptid_t (vfork_parent
->pid
));
976 target_terminal::ours_for_output ();
980 gdb_printf (_("[Detaching vfork parent %s "
981 "after child exec]\n"), pidstr
.c_str ());
985 gdb_printf (_("[Detaching vfork parent %s "
986 "after child exit]\n"), pidstr
.c_str ());
990 target_detach (vfork_parent
, 0);
993 inf
->pspace
= pspace
;
994 inf
->aspace
= aspace
;
998 /* We're staying attached to the parent, so, really give the
999 child a new address space. */
1000 inf
->pspace
= new program_space (maybe_new_address_space ());
1001 inf
->aspace
= inf
->pspace
->aspace
;
1003 set_current_program_space (inf
->pspace
);
1005 resume_parent
= vfork_parent
;
1009 /* If this is a vfork child exiting, then the pspace and
1010 aspaces were shared with the parent. Since we're
1011 reporting the process exit, we'll be mourning all that is
1012 found in the address space, and switching to null_ptid,
1013 preparing to start a new inferior. But, since we don't
1014 want to clobber the parent's address/program spaces, we
1015 go ahead and create a new one for this exiting
1018 /* Switch to no-thread while running clone_program_space, so
1019 that clone_program_space doesn't want to read the
1020 selected frame of a dead process. */
1021 scoped_restore_current_thread restore_thread
;
1022 switch_to_no_thread ();
1024 inf
->pspace
= new program_space (maybe_new_address_space ());
1025 inf
->aspace
= inf
->pspace
->aspace
;
1026 set_current_program_space (inf
->pspace
);
1028 inf
->symfile_flags
= SYMFILE_NO_READ
;
1029 clone_program_space (inf
->pspace
, vfork_parent
->pspace
);
1031 resume_parent
= vfork_parent
;
1034 gdb_assert (current_program_space
== inf
->pspace
);
1036 if (non_stop
&& resume_parent
!= nullptr)
1038 /* If the user wanted the parent to be running, let it go
1040 scoped_restore_current_thread restore_thread
;
1042 infrun_debug_printf ("resuming vfork parent process %d",
1043 resume_parent
->pid
);
1045 for (thread_info
*thread
: resume_parent
->threads ())
1046 proceed_after_vfork_done (thread
);
1051 /* Handle TARGET_WAITKIND_VFORK_DONE. */
1054 handle_vfork_done (thread_info
*event_thread
)
1056 /* We only care about this event if inferior::thread_waiting_for_vfork_done is
1057 set, that is if we are waiting for a vfork child not under our control
1058 (because we detached it) to exec or exit.
1060 If an inferior has vforked and we are debugging the child, we don't use
1061 the vfork-done event to get notified about the end of the shared address
1062 space window. We rely instead on the child's exec or exit event, and the
1063 inferior::vfork_{parent,child} fields are used instead. See
1064 handle_vfork_child_exec_or_exit for that. */
1065 if (event_thread
->inf
->thread_waiting_for_vfork_done
== nullptr)
1067 infrun_debug_printf ("not waiting for a vfork-done event");
1071 INFRUN_SCOPED_DEBUG_ENTER_EXIT
;
1073 /* We stopped all threads (other than the vforking thread) of the inferior in
1074 follow_fork and kept them stopped until now. It should therefore not be
1075 possible for another thread to have reported a vfork during that window.
1076 If THREAD_WAITING_FOR_VFORK_DONE is set, it has to be the same thread whose
1077 vfork-done we are handling right now. */
1078 gdb_assert (event_thread
->inf
->thread_waiting_for_vfork_done
== event_thread
);
1080 event_thread
->inf
->thread_waiting_for_vfork_done
= nullptr;
1081 event_thread
->inf
->pspace
->breakpoints_not_allowed
= 0;
1083 /* On non-stop targets, we stopped all the inferior's threads in follow_fork,
1084 resume them now. On all-stop targets, everything that needs to be resumed
1085 will be when we resume the event thread. */
1086 if (target_is_non_stop_p ())
1088 /* restart_threads and start_step_over may change the current thread, make
1089 sure we leave the event thread as the current thread. */
1090 scoped_restore_current_thread restore_thread
;
1092 insert_breakpoints ();
1095 if (!step_over_info_valid_p ())
1096 restart_threads (event_thread
, event_thread
->inf
);
1100 /* Enum strings for "set|show follow-exec-mode". */
1102 static const char follow_exec_mode_new
[] = "new";
1103 static const char follow_exec_mode_same
[] = "same";
1104 static const char *const follow_exec_mode_names
[] =
1106 follow_exec_mode_new
,
1107 follow_exec_mode_same
,
1111 static const char *follow_exec_mode_string
= follow_exec_mode_same
;
1113 show_follow_exec_mode_string (struct ui_file
*file
, int from_tty
,
1114 struct cmd_list_element
*c
, const char *value
)
1116 gdb_printf (file
, _("Follow exec mode is \"%s\".\n"), value
);
1119 /* EXEC_FILE_TARGET is assumed to be non-NULL. */
1122 follow_exec (ptid_t ptid
, const char *exec_file_target
)
1124 int pid
= ptid
.pid ();
1125 ptid_t process_ptid
;
1127 /* Switch terminal for any messages produced e.g. by
1128 breakpoint_re_set. */
1129 target_terminal::ours_for_output ();
1131 /* This is an exec event that we actually wish to pay attention to.
1132 Refresh our symbol table to the newly exec'd program, remove any
1133 momentary bp's, etc.
1135 If there are breakpoints, they aren't really inserted now,
1136 since the exec() transformed our inferior into a fresh set
1139 We want to preserve symbolic breakpoints on the list, since
1140 we have hopes that they can be reset after the new a.out's
1141 symbol table is read.
1143 However, any "raw" breakpoints must be removed from the list
1144 (e.g., the solib bp's), since their address is probably invalid
1147 And, we DON'T want to call delete_breakpoints() here, since
1148 that may write the bp's "shadow contents" (the instruction
1149 value that was overwritten with a TRAP instruction). Since
1150 we now have a new a.out, those shadow contents aren't valid. */
1152 mark_breakpoints_out ();
1154 /* The target reports the exec event to the main thread, even if
1155 some other thread does the exec, and even if the main thread was
1156 stopped or already gone. We may still have non-leader threads of
1157 the process on our list. E.g., on targets that don't have thread
1158 exit events (like remote); or on native Linux in non-stop mode if
1159 there were only two threads in the inferior and the non-leader
1160 one is the one that execs (and nothing forces an update of the
1161 thread list up to here). When debugging remotely, it's best to
1162 avoid extra traffic, when possible, so avoid syncing the thread
1163 list with the target, and instead go ahead and delete all threads
1164 of the process but one that reported the event. Note this must
1165 be done before calling update_breakpoints_after_exec, as
1166 otherwise clearing the threads' resources would reference stale
1167 thread breakpoints -- it may have been one of these threads that
1168 stepped across the exec. We could just clear their stepping
1169 states, but as long as we're iterating, might as well delete
1170 them. Deleting them now rather than at the next user-visible
1171 stop provides a nicer sequence of events for user and MI
1173 for (thread_info
*th
: all_threads_safe ())
1174 if (th
->ptid
.pid () == pid
&& th
->ptid
!= ptid
)
1177 /* We also need to clear any left over stale state for the
1178 leader/event thread. E.g., if there was any step-resume
1179 breakpoint or similar, it's gone now. We cannot truly
1180 step-to-next statement through an exec(). */
1181 thread_info
*th
= inferior_thread ();
1182 th
->control
.step_resume_breakpoint
= NULL
;
1183 th
->control
.exception_resume_breakpoint
= NULL
;
1184 th
->control
.single_step_breakpoints
= NULL
;
1185 th
->control
.step_range_start
= 0;
1186 th
->control
.step_range_end
= 0;
1188 /* The user may have had the main thread held stopped in the
1189 previous image (e.g., schedlock on, or non-stop). Release
1191 th
->stop_requested
= 0;
1193 update_breakpoints_after_exec ();
1195 /* What is this a.out's name? */
1196 process_ptid
= ptid_t (pid
);
1197 gdb_printf (_("%s is executing new program: %s\n"),
1198 target_pid_to_str (process_ptid
).c_str (),
1201 /* We've followed the inferior through an exec. Therefore, the
1202 inferior has essentially been killed & reborn. */
1204 breakpoint_init_inferior (inf_execd
);
1206 gdb::unique_xmalloc_ptr
<char> exec_file_host
1207 = exec_file_find (exec_file_target
, NULL
);
1209 /* If we were unable to map the executable target pathname onto a host
1210 pathname, tell the user that. Otherwise GDB's subsequent behavior
1211 is confusing. Maybe it would even be better to stop at this point
1212 so that the user can specify a file manually before continuing. */
1213 if (exec_file_host
== NULL
)
1214 warning (_("Could not load symbols for executable %s.\n"
1215 "Do you need \"set sysroot\"?"),
1218 /* Reset the shared library package. This ensures that we get a
1219 shlib event when the child reaches "_start", at which point the
1220 dld will have had a chance to initialize the child. */
1221 /* Also, loading a symbol file below may trigger symbol lookups, and
1222 we don't want those to be satisfied by the libraries of the
1223 previous incarnation of this process. */
1224 no_shared_libraries (NULL
, 0);
1226 struct inferior
*inf
= current_inferior ();
1228 if (follow_exec_mode_string
== follow_exec_mode_new
)
1230 /* The user wants to keep the old inferior and program spaces
1231 around. Create a new fresh one, and switch to it. */
1233 /* Do exit processing for the original inferior before setting the new
1234 inferior's pid. Having two inferiors with the same pid would confuse
1235 find_inferior_p(t)id. Transfer the terminal state and info from the
1236 old to the new inferior. */
1237 inferior
*new_inferior
= add_inferior_with_spaces ();
1239 swap_terminal_info (new_inferior
, inf
);
1240 exit_inferior_silent (inf
);
1242 new_inferior
->pid
= pid
;
1243 target_follow_exec (new_inferior
, ptid
, exec_file_target
);
1245 /* We continue with the new inferior. */
1250 /* The old description may no longer be fit for the new image.
1251 E.g, a 64-bit process exec'ed a 32-bit process. Clear the
1252 old description; we'll read a new one below. No need to do
1253 this on "follow-exec-mode new", as the old inferior stays
1254 around (its description is later cleared/refetched on
1256 target_clear_description ();
1257 target_follow_exec (inf
, ptid
, exec_file_target
);
1260 gdb_assert (current_inferior () == inf
);
1261 gdb_assert (current_program_space
== inf
->pspace
);
1263 /* Attempt to open the exec file. SYMFILE_DEFER_BP_RESET is used
1264 because the proper displacement for a PIE (Position Independent
1265 Executable) main symbol file will only be computed by
1266 solib_create_inferior_hook below. breakpoint_re_set would fail
1267 to insert the breakpoints with the zero displacement. */
1268 try_open_exec_file (exec_file_host
.get (), inf
, SYMFILE_DEFER_BP_RESET
);
1270 /* If the target can specify a description, read it. Must do this
1271 after flipping to the new executable (because the target supplied
1272 description must be compatible with the executable's
1273 architecture, and the old executable may e.g., be 32-bit, while
1274 the new one 64-bit), and before anything involving memory or
1276 target_find_description ();
1278 gdb::observers::inferior_execd
.notify (inf
);
1280 breakpoint_re_set ();
1282 /* Reinsert all breakpoints. (Those which were symbolic have
1283 been reset to the proper address in the new a.out, thanks
1284 to symbol_file_command...). */
1285 insert_breakpoints ();
1287 /* The next resume of this inferior should bring it to the shlib
1288 startup breakpoints. (If the user had also set bp's on
1289 "main" from the old (parent) process, then they'll auto-
1290 matically get reset there in the new process.). */
1293 /* The chain of threads that need to do a step-over operation to get
1294 past e.g., a breakpoint. What technique is used to step over the
1295 breakpoint/watchpoint does not matter -- all threads end up in the
1296 same queue, to maintain rough temporal order of execution, in order
1297 to avoid starvation, otherwise, we could e.g., find ourselves
1298 constantly stepping the same couple threads past their breakpoints
1299 over and over, if the single-step finish fast enough. */
1300 thread_step_over_list global_thread_step_over_list
;
1302 /* Bit flags indicating what the thread needs to step over. */
1304 enum step_over_what_flag
1306 /* Step over a breakpoint. */
1307 STEP_OVER_BREAKPOINT
= 1,
1309 /* Step past a non-continuable watchpoint, in order to let the
1310 instruction execute so we can evaluate the watchpoint
1312 STEP_OVER_WATCHPOINT
= 2
1314 DEF_ENUM_FLAGS_TYPE (enum step_over_what_flag
, step_over_what
);
1316 /* Info about an instruction that is being stepped over. */
1318 struct step_over_info
1320 /* If we're stepping past a breakpoint, this is the address space
1321 and address of the instruction the breakpoint is set at. We'll
1322 skip inserting all breakpoints here. Valid iff ASPACE is
1324 const address_space
*aspace
= nullptr;
1325 CORE_ADDR address
= 0;
1327 /* The instruction being stepped over triggers a nonsteppable
1328 watchpoint. If true, we'll skip inserting watchpoints. */
1329 int nonsteppable_watchpoint_p
= 0;
1331 /* The thread's global number. */
1335 /* The step-over info of the location that is being stepped over.
1337 Note that with async/breakpoint always-inserted mode, a user might
1338 set a new breakpoint/watchpoint/etc. exactly while a breakpoint is
1339 being stepped over. As setting a new breakpoint inserts all
1340 breakpoints, we need to make sure the breakpoint being stepped over
1341 isn't inserted then. We do that by only clearing the step-over
1342 info when the step-over is actually finished (or aborted).
1344 Presently GDB can only step over one breakpoint at any given time.
1345 Given threads that can't run code in the same address space as the
1346 breakpoint's can't really miss the breakpoint, GDB could be taught
1347 to step-over at most one breakpoint per address space (so this info
1348 could move to the address space object if/when GDB is extended).
1349 The set of breakpoints being stepped over will normally be much
1350 smaller than the set of all breakpoints, so a flag in the
1351 breakpoint location structure would be wasteful. A separate list
1352 also saves complexity and run-time, as otherwise we'd have to go
1353 through all breakpoint locations clearing their flag whenever we
1354 start a new sequence. Similar considerations weigh against storing
1355 this info in the thread object. Plus, not all step overs actually
1356 have breakpoint locations -- e.g., stepping past a single-step
1357 breakpoint, or stepping to complete a non-continuable
1359 static struct step_over_info step_over_info
;
1361 /* Record the address of the breakpoint/instruction we're currently
1363 N.B. We record the aspace and address now, instead of say just the thread,
1364 because when we need the info later the thread may be running. */
1367 set_step_over_info (const address_space
*aspace
, CORE_ADDR address
,
1368 int nonsteppable_watchpoint_p
,
1371 step_over_info
.aspace
= aspace
;
1372 step_over_info
.address
= address
;
1373 step_over_info
.nonsteppable_watchpoint_p
= nonsteppable_watchpoint_p
;
1374 step_over_info
.thread
= thread
;
1377 /* Called when we're not longer stepping over a breakpoint / an
1378 instruction, so all breakpoints are free to be (re)inserted. */
1381 clear_step_over_info (void)
1383 infrun_debug_printf ("clearing step over info");
1384 step_over_info
.aspace
= NULL
;
1385 step_over_info
.address
= 0;
1386 step_over_info
.nonsteppable_watchpoint_p
= 0;
1387 step_over_info
.thread
= -1;
1393 stepping_past_instruction_at (struct address_space
*aspace
,
1396 return (step_over_info
.aspace
!= NULL
1397 && breakpoint_address_match (aspace
, address
,
1398 step_over_info
.aspace
,
1399 step_over_info
.address
));
1405 thread_is_stepping_over_breakpoint (int thread
)
1407 return (step_over_info
.thread
!= -1
1408 && thread
== step_over_info
.thread
);
1414 stepping_past_nonsteppable_watchpoint (void)
1416 return step_over_info
.nonsteppable_watchpoint_p
;
1419 /* Returns true if step-over info is valid. */
1422 step_over_info_valid_p (void)
1424 return (step_over_info
.aspace
!= NULL
1425 || stepping_past_nonsteppable_watchpoint ());
1429 /* Displaced stepping. */
1431 /* In non-stop debugging mode, we must take special care to manage
1432 breakpoints properly; in particular, the traditional strategy for
1433 stepping a thread past a breakpoint it has hit is unsuitable.
1434 'Displaced stepping' is a tactic for stepping one thread past a
1435 breakpoint it has hit while ensuring that other threads running
1436 concurrently will hit the breakpoint as they should.
1438 The traditional way to step a thread T off a breakpoint in a
1439 multi-threaded program in all-stop mode is as follows:
1441 a0) Initially, all threads are stopped, and breakpoints are not
1443 a1) We single-step T, leaving breakpoints uninserted.
1444 a2) We insert breakpoints, and resume all threads.
1446 In non-stop debugging, however, this strategy is unsuitable: we
1447 don't want to have to stop all threads in the system in order to
1448 continue or step T past a breakpoint. Instead, we use displaced
1451 n0) Initially, T is stopped, other threads are running, and
1452 breakpoints are inserted.
1453 n1) We copy the instruction "under" the breakpoint to a separate
1454 location, outside the main code stream, making any adjustments
1455 to the instruction, register, and memory state as directed by
1457 n2) We single-step T over the instruction at its new location.
1458 n3) We adjust the resulting register and memory state as directed
1459 by T's architecture. This includes resetting T's PC to point
1460 back into the main instruction stream.
1463 This approach depends on the following gdbarch methods:
1465 - gdbarch_max_insn_length and gdbarch_displaced_step_location
1466 indicate where to copy the instruction, and how much space must
1467 be reserved there. We use these in step n1.
1469 - gdbarch_displaced_step_copy_insn copies a instruction to a new
1470 address, and makes any necessary adjustments to the instruction,
1471 register contents, and memory. We use this in step n1.
1473 - gdbarch_displaced_step_fixup adjusts registers and memory after
1474 we have successfully single-stepped the instruction, to yield the
1475 same effect the instruction would have had if we had executed it
1476 at its original address. We use this in step n3.
1478 The gdbarch_displaced_step_copy_insn and
1479 gdbarch_displaced_step_fixup functions must be written so that
1480 copying an instruction with gdbarch_displaced_step_copy_insn,
1481 single-stepping across the copied instruction, and then applying
1482 gdbarch_displaced_insn_fixup should have the same effects on the
1483 thread's memory and registers as stepping the instruction in place
1484 would have. Exactly which responsibilities fall to the copy and
1485 which fall to the fixup is up to the author of those functions.
1487 See the comments in gdbarch.sh for details.
1489 Note that displaced stepping and software single-step cannot
1490 currently be used in combination, although with some care I think
1491 they could be made to. Software single-step works by placing
1492 breakpoints on all possible subsequent instructions; if the
1493 displaced instruction is a PC-relative jump, those breakpoints
1494 could fall in very strange places --- on pages that aren't
1495 executable, or at addresses that are not proper instruction
1496 boundaries. (We do generally let other threads run while we wait
1497 to hit the software single-step breakpoint, and they might
1498 encounter such a corrupted instruction.) One way to work around
1499 this would be to have gdbarch_displaced_step_copy_insn fully
1500 simulate the effect of PC-relative instructions (and return NULL)
1501 on architectures that use software single-stepping.
1503 In non-stop mode, we can have independent and simultaneous step
1504 requests, so more than one thread may need to simultaneously step
1505 over a breakpoint. The current implementation assumes there is
1506 only one scratch space per process. In this case, we have to
1507 serialize access to the scratch space. If thread A wants to step
1508 over a breakpoint, but we are currently waiting for some other
1509 thread to complete a displaced step, we leave thread A stopped and
1510 place it in the displaced_step_request_queue. Whenever a displaced
1511 step finishes, we pick the next thread in the queue and start a new
1512 displaced step operation on it. See displaced_step_prepare and
1513 displaced_step_finish for details. */
1515 /* Return true if THREAD is doing a displaced step. */
1518 displaced_step_in_progress_thread (thread_info
*thread
)
1520 gdb_assert (thread
!= NULL
);
1522 return thread
->displaced_step_state
.in_progress ();
1525 /* Return true if INF has a thread doing a displaced step. */
1528 displaced_step_in_progress (inferior
*inf
)
1530 return inf
->displaced_step_state
.in_progress_count
> 0;
1533 /* Return true if any thread is doing a displaced step. */
1536 displaced_step_in_progress_any_thread ()
1538 for (inferior
*inf
: all_non_exited_inferiors ())
1540 if (displaced_step_in_progress (inf
))
1548 infrun_inferior_exit (struct inferior
*inf
)
1550 inf
->displaced_step_state
.reset ();
1551 inf
->thread_waiting_for_vfork_done
= nullptr;
1555 infrun_inferior_execd (inferior
*inf
)
1557 /* If some threads where was doing a displaced step in this inferior at the
1558 moment of the exec, they no longer exist. Even if the exec'ing thread
1559 doing a displaced step, we don't want to to any fixup nor restore displaced
1560 stepping buffer bytes. */
1561 inf
->displaced_step_state
.reset ();
1563 for (thread_info
*thread
: inf
->threads ())
1564 thread
->displaced_step_state
.reset ();
1566 /* Since an in-line step is done with everything else stopped, if there was
1567 one in progress at the time of the exec, it must have been the exec'ing
1569 clear_step_over_info ();
1571 inf
->thread_waiting_for_vfork_done
= nullptr;
1574 /* If ON, and the architecture supports it, GDB will use displaced
1575 stepping to step over breakpoints. If OFF, or if the architecture
1576 doesn't support it, GDB will instead use the traditional
1577 hold-and-step approach. If AUTO (which is the default), GDB will
1578 decide which technique to use to step over breakpoints depending on
1579 whether the target works in a non-stop way (see use_displaced_stepping). */
1581 static enum auto_boolean can_use_displaced_stepping
= AUTO_BOOLEAN_AUTO
;
1584 show_can_use_displaced_stepping (struct ui_file
*file
, int from_tty
,
1585 struct cmd_list_element
*c
,
1588 if (can_use_displaced_stepping
== AUTO_BOOLEAN_AUTO
)
1590 _("Debugger's willingness to use displaced stepping "
1591 "to step over breakpoints is %s (currently %s).\n"),
1592 value
, target_is_non_stop_p () ? "on" : "off");
1595 _("Debugger's willingness to use displaced stepping "
1596 "to step over breakpoints is %s.\n"), value
);
1599 /* Return true if the gdbarch implements the required methods to use
1600 displaced stepping. */
1603 gdbarch_supports_displaced_stepping (gdbarch
*arch
)
1605 /* Only check for the presence of `prepare`. The gdbarch verification ensures
1606 that if `prepare` is provided, so is `finish`. */
1607 return gdbarch_displaced_step_prepare_p (arch
);
1610 /* Return non-zero if displaced stepping can/should be used to step
1611 over breakpoints of thread TP. */
1614 use_displaced_stepping (thread_info
*tp
)
1616 /* If the user disabled it explicitly, don't use displaced stepping. */
1617 if (can_use_displaced_stepping
== AUTO_BOOLEAN_FALSE
)
1620 /* If "auto", only use displaced stepping if the target operates in a non-stop
1622 if (can_use_displaced_stepping
== AUTO_BOOLEAN_AUTO
1623 && !target_is_non_stop_p ())
1626 gdbarch
*gdbarch
= get_thread_regcache (tp
)->arch ();
1628 /* If the architecture doesn't implement displaced stepping, don't use
1630 if (!gdbarch_supports_displaced_stepping (gdbarch
))
1633 /* If recording, don't use displaced stepping. */
1634 if (find_record_target () != nullptr)
1637 /* If displaced stepping failed before for this inferior, don't bother trying
1639 if (tp
->inf
->displaced_step_state
.failed_before
)
1645 /* Simple function wrapper around displaced_step_thread_state::reset. */
1648 displaced_step_reset (displaced_step_thread_state
*displaced
)
1650 displaced
->reset ();
1653 /* A cleanup that wraps displaced_step_reset. We use this instead of, say,
1654 SCOPE_EXIT, because it needs to be discardable with "cleanup.release ()". */
1656 using displaced_step_reset_cleanup
= FORWARD_SCOPE_EXIT (displaced_step_reset
);
1661 displaced_step_dump_bytes (const gdb_byte
*buf
, size_t len
)
1665 for (size_t i
= 0; i
< len
; i
++)
1668 ret
+= string_printf ("%02x", buf
[i
]);
1670 ret
+= string_printf (" %02x", buf
[i
]);
1676 /* Prepare to single-step, using displaced stepping.
1678 Note that we cannot use displaced stepping when we have a signal to
1679 deliver. If we have a signal to deliver and an instruction to step
1680 over, then after the step, there will be no indication from the
1681 target whether the thread entered a signal handler or ignored the
1682 signal and stepped over the instruction successfully --- both cases
1683 result in a simple SIGTRAP. In the first case we mustn't do a
1684 fixup, and in the second case we must --- but we can't tell which.
1685 Comments in the code for 'random signals' in handle_inferior_event
1686 explain how we handle this case instead.
1688 Returns DISPLACED_STEP_PREPARE_STATUS_OK if preparing was successful -- this
1689 thread is going to be stepped now; DISPLACED_STEP_PREPARE_STATUS_UNAVAILABLE
1690 if displaced stepping this thread got queued; or
1691 DISPLACED_STEP_PREPARE_STATUS_CANT if this instruction can't be displaced
1694 static displaced_step_prepare_status
1695 displaced_step_prepare_throw (thread_info
*tp
)
1697 regcache
*regcache
= get_thread_regcache (tp
);
1698 struct gdbarch
*gdbarch
= regcache
->arch ();
1699 displaced_step_thread_state
&disp_step_thread_state
1700 = tp
->displaced_step_state
;
1702 /* We should never reach this function if the architecture does not
1703 support displaced stepping. */
1704 gdb_assert (gdbarch_supports_displaced_stepping (gdbarch
));
1706 /* Nor if the thread isn't meant to step over a breakpoint. */
1707 gdb_assert (tp
->control
.trap_expected
);
1709 /* Disable range stepping while executing in the scratch pad. We
1710 want a single-step even if executing the displaced instruction in
1711 the scratch buffer lands within the stepping range (e.g., a
1713 tp
->control
.may_range_step
= 0;
1715 /* We are about to start a displaced step for this thread. If one is already
1716 in progress, something's wrong. */
1717 gdb_assert (!disp_step_thread_state
.in_progress ());
1719 if (tp
->inf
->displaced_step_state
.unavailable
)
1721 /* The gdbarch tells us it's not worth asking to try a prepare because
1722 it is likely that it will return unavailable, so don't bother asking. */
1724 displaced_debug_printf ("deferring step of %s",
1725 tp
->ptid
.to_string ().c_str ());
1727 global_thread_step_over_chain_enqueue (tp
);
1728 return DISPLACED_STEP_PREPARE_STATUS_UNAVAILABLE
;
1731 displaced_debug_printf ("displaced-stepping %s now",
1732 tp
->ptid
.to_string ().c_str ());
1734 scoped_restore_current_thread restore_thread
;
1736 switch_to_thread (tp
);
1738 CORE_ADDR original_pc
= regcache_read_pc (regcache
);
1739 CORE_ADDR displaced_pc
;
1741 displaced_step_prepare_status status
1742 = gdbarch_displaced_step_prepare (gdbarch
, tp
, displaced_pc
);
1744 if (status
== DISPLACED_STEP_PREPARE_STATUS_CANT
)
1746 displaced_debug_printf ("failed to prepare (%s)",
1747 tp
->ptid
.to_string ().c_str ());
1749 return DISPLACED_STEP_PREPARE_STATUS_CANT
;
1751 else if (status
== DISPLACED_STEP_PREPARE_STATUS_UNAVAILABLE
)
1753 /* Not enough displaced stepping resources available, defer this
1754 request by placing it the queue. */
1756 displaced_debug_printf ("not enough resources available, "
1757 "deferring step of %s",
1758 tp
->ptid
.to_string ().c_str ());
1760 global_thread_step_over_chain_enqueue (tp
);
1762 return DISPLACED_STEP_PREPARE_STATUS_UNAVAILABLE
;
1765 gdb_assert (status
== DISPLACED_STEP_PREPARE_STATUS_OK
);
1767 /* Save the information we need to fix things up if the step
1769 disp_step_thread_state
.set (gdbarch
);
1771 tp
->inf
->displaced_step_state
.in_progress_count
++;
1773 displaced_debug_printf ("prepared successfully thread=%s, "
1774 "original_pc=%s, displaced_pc=%s",
1775 tp
->ptid
.to_string ().c_str (),
1776 paddress (gdbarch
, original_pc
),
1777 paddress (gdbarch
, displaced_pc
));
1779 return DISPLACED_STEP_PREPARE_STATUS_OK
;
1782 /* Wrapper for displaced_step_prepare_throw that disabled further
1783 attempts at displaced stepping if we get a memory error. */
1785 static displaced_step_prepare_status
1786 displaced_step_prepare (thread_info
*thread
)
1788 displaced_step_prepare_status status
1789 = DISPLACED_STEP_PREPARE_STATUS_CANT
;
1793 status
= displaced_step_prepare_throw (thread
);
1795 catch (const gdb_exception_error
&ex
)
1797 if (ex
.error
!= MEMORY_ERROR
1798 && ex
.error
!= NOT_SUPPORTED_ERROR
)
1801 infrun_debug_printf ("caught exception, disabling displaced stepping: %s",
1804 /* Be verbose if "set displaced-stepping" is "on", silent if
1806 if (can_use_displaced_stepping
== AUTO_BOOLEAN_TRUE
)
1808 warning (_("disabling displaced stepping: %s"),
1812 /* Disable further displaced stepping attempts. */
1813 thread
->inf
->displaced_step_state
.failed_before
= 1;
1819 /* If we displaced stepped an instruction successfully, adjust registers and
1820 memory to yield the same effect the instruction would have had if we had
1821 executed it at its original address, and return
1822 DISPLACED_STEP_FINISH_STATUS_OK. If the instruction didn't complete,
1823 relocate the PC and return DISPLACED_STEP_FINISH_STATUS_NOT_EXECUTED.
1825 If the thread wasn't displaced stepping, return
1826 DISPLACED_STEP_FINISH_STATUS_OK as well. */
1828 static displaced_step_finish_status
1829 displaced_step_finish (thread_info
*event_thread
, enum gdb_signal signal
)
1831 displaced_step_thread_state
*displaced
= &event_thread
->displaced_step_state
;
1833 /* Was this thread performing a displaced step? */
1834 if (!displaced
->in_progress ())
1835 return DISPLACED_STEP_FINISH_STATUS_OK
;
1837 gdb_assert (event_thread
->inf
->displaced_step_state
.in_progress_count
> 0);
1838 event_thread
->inf
->displaced_step_state
.in_progress_count
--;
1840 /* Fixup may need to read memory/registers. Switch to the thread
1841 that we're fixing up. Also, target_stopped_by_watchpoint checks
1842 the current thread, and displaced_step_restore performs ptid-dependent
1843 memory accesses using current_inferior(). */
1844 switch_to_thread (event_thread
);
1846 displaced_step_reset_cleanup
cleanup (displaced
);
1848 /* Do the fixup, and release the resources acquired to do the displaced
1850 return gdbarch_displaced_step_finish (displaced
->get_original_gdbarch (),
1851 event_thread
, signal
);
1854 /* Data to be passed around while handling an event. This data is
1855 discarded between events. */
1856 struct execution_control_state
1858 execution_control_state ()
1865 this->target
= nullptr;
1866 this->ptid
= null_ptid
;
1867 this->event_thread
= nullptr;
1868 ws
= target_waitstatus ();
1869 stop_func_filled_in
= 0;
1870 stop_func_start
= 0;
1872 stop_func_name
= nullptr;
1874 hit_singlestep_breakpoint
= 0;
1877 process_stratum_target
*target
;
1879 /* The thread that got the event, if this was a thread event; NULL
1881 struct thread_info
*event_thread
;
1883 struct target_waitstatus ws
;
1884 int stop_func_filled_in
;
1885 CORE_ADDR stop_func_start
;
1886 CORE_ADDR stop_func_end
;
1887 const char *stop_func_name
;
1890 /* True if the event thread hit the single-step breakpoint of
1891 another thread. Thus the event doesn't cause a stop, the thread
1892 needs to be single-stepped past the single-step breakpoint before
1893 we can switch back to the original stepping thread. */
1894 int hit_singlestep_breakpoint
;
1897 /* Clear ECS and set it to point at TP. */
1900 reset_ecs (struct execution_control_state
*ecs
, struct thread_info
*tp
)
1903 ecs
->event_thread
= tp
;
1904 ecs
->ptid
= tp
->ptid
;
1907 static void keep_going_pass_signal (struct execution_control_state
*ecs
);
1908 static void prepare_to_wait (struct execution_control_state
*ecs
);
1909 static bool keep_going_stepped_thread (struct thread_info
*tp
);
1910 static step_over_what
thread_still_needs_step_over (struct thread_info
*tp
);
1912 /* Are there any pending step-over requests? If so, run all we can
1913 now and return true. Otherwise, return false. */
1916 start_step_over (void)
1918 INFRUN_SCOPED_DEBUG_ENTER_EXIT
;
1920 /* Don't start a new step-over if we already have an in-line
1921 step-over operation ongoing. */
1922 if (step_over_info_valid_p ())
1925 /* Steal the global thread step over chain. As we try to initiate displaced
1926 steps, threads will be enqueued in the global chain if no buffers are
1927 available. If we iterated on the global chain directly, we might iterate
1929 thread_step_over_list threads_to_step
1930 = std::move (global_thread_step_over_list
);
1932 infrun_debug_printf ("stealing global queue of threads to step, length = %d",
1933 thread_step_over_chain_length (threads_to_step
));
1935 bool started
= false;
1937 /* On scope exit (whatever the reason, return or exception), if there are
1938 threads left in the THREADS_TO_STEP chain, put back these threads in the
1942 if (threads_to_step
.empty ())
1943 infrun_debug_printf ("step-over queue now empty");
1946 infrun_debug_printf ("putting back %d threads to step in global queue",
1947 thread_step_over_chain_length (threads_to_step
));
1949 global_thread_step_over_chain_enqueue_chain
1950 (std::move (threads_to_step
));
1954 thread_step_over_list_safe_range range
1955 = make_thread_step_over_list_safe_range (threads_to_step
);
1957 for (thread_info
*tp
: range
)
1959 struct execution_control_state ecss
;
1960 struct execution_control_state
*ecs
= &ecss
;
1961 step_over_what step_what
;
1962 int must_be_in_line
;
1964 gdb_assert (!tp
->stop_requested
);
1966 if (tp
->inf
->displaced_step_state
.unavailable
)
1968 /* The arch told us to not even try preparing another displaced step
1969 for this inferior. Just leave the thread in THREADS_TO_STEP, it
1970 will get moved to the global chain on scope exit. */
1974 if (tp
->inf
->thread_waiting_for_vfork_done
!= nullptr)
1976 /* When we stop all threads, handling a vfork, any thread in the step
1977 over chain remains there. A user could also try to continue a
1978 thread stopped at a breakpoint while another thread is waiting for
1979 a vfork-done event. In any case, we don't want to start a step
1984 /* Remove thread from the THREADS_TO_STEP chain. If anything goes wrong
1985 while we try to prepare the displaced step, we don't add it back to
1986 the global step over chain. This is to avoid a thread staying in the
1987 step over chain indefinitely if something goes wrong when resuming it
1988 If the error is intermittent and it still needs a step over, it will
1989 get enqueued again when we try to resume it normally. */
1990 threads_to_step
.erase (threads_to_step
.iterator_to (*tp
));
1992 step_what
= thread_still_needs_step_over (tp
);
1993 must_be_in_line
= ((step_what
& STEP_OVER_WATCHPOINT
)
1994 || ((step_what
& STEP_OVER_BREAKPOINT
)
1995 && !use_displaced_stepping (tp
)));
1997 /* We currently stop all threads of all processes to step-over
1998 in-line. If we need to start a new in-line step-over, let
1999 any pending displaced steps finish first. */
2000 if (must_be_in_line
&& displaced_step_in_progress_any_thread ())
2002 global_thread_step_over_chain_enqueue (tp
);
2006 if (tp
->control
.trap_expected
2008 || tp
->executing ())
2010 internal_error (__FILE__
, __LINE__
,
2011 "[%s] has inconsistent state: "
2012 "trap_expected=%d, resumed=%d, executing=%d\n",
2013 tp
->ptid
.to_string ().c_str (),
2014 tp
->control
.trap_expected
,
2019 infrun_debug_printf ("resuming [%s] for step-over",
2020 tp
->ptid
.to_string ().c_str ());
2022 /* keep_going_pass_signal skips the step-over if the breakpoint
2023 is no longer inserted. In all-stop, we want to keep looking
2024 for a thread that needs a step-over instead of resuming TP,
2025 because we wouldn't be able to resume anything else until the
2026 target stops again. In non-stop, the resume always resumes
2027 only TP, so it's OK to let the thread resume freely. */
2028 if (!target_is_non_stop_p () && !step_what
)
2031 switch_to_thread (tp
);
2032 reset_ecs (ecs
, tp
);
2033 keep_going_pass_signal (ecs
);
2035 if (!ecs
->wait_some_more
)
2036 error (_("Command aborted."));
2038 /* If the thread's step over could not be initiated because no buffers
2039 were available, it was re-added to the global step over chain. */
2042 infrun_debug_printf ("[%s] was resumed.",
2043 tp
->ptid
.to_string ().c_str ());
2044 gdb_assert (!thread_is_in_step_over_chain (tp
));
2048 infrun_debug_printf ("[%s] was NOT resumed.",
2049 tp
->ptid
.to_string ().c_str ());
2050 gdb_assert (thread_is_in_step_over_chain (tp
));
2053 /* If we started a new in-line step-over, we're done. */
2054 if (step_over_info_valid_p ())
2056 gdb_assert (tp
->control
.trap_expected
);
2061 if (!target_is_non_stop_p ())
2063 /* On all-stop, shouldn't have resumed unless we needed a
2065 gdb_assert (tp
->control
.trap_expected
2066 || tp
->step_after_step_resume_breakpoint
);
2068 /* With remote targets (at least), in all-stop, we can't
2069 issue any further remote commands until the program stops
2075 /* Either the thread no longer needed a step-over, or a new
2076 displaced stepping sequence started. Even in the latter
2077 case, continue looking. Maybe we can also start another
2078 displaced step on a thread of other process. */
2084 /* Update global variables holding ptids to hold NEW_PTID if they were
2085 holding OLD_PTID. */
2087 infrun_thread_ptid_changed (process_stratum_target
*target
,
2088 ptid_t old_ptid
, ptid_t new_ptid
)
2090 if (inferior_ptid
== old_ptid
2091 && current_inferior ()->process_target () == target
)
2092 inferior_ptid
= new_ptid
;
2097 static const char schedlock_off
[] = "off";
2098 static const char schedlock_on
[] = "on";
2099 static const char schedlock_step
[] = "step";
2100 static const char schedlock_replay
[] = "replay";
2101 static const char *const scheduler_enums
[] = {
2108 static const char *scheduler_mode
= schedlock_replay
;
2110 show_scheduler_mode (struct ui_file
*file
, int from_tty
,
2111 struct cmd_list_element
*c
, const char *value
)
2114 _("Mode for locking scheduler "
2115 "during execution is \"%s\".\n"),
2120 set_schedlock_func (const char *args
, int from_tty
, struct cmd_list_element
*c
)
2122 if (!target_can_lock_scheduler ())
2124 scheduler_mode
= schedlock_off
;
2125 error (_("Target '%s' cannot support this command."),
2126 target_shortname ());
2130 /* True if execution commands resume all threads of all processes by
2131 default; otherwise, resume only threads of the current inferior
2133 bool sched_multi
= false;
2135 /* Try to setup for software single stepping. Return true if target_resume()
2136 should use hardware single step.
2138 GDBARCH the current gdbarch. */
2141 maybe_software_singlestep (struct gdbarch
*gdbarch
)
2143 bool hw_step
= true;
2145 if (execution_direction
== EXEC_FORWARD
2146 && gdbarch_software_single_step_p (gdbarch
))
2147 hw_step
= !insert_single_step_breakpoints (gdbarch
);
2155 user_visible_resume_ptid (int step
)
2161 /* With non-stop mode on, threads are always handled
2163 resume_ptid
= inferior_ptid
;
2165 else if ((scheduler_mode
== schedlock_on
)
2166 || (scheduler_mode
== schedlock_step
&& step
))
2168 /* User-settable 'scheduler' mode requires solo thread
2170 resume_ptid
= inferior_ptid
;
2172 else if ((scheduler_mode
== schedlock_replay
)
2173 && target_record_will_replay (minus_one_ptid
, execution_direction
))
2175 /* User-settable 'scheduler' mode requires solo thread resume in replay
2177 resume_ptid
= inferior_ptid
;
2179 else if (!sched_multi
&& target_supports_multi_process ())
2181 /* Resume all threads of the current process (and none of other
2183 resume_ptid
= ptid_t (inferior_ptid
.pid ());
2187 /* Resume all threads of all processes. */
2188 resume_ptid
= RESUME_ALL
;
2196 process_stratum_target
*
2197 user_visible_resume_target (ptid_t resume_ptid
)
2199 return (resume_ptid
== minus_one_ptid
&& sched_multi
2201 : current_inferior ()->process_target ());
2204 /* Return a ptid representing the set of threads that we will resume,
2205 in the perspective of the target, assuming run control handling
2206 does not require leaving some threads stopped (e.g., stepping past
2207 breakpoint). USER_STEP indicates whether we're about to start the
2208 target for a stepping command. */
2211 internal_resume_ptid (int user_step
)
2213 /* In non-stop, we always control threads individually. Note that
2214 the target may always work in non-stop mode even with "set
2215 non-stop off", in which case user_visible_resume_ptid could
2216 return a wildcard ptid. */
2217 if (target_is_non_stop_p ())
2218 return inferior_ptid
;
2220 /* The rest of the function assumes non-stop==off and
2221 target-non-stop==off.
2223 If a thread is waiting for a vfork-done event, it means breakpoints are out
2224 for this inferior (well, program space in fact). We don't want to resume
2225 any thread other than the one waiting for vfork done, otherwise these other
2226 threads could miss breakpoints. So if a thread in the resumption set is
2227 waiting for a vfork-done event, resume only that thread.
2229 The resumption set width depends on whether schedule-multiple is on or off.
2231 Note that if the target_resume interface was more flexible, we could be
2232 smarter here when schedule-multiple is on. For example, imagine 3
2233 inferiors with 2 threads each (1.1, 1.2, 2.1, 2.2, 3.1 and 3.2). Threads
2234 2.1 and 3.2 are both waiting for a vfork-done event. Then we could ask the
2235 target(s) to resume:
2237 - All threads of inferior 1
2241 Since we don't have that flexibility (we can only pass one ptid), just
2242 resume the first thread waiting for a vfork-done event we find (e.g. thread
2246 for (inferior
*inf
: all_non_exited_inferiors ())
2247 if (inf
->thread_waiting_for_vfork_done
!= nullptr)
2248 return inf
->thread_waiting_for_vfork_done
->ptid
;
2250 else if (current_inferior ()->thread_waiting_for_vfork_done
!= nullptr)
2251 return current_inferior ()->thread_waiting_for_vfork_done
->ptid
;
2253 return user_visible_resume_ptid (user_step
);
2256 /* Wrapper for target_resume, that handles infrun-specific
2260 do_target_resume (ptid_t resume_ptid
, bool step
, enum gdb_signal sig
)
2262 struct thread_info
*tp
= inferior_thread ();
2264 gdb_assert (!tp
->stop_requested
);
2266 /* Install inferior's terminal modes. */
2267 target_terminal::inferior ();
2269 /* Avoid confusing the next resume, if the next stop/resume
2270 happens to apply to another thread. */
2271 tp
->set_stop_signal (GDB_SIGNAL_0
);
2273 /* Advise target which signals may be handled silently.
2275 If we have removed breakpoints because we are stepping over one
2276 in-line (in any thread), we need to receive all signals to avoid
2277 accidentally skipping a breakpoint during execution of a signal
2280 Likewise if we're displaced stepping, otherwise a trap for a
2281 breakpoint in a signal handler might be confused with the
2282 displaced step finishing. We don't make the displaced_step_finish
2283 step distinguish the cases instead, because:
2285 - a backtrace while stopped in the signal handler would show the
2286 scratch pad as frame older than the signal handler, instead of
2287 the real mainline code.
2289 - when the thread is later resumed, the signal handler would
2290 return to the scratch pad area, which would no longer be
2292 if (step_over_info_valid_p ()
2293 || displaced_step_in_progress (tp
->inf
))
2294 target_pass_signals ({});
2296 target_pass_signals (signal_pass
);
2298 infrun_debug_printf ("resume_ptid=%s, step=%d, sig=%s",
2299 resume_ptid
.to_string ().c_str (),
2300 step
, gdb_signal_to_symbol_string (sig
));
2302 target_resume (resume_ptid
, step
, sig
);
2305 /* Resume the inferior. SIG is the signal to give the inferior
2306 (GDB_SIGNAL_0 for none). Note: don't call this directly; instead
2307 call 'resume', which handles exceptions. */
2310 resume_1 (enum gdb_signal sig
)
2312 struct regcache
*regcache
= get_current_regcache ();
2313 struct gdbarch
*gdbarch
= regcache
->arch ();
2314 struct thread_info
*tp
= inferior_thread ();
2315 const address_space
*aspace
= regcache
->aspace ();
2317 /* This represents the user's step vs continue request. When
2318 deciding whether "set scheduler-locking step" applies, it's the
2319 user's intention that counts. */
2320 const int user_step
= tp
->control
.stepping_command
;
2321 /* This represents what we'll actually request the target to do.
2322 This can decay from a step to a continue, if e.g., we need to
2323 implement single-stepping with breakpoints (software
2327 gdb_assert (!tp
->stop_requested
);
2328 gdb_assert (!thread_is_in_step_over_chain (tp
));
2330 if (tp
->has_pending_waitstatus ())
2333 ("thread %s has pending wait "
2334 "status %s (currently_stepping=%d).",
2335 tp
->ptid
.to_string ().c_str (),
2336 tp
->pending_waitstatus ().to_string ().c_str (),
2337 currently_stepping (tp
));
2339 tp
->inf
->process_target ()->threads_executing
= true;
2340 tp
->set_resumed (true);
2342 /* FIXME: What should we do if we are supposed to resume this
2343 thread with a signal? Maybe we should maintain a queue of
2344 pending signals to deliver. */
2345 if (sig
!= GDB_SIGNAL_0
)
2347 warning (_("Couldn't deliver signal %s to %s."),
2348 gdb_signal_to_name (sig
),
2349 tp
->ptid
.to_string ().c_str ());
2352 tp
->set_stop_signal (GDB_SIGNAL_0
);
2354 if (target_can_async_p ())
2356 target_async (true);
2357 /* Tell the event loop we have an event to process. */
2358 mark_async_event_handler (infrun_async_inferior_event_token
);
2363 tp
->stepped_breakpoint
= 0;
2365 /* Depends on stepped_breakpoint. */
2366 step
= currently_stepping (tp
);
2368 if (current_inferior ()->thread_waiting_for_vfork_done
!= nullptr)
2370 /* Don't try to single-step a vfork parent that is waiting for
2371 the child to get out of the shared memory region (by exec'ing
2372 or exiting). This is particularly important on software
2373 single-step archs, as the child process would trip on the
2374 software single step breakpoint inserted for the parent
2375 process. Since the parent will not actually execute any
2376 instruction until the child is out of the shared region (such
2377 are vfork's semantics), it is safe to simply continue it.
2378 Eventually, we'll see a TARGET_WAITKIND_VFORK_DONE event for
2379 the parent, and tell it to `keep_going', which automatically
2380 re-sets it stepping. */
2381 infrun_debug_printf ("resume : clear step");
2385 CORE_ADDR pc
= regcache_read_pc (regcache
);
2387 infrun_debug_printf ("step=%d, signal=%s, trap_expected=%d, "
2388 "current thread [%s] at %s",
2389 step
, gdb_signal_to_symbol_string (sig
),
2390 tp
->control
.trap_expected
,
2391 inferior_ptid
.to_string ().c_str (),
2392 paddress (gdbarch
, pc
));
2394 /* Normally, by the time we reach `resume', the breakpoints are either
2395 removed or inserted, as appropriate. The exception is if we're sitting
2396 at a permanent breakpoint; we need to step over it, but permanent
2397 breakpoints can't be removed. So we have to test for it here. */
2398 if (breakpoint_here_p (aspace
, pc
) == permanent_breakpoint_here
)
2400 if (sig
!= GDB_SIGNAL_0
)
2402 /* We have a signal to pass to the inferior. The resume
2403 may, or may not take us to the signal handler. If this
2404 is a step, we'll need to stop in the signal handler, if
2405 there's one, (if the target supports stepping into
2406 handlers), or in the next mainline instruction, if
2407 there's no handler. If this is a continue, we need to be
2408 sure to run the handler with all breakpoints inserted.
2409 In all cases, set a breakpoint at the current address
2410 (where the handler returns to), and once that breakpoint
2411 is hit, resume skipping the permanent breakpoint. If
2412 that breakpoint isn't hit, then we've stepped into the
2413 signal handler (or hit some other event). We'll delete
2414 the step-resume breakpoint then. */
2416 infrun_debug_printf ("resume: skipping permanent breakpoint, "
2417 "deliver signal first");
2419 clear_step_over_info ();
2420 tp
->control
.trap_expected
= 0;
2422 if (tp
->control
.step_resume_breakpoint
== NULL
)
2424 /* Set a "high-priority" step-resume, as we don't want
2425 user breakpoints at PC to trigger (again) when this
2427 insert_hp_step_resume_breakpoint_at_frame (get_current_frame ());
2428 gdb_assert (tp
->control
.step_resume_breakpoint
->loc
->permanent
);
2430 tp
->step_after_step_resume_breakpoint
= step
;
2433 insert_breakpoints ();
2437 /* There's no signal to pass, we can go ahead and skip the
2438 permanent breakpoint manually. */
2439 infrun_debug_printf ("skipping permanent breakpoint");
2440 gdbarch_skip_permanent_breakpoint (gdbarch
, regcache
);
2441 /* Update pc to reflect the new address from which we will
2442 execute instructions. */
2443 pc
= regcache_read_pc (regcache
);
2447 /* We've already advanced the PC, so the stepping part
2448 is done. Now we need to arrange for a trap to be
2449 reported to handle_inferior_event. Set a breakpoint
2450 at the current PC, and run to it. Don't update
2451 prev_pc, because if we end in
2452 switch_back_to_stepped_thread, we want the "expected
2453 thread advanced also" branch to be taken. IOW, we
2454 don't want this thread to step further from PC
2456 gdb_assert (!step_over_info_valid_p ());
2457 insert_single_step_breakpoint (gdbarch
, aspace
, pc
);
2458 insert_breakpoints ();
2460 resume_ptid
= internal_resume_ptid (user_step
);
2461 do_target_resume (resume_ptid
, false, GDB_SIGNAL_0
);
2462 tp
->set_resumed (true);
2468 /* If we have a breakpoint to step over, make sure to do a single
2469 step only. Same if we have software watchpoints. */
2470 if (tp
->control
.trap_expected
|| bpstat_should_step ())
2471 tp
->control
.may_range_step
= 0;
2473 /* If displaced stepping is enabled, step over breakpoints by executing a
2474 copy of the instruction at a different address.
2476 We can't use displaced stepping when we have a signal to deliver;
2477 the comments for displaced_step_prepare explain why. The
2478 comments in the handle_inferior event for dealing with 'random
2479 signals' explain what we do instead.
2481 We can't use displaced stepping when we are waiting for vfork_done
2482 event, displaced stepping breaks the vfork child similarly as single
2483 step software breakpoint. */
2484 if (tp
->control
.trap_expected
2485 && use_displaced_stepping (tp
)
2486 && !step_over_info_valid_p ()
2487 && sig
== GDB_SIGNAL_0
2488 && current_inferior ()->thread_waiting_for_vfork_done
== nullptr)
2490 displaced_step_prepare_status prepare_status
2491 = displaced_step_prepare (tp
);
2493 if (prepare_status
== DISPLACED_STEP_PREPARE_STATUS_UNAVAILABLE
)
2495 infrun_debug_printf ("Got placed in step-over queue");
2497 tp
->control
.trap_expected
= 0;
2500 else if (prepare_status
== DISPLACED_STEP_PREPARE_STATUS_CANT
)
2502 /* Fallback to stepping over the breakpoint in-line. */
2504 if (target_is_non_stop_p ())
2505 stop_all_threads ("displaced stepping falling back on inline stepping");
2507 set_step_over_info (regcache
->aspace (),
2508 regcache_read_pc (regcache
), 0, tp
->global_num
);
2510 step
= maybe_software_singlestep (gdbarch
);
2512 insert_breakpoints ();
2514 else if (prepare_status
== DISPLACED_STEP_PREPARE_STATUS_OK
)
2516 /* Update pc to reflect the new address from which we will
2517 execute instructions due to displaced stepping. */
2518 pc
= regcache_read_pc (get_thread_regcache (tp
));
2520 step
= gdbarch_displaced_step_hw_singlestep (gdbarch
);
2523 gdb_assert_not_reached ("Invalid displaced_step_prepare_status "
2527 /* Do we need to do it the hard way, w/temp breakpoints? */
2529 step
= maybe_software_singlestep (gdbarch
);
2531 /* Currently, our software single-step implementation leads to different
2532 results than hardware single-stepping in one situation: when stepping
2533 into delivering a signal which has an associated signal handler,
2534 hardware single-step will stop at the first instruction of the handler,
2535 while software single-step will simply skip execution of the handler.
2537 For now, this difference in behavior is accepted since there is no
2538 easy way to actually implement single-stepping into a signal handler
2539 without kernel support.
2541 However, there is one scenario where this difference leads to follow-on
2542 problems: if we're stepping off a breakpoint by removing all breakpoints
2543 and then single-stepping. In this case, the software single-step
2544 behavior means that even if there is a *breakpoint* in the signal
2545 handler, GDB still would not stop.
2547 Fortunately, we can at least fix this particular issue. We detect
2548 here the case where we are about to deliver a signal while software
2549 single-stepping with breakpoints removed. In this situation, we
2550 revert the decisions to remove all breakpoints and insert single-
2551 step breakpoints, and instead we install a step-resume breakpoint
2552 at the current address, deliver the signal without stepping, and
2553 once we arrive back at the step-resume breakpoint, actually step
2554 over the breakpoint we originally wanted to step over. */
2555 if (thread_has_single_step_breakpoints_set (tp
)
2556 && sig
!= GDB_SIGNAL_0
2557 && step_over_info_valid_p ())
2559 /* If we have nested signals or a pending signal is delivered
2560 immediately after a handler returns, might already have
2561 a step-resume breakpoint set on the earlier handler. We cannot
2562 set another step-resume breakpoint; just continue on until the
2563 original breakpoint is hit. */
2564 if (tp
->control
.step_resume_breakpoint
== NULL
)
2566 insert_hp_step_resume_breakpoint_at_frame (get_current_frame ());
2567 tp
->step_after_step_resume_breakpoint
= 1;
2570 delete_single_step_breakpoints (tp
);
2572 clear_step_over_info ();
2573 tp
->control
.trap_expected
= 0;
2575 insert_breakpoints ();
2578 /* If STEP is set, it's a request to use hardware stepping
2579 facilities. But in that case, we should never
2580 use singlestep breakpoint. */
2581 gdb_assert (!(thread_has_single_step_breakpoints_set (tp
) && step
));
2583 /* Decide the set of threads to ask the target to resume. */
2584 if (tp
->control
.trap_expected
)
2586 /* We're allowing a thread to run past a breakpoint it has
2587 hit, either by single-stepping the thread with the breakpoint
2588 removed, or by displaced stepping, with the breakpoint inserted.
2589 In the former case, we need to single-step only this thread,
2590 and keep others stopped, as they can miss this breakpoint if
2591 allowed to run. That's not really a problem for displaced
2592 stepping, but, we still keep other threads stopped, in case
2593 another thread is also stopped for a breakpoint waiting for
2594 its turn in the displaced stepping queue. */
2595 resume_ptid
= inferior_ptid
;
2598 resume_ptid
= internal_resume_ptid (user_step
);
2600 if (execution_direction
!= EXEC_REVERSE
2601 && step
&& breakpoint_inserted_here_p (aspace
, pc
))
2603 /* There are two cases where we currently need to step a
2604 breakpoint instruction when we have a signal to deliver:
2606 - See handle_signal_stop where we handle random signals that
2607 could take out us out of the stepping range. Normally, in
2608 that case we end up continuing (instead of stepping) over the
2609 signal handler with a breakpoint at PC, but there are cases
2610 where we should _always_ single-step, even if we have a
2611 step-resume breakpoint, like when a software watchpoint is
2612 set. Assuming single-stepping and delivering a signal at the
2613 same time would takes us to the signal handler, then we could
2614 have removed the breakpoint at PC to step over it. However,
2615 some hardware step targets (like e.g., Mac OS) can't step
2616 into signal handlers, and for those, we need to leave the
2617 breakpoint at PC inserted, as otherwise if the handler
2618 recurses and executes PC again, it'll miss the breakpoint.
2619 So we leave the breakpoint inserted anyway, but we need to
2620 record that we tried to step a breakpoint instruction, so
2621 that adjust_pc_after_break doesn't end up confused.
2623 - In non-stop if we insert a breakpoint (e.g., a step-resume)
2624 in one thread after another thread that was stepping had been
2625 momentarily paused for a step-over. When we re-resume the
2626 stepping thread, it may be resumed from that address with a
2627 breakpoint that hasn't trapped yet. Seen with
2628 gdb.threads/non-stop-fair-events.exp, on targets that don't
2629 do displaced stepping. */
2631 infrun_debug_printf ("resume: [%s] stepped breakpoint",
2632 tp
->ptid
.to_string ().c_str ());
2634 tp
->stepped_breakpoint
= 1;
2636 /* Most targets can step a breakpoint instruction, thus
2637 executing it normally. But if this one cannot, just
2638 continue and we will hit it anyway. */
2639 if (gdbarch_cannot_step_breakpoint (gdbarch
))
2644 && tp
->control
.trap_expected
2645 && use_displaced_stepping (tp
)
2646 && !step_over_info_valid_p ())
2648 struct regcache
*resume_regcache
= get_thread_regcache (tp
);
2649 struct gdbarch
*resume_gdbarch
= resume_regcache
->arch ();
2650 CORE_ADDR actual_pc
= regcache_read_pc (resume_regcache
);
2653 read_memory (actual_pc
, buf
, sizeof (buf
));
2654 displaced_debug_printf ("run %s: %s",
2655 paddress (resume_gdbarch
, actual_pc
),
2656 displaced_step_dump_bytes
2657 (buf
, sizeof (buf
)).c_str ());
2660 if (tp
->control
.may_range_step
)
2662 /* If we're resuming a thread with the PC out of the step
2663 range, then we're doing some nested/finer run control
2664 operation, like stepping the thread out of the dynamic
2665 linker or the displaced stepping scratch pad. We
2666 shouldn't have allowed a range step then. */
2667 gdb_assert (pc_in_thread_step_range (pc
, tp
));
2670 do_target_resume (resume_ptid
, step
, sig
);
2671 tp
->set_resumed (true);
2674 /* Resume the inferior. SIG is the signal to give the inferior
2675 (GDB_SIGNAL_0 for none). This is a wrapper around 'resume_1' that
2676 rolls back state on error. */
2679 resume (gdb_signal sig
)
2685 catch (const gdb_exception
&ex
)
2687 /* If resuming is being aborted for any reason, delete any
2688 single-step breakpoint resume_1 may have created, to avoid
2689 confusing the following resumption, and to avoid leaving
2690 single-step breakpoints perturbing other threads, in case
2691 we're running in non-stop mode. */
2692 if (inferior_ptid
!= null_ptid
)
2693 delete_single_step_breakpoints (inferior_thread ());
2703 /* Counter that tracks number of user visible stops. This can be used
2704 to tell whether a command has proceeded the inferior past the
2705 current location. This allows e.g., inferior function calls in
2706 breakpoint commands to not interrupt the command list. When the
2707 call finishes successfully, the inferior is standing at the same
2708 breakpoint as if nothing happened (and so we don't call
2710 static ULONGEST current_stop_id
;
2717 return current_stop_id
;
2720 /* Called when we report a user visible stop. */
2728 /* Clear out all variables saying what to do when inferior is continued.
2729 First do this, then set the ones you want, then call `proceed'. */
2732 clear_proceed_status_thread (struct thread_info
*tp
)
2734 infrun_debug_printf ("%s", tp
->ptid
.to_string ().c_str ());
2736 /* If we're starting a new sequence, then the previous finished
2737 single-step is no longer relevant. */
2738 if (tp
->has_pending_waitstatus ())
2740 if (tp
->stop_reason () == TARGET_STOPPED_BY_SINGLE_STEP
)
2742 infrun_debug_printf ("pending event of %s was a finished step. "
2744 tp
->ptid
.to_string ().c_str ());
2746 tp
->clear_pending_waitstatus ();
2747 tp
->set_stop_reason (TARGET_STOPPED_BY_NO_REASON
);
2752 ("thread %s has pending wait status %s (currently_stepping=%d).",
2753 tp
->ptid
.to_string ().c_str (),
2754 tp
->pending_waitstatus ().to_string ().c_str (),
2755 currently_stepping (tp
));
2759 /* If this signal should not be seen by program, give it zero.
2760 Used for debugging signals. */
2761 if (!signal_pass_state (tp
->stop_signal ()))
2762 tp
->set_stop_signal (GDB_SIGNAL_0
);
2764 tp
->release_thread_fsm ();
2766 tp
->control
.trap_expected
= 0;
2767 tp
->control
.step_range_start
= 0;
2768 tp
->control
.step_range_end
= 0;
2769 tp
->control
.may_range_step
= 0;
2770 tp
->control
.step_frame_id
= null_frame_id
;
2771 tp
->control
.step_stack_frame_id
= null_frame_id
;
2772 tp
->control
.step_over_calls
= STEP_OVER_UNDEBUGGABLE
;
2773 tp
->control
.step_start_function
= NULL
;
2774 tp
->stop_requested
= 0;
2776 tp
->control
.stop_step
= 0;
2778 tp
->control
.proceed_to_finish
= 0;
2780 tp
->control
.stepping_command
= 0;
2782 /* Discard any remaining commands or status from previous stop. */
2783 bpstat_clear (&tp
->control
.stop_bpstat
);
2787 clear_proceed_status (int step
)
2789 /* With scheduler-locking replay, stop replaying other threads if we're
2790 not replaying the user-visible resume ptid.
2792 This is a convenience feature to not require the user to explicitly
2793 stop replaying the other threads. We're assuming that the user's
2794 intent is to resume tracing the recorded process. */
2795 if (!non_stop
&& scheduler_mode
== schedlock_replay
2796 && target_record_is_replaying (minus_one_ptid
)
2797 && !target_record_will_replay (user_visible_resume_ptid (step
),
2798 execution_direction
))
2799 target_record_stop_replaying ();
2801 if (!non_stop
&& inferior_ptid
!= null_ptid
)
2803 ptid_t resume_ptid
= user_visible_resume_ptid (step
);
2804 process_stratum_target
*resume_target
2805 = user_visible_resume_target (resume_ptid
);
2807 /* In all-stop mode, delete the per-thread status of all threads
2808 we're about to resume, implicitly and explicitly. */
2809 for (thread_info
*tp
: all_non_exited_threads (resume_target
, resume_ptid
))
2810 clear_proceed_status_thread (tp
);
2813 if (inferior_ptid
!= null_ptid
)
2815 struct inferior
*inferior
;
2819 /* If in non-stop mode, only delete the per-thread status of
2820 the current thread. */
2821 clear_proceed_status_thread (inferior_thread ());
2824 inferior
= current_inferior ();
2825 inferior
->control
.stop_soon
= NO_STOP_QUIETLY
;
2828 gdb::observers::about_to_proceed
.notify ();
2831 /* Returns true if TP is still stopped at a breakpoint that needs
2832 stepping-over in order to make progress. If the breakpoint is gone
2833 meanwhile, we can skip the whole step-over dance. */
2836 thread_still_needs_step_over_bp (struct thread_info
*tp
)
2838 if (tp
->stepping_over_breakpoint
)
2840 struct regcache
*regcache
= get_thread_regcache (tp
);
2842 if (breakpoint_here_p (regcache
->aspace (),
2843 regcache_read_pc (regcache
))
2844 == ordinary_breakpoint_here
)
2847 tp
->stepping_over_breakpoint
= 0;
2853 /* Check whether thread TP still needs to start a step-over in order
2854 to make progress when resumed. Returns an bitwise or of enum
2855 step_over_what bits, indicating what needs to be stepped over. */
2857 static step_over_what
2858 thread_still_needs_step_over (struct thread_info
*tp
)
2860 step_over_what what
= 0;
2862 if (thread_still_needs_step_over_bp (tp
))
2863 what
|= STEP_OVER_BREAKPOINT
;
2865 if (tp
->stepping_over_watchpoint
2866 && !target_have_steppable_watchpoint ())
2867 what
|= STEP_OVER_WATCHPOINT
;
2872 /* Returns true if scheduler locking applies. STEP indicates whether
2873 we're about to do a step/next-like command to a thread. */
2876 schedlock_applies (struct thread_info
*tp
)
2878 return (scheduler_mode
== schedlock_on
2879 || (scheduler_mode
== schedlock_step
2880 && tp
->control
.stepping_command
)
2881 || (scheduler_mode
== schedlock_replay
2882 && target_record_will_replay (minus_one_ptid
,
2883 execution_direction
)));
2886 /* Set process_stratum_target::COMMIT_RESUMED_STATE in all target
2887 stacks that have threads executing and don't have threads with
2891 maybe_set_commit_resumed_all_targets ()
2893 scoped_restore_current_thread restore_thread
;
2895 for (inferior
*inf
: all_non_exited_inferiors ())
2897 process_stratum_target
*proc_target
= inf
->process_target ();
2899 if (proc_target
->commit_resumed_state
)
2901 /* We already set this in a previous iteration, via another
2902 inferior sharing the process_stratum target. */
2906 /* If the target has no resumed threads, it would be useless to
2907 ask it to commit the resumed threads. */
2908 if (!proc_target
->threads_executing
)
2910 infrun_debug_printf ("not requesting commit-resumed for target "
2911 "%s, no resumed threads",
2912 proc_target
->shortname ());
2916 /* As an optimization, if a thread from this target has some
2917 status to report, handle it before requiring the target to
2918 commit its resumed threads: handling the status might lead to
2919 resuming more threads. */
2920 if (proc_target
->has_resumed_with_pending_wait_status ())
2922 infrun_debug_printf ("not requesting commit-resumed for target %s, a"
2923 " thread has a pending waitstatus",
2924 proc_target
->shortname ());
2928 switch_to_inferior_no_thread (inf
);
2930 if (target_has_pending_events ())
2932 infrun_debug_printf ("not requesting commit-resumed for target %s, "
2933 "target has pending events",
2934 proc_target
->shortname ());
2938 infrun_debug_printf ("enabling commit-resumed for target %s",
2939 proc_target
->shortname ());
2941 proc_target
->commit_resumed_state
= true;
2948 maybe_call_commit_resumed_all_targets ()
2950 scoped_restore_current_thread restore_thread
;
2952 for (inferior
*inf
: all_non_exited_inferiors ())
2954 process_stratum_target
*proc_target
= inf
->process_target ();
2956 if (!proc_target
->commit_resumed_state
)
2959 switch_to_inferior_no_thread (inf
);
2961 infrun_debug_printf ("calling commit_resumed for target %s",
2962 proc_target
->shortname());
2964 target_commit_resumed ();
2968 /* To track nesting of scoped_disable_commit_resumed objects, ensuring
2969 that only the outermost one attempts to re-enable
2971 static bool enable_commit_resumed
= true;
2975 scoped_disable_commit_resumed::scoped_disable_commit_resumed
2976 (const char *reason
)
2977 : m_reason (reason
),
2978 m_prev_enable_commit_resumed (enable_commit_resumed
)
2980 infrun_debug_printf ("reason=%s", m_reason
);
2982 enable_commit_resumed
= false;
2984 for (inferior
*inf
: all_non_exited_inferiors ())
2986 process_stratum_target
*proc_target
= inf
->process_target ();
2988 if (m_prev_enable_commit_resumed
)
2990 /* This is the outermost instance: force all
2991 COMMIT_RESUMED_STATE to false. */
2992 proc_target
->commit_resumed_state
= false;
2996 /* This is not the outermost instance, we expect
2997 COMMIT_RESUMED_STATE to have been cleared by the
2998 outermost instance. */
2999 gdb_assert (!proc_target
->commit_resumed_state
);
3007 scoped_disable_commit_resumed::reset ()
3013 infrun_debug_printf ("reason=%s", m_reason
);
3015 gdb_assert (!enable_commit_resumed
);
3017 enable_commit_resumed
= m_prev_enable_commit_resumed
;
3019 if (m_prev_enable_commit_resumed
)
3021 /* This is the outermost instance, re-enable
3022 COMMIT_RESUMED_STATE on the targets where it's possible. */
3023 maybe_set_commit_resumed_all_targets ();
3027 /* This is not the outermost instance, we expect
3028 COMMIT_RESUMED_STATE to still be false. */
3029 for (inferior
*inf
: all_non_exited_inferiors ())
3031 process_stratum_target
*proc_target
= inf
->process_target ();
3032 gdb_assert (!proc_target
->commit_resumed_state
);
3039 scoped_disable_commit_resumed::~scoped_disable_commit_resumed ()
3047 scoped_disable_commit_resumed::reset_and_commit ()
3050 maybe_call_commit_resumed_all_targets ();
3055 scoped_enable_commit_resumed::scoped_enable_commit_resumed
3056 (const char *reason
)
3057 : m_reason (reason
),
3058 m_prev_enable_commit_resumed (enable_commit_resumed
)
3060 infrun_debug_printf ("reason=%s", m_reason
);
3062 if (!enable_commit_resumed
)
3064 enable_commit_resumed
= true;
3066 /* Re-enable COMMIT_RESUMED_STATE on the targets where it's
3068 maybe_set_commit_resumed_all_targets ();
3070 maybe_call_commit_resumed_all_targets ();
3076 scoped_enable_commit_resumed::~scoped_enable_commit_resumed ()
3078 infrun_debug_printf ("reason=%s", m_reason
);
3080 gdb_assert (enable_commit_resumed
);
3082 enable_commit_resumed
= m_prev_enable_commit_resumed
;
3084 if (!enable_commit_resumed
)
3086 /* Force all COMMIT_RESUMED_STATE back to false. */
3087 for (inferior
*inf
: all_non_exited_inferiors ())
3089 process_stratum_target
*proc_target
= inf
->process_target ();
3090 proc_target
->commit_resumed_state
= false;
3095 /* Check that all the targets we're about to resume are in non-stop
3096 mode. Ideally, we'd only care whether all targets support
3097 target-async, but we're not there yet. E.g., stop_all_threads
3098 doesn't know how to handle all-stop targets. Also, the remote
3099 protocol in all-stop mode is synchronous, irrespective of
3100 target-async, which means that things like a breakpoint re-set
3101 triggered by one target would try to read memory from all targets
3105 check_multi_target_resumption (process_stratum_target
*resume_target
)
3107 if (!non_stop
&& resume_target
== nullptr)
3109 scoped_restore_current_thread restore_thread
;
3111 /* This is used to track whether we're resuming more than one
3113 process_stratum_target
*first_connection
= nullptr;
3115 /* The first inferior we see with a target that does not work in
3116 always-non-stop mode. */
3117 inferior
*first_not_non_stop
= nullptr;
3119 for (inferior
*inf
: all_non_exited_inferiors ())
3121 switch_to_inferior_no_thread (inf
);
3123 if (!target_has_execution ())
3126 process_stratum_target
*proc_target
3127 = current_inferior ()->process_target();
3129 if (!target_is_non_stop_p ())
3130 first_not_non_stop
= inf
;
3132 if (first_connection
== nullptr)
3133 first_connection
= proc_target
;
3134 else if (first_connection
!= proc_target
3135 && first_not_non_stop
!= nullptr)
3137 switch_to_inferior_no_thread (first_not_non_stop
);
3139 proc_target
= current_inferior ()->process_target();
3141 error (_("Connection %d (%s) does not support "
3142 "multi-target resumption."),
3143 proc_target
->connection_number
,
3144 make_target_connection_string (proc_target
).c_str ());
3150 /* Basic routine for continuing the program in various fashions.
3152 ADDR is the address to resume at, or -1 for resume where stopped.
3153 SIGGNAL is the signal to give it, or GDB_SIGNAL_0 for none,
3154 or GDB_SIGNAL_DEFAULT for act according to how it stopped.
3156 You should call clear_proceed_status before calling proceed. */
3159 proceed (CORE_ADDR addr
, enum gdb_signal siggnal
)
3161 INFRUN_SCOPED_DEBUG_ENTER_EXIT
;
3163 struct regcache
*regcache
;
3164 struct gdbarch
*gdbarch
;
3166 struct execution_control_state ecss
;
3167 struct execution_control_state
*ecs
= &ecss
;
3169 /* If we're stopped at a fork/vfork, follow the branch set by the
3170 "set follow-fork-mode" command; otherwise, we'll just proceed
3171 resuming the current thread. */
3172 if (!follow_fork ())
3174 /* The target for some reason decided not to resume. */
3176 if (target_can_async_p ())
3177 inferior_event_handler (INF_EXEC_COMPLETE
);
3181 /* We'll update this if & when we switch to a new thread. */
3182 previous_inferior_ptid
= inferior_ptid
;
3184 regcache
= get_current_regcache ();
3185 gdbarch
= regcache
->arch ();
3186 const address_space
*aspace
= regcache
->aspace ();
3188 pc
= regcache_read_pc_protected (regcache
);
3190 thread_info
*cur_thr
= inferior_thread ();
3192 /* Fill in with reasonable starting values. */
3193 init_thread_stepping_state (cur_thr
);
3195 gdb_assert (!thread_is_in_step_over_chain (cur_thr
));
3198 = user_visible_resume_ptid (cur_thr
->control
.stepping_command
);
3199 process_stratum_target
*resume_target
3200 = user_visible_resume_target (resume_ptid
);
3202 check_multi_target_resumption (resume_target
);
3204 if (addr
== (CORE_ADDR
) -1)
3206 if (cur_thr
->stop_pc_p ()
3207 && pc
== cur_thr
->stop_pc ()
3208 && breakpoint_here_p (aspace
, pc
) == ordinary_breakpoint_here
3209 && execution_direction
!= EXEC_REVERSE
)
3210 /* There is a breakpoint at the address we will resume at,
3211 step one instruction before inserting breakpoints so that
3212 we do not stop right away (and report a second hit at this
3215 Note, we don't do this in reverse, because we won't
3216 actually be executing the breakpoint insn anyway.
3217 We'll be (un-)executing the previous instruction. */
3218 cur_thr
->stepping_over_breakpoint
= 1;
3219 else if (gdbarch_single_step_through_delay_p (gdbarch
)
3220 && gdbarch_single_step_through_delay (gdbarch
,
3221 get_current_frame ()))
3222 /* We stepped onto an instruction that needs to be stepped
3223 again before re-inserting the breakpoint, do so. */
3224 cur_thr
->stepping_over_breakpoint
= 1;
3228 regcache_write_pc (regcache
, addr
);
3231 if (siggnal
!= GDB_SIGNAL_DEFAULT
)
3232 cur_thr
->set_stop_signal (siggnal
);
3234 /* If an exception is thrown from this point on, make sure to
3235 propagate GDB's knowledge of the executing state to the
3236 frontend/user running state. */
3237 scoped_finish_thread_state
finish_state (resume_target
, resume_ptid
);
3239 /* Even if RESUME_PTID is a wildcard, and we end up resuming fewer
3240 threads (e.g., we might need to set threads stepping over
3241 breakpoints first), from the user/frontend's point of view, all
3242 threads in RESUME_PTID are now running. Unless we're calling an
3243 inferior function, as in that case we pretend the inferior
3244 doesn't run at all. */
3245 if (!cur_thr
->control
.in_infcall
)
3246 set_running (resume_target
, resume_ptid
, true);
3248 infrun_debug_printf ("addr=%s, signal=%s", paddress (gdbarch
, addr
),
3249 gdb_signal_to_symbol_string (siggnal
));
3251 annotate_starting ();
3253 /* Make sure that output from GDB appears before output from the
3255 gdb_flush (gdb_stdout
);
3257 /* Since we've marked the inferior running, give it the terminal. A
3258 QUIT/Ctrl-C from here on is forwarded to the target (which can
3259 still detect attempts to unblock a stuck connection with repeated
3260 Ctrl-C from within target_pass_ctrlc). */
3261 target_terminal::inferior ();
3263 /* In a multi-threaded task we may select another thread and
3264 then continue or step.
3266 But if a thread that we're resuming had stopped at a breakpoint,
3267 it will immediately cause another breakpoint stop without any
3268 execution (i.e. it will report a breakpoint hit incorrectly). So
3269 we must step over it first.
3271 Look for threads other than the current (TP) that reported a
3272 breakpoint hit and haven't been resumed yet since. */
3274 /* If scheduler locking applies, we can avoid iterating over all
3276 if (!non_stop
&& !schedlock_applies (cur_thr
))
3278 for (thread_info
*tp
: all_non_exited_threads (resume_target
,
3281 switch_to_thread_no_regs (tp
);
3283 /* Ignore the current thread here. It's handled
3288 if (!thread_still_needs_step_over (tp
))
3291 gdb_assert (!thread_is_in_step_over_chain (tp
));
3293 infrun_debug_printf ("need to step-over [%s] first",
3294 tp
->ptid
.to_string ().c_str ());
3296 global_thread_step_over_chain_enqueue (tp
);
3299 switch_to_thread (cur_thr
);
3302 /* Enqueue the current thread last, so that we move all other
3303 threads over their breakpoints first. */
3304 if (cur_thr
->stepping_over_breakpoint
)
3305 global_thread_step_over_chain_enqueue (cur_thr
);
3307 /* If the thread isn't started, we'll still need to set its prev_pc,
3308 so that switch_back_to_stepped_thread knows the thread hasn't
3309 advanced. Must do this before resuming any thread, as in
3310 all-stop/remote, once we resume we can't send any other packet
3311 until the target stops again. */
3312 cur_thr
->prev_pc
= regcache_read_pc_protected (regcache
);
3315 scoped_disable_commit_resumed
disable_commit_resumed ("proceeding");
3316 bool step_over_started
= start_step_over ();
3318 if (step_over_info_valid_p ())
3320 /* Either this thread started a new in-line step over, or some
3321 other thread was already doing one. In either case, don't
3322 resume anything else until the step-over is finished. */
3324 else if (step_over_started
&& !target_is_non_stop_p ())
3326 /* A new displaced stepping sequence was started. In all-stop,
3327 we can't talk to the target anymore until it next stops. */
3329 else if (!non_stop
&& target_is_non_stop_p ())
3331 INFRUN_SCOPED_DEBUG_START_END
3332 ("resuming threads, all-stop-on-top-of-non-stop");
3334 /* In all-stop, but the target is always in non-stop mode.
3335 Start all other threads that are implicitly resumed too. */
3336 for (thread_info
*tp
: all_non_exited_threads (resume_target
,
3339 switch_to_thread_no_regs (tp
);
3341 if (!tp
->inf
->has_execution ())
3343 infrun_debug_printf ("[%s] target has no execution",
3344 tp
->ptid
.to_string ().c_str ());
3350 infrun_debug_printf ("[%s] resumed",
3351 tp
->ptid
.to_string ().c_str ());
3352 gdb_assert (tp
->executing () || tp
->has_pending_waitstatus ());
3356 if (thread_is_in_step_over_chain (tp
))
3358 infrun_debug_printf ("[%s] needs step-over",
3359 tp
->ptid
.to_string ().c_str ());
3363 /* If a thread of that inferior is waiting for a vfork-done
3364 (for a detached vfork child to exec or exit), breakpoints are
3365 removed. We must not resume any thread of that inferior, other
3366 than the one waiting for the vfork-done. */
3367 if (tp
->inf
->thread_waiting_for_vfork_done
!= nullptr
3368 && tp
!= tp
->inf
->thread_waiting_for_vfork_done
)
3370 infrun_debug_printf ("[%s] another thread of this inferior is "
3371 "waiting for vfork-done",
3372 tp
->ptid
.to_string ().c_str ());
3376 infrun_debug_printf ("resuming %s",
3377 tp
->ptid
.to_string ().c_str ());
3379 reset_ecs (ecs
, tp
);
3380 switch_to_thread (tp
);
3381 keep_going_pass_signal (ecs
);
3382 if (!ecs
->wait_some_more
)
3383 error (_("Command aborted."));
3386 else if (!cur_thr
->resumed ()
3387 && !thread_is_in_step_over_chain (cur_thr
)
3388 /* In non-stop, forbid resuming a thread if some other thread of
3389 that inferior is waiting for a vfork-done event (this means
3390 breakpoints are out for this inferior). */
3392 && cur_thr
->inf
->thread_waiting_for_vfork_done
!= nullptr))
3394 /* The thread wasn't started, and isn't queued, run it now. */
3395 reset_ecs (ecs
, cur_thr
);
3396 switch_to_thread (cur_thr
);
3397 keep_going_pass_signal (ecs
);
3398 if (!ecs
->wait_some_more
)
3399 error (_("Command aborted."));
3402 disable_commit_resumed
.reset_and_commit ();
3405 finish_state
.release ();
3407 /* If we've switched threads above, switch back to the previously
3408 current thread. We don't want the user to see a different
3410 switch_to_thread (cur_thr
);
3412 /* Tell the event loop to wait for it to stop. If the target
3413 supports asynchronous execution, it'll do this from within
3415 if (!target_can_async_p ())
3416 mark_async_event_handler (infrun_async_inferior_event_token
);
3420 /* Start remote-debugging of a machine over a serial link. */
3423 start_remote (int from_tty
)
3425 inferior
*inf
= current_inferior ();
3426 inf
->control
.stop_soon
= STOP_QUIETLY_REMOTE
;
3428 /* Always go on waiting for the target, regardless of the mode. */
3429 /* FIXME: cagney/1999-09-23: At present it isn't possible to
3430 indicate to wait_for_inferior that a target should timeout if
3431 nothing is returned (instead of just blocking). Because of this,
3432 targets expecting an immediate response need to, internally, set
3433 things up so that the target_wait() is forced to eventually
3435 /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
3436 differentiate to its caller what the state of the target is after
3437 the initial open has been performed. Here we're assuming that
3438 the target has stopped. It should be possible to eventually have
3439 target_open() return to the caller an indication that the target
3440 is currently running and GDB state should be set to the same as
3441 for an async run. */
3442 wait_for_inferior (inf
);
3444 /* Now that the inferior has stopped, do any bookkeeping like
3445 loading shared libraries. We want to do this before normal_stop,
3446 so that the displayed frame is up to date. */
3447 post_create_inferior (from_tty
);
3452 /* Initialize static vars when a new inferior begins. */
3455 init_wait_for_inferior (void)
3457 /* These are meaningless until the first time through wait_for_inferior. */
3459 breakpoint_init_inferior (inf_starting
);
3461 clear_proceed_status (0);
3463 nullify_last_target_wait_ptid ();
3465 previous_inferior_ptid
= inferior_ptid
;
3470 static void handle_inferior_event (struct execution_control_state
*ecs
);
3472 static void handle_step_into_function (struct gdbarch
*gdbarch
,
3473 struct execution_control_state
*ecs
);
3474 static void handle_step_into_function_backward (struct gdbarch
*gdbarch
,
3475 struct execution_control_state
*ecs
);
3476 static void handle_signal_stop (struct execution_control_state
*ecs
);
3477 static void check_exception_resume (struct execution_control_state
*,
3478 struct frame_info
*);
3480 static void end_stepping_range (struct execution_control_state
*ecs
);
3481 static void stop_waiting (struct execution_control_state
*ecs
);
3482 static void keep_going (struct execution_control_state
*ecs
);
3483 static void process_event_stop_test (struct execution_control_state
*ecs
);
3484 static bool switch_back_to_stepped_thread (struct execution_control_state
*ecs
);
3486 /* This function is attached as a "thread_stop_requested" observer.
3487 Cleanup local state that assumed the PTID was to be resumed, and
3488 report the stop to the frontend. */
3491 infrun_thread_stop_requested (ptid_t ptid
)
3493 process_stratum_target
*curr_target
= current_inferior ()->process_target ();
3495 /* PTID was requested to stop. If the thread was already stopped,
3496 but the user/frontend doesn't know about that yet (e.g., the
3497 thread had been temporarily paused for some step-over), set up
3498 for reporting the stop now. */
3499 for (thread_info
*tp
: all_threads (curr_target
, ptid
))
3501 if (tp
->state
!= THREAD_RUNNING
)
3503 if (tp
->executing ())
3506 /* Remove matching threads from the step-over queue, so
3507 start_step_over doesn't try to resume them
3509 if (thread_is_in_step_over_chain (tp
))
3510 global_thread_step_over_chain_remove (tp
);
3512 /* If the thread is stopped, but the user/frontend doesn't
3513 know about that yet, queue a pending event, as if the
3514 thread had just stopped now. Unless the thread already had
3516 if (!tp
->has_pending_waitstatus ())
3518 target_waitstatus ws
;
3519 ws
.set_stopped (GDB_SIGNAL_0
);
3520 tp
->set_pending_waitstatus (ws
);
3523 /* Clear the inline-frame state, since we're re-processing the
3525 clear_inline_frame_state (tp
);
3527 /* If this thread was paused because some other thread was
3528 doing an inline-step over, let that finish first. Once
3529 that happens, we'll restart all threads and consume pending
3530 stop events then. */
3531 if (step_over_info_valid_p ())
3534 /* Otherwise we can process the (new) pending event now. Set
3535 it so this pending event is considered by
3537 tp
->set_resumed (true);
3542 infrun_thread_thread_exit (struct thread_info
*tp
, int silent
)
3544 if (target_last_proc_target
== tp
->inf
->process_target ()
3545 && target_last_wait_ptid
== tp
->ptid
)
3546 nullify_last_target_wait_ptid ();
3549 /* Delete the step resume, single-step and longjmp/exception resume
3550 breakpoints of TP. */
3553 delete_thread_infrun_breakpoints (struct thread_info
*tp
)
3555 delete_step_resume_breakpoint (tp
);
3556 delete_exception_resume_breakpoint (tp
);
3557 delete_single_step_breakpoints (tp
);
3560 /* If the target still has execution, call FUNC for each thread that
3561 just stopped. In all-stop, that's all the non-exited threads; in
3562 non-stop, that's the current thread, only. */
3564 typedef void (*for_each_just_stopped_thread_callback_func
)
3565 (struct thread_info
*tp
);
3568 for_each_just_stopped_thread (for_each_just_stopped_thread_callback_func func
)
3570 if (!target_has_execution () || inferior_ptid
== null_ptid
)
3573 if (target_is_non_stop_p ())
3575 /* If in non-stop mode, only the current thread stopped. */
3576 func (inferior_thread ());
3580 /* In all-stop mode, all threads have stopped. */
3581 for (thread_info
*tp
: all_non_exited_threads ())
3586 /* Delete the step resume and longjmp/exception resume breakpoints of
3587 the threads that just stopped. */
3590 delete_just_stopped_threads_infrun_breakpoints (void)
3592 for_each_just_stopped_thread (delete_thread_infrun_breakpoints
);
3595 /* Delete the single-step breakpoints of the threads that just
3599 delete_just_stopped_threads_single_step_breakpoints (void)
3601 for_each_just_stopped_thread (delete_single_step_breakpoints
);
3607 print_target_wait_results (ptid_t waiton_ptid
, ptid_t result_ptid
,
3608 const struct target_waitstatus
&ws
)
3610 infrun_debug_printf ("target_wait (%s [%s], status) =",
3611 waiton_ptid
.to_string ().c_str (),
3612 target_pid_to_str (waiton_ptid
).c_str ());
3613 infrun_debug_printf (" %s [%s],",
3614 result_ptid
.to_string ().c_str (),
3615 target_pid_to_str (result_ptid
).c_str ());
3616 infrun_debug_printf (" %s", ws
.to_string ().c_str ());
3619 /* Select a thread at random, out of those which are resumed and have
3622 static struct thread_info
*
3623 random_pending_event_thread (inferior
*inf
, ptid_t waiton_ptid
)
3625 process_stratum_target
*proc_target
= inf
->process_target ();
3627 = proc_target
->random_resumed_with_pending_wait_status (inf
, waiton_ptid
);
3629 if (thread
== nullptr)
3631 infrun_debug_printf ("None found.");
3635 infrun_debug_printf ("Found %s.", thread
->ptid
.to_string ().c_str ());
3636 gdb_assert (thread
->resumed ());
3637 gdb_assert (thread
->has_pending_waitstatus ());
3642 /* Wrapper for target_wait that first checks whether threads have
3643 pending statuses to report before actually asking the target for
3644 more events. INF is the inferior we're using to call target_wait
3648 do_target_wait_1 (inferior
*inf
, ptid_t ptid
,
3649 target_waitstatus
*status
, target_wait_flags options
)
3651 struct thread_info
*tp
;
3653 /* We know that we are looking for an event in the target of inferior
3654 INF, but we don't know which thread the event might come from. As
3655 such we want to make sure that INFERIOR_PTID is reset so that none of
3656 the wait code relies on it - doing so is always a mistake. */
3657 switch_to_inferior_no_thread (inf
);
3659 /* First check if there is a resumed thread with a wait status
3661 if (ptid
== minus_one_ptid
|| ptid
.is_pid ())
3663 tp
= random_pending_event_thread (inf
, ptid
);
3667 infrun_debug_printf ("Waiting for specific thread %s.",
3668 ptid
.to_string ().c_str ());
3670 /* We have a specific thread to check. */
3671 tp
= find_thread_ptid (inf
, ptid
);
3672 gdb_assert (tp
!= NULL
);
3673 if (!tp
->has_pending_waitstatus ())
3678 && (tp
->stop_reason () == TARGET_STOPPED_BY_SW_BREAKPOINT
3679 || tp
->stop_reason () == TARGET_STOPPED_BY_HW_BREAKPOINT
))
3681 struct regcache
*regcache
= get_thread_regcache (tp
);
3682 struct gdbarch
*gdbarch
= regcache
->arch ();
3686 pc
= regcache_read_pc (regcache
);
3688 if (pc
!= tp
->stop_pc ())
3690 infrun_debug_printf ("PC of %s changed. was=%s, now=%s",
3691 tp
->ptid
.to_string ().c_str (),
3692 paddress (gdbarch
, tp
->stop_pc ()),
3693 paddress (gdbarch
, pc
));
3696 else if (!breakpoint_inserted_here_p (regcache
->aspace (), pc
))
3698 infrun_debug_printf ("previous breakpoint of %s, at %s gone",
3699 tp
->ptid
.to_string ().c_str (),
3700 paddress (gdbarch
, pc
));
3707 infrun_debug_printf ("pending event of %s cancelled.",
3708 tp
->ptid
.to_string ().c_str ());
3710 tp
->clear_pending_waitstatus ();
3711 target_waitstatus ws
;
3713 tp
->set_pending_waitstatus (ws
);
3714 tp
->set_stop_reason (TARGET_STOPPED_BY_NO_REASON
);
3720 infrun_debug_printf ("Using pending wait status %s for %s.",
3721 tp
->pending_waitstatus ().to_string ().c_str (),
3722 tp
->ptid
.to_string ().c_str ());
3724 /* Now that we've selected our final event LWP, un-adjust its PC
3725 if it was a software breakpoint (and the target doesn't
3726 always adjust the PC itself). */
3727 if (tp
->stop_reason () == TARGET_STOPPED_BY_SW_BREAKPOINT
3728 && !target_supports_stopped_by_sw_breakpoint ())
3730 struct regcache
*regcache
;
3731 struct gdbarch
*gdbarch
;
3734 regcache
= get_thread_regcache (tp
);
3735 gdbarch
= regcache
->arch ();
3737 decr_pc
= gdbarch_decr_pc_after_break (gdbarch
);
3742 pc
= regcache_read_pc (regcache
);
3743 regcache_write_pc (regcache
, pc
+ decr_pc
);
3747 tp
->set_stop_reason (TARGET_STOPPED_BY_NO_REASON
);
3748 *status
= tp
->pending_waitstatus ();
3749 tp
->clear_pending_waitstatus ();
3751 /* Wake up the event loop again, until all pending events are
3753 if (target_is_async_p ())
3754 mark_async_event_handler (infrun_async_inferior_event_token
);
3758 /* But if we don't find one, we'll have to wait. */
3760 /* We can't ask a non-async target to do a non-blocking wait, so this will be
3762 if (!target_can_async_p ())
3763 options
&= ~TARGET_WNOHANG
;
3765 return target_wait (ptid
, status
, options
);
3768 /* Wrapper for target_wait that first checks whether threads have
3769 pending statuses to report before actually asking the target for
3770 more events. Polls for events from all inferiors/targets. */
3773 do_target_wait (execution_control_state
*ecs
, target_wait_flags options
)
3775 int num_inferiors
= 0;
3776 int random_selector
;
3778 /* For fairness, we pick the first inferior/target to poll at random
3779 out of all inferiors that may report events, and then continue
3780 polling the rest of the inferior list starting from that one in a
3781 circular fashion until the whole list is polled once. */
3783 auto inferior_matches
= [] (inferior
*inf
)
3785 return inf
->process_target () != nullptr;
3788 /* First see how many matching inferiors we have. */
3789 for (inferior
*inf
: all_inferiors ())
3790 if (inferior_matches (inf
))
3793 if (num_inferiors
== 0)
3795 ecs
->ws
.set_ignore ();
3799 /* Now randomly pick an inferior out of those that matched. */
3800 random_selector
= (int)
3801 ((num_inferiors
* (double) rand ()) / (RAND_MAX
+ 1.0));
3803 if (num_inferiors
> 1)
3804 infrun_debug_printf ("Found %d inferiors, starting at #%d",
3805 num_inferiors
, random_selector
);
3807 /* Select the Nth inferior that matched. */
3809 inferior
*selected
= nullptr;
3811 for (inferior
*inf
: all_inferiors ())
3812 if (inferior_matches (inf
))
3813 if (random_selector
-- == 0)
3819 /* Now poll for events out of each of the matching inferior's
3820 targets, starting from the selected one. */
3822 auto do_wait
= [&] (inferior
*inf
)
3824 ecs
->ptid
= do_target_wait_1 (inf
, minus_one_ptid
, &ecs
->ws
, options
);
3825 ecs
->target
= inf
->process_target ();
3826 return (ecs
->ws
.kind () != TARGET_WAITKIND_IGNORE
);
3829 /* Needed in 'all-stop + target-non-stop' mode, because we end up
3830 here spuriously after the target is all stopped and we've already
3831 reported the stop to the user, polling for events. */
3832 scoped_restore_current_thread restore_thread
;
3834 intrusive_list_iterator
<inferior
> start
3835 = inferior_list
.iterator_to (*selected
);
3837 for (intrusive_list_iterator
<inferior
> it
= start
;
3838 it
!= inferior_list
.end ();
3841 inferior
*inf
= &*it
;
3843 if (inferior_matches (inf
) && do_wait (inf
))
3847 for (intrusive_list_iterator
<inferior
> it
= inferior_list
.begin ();
3851 inferior
*inf
= &*it
;
3853 if (inferior_matches (inf
) && do_wait (inf
))
3857 ecs
->ws
.set_ignore ();
3861 /* An event reported by wait_one. */
3863 struct wait_one_event
3865 /* The target the event came out of. */
3866 process_stratum_target
*target
;
3868 /* The PTID the event was for. */
3871 /* The waitstatus. */
3872 target_waitstatus ws
;
3875 static bool handle_one (const wait_one_event
&event
);
3877 /* Prepare and stabilize the inferior for detaching it. E.g.,
3878 detaching while a thread is displaced stepping is a recipe for
3879 crashing it, as nothing would readjust the PC out of the scratch
3883 prepare_for_detach (void)
3885 struct inferior
*inf
= current_inferior ();
3886 ptid_t pid_ptid
= ptid_t (inf
->pid
);
3887 scoped_restore_current_thread restore_thread
;
3889 scoped_restore restore_detaching
= make_scoped_restore (&inf
->detaching
, true);
3891 /* Remove all threads of INF from the global step-over chain. We
3892 want to stop any ongoing step-over, not start any new one. */
3893 thread_step_over_list_safe_range range
3894 = make_thread_step_over_list_safe_range (global_thread_step_over_list
);
3896 for (thread_info
*tp
: range
)
3899 infrun_debug_printf ("removing thread %s from global step over chain",
3900 tp
->ptid
.to_string ().c_str ());
3901 global_thread_step_over_chain_remove (tp
);
3904 /* If we were already in the middle of an inline step-over, and the
3905 thread stepping belongs to the inferior we're detaching, we need
3906 to restart the threads of other inferiors. */
3907 if (step_over_info
.thread
!= -1)
3909 infrun_debug_printf ("inline step-over in-process while detaching");
3911 thread_info
*thr
= find_thread_global_id (step_over_info
.thread
);
3912 if (thr
->inf
== inf
)
3914 /* Since we removed threads of INF from the step-over chain,
3915 we know this won't start a step-over for INF. */
3916 clear_step_over_info ();
3918 if (target_is_non_stop_p ())
3920 /* Start a new step-over in another thread if there's
3921 one that needs it. */
3924 /* Restart all other threads (except the
3925 previously-stepping thread, since that one is still
3927 if (!step_over_info_valid_p ())
3928 restart_threads (thr
);
3933 if (displaced_step_in_progress (inf
))
3935 infrun_debug_printf ("displaced-stepping in-process while detaching");
3937 /* Stop threads currently displaced stepping, aborting it. */
3939 for (thread_info
*thr
: inf
->non_exited_threads ())
3941 if (thr
->displaced_step_state
.in_progress ())
3943 if (thr
->executing ())
3945 if (!thr
->stop_requested
)
3947 target_stop (thr
->ptid
);
3948 thr
->stop_requested
= true;
3952 thr
->set_resumed (false);
3956 while (displaced_step_in_progress (inf
))
3958 wait_one_event event
;
3960 event
.target
= inf
->process_target ();
3961 event
.ptid
= do_target_wait_1 (inf
, pid_ptid
, &event
.ws
, 0);
3964 print_target_wait_results (pid_ptid
, event
.ptid
, event
.ws
);
3969 /* It's OK to leave some of the threads of INF stopped, since
3970 they'll be detached shortly. */
3974 /* If all-stop, but there exists a non-stop target, stop all threads
3975 now that we're presenting the stop to the user. */
3978 stop_all_threads_if_all_stop_mode ()
3980 if (!non_stop
&& exists_non_stop_target ())
3981 stop_all_threads ("presenting stop to user in all-stop");
3984 /* Wait for control to return from inferior to debugger.
3986 If inferior gets a signal, we may decide to start it up again
3987 instead of returning. That is why there is a loop in this function.
3988 When this function actually returns it means the inferior
3989 should be left stopped and GDB should read more commands. */
3992 wait_for_inferior (inferior
*inf
)
3994 infrun_debug_printf ("wait_for_inferior ()");
3996 SCOPE_EXIT
{ delete_just_stopped_threads_infrun_breakpoints (); };
3998 /* If an error happens while handling the event, propagate GDB's
3999 knowledge of the executing state to the frontend/user running
4001 scoped_finish_thread_state finish_state
4002 (inf
->process_target (), minus_one_ptid
);
4006 struct execution_control_state ecss
;
4007 struct execution_control_state
*ecs
= &ecss
;
4009 overlay_cache_invalid
= 1;
4011 /* Flush target cache before starting to handle each event.
4012 Target was running and cache could be stale. This is just a
4013 heuristic. Running threads may modify target memory, but we
4014 don't get any event. */
4015 target_dcache_invalidate ();
4017 ecs
->ptid
= do_target_wait_1 (inf
, minus_one_ptid
, &ecs
->ws
, 0);
4018 ecs
->target
= inf
->process_target ();
4021 print_target_wait_results (minus_one_ptid
, ecs
->ptid
, ecs
->ws
);
4023 /* Now figure out what to do with the result of the result. */
4024 handle_inferior_event (ecs
);
4026 if (!ecs
->wait_some_more
)
4030 stop_all_threads_if_all_stop_mode ();
4032 /* No error, don't finish the state yet. */
4033 finish_state
.release ();
4036 /* Cleanup that reinstalls the readline callback handler, if the
4037 target is running in the background. If while handling the target
4038 event something triggered a secondary prompt, like e.g., a
4039 pagination prompt, we'll have removed the callback handler (see
4040 gdb_readline_wrapper_line). Need to do this as we go back to the
4041 event loop, ready to process further input. Note this has no
4042 effect if the handler hasn't actually been removed, because calling
4043 rl_callback_handler_install resets the line buffer, thus losing
4047 reinstall_readline_callback_handler_cleanup ()
4049 struct ui
*ui
= current_ui
;
4053 /* We're not going back to the top level event loop yet. Don't
4054 install the readline callback, as it'd prep the terminal,
4055 readline-style (raw, noecho) (e.g., --batch). We'll install
4056 it the next time the prompt is displayed, when we're ready
4061 if (ui
->command_editing
&& ui
->prompt_state
!= PROMPT_BLOCKED
)
4062 gdb_rl_callback_handler_reinstall ();
4065 /* Clean up the FSMs of threads that are now stopped. In non-stop,
4066 that's just the event thread. In all-stop, that's all threads. */
4069 clean_up_just_stopped_threads_fsms (struct execution_control_state
*ecs
)
4071 /* The first clean_up call below assumes the event thread is the current
4073 if (ecs
->event_thread
!= nullptr)
4074 gdb_assert (ecs
->event_thread
== inferior_thread ());
4076 if (ecs
->event_thread
!= nullptr
4077 && ecs
->event_thread
->thread_fsm () != nullptr)
4078 ecs
->event_thread
->thread_fsm ()->clean_up (ecs
->event_thread
);
4082 scoped_restore_current_thread restore_thread
;
4084 for (thread_info
*thr
: all_non_exited_threads ())
4086 if (thr
->thread_fsm () == nullptr)
4088 if (thr
== ecs
->event_thread
)
4091 switch_to_thread (thr
);
4092 thr
->thread_fsm ()->clean_up (thr
);
4097 /* Helper for all_uis_check_sync_execution_done that works on the
4101 check_curr_ui_sync_execution_done (void)
4103 struct ui
*ui
= current_ui
;
4105 if (ui
->prompt_state
== PROMPT_NEEDED
4107 && !gdb_in_secondary_prompt_p (ui
))
4109 target_terminal::ours ();
4110 gdb::observers::sync_execution_done
.notify ();
4111 ui
->register_file_handler ();
4118 all_uis_check_sync_execution_done (void)
4120 SWITCH_THRU_ALL_UIS ()
4122 check_curr_ui_sync_execution_done ();
4129 all_uis_on_sync_execution_starting (void)
4131 SWITCH_THRU_ALL_UIS ()
4133 if (current_ui
->prompt_state
== PROMPT_NEEDED
)
4134 async_disable_stdin ();
4138 /* Asynchronous version of wait_for_inferior. It is called by the
4139 event loop whenever a change of state is detected on the file
4140 descriptor corresponding to the target. It can be called more than
4141 once to complete a single execution command. In such cases we need
4142 to keep the state in a global variable ECSS. If it is the last time
4143 that this function is called for a single execution command, then
4144 report to the user that the inferior has stopped, and do the
4145 necessary cleanups. */
4148 fetch_inferior_event ()
4150 INFRUN_SCOPED_DEBUG_ENTER_EXIT
;
4152 struct execution_control_state ecss
;
4153 struct execution_control_state
*ecs
= &ecss
;
4156 /* Events are always processed with the main UI as current UI. This
4157 way, warnings, debug output, etc. are always consistently sent to
4158 the main console. */
4159 scoped_restore save_ui
= make_scoped_restore (¤t_ui
, main_ui
);
4161 /* Temporarily disable pagination. Otherwise, the user would be
4162 given an option to press 'q' to quit, which would cause an early
4163 exit and could leave GDB in a half-baked state. */
4164 scoped_restore save_pagination
4165 = make_scoped_restore (&pagination_enabled
, false);
4167 /* End up with readline processing input, if necessary. */
4169 SCOPE_EXIT
{ reinstall_readline_callback_handler_cleanup (); };
4171 /* We're handling a live event, so make sure we're doing live
4172 debugging. If we're looking at traceframes while the target is
4173 running, we're going to need to get back to that mode after
4174 handling the event. */
4175 gdb::optional
<scoped_restore_current_traceframe
> maybe_restore_traceframe
;
4178 maybe_restore_traceframe
.emplace ();
4179 set_current_traceframe (-1);
4182 /* The user/frontend should not notice a thread switch due to
4183 internal events. Make sure we revert to the user selected
4184 thread and frame after handling the event and running any
4185 breakpoint commands. */
4186 scoped_restore_current_thread restore_thread
;
4188 overlay_cache_invalid
= 1;
4189 /* Flush target cache before starting to handle each event. Target
4190 was running and cache could be stale. This is just a heuristic.
4191 Running threads may modify target memory, but we don't get any
4193 target_dcache_invalidate ();
4195 scoped_restore save_exec_dir
4196 = make_scoped_restore (&execution_direction
,
4197 target_execution_direction ());
4199 /* Allow targets to pause their resumed threads while we handle
4201 scoped_disable_commit_resumed
disable_commit_resumed ("handling event");
4203 if (!do_target_wait (ecs
, TARGET_WNOHANG
))
4205 infrun_debug_printf ("do_target_wait returned no event");
4206 disable_commit_resumed
.reset_and_commit ();
4210 gdb_assert (ecs
->ws
.kind () != TARGET_WAITKIND_IGNORE
);
4212 /* Switch to the target that generated the event, so we can do
4214 switch_to_target_no_thread (ecs
->target
);
4217 print_target_wait_results (minus_one_ptid
, ecs
->ptid
, ecs
->ws
);
4219 /* If an error happens while handling the event, propagate GDB's
4220 knowledge of the executing state to the frontend/user running
4222 ptid_t finish_ptid
= !target_is_non_stop_p () ? minus_one_ptid
: ecs
->ptid
;
4223 scoped_finish_thread_state
finish_state (ecs
->target
, finish_ptid
);
4225 /* Get executed before scoped_restore_current_thread above to apply
4226 still for the thread which has thrown the exception. */
4227 auto defer_bpstat_clear
4228 = make_scope_exit (bpstat_clear_actions
);
4229 auto defer_delete_threads
4230 = make_scope_exit (delete_just_stopped_threads_infrun_breakpoints
);
4232 /* Now figure out what to do with the result of the result. */
4233 handle_inferior_event (ecs
);
4235 if (!ecs
->wait_some_more
)
4237 struct inferior
*inf
= find_inferior_ptid (ecs
->target
, ecs
->ptid
);
4238 bool should_stop
= true;
4239 struct thread_info
*thr
= ecs
->event_thread
;
4241 delete_just_stopped_threads_infrun_breakpoints ();
4243 if (thr
!= nullptr && thr
->thread_fsm () != nullptr)
4244 should_stop
= thr
->thread_fsm ()->should_stop (thr
);
4252 bool should_notify_stop
= true;
4255 stop_all_threads_if_all_stop_mode ();
4257 clean_up_just_stopped_threads_fsms (ecs
);
4259 if (thr
!= nullptr && thr
->thread_fsm () != nullptr)
4261 = thr
->thread_fsm ()->should_notify_stop ();
4263 if (should_notify_stop
)
4265 /* We may not find an inferior if this was a process exit. */
4266 if (inf
== NULL
|| inf
->control
.stop_soon
== NO_STOP_QUIETLY
)
4267 proceeded
= normal_stop ();
4272 inferior_event_handler (INF_EXEC_COMPLETE
);
4276 /* If we got a TARGET_WAITKIND_NO_RESUMED event, then the
4277 previously selected thread is gone. We have two
4278 choices - switch to no thread selected, or restore the
4279 previously selected thread (now exited). We chose the
4280 later, just because that's what GDB used to do. After
4281 this, "info threads" says "The current thread <Thread
4282 ID 2> has terminated." instead of "No thread
4286 && ecs
->ws
.kind () != TARGET_WAITKIND_NO_RESUMED
)
4287 restore_thread
.dont_restore ();
4291 defer_delete_threads
.release ();
4292 defer_bpstat_clear
.release ();
4294 /* No error, don't finish the thread states yet. */
4295 finish_state
.release ();
4297 disable_commit_resumed
.reset_and_commit ();
4299 /* This scope is used to ensure that readline callbacks are
4300 reinstalled here. */
4303 /* Handling this event might have caused some inferiors to become prunable.
4304 For example, the exit of an inferior that was automatically added. Try
4305 to get rid of them. Keeping those around slows down things linearly.
4307 Note that this never removes the current inferior. Therefore, call this
4308 after RESTORE_THREAD went out of scope, in case the event inferior (which was
4309 temporarily made the current inferior) is meant to be deleted.
4311 Call this before all_uis_check_sync_execution_done, so that notifications about
4312 removed inferiors appear before the prompt. */
4315 /* If a UI was in sync execution mode, and now isn't, restore its
4316 prompt (a synchronous execution command has finished, and we're
4317 ready for input). */
4318 all_uis_check_sync_execution_done ();
4321 && exec_done_display_p
4322 && (inferior_ptid
== null_ptid
4323 || inferior_thread ()->state
!= THREAD_RUNNING
))
4324 gdb_printf (_("completed.\n"));
4330 set_step_info (thread_info
*tp
, struct frame_info
*frame
,
4331 struct symtab_and_line sal
)
4333 /* This can be removed once this function no longer implicitly relies on the
4334 inferior_ptid value. */
4335 gdb_assert (inferior_ptid
== tp
->ptid
);
4337 tp
->control
.step_frame_id
= get_frame_id (frame
);
4338 tp
->control
.step_stack_frame_id
= get_stack_frame_id (frame
);
4340 tp
->current_symtab
= sal
.symtab
;
4341 tp
->current_line
= sal
.line
;
4344 ("symtab = %s, line = %d, step_frame_id = %s, step_stack_frame_id = %s",
4345 tp
->current_symtab
!= nullptr ? tp
->current_symtab
->filename
: "<null>",
4347 tp
->control
.step_frame_id
.to_string ().c_str (),
4348 tp
->control
.step_stack_frame_id
.to_string ().c_str ());
4351 /* Clear context switchable stepping state. */
4354 init_thread_stepping_state (struct thread_info
*tss
)
4356 tss
->stepped_breakpoint
= 0;
4357 tss
->stepping_over_breakpoint
= 0;
4358 tss
->stepping_over_watchpoint
= 0;
4359 tss
->step_after_step_resume_breakpoint
= 0;
4365 set_last_target_status (process_stratum_target
*target
, ptid_t ptid
,
4366 const target_waitstatus
&status
)
4368 target_last_proc_target
= target
;
4369 target_last_wait_ptid
= ptid
;
4370 target_last_waitstatus
= status
;
4376 get_last_target_status (process_stratum_target
**target
, ptid_t
*ptid
,
4377 target_waitstatus
*status
)
4379 if (target
!= nullptr)
4380 *target
= target_last_proc_target
;
4381 if (ptid
!= nullptr)
4382 *ptid
= target_last_wait_ptid
;
4383 if (status
!= nullptr)
4384 *status
= target_last_waitstatus
;
4390 nullify_last_target_wait_ptid (void)
4392 target_last_proc_target
= nullptr;
4393 target_last_wait_ptid
= minus_one_ptid
;
4394 target_last_waitstatus
= {};
4397 /* Switch thread contexts. */
4400 context_switch (execution_control_state
*ecs
)
4402 if (ecs
->ptid
!= inferior_ptid
4403 && (inferior_ptid
== null_ptid
4404 || ecs
->event_thread
!= inferior_thread ()))
4406 infrun_debug_printf ("Switching context from %s to %s",
4407 inferior_ptid
.to_string ().c_str (),
4408 ecs
->ptid
.to_string ().c_str ());
4411 switch_to_thread (ecs
->event_thread
);
4414 /* If the target can't tell whether we've hit breakpoints
4415 (target_supports_stopped_by_sw_breakpoint), and we got a SIGTRAP,
4416 check whether that could have been caused by a breakpoint. If so,
4417 adjust the PC, per gdbarch_decr_pc_after_break. */
4420 adjust_pc_after_break (struct thread_info
*thread
,
4421 const target_waitstatus
&ws
)
4423 struct regcache
*regcache
;
4424 struct gdbarch
*gdbarch
;
4425 CORE_ADDR breakpoint_pc
, decr_pc
;
4427 /* If we've hit a breakpoint, we'll normally be stopped with SIGTRAP. If
4428 we aren't, just return.
4430 We assume that waitkinds other than TARGET_WAITKIND_STOPPED are not
4431 affected by gdbarch_decr_pc_after_break. Other waitkinds which are
4432 implemented by software breakpoints should be handled through the normal
4435 NOTE drow/2004-01-31: On some targets, breakpoints may generate
4436 different signals (SIGILL or SIGEMT for instance), but it is less
4437 clear where the PC is pointing afterwards. It may not match
4438 gdbarch_decr_pc_after_break. I don't know any specific target that
4439 generates these signals at breakpoints (the code has been in GDB since at
4440 least 1992) so I can not guess how to handle them here.
4442 In earlier versions of GDB, a target with
4443 gdbarch_have_nonsteppable_watchpoint would have the PC after hitting a
4444 watchpoint affected by gdbarch_decr_pc_after_break. I haven't found any
4445 target with both of these set in GDB history, and it seems unlikely to be
4446 correct, so gdbarch_have_nonsteppable_watchpoint is not checked here. */
4448 if (ws
.kind () != TARGET_WAITKIND_STOPPED
)
4451 if (ws
.sig () != GDB_SIGNAL_TRAP
)
4454 /* In reverse execution, when a breakpoint is hit, the instruction
4455 under it has already been de-executed. The reported PC always
4456 points at the breakpoint address, so adjusting it further would
4457 be wrong. E.g., consider this case on a decr_pc_after_break == 1
4460 B1 0x08000000 : INSN1
4461 B2 0x08000001 : INSN2
4463 PC -> 0x08000003 : INSN4
4465 Say you're stopped at 0x08000003 as above. Reverse continuing
4466 from that point should hit B2 as below. Reading the PC when the
4467 SIGTRAP is reported should read 0x08000001 and INSN2 should have
4468 been de-executed already.
4470 B1 0x08000000 : INSN1
4471 B2 PC -> 0x08000001 : INSN2
4475 We can't apply the same logic as for forward execution, because
4476 we would wrongly adjust the PC to 0x08000000, since there's a
4477 breakpoint at PC - 1. We'd then report a hit on B1, although
4478 INSN1 hadn't been de-executed yet. Doing nothing is the correct
4480 if (execution_direction
== EXEC_REVERSE
)
4483 /* If the target can tell whether the thread hit a SW breakpoint,
4484 trust it. Targets that can tell also adjust the PC
4486 if (target_supports_stopped_by_sw_breakpoint ())
4489 /* Note that relying on whether a breakpoint is planted in memory to
4490 determine this can fail. E.g,. the breakpoint could have been
4491 removed since. Or the thread could have been told to step an
4492 instruction the size of a breakpoint instruction, and only
4493 _after_ was a breakpoint inserted at its address. */
4495 /* If this target does not decrement the PC after breakpoints, then
4496 we have nothing to do. */
4497 regcache
= get_thread_regcache (thread
);
4498 gdbarch
= regcache
->arch ();
4500 decr_pc
= gdbarch_decr_pc_after_break (gdbarch
);
4504 const address_space
*aspace
= regcache
->aspace ();
4506 /* Find the location where (if we've hit a breakpoint) the
4507 breakpoint would be. */
4508 breakpoint_pc
= regcache_read_pc (regcache
) - decr_pc
;
4510 /* If the target can't tell whether a software breakpoint triggered,
4511 fallback to figuring it out based on breakpoints we think were
4512 inserted in the target, and on whether the thread was stepped or
4515 /* Check whether there actually is a software breakpoint inserted at
4518 If in non-stop mode, a race condition is possible where we've
4519 removed a breakpoint, but stop events for that breakpoint were
4520 already queued and arrive later. To suppress those spurious
4521 SIGTRAPs, we keep a list of such breakpoint locations for a bit,
4522 and retire them after a number of stop events are reported. Note
4523 this is an heuristic and can thus get confused. The real fix is
4524 to get the "stopped by SW BP and needs adjustment" info out of
4525 the target/kernel (and thus never reach here; see above). */
4526 if (software_breakpoint_inserted_here_p (aspace
, breakpoint_pc
)
4527 || (target_is_non_stop_p ()
4528 && moribund_breakpoint_here_p (aspace
, breakpoint_pc
)))
4530 gdb::optional
<scoped_restore_tmpl
<int>> restore_operation_disable
;
4532 if (record_full_is_used ())
4533 restore_operation_disable
.emplace
4534 (record_full_gdb_operation_disable_set ());
4536 /* When using hardware single-step, a SIGTRAP is reported for both
4537 a completed single-step and a software breakpoint. Need to
4538 differentiate between the two, as the latter needs adjusting
4539 but the former does not.
4541 The SIGTRAP can be due to a completed hardware single-step only if
4542 - we didn't insert software single-step breakpoints
4543 - this thread is currently being stepped
4545 If any of these events did not occur, we must have stopped due
4546 to hitting a software breakpoint, and have to back up to the
4549 As a special case, we could have hardware single-stepped a
4550 software breakpoint. In this case (prev_pc == breakpoint_pc),
4551 we also need to back up to the breakpoint address. */
4553 if (thread_has_single_step_breakpoints_set (thread
)
4554 || !currently_stepping (thread
)
4555 || (thread
->stepped_breakpoint
4556 && thread
->prev_pc
== breakpoint_pc
))
4557 regcache_write_pc (regcache
, breakpoint_pc
);
4562 stepped_in_from (struct frame_info
*frame
, struct frame_id step_frame_id
)
4564 for (frame
= get_prev_frame (frame
);
4566 frame
= get_prev_frame (frame
))
4568 if (frame_id_eq (get_frame_id (frame
), step_frame_id
))
4571 if (get_frame_type (frame
) != INLINE_FRAME
)
4578 /* Look for an inline frame that is marked for skip.
4579 If PREV_FRAME is TRUE start at the previous frame,
4580 otherwise start at the current frame. Stop at the
4581 first non-inline frame, or at the frame where the
4585 inline_frame_is_marked_for_skip (bool prev_frame
, struct thread_info
*tp
)
4587 struct frame_info
*frame
= get_current_frame ();
4590 frame
= get_prev_frame (frame
);
4592 for (; frame
!= NULL
; frame
= get_prev_frame (frame
))
4594 const char *fn
= NULL
;
4595 symtab_and_line sal
;
4598 if (frame_id_eq (get_frame_id (frame
), tp
->control
.step_frame_id
))
4600 if (get_frame_type (frame
) != INLINE_FRAME
)
4603 sal
= find_frame_sal (frame
);
4604 sym
= get_frame_function (frame
);
4607 fn
= sym
->print_name ();
4610 && function_name_is_marked_for_skip (fn
, sal
))
4617 /* If the event thread has the stop requested flag set, pretend it
4618 stopped for a GDB_SIGNAL_0 (i.e., as if it stopped due to
4622 handle_stop_requested (struct execution_control_state
*ecs
)
4624 if (ecs
->event_thread
->stop_requested
)
4626 ecs
->ws
.set_stopped (GDB_SIGNAL_0
);
4627 handle_signal_stop (ecs
);
4633 /* Auxiliary function that handles syscall entry/return events.
4634 It returns true if the inferior should keep going (and GDB
4635 should ignore the event), or false if the event deserves to be
4639 handle_syscall_event (struct execution_control_state
*ecs
)
4641 struct regcache
*regcache
;
4644 context_switch (ecs
);
4646 regcache
= get_thread_regcache (ecs
->event_thread
);
4647 syscall_number
= ecs
->ws
.syscall_number ();
4648 ecs
->event_thread
->set_stop_pc (regcache_read_pc (regcache
));
4650 if (catch_syscall_enabled () > 0
4651 && catching_syscall_number (syscall_number
))
4653 infrun_debug_printf ("syscall number=%d", syscall_number
);
4655 ecs
->event_thread
->control
.stop_bpstat
4656 = bpstat_stop_status_nowatch (regcache
->aspace (),
4657 ecs
->event_thread
->stop_pc (),
4658 ecs
->event_thread
, ecs
->ws
);
4660 if (handle_stop_requested (ecs
))
4663 if (bpstat_causes_stop (ecs
->event_thread
->control
.stop_bpstat
))
4665 /* Catchpoint hit. */
4670 if (handle_stop_requested (ecs
))
4673 /* If no catchpoint triggered for this, then keep going. */
4679 /* Lazily fill in the execution_control_state's stop_func_* fields. */
4682 fill_in_stop_func (struct gdbarch
*gdbarch
,
4683 struct execution_control_state
*ecs
)
4685 if (!ecs
->stop_func_filled_in
)
4688 const general_symbol_info
*gsi
;
4690 /* Don't care about return value; stop_func_start and stop_func_name
4691 will both be 0 if it doesn't work. */
4692 find_pc_partial_function_sym (ecs
->event_thread
->stop_pc (),
4694 &ecs
->stop_func_start
,
4695 &ecs
->stop_func_end
,
4697 ecs
->stop_func_name
= gsi
== nullptr ? nullptr : gsi
->print_name ();
4699 /* The call to find_pc_partial_function, above, will set
4700 stop_func_start and stop_func_end to the start and end
4701 of the range containing the stop pc. If this range
4702 contains the entry pc for the block (which is always the
4703 case for contiguous blocks), advance stop_func_start past
4704 the function's start offset and entrypoint. Note that
4705 stop_func_start is NOT advanced when in a range of a
4706 non-contiguous block that does not contain the entry pc. */
4707 if (block
!= nullptr
4708 && ecs
->stop_func_start
<= block
->entry_pc ()
4709 && block
->entry_pc () < ecs
->stop_func_end
)
4711 ecs
->stop_func_start
4712 += gdbarch_deprecated_function_start_offset (gdbarch
);
4714 if (gdbarch_skip_entrypoint_p (gdbarch
))
4715 ecs
->stop_func_start
4716 = gdbarch_skip_entrypoint (gdbarch
, ecs
->stop_func_start
);
4719 ecs
->stop_func_filled_in
= 1;
4724 /* Return the STOP_SOON field of the inferior pointed at by ECS. */
4726 static enum stop_kind
4727 get_inferior_stop_soon (execution_control_state
*ecs
)
4729 struct inferior
*inf
= find_inferior_ptid (ecs
->target
, ecs
->ptid
);
4731 gdb_assert (inf
!= NULL
);
4732 return inf
->control
.stop_soon
;
4735 /* Poll for one event out of the current target. Store the resulting
4736 waitstatus in WS, and return the event ptid. Does not block. */
4739 poll_one_curr_target (struct target_waitstatus
*ws
)
4743 overlay_cache_invalid
= 1;
4745 /* Flush target cache before starting to handle each event.
4746 Target was running and cache could be stale. This is just a
4747 heuristic. Running threads may modify target memory, but we
4748 don't get any event. */
4749 target_dcache_invalidate ();
4751 event_ptid
= target_wait (minus_one_ptid
, ws
, TARGET_WNOHANG
);
4754 print_target_wait_results (minus_one_ptid
, event_ptid
, *ws
);
4759 /* Wait for one event out of any target. */
4761 static wait_one_event
4766 for (inferior
*inf
: all_inferiors ())
4768 process_stratum_target
*target
= inf
->process_target ();
4770 || !target
->is_async_p ()
4771 || !target
->threads_executing
)
4774 switch_to_inferior_no_thread (inf
);
4776 wait_one_event event
;
4777 event
.target
= target
;
4778 event
.ptid
= poll_one_curr_target (&event
.ws
);
4780 if (event
.ws
.kind () == TARGET_WAITKIND_NO_RESUMED
)
4782 /* If nothing is resumed, remove the target from the
4784 target_async (false);
4786 else if (event
.ws
.kind () != TARGET_WAITKIND_IGNORE
)
4790 /* Block waiting for some event. */
4797 for (inferior
*inf
: all_inferiors ())
4799 process_stratum_target
*target
= inf
->process_target ();
4801 || !target
->is_async_p ()
4802 || !target
->threads_executing
)
4805 int fd
= target
->async_wait_fd ();
4806 FD_SET (fd
, &readfds
);
4813 /* No waitable targets left. All must be stopped. */
4814 target_waitstatus ws
;
4815 ws
.set_no_resumed ();
4816 return {NULL
, minus_one_ptid
, std::move (ws
)};
4821 int numfds
= interruptible_select (nfds
, &readfds
, 0, NULL
, 0);
4827 perror_with_name ("interruptible_select");
4832 /* Save the thread's event and stop reason to process it later. */
4835 save_waitstatus (struct thread_info
*tp
, const target_waitstatus
&ws
)
4837 infrun_debug_printf ("saving status %s for %s",
4838 ws
.to_string ().c_str (),
4839 tp
->ptid
.to_string ().c_str ());
4841 /* Record for later. */
4842 tp
->set_pending_waitstatus (ws
);
4844 if (ws
.kind () == TARGET_WAITKIND_STOPPED
4845 && ws
.sig () == GDB_SIGNAL_TRAP
)
4847 struct regcache
*regcache
= get_thread_regcache (tp
);
4848 const address_space
*aspace
= regcache
->aspace ();
4849 CORE_ADDR pc
= regcache_read_pc (regcache
);
4851 adjust_pc_after_break (tp
, tp
->pending_waitstatus ());
4853 scoped_restore_current_thread restore_thread
;
4854 switch_to_thread (tp
);
4856 if (target_stopped_by_watchpoint ())
4857 tp
->set_stop_reason (TARGET_STOPPED_BY_WATCHPOINT
);
4858 else if (target_supports_stopped_by_sw_breakpoint ()
4859 && target_stopped_by_sw_breakpoint ())
4860 tp
->set_stop_reason (TARGET_STOPPED_BY_SW_BREAKPOINT
);
4861 else if (target_supports_stopped_by_hw_breakpoint ()
4862 && target_stopped_by_hw_breakpoint ())
4863 tp
->set_stop_reason (TARGET_STOPPED_BY_HW_BREAKPOINT
);
4864 else if (!target_supports_stopped_by_hw_breakpoint ()
4865 && hardware_breakpoint_inserted_here_p (aspace
, pc
))
4866 tp
->set_stop_reason (TARGET_STOPPED_BY_HW_BREAKPOINT
);
4867 else if (!target_supports_stopped_by_sw_breakpoint ()
4868 && software_breakpoint_inserted_here_p (aspace
, pc
))
4869 tp
->set_stop_reason (TARGET_STOPPED_BY_SW_BREAKPOINT
);
4870 else if (!thread_has_single_step_breakpoints_set (tp
)
4871 && currently_stepping (tp
))
4872 tp
->set_stop_reason (TARGET_STOPPED_BY_SINGLE_STEP
);
4876 /* Mark the non-executing threads accordingly. In all-stop, all
4877 threads of all processes are stopped when we get any event
4878 reported. In non-stop mode, only the event thread stops. */
4881 mark_non_executing_threads (process_stratum_target
*target
,
4883 const target_waitstatus
&ws
)
4887 if (!target_is_non_stop_p ())
4888 mark_ptid
= minus_one_ptid
;
4889 else if (ws
.kind () == TARGET_WAITKIND_SIGNALLED
4890 || ws
.kind () == TARGET_WAITKIND_EXITED
)
4892 /* If we're handling a process exit in non-stop mode, even
4893 though threads haven't been deleted yet, one would think
4894 that there is nothing to do, as threads of the dead process
4895 will be soon deleted, and threads of any other process were
4896 left running. However, on some targets, threads survive a
4897 process exit event. E.g., for the "checkpoint" command,
4898 when the current checkpoint/fork exits, linux-fork.c
4899 automatically switches to another fork from within
4900 target_mourn_inferior, by associating the same
4901 inferior/thread to another fork. We haven't mourned yet at
4902 this point, but we must mark any threads left in the
4903 process as not-executing so that finish_thread_state marks
4904 them stopped (in the user's perspective) if/when we present
4905 the stop to the user. */
4906 mark_ptid
= ptid_t (event_ptid
.pid ());
4909 mark_ptid
= event_ptid
;
4911 set_executing (target
, mark_ptid
, false);
4913 /* Likewise the resumed flag. */
4914 set_resumed (target
, mark_ptid
, false);
4917 /* Handle one event after stopping threads. If the eventing thread
4918 reports back any interesting event, we leave it pending. If the
4919 eventing thread was in the middle of a displaced step, we
4920 cancel/finish it, and unless the thread's inferior is being
4921 detached, put the thread back in the step-over chain. Returns true
4922 if there are no resumed threads left in the target (thus there's no
4923 point in waiting further), false otherwise. */
4926 handle_one (const wait_one_event
&event
)
4929 ("%s %s", event
.ws
.to_string ().c_str (),
4930 event
.ptid
.to_string ().c_str ());
4932 if (event
.ws
.kind () == TARGET_WAITKIND_NO_RESUMED
)
4934 /* All resumed threads exited. */
4937 else if (event
.ws
.kind () == TARGET_WAITKIND_THREAD_EXITED
4938 || event
.ws
.kind () == TARGET_WAITKIND_EXITED
4939 || event
.ws
.kind () == TARGET_WAITKIND_SIGNALLED
)
4941 /* One thread/process exited/signalled. */
4943 thread_info
*t
= nullptr;
4945 /* The target may have reported just a pid. If so, try
4946 the first non-exited thread. */
4947 if (event
.ptid
.is_pid ())
4949 int pid
= event
.ptid
.pid ();
4950 inferior
*inf
= find_inferior_pid (event
.target
, pid
);
4951 for (thread_info
*tp
: inf
->non_exited_threads ())
4957 /* If there is no available thread, the event would
4958 have to be appended to a per-inferior event list,
4959 which does not exist (and if it did, we'd have
4960 to adjust run control command to be able to
4961 resume such an inferior). We assert here instead
4962 of going into an infinite loop. */
4963 gdb_assert (t
!= nullptr);
4966 ("using %s", t
->ptid
.to_string ().c_str ());
4970 t
= find_thread_ptid (event
.target
, event
.ptid
);
4971 /* Check if this is the first time we see this thread.
4972 Don't bother adding if it individually exited. */
4974 && event
.ws
.kind () != TARGET_WAITKIND_THREAD_EXITED
)
4975 t
= add_thread (event
.target
, event
.ptid
);
4980 /* Set the threads as non-executing to avoid
4981 another stop attempt on them. */
4982 switch_to_thread_no_regs (t
);
4983 mark_non_executing_threads (event
.target
, event
.ptid
,
4985 save_waitstatus (t
, event
.ws
);
4986 t
->stop_requested
= false;
4991 thread_info
*t
= find_thread_ptid (event
.target
, event
.ptid
);
4993 t
= add_thread (event
.target
, event
.ptid
);
4995 t
->stop_requested
= 0;
4996 t
->set_executing (false);
4997 t
->set_resumed (false);
4998 t
->control
.may_range_step
= 0;
5000 /* This may be the first time we see the inferior report
5002 if (t
->inf
->needs_setup
)
5004 switch_to_thread_no_regs (t
);
5008 if (event
.ws
.kind () == TARGET_WAITKIND_STOPPED
5009 && event
.ws
.sig () == GDB_SIGNAL_0
)
5011 /* We caught the event that we intended to catch, so
5012 there's no event to save as pending. */
5014 if (displaced_step_finish (t
, GDB_SIGNAL_0
)
5015 == DISPLACED_STEP_FINISH_STATUS_NOT_EXECUTED
)
5017 /* Add it back to the step-over queue. */
5019 ("displaced-step of %s canceled",
5020 t
->ptid
.to_string ().c_str ());
5022 t
->control
.trap_expected
= 0;
5023 if (!t
->inf
->detaching
)
5024 global_thread_step_over_chain_enqueue (t
);
5029 enum gdb_signal sig
;
5030 struct regcache
*regcache
;
5033 ("target_wait %s, saving status for %s",
5034 event
.ws
.to_string ().c_str (),
5035 t
->ptid
.to_string ().c_str ());
5037 /* Record for later. */
5038 save_waitstatus (t
, event
.ws
);
5040 sig
= (event
.ws
.kind () == TARGET_WAITKIND_STOPPED
5041 ? event
.ws
.sig () : GDB_SIGNAL_0
);
5043 if (displaced_step_finish (t
, sig
)
5044 == DISPLACED_STEP_FINISH_STATUS_NOT_EXECUTED
)
5046 /* Add it back to the step-over queue. */
5047 t
->control
.trap_expected
= 0;
5048 if (!t
->inf
->detaching
)
5049 global_thread_step_over_chain_enqueue (t
);
5052 regcache
= get_thread_regcache (t
);
5053 t
->set_stop_pc (regcache_read_pc (regcache
));
5055 infrun_debug_printf ("saved stop_pc=%s for %s "
5056 "(currently_stepping=%d)",
5057 paddress (target_gdbarch (), t
->stop_pc ()),
5058 t
->ptid
.to_string ().c_str (),
5059 currently_stepping (t
));
5069 stop_all_threads (const char *reason
, inferior
*inf
)
5071 /* We may need multiple passes to discover all threads. */
5075 gdb_assert (exists_non_stop_target ());
5077 INFRUN_SCOPED_DEBUG_START_END ("reason=%s, inf=%d", reason
,
5078 inf
!= nullptr ? inf
->num
: -1);
5080 infrun_debug_show_threads ("non-exited threads",
5081 all_non_exited_threads ());
5083 scoped_restore_current_thread restore_thread
;
5085 /* Enable thread events on relevant targets. */
5086 for (auto *target
: all_non_exited_process_targets ())
5088 if (inf
!= nullptr && inf
->process_target () != target
)
5091 switch_to_target_no_thread (target
);
5092 target_thread_events (true);
5097 /* Disable thread events on relevant targets. */
5098 for (auto *target
: all_non_exited_process_targets ())
5100 if (inf
!= nullptr && inf
->process_target () != target
)
5103 switch_to_target_no_thread (target
);
5104 target_thread_events (false);
5107 /* Use debug_prefixed_printf directly to get a meaningful function
5110 debug_prefixed_printf ("infrun", "stop_all_threads", "done");
5113 /* Request threads to stop, and then wait for the stops. Because
5114 threads we already know about can spawn more threads while we're
5115 trying to stop them, and we only learn about new threads when we
5116 update the thread list, do this in a loop, and keep iterating
5117 until two passes find no threads that need to be stopped. */
5118 for (pass
= 0; pass
< 2; pass
++, iterations
++)
5120 infrun_debug_printf ("pass=%d, iterations=%d", pass
, iterations
);
5123 int waits_needed
= 0;
5125 for (auto *target
: all_non_exited_process_targets ())
5127 if (inf
!= nullptr && inf
->process_target () != target
)
5130 switch_to_target_no_thread (target
);
5131 update_thread_list ();
5134 /* Go through all threads looking for threads that we need
5135 to tell the target to stop. */
5136 for (thread_info
*t
: all_non_exited_threads ())
5138 if (inf
!= nullptr && t
->inf
!= inf
)
5141 /* For a single-target setting with an all-stop target,
5142 we would not even arrive here. For a multi-target
5143 setting, until GDB is able to handle a mixture of
5144 all-stop and non-stop targets, simply skip all-stop
5145 targets' threads. This should be fine due to the
5146 protection of 'check_multi_target_resumption'. */
5148 switch_to_thread_no_regs (t
);
5149 if (!target_is_non_stop_p ())
5152 if (t
->executing ())
5154 /* If already stopping, don't request a stop again.
5155 We just haven't seen the notification yet. */
5156 if (!t
->stop_requested
)
5158 infrun_debug_printf (" %s executing, need stop",
5159 t
->ptid
.to_string ().c_str ());
5160 target_stop (t
->ptid
);
5161 t
->stop_requested
= 1;
5165 infrun_debug_printf (" %s executing, already stopping",
5166 t
->ptid
.to_string ().c_str ());
5169 if (t
->stop_requested
)
5174 infrun_debug_printf (" %s not executing",
5175 t
->ptid
.to_string ().c_str ());
5177 /* The thread may be not executing, but still be
5178 resumed with a pending status to process. */
5179 t
->set_resumed (false);
5183 if (waits_needed
== 0)
5186 /* If we find new threads on the second iteration, restart
5187 over. We want to see two iterations in a row with all
5192 for (int i
= 0; i
< waits_needed
; i
++)
5194 wait_one_event event
= wait_one ();
5195 if (handle_one (event
))
5202 /* Handle a TARGET_WAITKIND_NO_RESUMED event. */
5205 handle_no_resumed (struct execution_control_state
*ecs
)
5207 if (target_can_async_p ())
5209 bool any_sync
= false;
5211 for (ui
*ui
: all_uis ())
5213 if (ui
->prompt_state
== PROMPT_BLOCKED
)
5221 /* There were no unwaited-for children left in the target, but,
5222 we're not synchronously waiting for events either. Just
5225 infrun_debug_printf ("TARGET_WAITKIND_NO_RESUMED (ignoring: bg)");
5226 prepare_to_wait (ecs
);
5231 /* Otherwise, if we were running a synchronous execution command, we
5232 may need to cancel it and give the user back the terminal.
5234 In non-stop mode, the target can't tell whether we've already
5235 consumed previous stop events, so it can end up sending us a
5236 no-resumed event like so:
5238 #0 - thread 1 is left stopped
5240 #1 - thread 2 is resumed and hits breakpoint
5241 -> TARGET_WAITKIND_STOPPED
5243 #2 - thread 3 is resumed and exits
5244 this is the last resumed thread, so
5245 -> TARGET_WAITKIND_NO_RESUMED
5247 #3 - gdb processes stop for thread 2 and decides to re-resume
5250 #4 - gdb processes the TARGET_WAITKIND_NO_RESUMED event.
5251 thread 2 is now resumed, so the event should be ignored.
5253 IOW, if the stop for thread 2 doesn't end a foreground command,
5254 then we need to ignore the following TARGET_WAITKIND_NO_RESUMED
5255 event. But it could be that the event meant that thread 2 itself
5256 (or whatever other thread was the last resumed thread) exited.
5258 To address this we refresh the thread list and check whether we
5259 have resumed threads _now_. In the example above, this removes
5260 thread 3 from the thread list. If thread 2 was re-resumed, we
5261 ignore this event. If we find no thread resumed, then we cancel
5262 the synchronous command and show "no unwaited-for " to the
5265 inferior
*curr_inf
= current_inferior ();
5267 scoped_restore_current_thread restore_thread
;
5268 update_thread_list ();
5272 - the current target has no thread executing, and
5273 - the current inferior is native, and
5274 - the current inferior is the one which has the terminal, and
5277 then a Ctrl-C from this point on would remain stuck in the
5278 kernel, until a thread resumes and dequeues it. That would
5279 result in the GDB CLI not reacting to Ctrl-C, not able to
5280 interrupt the program. To address this, if the current inferior
5281 no longer has any thread executing, we give the terminal to some
5282 other inferior that has at least one thread executing. */
5283 bool swap_terminal
= true;
5285 /* Whether to ignore this TARGET_WAITKIND_NO_RESUMED event, or
5286 whether to report it to the user. */
5287 bool ignore_event
= false;
5289 for (thread_info
*thread
: all_non_exited_threads ())
5291 if (swap_terminal
&& thread
->executing ())
5293 if (thread
->inf
!= curr_inf
)
5295 target_terminal::ours ();
5297 switch_to_thread (thread
);
5298 target_terminal::inferior ();
5300 swap_terminal
= false;
5303 if (!ignore_event
&& thread
->resumed ())
5305 /* Either there were no unwaited-for children left in the
5306 target at some point, but there are now, or some target
5307 other than the eventing one has unwaited-for children
5308 left. Just ignore. */
5309 infrun_debug_printf ("TARGET_WAITKIND_NO_RESUMED "
5310 "(ignoring: found resumed)");
5312 ignore_event
= true;
5315 if (ignore_event
&& !swap_terminal
)
5321 switch_to_inferior_no_thread (curr_inf
);
5322 prepare_to_wait (ecs
);
5326 /* Go ahead and report the event. */
5330 /* Given an execution control state that has been freshly filled in by
5331 an event from the inferior, figure out what it means and take
5334 The alternatives are:
5336 1) stop_waiting and return; to really stop and return to the
5339 2) keep_going and return; to wait for the next event (set
5340 ecs->event_thread->stepping_over_breakpoint to 1 to single step
5344 handle_inferior_event (struct execution_control_state
*ecs
)
5346 /* Make sure that all temporary struct value objects that were
5347 created during the handling of the event get deleted at the
5349 scoped_value_mark free_values
;
5351 infrun_debug_printf ("%s", ecs
->ws
.to_string ().c_str ());
5353 if (ecs
->ws
.kind () == TARGET_WAITKIND_IGNORE
)
5355 /* We had an event in the inferior, but we are not interested in
5356 handling it at this level. The lower layers have already
5357 done what needs to be done, if anything.
5359 One of the possible circumstances for this is when the
5360 inferior produces output for the console. The inferior has
5361 not stopped, and we are ignoring the event. Another possible
5362 circumstance is any event which the lower level knows will be
5363 reported multiple times without an intervening resume. */
5364 prepare_to_wait (ecs
);
5368 if (ecs
->ws
.kind () == TARGET_WAITKIND_THREAD_EXITED
)
5370 prepare_to_wait (ecs
);
5374 if (ecs
->ws
.kind () == TARGET_WAITKIND_NO_RESUMED
5375 && handle_no_resumed (ecs
))
5378 /* Cache the last target/ptid/waitstatus. */
5379 set_last_target_status (ecs
->target
, ecs
->ptid
, ecs
->ws
);
5381 /* Always clear state belonging to the previous time we stopped. */
5382 stop_stack_dummy
= STOP_NONE
;
5384 if (ecs
->ws
.kind () == TARGET_WAITKIND_NO_RESUMED
)
5386 /* No unwaited-for children left. IOW, all resumed children
5388 stop_print_frame
= false;
5393 if (ecs
->ws
.kind () != TARGET_WAITKIND_EXITED
5394 && ecs
->ws
.kind () != TARGET_WAITKIND_SIGNALLED
)
5396 ecs
->event_thread
= find_thread_ptid (ecs
->target
, ecs
->ptid
);
5397 /* If it's a new thread, add it to the thread database. */
5398 if (ecs
->event_thread
== NULL
)
5399 ecs
->event_thread
= add_thread (ecs
->target
, ecs
->ptid
);
5401 /* Disable range stepping. If the next step request could use a
5402 range, this will be end up re-enabled then. */
5403 ecs
->event_thread
->control
.may_range_step
= 0;
5406 /* Dependent on valid ECS->EVENT_THREAD. */
5407 adjust_pc_after_break (ecs
->event_thread
, ecs
->ws
);
5409 /* Dependent on the current PC value modified by adjust_pc_after_break. */
5410 reinit_frame_cache ();
5412 breakpoint_retire_moribund ();
5414 /* First, distinguish signals caused by the debugger from signals
5415 that have to do with the program's own actions. Note that
5416 breakpoint insns may cause SIGTRAP or SIGILL or SIGEMT, depending
5417 on the operating system version. Here we detect when a SIGILL or
5418 SIGEMT is really a breakpoint and change it to SIGTRAP. We do
5419 something similar for SIGSEGV, since a SIGSEGV will be generated
5420 when we're trying to execute a breakpoint instruction on a
5421 non-executable stack. This happens for call dummy breakpoints
5422 for architectures like SPARC that place call dummies on the
5424 if (ecs
->ws
.kind () == TARGET_WAITKIND_STOPPED
5425 && (ecs
->ws
.sig () == GDB_SIGNAL_ILL
5426 || ecs
->ws
.sig () == GDB_SIGNAL_SEGV
5427 || ecs
->ws
.sig () == GDB_SIGNAL_EMT
))
5429 struct regcache
*regcache
= get_thread_regcache (ecs
->event_thread
);
5431 if (breakpoint_inserted_here_p (regcache
->aspace (),
5432 regcache_read_pc (regcache
)))
5434 infrun_debug_printf ("Treating signal as SIGTRAP");
5435 ecs
->ws
.set_stopped (GDB_SIGNAL_TRAP
);
5439 mark_non_executing_threads (ecs
->target
, ecs
->ptid
, ecs
->ws
);
5441 switch (ecs
->ws
.kind ())
5443 case TARGET_WAITKIND_LOADED
:
5445 context_switch (ecs
);
5446 /* Ignore gracefully during startup of the inferior, as it might
5447 be the shell which has just loaded some objects, otherwise
5448 add the symbols for the newly loaded objects. Also ignore at
5449 the beginning of an attach or remote session; we will query
5450 the full list of libraries once the connection is
5453 stop_kind stop_soon
= get_inferior_stop_soon (ecs
);
5454 if (stop_soon
== NO_STOP_QUIETLY
)
5456 struct regcache
*regcache
;
5458 regcache
= get_thread_regcache (ecs
->event_thread
);
5460 handle_solib_event ();
5462 ecs
->event_thread
->set_stop_pc (regcache_read_pc (regcache
));
5463 ecs
->event_thread
->control
.stop_bpstat
5464 = bpstat_stop_status_nowatch (regcache
->aspace (),
5465 ecs
->event_thread
->stop_pc (),
5466 ecs
->event_thread
, ecs
->ws
);
5468 if (handle_stop_requested (ecs
))
5471 if (bpstat_causes_stop (ecs
->event_thread
->control
.stop_bpstat
))
5473 /* A catchpoint triggered. */
5474 process_event_stop_test (ecs
);
5478 /* If requested, stop when the dynamic linker notifies
5479 gdb of events. This allows the user to get control
5480 and place breakpoints in initializer routines for
5481 dynamically loaded objects (among other things). */
5482 ecs
->event_thread
->set_stop_signal (GDB_SIGNAL_0
);
5483 if (stop_on_solib_events
)
5485 /* Make sure we print "Stopped due to solib-event" in
5487 stop_print_frame
= true;
5494 /* If we are skipping through a shell, or through shared library
5495 loading that we aren't interested in, resume the program. If
5496 we're running the program normally, also resume. */
5497 if (stop_soon
== STOP_QUIETLY
|| stop_soon
== NO_STOP_QUIETLY
)
5499 /* Loading of shared libraries might have changed breakpoint
5500 addresses. Make sure new breakpoints are inserted. */
5501 if (stop_soon
== NO_STOP_QUIETLY
)
5502 insert_breakpoints ();
5503 resume (GDB_SIGNAL_0
);
5504 prepare_to_wait (ecs
);
5508 /* But stop if we're attaching or setting up a remote
5510 if (stop_soon
== STOP_QUIETLY_NO_SIGSTOP
5511 || stop_soon
== STOP_QUIETLY_REMOTE
)
5513 infrun_debug_printf ("quietly stopped");
5518 internal_error (__FILE__
, __LINE__
,
5519 _("unhandled stop_soon: %d"), (int) stop_soon
);
5522 case TARGET_WAITKIND_SPURIOUS
:
5523 if (handle_stop_requested (ecs
))
5525 context_switch (ecs
);
5526 resume (GDB_SIGNAL_0
);
5527 prepare_to_wait (ecs
);
5530 case TARGET_WAITKIND_THREAD_CREATED
:
5531 if (handle_stop_requested (ecs
))
5533 context_switch (ecs
);
5534 if (!switch_back_to_stepped_thread (ecs
))
5538 case TARGET_WAITKIND_EXITED
:
5539 case TARGET_WAITKIND_SIGNALLED
:
5541 /* Depending on the system, ecs->ptid may point to a thread or
5542 to a process. On some targets, target_mourn_inferior may
5543 need to have access to the just-exited thread. That is the
5544 case of GNU/Linux's "checkpoint" support, for example.
5545 Call the switch_to_xxx routine as appropriate. */
5546 thread_info
*thr
= find_thread_ptid (ecs
->target
, ecs
->ptid
);
5548 switch_to_thread (thr
);
5551 inferior
*inf
= find_inferior_ptid (ecs
->target
, ecs
->ptid
);
5552 switch_to_inferior_no_thread (inf
);
5555 handle_vfork_child_exec_or_exit (0);
5556 target_terminal::ours (); /* Must do this before mourn anyway. */
5558 /* Clearing any previous state of convenience variables. */
5559 clear_exit_convenience_vars ();
5561 if (ecs
->ws
.kind () == TARGET_WAITKIND_EXITED
)
5563 /* Record the exit code in the convenience variable $_exitcode, so
5564 that the user can inspect this again later. */
5565 set_internalvar_integer (lookup_internalvar ("_exitcode"),
5566 (LONGEST
) ecs
->ws
.exit_status ());
5568 /* Also record this in the inferior itself. */
5569 current_inferior ()->has_exit_code
= 1;
5570 current_inferior ()->exit_code
= (LONGEST
) ecs
->ws
.exit_status ();
5572 /* Support the --return-child-result option. */
5573 return_child_result_value
= ecs
->ws
.exit_status ();
5575 gdb::observers::exited
.notify (ecs
->ws
.exit_status ());
5579 struct gdbarch
*gdbarch
= current_inferior ()->gdbarch
;
5581 if (gdbarch_gdb_signal_to_target_p (gdbarch
))
5583 /* Set the value of the internal variable $_exitsignal,
5584 which holds the signal uncaught by the inferior. */
5585 set_internalvar_integer (lookup_internalvar ("_exitsignal"),
5586 gdbarch_gdb_signal_to_target (gdbarch
,
5591 /* We don't have access to the target's method used for
5592 converting between signal numbers (GDB's internal
5593 representation <-> target's representation).
5594 Therefore, we cannot do a good job at displaying this
5595 information to the user. It's better to just warn
5596 her about it (if infrun debugging is enabled), and
5598 infrun_debug_printf ("Cannot fill $_exitsignal with the correct "
5602 gdb::observers::signal_exited
.notify (ecs
->ws
.sig ());
5605 gdb_flush (gdb_stdout
);
5606 target_mourn_inferior (inferior_ptid
);
5607 stop_print_frame
= false;
5611 case TARGET_WAITKIND_FORKED
:
5612 case TARGET_WAITKIND_VFORKED
:
5613 /* Check whether the inferior is displaced stepping. */
5615 struct regcache
*regcache
= get_thread_regcache (ecs
->event_thread
);
5616 struct gdbarch
*gdbarch
= regcache
->arch ();
5617 inferior
*parent_inf
= find_inferior_ptid (ecs
->target
, ecs
->ptid
);
5619 /* If this is a fork (child gets its own address space copy)
5620 and some displaced step buffers were in use at the time of
5621 the fork, restore the displaced step buffer bytes in the
5624 Architectures which support displaced stepping and fork
5625 events must supply an implementation of
5626 gdbarch_displaced_step_restore_all_in_ptid. This is not
5627 enforced during gdbarch validation to support architectures
5628 which support displaced stepping but not forks. */
5629 if (ecs
->ws
.kind () == TARGET_WAITKIND_FORKED
5630 && gdbarch_supports_displaced_stepping (gdbarch
))
5631 gdbarch_displaced_step_restore_all_in_ptid
5632 (gdbarch
, parent_inf
, ecs
->ws
.child_ptid ());
5634 /* If displaced stepping is supported, and thread ecs->ptid is
5635 displaced stepping. */
5636 if (displaced_step_in_progress_thread (ecs
->event_thread
))
5638 struct regcache
*child_regcache
;
5639 CORE_ADDR parent_pc
;
5641 /* GDB has got TARGET_WAITKIND_FORKED or TARGET_WAITKIND_VFORKED,
5642 indicating that the displaced stepping of syscall instruction
5643 has been done. Perform cleanup for parent process here. Note
5644 that this operation also cleans up the child process for vfork,
5645 because their pages are shared. */
5646 displaced_step_finish (ecs
->event_thread
, GDB_SIGNAL_TRAP
);
5647 /* Start a new step-over in another thread if there's one
5651 /* Since the vfork/fork syscall instruction was executed in the scratchpad,
5652 the child's PC is also within the scratchpad. Set the child's PC
5653 to the parent's PC value, which has already been fixed up.
5654 FIXME: we use the parent's aspace here, although we're touching
5655 the child, because the child hasn't been added to the inferior
5656 list yet at this point. */
5659 = get_thread_arch_aspace_regcache (parent_inf
->process_target (),
5660 ecs
->ws
.child_ptid (),
5662 parent_inf
->aspace
);
5663 /* Read PC value of parent process. */
5664 parent_pc
= regcache_read_pc (regcache
);
5666 displaced_debug_printf ("write child pc from %s to %s",
5668 regcache_read_pc (child_regcache
)),
5669 paddress (gdbarch
, parent_pc
));
5671 regcache_write_pc (child_regcache
, parent_pc
);
5675 context_switch (ecs
);
5677 /* Immediately detach breakpoints from the child before there's
5678 any chance of letting the user delete breakpoints from the
5679 breakpoint lists. If we don't do this early, it's easy to
5680 leave left over traps in the child, vis: "break foo; catch
5681 fork; c; <fork>; del; c; <child calls foo>". We only follow
5682 the fork on the last `continue', and by that time the
5683 breakpoint at "foo" is long gone from the breakpoint table.
5684 If we vforked, then we don't need to unpatch here, since both
5685 parent and child are sharing the same memory pages; we'll
5686 need to unpatch at follow/detach time instead to be certain
5687 that new breakpoints added between catchpoint hit time and
5688 vfork follow are detached. */
5689 if (ecs
->ws
.kind () != TARGET_WAITKIND_VFORKED
)
5691 /* This won't actually modify the breakpoint list, but will
5692 physically remove the breakpoints from the child. */
5693 detach_breakpoints (ecs
->ws
.child_ptid ());
5696 delete_just_stopped_threads_single_step_breakpoints ();
5698 /* In case the event is caught by a catchpoint, remember that
5699 the event is to be followed at the next resume of the thread,
5700 and not immediately. */
5701 ecs
->event_thread
->pending_follow
= ecs
->ws
;
5703 ecs
->event_thread
->set_stop_pc
5704 (regcache_read_pc (get_thread_regcache (ecs
->event_thread
)));
5706 ecs
->event_thread
->control
.stop_bpstat
5707 = bpstat_stop_status_nowatch (get_current_regcache ()->aspace (),
5708 ecs
->event_thread
->stop_pc (),
5709 ecs
->event_thread
, ecs
->ws
);
5711 if (handle_stop_requested (ecs
))
5714 /* If no catchpoint triggered for this, then keep going. Note
5715 that we're interested in knowing the bpstat actually causes a
5716 stop, not just if it may explain the signal. Software
5717 watchpoints, for example, always appear in the bpstat. */
5718 if (!bpstat_causes_stop (ecs
->event_thread
->control
.stop_bpstat
))
5721 = (follow_fork_mode_string
== follow_fork_mode_child
);
5723 ecs
->event_thread
->set_stop_signal (GDB_SIGNAL_0
);
5725 process_stratum_target
*targ
5726 = ecs
->event_thread
->inf
->process_target ();
5728 bool should_resume
= follow_fork ();
5730 /* Note that one of these may be an invalid pointer,
5731 depending on detach_fork. */
5732 thread_info
*parent
= ecs
->event_thread
;
5733 thread_info
*child
= find_thread_ptid (targ
, ecs
->ws
.child_ptid ());
5735 /* At this point, the parent is marked running, and the
5736 child is marked stopped. */
5738 /* If not resuming the parent, mark it stopped. */
5739 if (follow_child
&& !detach_fork
&& !non_stop
&& !sched_multi
)
5740 parent
->set_running (false);
5742 /* If resuming the child, mark it running. */
5743 if (follow_child
|| (!detach_fork
&& (non_stop
|| sched_multi
)))
5744 child
->set_running (true);
5746 /* In non-stop mode, also resume the other branch. */
5747 if (!detach_fork
&& (non_stop
5748 || (sched_multi
&& target_is_non_stop_p ())))
5751 switch_to_thread (parent
);
5753 switch_to_thread (child
);
5755 ecs
->event_thread
= inferior_thread ();
5756 ecs
->ptid
= inferior_ptid
;
5761 switch_to_thread (child
);
5763 switch_to_thread (parent
);
5765 ecs
->event_thread
= inferior_thread ();
5766 ecs
->ptid
= inferior_ptid
;
5770 /* Never call switch_back_to_stepped_thread if we are waiting for
5771 vfork-done (waiting for an external vfork child to exec or
5772 exit). We will resume only the vforking thread for the purpose
5773 of collecting the vfork-done event, and we will restart any
5774 step once the critical shared address space window is done. */
5777 && parent
->inf
->thread_waiting_for_vfork_done
!= nullptr)
5778 || !switch_back_to_stepped_thread (ecs
))
5785 process_event_stop_test (ecs
);
5788 case TARGET_WAITKIND_VFORK_DONE
:
5789 /* Done with the shared memory region. Re-insert breakpoints in
5790 the parent, and keep going. */
5792 context_switch (ecs
);
5794 handle_vfork_done (ecs
->event_thread
);
5795 gdb_assert (inferior_thread () == ecs
->event_thread
);
5797 if (handle_stop_requested (ecs
))
5800 if (!switch_back_to_stepped_thread (ecs
))
5802 gdb_assert (inferior_thread () == ecs
->event_thread
);
5803 /* This also takes care of reinserting breakpoints in the
5804 previously locked inferior. */
5809 case TARGET_WAITKIND_EXECD
:
5811 /* Note we can't read registers yet (the stop_pc), because we
5812 don't yet know the inferior's post-exec architecture.
5813 'stop_pc' is explicitly read below instead. */
5814 switch_to_thread_no_regs (ecs
->event_thread
);
5816 /* Do whatever is necessary to the parent branch of the vfork. */
5817 handle_vfork_child_exec_or_exit (1);
5819 /* This causes the eventpoints and symbol table to be reset.
5820 Must do this now, before trying to determine whether to
5822 follow_exec (inferior_ptid
, ecs
->ws
.execd_pathname ());
5824 /* In follow_exec we may have deleted the original thread and
5825 created a new one. Make sure that the event thread is the
5826 execd thread for that case (this is a nop otherwise). */
5827 ecs
->event_thread
= inferior_thread ();
5829 ecs
->event_thread
->set_stop_pc
5830 (regcache_read_pc (get_thread_regcache (ecs
->event_thread
)));
5832 ecs
->event_thread
->control
.stop_bpstat
5833 = bpstat_stop_status_nowatch (get_current_regcache ()->aspace (),
5834 ecs
->event_thread
->stop_pc (),
5835 ecs
->event_thread
, ecs
->ws
);
5837 if (handle_stop_requested (ecs
))
5840 /* If no catchpoint triggered for this, then keep going. */
5841 if (!bpstat_causes_stop (ecs
->event_thread
->control
.stop_bpstat
))
5843 ecs
->event_thread
->set_stop_signal (GDB_SIGNAL_0
);
5847 process_event_stop_test (ecs
);
5850 /* Be careful not to try to gather much state about a thread
5851 that's in a syscall. It's frequently a losing proposition. */
5852 case TARGET_WAITKIND_SYSCALL_ENTRY
:
5853 /* Getting the current syscall number. */
5854 if (handle_syscall_event (ecs
) == 0)
5855 process_event_stop_test (ecs
);
5858 /* Before examining the threads further, step this thread to
5859 get it entirely out of the syscall. (We get notice of the
5860 event when the thread is just on the verge of exiting a
5861 syscall. Stepping one instruction seems to get it back
5863 case TARGET_WAITKIND_SYSCALL_RETURN
:
5864 if (handle_syscall_event (ecs
) == 0)
5865 process_event_stop_test (ecs
);
5868 case TARGET_WAITKIND_STOPPED
:
5869 handle_signal_stop (ecs
);
5872 case TARGET_WAITKIND_NO_HISTORY
:
5873 /* Reverse execution: target ran out of history info. */
5875 /* Switch to the stopped thread. */
5876 context_switch (ecs
);
5877 infrun_debug_printf ("stopped");
5879 delete_just_stopped_threads_single_step_breakpoints ();
5880 ecs
->event_thread
->set_stop_pc
5881 (regcache_read_pc (get_thread_regcache (inferior_thread ())));
5883 if (handle_stop_requested (ecs
))
5886 gdb::observers::no_history
.notify ();
5892 /* Restart threads back to what they were trying to do back when we
5893 paused them (because of an in-line step-over or vfork, for example).
5894 The EVENT_THREAD thread is ignored (not restarted).
5896 If INF is non-nullptr, only resume threads from INF. */
5899 restart_threads (struct thread_info
*event_thread
, inferior
*inf
)
5901 INFRUN_SCOPED_DEBUG_START_END ("event_thread=%s, inf=%d",
5902 event_thread
->ptid
.to_string ().c_str (),
5903 inf
!= nullptr ? inf
->num
: -1);
5905 gdb_assert (!step_over_info_valid_p ());
5907 /* In case the instruction just stepped spawned a new thread. */
5908 update_thread_list ();
5910 for (thread_info
*tp
: all_non_exited_threads ())
5912 if (inf
!= nullptr && tp
->inf
!= inf
)
5915 if (tp
->inf
->detaching
)
5917 infrun_debug_printf ("restart threads: [%s] inferior detaching",
5918 tp
->ptid
.to_string ().c_str ());
5922 switch_to_thread_no_regs (tp
);
5924 if (tp
== event_thread
)
5926 infrun_debug_printf ("restart threads: [%s] is event thread",
5927 tp
->ptid
.to_string ().c_str ());
5931 if (!(tp
->state
== THREAD_RUNNING
|| tp
->control
.in_infcall
))
5933 infrun_debug_printf ("restart threads: [%s] not meant to be running",
5934 tp
->ptid
.to_string ().c_str ());
5940 infrun_debug_printf ("restart threads: [%s] resumed",
5941 tp
->ptid
.to_string ().c_str ());
5942 gdb_assert (tp
->executing () || tp
->has_pending_waitstatus ());
5946 if (thread_is_in_step_over_chain (tp
))
5948 infrun_debug_printf ("restart threads: [%s] needs step-over",
5949 tp
->ptid
.to_string ().c_str ());
5950 gdb_assert (!tp
->resumed ());
5955 if (tp
->has_pending_waitstatus ())
5957 infrun_debug_printf ("restart threads: [%s] has pending status",
5958 tp
->ptid
.to_string ().c_str ());
5959 tp
->set_resumed (true);
5963 gdb_assert (!tp
->stop_requested
);
5965 /* If some thread needs to start a step-over at this point, it
5966 should still be in the step-over queue, and thus skipped
5968 if (thread_still_needs_step_over (tp
))
5970 internal_error (__FILE__
, __LINE__
,
5971 "thread [%s] needs a step-over, but not in "
5972 "step-over queue\n",
5973 tp
->ptid
.to_string ().c_str ());
5976 if (currently_stepping (tp
))
5978 infrun_debug_printf ("restart threads: [%s] was stepping",
5979 tp
->ptid
.to_string ().c_str ());
5980 keep_going_stepped_thread (tp
);
5984 struct execution_control_state ecss
;
5985 struct execution_control_state
*ecs
= &ecss
;
5987 infrun_debug_printf ("restart threads: [%s] continuing",
5988 tp
->ptid
.to_string ().c_str ());
5989 reset_ecs (ecs
, tp
);
5990 switch_to_thread (tp
);
5991 keep_going_pass_signal (ecs
);
5996 /* Callback for iterate_over_threads. Find a resumed thread that has
5997 a pending waitstatus. */
6000 resumed_thread_with_pending_status (struct thread_info
*tp
,
6003 return tp
->resumed () && tp
->has_pending_waitstatus ();
6006 /* Called when we get an event that may finish an in-line or
6007 out-of-line (displaced stepping) step-over started previously.
6008 Return true if the event is processed and we should go back to the
6009 event loop; false if the caller should continue processing the
6013 finish_step_over (struct execution_control_state
*ecs
)
6015 displaced_step_finish (ecs
->event_thread
, ecs
->event_thread
->stop_signal ());
6017 bool had_step_over_info
= step_over_info_valid_p ();
6019 if (had_step_over_info
)
6021 /* If we're stepping over a breakpoint with all threads locked,
6022 then only the thread that was stepped should be reporting
6024 gdb_assert (ecs
->event_thread
->control
.trap_expected
);
6026 clear_step_over_info ();
6029 if (!target_is_non_stop_p ())
6032 /* Start a new step-over in another thread if there's one that
6036 /* If we were stepping over a breakpoint before, and haven't started
6037 a new in-line step-over sequence, then restart all other threads
6038 (except the event thread). We can't do this in all-stop, as then
6039 e.g., we wouldn't be able to issue any other remote packet until
6040 these other threads stop. */
6041 if (had_step_over_info
&& !step_over_info_valid_p ())
6043 struct thread_info
*pending
;
6045 /* If we only have threads with pending statuses, the restart
6046 below won't restart any thread and so nothing re-inserts the
6047 breakpoint we just stepped over. But we need it inserted
6048 when we later process the pending events, otherwise if
6049 another thread has a pending event for this breakpoint too,
6050 we'd discard its event (because the breakpoint that
6051 originally caused the event was no longer inserted). */
6052 context_switch (ecs
);
6053 insert_breakpoints ();
6055 restart_threads (ecs
->event_thread
);
6057 /* If we have events pending, go through handle_inferior_event
6058 again, picking up a pending event at random. This avoids
6059 thread starvation. */
6061 /* But not if we just stepped over a watchpoint in order to let
6062 the instruction execute so we can evaluate its expression.
6063 The set of watchpoints that triggered is recorded in the
6064 breakpoint objects themselves (see bp->watchpoint_triggered).
6065 If we processed another event first, that other event could
6066 clobber this info. */
6067 if (ecs
->event_thread
->stepping_over_watchpoint
)
6070 pending
= iterate_over_threads (resumed_thread_with_pending_status
,
6072 if (pending
!= NULL
)
6074 struct thread_info
*tp
= ecs
->event_thread
;
6075 struct regcache
*regcache
;
6077 infrun_debug_printf ("found resumed threads with "
6078 "pending events, saving status");
6080 gdb_assert (pending
!= tp
);
6082 /* Record the event thread's event for later. */
6083 save_waitstatus (tp
, ecs
->ws
);
6084 /* This was cleared early, by handle_inferior_event. Set it
6085 so this pending event is considered by
6087 tp
->set_resumed (true);
6089 gdb_assert (!tp
->executing ());
6091 regcache
= get_thread_regcache (tp
);
6092 tp
->set_stop_pc (regcache_read_pc (regcache
));
6094 infrun_debug_printf ("saved stop_pc=%s for %s "
6095 "(currently_stepping=%d)",
6096 paddress (target_gdbarch (), tp
->stop_pc ()),
6097 tp
->ptid
.to_string ().c_str (),
6098 currently_stepping (tp
));
6100 /* This in-line step-over finished; clear this so we won't
6101 start a new one. This is what handle_signal_stop would
6102 do, if we returned false. */
6103 tp
->stepping_over_breakpoint
= 0;
6105 /* Wake up the event loop again. */
6106 mark_async_event_handler (infrun_async_inferior_event_token
);
6108 prepare_to_wait (ecs
);
6116 /* Come here when the program has stopped with a signal. */
6119 handle_signal_stop (struct execution_control_state
*ecs
)
6121 struct frame_info
*frame
;
6122 struct gdbarch
*gdbarch
;
6123 int stopped_by_watchpoint
;
6124 enum stop_kind stop_soon
;
6127 gdb_assert (ecs
->ws
.kind () == TARGET_WAITKIND_STOPPED
);
6129 ecs
->event_thread
->set_stop_signal (ecs
->ws
.sig ());
6131 /* Do we need to clean up the state of a thread that has
6132 completed a displaced single-step? (Doing so usually affects
6133 the PC, so do it here, before we set stop_pc.) */
6134 if (finish_step_over (ecs
))
6137 /* If we either finished a single-step or hit a breakpoint, but
6138 the user wanted this thread to be stopped, pretend we got a
6139 SIG0 (generic unsignaled stop). */
6140 if (ecs
->event_thread
->stop_requested
6141 && ecs
->event_thread
->stop_signal () == GDB_SIGNAL_TRAP
)
6142 ecs
->event_thread
->set_stop_signal (GDB_SIGNAL_0
);
6144 ecs
->event_thread
->set_stop_pc
6145 (regcache_read_pc (get_thread_regcache (ecs
->event_thread
)));
6147 context_switch (ecs
);
6149 if (deprecated_context_hook
)
6150 deprecated_context_hook (ecs
->event_thread
->global_num
);
6154 struct regcache
*regcache
= get_thread_regcache (ecs
->event_thread
);
6155 struct gdbarch
*reg_gdbarch
= regcache
->arch ();
6158 ("stop_pc=%s", paddress (reg_gdbarch
, ecs
->event_thread
->stop_pc ()));
6159 if (target_stopped_by_watchpoint ())
6163 infrun_debug_printf ("stopped by watchpoint");
6165 if (target_stopped_data_address (current_inferior ()->top_target (),
6167 infrun_debug_printf ("stopped data address=%s",
6168 paddress (reg_gdbarch
, addr
));
6170 infrun_debug_printf ("(no data address available)");
6174 /* This is originated from start_remote(), start_inferior() and
6175 shared libraries hook functions. */
6176 stop_soon
= get_inferior_stop_soon (ecs
);
6177 if (stop_soon
== STOP_QUIETLY
|| stop_soon
== STOP_QUIETLY_REMOTE
)
6179 infrun_debug_printf ("quietly stopped");
6180 stop_print_frame
= true;
6185 /* This originates from attach_command(). We need to overwrite
6186 the stop_signal here, because some kernels don't ignore a
6187 SIGSTOP in a subsequent ptrace(PTRACE_CONT,SIGSTOP) call.
6188 See more comments in inferior.h. On the other hand, if we
6189 get a non-SIGSTOP, report it to the user - assume the backend
6190 will handle the SIGSTOP if it should show up later.
6192 Also consider that the attach is complete when we see a
6193 SIGTRAP. Some systems (e.g. Windows), and stubs supporting
6194 target extended-remote report it instead of a SIGSTOP
6195 (e.g. gdbserver). We already rely on SIGTRAP being our
6196 signal, so this is no exception.
6198 Also consider that the attach is complete when we see a
6199 GDB_SIGNAL_0. In non-stop mode, GDB will explicitly tell
6200 the target to stop all threads of the inferior, in case the
6201 low level attach operation doesn't stop them implicitly. If
6202 they weren't stopped implicitly, then the stub will report a
6203 GDB_SIGNAL_0, meaning: stopped for no particular reason
6204 other than GDB's request. */
6205 if (stop_soon
== STOP_QUIETLY_NO_SIGSTOP
6206 && (ecs
->event_thread
->stop_signal () == GDB_SIGNAL_STOP
6207 || ecs
->event_thread
->stop_signal () == GDB_SIGNAL_TRAP
6208 || ecs
->event_thread
->stop_signal () == GDB_SIGNAL_0
))
6210 stop_print_frame
= true;
6212 ecs
->event_thread
->set_stop_signal (GDB_SIGNAL_0
);
6216 /* At this point, get hold of the now-current thread's frame. */
6217 frame
= get_current_frame ();
6218 gdbarch
= get_frame_arch (frame
);
6220 /* Pull the single step breakpoints out of the target. */
6221 if (ecs
->event_thread
->stop_signal () == GDB_SIGNAL_TRAP
)
6223 struct regcache
*regcache
;
6226 regcache
= get_thread_regcache (ecs
->event_thread
);
6227 const address_space
*aspace
= regcache
->aspace ();
6229 pc
= regcache_read_pc (regcache
);
6231 /* However, before doing so, if this single-step breakpoint was
6232 actually for another thread, set this thread up for moving
6234 if (!thread_has_single_step_breakpoint_here (ecs
->event_thread
,
6237 if (single_step_breakpoint_inserted_here_p (aspace
, pc
))
6239 infrun_debug_printf ("[%s] hit another thread's single-step "
6241 ecs
->ptid
.to_string ().c_str ());
6242 ecs
->hit_singlestep_breakpoint
= 1;
6247 infrun_debug_printf ("[%s] hit its single-step breakpoint",
6248 ecs
->ptid
.to_string ().c_str ());
6251 delete_just_stopped_threads_single_step_breakpoints ();
6253 if (ecs
->event_thread
->stop_signal () == GDB_SIGNAL_TRAP
6254 && ecs
->event_thread
->control
.trap_expected
6255 && ecs
->event_thread
->stepping_over_watchpoint
)
6256 stopped_by_watchpoint
= 0;
6258 stopped_by_watchpoint
= watchpoints_triggered (ecs
->ws
);
6260 /* If necessary, step over this watchpoint. We'll be back to display
6262 if (stopped_by_watchpoint
6263 && (target_have_steppable_watchpoint ()
6264 || gdbarch_have_nonsteppable_watchpoint (gdbarch
)))
6266 /* At this point, we are stopped at an instruction which has
6267 attempted to write to a piece of memory under control of
6268 a watchpoint. The instruction hasn't actually executed
6269 yet. If we were to evaluate the watchpoint expression
6270 now, we would get the old value, and therefore no change
6271 would seem to have occurred.
6273 In order to make watchpoints work `right', we really need
6274 to complete the memory write, and then evaluate the
6275 watchpoint expression. We do this by single-stepping the
6278 It may not be necessary to disable the watchpoint to step over
6279 it. For example, the PA can (with some kernel cooperation)
6280 single step over a watchpoint without disabling the watchpoint.
6282 It is far more common to need to disable a watchpoint to step
6283 the inferior over it. If we have non-steppable watchpoints,
6284 we must disable the current watchpoint; it's simplest to
6285 disable all watchpoints.
6287 Any breakpoint at PC must also be stepped over -- if there's
6288 one, it will have already triggered before the watchpoint
6289 triggered, and we either already reported it to the user, or
6290 it didn't cause a stop and we called keep_going. In either
6291 case, if there was a breakpoint at PC, we must be trying to
6293 ecs
->event_thread
->stepping_over_watchpoint
= 1;
6298 ecs
->event_thread
->stepping_over_breakpoint
= 0;
6299 ecs
->event_thread
->stepping_over_watchpoint
= 0;
6300 bpstat_clear (&ecs
->event_thread
->control
.stop_bpstat
);
6301 ecs
->event_thread
->control
.stop_step
= 0;
6302 stop_print_frame
= true;
6303 stopped_by_random_signal
= 0;
6304 bpstat
*stop_chain
= nullptr;
6306 /* Hide inlined functions starting here, unless we just performed stepi or
6307 nexti. After stepi and nexti, always show the innermost frame (not any
6308 inline function call sites). */
6309 if (ecs
->event_thread
->control
.step_range_end
!= 1)
6311 const address_space
*aspace
6312 = get_thread_regcache (ecs
->event_thread
)->aspace ();
6314 /* skip_inline_frames is expensive, so we avoid it if we can
6315 determine that the address is one where functions cannot have
6316 been inlined. This improves performance with inferiors that
6317 load a lot of shared libraries, because the solib event
6318 breakpoint is defined as the address of a function (i.e. not
6319 inline). Note that we have to check the previous PC as well
6320 as the current one to catch cases when we have just
6321 single-stepped off a breakpoint prior to reinstating it.
6322 Note that we're assuming that the code we single-step to is
6323 not inline, but that's not definitive: there's nothing
6324 preventing the event breakpoint function from containing
6325 inlined code, and the single-step ending up there. If the
6326 user had set a breakpoint on that inlined code, the missing
6327 skip_inline_frames call would break things. Fortunately
6328 that's an extremely unlikely scenario. */
6329 if (!pc_at_non_inline_function (aspace
,
6330 ecs
->event_thread
->stop_pc (),
6332 && !(ecs
->event_thread
->stop_signal () == GDB_SIGNAL_TRAP
6333 && ecs
->event_thread
->control
.trap_expected
6334 && pc_at_non_inline_function (aspace
,
6335 ecs
->event_thread
->prev_pc
,
6338 stop_chain
= build_bpstat_chain (aspace
,
6339 ecs
->event_thread
->stop_pc (),
6341 skip_inline_frames (ecs
->event_thread
, stop_chain
);
6343 /* Re-fetch current thread's frame in case that invalidated
6345 frame
= get_current_frame ();
6346 gdbarch
= get_frame_arch (frame
);
6350 if (ecs
->event_thread
->stop_signal () == GDB_SIGNAL_TRAP
6351 && ecs
->event_thread
->control
.trap_expected
6352 && gdbarch_single_step_through_delay_p (gdbarch
)
6353 && currently_stepping (ecs
->event_thread
))
6355 /* We're trying to step off a breakpoint. Turns out that we're
6356 also on an instruction that needs to be stepped multiple
6357 times before it's been fully executing. E.g., architectures
6358 with a delay slot. It needs to be stepped twice, once for
6359 the instruction and once for the delay slot. */
6360 int step_through_delay
6361 = gdbarch_single_step_through_delay (gdbarch
, frame
);
6363 if (step_through_delay
)
6364 infrun_debug_printf ("step through delay");
6366 if (ecs
->event_thread
->control
.step_range_end
== 0
6367 && step_through_delay
)
6369 /* The user issued a continue when stopped at a breakpoint.
6370 Set up for another trap and get out of here. */
6371 ecs
->event_thread
->stepping_over_breakpoint
= 1;
6375 else if (step_through_delay
)
6377 /* The user issued a step when stopped at a breakpoint.
6378 Maybe we should stop, maybe we should not - the delay
6379 slot *might* correspond to a line of source. In any
6380 case, don't decide that here, just set
6381 ecs->stepping_over_breakpoint, making sure we
6382 single-step again before breakpoints are re-inserted. */
6383 ecs
->event_thread
->stepping_over_breakpoint
= 1;
6387 /* See if there is a breakpoint/watchpoint/catchpoint/etc. that
6388 handles this event. */
6389 ecs
->event_thread
->control
.stop_bpstat
6390 = bpstat_stop_status (get_current_regcache ()->aspace (),
6391 ecs
->event_thread
->stop_pc (),
6392 ecs
->event_thread
, ecs
->ws
, stop_chain
);
6394 /* Following in case break condition called a
6396 stop_print_frame
= true;
6398 /* This is where we handle "moribund" watchpoints. Unlike
6399 software breakpoints traps, hardware watchpoint traps are
6400 always distinguishable from random traps. If no high-level
6401 watchpoint is associated with the reported stop data address
6402 anymore, then the bpstat does not explain the signal ---
6403 simply make sure to ignore it if `stopped_by_watchpoint' is
6406 if (ecs
->event_thread
->stop_signal () == GDB_SIGNAL_TRAP
6407 && !bpstat_explains_signal (ecs
->event_thread
->control
.stop_bpstat
,
6409 && stopped_by_watchpoint
)
6411 infrun_debug_printf ("no user watchpoint explains watchpoint SIGTRAP, "
6415 /* NOTE: cagney/2003-03-29: These checks for a random signal
6416 at one stage in the past included checks for an inferior
6417 function call's call dummy's return breakpoint. The original
6418 comment, that went with the test, read:
6420 ``End of a stack dummy. Some systems (e.g. Sony news) give
6421 another signal besides SIGTRAP, so check here as well as
6424 If someone ever tries to get call dummys on a
6425 non-executable stack to work (where the target would stop
6426 with something like a SIGSEGV), then those tests might need
6427 to be re-instated. Given, however, that the tests were only
6428 enabled when momentary breakpoints were not being used, I
6429 suspect that it won't be the case.
6431 NOTE: kettenis/2004-02-05: Indeed such checks don't seem to
6432 be necessary for call dummies on a non-executable stack on
6435 /* See if the breakpoints module can explain the signal. */
6437 = !bpstat_explains_signal (ecs
->event_thread
->control
.stop_bpstat
,
6438 ecs
->event_thread
->stop_signal ());
6440 /* Maybe this was a trap for a software breakpoint that has since
6442 if (random_signal
&& target_stopped_by_sw_breakpoint ())
6444 if (gdbarch_program_breakpoint_here_p (gdbarch
,
6445 ecs
->event_thread
->stop_pc ()))
6447 struct regcache
*regcache
;
6450 /* Re-adjust PC to what the program would see if GDB was not
6452 regcache
= get_thread_regcache (ecs
->event_thread
);
6453 decr_pc
= gdbarch_decr_pc_after_break (gdbarch
);
6456 gdb::optional
<scoped_restore_tmpl
<int>>
6457 restore_operation_disable
;
6459 if (record_full_is_used ())
6460 restore_operation_disable
.emplace
6461 (record_full_gdb_operation_disable_set ());
6463 regcache_write_pc (regcache
,
6464 ecs
->event_thread
->stop_pc () + decr_pc
);
6469 /* A delayed software breakpoint event. Ignore the trap. */
6470 infrun_debug_printf ("delayed software breakpoint trap, ignoring");
6475 /* Maybe this was a trap for a hardware breakpoint/watchpoint that
6476 has since been removed. */
6477 if (random_signal
&& target_stopped_by_hw_breakpoint ())
6479 /* A delayed hardware breakpoint event. Ignore the trap. */
6480 infrun_debug_printf ("delayed hardware breakpoint/watchpoint "
6485 /* If not, perhaps stepping/nexting can. */
6487 random_signal
= !(ecs
->event_thread
->stop_signal () == GDB_SIGNAL_TRAP
6488 && currently_stepping (ecs
->event_thread
));
6490 /* Perhaps the thread hit a single-step breakpoint of _another_
6491 thread. Single-step breakpoints are transparent to the
6492 breakpoints module. */
6494 random_signal
= !ecs
->hit_singlestep_breakpoint
;
6496 /* No? Perhaps we got a moribund watchpoint. */
6498 random_signal
= !stopped_by_watchpoint
;
6500 /* Always stop if the user explicitly requested this thread to
6502 if (ecs
->event_thread
->stop_requested
)
6505 infrun_debug_printf ("user-requested stop");
6508 /* For the program's own signals, act according to
6509 the signal handling tables. */
6513 /* Signal not for debugging purposes. */
6514 enum gdb_signal stop_signal
= ecs
->event_thread
->stop_signal ();
6516 infrun_debug_printf ("random signal (%s)",
6517 gdb_signal_to_symbol_string (stop_signal
));
6519 stopped_by_random_signal
= 1;
6521 /* Always stop on signals if we're either just gaining control
6522 of the program, or the user explicitly requested this thread
6523 to remain stopped. */
6524 if (stop_soon
!= NO_STOP_QUIETLY
6525 || ecs
->event_thread
->stop_requested
6526 || signal_stop_state (ecs
->event_thread
->stop_signal ()))
6532 /* Notify observers the signal has "handle print" set. Note we
6533 returned early above if stopping; normal_stop handles the
6534 printing in that case. */
6535 if (signal_print
[ecs
->event_thread
->stop_signal ()])
6537 /* The signal table tells us to print about this signal. */
6538 target_terminal::ours_for_output ();
6539 gdb::observers::signal_received
.notify (ecs
->event_thread
->stop_signal ());
6540 target_terminal::inferior ();
6543 /* Clear the signal if it should not be passed. */
6544 if (signal_program
[ecs
->event_thread
->stop_signal ()] == 0)
6545 ecs
->event_thread
->set_stop_signal (GDB_SIGNAL_0
);
6547 if (ecs
->event_thread
->prev_pc
== ecs
->event_thread
->stop_pc ()
6548 && ecs
->event_thread
->control
.trap_expected
6549 && ecs
->event_thread
->control
.step_resume_breakpoint
== NULL
)
6551 /* We were just starting a new sequence, attempting to
6552 single-step off of a breakpoint and expecting a SIGTRAP.
6553 Instead this signal arrives. This signal will take us out
6554 of the stepping range so GDB needs to remember to, when
6555 the signal handler returns, resume stepping off that
6557 /* To simplify things, "continue" is forced to use the same
6558 code paths as single-step - set a breakpoint at the
6559 signal return address and then, once hit, step off that
6561 infrun_debug_printf ("signal arrived while stepping over breakpoint");
6563 insert_hp_step_resume_breakpoint_at_frame (frame
);
6564 ecs
->event_thread
->step_after_step_resume_breakpoint
= 1;
6565 /* Reset trap_expected to ensure breakpoints are re-inserted. */
6566 ecs
->event_thread
->control
.trap_expected
= 0;
6568 /* If we were nexting/stepping some other thread, switch to
6569 it, so that we don't continue it, losing control. */
6570 if (!switch_back_to_stepped_thread (ecs
))
6575 if (ecs
->event_thread
->stop_signal () != GDB_SIGNAL_0
6576 && (pc_in_thread_step_range (ecs
->event_thread
->stop_pc (),
6578 || ecs
->event_thread
->control
.step_range_end
== 1)
6579 && frame_id_eq (get_stack_frame_id (frame
),
6580 ecs
->event_thread
->control
.step_stack_frame_id
)
6581 && ecs
->event_thread
->control
.step_resume_breakpoint
== NULL
)
6583 /* The inferior is about to take a signal that will take it
6584 out of the single step range. Set a breakpoint at the
6585 current PC (which is presumably where the signal handler
6586 will eventually return) and then allow the inferior to
6589 Note that this is only needed for a signal delivered
6590 while in the single-step range. Nested signals aren't a
6591 problem as they eventually all return. */
6592 infrun_debug_printf ("signal may take us out of single-step range");
6594 clear_step_over_info ();
6595 insert_hp_step_resume_breakpoint_at_frame (frame
);
6596 ecs
->event_thread
->step_after_step_resume_breakpoint
= 1;
6597 /* Reset trap_expected to ensure breakpoints are re-inserted. */
6598 ecs
->event_thread
->control
.trap_expected
= 0;
6603 /* Note: step_resume_breakpoint may be non-NULL. This occurs
6604 when either there's a nested signal, or when there's a
6605 pending signal enabled just as the signal handler returns
6606 (leaving the inferior at the step-resume-breakpoint without
6607 actually executing it). Either way continue until the
6608 breakpoint is really hit. */
6610 if (!switch_back_to_stepped_thread (ecs
))
6612 infrun_debug_printf ("random signal, keep going");
6619 process_event_stop_test (ecs
);
6622 /* Come here when we've got some debug event / signal we can explain
6623 (IOW, not a random signal), and test whether it should cause a
6624 stop, or whether we should resume the inferior (transparently).
6625 E.g., could be a breakpoint whose condition evaluates false; we
6626 could be still stepping within the line; etc. */
6629 process_event_stop_test (struct execution_control_state
*ecs
)
6631 struct symtab_and_line stop_pc_sal
;
6632 struct frame_info
*frame
;
6633 struct gdbarch
*gdbarch
;
6634 CORE_ADDR jmp_buf_pc
;
6635 struct bpstat_what what
;
6637 /* Handle cases caused by hitting a breakpoint. */
6639 frame
= get_current_frame ();
6640 gdbarch
= get_frame_arch (frame
);
6642 what
= bpstat_what (ecs
->event_thread
->control
.stop_bpstat
);
6644 if (what
.call_dummy
)
6646 stop_stack_dummy
= what
.call_dummy
;
6649 /* A few breakpoint types have callbacks associated (e.g.,
6650 bp_jit_event). Run them now. */
6651 bpstat_run_callbacks (ecs
->event_thread
->control
.stop_bpstat
);
6653 /* If we hit an internal event that triggers symbol changes, the
6654 current frame will be invalidated within bpstat_what (e.g., if we
6655 hit an internal solib event). Re-fetch it. */
6656 frame
= get_current_frame ();
6657 gdbarch
= get_frame_arch (frame
);
6659 switch (what
.main_action
)
6661 case BPSTAT_WHAT_SET_LONGJMP_RESUME
:
6662 /* If we hit the breakpoint at longjmp while stepping, we
6663 install a momentary breakpoint at the target of the
6666 infrun_debug_printf ("BPSTAT_WHAT_SET_LONGJMP_RESUME");
6668 ecs
->event_thread
->stepping_over_breakpoint
= 1;
6670 if (what
.is_longjmp
)
6672 struct value
*arg_value
;
6674 /* If we set the longjmp breakpoint via a SystemTap probe,
6675 then use it to extract the arguments. The destination PC
6676 is the third argument to the probe. */
6677 arg_value
= probe_safe_evaluate_at_pc (frame
, 2);
6680 jmp_buf_pc
= value_as_address (arg_value
);
6681 jmp_buf_pc
= gdbarch_addr_bits_remove (gdbarch
, jmp_buf_pc
);
6683 else if (!gdbarch_get_longjmp_target_p (gdbarch
)
6684 || !gdbarch_get_longjmp_target (gdbarch
,
6685 frame
, &jmp_buf_pc
))
6687 infrun_debug_printf ("BPSTAT_WHAT_SET_LONGJMP_RESUME "
6688 "(!gdbarch_get_longjmp_target)");
6693 /* Insert a breakpoint at resume address. */
6694 insert_longjmp_resume_breakpoint (gdbarch
, jmp_buf_pc
);
6697 check_exception_resume (ecs
, frame
);
6701 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
:
6703 struct frame_info
*init_frame
;
6705 /* There are several cases to consider.
6707 1. The initiating frame no longer exists. In this case we
6708 must stop, because the exception or longjmp has gone too
6711 2. The initiating frame exists, and is the same as the
6712 current frame. We stop, because the exception or longjmp
6715 3. The initiating frame exists and is different from the
6716 current frame. This means the exception or longjmp has
6717 been caught beneath the initiating frame, so keep going.
6719 4. longjmp breakpoint has been placed just to protect
6720 against stale dummy frames and user is not interested in
6721 stopping around longjmps. */
6723 infrun_debug_printf ("BPSTAT_WHAT_CLEAR_LONGJMP_RESUME");
6725 gdb_assert (ecs
->event_thread
->control
.exception_resume_breakpoint
6727 delete_exception_resume_breakpoint (ecs
->event_thread
);
6729 if (what
.is_longjmp
)
6731 check_longjmp_breakpoint_for_call_dummy (ecs
->event_thread
);
6733 if (!frame_id_p (ecs
->event_thread
->initiating_frame
))
6741 init_frame
= frame_find_by_id (ecs
->event_thread
->initiating_frame
);
6745 struct frame_id current_id
6746 = get_frame_id (get_current_frame ());
6747 if (frame_id_eq (current_id
,
6748 ecs
->event_thread
->initiating_frame
))
6750 /* Case 2. Fall through. */
6760 /* For Cases 1 and 2, remove the step-resume breakpoint, if it
6762 delete_step_resume_breakpoint (ecs
->event_thread
);
6764 end_stepping_range (ecs
);
6768 case BPSTAT_WHAT_SINGLE
:
6769 infrun_debug_printf ("BPSTAT_WHAT_SINGLE");
6770 ecs
->event_thread
->stepping_over_breakpoint
= 1;
6771 /* Still need to check other stuff, at least the case where we
6772 are stepping and step out of the right range. */
6775 case BPSTAT_WHAT_STEP_RESUME
:
6776 infrun_debug_printf ("BPSTAT_WHAT_STEP_RESUME");
6778 delete_step_resume_breakpoint (ecs
->event_thread
);
6779 if (ecs
->event_thread
->control
.proceed_to_finish
6780 && execution_direction
== EXEC_REVERSE
)
6782 struct thread_info
*tp
= ecs
->event_thread
;
6784 /* We are finishing a function in reverse, and just hit the
6785 step-resume breakpoint at the start address of the
6786 function, and we're almost there -- just need to back up
6787 by one more single-step, which should take us back to the
6789 tp
->control
.step_range_start
= tp
->control
.step_range_end
= 1;
6793 fill_in_stop_func (gdbarch
, ecs
);
6794 if (ecs
->event_thread
->stop_pc () == ecs
->stop_func_start
6795 && execution_direction
== EXEC_REVERSE
)
6797 /* We are stepping over a function call in reverse, and just
6798 hit the step-resume breakpoint at the start address of
6799 the function. Go back to single-stepping, which should
6800 take us back to the function call. */
6801 ecs
->event_thread
->stepping_over_breakpoint
= 1;
6807 case BPSTAT_WHAT_STOP_NOISY
:
6808 infrun_debug_printf ("BPSTAT_WHAT_STOP_NOISY");
6809 stop_print_frame
= true;
6811 /* Assume the thread stopped for a breakpoint. We'll still check
6812 whether a/the breakpoint is there when the thread is next
6814 ecs
->event_thread
->stepping_over_breakpoint
= 1;
6819 case BPSTAT_WHAT_STOP_SILENT
:
6820 infrun_debug_printf ("BPSTAT_WHAT_STOP_SILENT");
6821 stop_print_frame
= false;
6823 /* Assume the thread stopped for a breakpoint. We'll still check
6824 whether a/the breakpoint is there when the thread is next
6826 ecs
->event_thread
->stepping_over_breakpoint
= 1;
6830 case BPSTAT_WHAT_HP_STEP_RESUME
:
6831 infrun_debug_printf ("BPSTAT_WHAT_HP_STEP_RESUME");
6833 delete_step_resume_breakpoint (ecs
->event_thread
);
6834 if (ecs
->event_thread
->step_after_step_resume_breakpoint
)
6836 /* Back when the step-resume breakpoint was inserted, we
6837 were trying to single-step off a breakpoint. Go back to
6839 ecs
->event_thread
->step_after_step_resume_breakpoint
= 0;
6840 ecs
->event_thread
->stepping_over_breakpoint
= 1;
6846 case BPSTAT_WHAT_KEEP_CHECKING
:
6850 /* If we stepped a permanent breakpoint and we had a high priority
6851 step-resume breakpoint for the address we stepped, but we didn't
6852 hit it, then we must have stepped into the signal handler. The
6853 step-resume was only necessary to catch the case of _not_
6854 stepping into the handler, so delete it, and fall through to
6855 checking whether the step finished. */
6856 if (ecs
->event_thread
->stepped_breakpoint
)
6858 struct breakpoint
*sr_bp
6859 = ecs
->event_thread
->control
.step_resume_breakpoint
;
6862 && sr_bp
->loc
->permanent
6863 && sr_bp
->type
== bp_hp_step_resume
6864 && sr_bp
->loc
->address
== ecs
->event_thread
->prev_pc
)
6866 infrun_debug_printf ("stepped permanent breakpoint, stopped in handler");
6867 delete_step_resume_breakpoint (ecs
->event_thread
);
6868 ecs
->event_thread
->step_after_step_resume_breakpoint
= 0;
6872 /* We come here if we hit a breakpoint but should not stop for it.
6873 Possibly we also were stepping and should stop for that. So fall
6874 through and test for stepping. But, if not stepping, do not
6877 /* In all-stop mode, if we're currently stepping but have stopped in
6878 some other thread, we need to switch back to the stepped thread. */
6879 if (switch_back_to_stepped_thread (ecs
))
6882 if (ecs
->event_thread
->control
.step_resume_breakpoint
)
6884 infrun_debug_printf ("step-resume breakpoint is inserted");
6886 /* Having a step-resume breakpoint overrides anything
6887 else having to do with stepping commands until
6888 that breakpoint is reached. */
6893 if (ecs
->event_thread
->control
.step_range_end
== 0)
6895 infrun_debug_printf ("no stepping, continue");
6896 /* Likewise if we aren't even stepping. */
6901 /* Re-fetch current thread's frame in case the code above caused
6902 the frame cache to be re-initialized, making our FRAME variable
6903 a dangling pointer. */
6904 frame
= get_current_frame ();
6905 gdbarch
= get_frame_arch (frame
);
6906 fill_in_stop_func (gdbarch
, ecs
);
6908 /* If stepping through a line, keep going if still within it.
6910 Note that step_range_end is the address of the first instruction
6911 beyond the step range, and NOT the address of the last instruction
6914 Note also that during reverse execution, we may be stepping
6915 through a function epilogue and therefore must detect when
6916 the current-frame changes in the middle of a line. */
6918 if (pc_in_thread_step_range (ecs
->event_thread
->stop_pc (),
6920 && (execution_direction
!= EXEC_REVERSE
6921 || frame_id_eq (get_frame_id (frame
),
6922 ecs
->event_thread
->control
.step_frame_id
)))
6925 ("stepping inside range [%s-%s]",
6926 paddress (gdbarch
, ecs
->event_thread
->control
.step_range_start
),
6927 paddress (gdbarch
, ecs
->event_thread
->control
.step_range_end
));
6929 /* Tentatively re-enable range stepping; `resume' disables it if
6930 necessary (e.g., if we're stepping over a breakpoint or we
6931 have software watchpoints). */
6932 ecs
->event_thread
->control
.may_range_step
= 1;
6934 /* When stepping backward, stop at beginning of line range
6935 (unless it's the function entry point, in which case
6936 keep going back to the call point). */
6937 CORE_ADDR stop_pc
= ecs
->event_thread
->stop_pc ();
6938 if (stop_pc
== ecs
->event_thread
->control
.step_range_start
6939 && stop_pc
!= ecs
->stop_func_start
6940 && execution_direction
== EXEC_REVERSE
)
6941 end_stepping_range (ecs
);
6948 /* We stepped out of the stepping range. */
6950 /* If we are stepping at the source level and entered the runtime
6951 loader dynamic symbol resolution code...
6953 EXEC_FORWARD: we keep on single stepping until we exit the run
6954 time loader code and reach the callee's address.
6956 EXEC_REVERSE: we've already executed the callee (backward), and
6957 the runtime loader code is handled just like any other
6958 undebuggable function call. Now we need only keep stepping
6959 backward through the trampoline code, and that's handled further
6960 down, so there is nothing for us to do here. */
6962 if (execution_direction
!= EXEC_REVERSE
6963 && ecs
->event_thread
->control
.step_over_calls
== STEP_OVER_UNDEBUGGABLE
6964 && in_solib_dynsym_resolve_code (ecs
->event_thread
->stop_pc ()))
6966 CORE_ADDR pc_after_resolver
=
6967 gdbarch_skip_solib_resolver (gdbarch
, ecs
->event_thread
->stop_pc ());
6969 infrun_debug_printf ("stepped into dynsym resolve code");
6971 if (pc_after_resolver
)
6973 /* Set up a step-resume breakpoint at the address
6974 indicated by SKIP_SOLIB_RESOLVER. */
6975 symtab_and_line sr_sal
;
6976 sr_sal
.pc
= pc_after_resolver
;
6977 sr_sal
.pspace
= get_frame_program_space (frame
);
6979 insert_step_resume_breakpoint_at_sal (gdbarch
,
6980 sr_sal
, null_frame_id
);
6987 /* Step through an indirect branch thunk. */
6988 if (ecs
->event_thread
->control
.step_over_calls
!= STEP_OVER_NONE
6989 && gdbarch_in_indirect_branch_thunk (gdbarch
,
6990 ecs
->event_thread
->stop_pc ()))
6992 infrun_debug_printf ("stepped into indirect branch thunk");
6997 if (ecs
->event_thread
->control
.step_range_end
!= 1
6998 && (ecs
->event_thread
->control
.step_over_calls
== STEP_OVER_UNDEBUGGABLE
6999 || ecs
->event_thread
->control
.step_over_calls
== STEP_OVER_ALL
)
7000 && get_frame_type (frame
) == SIGTRAMP_FRAME
)
7002 infrun_debug_printf ("stepped into signal trampoline");
7003 /* The inferior, while doing a "step" or "next", has ended up in
7004 a signal trampoline (either by a signal being delivered or by
7005 the signal handler returning). Just single-step until the
7006 inferior leaves the trampoline (either by calling the handler
7012 /* If we're in the return path from a shared library trampoline,
7013 we want to proceed through the trampoline when stepping. */
7014 /* macro/2012-04-25: This needs to come before the subroutine
7015 call check below as on some targets return trampolines look
7016 like subroutine calls (MIPS16 return thunks). */
7017 if (gdbarch_in_solib_return_trampoline (gdbarch
,
7018 ecs
->event_thread
->stop_pc (),
7019 ecs
->stop_func_name
)
7020 && ecs
->event_thread
->control
.step_over_calls
!= STEP_OVER_NONE
)
7022 /* Determine where this trampoline returns. */
7023 CORE_ADDR stop_pc
= ecs
->event_thread
->stop_pc ();
7024 CORE_ADDR real_stop_pc
7025 = gdbarch_skip_trampoline_code (gdbarch
, frame
, stop_pc
);
7027 infrun_debug_printf ("stepped into solib return tramp");
7029 /* Only proceed through if we know where it's going. */
7032 /* And put the step-breakpoint there and go until there. */
7033 symtab_and_line sr_sal
;
7034 sr_sal
.pc
= real_stop_pc
;
7035 sr_sal
.section
= find_pc_overlay (sr_sal
.pc
);
7036 sr_sal
.pspace
= get_frame_program_space (frame
);
7038 /* Do not specify what the fp should be when we stop since
7039 on some machines the prologue is where the new fp value
7041 insert_step_resume_breakpoint_at_sal (gdbarch
,
7042 sr_sal
, null_frame_id
);
7044 /* Restart without fiddling with the step ranges or
7051 /* Check for subroutine calls. The check for the current frame
7052 equalling the step ID is not necessary - the check of the
7053 previous frame's ID is sufficient - but it is a common case and
7054 cheaper than checking the previous frame's ID.
7056 NOTE: frame_id_eq will never report two invalid frame IDs as
7057 being equal, so to get into this block, both the current and
7058 previous frame must have valid frame IDs. */
7059 /* The outer_frame_id check is a heuristic to detect stepping
7060 through startup code. If we step over an instruction which
7061 sets the stack pointer from an invalid value to a valid value,
7062 we may detect that as a subroutine call from the mythical
7063 "outermost" function. This could be fixed by marking
7064 outermost frames as !stack_p,code_p,special_p. Then the
7065 initial outermost frame, before sp was valid, would
7066 have code_addr == &_start. See the comment in frame_id_eq
7068 if (!frame_id_eq (get_stack_frame_id (frame
),
7069 ecs
->event_thread
->control
.step_stack_frame_id
)
7070 && (frame_id_eq (frame_unwind_caller_id (get_current_frame ()),
7071 ecs
->event_thread
->control
.step_stack_frame_id
)
7072 && (!frame_id_eq (ecs
->event_thread
->control
.step_stack_frame_id
,
7074 || (ecs
->event_thread
->control
.step_start_function
7075 != find_pc_function (ecs
->event_thread
->stop_pc ())))))
7077 CORE_ADDR stop_pc
= ecs
->event_thread
->stop_pc ();
7078 CORE_ADDR real_stop_pc
;
7080 infrun_debug_printf ("stepped into subroutine");
7082 if (ecs
->event_thread
->control
.step_over_calls
== STEP_OVER_NONE
)
7084 /* I presume that step_over_calls is only 0 when we're
7085 supposed to be stepping at the assembly language level
7086 ("stepi"). Just stop. */
7087 /* And this works the same backward as frontward. MVS */
7088 end_stepping_range (ecs
);
7092 /* Reverse stepping through solib trampolines. */
7094 if (execution_direction
== EXEC_REVERSE
7095 && ecs
->event_thread
->control
.step_over_calls
!= STEP_OVER_NONE
7096 && (gdbarch_skip_trampoline_code (gdbarch
, frame
, stop_pc
)
7097 || (ecs
->stop_func_start
== 0
7098 && in_solib_dynsym_resolve_code (stop_pc
))))
7100 /* Any solib trampoline code can be handled in reverse
7101 by simply continuing to single-step. We have already
7102 executed the solib function (backwards), and a few
7103 steps will take us back through the trampoline to the
7109 if (ecs
->event_thread
->control
.step_over_calls
== STEP_OVER_ALL
)
7111 /* We're doing a "next".
7113 Normal (forward) execution: set a breakpoint at the
7114 callee's return address (the address at which the caller
7117 Reverse (backward) execution. set the step-resume
7118 breakpoint at the start of the function that we just
7119 stepped into (backwards), and continue to there. When we
7120 get there, we'll need to single-step back to the caller. */
7122 if (execution_direction
== EXEC_REVERSE
)
7124 /* If we're already at the start of the function, we've either
7125 just stepped backward into a single instruction function,
7126 or stepped back out of a signal handler to the first instruction
7127 of the function. Just keep going, which will single-step back
7129 if (ecs
->stop_func_start
!= stop_pc
&& ecs
->stop_func_start
!= 0)
7131 /* Normal function call return (static or dynamic). */
7132 symtab_and_line sr_sal
;
7133 sr_sal
.pc
= ecs
->stop_func_start
;
7134 sr_sal
.pspace
= get_frame_program_space (frame
);
7135 insert_step_resume_breakpoint_at_sal (gdbarch
,
7136 sr_sal
, null_frame_id
);
7140 insert_step_resume_breakpoint_at_caller (frame
);
7146 /* If we are in a function call trampoline (a stub between the
7147 calling routine and the real function), locate the real
7148 function. That's what tells us (a) whether we want to step
7149 into it at all, and (b) what prologue we want to run to the
7150 end of, if we do step into it. */
7151 real_stop_pc
= skip_language_trampoline (frame
, stop_pc
);
7152 if (real_stop_pc
== 0)
7153 real_stop_pc
= gdbarch_skip_trampoline_code (gdbarch
, frame
, stop_pc
);
7154 if (real_stop_pc
!= 0)
7155 ecs
->stop_func_start
= real_stop_pc
;
7157 if (real_stop_pc
!= 0 && in_solib_dynsym_resolve_code (real_stop_pc
))
7159 symtab_and_line sr_sal
;
7160 sr_sal
.pc
= ecs
->stop_func_start
;
7161 sr_sal
.pspace
= get_frame_program_space (frame
);
7163 insert_step_resume_breakpoint_at_sal (gdbarch
,
7164 sr_sal
, null_frame_id
);
7169 /* If we have line number information for the function we are
7170 thinking of stepping into and the function isn't on the skip
7173 If there are several symtabs at that PC (e.g. with include
7174 files), just want to know whether *any* of them have line
7175 numbers. find_pc_line handles this. */
7177 struct symtab_and_line tmp_sal
;
7179 tmp_sal
= find_pc_line (ecs
->stop_func_start
, 0);
7180 if (tmp_sal
.line
!= 0
7181 && !function_name_is_marked_for_skip (ecs
->stop_func_name
,
7183 && !inline_frame_is_marked_for_skip (true, ecs
->event_thread
))
7185 if (execution_direction
== EXEC_REVERSE
)
7186 handle_step_into_function_backward (gdbarch
, ecs
);
7188 handle_step_into_function (gdbarch
, ecs
);
7193 /* If we have no line number and the step-stop-if-no-debug is
7194 set, we stop the step so that the user has a chance to switch
7195 in assembly mode. */
7196 if (ecs
->event_thread
->control
.step_over_calls
== STEP_OVER_UNDEBUGGABLE
7197 && step_stop_if_no_debug
)
7199 end_stepping_range (ecs
);
7203 if (execution_direction
== EXEC_REVERSE
)
7205 /* If we're already at the start of the function, we've either just
7206 stepped backward into a single instruction function without line
7207 number info, or stepped back out of a signal handler to the first
7208 instruction of the function without line number info. Just keep
7209 going, which will single-step back to the caller. */
7210 if (ecs
->stop_func_start
!= stop_pc
)
7212 /* Set a breakpoint at callee's start address.
7213 From there we can step once and be back in the caller. */
7214 symtab_and_line sr_sal
;
7215 sr_sal
.pc
= ecs
->stop_func_start
;
7216 sr_sal
.pspace
= get_frame_program_space (frame
);
7217 insert_step_resume_breakpoint_at_sal (gdbarch
,
7218 sr_sal
, null_frame_id
);
7222 /* Set a breakpoint at callee's return address (the address
7223 at which the caller will resume). */
7224 insert_step_resume_breakpoint_at_caller (frame
);
7230 /* Reverse stepping through solib trampolines. */
7232 if (execution_direction
== EXEC_REVERSE
7233 && ecs
->event_thread
->control
.step_over_calls
!= STEP_OVER_NONE
)
7235 CORE_ADDR stop_pc
= ecs
->event_thread
->stop_pc ();
7237 if (gdbarch_skip_trampoline_code (gdbarch
, frame
, stop_pc
)
7238 || (ecs
->stop_func_start
== 0
7239 && in_solib_dynsym_resolve_code (stop_pc
)))
7241 /* Any solib trampoline code can be handled in reverse
7242 by simply continuing to single-step. We have already
7243 executed the solib function (backwards), and a few
7244 steps will take us back through the trampoline to the
7249 else if (in_solib_dynsym_resolve_code (stop_pc
))
7251 /* Stepped backward into the solib dynsym resolver.
7252 Set a breakpoint at its start and continue, then
7253 one more step will take us out. */
7254 symtab_and_line sr_sal
;
7255 sr_sal
.pc
= ecs
->stop_func_start
;
7256 sr_sal
.pspace
= get_frame_program_space (frame
);
7257 insert_step_resume_breakpoint_at_sal (gdbarch
,
7258 sr_sal
, null_frame_id
);
7264 /* This always returns the sal for the inner-most frame when we are in a
7265 stack of inlined frames, even if GDB actually believes that it is in a
7266 more outer frame. This is checked for below by calls to
7267 inline_skipped_frames. */
7268 stop_pc_sal
= find_pc_line (ecs
->event_thread
->stop_pc (), 0);
7270 /* NOTE: tausq/2004-05-24: This if block used to be done before all
7271 the trampoline processing logic, however, there are some trampolines
7272 that have no names, so we should do trampoline handling first. */
7273 if (ecs
->event_thread
->control
.step_over_calls
== STEP_OVER_UNDEBUGGABLE
7274 && ecs
->stop_func_name
== NULL
7275 && stop_pc_sal
.line
== 0)
7277 infrun_debug_printf ("stepped into undebuggable function");
7279 /* The inferior just stepped into, or returned to, an
7280 undebuggable function (where there is no debugging information
7281 and no line number corresponding to the address where the
7282 inferior stopped). Since we want to skip this kind of code,
7283 we keep going until the inferior returns from this
7284 function - unless the user has asked us not to (via
7285 set step-mode) or we no longer know how to get back
7286 to the call site. */
7287 if (step_stop_if_no_debug
7288 || !frame_id_p (frame_unwind_caller_id (frame
)))
7290 /* If we have no line number and the step-stop-if-no-debug
7291 is set, we stop the step so that the user has a chance to
7292 switch in assembly mode. */
7293 end_stepping_range (ecs
);
7298 /* Set a breakpoint at callee's return address (the address
7299 at which the caller will resume). */
7300 insert_step_resume_breakpoint_at_caller (frame
);
7306 if (ecs
->event_thread
->control
.step_range_end
== 1)
7308 /* It is stepi or nexti. We always want to stop stepping after
7310 infrun_debug_printf ("stepi/nexti");
7311 end_stepping_range (ecs
);
7315 if (stop_pc_sal
.line
== 0)
7317 /* We have no line number information. That means to stop
7318 stepping (does this always happen right after one instruction,
7319 when we do "s" in a function with no line numbers,
7320 or can this happen as a result of a return or longjmp?). */
7321 infrun_debug_printf ("line number info");
7322 end_stepping_range (ecs
);
7326 /* Look for "calls" to inlined functions, part one. If the inline
7327 frame machinery detected some skipped call sites, we have entered
7328 a new inline function. */
7330 if (frame_id_eq (get_frame_id (get_current_frame ()),
7331 ecs
->event_thread
->control
.step_frame_id
)
7332 && inline_skipped_frames (ecs
->event_thread
))
7334 infrun_debug_printf ("stepped into inlined function");
7336 symtab_and_line call_sal
= find_frame_sal (get_current_frame ());
7338 if (ecs
->event_thread
->control
.step_over_calls
!= STEP_OVER_ALL
)
7340 /* For "step", we're going to stop. But if the call site
7341 for this inlined function is on the same source line as
7342 we were previously stepping, go down into the function
7343 first. Otherwise stop at the call site. */
7345 if (call_sal
.line
== ecs
->event_thread
->current_line
7346 && call_sal
.symtab
== ecs
->event_thread
->current_symtab
)
7348 step_into_inline_frame (ecs
->event_thread
);
7349 if (inline_frame_is_marked_for_skip (false, ecs
->event_thread
))
7356 end_stepping_range (ecs
);
7361 /* For "next", we should stop at the call site if it is on a
7362 different source line. Otherwise continue through the
7363 inlined function. */
7364 if (call_sal
.line
== ecs
->event_thread
->current_line
7365 && call_sal
.symtab
== ecs
->event_thread
->current_symtab
)
7368 end_stepping_range (ecs
);
7373 /* Look for "calls" to inlined functions, part two. If we are still
7374 in the same real function we were stepping through, but we have
7375 to go further up to find the exact frame ID, we are stepping
7376 through a more inlined call beyond its call site. */
7378 if (get_frame_type (get_current_frame ()) == INLINE_FRAME
7379 && !frame_id_eq (get_frame_id (get_current_frame ()),
7380 ecs
->event_thread
->control
.step_frame_id
)
7381 && stepped_in_from (get_current_frame (),
7382 ecs
->event_thread
->control
.step_frame_id
))
7384 infrun_debug_printf ("stepping through inlined function");
7386 if (ecs
->event_thread
->control
.step_over_calls
== STEP_OVER_ALL
7387 || inline_frame_is_marked_for_skip (false, ecs
->event_thread
))
7390 end_stepping_range (ecs
);
7394 bool refresh_step_info
= true;
7395 if ((ecs
->event_thread
->stop_pc () == stop_pc_sal
.pc
)
7396 && (ecs
->event_thread
->current_line
!= stop_pc_sal
.line
7397 || ecs
->event_thread
->current_symtab
!= stop_pc_sal
.symtab
))
7399 /* We are at a different line. */
7401 if (stop_pc_sal
.is_stmt
)
7403 /* We are at the start of a statement.
7405 So stop. Note that we don't stop if we step into the middle of a
7406 statement. That is said to make things like for (;;) statements
7408 infrun_debug_printf ("stepped to a different line");
7409 end_stepping_range (ecs
);
7412 else if (frame_id_eq (get_frame_id (get_current_frame ()),
7413 ecs
->event_thread
->control
.step_frame_id
))
7415 /* We are not at the start of a statement, and we have not changed
7418 We ignore this line table entry, and continue stepping forward,
7419 looking for a better place to stop. */
7420 refresh_step_info
= false;
7421 infrun_debug_printf ("stepped to a different line, but "
7422 "it's not the start of a statement");
7426 /* We are not the start of a statement, and we have changed frame.
7428 We ignore this line table entry, and continue stepping forward,
7429 looking for a better place to stop. Keep refresh_step_info at
7430 true to note that the frame has changed, but ignore the line
7431 number to make sure we don't ignore a subsequent entry with the
7432 same line number. */
7433 stop_pc_sal
.line
= 0;
7434 infrun_debug_printf ("stepped to a different frame, but "
7435 "it's not the start of a statement");
7439 /* We aren't done stepping.
7441 Optimize by setting the stepping range to the line.
7442 (We might not be in the original line, but if we entered a
7443 new line in mid-statement, we continue stepping. This makes
7444 things like for(;;) statements work better.)
7446 If we entered a SAL that indicates a non-statement line table entry,
7447 then we update the stepping range, but we don't update the step info,
7448 which includes things like the line number we are stepping away from.
7449 This means we will stop when we find a line table entry that is marked
7450 as is-statement, even if it matches the non-statement one we just
7453 ecs
->event_thread
->control
.step_range_start
= stop_pc_sal
.pc
;
7454 ecs
->event_thread
->control
.step_range_end
= stop_pc_sal
.end
;
7455 ecs
->event_thread
->control
.may_range_step
= 1;
7457 ("updated step range, start = %s, end = %s, may_range_step = %d",
7458 paddress (gdbarch
, ecs
->event_thread
->control
.step_range_start
),
7459 paddress (gdbarch
, ecs
->event_thread
->control
.step_range_end
),
7460 ecs
->event_thread
->control
.may_range_step
);
7461 if (refresh_step_info
)
7462 set_step_info (ecs
->event_thread
, frame
, stop_pc_sal
);
7464 infrun_debug_printf ("keep going");
7468 static bool restart_stepped_thread (process_stratum_target
*resume_target
,
7469 ptid_t resume_ptid
);
7471 /* In all-stop mode, if we're currently stepping but have stopped in
7472 some other thread, we may need to switch back to the stepped
7473 thread. Returns true we set the inferior running, false if we left
7474 it stopped (and the event needs further processing). */
7477 switch_back_to_stepped_thread (struct execution_control_state
*ecs
)
7479 if (!target_is_non_stop_p ())
7481 /* If any thread is blocked on some internal breakpoint, and we
7482 simply need to step over that breakpoint to get it going
7483 again, do that first. */
7485 /* However, if we see an event for the stepping thread, then we
7486 know all other threads have been moved past their breakpoints
7487 already. Let the caller check whether the step is finished,
7488 etc., before deciding to move it past a breakpoint. */
7489 if (ecs
->event_thread
->control
.step_range_end
!= 0)
7492 /* Check if the current thread is blocked on an incomplete
7493 step-over, interrupted by a random signal. */
7494 if (ecs
->event_thread
->control
.trap_expected
7495 && ecs
->event_thread
->stop_signal () != GDB_SIGNAL_TRAP
)
7498 ("need to finish step-over of [%s]",
7499 ecs
->event_thread
->ptid
.to_string ().c_str ());
7504 /* Check if the current thread is blocked by a single-step
7505 breakpoint of another thread. */
7506 if (ecs
->hit_singlestep_breakpoint
)
7508 infrun_debug_printf ("need to step [%s] over single-step breakpoint",
7509 ecs
->ptid
.to_string ().c_str ());
7514 /* If this thread needs yet another step-over (e.g., stepping
7515 through a delay slot), do it first before moving on to
7517 if (thread_still_needs_step_over (ecs
->event_thread
))
7520 ("thread [%s] still needs step-over",
7521 ecs
->event_thread
->ptid
.to_string ().c_str ());
7526 /* If scheduler locking applies even if not stepping, there's no
7527 need to walk over threads. Above we've checked whether the
7528 current thread is stepping. If some other thread not the
7529 event thread is stepping, then it must be that scheduler
7530 locking is not in effect. */
7531 if (schedlock_applies (ecs
->event_thread
))
7534 /* Otherwise, we no longer expect a trap in the current thread.
7535 Clear the trap_expected flag before switching back -- this is
7536 what keep_going does as well, if we call it. */
7537 ecs
->event_thread
->control
.trap_expected
= 0;
7539 /* Likewise, clear the signal if it should not be passed. */
7540 if (!signal_program
[ecs
->event_thread
->stop_signal ()])
7541 ecs
->event_thread
->set_stop_signal (GDB_SIGNAL_0
);
7543 if (restart_stepped_thread (ecs
->target
, ecs
->ptid
))
7545 prepare_to_wait (ecs
);
7549 switch_to_thread (ecs
->event_thread
);
7555 /* Look for the thread that was stepping, and resume it.
7556 RESUME_TARGET / RESUME_PTID indicate the set of threads the caller
7557 is resuming. Return true if a thread was started, false
7561 restart_stepped_thread (process_stratum_target
*resume_target
,
7564 /* Do all pending step-overs before actually proceeding with
7566 if (start_step_over ())
7569 for (thread_info
*tp
: all_threads_safe ())
7571 if (tp
->state
== THREAD_EXITED
)
7574 if (tp
->has_pending_waitstatus ())
7577 /* Ignore threads of processes the caller is not
7580 && (tp
->inf
->process_target () != resume_target
7581 || tp
->inf
->pid
!= resume_ptid
.pid ()))
7584 if (tp
->control
.trap_expected
)
7586 infrun_debug_printf ("switching back to stepped thread (step-over)");
7588 if (keep_going_stepped_thread (tp
))
7593 for (thread_info
*tp
: all_threads_safe ())
7595 if (tp
->state
== THREAD_EXITED
)
7598 if (tp
->has_pending_waitstatus ())
7601 /* Ignore threads of processes the caller is not
7604 && (tp
->inf
->process_target () != resume_target
7605 || tp
->inf
->pid
!= resume_ptid
.pid ()))
7608 /* Did we find the stepping thread? */
7609 if (tp
->control
.step_range_end
)
7611 infrun_debug_printf ("switching back to stepped thread (stepping)");
7613 if (keep_going_stepped_thread (tp
))
7624 restart_after_all_stop_detach (process_stratum_target
*proc_target
)
7626 /* Note we don't check target_is_non_stop_p() here, because the
7627 current inferior may no longer have a process_stratum target
7628 pushed, as we just detached. */
7630 /* See if we have a THREAD_RUNNING thread that need to be
7631 re-resumed. If we have any thread that is already executing,
7632 then we don't need to resume the target -- it is already been
7633 resumed. With the remote target (in all-stop), it's even
7634 impossible to issue another resumption if the target is already
7635 resumed, until the target reports a stop. */
7636 for (thread_info
*thr
: all_threads (proc_target
))
7638 if (thr
->state
!= THREAD_RUNNING
)
7641 /* If we have any thread that is already executing, then we
7642 don't need to resume the target -- it is already been
7644 if (thr
->executing ())
7647 /* If we have a pending event to process, skip resuming the
7648 target and go straight to processing it. */
7649 if (thr
->resumed () && thr
->has_pending_waitstatus ())
7653 /* Alright, we need to re-resume the target. If a thread was
7654 stepping, we need to restart it stepping. */
7655 if (restart_stepped_thread (proc_target
, minus_one_ptid
))
7658 /* Otherwise, find the first THREAD_RUNNING thread and resume
7660 for (thread_info
*thr
: all_threads (proc_target
))
7662 if (thr
->state
!= THREAD_RUNNING
)
7665 execution_control_state ecs
;
7666 reset_ecs (&ecs
, thr
);
7667 switch_to_thread (thr
);
7673 /* Set a previously stepped thread back to stepping. Returns true on
7674 success, false if the resume is not possible (e.g., the thread
7678 keep_going_stepped_thread (struct thread_info
*tp
)
7680 struct frame_info
*frame
;
7681 struct execution_control_state ecss
;
7682 struct execution_control_state
*ecs
= &ecss
;
7684 /* If the stepping thread exited, then don't try to switch back and
7685 resume it, which could fail in several different ways depending
7686 on the target. Instead, just keep going.
7688 We can find a stepping dead thread in the thread list in two
7691 - The target supports thread exit events, and when the target
7692 tries to delete the thread from the thread list, inferior_ptid
7693 pointed at the exiting thread. In such case, calling
7694 delete_thread does not really remove the thread from the list;
7695 instead, the thread is left listed, with 'exited' state.
7697 - The target's debug interface does not support thread exit
7698 events, and so we have no idea whatsoever if the previously
7699 stepping thread is still alive. For that reason, we need to
7700 synchronously query the target now. */
7702 if (tp
->state
== THREAD_EXITED
|| !target_thread_alive (tp
->ptid
))
7704 infrun_debug_printf ("not resuming previously stepped thread, it has "
7711 infrun_debug_printf ("resuming previously stepped thread");
7713 reset_ecs (ecs
, tp
);
7714 switch_to_thread (tp
);
7716 tp
->set_stop_pc (regcache_read_pc (get_thread_regcache (tp
)));
7717 frame
= get_current_frame ();
7719 /* If the PC of the thread we were trying to single-step has
7720 changed, then that thread has trapped or been signaled, but the
7721 event has not been reported to GDB yet. Re-poll the target
7722 looking for this particular thread's event (i.e. temporarily
7723 enable schedlock) by:
7725 - setting a break at the current PC
7726 - resuming that particular thread, only (by setting trap
7729 This prevents us continuously moving the single-step breakpoint
7730 forward, one instruction at a time, overstepping. */
7732 if (tp
->stop_pc () != tp
->prev_pc
)
7736 infrun_debug_printf ("expected thread advanced also (%s -> %s)",
7737 paddress (target_gdbarch (), tp
->prev_pc
),
7738 paddress (target_gdbarch (), tp
->stop_pc ()));
7740 /* Clear the info of the previous step-over, as it's no longer
7741 valid (if the thread was trying to step over a breakpoint, it
7742 has already succeeded). It's what keep_going would do too,
7743 if we called it. Do this before trying to insert the sss
7744 breakpoint, otherwise if we were previously trying to step
7745 over this exact address in another thread, the breakpoint is
7747 clear_step_over_info ();
7748 tp
->control
.trap_expected
= 0;
7750 insert_single_step_breakpoint (get_frame_arch (frame
),
7751 get_frame_address_space (frame
),
7754 tp
->set_resumed (true);
7755 resume_ptid
= internal_resume_ptid (tp
->control
.stepping_command
);
7756 do_target_resume (resume_ptid
, false, GDB_SIGNAL_0
);
7760 infrun_debug_printf ("expected thread still hasn't advanced");
7762 keep_going_pass_signal (ecs
);
7768 /* Is thread TP in the middle of (software or hardware)
7769 single-stepping? (Note the result of this function must never be
7770 passed directly as target_resume's STEP parameter.) */
7773 currently_stepping (struct thread_info
*tp
)
7775 return ((tp
->control
.step_range_end
7776 && tp
->control
.step_resume_breakpoint
== NULL
)
7777 || tp
->control
.trap_expected
7778 || tp
->stepped_breakpoint
7779 || bpstat_should_step ());
7782 /* Inferior has stepped into a subroutine call with source code that
7783 we should not step over. Do step to the first line of code in
7787 handle_step_into_function (struct gdbarch
*gdbarch
,
7788 struct execution_control_state
*ecs
)
7790 fill_in_stop_func (gdbarch
, ecs
);
7792 compunit_symtab
*cust
7793 = find_pc_compunit_symtab (ecs
->event_thread
->stop_pc ());
7794 if (cust
!= NULL
&& compunit_language (cust
) != language_asm
)
7795 ecs
->stop_func_start
7796 = gdbarch_skip_prologue_noexcept (gdbarch
, ecs
->stop_func_start
);
7798 symtab_and_line stop_func_sal
= find_pc_line (ecs
->stop_func_start
, 0);
7799 /* Use the step_resume_break to step until the end of the prologue,
7800 even if that involves jumps (as it seems to on the vax under
7802 /* If the prologue ends in the middle of a source line, continue to
7803 the end of that source line (if it is still within the function).
7804 Otherwise, just go to end of prologue. */
7805 if (stop_func_sal
.end
7806 && stop_func_sal
.pc
!= ecs
->stop_func_start
7807 && stop_func_sal
.end
< ecs
->stop_func_end
)
7808 ecs
->stop_func_start
= stop_func_sal
.end
;
7810 /* Architectures which require breakpoint adjustment might not be able
7811 to place a breakpoint at the computed address. If so, the test
7812 ``ecs->stop_func_start == stop_pc'' will never succeed. Adjust
7813 ecs->stop_func_start to an address at which a breakpoint may be
7814 legitimately placed.
7816 Note: kevinb/2004-01-19: On FR-V, if this adjustment is not
7817 made, GDB will enter an infinite loop when stepping through
7818 optimized code consisting of VLIW instructions which contain
7819 subinstructions corresponding to different source lines. On
7820 FR-V, it's not permitted to place a breakpoint on any but the
7821 first subinstruction of a VLIW instruction. When a breakpoint is
7822 set, GDB will adjust the breakpoint address to the beginning of
7823 the VLIW instruction. Thus, we need to make the corresponding
7824 adjustment here when computing the stop address. */
7826 if (gdbarch_adjust_breakpoint_address_p (gdbarch
))
7828 ecs
->stop_func_start
7829 = gdbarch_adjust_breakpoint_address (gdbarch
,
7830 ecs
->stop_func_start
);
7833 if (ecs
->stop_func_start
== ecs
->event_thread
->stop_pc ())
7835 /* We are already there: stop now. */
7836 end_stepping_range (ecs
);
7841 /* Put the step-breakpoint there and go until there. */
7842 symtab_and_line sr_sal
;
7843 sr_sal
.pc
= ecs
->stop_func_start
;
7844 sr_sal
.section
= find_pc_overlay (ecs
->stop_func_start
);
7845 sr_sal
.pspace
= get_frame_program_space (get_current_frame ());
7847 /* Do not specify what the fp should be when we stop since on
7848 some machines the prologue is where the new fp value is
7850 insert_step_resume_breakpoint_at_sal (gdbarch
, sr_sal
, null_frame_id
);
7852 /* And make sure stepping stops right away then. */
7853 ecs
->event_thread
->control
.step_range_end
7854 = ecs
->event_thread
->control
.step_range_start
;
7859 /* Inferior has stepped backward into a subroutine call with source
7860 code that we should not step over. Do step to the beginning of the
7861 last line of code in it. */
7864 handle_step_into_function_backward (struct gdbarch
*gdbarch
,
7865 struct execution_control_state
*ecs
)
7867 struct compunit_symtab
*cust
;
7868 struct symtab_and_line stop_func_sal
;
7870 fill_in_stop_func (gdbarch
, ecs
);
7872 cust
= find_pc_compunit_symtab (ecs
->event_thread
->stop_pc ());
7873 if (cust
!= NULL
&& compunit_language (cust
) != language_asm
)
7874 ecs
->stop_func_start
7875 = gdbarch_skip_prologue_noexcept (gdbarch
, ecs
->stop_func_start
);
7877 stop_func_sal
= find_pc_line (ecs
->event_thread
->stop_pc (), 0);
7879 /* OK, we're just going to keep stepping here. */
7880 if (stop_func_sal
.pc
== ecs
->event_thread
->stop_pc ())
7882 /* We're there already. Just stop stepping now. */
7883 end_stepping_range (ecs
);
7887 /* Else just reset the step range and keep going.
7888 No step-resume breakpoint, they don't work for
7889 epilogues, which can have multiple entry paths. */
7890 ecs
->event_thread
->control
.step_range_start
= stop_func_sal
.pc
;
7891 ecs
->event_thread
->control
.step_range_end
= stop_func_sal
.end
;
7897 /* Insert a "step-resume breakpoint" at SR_SAL with frame ID SR_ID.
7898 This is used to both functions and to skip over code. */
7901 insert_step_resume_breakpoint_at_sal_1 (struct gdbarch
*gdbarch
,
7902 struct symtab_and_line sr_sal
,
7903 struct frame_id sr_id
,
7904 enum bptype sr_type
)
7906 /* There should never be more than one step-resume or longjmp-resume
7907 breakpoint per thread, so we should never be setting a new
7908 step_resume_breakpoint when one is already active. */
7909 gdb_assert (inferior_thread ()->control
.step_resume_breakpoint
== NULL
);
7910 gdb_assert (sr_type
== bp_step_resume
|| sr_type
== bp_hp_step_resume
);
7912 infrun_debug_printf ("inserting step-resume breakpoint at %s",
7913 paddress (gdbarch
, sr_sal
.pc
));
7915 inferior_thread ()->control
.step_resume_breakpoint
7916 = set_momentary_breakpoint (gdbarch
, sr_sal
, sr_id
, sr_type
).release ();
7920 insert_step_resume_breakpoint_at_sal (struct gdbarch
*gdbarch
,
7921 struct symtab_and_line sr_sal
,
7922 struct frame_id sr_id
)
7924 insert_step_resume_breakpoint_at_sal_1 (gdbarch
,
7929 /* Insert a "high-priority step-resume breakpoint" at RETURN_FRAME.pc.
7930 This is used to skip a potential signal handler.
7932 This is called with the interrupted function's frame. The signal
7933 handler, when it returns, will resume the interrupted function at
7937 insert_hp_step_resume_breakpoint_at_frame (struct frame_info
*return_frame
)
7939 gdb_assert (return_frame
!= NULL
);
7941 struct gdbarch
*gdbarch
= get_frame_arch (return_frame
);
7943 symtab_and_line sr_sal
;
7944 sr_sal
.pc
= gdbarch_addr_bits_remove (gdbarch
, get_frame_pc (return_frame
));
7945 sr_sal
.section
= find_pc_overlay (sr_sal
.pc
);
7946 sr_sal
.pspace
= get_frame_program_space (return_frame
);
7948 insert_step_resume_breakpoint_at_sal_1 (gdbarch
, sr_sal
,
7949 get_stack_frame_id (return_frame
),
7953 /* Insert a "step-resume breakpoint" at the previous frame's PC. This
7954 is used to skip a function after stepping into it (for "next" or if
7955 the called function has no debugging information).
7957 The current function has almost always been reached by single
7958 stepping a call or return instruction. NEXT_FRAME belongs to the
7959 current function, and the breakpoint will be set at the caller's
7962 This is a separate function rather than reusing
7963 insert_hp_step_resume_breakpoint_at_frame in order to avoid
7964 get_prev_frame, which may stop prematurely (see the implementation
7965 of frame_unwind_caller_id for an example). */
7968 insert_step_resume_breakpoint_at_caller (struct frame_info
*next_frame
)
7970 /* We shouldn't have gotten here if we don't know where the call site
7972 gdb_assert (frame_id_p (frame_unwind_caller_id (next_frame
)));
7974 struct gdbarch
*gdbarch
= frame_unwind_caller_arch (next_frame
);
7976 symtab_and_line sr_sal
;
7977 sr_sal
.pc
= gdbarch_addr_bits_remove (gdbarch
,
7978 frame_unwind_caller_pc (next_frame
));
7979 sr_sal
.section
= find_pc_overlay (sr_sal
.pc
);
7980 sr_sal
.pspace
= frame_unwind_program_space (next_frame
);
7982 insert_step_resume_breakpoint_at_sal (gdbarch
, sr_sal
,
7983 frame_unwind_caller_id (next_frame
));
7986 /* Insert a "longjmp-resume" breakpoint at PC. This is used to set a
7987 new breakpoint at the target of a jmp_buf. The handling of
7988 longjmp-resume uses the same mechanisms used for handling
7989 "step-resume" breakpoints. */
7992 insert_longjmp_resume_breakpoint (struct gdbarch
*gdbarch
, CORE_ADDR pc
)
7994 /* There should never be more than one longjmp-resume breakpoint per
7995 thread, so we should never be setting a new
7996 longjmp_resume_breakpoint when one is already active. */
7997 gdb_assert (inferior_thread ()->control
.exception_resume_breakpoint
== NULL
);
7999 infrun_debug_printf ("inserting longjmp-resume breakpoint at %s",
8000 paddress (gdbarch
, pc
));
8002 inferior_thread ()->control
.exception_resume_breakpoint
=
8003 set_momentary_breakpoint_at_pc (gdbarch
, pc
, bp_longjmp_resume
).release ();
8006 /* Insert an exception resume breakpoint. TP is the thread throwing
8007 the exception. The block B is the block of the unwinder debug hook
8008 function. FRAME is the frame corresponding to the call to this
8009 function. SYM is the symbol of the function argument holding the
8010 target PC of the exception. */
8013 insert_exception_resume_breakpoint (struct thread_info
*tp
,
8014 const struct block
*b
,
8015 struct frame_info
*frame
,
8020 struct block_symbol vsym
;
8021 struct value
*value
;
8023 struct breakpoint
*bp
;
8025 vsym
= lookup_symbol_search_name (sym
->search_name (),
8027 value
= read_var_value (vsym
.symbol
, vsym
.block
, frame
);
8028 /* If the value was optimized out, revert to the old behavior. */
8029 if (! value_optimized_out (value
))
8031 handler
= value_as_address (value
);
8033 infrun_debug_printf ("exception resume at %lx",
8034 (unsigned long) handler
);
8036 bp
= set_momentary_breakpoint_at_pc (get_frame_arch (frame
),
8038 bp_exception_resume
).release ();
8040 /* set_momentary_breakpoint_at_pc invalidates FRAME. */
8043 bp
->thread
= tp
->global_num
;
8044 inferior_thread ()->control
.exception_resume_breakpoint
= bp
;
8047 catch (const gdb_exception_error
&e
)
8049 /* We want to ignore errors here. */
8053 /* A helper for check_exception_resume that sets an
8054 exception-breakpoint based on a SystemTap probe. */
8057 insert_exception_resume_from_probe (struct thread_info
*tp
,
8058 const struct bound_probe
*probe
,
8059 struct frame_info
*frame
)
8061 struct value
*arg_value
;
8063 struct breakpoint
*bp
;
8065 arg_value
= probe_safe_evaluate_at_pc (frame
, 1);
8069 handler
= value_as_address (arg_value
);
8071 infrun_debug_printf ("exception resume at %s",
8072 paddress (probe
->objfile
->arch (), handler
));
8074 bp
= set_momentary_breakpoint_at_pc (get_frame_arch (frame
),
8075 handler
, bp_exception_resume
).release ();
8076 bp
->thread
= tp
->global_num
;
8077 inferior_thread ()->control
.exception_resume_breakpoint
= bp
;
8080 /* This is called when an exception has been intercepted. Check to
8081 see whether the exception's destination is of interest, and if so,
8082 set an exception resume breakpoint there. */
8085 check_exception_resume (struct execution_control_state
*ecs
,
8086 struct frame_info
*frame
)
8088 struct bound_probe probe
;
8089 struct symbol
*func
;
8091 /* First see if this exception unwinding breakpoint was set via a
8092 SystemTap probe point. If so, the probe has two arguments: the
8093 CFA and the HANDLER. We ignore the CFA, extract the handler, and
8094 set a breakpoint there. */
8095 probe
= find_probe_by_pc (get_frame_pc (frame
));
8098 insert_exception_resume_from_probe (ecs
->event_thread
, &probe
, frame
);
8102 func
= get_frame_function (frame
);
8108 const struct block
*b
;
8109 struct block_iterator iter
;
8113 /* The exception breakpoint is a thread-specific breakpoint on
8114 the unwinder's debug hook, declared as:
8116 void _Unwind_DebugHook (void *cfa, void *handler);
8118 The CFA argument indicates the frame to which control is
8119 about to be transferred. HANDLER is the destination PC.
8121 We ignore the CFA and set a temporary breakpoint at HANDLER.
8122 This is not extremely efficient but it avoids issues in gdb
8123 with computing the DWARF CFA, and it also works even in weird
8124 cases such as throwing an exception from inside a signal
8127 b
= func
->value_block ();
8128 ALL_BLOCK_SYMBOLS (b
, iter
, sym
)
8130 if (!sym
->is_argument ())
8137 insert_exception_resume_breakpoint (ecs
->event_thread
,
8143 catch (const gdb_exception_error
&e
)
8149 stop_waiting (struct execution_control_state
*ecs
)
8151 infrun_debug_printf ("stop_waiting");
8153 /* Let callers know we don't want to wait for the inferior anymore. */
8154 ecs
->wait_some_more
= 0;
8157 /* Like keep_going, but passes the signal to the inferior, even if the
8158 signal is set to nopass. */
8161 keep_going_pass_signal (struct execution_control_state
*ecs
)
8163 gdb_assert (ecs
->event_thread
->ptid
== inferior_ptid
);
8164 gdb_assert (!ecs
->event_thread
->resumed ());
8166 /* Save the pc before execution, to compare with pc after stop. */
8167 ecs
->event_thread
->prev_pc
8168 = regcache_read_pc_protected (get_thread_regcache (ecs
->event_thread
));
8170 if (ecs
->event_thread
->control
.trap_expected
)
8172 struct thread_info
*tp
= ecs
->event_thread
;
8174 infrun_debug_printf ("%s has trap_expected set, "
8175 "resuming to collect trap",
8176 tp
->ptid
.to_string ().c_str ());
8178 /* We haven't yet gotten our trap, and either: intercepted a
8179 non-signal event (e.g., a fork); or took a signal which we
8180 are supposed to pass through to the inferior. Simply
8182 resume (ecs
->event_thread
->stop_signal ());
8184 else if (step_over_info_valid_p ())
8186 /* Another thread is stepping over a breakpoint in-line. If
8187 this thread needs a step-over too, queue the request. In
8188 either case, this resume must be deferred for later. */
8189 struct thread_info
*tp
= ecs
->event_thread
;
8191 if (ecs
->hit_singlestep_breakpoint
8192 || thread_still_needs_step_over (tp
))
8194 infrun_debug_printf ("step-over already in progress: "
8195 "step-over for %s deferred",
8196 tp
->ptid
.to_string ().c_str ());
8197 global_thread_step_over_chain_enqueue (tp
);
8200 infrun_debug_printf ("step-over in progress: resume of %s deferred",
8201 tp
->ptid
.to_string ().c_str ());
8205 struct regcache
*regcache
= get_current_regcache ();
8208 step_over_what step_what
;
8210 /* Either the trap was not expected, but we are continuing
8211 anyway (if we got a signal, the user asked it be passed to
8214 We got our expected trap, but decided we should resume from
8217 We're going to run this baby now!
8219 Note that insert_breakpoints won't try to re-insert
8220 already inserted breakpoints. Therefore, we don't
8221 care if breakpoints were already inserted, or not. */
8223 /* If we need to step over a breakpoint, and we're not using
8224 displaced stepping to do so, insert all breakpoints
8225 (watchpoints, etc.) but the one we're stepping over, step one
8226 instruction, and then re-insert the breakpoint when that step
8229 step_what
= thread_still_needs_step_over (ecs
->event_thread
);
8231 remove_bp
= (ecs
->hit_singlestep_breakpoint
8232 || (step_what
& STEP_OVER_BREAKPOINT
));
8233 remove_wps
= (step_what
& STEP_OVER_WATCHPOINT
);
8235 /* We can't use displaced stepping if we need to step past a
8236 watchpoint. The instruction copied to the scratch pad would
8237 still trigger the watchpoint. */
8239 && (remove_wps
|| !use_displaced_stepping (ecs
->event_thread
)))
8241 set_step_over_info (regcache
->aspace (),
8242 regcache_read_pc (regcache
), remove_wps
,
8243 ecs
->event_thread
->global_num
);
8245 else if (remove_wps
)
8246 set_step_over_info (NULL
, 0, remove_wps
, -1);
8248 /* If we now need to do an in-line step-over, we need to stop
8249 all other threads. Note this must be done before
8250 insert_breakpoints below, because that removes the breakpoint
8251 we're about to step over, otherwise other threads could miss
8253 if (step_over_info_valid_p () && target_is_non_stop_p ())
8254 stop_all_threads ("starting in-line step-over");
8256 /* Stop stepping if inserting breakpoints fails. */
8259 insert_breakpoints ();
8261 catch (const gdb_exception_error
&e
)
8263 exception_print (gdb_stderr
, e
);
8265 clear_step_over_info ();
8269 ecs
->event_thread
->control
.trap_expected
= (remove_bp
|| remove_wps
);
8271 resume (ecs
->event_thread
->stop_signal ());
8274 prepare_to_wait (ecs
);
8277 /* Called when we should continue running the inferior, because the
8278 current event doesn't cause a user visible stop. This does the
8279 resuming part; waiting for the next event is done elsewhere. */
8282 keep_going (struct execution_control_state
*ecs
)
8284 if (ecs
->event_thread
->control
.trap_expected
8285 && ecs
->event_thread
->stop_signal () == GDB_SIGNAL_TRAP
)
8286 ecs
->event_thread
->control
.trap_expected
= 0;
8288 if (!signal_program
[ecs
->event_thread
->stop_signal ()])
8289 ecs
->event_thread
->set_stop_signal (GDB_SIGNAL_0
);
8290 keep_going_pass_signal (ecs
);
8293 /* This function normally comes after a resume, before
8294 handle_inferior_event exits. It takes care of any last bits of
8295 housekeeping, and sets the all-important wait_some_more flag. */
8298 prepare_to_wait (struct execution_control_state
*ecs
)
8300 infrun_debug_printf ("prepare_to_wait");
8302 ecs
->wait_some_more
= 1;
8304 /* If the target can't async, emulate it by marking the infrun event
8305 handler such that as soon as we get back to the event-loop, we
8306 immediately end up in fetch_inferior_event again calling
8308 if (!target_can_async_p ())
8309 mark_infrun_async_event_handler ();
8312 /* We are done with the step range of a step/next/si/ni command.
8313 Called once for each n of a "step n" operation. */
8316 end_stepping_range (struct execution_control_state
*ecs
)
8318 ecs
->event_thread
->control
.stop_step
= 1;
8322 /* Several print_*_reason functions to print why the inferior has stopped.
8323 We always print something when the inferior exits, or receives a signal.
8324 The rest of the cases are dealt with later on in normal_stop and
8325 print_it_typical. Ideally there should be a call to one of these
8326 print_*_reason functions functions from handle_inferior_event each time
8327 stop_waiting is called.
8329 Note that we don't call these directly, instead we delegate that to
8330 the interpreters, through observers. Interpreters then call these
8331 with whatever uiout is right. */
8334 print_end_stepping_range_reason (struct ui_out
*uiout
)
8336 /* For CLI-like interpreters, print nothing. */
8338 if (uiout
->is_mi_like_p ())
8340 uiout
->field_string ("reason",
8341 async_reason_lookup (EXEC_ASYNC_END_STEPPING_RANGE
));
8346 print_signal_exited_reason (struct ui_out
*uiout
, enum gdb_signal siggnal
)
8348 annotate_signalled ();
8349 if (uiout
->is_mi_like_p ())
8351 ("reason", async_reason_lookup (EXEC_ASYNC_EXITED_SIGNALLED
));
8352 uiout
->text ("\nProgram terminated with signal ");
8353 annotate_signal_name ();
8354 uiout
->field_string ("signal-name",
8355 gdb_signal_to_name (siggnal
));
8356 annotate_signal_name_end ();
8358 annotate_signal_string ();
8359 uiout
->field_string ("signal-meaning",
8360 gdb_signal_to_string (siggnal
));
8361 annotate_signal_string_end ();
8362 uiout
->text (".\n");
8363 uiout
->text ("The program no longer exists.\n");
8367 print_exited_reason (struct ui_out
*uiout
, int exitstatus
)
8369 struct inferior
*inf
= current_inferior ();
8370 std::string pidstr
= target_pid_to_str (ptid_t (inf
->pid
));
8372 annotate_exited (exitstatus
);
8375 if (uiout
->is_mi_like_p ())
8376 uiout
->field_string ("reason", async_reason_lookup (EXEC_ASYNC_EXITED
));
8377 std::string exit_code_str
8378 = string_printf ("0%o", (unsigned int) exitstatus
);
8379 uiout
->message ("[Inferior %s (%s) exited with code %pF]\n",
8380 plongest (inf
->num
), pidstr
.c_str (),
8381 string_field ("exit-code", exit_code_str
.c_str ()));
8385 if (uiout
->is_mi_like_p ())
8387 ("reason", async_reason_lookup (EXEC_ASYNC_EXITED_NORMALLY
));
8388 uiout
->message ("[Inferior %s (%s) exited normally]\n",
8389 plongest (inf
->num
), pidstr
.c_str ());
8394 print_signal_received_reason (struct ui_out
*uiout
, enum gdb_signal siggnal
)
8396 struct thread_info
*thr
= inferior_thread ();
8400 if (uiout
->is_mi_like_p ())
8402 else if (show_thread_that_caused_stop ())
8404 uiout
->text ("\nThread ");
8405 uiout
->field_string ("thread-id", print_thread_id (thr
));
8407 const char *name
= thread_name (thr
);
8410 uiout
->text (" \"");
8411 uiout
->field_string ("name", name
);
8416 uiout
->text ("\nProgram");
8418 if (siggnal
== GDB_SIGNAL_0
&& !uiout
->is_mi_like_p ())
8419 uiout
->text (" stopped");
8422 uiout
->text (" received signal ");
8423 annotate_signal_name ();
8424 if (uiout
->is_mi_like_p ())
8426 ("reason", async_reason_lookup (EXEC_ASYNC_SIGNAL_RECEIVED
));
8427 uiout
->field_string ("signal-name", gdb_signal_to_name (siggnal
));
8428 annotate_signal_name_end ();
8430 annotate_signal_string ();
8431 uiout
->field_string ("signal-meaning", gdb_signal_to_string (siggnal
));
8433 struct regcache
*regcache
= get_current_regcache ();
8434 struct gdbarch
*gdbarch
= regcache
->arch ();
8435 if (gdbarch_report_signal_info_p (gdbarch
))
8436 gdbarch_report_signal_info (gdbarch
, uiout
, siggnal
);
8438 annotate_signal_string_end ();
8440 uiout
->text (".\n");
8444 print_no_history_reason (struct ui_out
*uiout
)
8446 uiout
->text ("\nNo more reverse-execution history.\n");
8449 /* Print current location without a level number, if we have changed
8450 functions or hit a breakpoint. Print source line if we have one.
8451 bpstat_print contains the logic deciding in detail what to print,
8452 based on the event(s) that just occurred. */
8455 print_stop_location (const target_waitstatus
&ws
)
8458 enum print_what source_flag
;
8459 int do_frame_printing
= 1;
8460 struct thread_info
*tp
= inferior_thread ();
8462 bpstat_ret
= bpstat_print (tp
->control
.stop_bpstat
, ws
.kind ());
8466 /* FIXME: cagney/2002-12-01: Given that a frame ID does (or
8467 should) carry around the function and does (or should) use
8468 that when doing a frame comparison. */
8469 if (tp
->control
.stop_step
8470 && frame_id_eq (tp
->control
.step_frame_id
,
8471 get_frame_id (get_current_frame ()))
8472 && (tp
->control
.step_start_function
8473 == find_pc_function (tp
->stop_pc ())))
8475 /* Finished step, just print source line. */
8476 source_flag
= SRC_LINE
;
8480 /* Print location and source line. */
8481 source_flag
= SRC_AND_LOC
;
8484 case PRINT_SRC_AND_LOC
:
8485 /* Print location and source line. */
8486 source_flag
= SRC_AND_LOC
;
8488 case PRINT_SRC_ONLY
:
8489 source_flag
= SRC_LINE
;
8492 /* Something bogus. */
8493 source_flag
= SRC_LINE
;
8494 do_frame_printing
= 0;
8497 internal_error (__FILE__
, __LINE__
, _("Unknown value."));
8500 /* The behavior of this routine with respect to the source
8502 SRC_LINE: Print only source line
8503 LOCATION: Print only location
8504 SRC_AND_LOC: Print location and source line. */
8505 if (do_frame_printing
)
8506 print_stack_frame (get_selected_frame (NULL
), 0, source_flag
, 1);
8512 print_stop_event (struct ui_out
*uiout
, bool displays
)
8514 struct target_waitstatus last
;
8515 struct thread_info
*tp
;
8517 get_last_target_status (nullptr, nullptr, &last
);
8520 scoped_restore save_uiout
= make_scoped_restore (¤t_uiout
, uiout
);
8522 print_stop_location (last
);
8524 /* Display the auto-display expressions. */
8529 tp
= inferior_thread ();
8530 if (tp
->thread_fsm () != nullptr
8531 && tp
->thread_fsm ()->finished_p ())
8533 struct return_value_info
*rv
;
8535 rv
= tp
->thread_fsm ()->return_value ();
8537 print_return_value (uiout
, rv
);
8544 maybe_remove_breakpoints (void)
8546 if (!breakpoints_should_be_inserted_now () && target_has_execution ())
8548 if (remove_breakpoints ())
8550 target_terminal::ours_for_output ();
8551 gdb_printf (_("Cannot remove breakpoints because "
8552 "program is no longer writable.\nFurther "
8553 "execution is probably impossible.\n"));
8558 /* The execution context that just caused a normal stop. */
8564 DISABLE_COPY_AND_ASSIGN (stop_context
);
8566 bool changed () const;
8571 /* The event PTID. */
8575 /* If stopp for a thread event, this is the thread that caused the
8577 thread_info_ref thread
;
8579 /* The inferior that caused the stop. */
8583 /* Initializes a new stop context. If stopped for a thread event, this
8584 takes a strong reference to the thread. */
8586 stop_context::stop_context ()
8588 stop_id
= get_stop_id ();
8589 ptid
= inferior_ptid
;
8590 inf_num
= current_inferior ()->num
;
8592 if (inferior_ptid
!= null_ptid
)
8594 /* Take a strong reference so that the thread can't be deleted
8596 thread
= thread_info_ref::new_reference (inferior_thread ());
8600 /* Return true if the current context no longer matches the saved stop
8604 stop_context::changed () const
8606 if (ptid
!= inferior_ptid
)
8608 if (inf_num
!= current_inferior ()->num
)
8610 if (thread
!= NULL
&& thread
->state
!= THREAD_STOPPED
)
8612 if (get_stop_id () != stop_id
)
8622 struct target_waitstatus last
;
8624 get_last_target_status (nullptr, nullptr, &last
);
8628 /* If an exception is thrown from this point on, make sure to
8629 propagate GDB's knowledge of the executing state to the
8630 frontend/user running state. A QUIT is an easy exception to see
8631 here, so do this before any filtered output. */
8633 ptid_t finish_ptid
= null_ptid
;
8636 finish_ptid
= minus_one_ptid
;
8637 else if (last
.kind () == TARGET_WAITKIND_SIGNALLED
8638 || last
.kind () == TARGET_WAITKIND_EXITED
)
8640 /* On some targets, we may still have live threads in the
8641 inferior when we get a process exit event. E.g., for
8642 "checkpoint", when the current checkpoint/fork exits,
8643 linux-fork.c automatically switches to another fork from
8644 within target_mourn_inferior. */
8645 if (inferior_ptid
!= null_ptid
)
8646 finish_ptid
= ptid_t (inferior_ptid
.pid ());
8648 else if (last
.kind () != TARGET_WAITKIND_NO_RESUMED
)
8649 finish_ptid
= inferior_ptid
;
8651 gdb::optional
<scoped_finish_thread_state
> maybe_finish_thread_state
;
8652 if (finish_ptid
!= null_ptid
)
8654 maybe_finish_thread_state
.emplace
8655 (user_visible_resume_target (finish_ptid
), finish_ptid
);
8658 /* As we're presenting a stop, and potentially removing breakpoints,
8659 update the thread list so we can tell whether there are threads
8660 running on the target. With target remote, for example, we can
8661 only learn about new threads when we explicitly update the thread
8662 list. Do this before notifying the interpreters about signal
8663 stops, end of stepping ranges, etc., so that the "new thread"
8664 output is emitted before e.g., "Program received signal FOO",
8665 instead of after. */
8666 update_thread_list ();
8668 if (last
.kind () == TARGET_WAITKIND_STOPPED
&& stopped_by_random_signal
)
8669 gdb::observers::signal_received
.notify (inferior_thread ()->stop_signal ());
8671 /* As with the notification of thread events, we want to delay
8672 notifying the user that we've switched thread context until
8673 the inferior actually stops.
8675 There's no point in saying anything if the inferior has exited.
8676 Note that SIGNALLED here means "exited with a signal", not
8677 "received a signal".
8679 Also skip saying anything in non-stop mode. In that mode, as we
8680 don't want GDB to switch threads behind the user's back, to avoid
8681 races where the user is typing a command to apply to thread x,
8682 but GDB switches to thread y before the user finishes entering
8683 the command, fetch_inferior_event installs a cleanup to restore
8684 the current thread back to the thread the user had selected right
8685 after this event is handled, so we're not really switching, only
8686 informing of a stop. */
8688 && previous_inferior_ptid
!= inferior_ptid
8689 && target_has_execution ()
8690 && last
.kind () != TARGET_WAITKIND_SIGNALLED
8691 && last
.kind () != TARGET_WAITKIND_EXITED
8692 && last
.kind () != TARGET_WAITKIND_NO_RESUMED
)
8694 SWITCH_THRU_ALL_UIS ()
8696 target_terminal::ours_for_output ();
8697 gdb_printf (_("[Switching to %s]\n"),
8698 target_pid_to_str (inferior_ptid
).c_str ());
8699 annotate_thread_changed ();
8701 previous_inferior_ptid
= inferior_ptid
;
8704 if (last
.kind () == TARGET_WAITKIND_NO_RESUMED
)
8706 SWITCH_THRU_ALL_UIS ()
8707 if (current_ui
->prompt_state
== PROMPT_BLOCKED
)
8709 target_terminal::ours_for_output ();
8710 gdb_printf (_("No unwaited-for children left.\n"));
8714 /* Note: this depends on the update_thread_list call above. */
8715 maybe_remove_breakpoints ();
8717 /* If an auto-display called a function and that got a signal,
8718 delete that auto-display to avoid an infinite recursion. */
8720 if (stopped_by_random_signal
)
8721 disable_current_display ();
8723 SWITCH_THRU_ALL_UIS ()
8725 async_enable_stdin ();
8728 /* Let the user/frontend see the threads as stopped. */
8729 maybe_finish_thread_state
.reset ();
8731 /* Select innermost stack frame - i.e., current frame is frame 0,
8732 and current location is based on that. Handle the case where the
8733 dummy call is returning after being stopped. E.g. the dummy call
8734 previously hit a breakpoint. (If the dummy call returns
8735 normally, we won't reach here.) Do this before the stop hook is
8736 run, so that it doesn't get to see the temporary dummy frame,
8737 which is not where we'll present the stop. */
8738 if (has_stack_frames ())
8740 if (stop_stack_dummy
== STOP_STACK_DUMMY
)
8742 /* Pop the empty frame that contains the stack dummy. This
8743 also restores inferior state prior to the call (struct
8744 infcall_suspend_state). */
8745 struct frame_info
*frame
= get_current_frame ();
8747 gdb_assert (get_frame_type (frame
) == DUMMY_FRAME
);
8749 /* frame_pop calls reinit_frame_cache as the last thing it
8750 does which means there's now no selected frame. */
8753 select_frame (get_current_frame ());
8755 /* Set the current source location. */
8756 set_current_sal_from_frame (get_current_frame ());
8759 /* Look up the hook_stop and run it (CLI internally handles problem
8760 of stop_command's pre-hook not existing). */
8761 stop_context saved_context
;
8765 execute_cmd_pre_hook (stop_command
);
8767 catch (const gdb_exception
&ex
)
8769 exception_fprintf (gdb_stderr
, ex
,
8770 "Error while running hook_stop:\n");
8773 /* If the stop hook resumes the target, then there's no point in
8774 trying to notify about the previous stop; its context is
8775 gone. Likewise if the command switches thread or inferior --
8776 the observers would print a stop for the wrong
8778 if (saved_context
.changed ())
8781 /* Notify observers about the stop. This is where the interpreters
8782 print the stop event. */
8783 if (inferior_ptid
!= null_ptid
)
8784 gdb::observers::normal_stop
.notify (inferior_thread ()->control
.stop_bpstat
,
8787 gdb::observers::normal_stop
.notify (NULL
, stop_print_frame
);
8789 annotate_stopped ();
8791 if (target_has_execution ())
8793 if (last
.kind () != TARGET_WAITKIND_SIGNALLED
8794 && last
.kind () != TARGET_WAITKIND_EXITED
8795 && last
.kind () != TARGET_WAITKIND_NO_RESUMED
)
8796 /* Delete the breakpoint we stopped at, if it wants to be deleted.
8797 Delete any breakpoint that is to be deleted at the next stop. */
8798 breakpoint_auto_delete (inferior_thread ()->control
.stop_bpstat
);
8805 signal_stop_state (int signo
)
8807 return signal_stop
[signo
];
8811 signal_print_state (int signo
)
8813 return signal_print
[signo
];
8817 signal_pass_state (int signo
)
8819 return signal_program
[signo
];
8823 signal_cache_update (int signo
)
8827 for (signo
= 0; signo
< (int) GDB_SIGNAL_LAST
; signo
++)
8828 signal_cache_update (signo
);
8833 signal_pass
[signo
] = (signal_stop
[signo
] == 0
8834 && signal_print
[signo
] == 0
8835 && signal_program
[signo
] == 1
8836 && signal_catch
[signo
] == 0);
8840 signal_stop_update (int signo
, int state
)
8842 int ret
= signal_stop
[signo
];
8844 signal_stop
[signo
] = state
;
8845 signal_cache_update (signo
);
8850 signal_print_update (int signo
, int state
)
8852 int ret
= signal_print
[signo
];
8854 signal_print
[signo
] = state
;
8855 signal_cache_update (signo
);
8860 signal_pass_update (int signo
, int state
)
8862 int ret
= signal_program
[signo
];
8864 signal_program
[signo
] = state
;
8865 signal_cache_update (signo
);
8869 /* Update the global 'signal_catch' from INFO and notify the
8873 signal_catch_update (const unsigned int *info
)
8877 for (i
= 0; i
< GDB_SIGNAL_LAST
; ++i
)
8878 signal_catch
[i
] = info
[i
] > 0;
8879 signal_cache_update (-1);
8880 target_pass_signals (signal_pass
);
8884 sig_print_header (void)
8886 gdb_printf (_("Signal Stop\tPrint\tPass "
8887 "to program\tDescription\n"));
8891 sig_print_info (enum gdb_signal oursig
)
8893 const char *name
= gdb_signal_to_name (oursig
);
8894 int name_padding
= 13 - strlen (name
);
8896 if (name_padding
<= 0)
8899 gdb_printf ("%s", name
);
8900 gdb_printf ("%*.*s ", name_padding
, name_padding
, " ");
8901 gdb_printf ("%s\t", signal_stop
[oursig
] ? "Yes" : "No");
8902 gdb_printf ("%s\t", signal_print
[oursig
] ? "Yes" : "No");
8903 gdb_printf ("%s\t\t", signal_program
[oursig
] ? "Yes" : "No");
8904 gdb_printf ("%s\n", gdb_signal_to_string (oursig
));
8907 /* Specify how various signals in the inferior should be handled. */
8910 handle_command (const char *args
, int from_tty
)
8912 int digits
, wordlen
;
8913 int sigfirst
, siglast
;
8914 enum gdb_signal oursig
;
8919 error_no_arg (_("signal to handle"));
8922 /* Allocate and zero an array of flags for which signals to handle. */
8924 const size_t nsigs
= GDB_SIGNAL_LAST
;
8925 unsigned char sigs
[nsigs
] {};
8927 /* Break the command line up into args. */
8929 gdb_argv
built_argv (args
);
8931 /* Walk through the args, looking for signal oursigs, signal names, and
8932 actions. Signal numbers and signal names may be interspersed with
8933 actions, with the actions being performed for all signals cumulatively
8934 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
8936 for (char *arg
: built_argv
)
8938 wordlen
= strlen (arg
);
8939 for (digits
= 0; isdigit (arg
[digits
]); digits
++)
8943 sigfirst
= siglast
= -1;
8945 if (wordlen
>= 1 && !strncmp (arg
, "all", wordlen
))
8947 /* Apply action to all signals except those used by the
8948 debugger. Silently skip those. */
8951 siglast
= nsigs
- 1;
8953 else if (wordlen
>= 1 && !strncmp (arg
, "stop", wordlen
))
8955 SET_SIGS (nsigs
, sigs
, signal_stop
);
8956 SET_SIGS (nsigs
, sigs
, signal_print
);
8958 else if (wordlen
>= 1 && !strncmp (arg
, "ignore", wordlen
))
8960 UNSET_SIGS (nsigs
, sigs
, signal_program
);
8962 else if (wordlen
>= 2 && !strncmp (arg
, "print", wordlen
))
8964 SET_SIGS (nsigs
, sigs
, signal_print
);
8966 else if (wordlen
>= 2 && !strncmp (arg
, "pass", wordlen
))
8968 SET_SIGS (nsigs
, sigs
, signal_program
);
8970 else if (wordlen
>= 3 && !strncmp (arg
, "nostop", wordlen
))
8972 UNSET_SIGS (nsigs
, sigs
, signal_stop
);
8974 else if (wordlen
>= 3 && !strncmp (arg
, "noignore", wordlen
))
8976 SET_SIGS (nsigs
, sigs
, signal_program
);
8978 else if (wordlen
>= 4 && !strncmp (arg
, "noprint", wordlen
))
8980 UNSET_SIGS (nsigs
, sigs
, signal_print
);
8981 UNSET_SIGS (nsigs
, sigs
, signal_stop
);
8983 else if (wordlen
>= 4 && !strncmp (arg
, "nopass", wordlen
))
8985 UNSET_SIGS (nsigs
, sigs
, signal_program
);
8987 else if (digits
> 0)
8989 /* It is numeric. The numeric signal refers to our own
8990 internal signal numbering from target.h, not to host/target
8991 signal number. This is a feature; users really should be
8992 using symbolic names anyway, and the common ones like
8993 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
8995 sigfirst
= siglast
= (int)
8996 gdb_signal_from_command (atoi (arg
));
8997 if (arg
[digits
] == '-')
9000 gdb_signal_from_command (atoi (arg
+ digits
+ 1));
9002 if (sigfirst
> siglast
)
9004 /* Bet he didn't figure we'd think of this case... */
9005 std::swap (sigfirst
, siglast
);
9010 oursig
= gdb_signal_from_name (arg
);
9011 if (oursig
!= GDB_SIGNAL_UNKNOWN
)
9013 sigfirst
= siglast
= (int) oursig
;
9017 /* Not a number and not a recognized flag word => complain. */
9018 error (_("Unrecognized or ambiguous flag word: \"%s\"."), arg
);
9022 /* If any signal numbers or symbol names were found, set flags for
9023 which signals to apply actions to. */
9025 for (int signum
= sigfirst
; signum
>= 0 && signum
<= siglast
; signum
++)
9027 switch ((enum gdb_signal
) signum
)
9029 case GDB_SIGNAL_TRAP
:
9030 case GDB_SIGNAL_INT
:
9031 if (!allsigs
&& !sigs
[signum
])
9033 if (query (_("%s is used by the debugger.\n\
9034 Are you sure you want to change it? "),
9035 gdb_signal_to_name ((enum gdb_signal
) signum
)))
9040 gdb_printf (_("Not confirmed, unchanged.\n"));
9044 case GDB_SIGNAL_DEFAULT
:
9045 case GDB_SIGNAL_UNKNOWN
:
9046 /* Make sure that "all" doesn't print these. */
9055 for (int signum
= 0; signum
< nsigs
; signum
++)
9058 signal_cache_update (-1);
9059 target_pass_signals (signal_pass
);
9060 target_program_signals (signal_program
);
9064 /* Show the results. */
9065 sig_print_header ();
9066 for (; signum
< nsigs
; signum
++)
9068 sig_print_info ((enum gdb_signal
) signum
);
9075 /* Complete the "handle" command. */
9078 handle_completer (struct cmd_list_element
*ignore
,
9079 completion_tracker
&tracker
,
9080 const char *text
, const char *word
)
9082 static const char * const keywords
[] =
9096 signal_completer (ignore
, tracker
, text
, word
);
9097 complete_on_enum (tracker
, keywords
, word
, word
);
9101 gdb_signal_from_command (int num
)
9103 if (num
>= 1 && num
<= 15)
9104 return (enum gdb_signal
) num
;
9105 error (_("Only signals 1-15 are valid as numeric signals.\n\
9106 Use \"info signals\" for a list of symbolic signals."));
9109 /* Print current contents of the tables set by the handle command.
9110 It is possible we should just be printing signals actually used
9111 by the current target (but for things to work right when switching
9112 targets, all signals should be in the signal tables). */
9115 info_signals_command (const char *signum_exp
, int from_tty
)
9117 enum gdb_signal oursig
;
9119 sig_print_header ();
9123 /* First see if this is a symbol name. */
9124 oursig
= gdb_signal_from_name (signum_exp
);
9125 if (oursig
== GDB_SIGNAL_UNKNOWN
)
9127 /* No, try numeric. */
9129 gdb_signal_from_command (parse_and_eval_long (signum_exp
));
9131 sig_print_info (oursig
);
9136 /* These ugly casts brought to you by the native VAX compiler. */
9137 for (oursig
= GDB_SIGNAL_FIRST
;
9138 (int) oursig
< (int) GDB_SIGNAL_LAST
;
9139 oursig
= (enum gdb_signal
) ((int) oursig
+ 1))
9143 if (oursig
!= GDB_SIGNAL_UNKNOWN
9144 && oursig
!= GDB_SIGNAL_DEFAULT
&& oursig
!= GDB_SIGNAL_0
)
9145 sig_print_info (oursig
);
9148 gdb_printf (_("\nUse the \"handle\" command "
9149 "to change these tables.\n"));
9152 /* The $_siginfo convenience variable is a bit special. We don't know
9153 for sure the type of the value until we actually have a chance to
9154 fetch the data. The type can change depending on gdbarch, so it is
9155 also dependent on which thread you have selected.
9157 1. making $_siginfo be an internalvar that creates a new value on
9160 2. making the value of $_siginfo be an lval_computed value. */
9162 /* This function implements the lval_computed support for reading a
9166 siginfo_value_read (struct value
*v
)
9168 LONGEST transferred
;
9170 /* If we can access registers, so can we access $_siginfo. Likewise
9172 validate_registers_access ();
9175 target_read (current_inferior ()->top_target (),
9176 TARGET_OBJECT_SIGNAL_INFO
,
9178 value_contents_all_raw (v
).data (),
9180 TYPE_LENGTH (value_type (v
)));
9182 if (transferred
!= TYPE_LENGTH (value_type (v
)))
9183 error (_("Unable to read siginfo"));
9186 /* This function implements the lval_computed support for writing a
9190 siginfo_value_write (struct value
*v
, struct value
*fromval
)
9192 LONGEST transferred
;
9194 /* If we can access registers, so can we access $_siginfo. Likewise
9196 validate_registers_access ();
9198 transferred
= target_write (current_inferior ()->top_target (),
9199 TARGET_OBJECT_SIGNAL_INFO
,
9201 value_contents_all_raw (fromval
).data (),
9203 TYPE_LENGTH (value_type (fromval
)));
9205 if (transferred
!= TYPE_LENGTH (value_type (fromval
)))
9206 error (_("Unable to write siginfo"));
9209 static const struct lval_funcs siginfo_value_funcs
=
9215 /* Return a new value with the correct type for the siginfo object of
9216 the current thread using architecture GDBARCH. Return a void value
9217 if there's no object available. */
9219 static struct value
*
9220 siginfo_make_value (struct gdbarch
*gdbarch
, struct internalvar
*var
,
9223 if (target_has_stack ()
9224 && inferior_ptid
!= null_ptid
9225 && gdbarch_get_siginfo_type_p (gdbarch
))
9227 struct type
*type
= gdbarch_get_siginfo_type (gdbarch
);
9229 return allocate_computed_value (type
, &siginfo_value_funcs
, NULL
);
9232 return allocate_value (builtin_type (gdbarch
)->builtin_void
);
9236 /* infcall_suspend_state contains state about the program itself like its
9237 registers and any signal it received when it last stopped.
9238 This state must be restored regardless of how the inferior function call
9239 ends (either successfully, or after it hits a breakpoint or signal)
9240 if the program is to properly continue where it left off. */
9242 class infcall_suspend_state
9245 /* Capture state from GDBARCH, TP, and REGCACHE that must be restored
9246 once the inferior function call has finished. */
9247 infcall_suspend_state (struct gdbarch
*gdbarch
,
9248 const struct thread_info
*tp
,
9249 struct regcache
*regcache
)
9250 : m_registers (new readonly_detached_regcache (*regcache
))
9252 tp
->save_suspend_to (m_thread_suspend
);
9254 gdb::unique_xmalloc_ptr
<gdb_byte
> siginfo_data
;
9256 if (gdbarch_get_siginfo_type_p (gdbarch
))
9258 struct type
*type
= gdbarch_get_siginfo_type (gdbarch
);
9259 size_t len
= TYPE_LENGTH (type
);
9261 siginfo_data
.reset ((gdb_byte
*) xmalloc (len
));
9263 if (target_read (current_inferior ()->top_target (),
9264 TARGET_OBJECT_SIGNAL_INFO
, NULL
,
9265 siginfo_data
.get (), 0, len
) != len
)
9267 /* Errors ignored. */
9268 siginfo_data
.reset (nullptr);
9274 m_siginfo_gdbarch
= gdbarch
;
9275 m_siginfo_data
= std::move (siginfo_data
);
9279 /* Return a pointer to the stored register state. */
9281 readonly_detached_regcache
*registers () const
9283 return m_registers
.get ();
9286 /* Restores the stored state into GDBARCH, TP, and REGCACHE. */
9288 void restore (struct gdbarch
*gdbarch
,
9289 struct thread_info
*tp
,
9290 struct regcache
*regcache
) const
9292 tp
->restore_suspend_from (m_thread_suspend
);
9294 if (m_siginfo_gdbarch
== gdbarch
)
9296 struct type
*type
= gdbarch_get_siginfo_type (gdbarch
);
9298 /* Errors ignored. */
9299 target_write (current_inferior ()->top_target (),
9300 TARGET_OBJECT_SIGNAL_INFO
, NULL
,
9301 m_siginfo_data
.get (), 0, TYPE_LENGTH (type
));
9304 /* The inferior can be gone if the user types "print exit(0)"
9305 (and perhaps other times). */
9306 if (target_has_execution ())
9307 /* NB: The register write goes through to the target. */
9308 regcache
->restore (registers ());
9312 /* How the current thread stopped before the inferior function call was
9314 struct thread_suspend_state m_thread_suspend
;
9316 /* The registers before the inferior function call was executed. */
9317 std::unique_ptr
<readonly_detached_regcache
> m_registers
;
9319 /* Format of SIGINFO_DATA or NULL if it is not present. */
9320 struct gdbarch
*m_siginfo_gdbarch
= nullptr;
9322 /* The inferior format depends on SIGINFO_GDBARCH and it has a length of
9323 TYPE_LENGTH (gdbarch_get_siginfo_type ()). For different gdbarch the
9324 content would be invalid. */
9325 gdb::unique_xmalloc_ptr
<gdb_byte
> m_siginfo_data
;
9328 infcall_suspend_state_up
9329 save_infcall_suspend_state ()
9331 struct thread_info
*tp
= inferior_thread ();
9332 struct regcache
*regcache
= get_current_regcache ();
9333 struct gdbarch
*gdbarch
= regcache
->arch ();
9335 infcall_suspend_state_up inf_state
9336 (new struct infcall_suspend_state (gdbarch
, tp
, regcache
));
9338 /* Having saved the current state, adjust the thread state, discarding
9339 any stop signal information. The stop signal is not useful when
9340 starting an inferior function call, and run_inferior_call will not use
9341 the signal due to its `proceed' call with GDB_SIGNAL_0. */
9342 tp
->set_stop_signal (GDB_SIGNAL_0
);
9347 /* Restore inferior session state to INF_STATE. */
9350 restore_infcall_suspend_state (struct infcall_suspend_state
*inf_state
)
9352 struct thread_info
*tp
= inferior_thread ();
9353 struct regcache
*regcache
= get_current_regcache ();
9354 struct gdbarch
*gdbarch
= regcache
->arch ();
9356 inf_state
->restore (gdbarch
, tp
, regcache
);
9357 discard_infcall_suspend_state (inf_state
);
9361 discard_infcall_suspend_state (struct infcall_suspend_state
*inf_state
)
9366 readonly_detached_regcache
*
9367 get_infcall_suspend_state_regcache (struct infcall_suspend_state
*inf_state
)
9369 return inf_state
->registers ();
9372 /* infcall_control_state contains state regarding gdb's control of the
9373 inferior itself like stepping control. It also contains session state like
9374 the user's currently selected frame. */
9376 struct infcall_control_state
9378 struct thread_control_state thread_control
;
9379 struct inferior_control_state inferior_control
;
9382 enum stop_stack_kind stop_stack_dummy
= STOP_NONE
;
9383 int stopped_by_random_signal
= 0;
9385 /* ID and level of the selected frame when the inferior function
9387 struct frame_id selected_frame_id
{};
9388 int selected_frame_level
= -1;
9391 /* Save all of the information associated with the inferior<==>gdb
9394 infcall_control_state_up
9395 save_infcall_control_state ()
9397 infcall_control_state_up
inf_status (new struct infcall_control_state
);
9398 struct thread_info
*tp
= inferior_thread ();
9399 struct inferior
*inf
= current_inferior ();
9401 inf_status
->thread_control
= tp
->control
;
9402 inf_status
->inferior_control
= inf
->control
;
9404 tp
->control
.step_resume_breakpoint
= NULL
;
9405 tp
->control
.exception_resume_breakpoint
= NULL
;
9407 /* Save original bpstat chain to INF_STATUS; replace it in TP with copy of
9408 chain. If caller's caller is walking the chain, they'll be happier if we
9409 hand them back the original chain when restore_infcall_control_state is
9411 tp
->control
.stop_bpstat
= bpstat_copy (tp
->control
.stop_bpstat
);
9414 inf_status
->stop_stack_dummy
= stop_stack_dummy
;
9415 inf_status
->stopped_by_random_signal
= stopped_by_random_signal
;
9417 save_selected_frame (&inf_status
->selected_frame_id
,
9418 &inf_status
->selected_frame_level
);
9423 /* Restore inferior session state to INF_STATUS. */
9426 restore_infcall_control_state (struct infcall_control_state
*inf_status
)
9428 struct thread_info
*tp
= inferior_thread ();
9429 struct inferior
*inf
= current_inferior ();
9431 if (tp
->control
.step_resume_breakpoint
)
9432 tp
->control
.step_resume_breakpoint
->disposition
= disp_del_at_next_stop
;
9434 if (tp
->control
.exception_resume_breakpoint
)
9435 tp
->control
.exception_resume_breakpoint
->disposition
9436 = disp_del_at_next_stop
;
9438 /* Handle the bpstat_copy of the chain. */
9439 bpstat_clear (&tp
->control
.stop_bpstat
);
9441 tp
->control
= inf_status
->thread_control
;
9442 inf
->control
= inf_status
->inferior_control
;
9445 stop_stack_dummy
= inf_status
->stop_stack_dummy
;
9446 stopped_by_random_signal
= inf_status
->stopped_by_random_signal
;
9448 if (target_has_stack ())
9450 restore_selected_frame (inf_status
->selected_frame_id
,
9451 inf_status
->selected_frame_level
);
9458 discard_infcall_control_state (struct infcall_control_state
*inf_status
)
9460 if (inf_status
->thread_control
.step_resume_breakpoint
)
9461 inf_status
->thread_control
.step_resume_breakpoint
->disposition
9462 = disp_del_at_next_stop
;
9464 if (inf_status
->thread_control
.exception_resume_breakpoint
)
9465 inf_status
->thread_control
.exception_resume_breakpoint
->disposition
9466 = disp_del_at_next_stop
;
9468 /* See save_infcall_control_state for info on stop_bpstat. */
9469 bpstat_clear (&inf_status
->thread_control
.stop_bpstat
);
9477 clear_exit_convenience_vars (void)
9479 clear_internalvar (lookup_internalvar ("_exitsignal"));
9480 clear_internalvar (lookup_internalvar ("_exitcode"));
9484 /* User interface for reverse debugging:
9485 Set exec-direction / show exec-direction commands
9486 (returns error unless target implements to_set_exec_direction method). */
9488 enum exec_direction_kind execution_direction
= EXEC_FORWARD
;
9489 static const char exec_forward
[] = "forward";
9490 static const char exec_reverse
[] = "reverse";
9491 static const char *exec_direction
= exec_forward
;
9492 static const char *const exec_direction_names
[] = {
9499 set_exec_direction_func (const char *args
, int from_tty
,
9500 struct cmd_list_element
*cmd
)
9502 if (target_can_execute_reverse ())
9504 if (!strcmp (exec_direction
, exec_forward
))
9505 execution_direction
= EXEC_FORWARD
;
9506 else if (!strcmp (exec_direction
, exec_reverse
))
9507 execution_direction
= EXEC_REVERSE
;
9511 exec_direction
= exec_forward
;
9512 error (_("Target does not support this operation."));
9517 show_exec_direction_func (struct ui_file
*out
, int from_tty
,
9518 struct cmd_list_element
*cmd
, const char *value
)
9520 switch (execution_direction
) {
9522 gdb_printf (out
, _("Forward.\n"));
9525 gdb_printf (out
, _("Reverse.\n"));
9528 internal_error (__FILE__
, __LINE__
,
9529 _("bogus execution_direction value: %d"),
9530 (int) execution_direction
);
9535 show_schedule_multiple (struct ui_file
*file
, int from_tty
,
9536 struct cmd_list_element
*c
, const char *value
)
9538 gdb_printf (file
, _("Resuming the execution of threads "
9539 "of all processes is %s.\n"), value
);
9542 /* Implementation of `siginfo' variable. */
9544 static const struct internalvar_funcs siginfo_funcs
=
9550 /* Callback for infrun's target events source. This is marked when a
9551 thread has a pending status to process. */
9554 infrun_async_inferior_event_handler (gdb_client_data data
)
9556 clear_async_event_handler (infrun_async_inferior_event_token
);
9557 inferior_event_handler (INF_REG_EVENT
);
9564 /* Verify that when two threads with the same ptid exist (from two different
9565 targets) and one of them changes ptid, we only update inferior_ptid if
9566 it is appropriate. */
9569 infrun_thread_ptid_changed ()
9571 gdbarch
*arch
= current_inferior ()->gdbarch
;
9573 /* The thread which inferior_ptid represents changes ptid. */
9575 scoped_restore_current_pspace_and_thread restore
;
9577 scoped_mock_context
<test_target_ops
> target1 (arch
);
9578 scoped_mock_context
<test_target_ops
> target2 (arch
);
9580 ptid_t
old_ptid (111, 222);
9581 ptid_t
new_ptid (111, 333);
9583 target1
.mock_inferior
.pid
= old_ptid
.pid ();
9584 target1
.mock_thread
.ptid
= old_ptid
;
9585 target1
.mock_inferior
.ptid_thread_map
.clear ();
9586 target1
.mock_inferior
.ptid_thread_map
[old_ptid
] = &target1
.mock_thread
;
9588 target2
.mock_inferior
.pid
= old_ptid
.pid ();
9589 target2
.mock_thread
.ptid
= old_ptid
;
9590 target2
.mock_inferior
.ptid_thread_map
.clear ();
9591 target2
.mock_inferior
.ptid_thread_map
[old_ptid
] = &target2
.mock_thread
;
9593 auto restore_inferior_ptid
= make_scoped_restore (&inferior_ptid
, old_ptid
);
9594 set_current_inferior (&target1
.mock_inferior
);
9596 thread_change_ptid (&target1
.mock_target
, old_ptid
, new_ptid
);
9598 gdb_assert (inferior_ptid
== new_ptid
);
9601 /* A thread with the same ptid as inferior_ptid, but from another target,
9604 scoped_restore_current_pspace_and_thread restore
;
9606 scoped_mock_context
<test_target_ops
> target1 (arch
);
9607 scoped_mock_context
<test_target_ops
> target2 (arch
);
9609 ptid_t
old_ptid (111, 222);
9610 ptid_t
new_ptid (111, 333);
9612 target1
.mock_inferior
.pid
= old_ptid
.pid ();
9613 target1
.mock_thread
.ptid
= old_ptid
;
9614 target1
.mock_inferior
.ptid_thread_map
.clear ();
9615 target1
.mock_inferior
.ptid_thread_map
[old_ptid
] = &target1
.mock_thread
;
9617 target2
.mock_inferior
.pid
= old_ptid
.pid ();
9618 target2
.mock_thread
.ptid
= old_ptid
;
9619 target2
.mock_inferior
.ptid_thread_map
.clear ();
9620 target2
.mock_inferior
.ptid_thread_map
[old_ptid
] = &target2
.mock_thread
;
9622 auto restore_inferior_ptid
= make_scoped_restore (&inferior_ptid
, old_ptid
);
9623 set_current_inferior (&target2
.mock_inferior
);
9625 thread_change_ptid (&target1
.mock_target
, old_ptid
, new_ptid
);
9627 gdb_assert (inferior_ptid
== old_ptid
);
9631 } /* namespace selftests */
9633 #endif /* GDB_SELF_TEST */
9635 void _initialize_infrun ();
9637 _initialize_infrun ()
9639 struct cmd_list_element
*c
;
9641 /* Register extra event sources in the event loop. */
9642 infrun_async_inferior_event_token
9643 = create_async_event_handler (infrun_async_inferior_event_handler
, NULL
,
9646 cmd_list_element
*info_signals_cmd
9647 = add_info ("signals", info_signals_command
, _("\
9648 What debugger does when program gets various signals.\n\
9649 Specify a signal as argument to print info on that signal only."));
9650 add_info_alias ("handle", info_signals_cmd
, 0);
9652 c
= add_com ("handle", class_run
, handle_command
, _("\
9653 Specify how to handle signals.\n\
9654 Usage: handle SIGNAL [ACTIONS]\n\
9655 Args are signals and actions to apply to those signals.\n\
9656 If no actions are specified, the current settings for the specified signals\n\
9657 will be displayed instead.\n\
9659 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
9660 from 1-15 are allowed for compatibility with old versions of GDB.\n\
9661 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
9662 The special arg \"all\" is recognized to mean all signals except those\n\
9663 used by the debugger, typically SIGTRAP and SIGINT.\n\
9665 Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
9666 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
9667 Stop means reenter debugger if this signal happens (implies print).\n\
9668 Print means print a message if this signal happens.\n\
9669 Pass means let program see this signal; otherwise program doesn't know.\n\
9670 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
9671 Pass and Stop may be combined.\n\
9673 Multiple signals may be specified. Signal numbers and signal names\n\
9674 may be interspersed with actions, with the actions being performed for\n\
9675 all signals cumulatively specified."));
9676 set_cmd_completer (c
, handle_completer
);
9678 stop_command
= add_cmd ("stop", class_obscure
,
9679 not_just_help_class_command
, _("\
9680 There is no `stop' command, but you can set a hook on `stop'.\n\
9681 This allows you to set a list of commands to be run each time execution\n\
9682 of the program stops."), &cmdlist
);
9684 add_setshow_boolean_cmd
9685 ("infrun", class_maintenance
, &debug_infrun
,
9686 _("Set inferior debugging."),
9687 _("Show inferior debugging."),
9688 _("When non-zero, inferior specific debugging is enabled."),
9689 NULL
, show_debug_infrun
, &setdebuglist
, &showdebuglist
);
9691 add_setshow_boolean_cmd ("non-stop", no_class
,
9693 Set whether gdb controls the inferior in non-stop mode."), _("\
9694 Show whether gdb controls the inferior in non-stop mode."), _("\
9695 When debugging a multi-threaded program and this setting is\n\
9696 off (the default, also called all-stop mode), when one thread stops\n\
9697 (for a breakpoint, watchpoint, exception, or similar events), GDB stops\n\
9698 all other threads in the program while you interact with the thread of\n\
9699 interest. When you continue or step a thread, you can allow the other\n\
9700 threads to run, or have them remain stopped, but while you inspect any\n\
9701 thread's state, all threads stop.\n\
9703 In non-stop mode, when one thread stops, other threads can continue\n\
9704 to run freely. You'll be able to step each thread independently,\n\
9705 leave it stopped or free to run as needed."),
9711 for (size_t i
= 0; i
< GDB_SIGNAL_LAST
; i
++)
9714 signal_print
[i
] = 1;
9715 signal_program
[i
] = 1;
9716 signal_catch
[i
] = 0;
9719 /* Signals caused by debugger's own actions should not be given to
9720 the program afterwards.
9722 Do not deliver GDB_SIGNAL_TRAP by default, except when the user
9723 explicitly specifies that it should be delivered to the target
9724 program. Typically, that would occur when a user is debugging a
9725 target monitor on a simulator: the target monitor sets a
9726 breakpoint; the simulator encounters this breakpoint and halts
9727 the simulation handing control to GDB; GDB, noting that the stop
9728 address doesn't map to any known breakpoint, returns control back
9729 to the simulator; the simulator then delivers the hardware
9730 equivalent of a GDB_SIGNAL_TRAP to the program being
9732 signal_program
[GDB_SIGNAL_TRAP
] = 0;
9733 signal_program
[GDB_SIGNAL_INT
] = 0;
9735 /* Signals that are not errors should not normally enter the debugger. */
9736 signal_stop
[GDB_SIGNAL_ALRM
] = 0;
9737 signal_print
[GDB_SIGNAL_ALRM
] = 0;
9738 signal_stop
[GDB_SIGNAL_VTALRM
] = 0;
9739 signal_print
[GDB_SIGNAL_VTALRM
] = 0;
9740 signal_stop
[GDB_SIGNAL_PROF
] = 0;
9741 signal_print
[GDB_SIGNAL_PROF
] = 0;
9742 signal_stop
[GDB_SIGNAL_CHLD
] = 0;
9743 signal_print
[GDB_SIGNAL_CHLD
] = 0;
9744 signal_stop
[GDB_SIGNAL_IO
] = 0;
9745 signal_print
[GDB_SIGNAL_IO
] = 0;
9746 signal_stop
[GDB_SIGNAL_POLL
] = 0;
9747 signal_print
[GDB_SIGNAL_POLL
] = 0;
9748 signal_stop
[GDB_SIGNAL_URG
] = 0;
9749 signal_print
[GDB_SIGNAL_URG
] = 0;
9750 signal_stop
[GDB_SIGNAL_WINCH
] = 0;
9751 signal_print
[GDB_SIGNAL_WINCH
] = 0;
9752 signal_stop
[GDB_SIGNAL_PRIO
] = 0;
9753 signal_print
[GDB_SIGNAL_PRIO
] = 0;
9755 /* These signals are used internally by user-level thread
9756 implementations. (See signal(5) on Solaris.) Like the above
9757 signals, a healthy program receives and handles them as part of
9758 its normal operation. */
9759 signal_stop
[GDB_SIGNAL_LWP
] = 0;
9760 signal_print
[GDB_SIGNAL_LWP
] = 0;
9761 signal_stop
[GDB_SIGNAL_WAITING
] = 0;
9762 signal_print
[GDB_SIGNAL_WAITING
] = 0;
9763 signal_stop
[GDB_SIGNAL_CANCEL
] = 0;
9764 signal_print
[GDB_SIGNAL_CANCEL
] = 0;
9765 signal_stop
[GDB_SIGNAL_LIBRT
] = 0;
9766 signal_print
[GDB_SIGNAL_LIBRT
] = 0;
9768 /* Update cached state. */
9769 signal_cache_update (-1);
9771 add_setshow_zinteger_cmd ("stop-on-solib-events", class_support
,
9772 &stop_on_solib_events
, _("\
9773 Set stopping for shared library events."), _("\
9774 Show stopping for shared library events."), _("\
9775 If nonzero, gdb will give control to the user when the dynamic linker\n\
9776 notifies gdb of shared library events. The most common event of interest\n\
9777 to the user would be loading/unloading of a new library."),
9778 set_stop_on_solib_events
,
9779 show_stop_on_solib_events
,
9780 &setlist
, &showlist
);
9782 add_setshow_enum_cmd ("follow-fork-mode", class_run
,
9783 follow_fork_mode_kind_names
,
9784 &follow_fork_mode_string
, _("\
9785 Set debugger response to a program call of fork or vfork."), _("\
9786 Show debugger response to a program call of fork or vfork."), _("\
9787 A fork or vfork creates a new process. follow-fork-mode can be:\n\
9788 parent - the original process is debugged after a fork\n\
9789 child - the new process is debugged after a fork\n\
9790 The unfollowed process will continue to run.\n\
9791 By default, the debugger will follow the parent process."),
9793 show_follow_fork_mode_string
,
9794 &setlist
, &showlist
);
9796 add_setshow_enum_cmd ("follow-exec-mode", class_run
,
9797 follow_exec_mode_names
,
9798 &follow_exec_mode_string
, _("\
9799 Set debugger response to a program call of exec."), _("\
9800 Show debugger response to a program call of exec."), _("\
9801 An exec call replaces the program image of a process.\n\
9803 follow-exec-mode can be:\n\
9805 new - the debugger creates a new inferior and rebinds the process\n\
9806 to this new inferior. The program the process was running before\n\
9807 the exec call can be restarted afterwards by restarting the original\n\
9810 same - the debugger keeps the process bound to the same inferior.\n\
9811 The new executable image replaces the previous executable loaded in\n\
9812 the inferior. Restarting the inferior after the exec call restarts\n\
9813 the executable the process was running after the exec call.\n\
9815 By default, the debugger will use the same inferior."),
9817 show_follow_exec_mode_string
,
9818 &setlist
, &showlist
);
9820 add_setshow_enum_cmd ("scheduler-locking", class_run
,
9821 scheduler_enums
, &scheduler_mode
, _("\
9822 Set mode for locking scheduler during execution."), _("\
9823 Show mode for locking scheduler during execution."), _("\
9824 off == no locking (threads may preempt at any time)\n\
9825 on == full locking (no thread except the current thread may run)\n\
9826 This applies to both normal execution and replay mode.\n\
9827 step == scheduler locked during stepping commands (step, next, stepi, nexti).\n\
9828 In this mode, other threads may run during other commands.\n\
9829 This applies to both normal execution and replay mode.\n\
9830 replay == scheduler locked in replay mode and unlocked during normal execution."),
9831 set_schedlock_func
, /* traps on target vector */
9832 show_scheduler_mode
,
9833 &setlist
, &showlist
);
9835 add_setshow_boolean_cmd ("schedule-multiple", class_run
, &sched_multi
, _("\
9836 Set mode for resuming threads of all processes."), _("\
9837 Show mode for resuming threads of all processes."), _("\
9838 When on, execution commands (such as 'continue' or 'next') resume all\n\
9839 threads of all processes. When off (which is the default), execution\n\
9840 commands only resume the threads of the current process. The set of\n\
9841 threads that are resumed is further refined by the scheduler-locking\n\
9842 mode (see help set scheduler-locking)."),
9844 show_schedule_multiple
,
9845 &setlist
, &showlist
);
9847 add_setshow_boolean_cmd ("step-mode", class_run
, &step_stop_if_no_debug
, _("\
9848 Set mode of the step operation."), _("\
9849 Show mode of the step operation."), _("\
9850 When set, doing a step over a function without debug line information\n\
9851 will stop at the first instruction of that function. Otherwise, the\n\
9852 function is skipped and the step command stops at a different source line."),
9854 show_step_stop_if_no_debug
,
9855 &setlist
, &showlist
);
9857 add_setshow_auto_boolean_cmd ("displaced-stepping", class_run
,
9858 &can_use_displaced_stepping
, _("\
9859 Set debugger's willingness to use displaced stepping."), _("\
9860 Show debugger's willingness to use displaced stepping."), _("\
9861 If on, gdb will use displaced stepping to step over breakpoints if it is\n\
9862 supported by the target architecture. If off, gdb will not use displaced\n\
9863 stepping to step over breakpoints, even if such is supported by the target\n\
9864 architecture. If auto (which is the default), gdb will use displaced stepping\n\
9865 if the target architecture supports it and non-stop mode is active, but will not\n\
9866 use it in all-stop mode (see help set non-stop)."),
9868 show_can_use_displaced_stepping
,
9869 &setlist
, &showlist
);
9871 add_setshow_enum_cmd ("exec-direction", class_run
, exec_direction_names
,
9872 &exec_direction
, _("Set direction of execution.\n\
9873 Options are 'forward' or 'reverse'."),
9874 _("Show direction of execution (forward/reverse)."),
9875 _("Tells gdb whether to execute forward or backward."),
9876 set_exec_direction_func
, show_exec_direction_func
,
9877 &setlist
, &showlist
);
9879 /* Set/show detach-on-fork: user-settable mode. */
9881 add_setshow_boolean_cmd ("detach-on-fork", class_run
, &detach_fork
, _("\
9882 Set whether gdb will detach the child of a fork."), _("\
9883 Show whether gdb will detach the child of a fork."), _("\
9884 Tells gdb whether to detach the child of a fork."),
9885 NULL
, NULL
, &setlist
, &showlist
);
9887 /* Set/show disable address space randomization mode. */
9889 add_setshow_boolean_cmd ("disable-randomization", class_support
,
9890 &disable_randomization
, _("\
9891 Set disabling of debuggee's virtual address space randomization."), _("\
9892 Show disabling of debuggee's virtual address space randomization."), _("\
9893 When this mode is on (which is the default), randomization of the virtual\n\
9894 address space is disabled. Standalone programs run with the randomization\n\
9895 enabled by default on some platforms."),
9896 &set_disable_randomization
,
9897 &show_disable_randomization
,
9898 &setlist
, &showlist
);
9900 /* ptid initializations */
9901 inferior_ptid
= null_ptid
;
9902 target_last_wait_ptid
= minus_one_ptid
;
9904 gdb::observers::thread_ptid_changed
.attach (infrun_thread_ptid_changed
,
9906 gdb::observers::thread_stop_requested
.attach (infrun_thread_stop_requested
,
9908 gdb::observers::thread_exit
.attach (infrun_thread_thread_exit
, "infrun");
9909 gdb::observers::inferior_exit
.attach (infrun_inferior_exit
, "infrun");
9910 gdb::observers::inferior_execd
.attach (infrun_inferior_execd
, "infrun");
9912 /* Explicitly create without lookup, since that tries to create a
9913 value with a void typed value, and when we get here, gdbarch
9914 isn't initialized yet. At this point, we're quite sure there
9915 isn't another convenience variable of the same name. */
9916 create_internalvar_type_lazy ("_siginfo", &siginfo_funcs
, NULL
);
9918 add_setshow_boolean_cmd ("observer", no_class
,
9919 &observer_mode_1
, _("\
9920 Set whether gdb controls the inferior in observer mode."), _("\
9921 Show whether gdb controls the inferior in observer mode."), _("\
9922 In observer mode, GDB can get data from the inferior, but not\n\
9923 affect its execution. Registers and memory may not be changed,\n\
9924 breakpoints may not be set, and the program cannot be interrupted\n\
9932 selftests::register_test ("infrun_thread_ptid_changed",
9933 selftests::infrun_thread_ptid_changed
);