1 /* Target-struct-independent code to start (run) and stop an inferior
4 Copyright (C) 1986-2017 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/>. */
27 #include "breakpoint.h"
31 #include "cli/cli-script.h"
33 #include "gdbthread.h"
45 #include "dictionary.h"
47 #include "mi/mi-common.h"
48 #include "event-top.h"
50 #include "record-full.h"
51 #include "inline-frame.h"
53 #include "tracepoint.h"
54 #include "continuations.h"
59 #include "completer.h"
60 #include "target-descriptions.h"
61 #include "target-dcache.h"
64 #include "event-loop.h"
65 #include "thread-fsm.h"
66 #include "common/enum-flags.h"
67 #include "progspace-and-thread.h"
68 #include "common/gdb_optional.h"
70 /* Prototypes for local functions */
72 static void signals_info (char *, int);
74 static void handle_command (char *, int);
76 static void sig_print_info (enum gdb_signal);
78 static void sig_print_header (void);
80 static void resume_cleanups (void *);
82 static int hook_stop_stub (void *);
84 static int restore_selected_frame (void *);
86 static int follow_fork (void);
88 static int follow_fork_inferior (int follow_child, int detach_fork);
90 static void follow_inferior_reset_breakpoints (void);
92 static void set_schedlock_func (char *args, int from_tty,
93 struct cmd_list_element *c);
95 static int currently_stepping (struct thread_info *tp);
97 void _initialize_infrun (void);
99 void nullify_last_target_wait_ptid (void);
101 static void insert_hp_step_resume_breakpoint_at_frame (struct frame_info *);
103 static void insert_step_resume_breakpoint_at_caller (struct frame_info *);
105 static void insert_longjmp_resume_breakpoint (struct gdbarch *, CORE_ADDR);
107 static int maybe_software_singlestep (struct gdbarch *gdbarch, CORE_ADDR pc);
109 /* Asynchronous signal handler registered as event loop source for
110 when we have pending events ready to be passed to the core. */
111 static struct async_event_handler *infrun_async_inferior_event_token;
113 /* Stores whether infrun_async was previously enabled or disabled.
114 Starts off as -1, indicating "never enabled/disabled". */
115 static int infrun_is_async = -1;
120 infrun_async (int enable)
122 if (infrun_is_async != enable)
124 infrun_is_async = enable;
127 fprintf_unfiltered (gdb_stdlog,
128 "infrun: infrun_async(%d)\n",
132 mark_async_event_handler (infrun_async_inferior_event_token);
134 clear_async_event_handler (infrun_async_inferior_event_token);
141 mark_infrun_async_event_handler (void)
143 mark_async_event_handler (infrun_async_inferior_event_token);
146 /* When set, stop the 'step' command if we enter a function which has
147 no line number information. The normal behavior is that we step
148 over such function. */
149 int step_stop_if_no_debug = 0;
151 show_step_stop_if_no_debug (struct ui_file *file, int from_tty,
152 struct cmd_list_element *c, const char *value)
154 fprintf_filtered (file, _("Mode of the step operation is %s.\n"), value);
157 /* proceed and normal_stop use this to notify the user when the
158 inferior stopped in a different thread than it had been running
161 static ptid_t previous_inferior_ptid;
163 /* If set (default for legacy reasons), when following a fork, GDB
164 will detach from one of the fork branches, child or parent.
165 Exactly which branch is detached depends on 'set follow-fork-mode'
168 static int detach_fork = 1;
170 int debug_displaced = 0;
172 show_debug_displaced (struct ui_file *file, int from_tty,
173 struct cmd_list_element *c, const char *value)
175 fprintf_filtered (file, _("Displace stepping debugging is %s.\n"), value);
178 unsigned int debug_infrun = 0;
180 show_debug_infrun (struct ui_file *file, int from_tty,
181 struct cmd_list_element *c, const char *value)
183 fprintf_filtered (file, _("Inferior debugging is %s.\n"), value);
187 /* Support for disabling address space randomization. */
189 int disable_randomization = 1;
192 show_disable_randomization (struct ui_file *file, int from_tty,
193 struct cmd_list_element *c, const char *value)
195 if (target_supports_disable_randomization ())
196 fprintf_filtered (file,
197 _("Disabling randomization of debuggee's "
198 "virtual address space is %s.\n"),
201 fputs_filtered (_("Disabling randomization of debuggee's "
202 "virtual address space is unsupported on\n"
203 "this platform.\n"), file);
207 set_disable_randomization (char *args, int from_tty,
208 struct cmd_list_element *c)
210 if (!target_supports_disable_randomization ())
211 error (_("Disabling randomization of debuggee's "
212 "virtual address space is unsupported on\n"
216 /* User interface for non-stop mode. */
219 static int non_stop_1 = 0;
222 set_non_stop (char *args, int from_tty,
223 struct cmd_list_element *c)
225 if (target_has_execution)
227 non_stop_1 = non_stop;
228 error (_("Cannot change this setting while the inferior is running."));
231 non_stop = non_stop_1;
235 show_non_stop (struct ui_file *file, int from_tty,
236 struct cmd_list_element *c, const char *value)
238 fprintf_filtered (file,
239 _("Controlling the inferior in non-stop mode is %s.\n"),
243 /* "Observer mode" is somewhat like a more extreme version of
244 non-stop, in which all GDB operations that might affect the
245 target's execution have been disabled. */
247 int observer_mode = 0;
248 static int observer_mode_1 = 0;
251 set_observer_mode (char *args, int from_tty,
252 struct cmd_list_element *c)
254 if (target_has_execution)
256 observer_mode_1 = observer_mode;
257 error (_("Cannot change this setting while the inferior is running."));
260 observer_mode = observer_mode_1;
262 may_write_registers = !observer_mode;
263 may_write_memory = !observer_mode;
264 may_insert_breakpoints = !observer_mode;
265 may_insert_tracepoints = !observer_mode;
266 /* We can insert fast tracepoints in or out of observer mode,
267 but enable them if we're going into this mode. */
269 may_insert_fast_tracepoints = 1;
270 may_stop = !observer_mode;
271 update_target_permissions ();
273 /* Going *into* observer mode we must force non-stop, then
274 going out we leave it that way. */
277 pagination_enabled = 0;
278 non_stop = non_stop_1 = 1;
282 printf_filtered (_("Observer mode is now %s.\n"),
283 (observer_mode ? "on" : "off"));
287 show_observer_mode (struct ui_file *file, int from_tty,
288 struct cmd_list_element *c, const char *value)
290 fprintf_filtered (file, _("Observer mode is %s.\n"), value);
293 /* This updates the value of observer mode based on changes in
294 permissions. Note that we are deliberately ignoring the values of
295 may-write-registers and may-write-memory, since the user may have
296 reason to enable these during a session, for instance to turn on a
297 debugging-related global. */
300 update_observer_mode (void)
304 newval = (!may_insert_breakpoints
305 && !may_insert_tracepoints
306 && may_insert_fast_tracepoints
310 /* Let the user know if things change. */
311 if (newval != observer_mode)
312 printf_filtered (_("Observer mode is now %s.\n"),
313 (newval ? "on" : "off"));
315 observer_mode = observer_mode_1 = newval;
318 /* Tables of how to react to signals; the user sets them. */
320 static unsigned char *signal_stop;
321 static unsigned char *signal_print;
322 static unsigned char *signal_program;
324 /* Table of signals that are registered with "catch signal". A
325 non-zero entry indicates that the signal is caught by some "catch
326 signal" command. This has size GDB_SIGNAL_LAST, to accommodate all
328 static unsigned char *signal_catch;
330 /* Table of signals that the target may silently handle.
331 This is automatically determined from the flags above,
332 and simply cached here. */
333 static unsigned char *signal_pass;
335 #define SET_SIGS(nsigs,sigs,flags) \
337 int signum = (nsigs); \
338 while (signum-- > 0) \
339 if ((sigs)[signum]) \
340 (flags)[signum] = 1; \
343 #define UNSET_SIGS(nsigs,sigs,flags) \
345 int signum = (nsigs); \
346 while (signum-- > 0) \
347 if ((sigs)[signum]) \
348 (flags)[signum] = 0; \
351 /* Update the target's copy of SIGNAL_PROGRAM. The sole purpose of
352 this function is to avoid exporting `signal_program'. */
355 update_signals_program_target (void)
357 target_program_signals ((int) GDB_SIGNAL_LAST, signal_program);
360 /* Value to pass to target_resume() to cause all threads to resume. */
362 #define RESUME_ALL minus_one_ptid
364 /* Command list pointer for the "stop" placeholder. */
366 static struct cmd_list_element *stop_command;
368 /* Nonzero if we want to give control to the user when we're notified
369 of shared library events by the dynamic linker. */
370 int stop_on_solib_events;
372 /* Enable or disable optional shared library event breakpoints
373 as appropriate when the above flag is changed. */
376 set_stop_on_solib_events (char *args, int from_tty, struct cmd_list_element *c)
378 update_solib_breakpoints ();
382 show_stop_on_solib_events (struct ui_file *file, int from_tty,
383 struct cmd_list_element *c, const char *value)
385 fprintf_filtered (file, _("Stopping for shared library events is %s.\n"),
389 /* Nonzero after stop if current stack frame should be printed. */
391 static int stop_print_frame;
393 /* This is a cached copy of the pid/waitstatus of the last event
394 returned by target_wait()/deprecated_target_wait_hook(). This
395 information is returned by get_last_target_status(). */
396 static ptid_t target_last_wait_ptid;
397 static struct target_waitstatus target_last_waitstatus;
399 static void context_switch (ptid_t ptid);
401 void init_thread_stepping_state (struct thread_info *tss);
403 static const char follow_fork_mode_child[] = "child";
404 static const char follow_fork_mode_parent[] = "parent";
406 static const char *const follow_fork_mode_kind_names[] = {
407 follow_fork_mode_child,
408 follow_fork_mode_parent,
412 static const char *follow_fork_mode_string = follow_fork_mode_parent;
414 show_follow_fork_mode_string (struct ui_file *file, int from_tty,
415 struct cmd_list_element *c, const char *value)
417 fprintf_filtered (file,
418 _("Debugger response to a program "
419 "call of fork or vfork is \"%s\".\n"),
424 /* Handle changes to the inferior list based on the type of fork,
425 which process is being followed, and whether the other process
426 should be detached. On entry inferior_ptid must be the ptid of
427 the fork parent. At return inferior_ptid is the ptid of the
428 followed inferior. */
431 follow_fork_inferior (int follow_child, int detach_fork)
434 ptid_t parent_ptid, child_ptid;
436 has_vforked = (inferior_thread ()->pending_follow.kind
437 == TARGET_WAITKIND_VFORKED);
438 parent_ptid = inferior_ptid;
439 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
442 && !non_stop /* Non-stop always resumes both branches. */
443 && current_ui->prompt_state == PROMPT_BLOCKED
444 && !(follow_child || detach_fork || sched_multi))
446 /* The parent stays blocked inside the vfork syscall until the
447 child execs or exits. If we don't let the child run, then
448 the parent stays blocked. If we're telling the parent to run
449 in the foreground, the user will not be able to ctrl-c to get
450 back the terminal, effectively hanging the debug session. */
451 fprintf_filtered (gdb_stderr, _("\
452 Can not resume the parent process over vfork in the foreground while\n\
453 holding the child stopped. Try \"set detach-on-fork\" or \
454 \"set schedule-multiple\".\n"));
455 /* FIXME output string > 80 columns. */
461 /* Detach new forked process? */
464 /* Before detaching from the child, remove all breakpoints
465 from it. If we forked, then this has already been taken
466 care of by infrun.c. If we vforked however, any
467 breakpoint inserted in the parent is visible in the
468 child, even those added while stopped in a vfork
469 catchpoint. This will remove the breakpoints from the
470 parent also, but they'll be reinserted below. */
473 /* Keep breakpoints list in sync. */
474 remove_breakpoints_pid (ptid_get_pid (inferior_ptid));
477 if (info_verbose || debug_infrun)
479 /* Ensure that we have a process ptid. */
480 ptid_t process_ptid = pid_to_ptid (ptid_get_pid (child_ptid));
482 target_terminal_ours_for_output ();
483 fprintf_filtered (gdb_stdlog,
484 _("Detaching after %s from child %s.\n"),
485 has_vforked ? "vfork" : "fork",
486 target_pid_to_str (process_ptid));
491 struct inferior *parent_inf, *child_inf;
493 /* Add process to GDB's tables. */
494 child_inf = add_inferior (ptid_get_pid (child_ptid));
496 parent_inf = current_inferior ();
497 child_inf->attach_flag = parent_inf->attach_flag;
498 copy_terminal_info (child_inf, parent_inf);
499 child_inf->gdbarch = parent_inf->gdbarch;
500 copy_inferior_target_desc_info (child_inf, parent_inf);
502 scoped_restore_current_pspace_and_thread restore_pspace_thread;
504 inferior_ptid = child_ptid;
505 add_thread (inferior_ptid);
506 set_current_inferior (child_inf);
507 child_inf->symfile_flags = SYMFILE_NO_READ;
509 /* If this is a vfork child, then the address-space is
510 shared with the parent. */
513 child_inf->pspace = parent_inf->pspace;
514 child_inf->aspace = parent_inf->aspace;
516 /* The parent will be frozen until the child is done
517 with the shared region. Keep track of the
519 child_inf->vfork_parent = parent_inf;
520 child_inf->pending_detach = 0;
521 parent_inf->vfork_child = child_inf;
522 parent_inf->pending_detach = 0;
526 child_inf->aspace = new_address_space ();
527 child_inf->pspace = add_program_space (child_inf->aspace);
528 child_inf->removable = 1;
529 set_current_program_space (child_inf->pspace);
530 clone_program_space (child_inf->pspace, parent_inf->pspace);
532 /* Let the shared library layer (e.g., solib-svr4) learn
533 about this new process, relocate the cloned exec, pull
534 in shared libraries, and install the solib event
535 breakpoint. If a "cloned-VM" event was propagated
536 better throughout the core, this wouldn't be
538 solib_create_inferior_hook (0);
544 struct inferior *parent_inf;
546 parent_inf = current_inferior ();
548 /* If we detached from the child, then we have to be careful
549 to not insert breakpoints in the parent until the child
550 is done with the shared memory region. However, if we're
551 staying attached to the child, then we can and should
552 insert breakpoints, so that we can debug it. A
553 subsequent child exec or exit is enough to know when does
554 the child stops using the parent's address space. */
555 parent_inf->waiting_for_vfork_done = detach_fork;
556 parent_inf->pspace->breakpoints_not_allowed = detach_fork;
561 /* Follow the child. */
562 struct inferior *parent_inf, *child_inf;
563 struct program_space *parent_pspace;
565 if (info_verbose || debug_infrun)
567 target_terminal_ours_for_output ();
568 fprintf_filtered (gdb_stdlog,
569 _("Attaching after %s %s to child %s.\n"),
570 target_pid_to_str (parent_ptid),
571 has_vforked ? "vfork" : "fork",
572 target_pid_to_str (child_ptid));
575 /* Add the new inferior first, so that the target_detach below
576 doesn't unpush the target. */
578 child_inf = add_inferior (ptid_get_pid (child_ptid));
580 parent_inf = current_inferior ();
581 child_inf->attach_flag = parent_inf->attach_flag;
582 copy_terminal_info (child_inf, parent_inf);
583 child_inf->gdbarch = parent_inf->gdbarch;
584 copy_inferior_target_desc_info (child_inf, parent_inf);
586 parent_pspace = parent_inf->pspace;
588 /* If we're vforking, we want to hold on to the parent until the
589 child exits or execs. At child exec or exit time we can
590 remove the old breakpoints from the parent and detach or
591 resume debugging it. Otherwise, detach the parent now; we'll
592 want to reuse it's program/address spaces, but we can't set
593 them to the child before removing breakpoints from the
594 parent, otherwise, the breakpoints module could decide to
595 remove breakpoints from the wrong process (since they'd be
596 assigned to the same address space). */
600 gdb_assert (child_inf->vfork_parent == NULL);
601 gdb_assert (parent_inf->vfork_child == NULL);
602 child_inf->vfork_parent = parent_inf;
603 child_inf->pending_detach = 0;
604 parent_inf->vfork_child = child_inf;
605 parent_inf->pending_detach = detach_fork;
606 parent_inf->waiting_for_vfork_done = 0;
608 else if (detach_fork)
610 if (info_verbose || debug_infrun)
612 /* Ensure that we have a process ptid. */
613 ptid_t process_ptid = pid_to_ptid (ptid_get_pid (child_ptid));
615 target_terminal_ours_for_output ();
616 fprintf_filtered (gdb_stdlog,
617 _("Detaching after fork from "
619 target_pid_to_str (process_ptid));
622 target_detach (NULL, 0);
625 /* Note that the detach above makes PARENT_INF dangling. */
627 /* Add the child thread to the appropriate lists, and switch to
628 this new thread, before cloning the program space, and
629 informing the solib layer about this new process. */
631 inferior_ptid = child_ptid;
632 add_thread (inferior_ptid);
633 set_current_inferior (child_inf);
635 /* If this is a vfork child, then the address-space is shared
636 with the parent. If we detached from the parent, then we can
637 reuse the parent's program/address spaces. */
638 if (has_vforked || detach_fork)
640 child_inf->pspace = parent_pspace;
641 child_inf->aspace = child_inf->pspace->aspace;
645 child_inf->aspace = new_address_space ();
646 child_inf->pspace = add_program_space (child_inf->aspace);
647 child_inf->removable = 1;
648 child_inf->symfile_flags = SYMFILE_NO_READ;
649 set_current_program_space (child_inf->pspace);
650 clone_program_space (child_inf->pspace, parent_pspace);
652 /* Let the shared library layer (e.g., solib-svr4) learn
653 about this new process, relocate the cloned exec, pull in
654 shared libraries, and install the solib event breakpoint.
655 If a "cloned-VM" event was propagated better throughout
656 the core, this wouldn't be required. */
657 solib_create_inferior_hook (0);
661 return target_follow_fork (follow_child, detach_fork);
664 /* Tell the target to follow the fork we're stopped at. Returns true
665 if the inferior should be resumed; false, if the target for some
666 reason decided it's best not to resume. */
671 int follow_child = (follow_fork_mode_string == follow_fork_mode_child);
672 int should_resume = 1;
673 struct thread_info *tp;
675 /* Copy user stepping state to the new inferior thread. FIXME: the
676 followed fork child thread should have a copy of most of the
677 parent thread structure's run control related fields, not just these.
678 Initialized to avoid "may be used uninitialized" warnings from gcc. */
679 struct breakpoint *step_resume_breakpoint = NULL;
680 struct breakpoint *exception_resume_breakpoint = NULL;
681 CORE_ADDR step_range_start = 0;
682 CORE_ADDR step_range_end = 0;
683 struct frame_id step_frame_id = { 0 };
684 struct thread_fsm *thread_fsm = NULL;
689 struct target_waitstatus wait_status;
691 /* Get the last target status returned by target_wait(). */
692 get_last_target_status (&wait_ptid, &wait_status);
694 /* If not stopped at a fork event, then there's nothing else to
696 if (wait_status.kind != TARGET_WAITKIND_FORKED
697 && wait_status.kind != TARGET_WAITKIND_VFORKED)
700 /* Check if we switched over from WAIT_PTID, since the event was
702 if (!ptid_equal (wait_ptid, minus_one_ptid)
703 && !ptid_equal (inferior_ptid, wait_ptid))
705 /* We did. Switch back to WAIT_PTID thread, to tell the
706 target to follow it (in either direction). We'll
707 afterwards refuse to resume, and inform the user what
709 switch_to_thread (wait_ptid);
714 tp = inferior_thread ();
716 /* If there were any forks/vforks that were caught and are now to be
717 followed, then do so now. */
718 switch (tp->pending_follow.kind)
720 case TARGET_WAITKIND_FORKED:
721 case TARGET_WAITKIND_VFORKED:
723 ptid_t parent, child;
725 /* If the user did a next/step, etc, over a fork call,
726 preserve the stepping state in the fork child. */
727 if (follow_child && should_resume)
729 step_resume_breakpoint = clone_momentary_breakpoint
730 (tp->control.step_resume_breakpoint);
731 step_range_start = tp->control.step_range_start;
732 step_range_end = tp->control.step_range_end;
733 step_frame_id = tp->control.step_frame_id;
734 exception_resume_breakpoint
735 = clone_momentary_breakpoint (tp->control.exception_resume_breakpoint);
736 thread_fsm = tp->thread_fsm;
738 /* For now, delete the parent's sr breakpoint, otherwise,
739 parent/child sr breakpoints are considered duplicates,
740 and the child version will not be installed. Remove
741 this when the breakpoints module becomes aware of
742 inferiors and address spaces. */
743 delete_step_resume_breakpoint (tp);
744 tp->control.step_range_start = 0;
745 tp->control.step_range_end = 0;
746 tp->control.step_frame_id = null_frame_id;
747 delete_exception_resume_breakpoint (tp);
748 tp->thread_fsm = NULL;
751 parent = inferior_ptid;
752 child = tp->pending_follow.value.related_pid;
754 /* Set up inferior(s) as specified by the caller, and tell the
755 target to do whatever is necessary to follow either parent
757 if (follow_fork_inferior (follow_child, detach_fork))
759 /* Target refused to follow, or there's some other reason
760 we shouldn't resume. */
765 /* This pending follow fork event is now handled, one way
766 or another. The previous selected thread may be gone
767 from the lists by now, but if it is still around, need
768 to clear the pending follow request. */
769 tp = find_thread_ptid (parent);
771 tp->pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
773 /* This makes sure we don't try to apply the "Switched
774 over from WAIT_PID" logic above. */
775 nullify_last_target_wait_ptid ();
777 /* If we followed the child, switch to it... */
780 switch_to_thread (child);
782 /* ... and preserve the stepping state, in case the
783 user was stepping over the fork call. */
786 tp = inferior_thread ();
787 tp->control.step_resume_breakpoint
788 = step_resume_breakpoint;
789 tp->control.step_range_start = step_range_start;
790 tp->control.step_range_end = step_range_end;
791 tp->control.step_frame_id = step_frame_id;
792 tp->control.exception_resume_breakpoint
793 = exception_resume_breakpoint;
794 tp->thread_fsm = thread_fsm;
798 /* If we get here, it was because we're trying to
799 resume from a fork catchpoint, but, the user
800 has switched threads away from the thread that
801 forked. In that case, the resume command
802 issued is most likely not applicable to the
803 child, so just warn, and refuse to resume. */
804 warning (_("Not resuming: switched threads "
805 "before following fork child."));
808 /* Reset breakpoints in the child as appropriate. */
809 follow_inferior_reset_breakpoints ();
812 switch_to_thread (parent);
816 case TARGET_WAITKIND_SPURIOUS:
817 /* Nothing to follow. */
820 internal_error (__FILE__, __LINE__,
821 "Unexpected pending_follow.kind %d\n",
822 tp->pending_follow.kind);
826 return should_resume;
830 follow_inferior_reset_breakpoints (void)
832 struct thread_info *tp = inferior_thread ();
834 /* Was there a step_resume breakpoint? (There was if the user
835 did a "next" at the fork() call.) If so, explicitly reset its
836 thread number. Cloned step_resume breakpoints are disabled on
837 creation, so enable it here now that it is associated with the
840 step_resumes are a form of bp that are made to be per-thread.
841 Since we created the step_resume bp when the parent process
842 was being debugged, and now are switching to the child process,
843 from the breakpoint package's viewpoint, that's a switch of
844 "threads". We must update the bp's notion of which thread
845 it is for, or it'll be ignored when it triggers. */
847 if (tp->control.step_resume_breakpoint)
849 breakpoint_re_set_thread (tp->control.step_resume_breakpoint);
850 tp->control.step_resume_breakpoint->loc->enabled = 1;
853 /* Treat exception_resume breakpoints like step_resume breakpoints. */
854 if (tp->control.exception_resume_breakpoint)
856 breakpoint_re_set_thread (tp->control.exception_resume_breakpoint);
857 tp->control.exception_resume_breakpoint->loc->enabled = 1;
860 /* Reinsert all breakpoints in the child. The user may have set
861 breakpoints after catching the fork, in which case those
862 were never set in the child, but only in the parent. This makes
863 sure the inserted breakpoints match the breakpoint list. */
865 breakpoint_re_set ();
866 insert_breakpoints ();
869 /* The child has exited or execed: resume threads of the parent the
870 user wanted to be executing. */
873 proceed_after_vfork_done (struct thread_info *thread,
876 int pid = * (int *) arg;
878 if (ptid_get_pid (thread->ptid) == pid
879 && is_running (thread->ptid)
880 && !is_executing (thread->ptid)
881 && !thread->stop_requested
882 && thread->suspend.stop_signal == GDB_SIGNAL_0)
885 fprintf_unfiltered (gdb_stdlog,
886 "infrun: resuming vfork parent thread %s\n",
887 target_pid_to_str (thread->ptid));
889 switch_to_thread (thread->ptid);
890 clear_proceed_status (0);
891 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
897 /* Save/restore inferior_ptid, current program space and current
898 inferior. Only use this if the current context points at an exited
899 inferior (and therefore there's no current thread to save). */
900 class scoped_restore_exited_inferior
903 scoped_restore_exited_inferior ()
904 : m_saved_ptid (&inferior_ptid)
908 scoped_restore_tmpl<ptid_t> m_saved_ptid;
909 scoped_restore_current_program_space m_pspace;
910 scoped_restore_current_inferior m_inferior;
913 /* Called whenever we notice an exec or exit event, to handle
914 detaching or resuming a vfork parent. */
917 handle_vfork_child_exec_or_exit (int exec)
919 struct inferior *inf = current_inferior ();
921 if (inf->vfork_parent)
923 int resume_parent = -1;
925 /* This exec or exit marks the end of the shared memory region
926 between the parent and the child. If the user wanted to
927 detach from the parent, now is the time. */
929 if (inf->vfork_parent->pending_detach)
931 struct thread_info *tp;
932 struct program_space *pspace;
933 struct address_space *aspace;
935 /* follow-fork child, detach-on-fork on. */
937 inf->vfork_parent->pending_detach = 0;
939 gdb::optional<scoped_restore_exited_inferior>
940 maybe_restore_inferior;
941 gdb::optional<scoped_restore_current_pspace_and_thread>
942 maybe_restore_thread;
944 /* If we're handling a child exit, then inferior_ptid points
945 at the inferior's pid, not to a thread. */
947 maybe_restore_inferior.emplace ();
949 maybe_restore_thread.emplace ();
951 /* We're letting loose of the parent. */
952 tp = any_live_thread_of_process (inf->vfork_parent->pid);
953 switch_to_thread (tp->ptid);
955 /* We're about to detach from the parent, which implicitly
956 removes breakpoints from its address space. There's a
957 catch here: we want to reuse the spaces for the child,
958 but, parent/child are still sharing the pspace at this
959 point, although the exec in reality makes the kernel give
960 the child a fresh set of new pages. The problem here is
961 that the breakpoints module being unaware of this, would
962 likely chose the child process to write to the parent
963 address space. Swapping the child temporarily away from
964 the spaces has the desired effect. Yes, this is "sort
967 pspace = inf->pspace;
968 aspace = inf->aspace;
972 if (debug_infrun || info_verbose)
974 target_terminal_ours_for_output ();
978 fprintf_filtered (gdb_stdlog,
979 _("Detaching vfork parent process "
980 "%d after child exec.\n"),
981 inf->vfork_parent->pid);
985 fprintf_filtered (gdb_stdlog,
986 _("Detaching vfork parent process "
987 "%d after child exit.\n"),
988 inf->vfork_parent->pid);
992 target_detach (NULL, 0);
995 inf->pspace = pspace;
996 inf->aspace = aspace;
1000 /* We're staying attached to the parent, so, really give the
1001 child a new address space. */
1002 inf->pspace = add_program_space (maybe_new_address_space ());
1003 inf->aspace = inf->pspace->aspace;
1005 set_current_program_space (inf->pspace);
1007 resume_parent = inf->vfork_parent->pid;
1009 /* Break the bonds. */
1010 inf->vfork_parent->vfork_child = NULL;
1014 struct program_space *pspace;
1016 /* If this is a vfork child exiting, then the pspace and
1017 aspaces were shared with the parent. Since we're
1018 reporting the process exit, we'll be mourning all that is
1019 found in the address space, and switching to null_ptid,
1020 preparing to start a new inferior. But, since we don't
1021 want to clobber the parent's address/program spaces, we
1022 go ahead and create a new one for this exiting
1025 /* Switch to null_ptid while running clone_program_space, so
1026 that clone_program_space doesn't want to read the
1027 selected frame of a dead process. */
1028 scoped_restore restore_ptid
1029 = make_scoped_restore (&inferior_ptid, null_ptid);
1031 /* This inferior is dead, so avoid giving the breakpoints
1032 module the option to write through to it (cloning a
1033 program space resets breakpoints). */
1036 pspace = add_program_space (maybe_new_address_space ());
1037 set_current_program_space (pspace);
1039 inf->symfile_flags = SYMFILE_NO_READ;
1040 clone_program_space (pspace, inf->vfork_parent->pspace);
1041 inf->pspace = pspace;
1042 inf->aspace = pspace->aspace;
1044 resume_parent = inf->vfork_parent->pid;
1045 /* Break the bonds. */
1046 inf->vfork_parent->vfork_child = NULL;
1049 inf->vfork_parent = NULL;
1051 gdb_assert (current_program_space == inf->pspace);
1053 if (non_stop && resume_parent != -1)
1055 /* If the user wanted the parent to be running, let it go
1057 scoped_restore_current_thread restore_thread;
1060 fprintf_unfiltered (gdb_stdlog,
1061 "infrun: resuming vfork parent process %d\n",
1064 iterate_over_threads (proceed_after_vfork_done, &resume_parent);
1069 /* Enum strings for "set|show follow-exec-mode". */
1071 static const char follow_exec_mode_new[] = "new";
1072 static const char follow_exec_mode_same[] = "same";
1073 static const char *const follow_exec_mode_names[] =
1075 follow_exec_mode_new,
1076 follow_exec_mode_same,
1080 static const char *follow_exec_mode_string = follow_exec_mode_same;
1082 show_follow_exec_mode_string (struct ui_file *file, int from_tty,
1083 struct cmd_list_element *c, const char *value)
1085 fprintf_filtered (file, _("Follow exec mode is \"%s\".\n"), value);
1088 /* EXEC_FILE_TARGET is assumed to be non-NULL. */
1091 follow_exec (ptid_t ptid, char *exec_file_target)
1093 struct thread_info *th, *tmp;
1094 struct inferior *inf = current_inferior ();
1095 int pid = ptid_get_pid (ptid);
1096 ptid_t process_ptid;
1097 char *exec_file_host;
1098 struct cleanup *old_chain;
1100 /* This is an exec event that we actually wish to pay attention to.
1101 Refresh our symbol table to the newly exec'd program, remove any
1102 momentary bp's, etc.
1104 If there are breakpoints, they aren't really inserted now,
1105 since the exec() transformed our inferior into a fresh set
1108 We want to preserve symbolic breakpoints on the list, since
1109 we have hopes that they can be reset after the new a.out's
1110 symbol table is read.
1112 However, any "raw" breakpoints must be removed from the list
1113 (e.g., the solib bp's), since their address is probably invalid
1116 And, we DON'T want to call delete_breakpoints() here, since
1117 that may write the bp's "shadow contents" (the instruction
1118 value that was overwritten witha TRAP instruction). Since
1119 we now have a new a.out, those shadow contents aren't valid. */
1121 mark_breakpoints_out ();
1123 /* The target reports the exec event to the main thread, even if
1124 some other thread does the exec, and even if the main thread was
1125 stopped or already gone. We may still have non-leader threads of
1126 the process on our list. E.g., on targets that don't have thread
1127 exit events (like remote); or on native Linux in non-stop mode if
1128 there were only two threads in the inferior and the non-leader
1129 one is the one that execs (and nothing forces an update of the
1130 thread list up to here). When debugging remotely, it's best to
1131 avoid extra traffic, when possible, so avoid syncing the thread
1132 list with the target, and instead go ahead and delete all threads
1133 of the process but one that reported the event. Note this must
1134 be done before calling update_breakpoints_after_exec, as
1135 otherwise clearing the threads' resources would reference stale
1136 thread breakpoints -- it may have been one of these threads that
1137 stepped across the exec. We could just clear their stepping
1138 states, but as long as we're iterating, might as well delete
1139 them. Deleting them now rather than at the next user-visible
1140 stop provides a nicer sequence of events for user and MI
1142 ALL_THREADS_SAFE (th, tmp)
1143 if (ptid_get_pid (th->ptid) == pid && !ptid_equal (th->ptid, ptid))
1144 delete_thread (th->ptid);
1146 /* We also need to clear any left over stale state for the
1147 leader/event thread. E.g., if there was any step-resume
1148 breakpoint or similar, it's gone now. We cannot truly
1149 step-to-next statement through an exec(). */
1150 th = inferior_thread ();
1151 th->control.step_resume_breakpoint = NULL;
1152 th->control.exception_resume_breakpoint = NULL;
1153 th->control.single_step_breakpoints = NULL;
1154 th->control.step_range_start = 0;
1155 th->control.step_range_end = 0;
1157 /* The user may have had the main thread held stopped in the
1158 previous image (e.g., schedlock on, or non-stop). Release
1160 th->stop_requested = 0;
1162 update_breakpoints_after_exec ();
1164 /* What is this a.out's name? */
1165 process_ptid = pid_to_ptid (pid);
1166 printf_unfiltered (_("%s is executing new program: %s\n"),
1167 target_pid_to_str (process_ptid),
1170 /* We've followed the inferior through an exec. Therefore, the
1171 inferior has essentially been killed & reborn. */
1173 gdb_flush (gdb_stdout);
1175 breakpoint_init_inferior (inf_execd);
1177 exec_file_host = exec_file_find (exec_file_target, NULL);
1178 old_chain = make_cleanup (xfree, exec_file_host);
1180 /* If we were unable to map the executable target pathname onto a host
1181 pathname, tell the user that. Otherwise GDB's subsequent behavior
1182 is confusing. Maybe it would even be better to stop at this point
1183 so that the user can specify a file manually before continuing. */
1184 if (exec_file_host == NULL)
1185 warning (_("Could not load symbols for executable %s.\n"
1186 "Do you need \"set sysroot\"?"),
1189 /* Reset the shared library package. This ensures that we get a
1190 shlib event when the child reaches "_start", at which point the
1191 dld will have had a chance to initialize the child. */
1192 /* Also, loading a symbol file below may trigger symbol lookups, and
1193 we don't want those to be satisfied by the libraries of the
1194 previous incarnation of this process. */
1195 no_shared_libraries (NULL, 0);
1197 if (follow_exec_mode_string == follow_exec_mode_new)
1199 /* The user wants to keep the old inferior and program spaces
1200 around. Create a new fresh one, and switch to it. */
1202 /* Do exit processing for the original inferior before adding
1203 the new inferior so we don't have two active inferiors with
1204 the same ptid, which can confuse find_inferior_ptid. */
1205 exit_inferior_num_silent (current_inferior ()->num);
1207 inf = add_inferior_with_spaces ();
1209 target_follow_exec (inf, exec_file_target);
1211 set_current_inferior (inf);
1212 set_current_program_space (inf->pspace);
1217 /* The old description may no longer be fit for the new image.
1218 E.g, a 64-bit process exec'ed a 32-bit process. Clear the
1219 old description; we'll read a new one below. No need to do
1220 this on "follow-exec-mode new", as the old inferior stays
1221 around (its description is later cleared/refetched on
1223 target_clear_description ();
1226 gdb_assert (current_program_space == inf->pspace);
1228 /* Attempt to open the exec file. SYMFILE_DEFER_BP_RESET is used
1229 because the proper displacement for a PIE (Position Independent
1230 Executable) main symbol file will only be computed by
1231 solib_create_inferior_hook below. breakpoint_re_set would fail
1232 to insert the breakpoints with the zero displacement. */
1233 try_open_exec_file (exec_file_host, inf, SYMFILE_DEFER_BP_RESET);
1235 do_cleanups (old_chain);
1237 /* If the target can specify a description, read it. Must do this
1238 after flipping to the new executable (because the target supplied
1239 description must be compatible with the executable's
1240 architecture, and the old executable may e.g., be 32-bit, while
1241 the new one 64-bit), and before anything involving memory or
1243 target_find_description ();
1245 solib_create_inferior_hook (0);
1247 jit_inferior_created_hook ();
1249 breakpoint_re_set ();
1251 /* Reinsert all breakpoints. (Those which were symbolic have
1252 been reset to the proper address in the new a.out, thanks
1253 to symbol_file_command...). */
1254 insert_breakpoints ();
1256 /* The next resume of this inferior should bring it to the shlib
1257 startup breakpoints. (If the user had also set bp's on
1258 "main" from the old (parent) process, then they'll auto-
1259 matically get reset there in the new process.). */
1262 /* The queue of threads that need to do a step-over operation to get
1263 past e.g., a breakpoint. What technique is used to step over the
1264 breakpoint/watchpoint does not matter -- all threads end up in the
1265 same queue, to maintain rough temporal order of execution, in order
1266 to avoid starvation, otherwise, we could e.g., find ourselves
1267 constantly stepping the same couple threads past their breakpoints
1268 over and over, if the single-step finish fast enough. */
1269 struct thread_info *step_over_queue_head;
1271 /* Bit flags indicating what the thread needs to step over. */
1273 enum step_over_what_flag
1275 /* Step over a breakpoint. */
1276 STEP_OVER_BREAKPOINT = 1,
1278 /* Step past a non-continuable watchpoint, in order to let the
1279 instruction execute so we can evaluate the watchpoint
1281 STEP_OVER_WATCHPOINT = 2
1283 DEF_ENUM_FLAGS_TYPE (enum step_over_what_flag, step_over_what);
1285 /* Info about an instruction that is being stepped over. */
1287 struct step_over_info
1289 /* If we're stepping past a breakpoint, this is the address space
1290 and address of the instruction the breakpoint is set at. We'll
1291 skip inserting all breakpoints here. Valid iff ASPACE is
1293 struct address_space *aspace;
1296 /* The instruction being stepped over triggers a nonsteppable
1297 watchpoint. If true, we'll skip inserting watchpoints. */
1298 int nonsteppable_watchpoint_p;
1300 /* The thread's global number. */
1304 /* The step-over info of the location that is being stepped over.
1306 Note that with async/breakpoint always-inserted mode, a user might
1307 set a new breakpoint/watchpoint/etc. exactly while a breakpoint is
1308 being stepped over. As setting a new breakpoint inserts all
1309 breakpoints, we need to make sure the breakpoint being stepped over
1310 isn't inserted then. We do that by only clearing the step-over
1311 info when the step-over is actually finished (or aborted).
1313 Presently GDB can only step over one breakpoint at any given time.
1314 Given threads that can't run code in the same address space as the
1315 breakpoint's can't really miss the breakpoint, GDB could be taught
1316 to step-over at most one breakpoint per address space (so this info
1317 could move to the address space object if/when GDB is extended).
1318 The set of breakpoints being stepped over will normally be much
1319 smaller than the set of all breakpoints, so a flag in the
1320 breakpoint location structure would be wasteful. A separate list
1321 also saves complexity and run-time, as otherwise we'd have to go
1322 through all breakpoint locations clearing their flag whenever we
1323 start a new sequence. Similar considerations weigh against storing
1324 this info in the thread object. Plus, not all step overs actually
1325 have breakpoint locations -- e.g., stepping past a single-step
1326 breakpoint, or stepping to complete a non-continuable
1328 static struct step_over_info step_over_info;
1330 /* Record the address of the breakpoint/instruction we're currently
1332 N.B. We record the aspace and address now, instead of say just the thread,
1333 because when we need the info later the thread may be running. */
1336 set_step_over_info (struct address_space *aspace, CORE_ADDR address,
1337 int nonsteppable_watchpoint_p,
1340 step_over_info.aspace = aspace;
1341 step_over_info.address = address;
1342 step_over_info.nonsteppable_watchpoint_p = nonsteppable_watchpoint_p;
1343 step_over_info.thread = thread;
1346 /* Called when we're not longer stepping over a breakpoint / an
1347 instruction, so all breakpoints are free to be (re)inserted. */
1350 clear_step_over_info (void)
1353 fprintf_unfiltered (gdb_stdlog,
1354 "infrun: clear_step_over_info\n");
1355 step_over_info.aspace = NULL;
1356 step_over_info.address = 0;
1357 step_over_info.nonsteppable_watchpoint_p = 0;
1358 step_over_info.thread = -1;
1364 stepping_past_instruction_at (struct address_space *aspace,
1367 return (step_over_info.aspace != NULL
1368 && breakpoint_address_match (aspace, address,
1369 step_over_info.aspace,
1370 step_over_info.address));
1376 thread_is_stepping_over_breakpoint (int thread)
1378 return (step_over_info.thread != -1
1379 && thread == step_over_info.thread);
1385 stepping_past_nonsteppable_watchpoint (void)
1387 return step_over_info.nonsteppable_watchpoint_p;
1390 /* Returns true if step-over info is valid. */
1393 step_over_info_valid_p (void)
1395 return (step_over_info.aspace != NULL
1396 || stepping_past_nonsteppable_watchpoint ());
1400 /* Displaced stepping. */
1402 /* In non-stop debugging mode, we must take special care to manage
1403 breakpoints properly; in particular, the traditional strategy for
1404 stepping a thread past a breakpoint it has hit is unsuitable.
1405 'Displaced stepping' is a tactic for stepping one thread past a
1406 breakpoint it has hit while ensuring that other threads running
1407 concurrently will hit the breakpoint as they should.
1409 The traditional way to step a thread T off a breakpoint in a
1410 multi-threaded program in all-stop mode is as follows:
1412 a0) Initially, all threads are stopped, and breakpoints are not
1414 a1) We single-step T, leaving breakpoints uninserted.
1415 a2) We insert breakpoints, and resume all threads.
1417 In non-stop debugging, however, this strategy is unsuitable: we
1418 don't want to have to stop all threads in the system in order to
1419 continue or step T past a breakpoint. Instead, we use displaced
1422 n0) Initially, T is stopped, other threads are running, and
1423 breakpoints are inserted.
1424 n1) We copy the instruction "under" the breakpoint to a separate
1425 location, outside the main code stream, making any adjustments
1426 to the instruction, register, and memory state as directed by
1428 n2) We single-step T over the instruction at its new location.
1429 n3) We adjust the resulting register and memory state as directed
1430 by T's architecture. This includes resetting T's PC to point
1431 back into the main instruction stream.
1434 This approach depends on the following gdbarch methods:
1436 - gdbarch_max_insn_length and gdbarch_displaced_step_location
1437 indicate where to copy the instruction, and how much space must
1438 be reserved there. We use these in step n1.
1440 - gdbarch_displaced_step_copy_insn copies a instruction to a new
1441 address, and makes any necessary adjustments to the instruction,
1442 register contents, and memory. We use this in step n1.
1444 - gdbarch_displaced_step_fixup adjusts registers and memory after
1445 we have successfuly single-stepped the instruction, to yield the
1446 same effect the instruction would have had if we had executed it
1447 at its original address. We use this in step n3.
1449 - gdbarch_displaced_step_free_closure provides cleanup.
1451 The gdbarch_displaced_step_copy_insn and
1452 gdbarch_displaced_step_fixup functions must be written so that
1453 copying an instruction with gdbarch_displaced_step_copy_insn,
1454 single-stepping across the copied instruction, and then applying
1455 gdbarch_displaced_insn_fixup should have the same effects on the
1456 thread's memory and registers as stepping the instruction in place
1457 would have. Exactly which responsibilities fall to the copy and
1458 which fall to the fixup is up to the author of those functions.
1460 See the comments in gdbarch.sh for details.
1462 Note that displaced stepping and software single-step cannot
1463 currently be used in combination, although with some care I think
1464 they could be made to. Software single-step works by placing
1465 breakpoints on all possible subsequent instructions; if the
1466 displaced instruction is a PC-relative jump, those breakpoints
1467 could fall in very strange places --- on pages that aren't
1468 executable, or at addresses that are not proper instruction
1469 boundaries. (We do generally let other threads run while we wait
1470 to hit the software single-step breakpoint, and they might
1471 encounter such a corrupted instruction.) One way to work around
1472 this would be to have gdbarch_displaced_step_copy_insn fully
1473 simulate the effect of PC-relative instructions (and return NULL)
1474 on architectures that use software single-stepping.
1476 In non-stop mode, we can have independent and simultaneous step
1477 requests, so more than one thread may need to simultaneously step
1478 over a breakpoint. The current implementation assumes there is
1479 only one scratch space per process. In this case, we have to
1480 serialize access to the scratch space. If thread A wants to step
1481 over a breakpoint, but we are currently waiting for some other
1482 thread to complete a displaced step, we leave thread A stopped and
1483 place it in the displaced_step_request_queue. Whenever a displaced
1484 step finishes, we pick the next thread in the queue and start a new
1485 displaced step operation on it. See displaced_step_prepare and
1486 displaced_step_fixup for details. */
1488 /* Per-inferior displaced stepping state. */
1489 struct displaced_step_inferior_state
1491 /* Pointer to next in linked list. */
1492 struct displaced_step_inferior_state *next;
1494 /* The process this displaced step state refers to. */
1497 /* True if preparing a displaced step ever failed. If so, we won't
1498 try displaced stepping for this inferior again. */
1501 /* If this is not null_ptid, this is the thread carrying out a
1502 displaced single-step in process PID. This thread's state will
1503 require fixing up once it has completed its step. */
1506 /* The architecture the thread had when we stepped it. */
1507 struct gdbarch *step_gdbarch;
1509 /* The closure provided gdbarch_displaced_step_copy_insn, to be used
1510 for post-step cleanup. */
1511 struct displaced_step_closure *step_closure;
1513 /* The address of the original instruction, and the copy we
1515 CORE_ADDR step_original, step_copy;
1517 /* Saved contents of copy area. */
1518 gdb_byte *step_saved_copy;
1521 /* The list of states of processes involved in displaced stepping
1523 static struct displaced_step_inferior_state *displaced_step_inferior_states;
1525 /* Get the displaced stepping state of process PID. */
1527 static struct displaced_step_inferior_state *
1528 get_displaced_stepping_state (int pid)
1530 struct displaced_step_inferior_state *state;
1532 for (state = displaced_step_inferior_states;
1534 state = state->next)
1535 if (state->pid == pid)
1541 /* Returns true if any inferior has a thread doing a displaced
1545 displaced_step_in_progress_any_inferior (void)
1547 struct displaced_step_inferior_state *state;
1549 for (state = displaced_step_inferior_states;
1551 state = state->next)
1552 if (!ptid_equal (state->step_ptid, null_ptid))
1558 /* Return true if thread represented by PTID is doing a displaced
1562 displaced_step_in_progress_thread (ptid_t ptid)
1564 struct displaced_step_inferior_state *displaced;
1566 gdb_assert (!ptid_equal (ptid, null_ptid));
1568 displaced = get_displaced_stepping_state (ptid_get_pid (ptid));
1570 return (displaced != NULL && ptid_equal (displaced->step_ptid, ptid));
1573 /* Return true if process PID has a thread doing a displaced step. */
1576 displaced_step_in_progress (int pid)
1578 struct displaced_step_inferior_state *displaced;
1580 displaced = get_displaced_stepping_state (pid);
1581 if (displaced != NULL && !ptid_equal (displaced->step_ptid, null_ptid))
1587 /* Add a new displaced stepping state for process PID to the displaced
1588 stepping state list, or return a pointer to an already existing
1589 entry, if it already exists. Never returns NULL. */
1591 static struct displaced_step_inferior_state *
1592 add_displaced_stepping_state (int pid)
1594 struct displaced_step_inferior_state *state;
1596 for (state = displaced_step_inferior_states;
1598 state = state->next)
1599 if (state->pid == pid)
1602 state = XCNEW (struct displaced_step_inferior_state);
1604 state->next = displaced_step_inferior_states;
1605 displaced_step_inferior_states = state;
1610 /* If inferior is in displaced stepping, and ADDR equals to starting address
1611 of copy area, return corresponding displaced_step_closure. Otherwise,
1614 struct displaced_step_closure*
1615 get_displaced_step_closure_by_addr (CORE_ADDR addr)
1617 struct displaced_step_inferior_state *displaced
1618 = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
1620 /* If checking the mode of displaced instruction in copy area. */
1621 if (displaced && !ptid_equal (displaced->step_ptid, null_ptid)
1622 && (displaced->step_copy == addr))
1623 return displaced->step_closure;
1628 /* Remove the displaced stepping state of process PID. */
1631 remove_displaced_stepping_state (int pid)
1633 struct displaced_step_inferior_state *it, **prev_next_p;
1635 gdb_assert (pid != 0);
1637 it = displaced_step_inferior_states;
1638 prev_next_p = &displaced_step_inferior_states;
1643 *prev_next_p = it->next;
1648 prev_next_p = &it->next;
1654 infrun_inferior_exit (struct inferior *inf)
1656 remove_displaced_stepping_state (inf->pid);
1659 /* If ON, and the architecture supports it, GDB will use displaced
1660 stepping to step over breakpoints. If OFF, or if the architecture
1661 doesn't support it, GDB will instead use the traditional
1662 hold-and-step approach. If AUTO (which is the default), GDB will
1663 decide which technique to use to step over breakpoints depending on
1664 which of all-stop or non-stop mode is active --- displaced stepping
1665 in non-stop mode; hold-and-step in all-stop mode. */
1667 static enum auto_boolean can_use_displaced_stepping = AUTO_BOOLEAN_AUTO;
1670 show_can_use_displaced_stepping (struct ui_file *file, int from_tty,
1671 struct cmd_list_element *c,
1674 if (can_use_displaced_stepping == AUTO_BOOLEAN_AUTO)
1675 fprintf_filtered (file,
1676 _("Debugger's willingness to use displaced stepping "
1677 "to step over breakpoints is %s (currently %s).\n"),
1678 value, target_is_non_stop_p () ? "on" : "off");
1680 fprintf_filtered (file,
1681 _("Debugger's willingness to use displaced stepping "
1682 "to step over breakpoints is %s.\n"), value);
1685 /* Return non-zero if displaced stepping can/should be used to step
1686 over breakpoints of thread TP. */
1689 use_displaced_stepping (struct thread_info *tp)
1691 struct regcache *regcache = get_thread_regcache (tp->ptid);
1692 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1693 struct displaced_step_inferior_state *displaced_state;
1695 displaced_state = get_displaced_stepping_state (ptid_get_pid (tp->ptid));
1697 return (((can_use_displaced_stepping == AUTO_BOOLEAN_AUTO
1698 && target_is_non_stop_p ())
1699 || can_use_displaced_stepping == AUTO_BOOLEAN_TRUE)
1700 && gdbarch_displaced_step_copy_insn_p (gdbarch)
1701 && find_record_target () == NULL
1702 && (displaced_state == NULL
1703 || !displaced_state->failed_before));
1706 /* Clean out any stray displaced stepping state. */
1708 displaced_step_clear (struct displaced_step_inferior_state *displaced)
1710 /* Indicate that there is no cleanup pending. */
1711 displaced->step_ptid = null_ptid;
1713 xfree (displaced->step_closure);
1714 displaced->step_closure = NULL;
1718 displaced_step_clear_cleanup (void *arg)
1720 struct displaced_step_inferior_state *state
1721 = (struct displaced_step_inferior_state *) arg;
1723 displaced_step_clear (state);
1726 /* Dump LEN bytes at BUF in hex to FILE, followed by a newline. */
1728 displaced_step_dump_bytes (struct ui_file *file,
1729 const gdb_byte *buf,
1734 for (i = 0; i < len; i++)
1735 fprintf_unfiltered (file, "%02x ", buf[i]);
1736 fputs_unfiltered ("\n", file);
1739 /* Prepare to single-step, using displaced stepping.
1741 Note that we cannot use displaced stepping when we have a signal to
1742 deliver. If we have a signal to deliver and an instruction to step
1743 over, then after the step, there will be no indication from the
1744 target whether the thread entered a signal handler or ignored the
1745 signal and stepped over the instruction successfully --- both cases
1746 result in a simple SIGTRAP. In the first case we mustn't do a
1747 fixup, and in the second case we must --- but we can't tell which.
1748 Comments in the code for 'random signals' in handle_inferior_event
1749 explain how we handle this case instead.
1751 Returns 1 if preparing was successful -- this thread is going to be
1752 stepped now; 0 if displaced stepping this thread got queued; or -1
1753 if this instruction can't be displaced stepped. */
1756 displaced_step_prepare_throw (ptid_t ptid)
1758 struct cleanup *old_cleanups, *ignore_cleanups;
1759 struct thread_info *tp = find_thread_ptid (ptid);
1760 struct regcache *regcache = get_thread_regcache (ptid);
1761 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1762 struct address_space *aspace = get_regcache_aspace (regcache);
1763 CORE_ADDR original, copy;
1765 struct displaced_step_closure *closure;
1766 struct displaced_step_inferior_state *displaced;
1769 /* We should never reach this function if the architecture does not
1770 support displaced stepping. */
1771 gdb_assert (gdbarch_displaced_step_copy_insn_p (gdbarch));
1773 /* Nor if the thread isn't meant to step over a breakpoint. */
1774 gdb_assert (tp->control.trap_expected);
1776 /* Disable range stepping while executing in the scratch pad. We
1777 want a single-step even if executing the displaced instruction in
1778 the scratch buffer lands within the stepping range (e.g., a
1780 tp->control.may_range_step = 0;
1782 /* We have to displaced step one thread at a time, as we only have
1783 access to a single scratch space per inferior. */
1785 displaced = add_displaced_stepping_state (ptid_get_pid (ptid));
1787 if (!ptid_equal (displaced->step_ptid, null_ptid))
1789 /* Already waiting for a displaced step to finish. Defer this
1790 request and place in queue. */
1792 if (debug_displaced)
1793 fprintf_unfiltered (gdb_stdlog,
1794 "displaced: deferring step of %s\n",
1795 target_pid_to_str (ptid));
1797 thread_step_over_chain_enqueue (tp);
1802 if (debug_displaced)
1803 fprintf_unfiltered (gdb_stdlog,
1804 "displaced: stepping %s now\n",
1805 target_pid_to_str (ptid));
1808 displaced_step_clear (displaced);
1810 old_cleanups = save_inferior_ptid ();
1811 inferior_ptid = ptid;
1813 original = regcache_read_pc (regcache);
1815 copy = gdbarch_displaced_step_location (gdbarch);
1816 len = gdbarch_max_insn_length (gdbarch);
1818 if (breakpoint_in_range_p (aspace, copy, len))
1820 /* There's a breakpoint set in the scratch pad location range
1821 (which is usually around the entry point). We'd either
1822 install it before resuming, which would overwrite/corrupt the
1823 scratch pad, or if it was already inserted, this displaced
1824 step would overwrite it. The latter is OK in the sense that
1825 we already assume that no thread is going to execute the code
1826 in the scratch pad range (after initial startup) anyway, but
1827 the former is unacceptable. Simply punt and fallback to
1828 stepping over this breakpoint in-line. */
1829 if (debug_displaced)
1831 fprintf_unfiltered (gdb_stdlog,
1832 "displaced: breakpoint set in scratch pad. "
1833 "Stepping over breakpoint in-line instead.\n");
1836 do_cleanups (old_cleanups);
1840 /* Save the original contents of the copy area. */
1841 displaced->step_saved_copy = (gdb_byte *) xmalloc (len);
1842 ignore_cleanups = make_cleanup (free_current_contents,
1843 &displaced->step_saved_copy);
1844 status = target_read_memory (copy, displaced->step_saved_copy, len);
1846 throw_error (MEMORY_ERROR,
1847 _("Error accessing memory address %s (%s) for "
1848 "displaced-stepping scratch space."),
1849 paddress (gdbarch, copy), safe_strerror (status));
1850 if (debug_displaced)
1852 fprintf_unfiltered (gdb_stdlog, "displaced: saved %s: ",
1853 paddress (gdbarch, copy));
1854 displaced_step_dump_bytes (gdb_stdlog,
1855 displaced->step_saved_copy,
1859 closure = gdbarch_displaced_step_copy_insn (gdbarch,
1860 original, copy, regcache);
1861 if (closure == NULL)
1863 /* The architecture doesn't know how or want to displaced step
1864 this instruction or instruction sequence. Fallback to
1865 stepping over the breakpoint in-line. */
1866 do_cleanups (old_cleanups);
1870 /* Save the information we need to fix things up if the step
1872 displaced->step_ptid = ptid;
1873 displaced->step_gdbarch = gdbarch;
1874 displaced->step_closure = closure;
1875 displaced->step_original = original;
1876 displaced->step_copy = copy;
1878 make_cleanup (displaced_step_clear_cleanup, displaced);
1880 /* Resume execution at the copy. */
1881 regcache_write_pc (regcache, copy);
1883 discard_cleanups (ignore_cleanups);
1885 do_cleanups (old_cleanups);
1887 if (debug_displaced)
1888 fprintf_unfiltered (gdb_stdlog, "displaced: displaced pc to %s\n",
1889 paddress (gdbarch, copy));
1894 /* Wrapper for displaced_step_prepare_throw that disabled further
1895 attempts at displaced stepping if we get a memory error. */
1898 displaced_step_prepare (ptid_t ptid)
1904 prepared = displaced_step_prepare_throw (ptid);
1906 CATCH (ex, RETURN_MASK_ERROR)
1908 struct displaced_step_inferior_state *displaced_state;
1910 if (ex.error != MEMORY_ERROR
1911 && ex.error != NOT_SUPPORTED_ERROR)
1912 throw_exception (ex);
1916 fprintf_unfiltered (gdb_stdlog,
1917 "infrun: disabling displaced stepping: %s\n",
1921 /* Be verbose if "set displaced-stepping" is "on", silent if
1923 if (can_use_displaced_stepping == AUTO_BOOLEAN_TRUE)
1925 warning (_("disabling displaced stepping: %s"),
1929 /* Disable further displaced stepping attempts. */
1931 = get_displaced_stepping_state (ptid_get_pid (ptid));
1932 displaced_state->failed_before = 1;
1940 write_memory_ptid (ptid_t ptid, CORE_ADDR memaddr,
1941 const gdb_byte *myaddr, int len)
1943 struct cleanup *ptid_cleanup = save_inferior_ptid ();
1945 inferior_ptid = ptid;
1946 write_memory (memaddr, myaddr, len);
1947 do_cleanups (ptid_cleanup);
1950 /* Restore the contents of the copy area for thread PTID. */
1953 displaced_step_restore (struct displaced_step_inferior_state *displaced,
1956 ULONGEST len = gdbarch_max_insn_length (displaced->step_gdbarch);
1958 write_memory_ptid (ptid, displaced->step_copy,
1959 displaced->step_saved_copy, len);
1960 if (debug_displaced)
1961 fprintf_unfiltered (gdb_stdlog, "displaced: restored %s %s\n",
1962 target_pid_to_str (ptid),
1963 paddress (displaced->step_gdbarch,
1964 displaced->step_copy));
1967 /* If we displaced stepped an instruction successfully, adjust
1968 registers and memory to yield the same effect the instruction would
1969 have had if we had executed it at its original address, and return
1970 1. If the instruction didn't complete, relocate the PC and return
1971 -1. If the thread wasn't displaced stepping, return 0. */
1974 displaced_step_fixup (ptid_t event_ptid, enum gdb_signal signal)
1976 struct cleanup *old_cleanups;
1977 struct displaced_step_inferior_state *displaced
1978 = get_displaced_stepping_state (ptid_get_pid (event_ptid));
1981 /* Was any thread of this process doing a displaced step? */
1982 if (displaced == NULL)
1985 /* Was this event for the pid we displaced? */
1986 if (ptid_equal (displaced->step_ptid, null_ptid)
1987 || ! ptid_equal (displaced->step_ptid, event_ptid))
1990 old_cleanups = make_cleanup (displaced_step_clear_cleanup, displaced);
1992 displaced_step_restore (displaced, displaced->step_ptid);
1994 /* Fixup may need to read memory/registers. Switch to the thread
1995 that we're fixing up. Also, target_stopped_by_watchpoint checks
1996 the current thread. */
1997 switch_to_thread (event_ptid);
1999 /* Did the instruction complete successfully? */
2000 if (signal == GDB_SIGNAL_TRAP
2001 && !(target_stopped_by_watchpoint ()
2002 && (gdbarch_have_nonsteppable_watchpoint (displaced->step_gdbarch)
2003 || target_have_steppable_watchpoint)))
2005 /* Fix up the resulting state. */
2006 gdbarch_displaced_step_fixup (displaced->step_gdbarch,
2007 displaced->step_closure,
2008 displaced->step_original,
2009 displaced->step_copy,
2010 get_thread_regcache (displaced->step_ptid));
2015 /* Since the instruction didn't complete, all we can do is
2017 struct regcache *regcache = get_thread_regcache (event_ptid);
2018 CORE_ADDR pc = regcache_read_pc (regcache);
2020 pc = displaced->step_original + (pc - displaced->step_copy);
2021 regcache_write_pc (regcache, pc);
2025 do_cleanups (old_cleanups);
2027 displaced->step_ptid = null_ptid;
2032 /* Data to be passed around while handling an event. This data is
2033 discarded between events. */
2034 struct execution_control_state
2037 /* The thread that got the event, if this was a thread event; NULL
2039 struct thread_info *event_thread;
2041 struct target_waitstatus ws;
2042 int stop_func_filled_in;
2043 CORE_ADDR stop_func_start;
2044 CORE_ADDR stop_func_end;
2045 const char *stop_func_name;
2048 /* True if the event thread hit the single-step breakpoint of
2049 another thread. Thus the event doesn't cause a stop, the thread
2050 needs to be single-stepped past the single-step breakpoint before
2051 we can switch back to the original stepping thread. */
2052 int hit_singlestep_breakpoint;
2055 /* Clear ECS and set it to point at TP. */
2058 reset_ecs (struct execution_control_state *ecs, struct thread_info *tp)
2060 memset (ecs, 0, sizeof (*ecs));
2061 ecs->event_thread = tp;
2062 ecs->ptid = tp->ptid;
2065 static void keep_going_pass_signal (struct execution_control_state *ecs);
2066 static void prepare_to_wait (struct execution_control_state *ecs);
2067 static int keep_going_stepped_thread (struct thread_info *tp);
2068 static step_over_what thread_still_needs_step_over (struct thread_info *tp);
2070 /* Are there any pending step-over requests? If so, run all we can
2071 now and return true. Otherwise, return false. */
2074 start_step_over (void)
2076 struct thread_info *tp, *next;
2078 /* Don't start a new step-over if we already have an in-line
2079 step-over operation ongoing. */
2080 if (step_over_info_valid_p ())
2083 for (tp = step_over_queue_head; tp != NULL; tp = next)
2085 struct execution_control_state ecss;
2086 struct execution_control_state *ecs = &ecss;
2087 step_over_what step_what;
2088 int must_be_in_line;
2090 gdb_assert (!tp->stop_requested);
2092 next = thread_step_over_chain_next (tp);
2094 /* If this inferior already has a displaced step in process,
2095 don't start a new one. */
2096 if (displaced_step_in_progress (ptid_get_pid (tp->ptid)))
2099 step_what = thread_still_needs_step_over (tp);
2100 must_be_in_line = ((step_what & STEP_OVER_WATCHPOINT)
2101 || ((step_what & STEP_OVER_BREAKPOINT)
2102 && !use_displaced_stepping (tp)));
2104 /* We currently stop all threads of all processes to step-over
2105 in-line. If we need to start a new in-line step-over, let
2106 any pending displaced steps finish first. */
2107 if (must_be_in_line && displaced_step_in_progress_any_inferior ())
2110 thread_step_over_chain_remove (tp);
2112 if (step_over_queue_head == NULL)
2115 fprintf_unfiltered (gdb_stdlog,
2116 "infrun: step-over queue now empty\n");
2119 if (tp->control.trap_expected
2123 internal_error (__FILE__, __LINE__,
2124 "[%s] has inconsistent state: "
2125 "trap_expected=%d, resumed=%d, executing=%d\n",
2126 target_pid_to_str (tp->ptid),
2127 tp->control.trap_expected,
2133 fprintf_unfiltered (gdb_stdlog,
2134 "infrun: resuming [%s] for step-over\n",
2135 target_pid_to_str (tp->ptid));
2137 /* keep_going_pass_signal skips the step-over if the breakpoint
2138 is no longer inserted. In all-stop, we want to keep looking
2139 for a thread that needs a step-over instead of resuming TP,
2140 because we wouldn't be able to resume anything else until the
2141 target stops again. In non-stop, the resume always resumes
2142 only TP, so it's OK to let the thread resume freely. */
2143 if (!target_is_non_stop_p () && !step_what)
2146 switch_to_thread (tp->ptid);
2147 reset_ecs (ecs, tp);
2148 keep_going_pass_signal (ecs);
2150 if (!ecs->wait_some_more)
2151 error (_("Command aborted."));
2153 gdb_assert (tp->resumed);
2155 /* If we started a new in-line step-over, we're done. */
2156 if (step_over_info_valid_p ())
2158 gdb_assert (tp->control.trap_expected);
2162 if (!target_is_non_stop_p ())
2164 /* On all-stop, shouldn't have resumed unless we needed a
2166 gdb_assert (tp->control.trap_expected
2167 || tp->step_after_step_resume_breakpoint);
2169 /* With remote targets (at least), in all-stop, we can't
2170 issue any further remote commands until the program stops
2175 /* Either the thread no longer needed a step-over, or a new
2176 displaced stepping sequence started. Even in the latter
2177 case, continue looking. Maybe we can also start another
2178 displaced step on a thread of other process. */
2184 /* Update global variables holding ptids to hold NEW_PTID if they were
2185 holding OLD_PTID. */
2187 infrun_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
2189 struct displaced_step_inferior_state *displaced;
2191 if (ptid_equal (inferior_ptid, old_ptid))
2192 inferior_ptid = new_ptid;
2194 for (displaced = displaced_step_inferior_states;
2196 displaced = displaced->next)
2198 if (ptid_equal (displaced->step_ptid, old_ptid))
2199 displaced->step_ptid = new_ptid;
2206 /* Things to clean up if we QUIT out of resume (). */
2208 resume_cleanups (void *ignore)
2210 if (!ptid_equal (inferior_ptid, null_ptid))
2211 delete_single_step_breakpoints (inferior_thread ());
2216 static const char schedlock_off[] = "off";
2217 static const char schedlock_on[] = "on";
2218 static const char schedlock_step[] = "step";
2219 static const char schedlock_replay[] = "replay";
2220 static const char *const scheduler_enums[] = {
2227 static const char *scheduler_mode = schedlock_replay;
2229 show_scheduler_mode (struct ui_file *file, int from_tty,
2230 struct cmd_list_element *c, const char *value)
2232 fprintf_filtered (file,
2233 _("Mode for locking scheduler "
2234 "during execution is \"%s\".\n"),
2239 set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
2241 if (!target_can_lock_scheduler)
2243 scheduler_mode = schedlock_off;
2244 error (_("Target '%s' cannot support this command."), target_shortname);
2248 /* True if execution commands resume all threads of all processes by
2249 default; otherwise, resume only threads of the current inferior
2251 int sched_multi = 0;
2253 /* Try to setup for software single stepping over the specified location.
2254 Return 1 if target_resume() should use hardware single step.
2256 GDBARCH the current gdbarch.
2257 PC the location to step over. */
2260 maybe_software_singlestep (struct gdbarch *gdbarch, CORE_ADDR pc)
2264 if (execution_direction == EXEC_FORWARD
2265 && gdbarch_software_single_step_p (gdbarch))
2266 hw_step = !insert_single_step_breakpoints (gdbarch);
2274 user_visible_resume_ptid (int step)
2280 /* With non-stop mode on, threads are always handled
2282 resume_ptid = inferior_ptid;
2284 else if ((scheduler_mode == schedlock_on)
2285 || (scheduler_mode == schedlock_step && step))
2287 /* User-settable 'scheduler' mode requires solo thread
2289 resume_ptid = inferior_ptid;
2291 else if ((scheduler_mode == schedlock_replay)
2292 && target_record_will_replay (minus_one_ptid, execution_direction))
2294 /* User-settable 'scheduler' mode requires solo thread resume in replay
2296 resume_ptid = inferior_ptid;
2298 else if (!sched_multi && target_supports_multi_process ())
2300 /* Resume all threads of the current process (and none of other
2302 resume_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
2306 /* Resume all threads of all processes. */
2307 resume_ptid = RESUME_ALL;
2313 /* Return a ptid representing the set of threads that we will resume,
2314 in the perspective of the target, assuming run control handling
2315 does not require leaving some threads stopped (e.g., stepping past
2316 breakpoint). USER_STEP indicates whether we're about to start the
2317 target for a stepping command. */
2320 internal_resume_ptid (int user_step)
2322 /* In non-stop, we always control threads individually. Note that
2323 the target may always work in non-stop mode even with "set
2324 non-stop off", in which case user_visible_resume_ptid could
2325 return a wildcard ptid. */
2326 if (target_is_non_stop_p ())
2327 return inferior_ptid;
2329 return user_visible_resume_ptid (user_step);
2332 /* Wrapper for target_resume, that handles infrun-specific
2336 do_target_resume (ptid_t resume_ptid, int step, enum gdb_signal sig)
2338 struct thread_info *tp = inferior_thread ();
2340 gdb_assert (!tp->stop_requested);
2342 /* Install inferior's terminal modes. */
2343 target_terminal_inferior ();
2345 /* Avoid confusing the next resume, if the next stop/resume
2346 happens to apply to another thread. */
2347 tp->suspend.stop_signal = GDB_SIGNAL_0;
2349 /* Advise target which signals may be handled silently.
2351 If we have removed breakpoints because we are stepping over one
2352 in-line (in any thread), we need to receive all signals to avoid
2353 accidentally skipping a breakpoint during execution of a signal
2356 Likewise if we're displaced stepping, otherwise a trap for a
2357 breakpoint in a signal handler might be confused with the
2358 displaced step finishing. We don't make the displaced_step_fixup
2359 step distinguish the cases instead, because:
2361 - a backtrace while stopped in the signal handler would show the
2362 scratch pad as frame older than the signal handler, instead of
2363 the real mainline code.
2365 - when the thread is later resumed, the signal handler would
2366 return to the scratch pad area, which would no longer be
2368 if (step_over_info_valid_p ()
2369 || displaced_step_in_progress (ptid_get_pid (tp->ptid)))
2370 target_pass_signals (0, NULL);
2372 target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
2374 target_resume (resume_ptid, step, sig);
2376 target_commit_resume ();
2379 /* Resume the inferior, but allow a QUIT. This is useful if the user
2380 wants to interrupt some lengthy single-stepping operation
2381 (for child processes, the SIGINT goes to the inferior, and so
2382 we get a SIGINT random_signal, but for remote debugging and perhaps
2383 other targets, that's not true).
2385 SIG is the signal to give the inferior (zero for none). */
2387 resume (enum gdb_signal sig)
2389 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
2390 struct regcache *regcache = get_current_regcache ();
2391 struct gdbarch *gdbarch = get_regcache_arch (regcache);
2392 struct thread_info *tp = inferior_thread ();
2393 CORE_ADDR pc = regcache_read_pc (regcache);
2394 struct address_space *aspace = get_regcache_aspace (regcache);
2396 /* This represents the user's step vs continue request. When
2397 deciding whether "set scheduler-locking step" applies, it's the
2398 user's intention that counts. */
2399 const int user_step = tp->control.stepping_command;
2400 /* This represents what we'll actually request the target to do.
2401 This can decay from a step to a continue, if e.g., we need to
2402 implement single-stepping with breakpoints (software
2406 gdb_assert (!tp->stop_requested);
2407 gdb_assert (!thread_is_in_step_over_chain (tp));
2411 if (tp->suspend.waitstatus_pending_p)
2417 statstr = target_waitstatus_to_string (&tp->suspend.waitstatus);
2418 fprintf_unfiltered (gdb_stdlog,
2419 "infrun: resume: thread %s has pending wait status %s "
2420 "(currently_stepping=%d).\n",
2421 target_pid_to_str (tp->ptid), statstr,
2422 currently_stepping (tp));
2428 /* FIXME: What should we do if we are supposed to resume this
2429 thread with a signal? Maybe we should maintain a queue of
2430 pending signals to deliver. */
2431 if (sig != GDB_SIGNAL_0)
2433 warning (_("Couldn't deliver signal %s to %s."),
2434 gdb_signal_to_name (sig), target_pid_to_str (tp->ptid));
2437 tp->suspend.stop_signal = GDB_SIGNAL_0;
2438 discard_cleanups (old_cleanups);
2440 if (target_can_async_p ())
2445 tp->stepped_breakpoint = 0;
2447 /* Depends on stepped_breakpoint. */
2448 step = currently_stepping (tp);
2450 if (current_inferior ()->waiting_for_vfork_done)
2452 /* Don't try to single-step a vfork parent that is waiting for
2453 the child to get out of the shared memory region (by exec'ing
2454 or exiting). This is particularly important on software
2455 single-step archs, as the child process would trip on the
2456 software single step breakpoint inserted for the parent
2457 process. Since the parent will not actually execute any
2458 instruction until the child is out of the shared region (such
2459 are vfork's semantics), it is safe to simply continue it.
2460 Eventually, we'll see a TARGET_WAITKIND_VFORK_DONE event for
2461 the parent, and tell it to `keep_going', which automatically
2462 re-sets it stepping. */
2464 fprintf_unfiltered (gdb_stdlog,
2465 "infrun: resume : clear step\n");
2470 fprintf_unfiltered (gdb_stdlog,
2471 "infrun: resume (step=%d, signal=%s), "
2472 "trap_expected=%d, current thread [%s] at %s\n",
2473 step, gdb_signal_to_symbol_string (sig),
2474 tp->control.trap_expected,
2475 target_pid_to_str (inferior_ptid),
2476 paddress (gdbarch, pc));
2478 /* Normally, by the time we reach `resume', the breakpoints are either
2479 removed or inserted, as appropriate. The exception is if we're sitting
2480 at a permanent breakpoint; we need to step over it, but permanent
2481 breakpoints can't be removed. So we have to test for it here. */
2482 if (breakpoint_here_p (aspace, pc) == permanent_breakpoint_here)
2484 if (sig != GDB_SIGNAL_0)
2486 /* We have a signal to pass to the inferior. The resume
2487 may, or may not take us to the signal handler. If this
2488 is a step, we'll need to stop in the signal handler, if
2489 there's one, (if the target supports stepping into
2490 handlers), or in the next mainline instruction, if
2491 there's no handler. If this is a continue, we need to be
2492 sure to run the handler with all breakpoints inserted.
2493 In all cases, set a breakpoint at the current address
2494 (where the handler returns to), and once that breakpoint
2495 is hit, resume skipping the permanent breakpoint. If
2496 that breakpoint isn't hit, then we've stepped into the
2497 signal handler (or hit some other event). We'll delete
2498 the step-resume breakpoint then. */
2501 fprintf_unfiltered (gdb_stdlog,
2502 "infrun: resume: skipping permanent breakpoint, "
2503 "deliver signal first\n");
2505 clear_step_over_info ();
2506 tp->control.trap_expected = 0;
2508 if (tp->control.step_resume_breakpoint == NULL)
2510 /* Set a "high-priority" step-resume, as we don't want
2511 user breakpoints at PC to trigger (again) when this
2513 insert_hp_step_resume_breakpoint_at_frame (get_current_frame ());
2514 gdb_assert (tp->control.step_resume_breakpoint->loc->permanent);
2516 tp->step_after_step_resume_breakpoint = step;
2519 insert_breakpoints ();
2523 /* There's no signal to pass, we can go ahead and skip the
2524 permanent breakpoint manually. */
2526 fprintf_unfiltered (gdb_stdlog,
2527 "infrun: resume: skipping permanent breakpoint\n");
2528 gdbarch_skip_permanent_breakpoint (gdbarch, regcache);
2529 /* Update pc to reflect the new address from which we will
2530 execute instructions. */
2531 pc = regcache_read_pc (regcache);
2535 /* We've already advanced the PC, so the stepping part
2536 is done. Now we need to arrange for a trap to be
2537 reported to handle_inferior_event. Set a breakpoint
2538 at the current PC, and run to it. Don't update
2539 prev_pc, because if we end in
2540 switch_back_to_stepped_thread, we want the "expected
2541 thread advanced also" branch to be taken. IOW, we
2542 don't want this thread to step further from PC
2544 gdb_assert (!step_over_info_valid_p ());
2545 insert_single_step_breakpoint (gdbarch, aspace, pc);
2546 insert_breakpoints ();
2548 resume_ptid = internal_resume_ptid (user_step);
2549 do_target_resume (resume_ptid, 0, GDB_SIGNAL_0);
2550 discard_cleanups (old_cleanups);
2557 /* If we have a breakpoint to step over, make sure to do a single
2558 step only. Same if we have software watchpoints. */
2559 if (tp->control.trap_expected || bpstat_should_step ())
2560 tp->control.may_range_step = 0;
2562 /* If enabled, step over breakpoints by executing a copy of the
2563 instruction at a different address.
2565 We can't use displaced stepping when we have a signal to deliver;
2566 the comments for displaced_step_prepare explain why. The
2567 comments in the handle_inferior event for dealing with 'random
2568 signals' explain what we do instead.
2570 We can't use displaced stepping when we are waiting for vfork_done
2571 event, displaced stepping breaks the vfork child similarly as single
2572 step software breakpoint. */
2573 if (tp->control.trap_expected
2574 && use_displaced_stepping (tp)
2575 && !step_over_info_valid_p ()
2576 && sig == GDB_SIGNAL_0
2577 && !current_inferior ()->waiting_for_vfork_done)
2579 int prepared = displaced_step_prepare (inferior_ptid);
2584 fprintf_unfiltered (gdb_stdlog,
2585 "Got placed in step-over queue\n");
2587 tp->control.trap_expected = 0;
2588 discard_cleanups (old_cleanups);
2591 else if (prepared < 0)
2593 /* Fallback to stepping over the breakpoint in-line. */
2595 if (target_is_non_stop_p ())
2596 stop_all_threads ();
2598 set_step_over_info (get_regcache_aspace (regcache),
2599 regcache_read_pc (regcache), 0, tp->global_num);
2601 step = maybe_software_singlestep (gdbarch, pc);
2603 insert_breakpoints ();
2605 else if (prepared > 0)
2607 struct displaced_step_inferior_state *displaced;
2609 /* Update pc to reflect the new address from which we will
2610 execute instructions due to displaced stepping. */
2611 pc = regcache_read_pc (get_thread_regcache (inferior_ptid));
2613 displaced = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
2614 step = gdbarch_displaced_step_hw_singlestep (gdbarch,
2615 displaced->step_closure);
2619 /* Do we need to do it the hard way, w/temp breakpoints? */
2621 step = maybe_software_singlestep (gdbarch, pc);
2623 /* Currently, our software single-step implementation leads to different
2624 results than hardware single-stepping in one situation: when stepping
2625 into delivering a signal which has an associated signal handler,
2626 hardware single-step will stop at the first instruction of the handler,
2627 while software single-step will simply skip execution of the handler.
2629 For now, this difference in behavior is accepted since there is no
2630 easy way to actually implement single-stepping into a signal handler
2631 without kernel support.
2633 However, there is one scenario where this difference leads to follow-on
2634 problems: if we're stepping off a breakpoint by removing all breakpoints
2635 and then single-stepping. In this case, the software single-step
2636 behavior means that even if there is a *breakpoint* in the signal
2637 handler, GDB still would not stop.
2639 Fortunately, we can at least fix this particular issue. We detect
2640 here the case where we are about to deliver a signal while software
2641 single-stepping with breakpoints removed. In this situation, we
2642 revert the decisions to remove all breakpoints and insert single-
2643 step breakpoints, and instead we install a step-resume breakpoint
2644 at the current address, deliver the signal without stepping, and
2645 once we arrive back at the step-resume breakpoint, actually step
2646 over the breakpoint we originally wanted to step over. */
2647 if (thread_has_single_step_breakpoints_set (tp)
2648 && sig != GDB_SIGNAL_0
2649 && step_over_info_valid_p ())
2651 /* If we have nested signals or a pending signal is delivered
2652 immediately after a handler returns, might might already have
2653 a step-resume breakpoint set on the earlier handler. We cannot
2654 set another step-resume breakpoint; just continue on until the
2655 original breakpoint is hit. */
2656 if (tp->control.step_resume_breakpoint == NULL)
2658 insert_hp_step_resume_breakpoint_at_frame (get_current_frame ());
2659 tp->step_after_step_resume_breakpoint = 1;
2662 delete_single_step_breakpoints (tp);
2664 clear_step_over_info ();
2665 tp->control.trap_expected = 0;
2667 insert_breakpoints ();
2670 /* If STEP is set, it's a request to use hardware stepping
2671 facilities. But in that case, we should never
2672 use singlestep breakpoint. */
2673 gdb_assert (!(thread_has_single_step_breakpoints_set (tp) && step));
2675 /* Decide the set of threads to ask the target to resume. */
2676 if (tp->control.trap_expected)
2678 /* We're allowing a thread to run past a breakpoint it has
2679 hit, either by single-stepping the thread with the breakpoint
2680 removed, or by displaced stepping, with the breakpoint inserted.
2681 In the former case, we need to single-step only this thread,
2682 and keep others stopped, as they can miss this breakpoint if
2683 allowed to run. That's not really a problem for displaced
2684 stepping, but, we still keep other threads stopped, in case
2685 another thread is also stopped for a breakpoint waiting for
2686 its turn in the displaced stepping queue. */
2687 resume_ptid = inferior_ptid;
2690 resume_ptid = internal_resume_ptid (user_step);
2692 if (execution_direction != EXEC_REVERSE
2693 && step && breakpoint_inserted_here_p (aspace, pc))
2695 /* There are two cases where we currently need to step a
2696 breakpoint instruction when we have a signal to deliver:
2698 - See handle_signal_stop where we handle random signals that
2699 could take out us out of the stepping range. Normally, in
2700 that case we end up continuing (instead of stepping) over the
2701 signal handler with a breakpoint at PC, but there are cases
2702 where we should _always_ single-step, even if we have a
2703 step-resume breakpoint, like when a software watchpoint is
2704 set. Assuming single-stepping and delivering a signal at the
2705 same time would takes us to the signal handler, then we could
2706 have removed the breakpoint at PC to step over it. However,
2707 some hardware step targets (like e.g., Mac OS) can't step
2708 into signal handlers, and for those, we need to leave the
2709 breakpoint at PC inserted, as otherwise if the handler
2710 recurses and executes PC again, it'll miss the breakpoint.
2711 So we leave the breakpoint inserted anyway, but we need to
2712 record that we tried to step a breakpoint instruction, so
2713 that adjust_pc_after_break doesn't end up confused.
2715 - In non-stop if we insert a breakpoint (e.g., a step-resume)
2716 in one thread after another thread that was stepping had been
2717 momentarily paused for a step-over. When we re-resume the
2718 stepping thread, it may be resumed from that address with a
2719 breakpoint that hasn't trapped yet. Seen with
2720 gdb.threads/non-stop-fair-events.exp, on targets that don't
2721 do displaced stepping. */
2724 fprintf_unfiltered (gdb_stdlog,
2725 "infrun: resume: [%s] stepped breakpoint\n",
2726 target_pid_to_str (tp->ptid));
2728 tp->stepped_breakpoint = 1;
2730 /* Most targets can step a breakpoint instruction, thus
2731 executing it normally. But if this one cannot, just
2732 continue and we will hit it anyway. */
2733 if (gdbarch_cannot_step_breakpoint (gdbarch))
2738 && tp->control.trap_expected
2739 && use_displaced_stepping (tp)
2740 && !step_over_info_valid_p ())
2742 struct regcache *resume_regcache = get_thread_regcache (tp->ptid);
2743 struct gdbarch *resume_gdbarch = get_regcache_arch (resume_regcache);
2744 CORE_ADDR actual_pc = regcache_read_pc (resume_regcache);
2747 fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
2748 paddress (resume_gdbarch, actual_pc));
2749 read_memory (actual_pc, buf, sizeof (buf));
2750 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
2753 if (tp->control.may_range_step)
2755 /* If we're resuming a thread with the PC out of the step
2756 range, then we're doing some nested/finer run control
2757 operation, like stepping the thread out of the dynamic
2758 linker or the displaced stepping scratch pad. We
2759 shouldn't have allowed a range step then. */
2760 gdb_assert (pc_in_thread_step_range (pc, tp));
2763 do_target_resume (resume_ptid, step, sig);
2765 discard_cleanups (old_cleanups);
2772 /* Counter that tracks number of user visible stops. This can be used
2773 to tell whether a command has proceeded the inferior past the
2774 current location. This allows e.g., inferior function calls in
2775 breakpoint commands to not interrupt the command list. When the
2776 call finishes successfully, the inferior is standing at the same
2777 breakpoint as if nothing happened (and so we don't call
2779 static ULONGEST current_stop_id;
2786 return current_stop_id;
2789 /* Called when we report a user visible stop. */
2797 /* Clear out all variables saying what to do when inferior is continued.
2798 First do this, then set the ones you want, then call `proceed'. */
2801 clear_proceed_status_thread (struct thread_info *tp)
2804 fprintf_unfiltered (gdb_stdlog,
2805 "infrun: clear_proceed_status_thread (%s)\n",
2806 target_pid_to_str (tp->ptid));
2808 /* If we're starting a new sequence, then the previous finished
2809 single-step is no longer relevant. */
2810 if (tp->suspend.waitstatus_pending_p)
2812 if (tp->suspend.stop_reason == TARGET_STOPPED_BY_SINGLE_STEP)
2815 fprintf_unfiltered (gdb_stdlog,
2816 "infrun: clear_proceed_status: pending "
2817 "event of %s was a finished step. "
2819 target_pid_to_str (tp->ptid));
2821 tp->suspend.waitstatus_pending_p = 0;
2822 tp->suspend.stop_reason = TARGET_STOPPED_BY_NO_REASON;
2824 else if (debug_infrun)
2828 statstr = target_waitstatus_to_string (&tp->suspend.waitstatus);
2829 fprintf_unfiltered (gdb_stdlog,
2830 "infrun: clear_proceed_status_thread: thread %s "
2831 "has pending wait status %s "
2832 "(currently_stepping=%d).\n",
2833 target_pid_to_str (tp->ptid), statstr,
2834 currently_stepping (tp));
2839 /* If this signal should not be seen by program, give it zero.
2840 Used for debugging signals. */
2841 if (!signal_pass_state (tp->suspend.stop_signal))
2842 tp->suspend.stop_signal = GDB_SIGNAL_0;
2844 thread_fsm_delete (tp->thread_fsm);
2845 tp->thread_fsm = NULL;
2847 tp->control.trap_expected = 0;
2848 tp->control.step_range_start = 0;
2849 tp->control.step_range_end = 0;
2850 tp->control.may_range_step = 0;
2851 tp->control.step_frame_id = null_frame_id;
2852 tp->control.step_stack_frame_id = null_frame_id;
2853 tp->control.step_over_calls = STEP_OVER_UNDEBUGGABLE;
2854 tp->control.step_start_function = NULL;
2855 tp->stop_requested = 0;
2857 tp->control.stop_step = 0;
2859 tp->control.proceed_to_finish = 0;
2861 tp->control.stepping_command = 0;
2863 /* Discard any remaining commands or status from previous stop. */
2864 bpstat_clear (&tp->control.stop_bpstat);
2868 clear_proceed_status (int step)
2870 /* With scheduler-locking replay, stop replaying other threads if we're
2871 not replaying the user-visible resume ptid.
2873 This is a convenience feature to not require the user to explicitly
2874 stop replaying the other threads. We're assuming that the user's
2875 intent is to resume tracing the recorded process. */
2876 if (!non_stop && scheduler_mode == schedlock_replay
2877 && target_record_is_replaying (minus_one_ptid)
2878 && !target_record_will_replay (user_visible_resume_ptid (step),
2879 execution_direction))
2880 target_record_stop_replaying ();
2884 struct thread_info *tp;
2887 resume_ptid = user_visible_resume_ptid (step);
2889 /* In all-stop mode, delete the per-thread status of all threads
2890 we're about to resume, implicitly and explicitly. */
2891 ALL_NON_EXITED_THREADS (tp)
2893 if (!ptid_match (tp->ptid, resume_ptid))
2895 clear_proceed_status_thread (tp);
2899 if (!ptid_equal (inferior_ptid, null_ptid))
2901 struct inferior *inferior;
2905 /* If in non-stop mode, only delete the per-thread status of
2906 the current thread. */
2907 clear_proceed_status_thread (inferior_thread ());
2910 inferior = current_inferior ();
2911 inferior->control.stop_soon = NO_STOP_QUIETLY;
2914 observer_notify_about_to_proceed ();
2917 /* Returns true if TP is still stopped at a breakpoint that needs
2918 stepping-over in order to make progress. If the breakpoint is gone
2919 meanwhile, we can skip the whole step-over dance. */
2922 thread_still_needs_step_over_bp (struct thread_info *tp)
2924 if (tp->stepping_over_breakpoint)
2926 struct regcache *regcache = get_thread_regcache (tp->ptid);
2928 if (breakpoint_here_p (get_regcache_aspace (regcache),
2929 regcache_read_pc (regcache))
2930 == ordinary_breakpoint_here)
2933 tp->stepping_over_breakpoint = 0;
2939 /* Check whether thread TP still needs to start a step-over in order
2940 to make progress when resumed. Returns an bitwise or of enum
2941 step_over_what bits, indicating what needs to be stepped over. */
2943 static step_over_what
2944 thread_still_needs_step_over (struct thread_info *tp)
2946 step_over_what what = 0;
2948 if (thread_still_needs_step_over_bp (tp))
2949 what |= STEP_OVER_BREAKPOINT;
2951 if (tp->stepping_over_watchpoint
2952 && !target_have_steppable_watchpoint)
2953 what |= STEP_OVER_WATCHPOINT;
2958 /* Returns true if scheduler locking applies. STEP indicates whether
2959 we're about to do a step/next-like command to a thread. */
2962 schedlock_applies (struct thread_info *tp)
2964 return (scheduler_mode == schedlock_on
2965 || (scheduler_mode == schedlock_step
2966 && tp->control.stepping_command)
2967 || (scheduler_mode == schedlock_replay
2968 && target_record_will_replay (minus_one_ptid,
2969 execution_direction)));
2972 /* Basic routine for continuing the program in various fashions.
2974 ADDR is the address to resume at, or -1 for resume where stopped.
2975 SIGGNAL is the signal to give it, or 0 for none,
2976 or -1 for act according to how it stopped.
2977 STEP is nonzero if should trap after one instruction.
2978 -1 means return after that and print nothing.
2979 You should probably set various step_... variables
2980 before calling here, if you are stepping.
2982 You should call clear_proceed_status before calling proceed. */
2985 proceed (CORE_ADDR addr, enum gdb_signal siggnal)
2987 struct regcache *regcache;
2988 struct gdbarch *gdbarch;
2989 struct thread_info *tp;
2991 struct address_space *aspace;
2993 struct execution_control_state ecss;
2994 struct execution_control_state *ecs = &ecss;
2995 struct cleanup *old_chain;
2996 struct cleanup *defer_resume_cleanup;
2999 /* If we're stopped at a fork/vfork, follow the branch set by the
3000 "set follow-fork-mode" command; otherwise, we'll just proceed
3001 resuming the current thread. */
3002 if (!follow_fork ())
3004 /* The target for some reason decided not to resume. */
3006 if (target_can_async_p ())
3007 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
3011 /* We'll update this if & when we switch to a new thread. */
3012 previous_inferior_ptid = inferior_ptid;
3014 regcache = get_current_regcache ();
3015 gdbarch = get_regcache_arch (regcache);
3016 aspace = get_regcache_aspace (regcache);
3017 pc = regcache_read_pc (regcache);
3018 tp = inferior_thread ();
3020 /* Fill in with reasonable starting values. */
3021 init_thread_stepping_state (tp);
3023 gdb_assert (!thread_is_in_step_over_chain (tp));
3025 if (addr == (CORE_ADDR) -1)
3028 && breakpoint_here_p (aspace, pc) == ordinary_breakpoint_here
3029 && execution_direction != EXEC_REVERSE)
3030 /* There is a breakpoint at the address we will resume at,
3031 step one instruction before inserting breakpoints so that
3032 we do not stop right away (and report a second hit at this
3035 Note, we don't do this in reverse, because we won't
3036 actually be executing the breakpoint insn anyway.
3037 We'll be (un-)executing the previous instruction. */
3038 tp->stepping_over_breakpoint = 1;
3039 else if (gdbarch_single_step_through_delay_p (gdbarch)
3040 && gdbarch_single_step_through_delay (gdbarch,
3041 get_current_frame ()))
3042 /* We stepped onto an instruction that needs to be stepped
3043 again before re-inserting the breakpoint, do so. */
3044 tp->stepping_over_breakpoint = 1;
3048 regcache_write_pc (regcache, addr);
3051 if (siggnal != GDB_SIGNAL_DEFAULT)
3052 tp->suspend.stop_signal = siggnal;
3054 resume_ptid = user_visible_resume_ptid (tp->control.stepping_command);
3056 /* If an exception is thrown from this point on, make sure to
3057 propagate GDB's knowledge of the executing state to the
3058 frontend/user running state. */
3059 old_chain = make_cleanup (finish_thread_state_cleanup, &resume_ptid);
3061 /* Even if RESUME_PTID is a wildcard, and we end up resuming fewer
3062 threads (e.g., we might need to set threads stepping over
3063 breakpoints first), from the user/frontend's point of view, all
3064 threads in RESUME_PTID are now running. Unless we're calling an
3065 inferior function, as in that case we pretend the inferior
3066 doesn't run at all. */
3067 if (!tp->control.in_infcall)
3068 set_running (resume_ptid, 1);
3071 fprintf_unfiltered (gdb_stdlog,
3072 "infrun: proceed (addr=%s, signal=%s)\n",
3073 paddress (gdbarch, addr),
3074 gdb_signal_to_symbol_string (siggnal));
3076 annotate_starting ();
3078 /* Make sure that output from GDB appears before output from the
3080 gdb_flush (gdb_stdout);
3082 /* In a multi-threaded task we may select another thread and
3083 then continue or step.
3085 But if a thread that we're resuming had stopped at a breakpoint,
3086 it will immediately cause another breakpoint stop without any
3087 execution (i.e. it will report a breakpoint hit incorrectly). So
3088 we must step over it first.
3090 Look for threads other than the current (TP) that reported a
3091 breakpoint hit and haven't been resumed yet since. */
3093 /* If scheduler locking applies, we can avoid iterating over all
3095 if (!non_stop && !schedlock_applies (tp))
3097 struct thread_info *current = tp;
3099 ALL_NON_EXITED_THREADS (tp)
3101 /* Ignore the current thread here. It's handled
3106 /* Ignore threads of processes we're not resuming. */
3107 if (!ptid_match (tp->ptid, resume_ptid))
3110 if (!thread_still_needs_step_over (tp))
3113 gdb_assert (!thread_is_in_step_over_chain (tp));
3116 fprintf_unfiltered (gdb_stdlog,
3117 "infrun: need to step-over [%s] first\n",
3118 target_pid_to_str (tp->ptid));
3120 thread_step_over_chain_enqueue (tp);
3126 /* Enqueue the current thread last, so that we move all other
3127 threads over their breakpoints first. */
3128 if (tp->stepping_over_breakpoint)
3129 thread_step_over_chain_enqueue (tp);
3131 /* If the thread isn't started, we'll still need to set its prev_pc,
3132 so that switch_back_to_stepped_thread knows the thread hasn't
3133 advanced. Must do this before resuming any thread, as in
3134 all-stop/remote, once we resume we can't send any other packet
3135 until the target stops again. */
3136 tp->prev_pc = regcache_read_pc (regcache);
3138 defer_resume_cleanup = make_cleanup_defer_target_commit_resume ();
3140 started = start_step_over ();
3142 if (step_over_info_valid_p ())
3144 /* Either this thread started a new in-line step over, or some
3145 other thread was already doing one. In either case, don't
3146 resume anything else until the step-over is finished. */
3148 else if (started && !target_is_non_stop_p ())
3150 /* A new displaced stepping sequence was started. In all-stop,
3151 we can't talk to the target anymore until it next stops. */
3153 else if (!non_stop && target_is_non_stop_p ())
3155 /* In all-stop, but the target is always in non-stop mode.
3156 Start all other threads that are implicitly resumed too. */
3157 ALL_NON_EXITED_THREADS (tp)
3159 /* Ignore threads of processes we're not resuming. */
3160 if (!ptid_match (tp->ptid, resume_ptid))
3166 fprintf_unfiltered (gdb_stdlog,
3167 "infrun: proceed: [%s] resumed\n",
3168 target_pid_to_str (tp->ptid));
3169 gdb_assert (tp->executing || tp->suspend.waitstatus_pending_p);
3173 if (thread_is_in_step_over_chain (tp))
3176 fprintf_unfiltered (gdb_stdlog,
3177 "infrun: proceed: [%s] needs step-over\n",
3178 target_pid_to_str (tp->ptid));
3183 fprintf_unfiltered (gdb_stdlog,
3184 "infrun: proceed: resuming %s\n",
3185 target_pid_to_str (tp->ptid));
3187 reset_ecs (ecs, tp);
3188 switch_to_thread (tp->ptid);
3189 keep_going_pass_signal (ecs);
3190 if (!ecs->wait_some_more)
3191 error (_("Command aborted."));
3194 else if (!tp->resumed && !thread_is_in_step_over_chain (tp))
3196 /* The thread wasn't started, and isn't queued, run it now. */
3197 reset_ecs (ecs, tp);
3198 switch_to_thread (tp->ptid);
3199 keep_going_pass_signal (ecs);
3200 if (!ecs->wait_some_more)
3201 error (_("Command aborted."));
3204 do_cleanups (defer_resume_cleanup);
3205 target_commit_resume ();
3207 discard_cleanups (old_chain);
3209 /* Tell the event loop to wait for it to stop. If the target
3210 supports asynchronous execution, it'll do this from within
3212 if (!target_can_async_p ())
3213 mark_async_event_handler (infrun_async_inferior_event_token);
3217 /* Start remote-debugging of a machine over a serial link. */
3220 start_remote (int from_tty)
3222 struct inferior *inferior;
3224 inferior = current_inferior ();
3225 inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
3227 /* Always go on waiting for the target, regardless of the mode. */
3228 /* FIXME: cagney/1999-09-23: At present it isn't possible to
3229 indicate to wait_for_inferior that a target should timeout if
3230 nothing is returned (instead of just blocking). Because of this,
3231 targets expecting an immediate response need to, internally, set
3232 things up so that the target_wait() is forced to eventually
3234 /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
3235 differentiate to its caller what the state of the target is after
3236 the initial open has been performed. Here we're assuming that
3237 the target has stopped. It should be possible to eventually have
3238 target_open() return to the caller an indication that the target
3239 is currently running and GDB state should be set to the same as
3240 for an async run. */
3241 wait_for_inferior ();
3243 /* Now that the inferior has stopped, do any bookkeeping like
3244 loading shared libraries. We want to do this before normal_stop,
3245 so that the displayed frame is up to date. */
3246 post_create_inferior (¤t_target, from_tty);
3251 /* Initialize static vars when a new inferior begins. */
3254 init_wait_for_inferior (void)
3256 /* These are meaningless until the first time through wait_for_inferior. */
3258 breakpoint_init_inferior (inf_starting);
3260 clear_proceed_status (0);
3262 target_last_wait_ptid = minus_one_ptid;
3264 previous_inferior_ptid = inferior_ptid;
3266 /* Discard any skipped inlined frames. */
3267 clear_inline_frame_state (minus_one_ptid);
3272 static void handle_inferior_event (struct execution_control_state *ecs);
3274 static void handle_step_into_function (struct gdbarch *gdbarch,
3275 struct execution_control_state *ecs);
3276 static void handle_step_into_function_backward (struct gdbarch *gdbarch,
3277 struct execution_control_state *ecs);
3278 static void handle_signal_stop (struct execution_control_state *ecs);
3279 static void check_exception_resume (struct execution_control_state *,
3280 struct frame_info *);
3282 static void end_stepping_range (struct execution_control_state *ecs);
3283 static void stop_waiting (struct execution_control_state *ecs);
3284 static void keep_going (struct execution_control_state *ecs);
3285 static void process_event_stop_test (struct execution_control_state *ecs);
3286 static int switch_back_to_stepped_thread (struct execution_control_state *ecs);
3288 /* This function is attached as a "thread_stop_requested" observer.
3289 Cleanup local state that assumed the PTID was to be resumed, and
3290 report the stop to the frontend. */
3293 infrun_thread_stop_requested (ptid_t ptid)
3295 struct thread_info *tp;
3297 /* PTID was requested to stop. If the thread was already stopped,
3298 but the user/frontend doesn't know about that yet (e.g., the
3299 thread had been temporarily paused for some step-over), set up
3300 for reporting the stop now. */
3301 ALL_NON_EXITED_THREADS (tp)
3302 if (ptid_match (tp->ptid, ptid))
3304 if (tp->state != THREAD_RUNNING)
3309 /* Remove matching threads from the step-over queue, so
3310 start_step_over doesn't try to resume them
3312 if (thread_is_in_step_over_chain (tp))
3313 thread_step_over_chain_remove (tp);
3315 /* If the thread is stopped, but the user/frontend doesn't
3316 know about that yet, queue a pending event, as if the
3317 thread had just stopped now. Unless the thread already had
3319 if (!tp->suspend.waitstatus_pending_p)
3321 tp->suspend.waitstatus_pending_p = 1;
3322 tp->suspend.waitstatus.kind = TARGET_WAITKIND_STOPPED;
3323 tp->suspend.waitstatus.value.sig = GDB_SIGNAL_0;
3326 /* Clear the inline-frame state, since we're re-processing the
3328 clear_inline_frame_state (tp->ptid);
3330 /* If this thread was paused because some other thread was
3331 doing an inline-step over, let that finish first. Once
3332 that happens, we'll restart all threads and consume pending
3333 stop events then. */
3334 if (step_over_info_valid_p ())
3337 /* Otherwise we can process the (new) pending event now. Set
3338 it so this pending event is considered by
3345 infrun_thread_thread_exit (struct thread_info *tp, int silent)
3347 if (ptid_equal (target_last_wait_ptid, tp->ptid))
3348 nullify_last_target_wait_ptid ();
3351 /* Delete the step resume, single-step and longjmp/exception resume
3352 breakpoints of TP. */
3355 delete_thread_infrun_breakpoints (struct thread_info *tp)
3357 delete_step_resume_breakpoint (tp);
3358 delete_exception_resume_breakpoint (tp);
3359 delete_single_step_breakpoints (tp);
3362 /* If the target still has execution, call FUNC for each thread that
3363 just stopped. In all-stop, that's all the non-exited threads; in
3364 non-stop, that's the current thread, only. */
3366 typedef void (*for_each_just_stopped_thread_callback_func)
3367 (struct thread_info *tp);
3370 for_each_just_stopped_thread (for_each_just_stopped_thread_callback_func func)
3372 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
3375 if (target_is_non_stop_p ())
3377 /* If in non-stop mode, only the current thread stopped. */
3378 func (inferior_thread ());
3382 struct thread_info *tp;
3384 /* In all-stop mode, all threads have stopped. */
3385 ALL_NON_EXITED_THREADS (tp)
3392 /* Delete the step resume and longjmp/exception resume breakpoints of
3393 the threads that just stopped. */
3396 delete_just_stopped_threads_infrun_breakpoints (void)
3398 for_each_just_stopped_thread (delete_thread_infrun_breakpoints);
3401 /* Delete the single-step breakpoints of the threads that just
3405 delete_just_stopped_threads_single_step_breakpoints (void)
3407 for_each_just_stopped_thread (delete_single_step_breakpoints);
3410 /* A cleanup wrapper. */
3413 delete_just_stopped_threads_infrun_breakpoints_cleanup (void *arg)
3415 delete_just_stopped_threads_infrun_breakpoints ();
3421 print_target_wait_results (ptid_t waiton_ptid, ptid_t result_ptid,
3422 const struct target_waitstatus *ws)
3424 char *status_string = target_waitstatus_to_string (ws);
3427 /* The text is split over several lines because it was getting too long.
3428 Call fprintf_unfiltered (gdb_stdlog) once so that the text is still
3429 output as a unit; we want only one timestamp printed if debug_timestamp
3432 stb.printf ("infrun: target_wait (%d.%ld.%ld",
3433 ptid_get_pid (waiton_ptid),
3434 ptid_get_lwp (waiton_ptid),
3435 ptid_get_tid (waiton_ptid));
3436 if (ptid_get_pid (waiton_ptid) != -1)
3437 stb.printf (" [%s]", target_pid_to_str (waiton_ptid));
3438 stb.printf (", status) =\n");
3439 stb.printf ("infrun: %d.%ld.%ld [%s],\n",
3440 ptid_get_pid (result_ptid),
3441 ptid_get_lwp (result_ptid),
3442 ptid_get_tid (result_ptid),
3443 target_pid_to_str (result_ptid));
3444 stb.printf ("infrun: %s\n", status_string);
3446 /* This uses %s in part to handle %'s in the text, but also to avoid
3447 a gcc error: the format attribute requires a string literal. */
3448 fprintf_unfiltered (gdb_stdlog, "%s", stb.c_str ());
3450 xfree (status_string);
3453 /* Select a thread at random, out of those which are resumed and have
3456 static struct thread_info *
3457 random_pending_event_thread (ptid_t waiton_ptid)
3459 struct thread_info *event_tp;
3461 int random_selector;
3463 /* First see how many events we have. Count only resumed threads
3464 that have an event pending. */
3465 ALL_NON_EXITED_THREADS (event_tp)
3466 if (ptid_match (event_tp->ptid, waiton_ptid)
3467 && event_tp->resumed
3468 && event_tp->suspend.waitstatus_pending_p)
3471 if (num_events == 0)
3474 /* Now randomly pick a thread out of those that have had events. */
3475 random_selector = (int)
3476 ((num_events * (double) rand ()) / (RAND_MAX + 1.0));
3478 if (debug_infrun && num_events > 1)
3479 fprintf_unfiltered (gdb_stdlog,
3480 "infrun: Found %d events, selecting #%d\n",
3481 num_events, random_selector);
3483 /* Select the Nth thread that has had an event. */
3484 ALL_NON_EXITED_THREADS (event_tp)
3485 if (ptid_match (event_tp->ptid, waiton_ptid)
3486 && event_tp->resumed
3487 && event_tp->suspend.waitstatus_pending_p)
3488 if (random_selector-- == 0)
3494 /* Wrapper for target_wait that first checks whether threads have
3495 pending statuses to report before actually asking the target for
3499 do_target_wait (ptid_t ptid, struct target_waitstatus *status, int options)
3502 struct thread_info *tp;
3504 /* First check if there is a resumed thread with a wait status
3506 if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
3508 tp = random_pending_event_thread (ptid);
3513 fprintf_unfiltered (gdb_stdlog,
3514 "infrun: Waiting for specific thread %s.\n",
3515 target_pid_to_str (ptid));
3517 /* We have a specific thread to check. */
3518 tp = find_thread_ptid (ptid);
3519 gdb_assert (tp != NULL);
3520 if (!tp->suspend.waitstatus_pending_p)
3525 && (tp->suspend.stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT
3526 || tp->suspend.stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT))
3528 struct regcache *regcache = get_thread_regcache (tp->ptid);
3529 struct gdbarch *gdbarch = get_regcache_arch (regcache);
3533 pc = regcache_read_pc (regcache);
3535 if (pc != tp->suspend.stop_pc)
3538 fprintf_unfiltered (gdb_stdlog,
3539 "infrun: PC of %s changed. was=%s, now=%s\n",
3540 target_pid_to_str (tp->ptid),
3541 paddress (gdbarch, tp->prev_pc),
3542 paddress (gdbarch, pc));
3545 else if (!breakpoint_inserted_here_p (get_regcache_aspace (regcache), pc))
3548 fprintf_unfiltered (gdb_stdlog,
3549 "infrun: previous breakpoint of %s, at %s gone\n",
3550 target_pid_to_str (tp->ptid),
3551 paddress (gdbarch, pc));
3559 fprintf_unfiltered (gdb_stdlog,
3560 "infrun: pending event of %s cancelled.\n",
3561 target_pid_to_str (tp->ptid));
3563 tp->suspend.waitstatus.kind = TARGET_WAITKIND_SPURIOUS;
3564 tp->suspend.stop_reason = TARGET_STOPPED_BY_NO_REASON;
3574 statstr = target_waitstatus_to_string (&tp->suspend.waitstatus);
3575 fprintf_unfiltered (gdb_stdlog,
3576 "infrun: Using pending wait status %s for %s.\n",
3578 target_pid_to_str (tp->ptid));
3582 /* Now that we've selected our final event LWP, un-adjust its PC
3583 if it was a software breakpoint (and the target doesn't
3584 always adjust the PC itself). */
3585 if (tp->suspend.stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT
3586 && !target_supports_stopped_by_sw_breakpoint ())
3588 struct regcache *regcache;
3589 struct gdbarch *gdbarch;
3592 regcache = get_thread_regcache (tp->ptid);
3593 gdbarch = get_regcache_arch (regcache);
3595 decr_pc = gdbarch_decr_pc_after_break (gdbarch);
3600 pc = regcache_read_pc (regcache);
3601 regcache_write_pc (regcache, pc + decr_pc);
3605 tp->suspend.stop_reason = TARGET_STOPPED_BY_NO_REASON;
3606 *status = tp->suspend.waitstatus;
3607 tp->suspend.waitstatus_pending_p = 0;
3609 /* Wake up the event loop again, until all pending events are
3611 if (target_is_async_p ())
3612 mark_async_event_handler (infrun_async_inferior_event_token);
3616 /* But if we don't find one, we'll have to wait. */
3618 if (deprecated_target_wait_hook)
3619 event_ptid = deprecated_target_wait_hook (ptid, status, options);
3621 event_ptid = target_wait (ptid, status, options);
3626 /* Prepare and stabilize the inferior for detaching it. E.g.,
3627 detaching while a thread is displaced stepping is a recipe for
3628 crashing it, as nothing would readjust the PC out of the scratch
3632 prepare_for_detach (void)
3634 struct inferior *inf = current_inferior ();
3635 ptid_t pid_ptid = pid_to_ptid (inf->pid);
3636 struct displaced_step_inferior_state *displaced;
3638 displaced = get_displaced_stepping_state (inf->pid);
3640 /* Is any thread of this process displaced stepping? If not,
3641 there's nothing else to do. */
3642 if (displaced == NULL || ptid_equal (displaced->step_ptid, null_ptid))
3646 fprintf_unfiltered (gdb_stdlog,
3647 "displaced-stepping in-process while detaching");
3649 scoped_restore restore_detaching = make_scoped_restore (&inf->detaching, true);
3651 while (!ptid_equal (displaced->step_ptid, null_ptid))
3653 struct cleanup *old_chain_2;
3654 struct execution_control_state ecss;
3655 struct execution_control_state *ecs;
3658 memset (ecs, 0, sizeof (*ecs));
3660 overlay_cache_invalid = 1;
3661 /* Flush target cache before starting to handle each event.
3662 Target was running and cache could be stale. This is just a
3663 heuristic. Running threads may modify target memory, but we
3664 don't get any event. */
3665 target_dcache_invalidate ();
3667 ecs->ptid = do_target_wait (pid_ptid, &ecs->ws, 0);
3670 print_target_wait_results (pid_ptid, ecs->ptid, &ecs->ws);
3672 /* If an error happens while handling the event, propagate GDB's
3673 knowledge of the executing state to the frontend/user running
3675 old_chain_2 = make_cleanup (finish_thread_state_cleanup,
3678 /* Now figure out what to do with the result of the result. */
3679 handle_inferior_event (ecs);
3681 /* No error, don't finish the state yet. */
3682 discard_cleanups (old_chain_2);
3684 /* Breakpoints and watchpoints are not installed on the target
3685 at this point, and signals are passed directly to the
3686 inferior, so this must mean the process is gone. */
3687 if (!ecs->wait_some_more)
3689 restore_detaching.release ();
3690 error (_("Program exited while detaching"));
3694 restore_detaching.release ();
3697 /* Wait for control to return from inferior to debugger.
3699 If inferior gets a signal, we may decide to start it up again
3700 instead of returning. That is why there is a loop in this function.
3701 When this function actually returns it means the inferior
3702 should be left stopped and GDB should read more commands. */
3705 wait_for_inferior (void)
3707 struct cleanup *old_cleanups;
3708 struct cleanup *thread_state_chain;
3712 (gdb_stdlog, "infrun: wait_for_inferior ()\n");
3715 = make_cleanup (delete_just_stopped_threads_infrun_breakpoints_cleanup,
3718 /* If an error happens while handling the event, propagate GDB's
3719 knowledge of the executing state to the frontend/user running
3721 thread_state_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
3725 struct execution_control_state ecss;
3726 struct execution_control_state *ecs = &ecss;
3727 ptid_t waiton_ptid = minus_one_ptid;
3729 memset (ecs, 0, sizeof (*ecs));
3731 overlay_cache_invalid = 1;
3733 /* Flush target cache before starting to handle each event.
3734 Target was running and cache could be stale. This is just a
3735 heuristic. Running threads may modify target memory, but we
3736 don't get any event. */
3737 target_dcache_invalidate ();
3739 ecs->ptid = do_target_wait (waiton_ptid, &ecs->ws, 0);
3742 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
3744 /* Now figure out what to do with the result of the result. */
3745 handle_inferior_event (ecs);
3747 if (!ecs->wait_some_more)
3751 /* No error, don't finish the state yet. */
3752 discard_cleanups (thread_state_chain);
3754 do_cleanups (old_cleanups);
3757 /* Cleanup that reinstalls the readline callback handler, if the
3758 target is running in the background. If while handling the target
3759 event something triggered a secondary prompt, like e.g., a
3760 pagination prompt, we'll have removed the callback handler (see
3761 gdb_readline_wrapper_line). Need to do this as we go back to the
3762 event loop, ready to process further input. Note this has no
3763 effect if the handler hasn't actually been removed, because calling
3764 rl_callback_handler_install resets the line buffer, thus losing
3768 reinstall_readline_callback_handler_cleanup (void *arg)
3770 struct ui *ui = current_ui;
3774 /* We're not going back to the top level event loop yet. Don't
3775 install the readline callback, as it'd prep the terminal,
3776 readline-style (raw, noecho) (e.g., --batch). We'll install
3777 it the next time the prompt is displayed, when we're ready
3782 if (ui->command_editing && ui->prompt_state != PROMPT_BLOCKED)
3783 gdb_rl_callback_handler_reinstall ();
3786 /* Clean up the FSMs of threads that are now stopped. In non-stop,
3787 that's just the event thread. In all-stop, that's all threads. */
3790 clean_up_just_stopped_threads_fsms (struct execution_control_state *ecs)
3792 struct thread_info *thr = ecs->event_thread;
3794 if (thr != NULL && thr->thread_fsm != NULL)
3795 thread_fsm_clean_up (thr->thread_fsm, thr);
3799 ALL_NON_EXITED_THREADS (thr)
3801 if (thr->thread_fsm == NULL)
3803 if (thr == ecs->event_thread)
3806 switch_to_thread (thr->ptid);
3807 thread_fsm_clean_up (thr->thread_fsm, thr);
3810 if (ecs->event_thread != NULL)
3811 switch_to_thread (ecs->event_thread->ptid);
3815 /* Helper for all_uis_check_sync_execution_done that works on the
3819 check_curr_ui_sync_execution_done (void)
3821 struct ui *ui = current_ui;
3823 if (ui->prompt_state == PROMPT_NEEDED
3825 && !gdb_in_secondary_prompt_p (ui))
3827 target_terminal_ours ();
3828 observer_notify_sync_execution_done ();
3829 ui_register_input_event_handler (ui);
3836 all_uis_check_sync_execution_done (void)
3838 SWITCH_THRU_ALL_UIS ()
3840 check_curr_ui_sync_execution_done ();
3847 all_uis_on_sync_execution_starting (void)
3849 SWITCH_THRU_ALL_UIS ()
3851 if (current_ui->prompt_state == PROMPT_NEEDED)
3852 async_disable_stdin ();
3856 /* Asynchronous version of wait_for_inferior. It is called by the
3857 event loop whenever a change of state is detected on the file
3858 descriptor corresponding to the target. It can be called more than
3859 once to complete a single execution command. In such cases we need
3860 to keep the state in a global variable ECSS. If it is the last time
3861 that this function is called for a single execution command, then
3862 report to the user that the inferior has stopped, and do the
3863 necessary cleanups. */
3866 fetch_inferior_event (void *client_data)
3868 struct execution_control_state ecss;
3869 struct execution_control_state *ecs = &ecss;
3870 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
3871 struct cleanup *ts_old_chain;
3873 ptid_t waiton_ptid = minus_one_ptid;
3875 memset (ecs, 0, sizeof (*ecs));
3877 /* Events are always processed with the main UI as current UI. This
3878 way, warnings, debug output, etc. are always consistently sent to
3879 the main console. */
3880 scoped_restore save_ui = make_scoped_restore (¤t_ui, main_ui);
3882 /* End up with readline processing input, if necessary. */
3883 make_cleanup (reinstall_readline_callback_handler_cleanup, NULL);
3885 /* We're handling a live event, so make sure we're doing live
3886 debugging. If we're looking at traceframes while the target is
3887 running, we're going to need to get back to that mode after
3888 handling the event. */
3891 make_cleanup_restore_current_traceframe ();
3892 set_current_traceframe (-1);
3895 gdb::optional<scoped_restore_current_thread> maybe_restore_thread;
3898 /* In non-stop mode, the user/frontend should not notice a thread
3899 switch due to internal events. Make sure we reverse to the
3900 user selected thread and frame after handling the event and
3901 running any breakpoint commands. */
3902 maybe_restore_thread.emplace ();
3904 overlay_cache_invalid = 1;
3905 /* Flush target cache before starting to handle each event. Target
3906 was running and cache could be stale. This is just a heuristic.
3907 Running threads may modify target memory, but we don't get any
3909 target_dcache_invalidate ();
3911 scoped_restore save_exec_dir
3912 = make_scoped_restore (&execution_direction, target_execution_direction ());
3914 ecs->ptid = do_target_wait (waiton_ptid, &ecs->ws,
3915 target_can_async_p () ? TARGET_WNOHANG : 0);
3918 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
3920 /* If an error happens while handling the event, propagate GDB's
3921 knowledge of the executing state to the frontend/user running
3923 if (!target_is_non_stop_p ())
3924 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
3926 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &ecs->ptid);
3928 /* Get executed before make_cleanup_restore_current_thread above to apply
3929 still for the thread which has thrown the exception. */
3930 make_bpstat_clear_actions_cleanup ();
3932 make_cleanup (delete_just_stopped_threads_infrun_breakpoints_cleanup, NULL);
3934 /* Now figure out what to do with the result of the result. */
3935 handle_inferior_event (ecs);
3937 if (!ecs->wait_some_more)
3939 struct inferior *inf = find_inferior_ptid (ecs->ptid);
3940 int should_stop = 1;
3941 struct thread_info *thr = ecs->event_thread;
3942 int should_notify_stop = 1;
3944 delete_just_stopped_threads_infrun_breakpoints ();
3948 struct thread_fsm *thread_fsm = thr->thread_fsm;
3950 if (thread_fsm != NULL)
3951 should_stop = thread_fsm_should_stop (thread_fsm, thr);
3960 clean_up_just_stopped_threads_fsms (ecs);
3962 if (thr != NULL && thr->thread_fsm != NULL)
3965 = thread_fsm_should_notify_stop (thr->thread_fsm);
3968 if (should_notify_stop)
3972 /* We may not find an inferior if this was a process exit. */
3973 if (inf == NULL || inf->control.stop_soon == NO_STOP_QUIETLY)
3974 proceeded = normal_stop ();
3978 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
3985 /* No error, don't finish the thread states yet. */
3986 discard_cleanups (ts_old_chain);
3988 /* Revert thread and frame. */
3989 do_cleanups (old_chain);
3991 /* If a UI was in sync execution mode, and now isn't, restore its
3992 prompt (a synchronous execution command has finished, and we're
3993 ready for input). */
3994 all_uis_check_sync_execution_done ();
3997 && exec_done_display_p
3998 && (ptid_equal (inferior_ptid, null_ptid)
3999 || !is_running (inferior_ptid)))
4000 printf_unfiltered (_("completed.\n"));
4003 /* Record the frame and location we're currently stepping through. */
4005 set_step_info (struct frame_info *frame, struct symtab_and_line sal)
4007 struct thread_info *tp = inferior_thread ();
4009 tp->control.step_frame_id = get_frame_id (frame);
4010 tp->control.step_stack_frame_id = get_stack_frame_id (frame);
4012 tp->current_symtab = sal.symtab;
4013 tp->current_line = sal.line;
4016 /* Clear context switchable stepping state. */
4019 init_thread_stepping_state (struct thread_info *tss)
4021 tss->stepped_breakpoint = 0;
4022 tss->stepping_over_breakpoint = 0;
4023 tss->stepping_over_watchpoint = 0;
4024 tss->step_after_step_resume_breakpoint = 0;
4027 /* Set the cached copy of the last ptid/waitstatus. */
4030 set_last_target_status (ptid_t ptid, struct target_waitstatus status)
4032 target_last_wait_ptid = ptid;
4033 target_last_waitstatus = status;
4036 /* Return the cached copy of the last pid/waitstatus returned by
4037 target_wait()/deprecated_target_wait_hook(). The data is actually
4038 cached by handle_inferior_event(), which gets called immediately
4039 after target_wait()/deprecated_target_wait_hook(). */
4042 get_last_target_status (ptid_t *ptidp, struct target_waitstatus *status)
4044 *ptidp = target_last_wait_ptid;
4045 *status = target_last_waitstatus;
4049 nullify_last_target_wait_ptid (void)
4051 target_last_wait_ptid = minus_one_ptid;
4054 /* Switch thread contexts. */
4057 context_switch (ptid_t ptid)
4059 if (debug_infrun && !ptid_equal (ptid, inferior_ptid))
4061 fprintf_unfiltered (gdb_stdlog, "infrun: Switching context from %s ",
4062 target_pid_to_str (inferior_ptid));
4063 fprintf_unfiltered (gdb_stdlog, "to %s\n",
4064 target_pid_to_str (ptid));
4067 switch_to_thread (ptid);
4070 /* If the target can't tell whether we've hit breakpoints
4071 (target_supports_stopped_by_sw_breakpoint), and we got a SIGTRAP,
4072 check whether that could have been caused by a breakpoint. If so,
4073 adjust the PC, per gdbarch_decr_pc_after_break. */
4076 adjust_pc_after_break (struct thread_info *thread,
4077 struct target_waitstatus *ws)
4079 struct regcache *regcache;
4080 struct gdbarch *gdbarch;
4081 struct address_space *aspace;
4082 CORE_ADDR breakpoint_pc, decr_pc;
4084 /* If we've hit a breakpoint, we'll normally be stopped with SIGTRAP. If
4085 we aren't, just return.
4087 We assume that waitkinds other than TARGET_WAITKIND_STOPPED are not
4088 affected by gdbarch_decr_pc_after_break. Other waitkinds which are
4089 implemented by software breakpoints should be handled through the normal
4092 NOTE drow/2004-01-31: On some targets, breakpoints may generate
4093 different signals (SIGILL or SIGEMT for instance), but it is less
4094 clear where the PC is pointing afterwards. It may not match
4095 gdbarch_decr_pc_after_break. I don't know any specific target that
4096 generates these signals at breakpoints (the code has been in GDB since at
4097 least 1992) so I can not guess how to handle them here.
4099 In earlier versions of GDB, a target with
4100 gdbarch_have_nonsteppable_watchpoint would have the PC after hitting a
4101 watchpoint affected by gdbarch_decr_pc_after_break. I haven't found any
4102 target with both of these set in GDB history, and it seems unlikely to be
4103 correct, so gdbarch_have_nonsteppable_watchpoint is not checked here. */
4105 if (ws->kind != TARGET_WAITKIND_STOPPED)
4108 if (ws->value.sig != GDB_SIGNAL_TRAP)
4111 /* In reverse execution, when a breakpoint is hit, the instruction
4112 under it has already been de-executed. The reported PC always
4113 points at the breakpoint address, so adjusting it further would
4114 be wrong. E.g., consider this case on a decr_pc_after_break == 1
4117 B1 0x08000000 : INSN1
4118 B2 0x08000001 : INSN2
4120 PC -> 0x08000003 : INSN4
4122 Say you're stopped at 0x08000003 as above. Reverse continuing
4123 from that point should hit B2 as below. Reading the PC when the
4124 SIGTRAP is reported should read 0x08000001 and INSN2 should have
4125 been de-executed already.
4127 B1 0x08000000 : INSN1
4128 B2 PC -> 0x08000001 : INSN2
4132 We can't apply the same logic as for forward execution, because
4133 we would wrongly adjust the PC to 0x08000000, since there's a
4134 breakpoint at PC - 1. We'd then report a hit on B1, although
4135 INSN1 hadn't been de-executed yet. Doing nothing is the correct
4137 if (execution_direction == EXEC_REVERSE)
4140 /* If the target can tell whether the thread hit a SW breakpoint,
4141 trust it. Targets that can tell also adjust the PC
4143 if (target_supports_stopped_by_sw_breakpoint ())
4146 /* Note that relying on whether a breakpoint is planted in memory to
4147 determine this can fail. E.g,. the breakpoint could have been
4148 removed since. Or the thread could have been told to step an
4149 instruction the size of a breakpoint instruction, and only
4150 _after_ was a breakpoint inserted at its address. */
4152 /* If this target does not decrement the PC after breakpoints, then
4153 we have nothing to do. */
4154 regcache = get_thread_regcache (thread->ptid);
4155 gdbarch = get_regcache_arch (regcache);
4157 decr_pc = gdbarch_decr_pc_after_break (gdbarch);
4161 aspace = get_regcache_aspace (regcache);
4163 /* Find the location where (if we've hit a breakpoint) the
4164 breakpoint would be. */
4165 breakpoint_pc = regcache_read_pc (regcache) - decr_pc;
4167 /* If the target can't tell whether a software breakpoint triggered,
4168 fallback to figuring it out based on breakpoints we think were
4169 inserted in the target, and on whether the thread was stepped or
4172 /* Check whether there actually is a software breakpoint inserted at
4175 If in non-stop mode, a race condition is possible where we've
4176 removed a breakpoint, but stop events for that breakpoint were
4177 already queued and arrive later. To suppress those spurious
4178 SIGTRAPs, we keep a list of such breakpoint locations for a bit,
4179 and retire them after a number of stop events are reported. Note
4180 this is an heuristic and can thus get confused. The real fix is
4181 to get the "stopped by SW BP and needs adjustment" info out of
4182 the target/kernel (and thus never reach here; see above). */
4183 if (software_breakpoint_inserted_here_p (aspace, breakpoint_pc)
4184 || (target_is_non_stop_p ()
4185 && moribund_breakpoint_here_p (aspace, breakpoint_pc)))
4187 struct cleanup *old_cleanups = make_cleanup (null_cleanup, NULL);
4189 if (record_full_is_used ())
4190 record_full_gdb_operation_disable_set ();
4192 /* When using hardware single-step, a SIGTRAP is reported for both
4193 a completed single-step and a software breakpoint. Need to
4194 differentiate between the two, as the latter needs adjusting
4195 but the former does not.
4197 The SIGTRAP can be due to a completed hardware single-step only if
4198 - we didn't insert software single-step breakpoints
4199 - this thread is currently being stepped
4201 If any of these events did not occur, we must have stopped due
4202 to hitting a software breakpoint, and have to back up to the
4205 As a special case, we could have hardware single-stepped a
4206 software breakpoint. In this case (prev_pc == breakpoint_pc),
4207 we also need to back up to the breakpoint address. */
4209 if (thread_has_single_step_breakpoints_set (thread)
4210 || !currently_stepping (thread)
4211 || (thread->stepped_breakpoint
4212 && thread->prev_pc == breakpoint_pc))
4213 regcache_write_pc (regcache, breakpoint_pc);
4215 do_cleanups (old_cleanups);
4220 stepped_in_from (struct frame_info *frame, struct frame_id step_frame_id)
4222 for (frame = get_prev_frame (frame);
4224 frame = get_prev_frame (frame))
4226 if (frame_id_eq (get_frame_id (frame), step_frame_id))
4228 if (get_frame_type (frame) != INLINE_FRAME)
4235 /* If the event thread has the stop requested flag set, pretend it
4236 stopped for a GDB_SIGNAL_0 (i.e., as if it stopped due to
4240 handle_stop_requested (struct execution_control_state *ecs)
4242 if (ecs->event_thread->stop_requested)
4244 ecs->ws.kind = TARGET_WAITKIND_STOPPED;
4245 ecs->ws.value.sig = GDB_SIGNAL_0;
4246 handle_signal_stop (ecs);
4252 /* Auxiliary function that handles syscall entry/return events.
4253 It returns 1 if the inferior should keep going (and GDB
4254 should ignore the event), or 0 if the event deserves to be
4258 handle_syscall_event (struct execution_control_state *ecs)
4260 struct regcache *regcache;
4263 if (!ptid_equal (ecs->ptid, inferior_ptid))
4264 context_switch (ecs->ptid);
4266 regcache = get_thread_regcache (ecs->ptid);
4267 syscall_number = ecs->ws.value.syscall_number;
4268 stop_pc = regcache_read_pc (regcache);
4270 if (catch_syscall_enabled () > 0
4271 && catching_syscall_number (syscall_number) > 0)
4274 fprintf_unfiltered (gdb_stdlog, "infrun: syscall number = '%d'\n",
4277 ecs->event_thread->control.stop_bpstat
4278 = bpstat_stop_status (get_regcache_aspace (regcache),
4279 stop_pc, ecs->ptid, &ecs->ws);
4281 if (handle_stop_requested (ecs))
4284 if (bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
4286 /* Catchpoint hit. */
4291 if (handle_stop_requested (ecs))
4294 /* If no catchpoint triggered for this, then keep going. */
4299 /* Lazily fill in the execution_control_state's stop_func_* fields. */
4302 fill_in_stop_func (struct gdbarch *gdbarch,
4303 struct execution_control_state *ecs)
4305 if (!ecs->stop_func_filled_in)
4307 /* Don't care about return value; stop_func_start and stop_func_name
4308 will both be 0 if it doesn't work. */
4309 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
4310 &ecs->stop_func_start, &ecs->stop_func_end);
4311 ecs->stop_func_start
4312 += gdbarch_deprecated_function_start_offset (gdbarch);
4314 if (gdbarch_skip_entrypoint_p (gdbarch))
4315 ecs->stop_func_start = gdbarch_skip_entrypoint (gdbarch,
4316 ecs->stop_func_start);
4318 ecs->stop_func_filled_in = 1;
4323 /* Return the STOP_SOON field of the inferior pointed at by PTID. */
4325 static enum stop_kind
4326 get_inferior_stop_soon (ptid_t ptid)
4328 struct inferior *inf = find_inferior_ptid (ptid);
4330 gdb_assert (inf != NULL);
4331 return inf->control.stop_soon;
4334 /* Wait for one event. Store the resulting waitstatus in WS, and
4335 return the event ptid. */
4338 wait_one (struct target_waitstatus *ws)
4341 ptid_t wait_ptid = minus_one_ptid;
4343 overlay_cache_invalid = 1;
4345 /* Flush target cache before starting to handle each event.
4346 Target was running and cache could be stale. This is just a
4347 heuristic. Running threads may modify target memory, but we
4348 don't get any event. */
4349 target_dcache_invalidate ();
4351 if (deprecated_target_wait_hook)
4352 event_ptid = deprecated_target_wait_hook (wait_ptid, ws, 0);
4354 event_ptid = target_wait (wait_ptid, ws, 0);
4357 print_target_wait_results (wait_ptid, event_ptid, ws);
4362 /* Generate a wrapper for target_stopped_by_REASON that works on PTID
4363 instead of the current thread. */
4364 #define THREAD_STOPPED_BY(REASON) \
4366 thread_stopped_by_ ## REASON (ptid_t ptid) \
4368 struct cleanup *old_chain; \
4371 old_chain = save_inferior_ptid (); \
4372 inferior_ptid = ptid; \
4374 res = target_stopped_by_ ## REASON (); \
4376 do_cleanups (old_chain); \
4381 /* Generate thread_stopped_by_watchpoint. */
4382 THREAD_STOPPED_BY (watchpoint)
4383 /* Generate thread_stopped_by_sw_breakpoint. */
4384 THREAD_STOPPED_BY (sw_breakpoint)
4385 /* Generate thread_stopped_by_hw_breakpoint. */
4386 THREAD_STOPPED_BY (hw_breakpoint)
4388 /* Cleanups that switches to the PTID pointed at by PTID_P. */
4391 switch_to_thread_cleanup (void *ptid_p)
4393 ptid_t ptid = *(ptid_t *) ptid_p;
4395 switch_to_thread (ptid);
4398 /* Save the thread's event and stop reason to process it later. */
4401 save_waitstatus (struct thread_info *tp, struct target_waitstatus *ws)
4403 struct regcache *regcache;
4404 struct address_space *aspace;
4410 statstr = target_waitstatus_to_string (ws);
4411 fprintf_unfiltered (gdb_stdlog,
4412 "infrun: saving status %s for %d.%ld.%ld\n",
4414 ptid_get_pid (tp->ptid),
4415 ptid_get_lwp (tp->ptid),
4416 ptid_get_tid (tp->ptid));
4420 /* Record for later. */
4421 tp->suspend.waitstatus = *ws;
4422 tp->suspend.waitstatus_pending_p = 1;
4424 regcache = get_thread_regcache (tp->ptid);
4425 aspace = get_regcache_aspace (regcache);
4427 if (ws->kind == TARGET_WAITKIND_STOPPED
4428 && ws->value.sig == GDB_SIGNAL_TRAP)
4430 CORE_ADDR pc = regcache_read_pc (regcache);
4432 adjust_pc_after_break (tp, &tp->suspend.waitstatus);
4434 if (thread_stopped_by_watchpoint (tp->ptid))
4436 tp->suspend.stop_reason
4437 = TARGET_STOPPED_BY_WATCHPOINT;
4439 else if (target_supports_stopped_by_sw_breakpoint ()
4440 && thread_stopped_by_sw_breakpoint (tp->ptid))
4442 tp->suspend.stop_reason
4443 = TARGET_STOPPED_BY_SW_BREAKPOINT;
4445 else if (target_supports_stopped_by_hw_breakpoint ()
4446 && thread_stopped_by_hw_breakpoint (tp->ptid))
4448 tp->suspend.stop_reason
4449 = TARGET_STOPPED_BY_HW_BREAKPOINT;
4451 else if (!target_supports_stopped_by_hw_breakpoint ()
4452 && hardware_breakpoint_inserted_here_p (aspace,
4455 tp->suspend.stop_reason
4456 = TARGET_STOPPED_BY_HW_BREAKPOINT;
4458 else if (!target_supports_stopped_by_sw_breakpoint ()
4459 && software_breakpoint_inserted_here_p (aspace,
4462 tp->suspend.stop_reason
4463 = TARGET_STOPPED_BY_SW_BREAKPOINT;
4465 else if (!thread_has_single_step_breakpoints_set (tp)
4466 && currently_stepping (tp))
4468 tp->suspend.stop_reason
4469 = TARGET_STOPPED_BY_SINGLE_STEP;
4474 /* A cleanup that disables thread create/exit events. */
4477 disable_thread_events (void *arg)
4479 target_thread_events (0);
4485 stop_all_threads (void)
4487 /* We may need multiple passes to discover all threads. */
4491 struct cleanup *old_chain;
4493 gdb_assert (target_is_non_stop_p ());
4496 fprintf_unfiltered (gdb_stdlog, "infrun: stop_all_threads\n");
4498 entry_ptid = inferior_ptid;
4499 old_chain = make_cleanup (switch_to_thread_cleanup, &entry_ptid);
4501 target_thread_events (1);
4502 make_cleanup (disable_thread_events, NULL);
4504 /* Request threads to stop, and then wait for the stops. Because
4505 threads we already know about can spawn more threads while we're
4506 trying to stop them, and we only learn about new threads when we
4507 update the thread list, do this in a loop, and keep iterating
4508 until two passes find no threads that need to be stopped. */
4509 for (pass = 0; pass < 2; pass++, iterations++)
4512 fprintf_unfiltered (gdb_stdlog,
4513 "infrun: stop_all_threads, pass=%d, "
4514 "iterations=%d\n", pass, iterations);
4518 struct target_waitstatus ws;
4520 struct thread_info *t;
4522 update_thread_list ();
4524 /* Go through all threads looking for threads that we need
4525 to tell the target to stop. */
4526 ALL_NON_EXITED_THREADS (t)
4530 /* If already stopping, don't request a stop again.
4531 We just haven't seen the notification yet. */
4532 if (!t->stop_requested)
4535 fprintf_unfiltered (gdb_stdlog,
4536 "infrun: %s executing, "
4538 target_pid_to_str (t->ptid));
4539 target_stop (t->ptid);
4540 t->stop_requested = 1;
4545 fprintf_unfiltered (gdb_stdlog,
4546 "infrun: %s executing, "
4547 "already stopping\n",
4548 target_pid_to_str (t->ptid));
4551 if (t->stop_requested)
4557 fprintf_unfiltered (gdb_stdlog,
4558 "infrun: %s not executing\n",
4559 target_pid_to_str (t->ptid));
4561 /* The thread may be not executing, but still be
4562 resumed with a pending status to process. */
4570 /* If we find new threads on the second iteration, restart
4571 over. We want to see two iterations in a row with all
4576 event_ptid = wait_one (&ws);
4577 if (ws.kind == TARGET_WAITKIND_NO_RESUMED)
4579 /* All resumed threads exited. */
4581 else if (ws.kind == TARGET_WAITKIND_THREAD_EXITED
4582 || ws.kind == TARGET_WAITKIND_EXITED
4583 || ws.kind == TARGET_WAITKIND_SIGNALLED)
4587 ptid_t ptid = pid_to_ptid (ws.value.integer);
4589 fprintf_unfiltered (gdb_stdlog,
4590 "infrun: %s exited while "
4591 "stopping threads\n",
4592 target_pid_to_str (ptid));
4597 struct inferior *inf;
4599 t = find_thread_ptid (event_ptid);
4601 t = add_thread (event_ptid);
4603 t->stop_requested = 0;
4606 t->control.may_range_step = 0;
4608 /* This may be the first time we see the inferior report
4610 inf = find_inferior_ptid (event_ptid);
4611 if (inf->needs_setup)
4613 switch_to_thread_no_regs (t);
4617 if (ws.kind == TARGET_WAITKIND_STOPPED
4618 && ws.value.sig == GDB_SIGNAL_0)
4620 /* We caught the event that we intended to catch, so
4621 there's no event pending. */
4622 t->suspend.waitstatus.kind = TARGET_WAITKIND_IGNORE;
4623 t->suspend.waitstatus_pending_p = 0;
4625 if (displaced_step_fixup (t->ptid, GDB_SIGNAL_0) < 0)
4627 /* Add it back to the step-over queue. */
4630 fprintf_unfiltered (gdb_stdlog,
4631 "infrun: displaced-step of %s "
4632 "canceled: adding back to the "
4633 "step-over queue\n",
4634 target_pid_to_str (t->ptid));
4636 t->control.trap_expected = 0;
4637 thread_step_over_chain_enqueue (t);
4642 enum gdb_signal sig;
4643 struct regcache *regcache;
4649 statstr = target_waitstatus_to_string (&ws);
4650 fprintf_unfiltered (gdb_stdlog,
4651 "infrun: target_wait %s, saving "
4652 "status for %d.%ld.%ld\n",
4654 ptid_get_pid (t->ptid),
4655 ptid_get_lwp (t->ptid),
4656 ptid_get_tid (t->ptid));
4660 /* Record for later. */
4661 save_waitstatus (t, &ws);
4663 sig = (ws.kind == TARGET_WAITKIND_STOPPED
4664 ? ws.value.sig : GDB_SIGNAL_0);
4666 if (displaced_step_fixup (t->ptid, sig) < 0)
4668 /* Add it back to the step-over queue. */
4669 t->control.trap_expected = 0;
4670 thread_step_over_chain_enqueue (t);
4673 regcache = get_thread_regcache (t->ptid);
4674 t->suspend.stop_pc = regcache_read_pc (regcache);
4678 fprintf_unfiltered (gdb_stdlog,
4679 "infrun: saved stop_pc=%s for %s "
4680 "(currently_stepping=%d)\n",
4681 paddress (target_gdbarch (),
4682 t->suspend.stop_pc),
4683 target_pid_to_str (t->ptid),
4684 currently_stepping (t));
4691 do_cleanups (old_chain);
4694 fprintf_unfiltered (gdb_stdlog, "infrun: stop_all_threads done\n");
4697 /* Handle a TARGET_WAITKIND_NO_RESUMED event. */
4700 handle_no_resumed (struct execution_control_state *ecs)
4702 struct inferior *inf;
4703 struct thread_info *thread;
4705 if (target_can_async_p ())
4712 if (ui->prompt_state == PROMPT_BLOCKED)
4720 /* There were no unwaited-for children left in the target, but,
4721 we're not synchronously waiting for events either. Just
4725 fprintf_unfiltered (gdb_stdlog,
4726 "infrun: TARGET_WAITKIND_NO_RESUMED "
4727 "(ignoring: bg)\n");
4728 prepare_to_wait (ecs);
4733 /* Otherwise, if we were running a synchronous execution command, we
4734 may need to cancel it and give the user back the terminal.
4736 In non-stop mode, the target can't tell whether we've already
4737 consumed previous stop events, so it can end up sending us a
4738 no-resumed event like so:
4740 #0 - thread 1 is left stopped
4742 #1 - thread 2 is resumed and hits breakpoint
4743 -> TARGET_WAITKIND_STOPPED
4745 #2 - thread 3 is resumed and exits
4746 this is the last resumed thread, so
4747 -> TARGET_WAITKIND_NO_RESUMED
4749 #3 - gdb processes stop for thread 2 and decides to re-resume
4752 #4 - gdb processes the TARGET_WAITKIND_NO_RESUMED event.
4753 thread 2 is now resumed, so the event should be ignored.
4755 IOW, if the stop for thread 2 doesn't end a foreground command,
4756 then we need to ignore the following TARGET_WAITKIND_NO_RESUMED
4757 event. But it could be that the event meant that thread 2 itself
4758 (or whatever other thread was the last resumed thread) exited.
4760 To address this we refresh the thread list and check whether we
4761 have resumed threads _now_. In the example above, this removes
4762 thread 3 from the thread list. If thread 2 was re-resumed, we
4763 ignore this event. If we find no thread resumed, then we cancel
4764 the synchronous command show "no unwaited-for " to the user. */
4765 update_thread_list ();
4767 ALL_NON_EXITED_THREADS (thread)
4769 if (thread->executing
4770 || thread->suspend.waitstatus_pending_p)
4772 /* There were no unwaited-for children left in the target at
4773 some point, but there are now. Just ignore. */
4775 fprintf_unfiltered (gdb_stdlog,
4776 "infrun: TARGET_WAITKIND_NO_RESUMED "
4777 "(ignoring: found resumed)\n");
4778 prepare_to_wait (ecs);
4783 /* Note however that we may find no resumed thread because the whole
4784 process exited meanwhile (thus updating the thread list results
4785 in an empty thread list). In this case we know we'll be getting
4786 a process exit event shortly. */
4792 thread = any_live_thread_of_process (inf->pid);
4796 fprintf_unfiltered (gdb_stdlog,
4797 "infrun: TARGET_WAITKIND_NO_RESUMED "
4798 "(expect process exit)\n");
4799 prepare_to_wait (ecs);
4804 /* Go ahead and report the event. */
4808 /* Given an execution control state that has been freshly filled in by
4809 an event from the inferior, figure out what it means and take
4812 The alternatives are:
4814 1) stop_waiting and return; to really stop and return to the
4817 2) keep_going and return; to wait for the next event (set
4818 ecs->event_thread->stepping_over_breakpoint to 1 to single step
4822 handle_inferior_event_1 (struct execution_control_state *ecs)
4824 enum stop_kind stop_soon;
4826 if (ecs->ws.kind == TARGET_WAITKIND_IGNORE)
4828 /* We had an event in the inferior, but we are not interested in
4829 handling it at this level. The lower layers have already
4830 done what needs to be done, if anything.
4832 One of the possible circumstances for this is when the
4833 inferior produces output for the console. The inferior has
4834 not stopped, and we are ignoring the event. Another possible
4835 circumstance is any event which the lower level knows will be
4836 reported multiple times without an intervening resume. */
4838 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_IGNORE\n");
4839 prepare_to_wait (ecs);
4843 if (ecs->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
4846 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_THREAD_EXITED\n");
4847 prepare_to_wait (ecs);
4851 if (ecs->ws.kind == TARGET_WAITKIND_NO_RESUMED
4852 && handle_no_resumed (ecs))
4855 /* Cache the last pid/waitstatus. */
4856 set_last_target_status (ecs->ptid, ecs->ws);
4858 /* Always clear state belonging to the previous time we stopped. */
4859 stop_stack_dummy = STOP_NONE;
4861 if (ecs->ws.kind == TARGET_WAITKIND_NO_RESUMED)
4863 /* No unwaited-for children left. IOW, all resumed children
4866 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_NO_RESUMED\n");
4868 stop_print_frame = 0;
4873 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
4874 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED)
4876 ecs->event_thread = find_thread_ptid (ecs->ptid);
4877 /* If it's a new thread, add it to the thread database. */
4878 if (ecs->event_thread == NULL)
4879 ecs->event_thread = add_thread (ecs->ptid);
4881 /* Disable range stepping. If the next step request could use a
4882 range, this will be end up re-enabled then. */
4883 ecs->event_thread->control.may_range_step = 0;
4886 /* Dependent on valid ECS->EVENT_THREAD. */
4887 adjust_pc_after_break (ecs->event_thread, &ecs->ws);
4889 /* Dependent on the current PC value modified by adjust_pc_after_break. */
4890 reinit_frame_cache ();
4892 breakpoint_retire_moribund ();
4894 /* First, distinguish signals caused by the debugger from signals
4895 that have to do with the program's own actions. Note that
4896 breakpoint insns may cause SIGTRAP or SIGILL or SIGEMT, depending
4897 on the operating system version. Here we detect when a SIGILL or
4898 SIGEMT is really a breakpoint and change it to SIGTRAP. We do
4899 something similar for SIGSEGV, since a SIGSEGV will be generated
4900 when we're trying to execute a breakpoint instruction on a
4901 non-executable stack. This happens for call dummy breakpoints
4902 for architectures like SPARC that place call dummies on the
4904 if (ecs->ws.kind == TARGET_WAITKIND_STOPPED
4905 && (ecs->ws.value.sig == GDB_SIGNAL_ILL
4906 || ecs->ws.value.sig == GDB_SIGNAL_SEGV
4907 || ecs->ws.value.sig == GDB_SIGNAL_EMT))
4909 struct regcache *regcache = get_thread_regcache (ecs->ptid);
4911 if (breakpoint_inserted_here_p (get_regcache_aspace (regcache),
4912 regcache_read_pc (regcache)))
4915 fprintf_unfiltered (gdb_stdlog,
4916 "infrun: Treating signal as SIGTRAP\n");
4917 ecs->ws.value.sig = GDB_SIGNAL_TRAP;
4921 /* Mark the non-executing threads accordingly. In all-stop, all
4922 threads of all processes are stopped when we get any event
4923 reported. In non-stop mode, only the event thread stops. */
4927 if (!target_is_non_stop_p ())
4928 mark_ptid = minus_one_ptid;
4929 else if (ecs->ws.kind == TARGET_WAITKIND_SIGNALLED
4930 || ecs->ws.kind == TARGET_WAITKIND_EXITED)
4932 /* If we're handling a process exit in non-stop mode, even
4933 though threads haven't been deleted yet, one would think
4934 that there is nothing to do, as threads of the dead process
4935 will be soon deleted, and threads of any other process were
4936 left running. However, on some targets, threads survive a
4937 process exit event. E.g., for the "checkpoint" command,
4938 when the current checkpoint/fork exits, linux-fork.c
4939 automatically switches to another fork from within
4940 target_mourn_inferior, by associating the same
4941 inferior/thread to another fork. We haven't mourned yet at
4942 this point, but we must mark any threads left in the
4943 process as not-executing so that finish_thread_state marks
4944 them stopped (in the user's perspective) if/when we present
4945 the stop to the user. */
4946 mark_ptid = pid_to_ptid (ptid_get_pid (ecs->ptid));
4949 mark_ptid = ecs->ptid;
4951 set_executing (mark_ptid, 0);
4953 /* Likewise the resumed flag. */
4954 set_resumed (mark_ptid, 0);
4957 switch (ecs->ws.kind)
4959 case TARGET_WAITKIND_LOADED:
4961 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_LOADED\n");
4962 if (!ptid_equal (ecs->ptid, inferior_ptid))
4963 context_switch (ecs->ptid);
4964 /* Ignore gracefully during startup of the inferior, as it might
4965 be the shell which has just loaded some objects, otherwise
4966 add the symbols for the newly loaded objects. Also ignore at
4967 the beginning of an attach or remote session; we will query
4968 the full list of libraries once the connection is
4971 stop_soon = get_inferior_stop_soon (ecs->ptid);
4972 if (stop_soon == NO_STOP_QUIETLY)
4974 struct regcache *regcache;
4976 regcache = get_thread_regcache (ecs->ptid);
4978 handle_solib_event ();
4980 ecs->event_thread->control.stop_bpstat
4981 = bpstat_stop_status (get_regcache_aspace (regcache),
4982 stop_pc, ecs->ptid, &ecs->ws);
4984 if (handle_stop_requested (ecs))
4987 if (bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
4989 /* A catchpoint triggered. */
4990 process_event_stop_test (ecs);
4994 /* If requested, stop when the dynamic linker notifies
4995 gdb of events. This allows the user to get control
4996 and place breakpoints in initializer routines for
4997 dynamically loaded objects (among other things). */
4998 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
4999 if (stop_on_solib_events)
5001 /* Make sure we print "Stopped due to solib-event" in
5003 stop_print_frame = 1;
5010 /* If we are skipping through a shell, or through shared library
5011 loading that we aren't interested in, resume the program. If
5012 we're running the program normally, also resume. */
5013 if (stop_soon == STOP_QUIETLY || stop_soon == NO_STOP_QUIETLY)
5015 /* Loading of shared libraries might have changed breakpoint
5016 addresses. Make sure new breakpoints are inserted. */
5017 if (stop_soon == NO_STOP_QUIETLY)
5018 insert_breakpoints ();
5019 resume (GDB_SIGNAL_0);
5020 prepare_to_wait (ecs);
5024 /* But stop if we're attaching or setting up a remote
5026 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
5027 || stop_soon == STOP_QUIETLY_REMOTE)
5030 fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
5035 internal_error (__FILE__, __LINE__,
5036 _("unhandled stop_soon: %d"), (int) stop_soon);
5038 case TARGET_WAITKIND_SPURIOUS:
5040 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SPURIOUS\n");
5041 if (handle_stop_requested (ecs))
5043 if (!ptid_equal (ecs->ptid, inferior_ptid))
5044 context_switch (ecs->ptid);
5045 resume (GDB_SIGNAL_0);
5046 prepare_to_wait (ecs);
5049 case TARGET_WAITKIND_THREAD_CREATED:
5051 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_THREAD_CREATED\n");
5052 if (handle_stop_requested (ecs))
5054 if (!ptid_equal (ecs->ptid, inferior_ptid))
5055 context_switch (ecs->ptid);
5056 if (!switch_back_to_stepped_thread (ecs))
5060 case TARGET_WAITKIND_EXITED:
5061 case TARGET_WAITKIND_SIGNALLED:
5064 if (ecs->ws.kind == TARGET_WAITKIND_EXITED)
5065 fprintf_unfiltered (gdb_stdlog,
5066 "infrun: TARGET_WAITKIND_EXITED\n");
5068 fprintf_unfiltered (gdb_stdlog,
5069 "infrun: TARGET_WAITKIND_SIGNALLED\n");
5072 inferior_ptid = ecs->ptid;
5073 set_current_inferior (find_inferior_ptid (ecs->ptid));
5074 set_current_program_space (current_inferior ()->pspace);
5075 handle_vfork_child_exec_or_exit (0);
5076 target_terminal_ours (); /* Must do this before mourn anyway. */
5078 /* Clearing any previous state of convenience variables. */
5079 clear_exit_convenience_vars ();
5081 if (ecs->ws.kind == TARGET_WAITKIND_EXITED)
5083 /* Record the exit code in the convenience variable $_exitcode, so
5084 that the user can inspect this again later. */
5085 set_internalvar_integer (lookup_internalvar ("_exitcode"),
5086 (LONGEST) ecs->ws.value.integer);
5088 /* Also record this in the inferior itself. */
5089 current_inferior ()->has_exit_code = 1;
5090 current_inferior ()->exit_code = (LONGEST) ecs->ws.value.integer;
5092 /* Support the --return-child-result option. */
5093 return_child_result_value = ecs->ws.value.integer;
5095 observer_notify_exited (ecs->ws.value.integer);
5099 struct regcache *regcache = get_thread_regcache (ecs->ptid);
5100 struct gdbarch *gdbarch = get_regcache_arch (regcache);
5102 if (gdbarch_gdb_signal_to_target_p (gdbarch))
5104 /* Set the value of the internal variable $_exitsignal,
5105 which holds the signal uncaught by the inferior. */
5106 set_internalvar_integer (lookup_internalvar ("_exitsignal"),
5107 gdbarch_gdb_signal_to_target (gdbarch,
5108 ecs->ws.value.sig));
5112 /* We don't have access to the target's method used for
5113 converting between signal numbers (GDB's internal
5114 representation <-> target's representation).
5115 Therefore, we cannot do a good job at displaying this
5116 information to the user. It's better to just warn
5117 her about it (if infrun debugging is enabled), and
5120 fprintf_filtered (gdb_stdlog, _("\
5121 Cannot fill $_exitsignal with the correct signal number.\n"));
5124 observer_notify_signal_exited (ecs->ws.value.sig);
5127 gdb_flush (gdb_stdout);
5128 target_mourn_inferior (inferior_ptid);
5129 stop_print_frame = 0;
5133 /* The following are the only cases in which we keep going;
5134 the above cases end in a continue or goto. */
5135 case TARGET_WAITKIND_FORKED:
5136 case TARGET_WAITKIND_VFORKED:
5139 if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
5140 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_FORKED\n");
5142 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_VFORKED\n");
5145 /* Check whether the inferior is displaced stepping. */
5147 struct regcache *regcache = get_thread_regcache (ecs->ptid);
5148 struct gdbarch *gdbarch = get_regcache_arch (regcache);
5150 /* If checking displaced stepping is supported, and thread
5151 ecs->ptid is displaced stepping. */
5152 if (displaced_step_in_progress_thread (ecs->ptid))
5154 struct inferior *parent_inf
5155 = find_inferior_ptid (ecs->ptid);
5156 struct regcache *child_regcache;
5157 CORE_ADDR parent_pc;
5159 /* GDB has got TARGET_WAITKIND_FORKED or TARGET_WAITKIND_VFORKED,
5160 indicating that the displaced stepping of syscall instruction
5161 has been done. Perform cleanup for parent process here. Note
5162 that this operation also cleans up the child process for vfork,
5163 because their pages are shared. */
5164 displaced_step_fixup (ecs->ptid, GDB_SIGNAL_TRAP);
5165 /* Start a new step-over in another thread if there's one
5169 if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
5171 struct displaced_step_inferior_state *displaced
5172 = get_displaced_stepping_state (ptid_get_pid (ecs->ptid));
5174 /* Restore scratch pad for child process. */
5175 displaced_step_restore (displaced, ecs->ws.value.related_pid);
5178 /* Since the vfork/fork syscall instruction was executed in the scratchpad,
5179 the child's PC is also within the scratchpad. Set the child's PC
5180 to the parent's PC value, which has already been fixed up.
5181 FIXME: we use the parent's aspace here, although we're touching
5182 the child, because the child hasn't been added to the inferior
5183 list yet at this point. */
5186 = get_thread_arch_aspace_regcache (ecs->ws.value.related_pid,
5188 parent_inf->aspace);
5189 /* Read PC value of parent process. */
5190 parent_pc = regcache_read_pc (regcache);
5192 if (debug_displaced)
5193 fprintf_unfiltered (gdb_stdlog,
5194 "displaced: write child pc from %s to %s\n",
5196 regcache_read_pc (child_regcache)),
5197 paddress (gdbarch, parent_pc));
5199 regcache_write_pc (child_regcache, parent_pc);
5203 if (!ptid_equal (ecs->ptid, inferior_ptid))
5204 context_switch (ecs->ptid);
5206 /* Immediately detach breakpoints from the child before there's
5207 any chance of letting the user delete breakpoints from the
5208 breakpoint lists. If we don't do this early, it's easy to
5209 leave left over traps in the child, vis: "break foo; catch
5210 fork; c; <fork>; del; c; <child calls foo>". We only follow
5211 the fork on the last `continue', and by that time the
5212 breakpoint at "foo" is long gone from the breakpoint table.
5213 If we vforked, then we don't need to unpatch here, since both
5214 parent and child are sharing the same memory pages; we'll
5215 need to unpatch at follow/detach time instead to be certain
5216 that new breakpoints added between catchpoint hit time and
5217 vfork follow are detached. */
5218 if (ecs->ws.kind != TARGET_WAITKIND_VFORKED)
5220 /* This won't actually modify the breakpoint list, but will
5221 physically remove the breakpoints from the child. */
5222 detach_breakpoints (ecs->ws.value.related_pid);
5225 delete_just_stopped_threads_single_step_breakpoints ();
5227 /* In case the event is caught by a catchpoint, remember that
5228 the event is to be followed at the next resume of the thread,
5229 and not immediately. */
5230 ecs->event_thread->pending_follow = ecs->ws;
5232 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
5234 ecs->event_thread->control.stop_bpstat
5235 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
5236 stop_pc, ecs->ptid, &ecs->ws);
5238 if (handle_stop_requested (ecs))
5241 /* If no catchpoint triggered for this, then keep going. Note
5242 that we're interested in knowing the bpstat actually causes a
5243 stop, not just if it may explain the signal. Software
5244 watchpoints, for example, always appear in the bpstat. */
5245 if (!bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
5251 = (follow_fork_mode_string == follow_fork_mode_child);
5253 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5255 should_resume = follow_fork ();
5258 child = ecs->ws.value.related_pid;
5260 /* At this point, the parent is marked running, and the
5261 child is marked stopped. */
5263 /* If not resuming the parent, mark it stopped. */
5264 if (follow_child && !detach_fork && !non_stop && !sched_multi)
5265 set_running (parent, 0);
5267 /* If resuming the child, mark it running. */
5268 if (follow_child || (!detach_fork && (non_stop || sched_multi)))
5269 set_running (child, 1);
5271 /* In non-stop mode, also resume the other branch. */
5272 if (!detach_fork && (non_stop
5273 || (sched_multi && target_is_non_stop_p ())))
5276 switch_to_thread (parent);
5278 switch_to_thread (child);
5280 ecs->event_thread = inferior_thread ();
5281 ecs->ptid = inferior_ptid;
5286 switch_to_thread (child);
5288 switch_to_thread (parent);
5290 ecs->event_thread = inferior_thread ();
5291 ecs->ptid = inferior_ptid;
5299 process_event_stop_test (ecs);
5302 case TARGET_WAITKIND_VFORK_DONE:
5303 /* Done with the shared memory region. Re-insert breakpoints in
5304 the parent, and keep going. */
5307 fprintf_unfiltered (gdb_stdlog,
5308 "infrun: TARGET_WAITKIND_VFORK_DONE\n");
5310 if (!ptid_equal (ecs->ptid, inferior_ptid))
5311 context_switch (ecs->ptid);
5313 current_inferior ()->waiting_for_vfork_done = 0;
5314 current_inferior ()->pspace->breakpoints_not_allowed = 0;
5316 if (handle_stop_requested (ecs))
5319 /* This also takes care of reinserting breakpoints in the
5320 previously locked inferior. */
5324 case TARGET_WAITKIND_EXECD:
5326 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXECD\n");
5328 if (!ptid_equal (ecs->ptid, inferior_ptid))
5329 context_switch (ecs->ptid);
5331 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
5333 /* Do whatever is necessary to the parent branch of the vfork. */
5334 handle_vfork_child_exec_or_exit (1);
5336 /* This causes the eventpoints and symbol table to be reset.
5337 Must do this now, before trying to determine whether to
5339 follow_exec (inferior_ptid, ecs->ws.value.execd_pathname);
5341 /* In follow_exec we may have deleted the original thread and
5342 created a new one. Make sure that the event thread is the
5343 execd thread for that case (this is a nop otherwise). */
5344 ecs->event_thread = inferior_thread ();
5346 ecs->event_thread->control.stop_bpstat
5347 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
5348 stop_pc, ecs->ptid, &ecs->ws);
5350 /* Note that this may be referenced from inside
5351 bpstat_stop_status above, through inferior_has_execd. */
5352 xfree (ecs->ws.value.execd_pathname);
5353 ecs->ws.value.execd_pathname = NULL;
5355 if (handle_stop_requested (ecs))
5358 /* If no catchpoint triggered for this, then keep going. */
5359 if (!bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
5361 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5365 process_event_stop_test (ecs);
5368 /* Be careful not to try to gather much state about a thread
5369 that's in a syscall. It's frequently a losing proposition. */
5370 case TARGET_WAITKIND_SYSCALL_ENTRY:
5372 fprintf_unfiltered (gdb_stdlog,
5373 "infrun: TARGET_WAITKIND_SYSCALL_ENTRY\n");
5374 /* Getting the current syscall number. */
5375 if (handle_syscall_event (ecs) == 0)
5376 process_event_stop_test (ecs);
5379 /* Before examining the threads further, step this thread to
5380 get it entirely out of the syscall. (We get notice of the
5381 event when the thread is just on the verge of exiting a
5382 syscall. Stepping one instruction seems to get it back
5384 case TARGET_WAITKIND_SYSCALL_RETURN:
5386 fprintf_unfiltered (gdb_stdlog,
5387 "infrun: TARGET_WAITKIND_SYSCALL_RETURN\n");
5388 if (handle_syscall_event (ecs) == 0)
5389 process_event_stop_test (ecs);
5392 case TARGET_WAITKIND_STOPPED:
5394 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_STOPPED\n");
5395 handle_signal_stop (ecs);
5398 case TARGET_WAITKIND_NO_HISTORY:
5400 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_NO_HISTORY\n");
5401 /* Reverse execution: target ran out of history info. */
5403 /* Switch to the stopped thread. */
5404 if (!ptid_equal (ecs->ptid, inferior_ptid))
5405 context_switch (ecs->ptid);
5407 fprintf_unfiltered (gdb_stdlog, "infrun: stopped\n");
5409 delete_just_stopped_threads_single_step_breakpoints ();
5410 stop_pc = regcache_read_pc (get_thread_regcache (inferior_ptid));
5412 if (handle_stop_requested (ecs))
5415 observer_notify_no_history ();
5421 /* A wrapper around handle_inferior_event_1, which also makes sure
5422 that all temporary struct value objects that were created during
5423 the handling of the event get deleted at the end. */
5426 handle_inferior_event (struct execution_control_state *ecs)
5428 struct value *mark = value_mark ();
5430 handle_inferior_event_1 (ecs);
5431 /* Purge all temporary values created during the event handling,
5432 as it could be a long time before we return to the command level
5433 where such values would otherwise be purged. */
5434 value_free_to_mark (mark);
5437 /* Restart threads back to what they were trying to do back when we
5438 paused them for an in-line step-over. The EVENT_THREAD thread is
5442 restart_threads (struct thread_info *event_thread)
5444 struct thread_info *tp;
5446 /* In case the instruction just stepped spawned a new thread. */
5447 update_thread_list ();
5449 ALL_NON_EXITED_THREADS (tp)
5451 if (tp == event_thread)
5454 fprintf_unfiltered (gdb_stdlog,
5455 "infrun: restart threads: "
5456 "[%s] is event thread\n",
5457 target_pid_to_str (tp->ptid));
5461 if (!(tp->state == THREAD_RUNNING || tp->control.in_infcall))
5464 fprintf_unfiltered (gdb_stdlog,
5465 "infrun: restart threads: "
5466 "[%s] not meant to be running\n",
5467 target_pid_to_str (tp->ptid));
5474 fprintf_unfiltered (gdb_stdlog,
5475 "infrun: restart threads: [%s] resumed\n",
5476 target_pid_to_str (tp->ptid));
5477 gdb_assert (tp->executing || tp->suspend.waitstatus_pending_p);
5481 if (thread_is_in_step_over_chain (tp))
5484 fprintf_unfiltered (gdb_stdlog,
5485 "infrun: restart threads: "
5486 "[%s] needs step-over\n",
5487 target_pid_to_str (tp->ptid));
5488 gdb_assert (!tp->resumed);
5493 if (tp->suspend.waitstatus_pending_p)
5496 fprintf_unfiltered (gdb_stdlog,
5497 "infrun: restart threads: "
5498 "[%s] has pending status\n",
5499 target_pid_to_str (tp->ptid));
5504 gdb_assert (!tp->stop_requested);
5506 /* If some thread needs to start a step-over at this point, it
5507 should still be in the step-over queue, and thus skipped
5509 if (thread_still_needs_step_over (tp))
5511 internal_error (__FILE__, __LINE__,
5512 "thread [%s] needs a step-over, but not in "
5513 "step-over queue\n",
5514 target_pid_to_str (tp->ptid));
5517 if (currently_stepping (tp))
5520 fprintf_unfiltered (gdb_stdlog,
5521 "infrun: restart threads: [%s] was stepping\n",
5522 target_pid_to_str (tp->ptid));
5523 keep_going_stepped_thread (tp);
5527 struct execution_control_state ecss;
5528 struct execution_control_state *ecs = &ecss;
5531 fprintf_unfiltered (gdb_stdlog,
5532 "infrun: restart threads: [%s] continuing\n",
5533 target_pid_to_str (tp->ptid));
5534 reset_ecs (ecs, tp);
5535 switch_to_thread (tp->ptid);
5536 keep_going_pass_signal (ecs);
5541 /* Callback for iterate_over_threads. Find a resumed thread that has
5542 a pending waitstatus. */
5545 resumed_thread_with_pending_status (struct thread_info *tp,
5549 && tp->suspend.waitstatus_pending_p);
5552 /* Called when we get an event that may finish an in-line or
5553 out-of-line (displaced stepping) step-over started previously.
5554 Return true if the event is processed and we should go back to the
5555 event loop; false if the caller should continue processing the
5559 finish_step_over (struct execution_control_state *ecs)
5561 int had_step_over_info;
5563 displaced_step_fixup (ecs->ptid,
5564 ecs->event_thread->suspend.stop_signal);
5566 had_step_over_info = step_over_info_valid_p ();
5568 if (had_step_over_info)
5570 /* If we're stepping over a breakpoint with all threads locked,
5571 then only the thread that was stepped should be reporting
5573 gdb_assert (ecs->event_thread->control.trap_expected);
5575 clear_step_over_info ();
5578 if (!target_is_non_stop_p ())
5581 /* Start a new step-over in another thread if there's one that
5585 /* If we were stepping over a breakpoint before, and haven't started
5586 a new in-line step-over sequence, then restart all other threads
5587 (except the event thread). We can't do this in all-stop, as then
5588 e.g., we wouldn't be able to issue any other remote packet until
5589 these other threads stop. */
5590 if (had_step_over_info && !step_over_info_valid_p ())
5592 struct thread_info *pending;
5594 /* If we only have threads with pending statuses, the restart
5595 below won't restart any thread and so nothing re-inserts the
5596 breakpoint we just stepped over. But we need it inserted
5597 when we later process the pending events, otherwise if
5598 another thread has a pending event for this breakpoint too,
5599 we'd discard its event (because the breakpoint that
5600 originally caused the event was no longer inserted). */
5601 context_switch (ecs->ptid);
5602 insert_breakpoints ();
5604 restart_threads (ecs->event_thread);
5606 /* If we have events pending, go through handle_inferior_event
5607 again, picking up a pending event at random. This avoids
5608 thread starvation. */
5610 /* But not if we just stepped over a watchpoint in order to let
5611 the instruction execute so we can evaluate its expression.
5612 The set of watchpoints that triggered is recorded in the
5613 breakpoint objects themselves (see bp->watchpoint_triggered).
5614 If we processed another event first, that other event could
5615 clobber this info. */
5616 if (ecs->event_thread->stepping_over_watchpoint)
5619 pending = iterate_over_threads (resumed_thread_with_pending_status,
5621 if (pending != NULL)
5623 struct thread_info *tp = ecs->event_thread;
5624 struct regcache *regcache;
5628 fprintf_unfiltered (gdb_stdlog,
5629 "infrun: found resumed threads with "
5630 "pending events, saving status\n");
5633 gdb_assert (pending != tp);
5635 /* Record the event thread's event for later. */
5636 save_waitstatus (tp, &ecs->ws);
5637 /* This was cleared early, by handle_inferior_event. Set it
5638 so this pending event is considered by
5642 gdb_assert (!tp->executing);
5644 regcache = get_thread_regcache (tp->ptid);
5645 tp->suspend.stop_pc = regcache_read_pc (regcache);
5649 fprintf_unfiltered (gdb_stdlog,
5650 "infrun: saved stop_pc=%s for %s "
5651 "(currently_stepping=%d)\n",
5652 paddress (target_gdbarch (),
5653 tp->suspend.stop_pc),
5654 target_pid_to_str (tp->ptid),
5655 currently_stepping (tp));
5658 /* This in-line step-over finished; clear this so we won't
5659 start a new one. This is what handle_signal_stop would
5660 do, if we returned false. */
5661 tp->stepping_over_breakpoint = 0;
5663 /* Wake up the event loop again. */
5664 mark_async_event_handler (infrun_async_inferior_event_token);
5666 prepare_to_wait (ecs);
5674 /* Come here when the program has stopped with a signal. */
5677 handle_signal_stop (struct execution_control_state *ecs)
5679 struct frame_info *frame;
5680 struct gdbarch *gdbarch;
5681 int stopped_by_watchpoint;
5682 enum stop_kind stop_soon;
5685 gdb_assert (ecs->ws.kind == TARGET_WAITKIND_STOPPED);
5687 ecs->event_thread->suspend.stop_signal = ecs->ws.value.sig;
5689 /* Do we need to clean up the state of a thread that has
5690 completed a displaced single-step? (Doing so usually affects
5691 the PC, so do it here, before we set stop_pc.) */
5692 if (finish_step_over (ecs))
5695 /* If we either finished a single-step or hit a breakpoint, but
5696 the user wanted this thread to be stopped, pretend we got a
5697 SIG0 (generic unsignaled stop). */
5698 if (ecs->event_thread->stop_requested
5699 && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
5700 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5702 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
5706 struct regcache *regcache = get_thread_regcache (ecs->ptid);
5707 struct gdbarch *gdbarch = get_regcache_arch (regcache);
5708 struct cleanup *old_chain = save_inferior_ptid ();
5710 inferior_ptid = ecs->ptid;
5712 fprintf_unfiltered (gdb_stdlog, "infrun: stop_pc = %s\n",
5713 paddress (gdbarch, stop_pc));
5714 if (target_stopped_by_watchpoint ())
5718 fprintf_unfiltered (gdb_stdlog, "infrun: stopped by watchpoint\n");
5720 if (target_stopped_data_address (¤t_target, &addr))
5721 fprintf_unfiltered (gdb_stdlog,
5722 "infrun: stopped data address = %s\n",
5723 paddress (gdbarch, addr));
5725 fprintf_unfiltered (gdb_stdlog,
5726 "infrun: (no data address available)\n");
5729 do_cleanups (old_chain);
5732 /* This is originated from start_remote(), start_inferior() and
5733 shared libraries hook functions. */
5734 stop_soon = get_inferior_stop_soon (ecs->ptid);
5735 if (stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_REMOTE)
5737 if (!ptid_equal (ecs->ptid, inferior_ptid))
5738 context_switch (ecs->ptid);
5740 fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
5741 stop_print_frame = 1;
5746 /* This originates from attach_command(). We need to overwrite
5747 the stop_signal here, because some kernels don't ignore a
5748 SIGSTOP in a subsequent ptrace(PTRACE_CONT,SIGSTOP) call.
5749 See more comments in inferior.h. On the other hand, if we
5750 get a non-SIGSTOP, report it to the user - assume the backend
5751 will handle the SIGSTOP if it should show up later.
5753 Also consider that the attach is complete when we see a
5754 SIGTRAP. Some systems (e.g. Windows), and stubs supporting
5755 target extended-remote report it instead of a SIGSTOP
5756 (e.g. gdbserver). We already rely on SIGTRAP being our
5757 signal, so this is no exception.
5759 Also consider that the attach is complete when we see a
5760 GDB_SIGNAL_0. In non-stop mode, GDB will explicitly tell
5761 the target to stop all threads of the inferior, in case the
5762 low level attach operation doesn't stop them implicitly. If
5763 they weren't stopped implicitly, then the stub will report a
5764 GDB_SIGNAL_0, meaning: stopped for no particular reason
5765 other than GDB's request. */
5766 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
5767 && (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_STOP
5768 || ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5769 || ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_0))
5771 stop_print_frame = 1;
5773 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5777 /* See if something interesting happened to the non-current thread. If
5778 so, then switch to that thread. */
5779 if (!ptid_equal (ecs->ptid, inferior_ptid))
5782 fprintf_unfiltered (gdb_stdlog, "infrun: context switch\n");
5784 context_switch (ecs->ptid);
5786 if (deprecated_context_hook)
5787 deprecated_context_hook (ptid_to_global_thread_id (ecs->ptid));
5790 /* At this point, get hold of the now-current thread's frame. */
5791 frame = get_current_frame ();
5792 gdbarch = get_frame_arch (frame);
5794 /* Pull the single step breakpoints out of the target. */
5795 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
5797 struct regcache *regcache;
5798 struct address_space *aspace;
5801 regcache = get_thread_regcache (ecs->ptid);
5802 aspace = get_regcache_aspace (regcache);
5803 pc = regcache_read_pc (regcache);
5805 /* However, before doing so, if this single-step breakpoint was
5806 actually for another thread, set this thread up for moving
5808 if (!thread_has_single_step_breakpoint_here (ecs->event_thread,
5811 if (single_step_breakpoint_inserted_here_p (aspace, pc))
5815 fprintf_unfiltered (gdb_stdlog,
5816 "infrun: [%s] hit another thread's "
5817 "single-step breakpoint\n",
5818 target_pid_to_str (ecs->ptid));
5820 ecs->hit_singlestep_breakpoint = 1;
5827 fprintf_unfiltered (gdb_stdlog,
5828 "infrun: [%s] hit its "
5829 "single-step breakpoint\n",
5830 target_pid_to_str (ecs->ptid));
5834 delete_just_stopped_threads_single_step_breakpoints ();
5836 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5837 && ecs->event_thread->control.trap_expected
5838 && ecs->event_thread->stepping_over_watchpoint)
5839 stopped_by_watchpoint = 0;
5841 stopped_by_watchpoint = watchpoints_triggered (&ecs->ws);
5843 /* If necessary, step over this watchpoint. We'll be back to display
5845 if (stopped_by_watchpoint
5846 && (target_have_steppable_watchpoint
5847 || gdbarch_have_nonsteppable_watchpoint (gdbarch)))
5849 /* At this point, we are stopped at an instruction which has
5850 attempted to write to a piece of memory under control of
5851 a watchpoint. The instruction hasn't actually executed
5852 yet. If we were to evaluate the watchpoint expression
5853 now, we would get the old value, and therefore no change
5854 would seem to have occurred.
5856 In order to make watchpoints work `right', we really need
5857 to complete the memory write, and then evaluate the
5858 watchpoint expression. We do this by single-stepping the
5861 It may not be necessary to disable the watchpoint to step over
5862 it. For example, the PA can (with some kernel cooperation)
5863 single step over a watchpoint without disabling the watchpoint.
5865 It is far more common to need to disable a watchpoint to step
5866 the inferior over it. If we have non-steppable watchpoints,
5867 we must disable the current watchpoint; it's simplest to
5868 disable all watchpoints.
5870 Any breakpoint at PC must also be stepped over -- if there's
5871 one, it will have already triggered before the watchpoint
5872 triggered, and we either already reported it to the user, or
5873 it didn't cause a stop and we called keep_going. In either
5874 case, if there was a breakpoint at PC, we must be trying to
5876 ecs->event_thread->stepping_over_watchpoint = 1;
5881 ecs->event_thread->stepping_over_breakpoint = 0;
5882 ecs->event_thread->stepping_over_watchpoint = 0;
5883 bpstat_clear (&ecs->event_thread->control.stop_bpstat);
5884 ecs->event_thread->control.stop_step = 0;
5885 stop_print_frame = 1;
5886 stopped_by_random_signal = 0;
5888 /* Hide inlined functions starting here, unless we just performed stepi or
5889 nexti. After stepi and nexti, always show the innermost frame (not any
5890 inline function call sites). */
5891 if (ecs->event_thread->control.step_range_end != 1)
5893 struct address_space *aspace =
5894 get_regcache_aspace (get_thread_regcache (ecs->ptid));
5896 /* skip_inline_frames is expensive, so we avoid it if we can
5897 determine that the address is one where functions cannot have
5898 been inlined. This improves performance with inferiors that
5899 load a lot of shared libraries, because the solib event
5900 breakpoint is defined as the address of a function (i.e. not
5901 inline). Note that we have to check the previous PC as well
5902 as the current one to catch cases when we have just
5903 single-stepped off a breakpoint prior to reinstating it.
5904 Note that we're assuming that the code we single-step to is
5905 not inline, but that's not definitive: there's nothing
5906 preventing the event breakpoint function from containing
5907 inlined code, and the single-step ending up there. If the
5908 user had set a breakpoint on that inlined code, the missing
5909 skip_inline_frames call would break things. Fortunately
5910 that's an extremely unlikely scenario. */
5911 if (!pc_at_non_inline_function (aspace, stop_pc, &ecs->ws)
5912 && !(ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5913 && ecs->event_thread->control.trap_expected
5914 && pc_at_non_inline_function (aspace,
5915 ecs->event_thread->prev_pc,
5918 skip_inline_frames (ecs->ptid);
5920 /* Re-fetch current thread's frame in case that invalidated
5922 frame = get_current_frame ();
5923 gdbarch = get_frame_arch (frame);
5927 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5928 && ecs->event_thread->control.trap_expected
5929 && gdbarch_single_step_through_delay_p (gdbarch)
5930 && currently_stepping (ecs->event_thread))
5932 /* We're trying to step off a breakpoint. Turns out that we're
5933 also on an instruction that needs to be stepped multiple
5934 times before it's been fully executing. E.g., architectures
5935 with a delay slot. It needs to be stepped twice, once for
5936 the instruction and once for the delay slot. */
5937 int step_through_delay
5938 = gdbarch_single_step_through_delay (gdbarch, frame);
5940 if (debug_infrun && step_through_delay)
5941 fprintf_unfiltered (gdb_stdlog, "infrun: step through delay\n");
5942 if (ecs->event_thread->control.step_range_end == 0
5943 && step_through_delay)
5945 /* The user issued a continue when stopped at a breakpoint.
5946 Set up for another trap and get out of here. */
5947 ecs->event_thread->stepping_over_breakpoint = 1;
5951 else if (step_through_delay)
5953 /* The user issued a step when stopped at a breakpoint.
5954 Maybe we should stop, maybe we should not - the delay
5955 slot *might* correspond to a line of source. In any
5956 case, don't decide that here, just set
5957 ecs->stepping_over_breakpoint, making sure we
5958 single-step again before breakpoints are re-inserted. */
5959 ecs->event_thread->stepping_over_breakpoint = 1;
5963 /* See if there is a breakpoint/watchpoint/catchpoint/etc. that
5964 handles this event. */
5965 ecs->event_thread->control.stop_bpstat
5966 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
5967 stop_pc, ecs->ptid, &ecs->ws);
5969 /* Following in case break condition called a
5971 stop_print_frame = 1;
5973 /* This is where we handle "moribund" watchpoints. Unlike
5974 software breakpoints traps, hardware watchpoint traps are
5975 always distinguishable from random traps. If no high-level
5976 watchpoint is associated with the reported stop data address
5977 anymore, then the bpstat does not explain the signal ---
5978 simply make sure to ignore it if `stopped_by_watchpoint' is
5982 && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5983 && !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat,
5985 && stopped_by_watchpoint)
5986 fprintf_unfiltered (gdb_stdlog,
5987 "infrun: no user watchpoint explains "
5988 "watchpoint SIGTRAP, ignoring\n");
5990 /* NOTE: cagney/2003-03-29: These checks for a random signal
5991 at one stage in the past included checks for an inferior
5992 function call's call dummy's return breakpoint. The original
5993 comment, that went with the test, read:
5995 ``End of a stack dummy. Some systems (e.g. Sony news) give
5996 another signal besides SIGTRAP, so check here as well as
5999 If someone ever tries to get call dummys on a
6000 non-executable stack to work (where the target would stop
6001 with something like a SIGSEGV), then those tests might need
6002 to be re-instated. Given, however, that the tests were only
6003 enabled when momentary breakpoints were not being used, I
6004 suspect that it won't be the case.
6006 NOTE: kettenis/2004-02-05: Indeed such checks don't seem to
6007 be necessary for call dummies on a non-executable stack on
6010 /* See if the breakpoints module can explain the signal. */
6012 = !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat,
6013 ecs->event_thread->suspend.stop_signal);
6015 /* Maybe this was a trap for a software breakpoint that has since
6017 if (random_signal && target_stopped_by_sw_breakpoint ())
6019 if (program_breakpoint_here_p (gdbarch, stop_pc))
6021 struct regcache *regcache;
6024 /* Re-adjust PC to what the program would see if GDB was not
6026 regcache = get_thread_regcache (ecs->event_thread->ptid);
6027 decr_pc = gdbarch_decr_pc_after_break (gdbarch);
6030 struct cleanup *old_cleanups = make_cleanup (null_cleanup, NULL);
6032 if (record_full_is_used ())
6033 record_full_gdb_operation_disable_set ();
6035 regcache_write_pc (regcache, stop_pc + decr_pc);
6037 do_cleanups (old_cleanups);
6042 /* A delayed software breakpoint event. Ignore the trap. */
6044 fprintf_unfiltered (gdb_stdlog,
6045 "infrun: delayed software breakpoint "
6046 "trap, ignoring\n");
6051 /* Maybe this was a trap for a hardware breakpoint/watchpoint that
6052 has since been removed. */
6053 if (random_signal && target_stopped_by_hw_breakpoint ())
6055 /* A delayed hardware breakpoint event. Ignore the trap. */
6057 fprintf_unfiltered (gdb_stdlog,
6058 "infrun: delayed hardware breakpoint/watchpoint "
6059 "trap, ignoring\n");
6063 /* If not, perhaps stepping/nexting can. */
6065 random_signal = !(ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
6066 && currently_stepping (ecs->event_thread));
6068 /* Perhaps the thread hit a single-step breakpoint of _another_
6069 thread. Single-step breakpoints are transparent to the
6070 breakpoints module. */
6072 random_signal = !ecs->hit_singlestep_breakpoint;
6074 /* No? Perhaps we got a moribund watchpoint. */
6076 random_signal = !stopped_by_watchpoint;
6078 /* Always stop if the user explicitly requested this thread to
6080 if (ecs->event_thread->stop_requested)
6084 fprintf_unfiltered (gdb_stdlog, "infrun: user-requested stop\n");
6087 /* For the program's own signals, act according to
6088 the signal handling tables. */
6092 /* Signal not for debugging purposes. */
6093 struct inferior *inf = find_inferior_ptid (ecs->ptid);
6094 enum gdb_signal stop_signal = ecs->event_thread->suspend.stop_signal;
6097 fprintf_unfiltered (gdb_stdlog, "infrun: random signal (%s)\n",
6098 gdb_signal_to_symbol_string (stop_signal));
6100 stopped_by_random_signal = 1;
6102 /* Always stop on signals if we're either just gaining control
6103 of the program, or the user explicitly requested this thread
6104 to remain stopped. */
6105 if (stop_soon != NO_STOP_QUIETLY
6106 || ecs->event_thread->stop_requested
6108 && signal_stop_state (ecs->event_thread->suspend.stop_signal)))
6114 /* Notify observers the signal has "handle print" set. Note we
6115 returned early above if stopping; normal_stop handles the
6116 printing in that case. */
6117 if (signal_print[ecs->event_thread->suspend.stop_signal])
6119 /* The signal table tells us to print about this signal. */
6120 target_terminal_ours_for_output ();
6121 observer_notify_signal_received (ecs->event_thread->suspend.stop_signal);
6122 target_terminal_inferior ();
6125 /* Clear the signal if it should not be passed. */
6126 if (signal_program[ecs->event_thread->suspend.stop_signal] == 0)
6127 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
6129 if (ecs->event_thread->prev_pc == stop_pc
6130 && ecs->event_thread->control.trap_expected
6131 && ecs->event_thread->control.step_resume_breakpoint == NULL)
6133 /* We were just starting a new sequence, attempting to
6134 single-step off of a breakpoint and expecting a SIGTRAP.
6135 Instead this signal arrives. This signal will take us out
6136 of the stepping range so GDB needs to remember to, when
6137 the signal handler returns, resume stepping off that
6139 /* To simplify things, "continue" is forced to use the same
6140 code paths as single-step - set a breakpoint at the
6141 signal return address and then, once hit, step off that
6144 fprintf_unfiltered (gdb_stdlog,
6145 "infrun: signal arrived while stepping over "
6148 insert_hp_step_resume_breakpoint_at_frame (frame);
6149 ecs->event_thread->step_after_step_resume_breakpoint = 1;
6150 /* Reset trap_expected to ensure breakpoints are re-inserted. */
6151 ecs->event_thread->control.trap_expected = 0;
6153 /* If we were nexting/stepping some other thread, switch to
6154 it, so that we don't continue it, losing control. */
6155 if (!switch_back_to_stepped_thread (ecs))
6160 if (ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_0
6161 && (pc_in_thread_step_range (stop_pc, ecs->event_thread)
6162 || ecs->event_thread->control.step_range_end == 1)
6163 && frame_id_eq (get_stack_frame_id (frame),
6164 ecs->event_thread->control.step_stack_frame_id)
6165 && ecs->event_thread->control.step_resume_breakpoint == NULL)
6167 /* The inferior is about to take a signal that will take it
6168 out of the single step range. Set a breakpoint at the
6169 current PC (which is presumably where the signal handler
6170 will eventually return) and then allow the inferior to
6173 Note that this is only needed for a signal delivered
6174 while in the single-step range. Nested signals aren't a
6175 problem as they eventually all return. */
6177 fprintf_unfiltered (gdb_stdlog,
6178 "infrun: signal may take us out of "
6179 "single-step range\n");
6181 clear_step_over_info ();
6182 insert_hp_step_resume_breakpoint_at_frame (frame);
6183 ecs->event_thread->step_after_step_resume_breakpoint = 1;
6184 /* Reset trap_expected to ensure breakpoints are re-inserted. */
6185 ecs->event_thread->control.trap_expected = 0;
6190 /* Note: step_resume_breakpoint may be non-NULL. This occures
6191 when either there's a nested signal, or when there's a
6192 pending signal enabled just as the signal handler returns
6193 (leaving the inferior at the step-resume-breakpoint without
6194 actually executing it). Either way continue until the
6195 breakpoint is really hit. */
6197 if (!switch_back_to_stepped_thread (ecs))
6200 fprintf_unfiltered (gdb_stdlog,
6201 "infrun: random signal, keep going\n");
6208 process_event_stop_test (ecs);
6211 /* Come here when we've got some debug event / signal we can explain
6212 (IOW, not a random signal), and test whether it should cause a
6213 stop, or whether we should resume the inferior (transparently).
6214 E.g., could be a breakpoint whose condition evaluates false; we
6215 could be still stepping within the line; etc. */
6218 process_event_stop_test (struct execution_control_state *ecs)
6220 struct symtab_and_line stop_pc_sal;
6221 struct frame_info *frame;
6222 struct gdbarch *gdbarch;
6223 CORE_ADDR jmp_buf_pc;
6224 struct bpstat_what what;
6226 /* Handle cases caused by hitting a breakpoint. */
6228 frame = get_current_frame ();
6229 gdbarch = get_frame_arch (frame);
6231 what = bpstat_what (ecs->event_thread->control.stop_bpstat);
6233 if (what.call_dummy)
6235 stop_stack_dummy = what.call_dummy;
6238 /* A few breakpoint types have callbacks associated (e.g.,
6239 bp_jit_event). Run them now. */
6240 bpstat_run_callbacks (ecs->event_thread->control.stop_bpstat);
6242 /* If we hit an internal event that triggers symbol changes, the
6243 current frame will be invalidated within bpstat_what (e.g., if we
6244 hit an internal solib event). Re-fetch it. */
6245 frame = get_current_frame ();
6246 gdbarch = get_frame_arch (frame);
6248 switch (what.main_action)
6250 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
6251 /* If we hit the breakpoint at longjmp while stepping, we
6252 install a momentary breakpoint at the target of the
6256 fprintf_unfiltered (gdb_stdlog,
6257 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME\n");
6259 ecs->event_thread->stepping_over_breakpoint = 1;
6261 if (what.is_longjmp)
6263 struct value *arg_value;
6265 /* If we set the longjmp breakpoint via a SystemTap probe,
6266 then use it to extract the arguments. The destination PC
6267 is the third argument to the probe. */
6268 arg_value = probe_safe_evaluate_at_pc (frame, 2);
6271 jmp_buf_pc = value_as_address (arg_value);
6272 jmp_buf_pc = gdbarch_addr_bits_remove (gdbarch, jmp_buf_pc);
6274 else if (!gdbarch_get_longjmp_target_p (gdbarch)
6275 || !gdbarch_get_longjmp_target (gdbarch,
6276 frame, &jmp_buf_pc))
6279 fprintf_unfiltered (gdb_stdlog,
6280 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME "
6281 "(!gdbarch_get_longjmp_target)\n");
6286 /* Insert a breakpoint at resume address. */
6287 insert_longjmp_resume_breakpoint (gdbarch, jmp_buf_pc);
6290 check_exception_resume (ecs, frame);
6294 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
6296 struct frame_info *init_frame;
6298 /* There are several cases to consider.
6300 1. The initiating frame no longer exists. In this case we
6301 must stop, because the exception or longjmp has gone too
6304 2. The initiating frame exists, and is the same as the
6305 current frame. We stop, because the exception or longjmp
6308 3. The initiating frame exists and is different from the
6309 current frame. This means the exception or longjmp has
6310 been caught beneath the initiating frame, so keep going.
6312 4. longjmp breakpoint has been placed just to protect
6313 against stale dummy frames and user is not interested in
6314 stopping around longjmps. */
6317 fprintf_unfiltered (gdb_stdlog,
6318 "infrun: BPSTAT_WHAT_CLEAR_LONGJMP_RESUME\n");
6320 gdb_assert (ecs->event_thread->control.exception_resume_breakpoint
6322 delete_exception_resume_breakpoint (ecs->event_thread);
6324 if (what.is_longjmp)
6326 check_longjmp_breakpoint_for_call_dummy (ecs->event_thread);
6328 if (!frame_id_p (ecs->event_thread->initiating_frame))
6336 init_frame = frame_find_by_id (ecs->event_thread->initiating_frame);
6340 struct frame_id current_id
6341 = get_frame_id (get_current_frame ());
6342 if (frame_id_eq (current_id,
6343 ecs->event_thread->initiating_frame))
6345 /* Case 2. Fall through. */
6355 /* For Cases 1 and 2, remove the step-resume breakpoint, if it
6357 delete_step_resume_breakpoint (ecs->event_thread);
6359 end_stepping_range (ecs);
6363 case BPSTAT_WHAT_SINGLE:
6365 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_SINGLE\n");
6366 ecs->event_thread->stepping_over_breakpoint = 1;
6367 /* Still need to check other stuff, at least the case where we
6368 are stepping and step out of the right range. */
6371 case BPSTAT_WHAT_STEP_RESUME:
6373 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STEP_RESUME\n");
6375 delete_step_resume_breakpoint (ecs->event_thread);
6376 if (ecs->event_thread->control.proceed_to_finish
6377 && execution_direction == EXEC_REVERSE)
6379 struct thread_info *tp = ecs->event_thread;
6381 /* We are finishing a function in reverse, and just hit the
6382 step-resume breakpoint at the start address of the
6383 function, and we're almost there -- just need to back up
6384 by one more single-step, which should take us back to the
6386 tp->control.step_range_start = tp->control.step_range_end = 1;
6390 fill_in_stop_func (gdbarch, ecs);
6391 if (stop_pc == ecs->stop_func_start
6392 && execution_direction == EXEC_REVERSE)
6394 /* We are stepping over a function call in reverse, and just
6395 hit the step-resume breakpoint at the start address of
6396 the function. Go back to single-stepping, which should
6397 take us back to the function call. */
6398 ecs->event_thread->stepping_over_breakpoint = 1;
6404 case BPSTAT_WHAT_STOP_NOISY:
6406 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_NOISY\n");
6407 stop_print_frame = 1;
6409 /* Assume the thread stopped for a breapoint. We'll still check
6410 whether a/the breakpoint is there when the thread is next
6412 ecs->event_thread->stepping_over_breakpoint = 1;
6417 case BPSTAT_WHAT_STOP_SILENT:
6419 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_SILENT\n");
6420 stop_print_frame = 0;
6422 /* Assume the thread stopped for a breapoint. We'll still check
6423 whether a/the breakpoint is there when the thread is next
6425 ecs->event_thread->stepping_over_breakpoint = 1;
6429 case BPSTAT_WHAT_HP_STEP_RESUME:
6431 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_HP_STEP_RESUME\n");
6433 delete_step_resume_breakpoint (ecs->event_thread);
6434 if (ecs->event_thread->step_after_step_resume_breakpoint)
6436 /* Back when the step-resume breakpoint was inserted, we
6437 were trying to single-step off a breakpoint. Go back to
6439 ecs->event_thread->step_after_step_resume_breakpoint = 0;
6440 ecs->event_thread->stepping_over_breakpoint = 1;
6446 case BPSTAT_WHAT_KEEP_CHECKING:
6450 /* If we stepped a permanent breakpoint and we had a high priority
6451 step-resume breakpoint for the address we stepped, but we didn't
6452 hit it, then we must have stepped into the signal handler. The
6453 step-resume was only necessary to catch the case of _not_
6454 stepping into the handler, so delete it, and fall through to
6455 checking whether the step finished. */
6456 if (ecs->event_thread->stepped_breakpoint)
6458 struct breakpoint *sr_bp
6459 = ecs->event_thread->control.step_resume_breakpoint;
6462 && sr_bp->loc->permanent
6463 && sr_bp->type == bp_hp_step_resume
6464 && sr_bp->loc->address == ecs->event_thread->prev_pc)
6467 fprintf_unfiltered (gdb_stdlog,
6468 "infrun: stepped permanent breakpoint, stopped in "
6470 delete_step_resume_breakpoint (ecs->event_thread);
6471 ecs->event_thread->step_after_step_resume_breakpoint = 0;
6475 /* We come here if we hit a breakpoint but should not stop for it.
6476 Possibly we also were stepping and should stop for that. So fall
6477 through and test for stepping. But, if not stepping, do not
6480 /* In all-stop mode, if we're currently stepping but have stopped in
6481 some other thread, we need to switch back to the stepped thread. */
6482 if (switch_back_to_stepped_thread (ecs))
6485 if (ecs->event_thread->control.step_resume_breakpoint)
6488 fprintf_unfiltered (gdb_stdlog,
6489 "infrun: step-resume breakpoint is inserted\n");
6491 /* Having a step-resume breakpoint overrides anything
6492 else having to do with stepping commands until
6493 that breakpoint is reached. */
6498 if (ecs->event_thread->control.step_range_end == 0)
6501 fprintf_unfiltered (gdb_stdlog, "infrun: no stepping, continue\n");
6502 /* Likewise if we aren't even stepping. */
6507 /* Re-fetch current thread's frame in case the code above caused
6508 the frame cache to be re-initialized, making our FRAME variable
6509 a dangling pointer. */
6510 frame = get_current_frame ();
6511 gdbarch = get_frame_arch (frame);
6512 fill_in_stop_func (gdbarch, ecs);
6514 /* If stepping through a line, keep going if still within it.
6516 Note that step_range_end is the address of the first instruction
6517 beyond the step range, and NOT the address of the last instruction
6520 Note also that during reverse execution, we may be stepping
6521 through a function epilogue and therefore must detect when
6522 the current-frame changes in the middle of a line. */
6524 if (pc_in_thread_step_range (stop_pc, ecs->event_thread)
6525 && (execution_direction != EXEC_REVERSE
6526 || frame_id_eq (get_frame_id (frame),
6527 ecs->event_thread->control.step_frame_id)))
6531 (gdb_stdlog, "infrun: stepping inside range [%s-%s]\n",
6532 paddress (gdbarch, ecs->event_thread->control.step_range_start),
6533 paddress (gdbarch, ecs->event_thread->control.step_range_end));
6535 /* Tentatively re-enable range stepping; `resume' disables it if
6536 necessary (e.g., if we're stepping over a breakpoint or we
6537 have software watchpoints). */
6538 ecs->event_thread->control.may_range_step = 1;
6540 /* When stepping backward, stop at beginning of line range
6541 (unless it's the function entry point, in which case
6542 keep going back to the call point). */
6543 if (stop_pc == ecs->event_thread->control.step_range_start
6544 && stop_pc != ecs->stop_func_start
6545 && execution_direction == EXEC_REVERSE)
6546 end_stepping_range (ecs);
6553 /* We stepped out of the stepping range. */
6555 /* If we are stepping at the source level and entered the runtime
6556 loader dynamic symbol resolution code...
6558 EXEC_FORWARD: we keep on single stepping until we exit the run
6559 time loader code and reach the callee's address.
6561 EXEC_REVERSE: we've already executed the callee (backward), and
6562 the runtime loader code is handled just like any other
6563 undebuggable function call. Now we need only keep stepping
6564 backward through the trampoline code, and that's handled further
6565 down, so there is nothing for us to do here. */
6567 if (execution_direction != EXEC_REVERSE
6568 && ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
6569 && in_solib_dynsym_resolve_code (stop_pc))
6571 CORE_ADDR pc_after_resolver =
6572 gdbarch_skip_solib_resolver (gdbarch, stop_pc);
6575 fprintf_unfiltered (gdb_stdlog,
6576 "infrun: stepped into dynsym resolve code\n");
6578 if (pc_after_resolver)
6580 /* Set up a step-resume breakpoint at the address
6581 indicated by SKIP_SOLIB_RESOLVER. */
6582 struct symtab_and_line sr_sal;
6585 sr_sal.pc = pc_after_resolver;
6586 sr_sal.pspace = get_frame_program_space (frame);
6588 insert_step_resume_breakpoint_at_sal (gdbarch,
6589 sr_sal, null_frame_id);
6596 if (ecs->event_thread->control.step_range_end != 1
6597 && (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
6598 || ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
6599 && get_frame_type (frame) == SIGTRAMP_FRAME)
6602 fprintf_unfiltered (gdb_stdlog,
6603 "infrun: stepped into signal trampoline\n");
6604 /* The inferior, while doing a "step" or "next", has ended up in
6605 a signal trampoline (either by a signal being delivered or by
6606 the signal handler returning). Just single-step until the
6607 inferior leaves the trampoline (either by calling the handler
6613 /* If we're in the return path from a shared library trampoline,
6614 we want to proceed through the trampoline when stepping. */
6615 /* macro/2012-04-25: This needs to come before the subroutine
6616 call check below as on some targets return trampolines look
6617 like subroutine calls (MIPS16 return thunks). */
6618 if (gdbarch_in_solib_return_trampoline (gdbarch,
6619 stop_pc, ecs->stop_func_name)
6620 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
6622 /* Determine where this trampoline returns. */
6623 CORE_ADDR real_stop_pc;
6625 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
6628 fprintf_unfiltered (gdb_stdlog,
6629 "infrun: stepped into solib return tramp\n");
6631 /* Only proceed through if we know where it's going. */
6634 /* And put the step-breakpoint there and go until there. */
6635 struct symtab_and_line sr_sal;
6637 init_sal (&sr_sal); /* initialize to zeroes */
6638 sr_sal.pc = real_stop_pc;
6639 sr_sal.section = find_pc_overlay (sr_sal.pc);
6640 sr_sal.pspace = get_frame_program_space (frame);
6642 /* Do not specify what the fp should be when we stop since
6643 on some machines the prologue is where the new fp value
6645 insert_step_resume_breakpoint_at_sal (gdbarch,
6646 sr_sal, null_frame_id);
6648 /* Restart without fiddling with the step ranges or
6655 /* Check for subroutine calls. The check for the current frame
6656 equalling the step ID is not necessary - the check of the
6657 previous frame's ID is sufficient - but it is a common case and
6658 cheaper than checking the previous frame's ID.
6660 NOTE: frame_id_eq will never report two invalid frame IDs as
6661 being equal, so to get into this block, both the current and
6662 previous frame must have valid frame IDs. */
6663 /* The outer_frame_id check is a heuristic to detect stepping
6664 through startup code. If we step over an instruction which
6665 sets the stack pointer from an invalid value to a valid value,
6666 we may detect that as a subroutine call from the mythical
6667 "outermost" function. This could be fixed by marking
6668 outermost frames as !stack_p,code_p,special_p. Then the
6669 initial outermost frame, before sp was valid, would
6670 have code_addr == &_start. See the comment in frame_id_eq
6672 if (!frame_id_eq (get_stack_frame_id (frame),
6673 ecs->event_thread->control.step_stack_frame_id)
6674 && (frame_id_eq (frame_unwind_caller_id (get_current_frame ()),
6675 ecs->event_thread->control.step_stack_frame_id)
6676 && (!frame_id_eq (ecs->event_thread->control.step_stack_frame_id,
6678 || (ecs->event_thread->control.step_start_function
6679 != find_pc_function (stop_pc)))))
6681 CORE_ADDR real_stop_pc;
6684 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into subroutine\n");
6686 if (ecs->event_thread->control.step_over_calls == STEP_OVER_NONE)
6688 /* I presume that step_over_calls is only 0 when we're
6689 supposed to be stepping at the assembly language level
6690 ("stepi"). Just stop. */
6691 /* And this works the same backward as frontward. MVS */
6692 end_stepping_range (ecs);
6696 /* Reverse stepping through solib trampolines. */
6698 if (execution_direction == EXEC_REVERSE
6699 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE
6700 && (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
6701 || (ecs->stop_func_start == 0
6702 && in_solib_dynsym_resolve_code (stop_pc))))
6704 /* Any solib trampoline code can be handled in reverse
6705 by simply continuing to single-step. We have already
6706 executed the solib function (backwards), and a few
6707 steps will take us back through the trampoline to the
6713 if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
6715 /* We're doing a "next".
6717 Normal (forward) execution: set a breakpoint at the
6718 callee's return address (the address at which the caller
6721 Reverse (backward) execution. set the step-resume
6722 breakpoint at the start of the function that we just
6723 stepped into (backwards), and continue to there. When we
6724 get there, we'll need to single-step back to the caller. */
6726 if (execution_direction == EXEC_REVERSE)
6728 /* If we're already at the start of the function, we've either
6729 just stepped backward into a single instruction function,
6730 or stepped back out of a signal handler to the first instruction
6731 of the function. Just keep going, which will single-step back
6733 if (ecs->stop_func_start != stop_pc && ecs->stop_func_start != 0)
6735 struct symtab_and_line sr_sal;
6737 /* Normal function call return (static or dynamic). */
6739 sr_sal.pc = ecs->stop_func_start;
6740 sr_sal.pspace = get_frame_program_space (frame);
6741 insert_step_resume_breakpoint_at_sal (gdbarch,
6742 sr_sal, null_frame_id);
6746 insert_step_resume_breakpoint_at_caller (frame);
6752 /* If we are in a function call trampoline (a stub between the
6753 calling routine and the real function), locate the real
6754 function. That's what tells us (a) whether we want to step
6755 into it at all, and (b) what prologue we want to run to the
6756 end of, if we do step into it. */
6757 real_stop_pc = skip_language_trampoline (frame, stop_pc);
6758 if (real_stop_pc == 0)
6759 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
6760 if (real_stop_pc != 0)
6761 ecs->stop_func_start = real_stop_pc;
6763 if (real_stop_pc != 0 && in_solib_dynsym_resolve_code (real_stop_pc))
6765 struct symtab_and_line sr_sal;
6768 sr_sal.pc = ecs->stop_func_start;
6769 sr_sal.pspace = get_frame_program_space (frame);
6771 insert_step_resume_breakpoint_at_sal (gdbarch,
6772 sr_sal, null_frame_id);
6777 /* If we have line number information for the function we are
6778 thinking of stepping into and the function isn't on the skip
6781 If there are several symtabs at that PC (e.g. with include
6782 files), just want to know whether *any* of them have line
6783 numbers. find_pc_line handles this. */
6785 struct symtab_and_line tmp_sal;
6787 tmp_sal = find_pc_line (ecs->stop_func_start, 0);
6788 if (tmp_sal.line != 0
6789 && !function_name_is_marked_for_skip (ecs->stop_func_name,
6792 if (execution_direction == EXEC_REVERSE)
6793 handle_step_into_function_backward (gdbarch, ecs);
6795 handle_step_into_function (gdbarch, ecs);
6800 /* If we have no line number and the step-stop-if-no-debug is
6801 set, we stop the step so that the user has a chance to switch
6802 in assembly mode. */
6803 if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
6804 && step_stop_if_no_debug)
6806 end_stepping_range (ecs);
6810 if (execution_direction == EXEC_REVERSE)
6812 /* If we're already at the start of the function, we've either just
6813 stepped backward into a single instruction function without line
6814 number info, or stepped back out of a signal handler to the first
6815 instruction of the function without line number info. Just keep
6816 going, which will single-step back to the caller. */
6817 if (ecs->stop_func_start != stop_pc)
6819 /* Set a breakpoint at callee's start address.
6820 From there we can step once and be back in the caller. */
6821 struct symtab_and_line sr_sal;
6824 sr_sal.pc = ecs->stop_func_start;
6825 sr_sal.pspace = get_frame_program_space (frame);
6826 insert_step_resume_breakpoint_at_sal (gdbarch,
6827 sr_sal, null_frame_id);
6831 /* Set a breakpoint at callee's return address (the address
6832 at which the caller will resume). */
6833 insert_step_resume_breakpoint_at_caller (frame);
6839 /* Reverse stepping through solib trampolines. */
6841 if (execution_direction == EXEC_REVERSE
6842 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
6844 if (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
6845 || (ecs->stop_func_start == 0
6846 && in_solib_dynsym_resolve_code (stop_pc)))
6848 /* Any solib trampoline code can be handled in reverse
6849 by simply continuing to single-step. We have already
6850 executed the solib function (backwards), and a few
6851 steps will take us back through the trampoline to the
6856 else if (in_solib_dynsym_resolve_code (stop_pc))
6858 /* Stepped backward into the solib dynsym resolver.
6859 Set a breakpoint at its start and continue, then
6860 one more step will take us out. */
6861 struct symtab_and_line sr_sal;
6864 sr_sal.pc = ecs->stop_func_start;
6865 sr_sal.pspace = get_frame_program_space (frame);
6866 insert_step_resume_breakpoint_at_sal (gdbarch,
6867 sr_sal, null_frame_id);
6873 stop_pc_sal = find_pc_line (stop_pc, 0);
6875 /* NOTE: tausq/2004-05-24: This if block used to be done before all
6876 the trampoline processing logic, however, there are some trampolines
6877 that have no names, so we should do trampoline handling first. */
6878 if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
6879 && ecs->stop_func_name == NULL
6880 && stop_pc_sal.line == 0)
6883 fprintf_unfiltered (gdb_stdlog,
6884 "infrun: stepped into undebuggable function\n");
6886 /* The inferior just stepped into, or returned to, an
6887 undebuggable function (where there is no debugging information
6888 and no line number corresponding to the address where the
6889 inferior stopped). Since we want to skip this kind of code,
6890 we keep going until the inferior returns from this
6891 function - unless the user has asked us not to (via
6892 set step-mode) or we no longer know how to get back
6893 to the call site. */
6894 if (step_stop_if_no_debug
6895 || !frame_id_p (frame_unwind_caller_id (frame)))
6897 /* If we have no line number and the step-stop-if-no-debug
6898 is set, we stop the step so that the user has a chance to
6899 switch in assembly mode. */
6900 end_stepping_range (ecs);
6905 /* Set a breakpoint at callee's return address (the address
6906 at which the caller will resume). */
6907 insert_step_resume_breakpoint_at_caller (frame);
6913 if (ecs->event_thread->control.step_range_end == 1)
6915 /* It is stepi or nexti. We always want to stop stepping after
6918 fprintf_unfiltered (gdb_stdlog, "infrun: stepi/nexti\n");
6919 end_stepping_range (ecs);
6923 if (stop_pc_sal.line == 0)
6925 /* We have no line number information. That means to stop
6926 stepping (does this always happen right after one instruction,
6927 when we do "s" in a function with no line numbers,
6928 or can this happen as a result of a return or longjmp?). */
6930 fprintf_unfiltered (gdb_stdlog, "infrun: no line number info\n");
6931 end_stepping_range (ecs);
6935 /* Look for "calls" to inlined functions, part one. If the inline
6936 frame machinery detected some skipped call sites, we have entered
6937 a new inline function. */
6939 if (frame_id_eq (get_frame_id (get_current_frame ()),
6940 ecs->event_thread->control.step_frame_id)
6941 && inline_skipped_frames (ecs->ptid))
6943 struct symtab_and_line call_sal;
6946 fprintf_unfiltered (gdb_stdlog,
6947 "infrun: stepped into inlined function\n");
6949 find_frame_sal (get_current_frame (), &call_sal);
6951 if (ecs->event_thread->control.step_over_calls != STEP_OVER_ALL)
6953 /* For "step", we're going to stop. But if the call site
6954 for this inlined function is on the same source line as
6955 we were previously stepping, go down into the function
6956 first. Otherwise stop at the call site. */
6958 if (call_sal.line == ecs->event_thread->current_line
6959 && call_sal.symtab == ecs->event_thread->current_symtab)
6960 step_into_inline_frame (ecs->ptid);
6962 end_stepping_range (ecs);
6967 /* For "next", we should stop at the call site if it is on a
6968 different source line. Otherwise continue through the
6969 inlined function. */
6970 if (call_sal.line == ecs->event_thread->current_line
6971 && call_sal.symtab == ecs->event_thread->current_symtab)
6974 end_stepping_range (ecs);
6979 /* Look for "calls" to inlined functions, part two. If we are still
6980 in the same real function we were stepping through, but we have
6981 to go further up to find the exact frame ID, we are stepping
6982 through a more inlined call beyond its call site. */
6984 if (get_frame_type (get_current_frame ()) == INLINE_FRAME
6985 && !frame_id_eq (get_frame_id (get_current_frame ()),
6986 ecs->event_thread->control.step_frame_id)
6987 && stepped_in_from (get_current_frame (),
6988 ecs->event_thread->control.step_frame_id))
6991 fprintf_unfiltered (gdb_stdlog,
6992 "infrun: stepping through inlined function\n");
6994 if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
6997 end_stepping_range (ecs);
7001 if ((stop_pc == stop_pc_sal.pc)
7002 && (ecs->event_thread->current_line != stop_pc_sal.line
7003 || ecs->event_thread->current_symtab != stop_pc_sal.symtab))
7005 /* We are at the start of a different line. So stop. Note that
7006 we don't stop if we step into the middle of a different line.
7007 That is said to make things like for (;;) statements work
7010 fprintf_unfiltered (gdb_stdlog,
7011 "infrun: stepped to a different line\n");
7012 end_stepping_range (ecs);
7016 /* We aren't done stepping.
7018 Optimize by setting the stepping range to the line.
7019 (We might not be in the original line, but if we entered a
7020 new line in mid-statement, we continue stepping. This makes
7021 things like for(;;) statements work better.) */
7023 ecs->event_thread->control.step_range_start = stop_pc_sal.pc;
7024 ecs->event_thread->control.step_range_end = stop_pc_sal.end;
7025 ecs->event_thread->control.may_range_step = 1;
7026 set_step_info (frame, stop_pc_sal);
7029 fprintf_unfiltered (gdb_stdlog, "infrun: keep going\n");
7033 /* In all-stop mode, if we're currently stepping but have stopped in
7034 some other thread, we may need to switch back to the stepped
7035 thread. Returns true we set the inferior running, false if we left
7036 it stopped (and the event needs further processing). */
7039 switch_back_to_stepped_thread (struct execution_control_state *ecs)
7041 if (!target_is_non_stop_p ())
7043 struct thread_info *tp;
7044 struct thread_info *stepping_thread;
7046 /* If any thread is blocked on some internal breakpoint, and we
7047 simply need to step over that breakpoint to get it going
7048 again, do that first. */
7050 /* However, if we see an event for the stepping thread, then we
7051 know all other threads have been moved past their breakpoints
7052 already. Let the caller check whether the step is finished,
7053 etc., before deciding to move it past a breakpoint. */
7054 if (ecs->event_thread->control.step_range_end != 0)
7057 /* Check if the current thread is blocked on an incomplete
7058 step-over, interrupted by a random signal. */
7059 if (ecs->event_thread->control.trap_expected
7060 && ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_TRAP)
7064 fprintf_unfiltered (gdb_stdlog,
7065 "infrun: need to finish step-over of [%s]\n",
7066 target_pid_to_str (ecs->event_thread->ptid));
7072 /* Check if the current thread is blocked by a single-step
7073 breakpoint of another thread. */
7074 if (ecs->hit_singlestep_breakpoint)
7078 fprintf_unfiltered (gdb_stdlog,
7079 "infrun: need to step [%s] over single-step "
7081 target_pid_to_str (ecs->ptid));
7087 /* If this thread needs yet another step-over (e.g., stepping
7088 through a delay slot), do it first before moving on to
7090 if (thread_still_needs_step_over (ecs->event_thread))
7094 fprintf_unfiltered (gdb_stdlog,
7095 "infrun: thread [%s] still needs step-over\n",
7096 target_pid_to_str (ecs->event_thread->ptid));
7102 /* If scheduler locking applies even if not stepping, there's no
7103 need to walk over threads. Above we've checked whether the
7104 current thread is stepping. If some other thread not the
7105 event thread is stepping, then it must be that scheduler
7106 locking is not in effect. */
7107 if (schedlock_applies (ecs->event_thread))
7110 /* Otherwise, we no longer expect a trap in the current thread.
7111 Clear the trap_expected flag before switching back -- this is
7112 what keep_going does as well, if we call it. */
7113 ecs->event_thread->control.trap_expected = 0;
7115 /* Likewise, clear the signal if it should not be passed. */
7116 if (!signal_program[ecs->event_thread->suspend.stop_signal])
7117 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
7119 /* Do all pending step-overs before actually proceeding with
7121 if (start_step_over ())
7123 prepare_to_wait (ecs);
7127 /* Look for the stepping/nexting thread. */
7128 stepping_thread = NULL;
7130 ALL_NON_EXITED_THREADS (tp)
7132 /* Ignore threads of processes the caller is not
7135 && ptid_get_pid (tp->ptid) != ptid_get_pid (ecs->ptid))
7138 /* When stepping over a breakpoint, we lock all threads
7139 except the one that needs to move past the breakpoint.
7140 If a non-event thread has this set, the "incomplete
7141 step-over" check above should have caught it earlier. */
7142 if (tp->control.trap_expected)
7144 internal_error (__FILE__, __LINE__,
7145 "[%s] has inconsistent state: "
7146 "trap_expected=%d\n",
7147 target_pid_to_str (tp->ptid),
7148 tp->control.trap_expected);
7151 /* Did we find the stepping thread? */
7152 if (tp->control.step_range_end)
7154 /* Yep. There should only one though. */
7155 gdb_assert (stepping_thread == NULL);
7157 /* The event thread is handled at the top, before we
7159 gdb_assert (tp != ecs->event_thread);
7161 /* If some thread other than the event thread is
7162 stepping, then scheduler locking can't be in effect,
7163 otherwise we wouldn't have resumed the current event
7164 thread in the first place. */
7165 gdb_assert (!schedlock_applies (tp));
7167 stepping_thread = tp;
7171 if (stepping_thread != NULL)
7174 fprintf_unfiltered (gdb_stdlog,
7175 "infrun: switching back to stepped thread\n");
7177 if (keep_going_stepped_thread (stepping_thread))
7179 prepare_to_wait (ecs);
7188 /* Set a previously stepped thread back to stepping. Returns true on
7189 success, false if the resume is not possible (e.g., the thread
7193 keep_going_stepped_thread (struct thread_info *tp)
7195 struct frame_info *frame;
7196 struct execution_control_state ecss;
7197 struct execution_control_state *ecs = &ecss;
7199 /* If the stepping thread exited, then don't try to switch back and
7200 resume it, which could fail in several different ways depending
7201 on the target. Instead, just keep going.
7203 We can find a stepping dead thread in the thread list in two
7206 - The target supports thread exit events, and when the target
7207 tries to delete the thread from the thread list, inferior_ptid
7208 pointed at the exiting thread. In such case, calling
7209 delete_thread does not really remove the thread from the list;
7210 instead, the thread is left listed, with 'exited' state.
7212 - The target's debug interface does not support thread exit
7213 events, and so we have no idea whatsoever if the previously
7214 stepping thread is still alive. For that reason, we need to
7215 synchronously query the target now. */
7217 if (is_exited (tp->ptid)
7218 || !target_thread_alive (tp->ptid))
7221 fprintf_unfiltered (gdb_stdlog,
7222 "infrun: not resuming previously "
7223 "stepped thread, it has vanished\n");
7225 delete_thread (tp->ptid);
7230 fprintf_unfiltered (gdb_stdlog,
7231 "infrun: resuming previously stepped thread\n");
7233 reset_ecs (ecs, tp);
7234 switch_to_thread (tp->ptid);
7236 stop_pc = regcache_read_pc (get_thread_regcache (tp->ptid));
7237 frame = get_current_frame ();
7239 /* If the PC of the thread we were trying to single-step has
7240 changed, then that thread has trapped or been signaled, but the
7241 event has not been reported to GDB yet. Re-poll the target
7242 looking for this particular thread's event (i.e. temporarily
7243 enable schedlock) by:
7245 - setting a break at the current PC
7246 - resuming that particular thread, only (by setting trap
7249 This prevents us continuously moving the single-step breakpoint
7250 forward, one instruction at a time, overstepping. */
7252 if (stop_pc != tp->prev_pc)
7257 fprintf_unfiltered (gdb_stdlog,
7258 "infrun: expected thread advanced also (%s -> %s)\n",
7259 paddress (target_gdbarch (), tp->prev_pc),
7260 paddress (target_gdbarch (), stop_pc));
7262 /* Clear the info of the previous step-over, as it's no longer
7263 valid (if the thread was trying to step over a breakpoint, it
7264 has already succeeded). It's what keep_going would do too,
7265 if we called it. Do this before trying to insert the sss
7266 breakpoint, otherwise if we were previously trying to step
7267 over this exact address in another thread, the breakpoint is
7269 clear_step_over_info ();
7270 tp->control.trap_expected = 0;
7272 insert_single_step_breakpoint (get_frame_arch (frame),
7273 get_frame_address_space (frame),
7277 resume_ptid = internal_resume_ptid (tp->control.stepping_command);
7278 do_target_resume (resume_ptid, 0, GDB_SIGNAL_0);
7283 fprintf_unfiltered (gdb_stdlog,
7284 "infrun: expected thread still hasn't advanced\n");
7286 keep_going_pass_signal (ecs);
7291 /* Is thread TP in the middle of (software or hardware)
7292 single-stepping? (Note the result of this function must never be
7293 passed directly as target_resume's STEP parameter.) */
7296 currently_stepping (struct thread_info *tp)
7298 return ((tp->control.step_range_end
7299 && tp->control.step_resume_breakpoint == NULL)
7300 || tp->control.trap_expected
7301 || tp->stepped_breakpoint
7302 || bpstat_should_step ());
7305 /* Inferior has stepped into a subroutine call with source code that
7306 we should not step over. Do step to the first line of code in
7310 handle_step_into_function (struct gdbarch *gdbarch,
7311 struct execution_control_state *ecs)
7313 struct compunit_symtab *cust;
7314 struct symtab_and_line stop_func_sal, sr_sal;
7316 fill_in_stop_func (gdbarch, ecs);
7318 cust = find_pc_compunit_symtab (stop_pc);
7319 if (cust != NULL && compunit_language (cust) != language_asm)
7320 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
7321 ecs->stop_func_start);
7323 stop_func_sal = find_pc_line (ecs->stop_func_start, 0);
7324 /* Use the step_resume_break to step until the end of the prologue,
7325 even if that involves jumps (as it seems to on the vax under
7327 /* If the prologue ends in the middle of a source line, continue to
7328 the end of that source line (if it is still within the function).
7329 Otherwise, just go to end of prologue. */
7330 if (stop_func_sal.end
7331 && stop_func_sal.pc != ecs->stop_func_start
7332 && stop_func_sal.end < ecs->stop_func_end)
7333 ecs->stop_func_start = stop_func_sal.end;
7335 /* Architectures which require breakpoint adjustment might not be able
7336 to place a breakpoint at the computed address. If so, the test
7337 ``ecs->stop_func_start == stop_pc'' will never succeed. Adjust
7338 ecs->stop_func_start to an address at which a breakpoint may be
7339 legitimately placed.
7341 Note: kevinb/2004-01-19: On FR-V, if this adjustment is not
7342 made, GDB will enter an infinite loop when stepping through
7343 optimized code consisting of VLIW instructions which contain
7344 subinstructions corresponding to different source lines. On
7345 FR-V, it's not permitted to place a breakpoint on any but the
7346 first subinstruction of a VLIW instruction. When a breakpoint is
7347 set, GDB will adjust the breakpoint address to the beginning of
7348 the VLIW instruction. Thus, we need to make the corresponding
7349 adjustment here when computing the stop address. */
7351 if (gdbarch_adjust_breakpoint_address_p (gdbarch))
7353 ecs->stop_func_start
7354 = gdbarch_adjust_breakpoint_address (gdbarch,
7355 ecs->stop_func_start);
7358 if (ecs->stop_func_start == stop_pc)
7360 /* We are already there: stop now. */
7361 end_stepping_range (ecs);
7366 /* Put the step-breakpoint there and go until there. */
7367 init_sal (&sr_sal); /* initialize to zeroes */
7368 sr_sal.pc = ecs->stop_func_start;
7369 sr_sal.section = find_pc_overlay (ecs->stop_func_start);
7370 sr_sal.pspace = get_frame_program_space (get_current_frame ());
7372 /* Do not specify what the fp should be when we stop since on
7373 some machines the prologue is where the new fp value is
7375 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal, null_frame_id);
7377 /* And make sure stepping stops right away then. */
7378 ecs->event_thread->control.step_range_end
7379 = ecs->event_thread->control.step_range_start;
7384 /* Inferior has stepped backward into a subroutine call with source
7385 code that we should not step over. Do step to the beginning of the
7386 last line of code in it. */
7389 handle_step_into_function_backward (struct gdbarch *gdbarch,
7390 struct execution_control_state *ecs)
7392 struct compunit_symtab *cust;
7393 struct symtab_and_line stop_func_sal;
7395 fill_in_stop_func (gdbarch, ecs);
7397 cust = find_pc_compunit_symtab (stop_pc);
7398 if (cust != NULL && compunit_language (cust) != language_asm)
7399 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
7400 ecs->stop_func_start);
7402 stop_func_sal = find_pc_line (stop_pc, 0);
7404 /* OK, we're just going to keep stepping here. */
7405 if (stop_func_sal.pc == stop_pc)
7407 /* We're there already. Just stop stepping now. */
7408 end_stepping_range (ecs);
7412 /* Else just reset the step range and keep going.
7413 No step-resume breakpoint, they don't work for
7414 epilogues, which can have multiple entry paths. */
7415 ecs->event_thread->control.step_range_start = stop_func_sal.pc;
7416 ecs->event_thread->control.step_range_end = stop_func_sal.end;
7422 /* Insert a "step-resume breakpoint" at SR_SAL with frame ID SR_ID.
7423 This is used to both functions and to skip over code. */
7426 insert_step_resume_breakpoint_at_sal_1 (struct gdbarch *gdbarch,
7427 struct symtab_and_line sr_sal,
7428 struct frame_id sr_id,
7429 enum bptype sr_type)
7431 /* There should never be more than one step-resume or longjmp-resume
7432 breakpoint per thread, so we should never be setting a new
7433 step_resume_breakpoint when one is already active. */
7434 gdb_assert (inferior_thread ()->control.step_resume_breakpoint == NULL);
7435 gdb_assert (sr_type == bp_step_resume || sr_type == bp_hp_step_resume);
7438 fprintf_unfiltered (gdb_stdlog,
7439 "infrun: inserting step-resume breakpoint at %s\n",
7440 paddress (gdbarch, sr_sal.pc));
7442 inferior_thread ()->control.step_resume_breakpoint
7443 = set_momentary_breakpoint (gdbarch, sr_sal, sr_id, sr_type);
7447 insert_step_resume_breakpoint_at_sal (struct gdbarch *gdbarch,
7448 struct symtab_and_line sr_sal,
7449 struct frame_id sr_id)
7451 insert_step_resume_breakpoint_at_sal_1 (gdbarch,
7456 /* Insert a "high-priority step-resume breakpoint" at RETURN_FRAME.pc.
7457 This is used to skip a potential signal handler.
7459 This is called with the interrupted function's frame. The signal
7460 handler, when it returns, will resume the interrupted function at
7464 insert_hp_step_resume_breakpoint_at_frame (struct frame_info *return_frame)
7466 struct symtab_and_line sr_sal;
7467 struct gdbarch *gdbarch;
7469 gdb_assert (return_frame != NULL);
7470 init_sal (&sr_sal); /* initialize to zeros */
7472 gdbarch = get_frame_arch (return_frame);
7473 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch, get_frame_pc (return_frame));
7474 sr_sal.section = find_pc_overlay (sr_sal.pc);
7475 sr_sal.pspace = get_frame_program_space (return_frame);
7477 insert_step_resume_breakpoint_at_sal_1 (gdbarch, sr_sal,
7478 get_stack_frame_id (return_frame),
7482 /* Insert a "step-resume breakpoint" at the previous frame's PC. This
7483 is used to skip a function after stepping into it (for "next" or if
7484 the called function has no debugging information).
7486 The current function has almost always been reached by single
7487 stepping a call or return instruction. NEXT_FRAME belongs to the
7488 current function, and the breakpoint will be set at the caller's
7491 This is a separate function rather than reusing
7492 insert_hp_step_resume_breakpoint_at_frame in order to avoid
7493 get_prev_frame, which may stop prematurely (see the implementation
7494 of frame_unwind_caller_id for an example). */
7497 insert_step_resume_breakpoint_at_caller (struct frame_info *next_frame)
7499 struct symtab_and_line sr_sal;
7500 struct gdbarch *gdbarch;
7502 /* We shouldn't have gotten here if we don't know where the call site
7504 gdb_assert (frame_id_p (frame_unwind_caller_id (next_frame)));
7506 init_sal (&sr_sal); /* initialize to zeros */
7508 gdbarch = frame_unwind_caller_arch (next_frame);
7509 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch,
7510 frame_unwind_caller_pc (next_frame));
7511 sr_sal.section = find_pc_overlay (sr_sal.pc);
7512 sr_sal.pspace = frame_unwind_program_space (next_frame);
7514 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal,
7515 frame_unwind_caller_id (next_frame));
7518 /* Insert a "longjmp-resume" breakpoint at PC. This is used to set a
7519 new breakpoint at the target of a jmp_buf. The handling of
7520 longjmp-resume uses the same mechanisms used for handling
7521 "step-resume" breakpoints. */
7524 insert_longjmp_resume_breakpoint (struct gdbarch *gdbarch, CORE_ADDR pc)
7526 /* There should never be more than one longjmp-resume breakpoint per
7527 thread, so we should never be setting a new
7528 longjmp_resume_breakpoint when one is already active. */
7529 gdb_assert (inferior_thread ()->control.exception_resume_breakpoint == NULL);
7532 fprintf_unfiltered (gdb_stdlog,
7533 "infrun: inserting longjmp-resume breakpoint at %s\n",
7534 paddress (gdbarch, pc));
7536 inferior_thread ()->control.exception_resume_breakpoint =
7537 set_momentary_breakpoint_at_pc (gdbarch, pc, bp_longjmp_resume);
7540 /* Insert an exception resume breakpoint. TP is the thread throwing
7541 the exception. The block B is the block of the unwinder debug hook
7542 function. FRAME is the frame corresponding to the call to this
7543 function. SYM is the symbol of the function argument holding the
7544 target PC of the exception. */
7547 insert_exception_resume_breakpoint (struct thread_info *tp,
7548 const struct block *b,
7549 struct frame_info *frame,
7554 struct block_symbol vsym;
7555 struct value *value;
7557 struct breakpoint *bp;
7559 vsym = lookup_symbol (SYMBOL_LINKAGE_NAME (sym), b, VAR_DOMAIN, NULL);
7560 value = read_var_value (vsym.symbol, vsym.block, frame);
7561 /* If the value was optimized out, revert to the old behavior. */
7562 if (! value_optimized_out (value))
7564 handler = value_as_address (value);
7567 fprintf_unfiltered (gdb_stdlog,
7568 "infrun: exception resume at %lx\n",
7569 (unsigned long) handler);
7571 bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
7572 handler, bp_exception_resume);
7574 /* set_momentary_breakpoint_at_pc invalidates FRAME. */
7577 bp->thread = tp->global_num;
7578 inferior_thread ()->control.exception_resume_breakpoint = bp;
7581 CATCH (e, RETURN_MASK_ERROR)
7583 /* We want to ignore errors here. */
7588 /* A helper for check_exception_resume that sets an
7589 exception-breakpoint based on a SystemTap probe. */
7592 insert_exception_resume_from_probe (struct thread_info *tp,
7593 const struct bound_probe *probe,
7594 struct frame_info *frame)
7596 struct value *arg_value;
7598 struct breakpoint *bp;
7600 arg_value = probe_safe_evaluate_at_pc (frame, 1);
7604 handler = value_as_address (arg_value);
7607 fprintf_unfiltered (gdb_stdlog,
7608 "infrun: exception resume at %s\n",
7609 paddress (get_objfile_arch (probe->objfile),
7612 bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
7613 handler, bp_exception_resume);
7614 bp->thread = tp->global_num;
7615 inferior_thread ()->control.exception_resume_breakpoint = bp;
7618 /* This is called when an exception has been intercepted. Check to
7619 see whether the exception's destination is of interest, and if so,
7620 set an exception resume breakpoint there. */
7623 check_exception_resume (struct execution_control_state *ecs,
7624 struct frame_info *frame)
7626 struct bound_probe probe;
7627 struct symbol *func;
7629 /* First see if this exception unwinding breakpoint was set via a
7630 SystemTap probe point. If so, the probe has two arguments: the
7631 CFA and the HANDLER. We ignore the CFA, extract the handler, and
7632 set a breakpoint there. */
7633 probe = find_probe_by_pc (get_frame_pc (frame));
7636 insert_exception_resume_from_probe (ecs->event_thread, &probe, frame);
7640 func = get_frame_function (frame);
7646 const struct block *b;
7647 struct block_iterator iter;
7651 /* The exception breakpoint is a thread-specific breakpoint on
7652 the unwinder's debug hook, declared as:
7654 void _Unwind_DebugHook (void *cfa, void *handler);
7656 The CFA argument indicates the frame to which control is
7657 about to be transferred. HANDLER is the destination PC.
7659 We ignore the CFA and set a temporary breakpoint at HANDLER.
7660 This is not extremely efficient but it avoids issues in gdb
7661 with computing the DWARF CFA, and it also works even in weird
7662 cases such as throwing an exception from inside a signal
7665 b = SYMBOL_BLOCK_VALUE (func);
7666 ALL_BLOCK_SYMBOLS (b, iter, sym)
7668 if (!SYMBOL_IS_ARGUMENT (sym))
7675 insert_exception_resume_breakpoint (ecs->event_thread,
7681 CATCH (e, RETURN_MASK_ERROR)
7688 stop_waiting (struct execution_control_state *ecs)
7691 fprintf_unfiltered (gdb_stdlog, "infrun: stop_waiting\n");
7693 /* Let callers know we don't want to wait for the inferior anymore. */
7694 ecs->wait_some_more = 0;
7696 /* If all-stop, but the target is always in non-stop mode, stop all
7697 threads now that we're presenting the stop to the user. */
7698 if (!non_stop && target_is_non_stop_p ())
7699 stop_all_threads ();
7702 /* Like keep_going, but passes the signal to the inferior, even if the
7703 signal is set to nopass. */
7706 keep_going_pass_signal (struct execution_control_state *ecs)
7708 /* Make sure normal_stop is called if we get a QUIT handled before
7710 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
7712 gdb_assert (ptid_equal (ecs->event_thread->ptid, inferior_ptid));
7713 gdb_assert (!ecs->event_thread->resumed);
7715 /* Save the pc before execution, to compare with pc after stop. */
7716 ecs->event_thread->prev_pc
7717 = regcache_read_pc (get_thread_regcache (ecs->ptid));
7719 if (ecs->event_thread->control.trap_expected)
7721 struct thread_info *tp = ecs->event_thread;
7724 fprintf_unfiltered (gdb_stdlog,
7725 "infrun: %s has trap_expected set, "
7726 "resuming to collect trap\n",
7727 target_pid_to_str (tp->ptid));
7729 /* We haven't yet gotten our trap, and either: intercepted a
7730 non-signal event (e.g., a fork); or took a signal which we
7731 are supposed to pass through to the inferior. Simply
7733 discard_cleanups (old_cleanups);
7734 resume (ecs->event_thread->suspend.stop_signal);
7736 else if (step_over_info_valid_p ())
7738 /* Another thread is stepping over a breakpoint in-line. If
7739 this thread needs a step-over too, queue the request. In
7740 either case, this resume must be deferred for later. */
7741 struct thread_info *tp = ecs->event_thread;
7743 if (ecs->hit_singlestep_breakpoint
7744 || thread_still_needs_step_over (tp))
7747 fprintf_unfiltered (gdb_stdlog,
7748 "infrun: step-over already in progress: "
7749 "step-over for %s deferred\n",
7750 target_pid_to_str (tp->ptid));
7751 thread_step_over_chain_enqueue (tp);
7756 fprintf_unfiltered (gdb_stdlog,
7757 "infrun: step-over in progress: "
7758 "resume of %s deferred\n",
7759 target_pid_to_str (tp->ptid));
7762 discard_cleanups (old_cleanups);
7766 struct regcache *regcache = get_current_regcache ();
7769 step_over_what step_what;
7771 /* Either the trap was not expected, but we are continuing
7772 anyway (if we got a signal, the user asked it be passed to
7775 We got our expected trap, but decided we should resume from
7778 We're going to run this baby now!
7780 Note that insert_breakpoints won't try to re-insert
7781 already inserted breakpoints. Therefore, we don't
7782 care if breakpoints were already inserted, or not. */
7784 /* If we need to step over a breakpoint, and we're not using
7785 displaced stepping to do so, insert all breakpoints
7786 (watchpoints, etc.) but the one we're stepping over, step one
7787 instruction, and then re-insert the breakpoint when that step
7790 step_what = thread_still_needs_step_over (ecs->event_thread);
7792 remove_bp = (ecs->hit_singlestep_breakpoint
7793 || (step_what & STEP_OVER_BREAKPOINT));
7794 remove_wps = (step_what & STEP_OVER_WATCHPOINT);
7796 /* We can't use displaced stepping if we need to step past a
7797 watchpoint. The instruction copied to the scratch pad would
7798 still trigger the watchpoint. */
7800 && (remove_wps || !use_displaced_stepping (ecs->event_thread)))
7802 set_step_over_info (get_regcache_aspace (regcache),
7803 regcache_read_pc (regcache), remove_wps,
7804 ecs->event_thread->global_num);
7806 else if (remove_wps)
7807 set_step_over_info (NULL, 0, remove_wps, -1);
7809 /* If we now need to do an in-line step-over, we need to stop
7810 all other threads. Note this must be done before
7811 insert_breakpoints below, because that removes the breakpoint
7812 we're about to step over, otherwise other threads could miss
7814 if (step_over_info_valid_p () && target_is_non_stop_p ())
7815 stop_all_threads ();
7817 /* Stop stepping if inserting breakpoints fails. */
7820 insert_breakpoints ();
7822 CATCH (e, RETURN_MASK_ERROR)
7824 exception_print (gdb_stderr, e);
7826 discard_cleanups (old_cleanups);
7831 ecs->event_thread->control.trap_expected = (remove_bp || remove_wps);
7833 discard_cleanups (old_cleanups);
7834 resume (ecs->event_thread->suspend.stop_signal);
7837 prepare_to_wait (ecs);
7840 /* Called when we should continue running the inferior, because the
7841 current event doesn't cause a user visible stop. This does the
7842 resuming part; waiting for the next event is done elsewhere. */
7845 keep_going (struct execution_control_state *ecs)
7847 if (ecs->event_thread->control.trap_expected
7848 && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
7849 ecs->event_thread->control.trap_expected = 0;
7851 if (!signal_program[ecs->event_thread->suspend.stop_signal])
7852 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
7853 keep_going_pass_signal (ecs);
7856 /* This function normally comes after a resume, before
7857 handle_inferior_event exits. It takes care of any last bits of
7858 housekeeping, and sets the all-important wait_some_more flag. */
7861 prepare_to_wait (struct execution_control_state *ecs)
7864 fprintf_unfiltered (gdb_stdlog, "infrun: prepare_to_wait\n");
7866 ecs->wait_some_more = 1;
7868 if (!target_is_async_p ())
7869 mark_infrun_async_event_handler ();
7872 /* We are done with the step range of a step/next/si/ni command.
7873 Called once for each n of a "step n" operation. */
7876 end_stepping_range (struct execution_control_state *ecs)
7878 ecs->event_thread->control.stop_step = 1;
7882 /* Several print_*_reason functions to print why the inferior has stopped.
7883 We always print something when the inferior exits, or receives a signal.
7884 The rest of the cases are dealt with later on in normal_stop and
7885 print_it_typical. Ideally there should be a call to one of these
7886 print_*_reason functions functions from handle_inferior_event each time
7887 stop_waiting is called.
7889 Note that we don't call these directly, instead we delegate that to
7890 the interpreters, through observers. Interpreters then call these
7891 with whatever uiout is right. */
7894 print_end_stepping_range_reason (struct ui_out *uiout)
7896 /* For CLI-like interpreters, print nothing. */
7898 if (uiout->is_mi_like_p ())
7900 uiout->field_string ("reason",
7901 async_reason_lookup (EXEC_ASYNC_END_STEPPING_RANGE));
7906 print_signal_exited_reason (struct ui_out *uiout, enum gdb_signal siggnal)
7908 annotate_signalled ();
7909 if (uiout->is_mi_like_p ())
7911 ("reason", async_reason_lookup (EXEC_ASYNC_EXITED_SIGNALLED));
7912 uiout->text ("\nProgram terminated with signal ");
7913 annotate_signal_name ();
7914 uiout->field_string ("signal-name",
7915 gdb_signal_to_name (siggnal));
7916 annotate_signal_name_end ();
7918 annotate_signal_string ();
7919 uiout->field_string ("signal-meaning",
7920 gdb_signal_to_string (siggnal));
7921 annotate_signal_string_end ();
7922 uiout->text (".\n");
7923 uiout->text ("The program no longer exists.\n");
7927 print_exited_reason (struct ui_out *uiout, int exitstatus)
7929 struct inferior *inf = current_inferior ();
7930 const char *pidstr = target_pid_to_str (pid_to_ptid (inf->pid));
7932 annotate_exited (exitstatus);
7935 if (uiout->is_mi_like_p ())
7936 uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_EXITED));
7937 uiout->text ("[Inferior ");
7938 uiout->text (plongest (inf->num));
7940 uiout->text (pidstr);
7941 uiout->text (") exited with code ");
7942 uiout->field_fmt ("exit-code", "0%o", (unsigned int) exitstatus);
7943 uiout->text ("]\n");
7947 if (uiout->is_mi_like_p ())
7949 ("reason", async_reason_lookup (EXEC_ASYNC_EXITED_NORMALLY));
7950 uiout->text ("[Inferior ");
7951 uiout->text (plongest (inf->num));
7953 uiout->text (pidstr);
7954 uiout->text (") exited normally]\n");
7958 /* Some targets/architectures can do extra processing/display of
7959 segmentation faults. E.g., Intel MPX boundary faults.
7960 Call the architecture dependent function to handle the fault. */
7963 handle_segmentation_fault (struct ui_out *uiout)
7965 struct regcache *regcache = get_current_regcache ();
7966 struct gdbarch *gdbarch = get_regcache_arch (regcache);
7968 if (gdbarch_handle_segmentation_fault_p (gdbarch))
7969 gdbarch_handle_segmentation_fault (gdbarch, uiout);
7973 print_signal_received_reason (struct ui_out *uiout, enum gdb_signal siggnal)
7975 struct thread_info *thr = inferior_thread ();
7979 if (uiout->is_mi_like_p ())
7981 else if (show_thread_that_caused_stop ())
7985 uiout->text ("\nThread ");
7986 uiout->field_fmt ("thread-id", "%s", print_thread_id (thr));
7988 name = thr->name != NULL ? thr->name : target_thread_name (thr);
7991 uiout->text (" \"");
7992 uiout->field_fmt ("name", "%s", name);
7997 uiout->text ("\nProgram");
7999 if (siggnal == GDB_SIGNAL_0 && !uiout->is_mi_like_p ())
8000 uiout->text (" stopped");
8003 uiout->text (" received signal ");
8004 annotate_signal_name ();
8005 if (uiout->is_mi_like_p ())
8007 ("reason", async_reason_lookup (EXEC_ASYNC_SIGNAL_RECEIVED));
8008 uiout->field_string ("signal-name", gdb_signal_to_name (siggnal));
8009 annotate_signal_name_end ();
8011 annotate_signal_string ();
8012 uiout->field_string ("signal-meaning", gdb_signal_to_string (siggnal));
8014 if (siggnal == GDB_SIGNAL_SEGV)
8015 handle_segmentation_fault (uiout);
8017 annotate_signal_string_end ();
8019 uiout->text (".\n");
8023 print_no_history_reason (struct ui_out *uiout)
8025 uiout->text ("\nNo more reverse-execution history.\n");
8028 /* Print current location without a level number, if we have changed
8029 functions or hit a breakpoint. Print source line if we have one.
8030 bpstat_print contains the logic deciding in detail what to print,
8031 based on the event(s) that just occurred. */
8034 print_stop_location (struct target_waitstatus *ws)
8037 enum print_what source_flag;
8038 int do_frame_printing = 1;
8039 struct thread_info *tp = inferior_thread ();
8041 bpstat_ret = bpstat_print (tp->control.stop_bpstat, ws->kind);
8045 /* FIXME: cagney/2002-12-01: Given that a frame ID does (or
8046 should) carry around the function and does (or should) use
8047 that when doing a frame comparison. */
8048 if (tp->control.stop_step
8049 && frame_id_eq (tp->control.step_frame_id,
8050 get_frame_id (get_current_frame ()))
8051 && tp->control.step_start_function == find_pc_function (stop_pc))
8053 /* Finished step, just print source line. */
8054 source_flag = SRC_LINE;
8058 /* Print location and source line. */
8059 source_flag = SRC_AND_LOC;
8062 case PRINT_SRC_AND_LOC:
8063 /* Print location and source line. */
8064 source_flag = SRC_AND_LOC;
8066 case PRINT_SRC_ONLY:
8067 source_flag = SRC_LINE;
8070 /* Something bogus. */
8071 source_flag = SRC_LINE;
8072 do_frame_printing = 0;
8075 internal_error (__FILE__, __LINE__, _("Unknown value."));
8078 /* The behavior of this routine with respect to the source
8080 SRC_LINE: Print only source line
8081 LOCATION: Print only location
8082 SRC_AND_LOC: Print location and source line. */
8083 if (do_frame_printing)
8084 print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
8090 print_stop_event (struct ui_out *uiout)
8092 struct target_waitstatus last;
8094 struct thread_info *tp;
8096 get_last_target_status (&last_ptid, &last);
8099 scoped_restore save_uiout = make_scoped_restore (¤t_uiout, uiout);
8101 print_stop_location (&last);
8103 /* Display the auto-display expressions. */
8107 tp = inferior_thread ();
8108 if (tp->thread_fsm != NULL
8109 && thread_fsm_finished_p (tp->thread_fsm))
8111 struct return_value_info *rv;
8113 rv = thread_fsm_return_value (tp->thread_fsm);
8115 print_return_value (uiout, rv);
8122 maybe_remove_breakpoints (void)
8124 if (!breakpoints_should_be_inserted_now () && target_has_execution)
8126 if (remove_breakpoints ())
8128 target_terminal_ours_for_output ();
8129 printf_filtered (_("Cannot remove breakpoints because "
8130 "program is no longer writable.\nFurther "
8131 "execution is probably impossible.\n"));
8136 /* The execution context that just caused a normal stop. */
8143 /* The event PTID. */
8147 /* If stopp for a thread event, this is the thread that caused the
8149 struct thread_info *thread;
8151 /* The inferior that caused the stop. */
8155 /* Returns a new stop context. If stopped for a thread event, this
8156 takes a strong reference to the thread. */
8158 static struct stop_context *
8159 save_stop_context (void)
8161 struct stop_context *sc = XNEW (struct stop_context);
8163 sc->stop_id = get_stop_id ();
8164 sc->ptid = inferior_ptid;
8165 sc->inf_num = current_inferior ()->num;
8167 if (!ptid_equal (inferior_ptid, null_ptid))
8169 /* Take a strong reference so that the thread can't be deleted
8171 sc->thread = inferior_thread ();
8172 sc->thread->incref ();
8180 /* Release a stop context previously created with save_stop_context.
8181 Releases the strong reference to the thread as well. */
8184 release_stop_context_cleanup (void *arg)
8186 struct stop_context *sc = (struct stop_context *) arg;
8188 if (sc->thread != NULL)
8189 sc->thread->decref ();
8193 /* Return true if the current context no longer matches the saved stop
8197 stop_context_changed (struct stop_context *prev)
8199 if (!ptid_equal (prev->ptid, inferior_ptid))
8201 if (prev->inf_num != current_inferior ()->num)
8203 if (prev->thread != NULL && prev->thread->state != THREAD_STOPPED)
8205 if (get_stop_id () != prev->stop_id)
8215 struct target_waitstatus last;
8217 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
8220 get_last_target_status (&last_ptid, &last);
8224 /* If an exception is thrown from this point on, make sure to
8225 propagate GDB's knowledge of the executing state to the
8226 frontend/user running state. A QUIT is an easy exception to see
8227 here, so do this before any filtered output. */
8229 make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
8230 else if (last.kind == TARGET_WAITKIND_SIGNALLED
8231 || last.kind == TARGET_WAITKIND_EXITED)
8233 /* On some targets, we may still have live threads in the
8234 inferior when we get a process exit event. E.g., for
8235 "checkpoint", when the current checkpoint/fork exits,
8236 linux-fork.c automatically switches to another fork from
8237 within target_mourn_inferior. */
8238 if (!ptid_equal (inferior_ptid, null_ptid))
8240 pid_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
8241 make_cleanup (finish_thread_state_cleanup, &pid_ptid);
8244 else if (last.kind != TARGET_WAITKIND_NO_RESUMED)
8245 make_cleanup (finish_thread_state_cleanup, &inferior_ptid);
8247 /* As we're presenting a stop, and potentially removing breakpoints,
8248 update the thread list so we can tell whether there are threads
8249 running on the target. With target remote, for example, we can
8250 only learn about new threads when we explicitly update the thread
8251 list. Do this before notifying the interpreters about signal
8252 stops, end of stepping ranges, etc., so that the "new thread"
8253 output is emitted before e.g., "Program received signal FOO",
8254 instead of after. */
8255 update_thread_list ();
8257 if (last.kind == TARGET_WAITKIND_STOPPED && stopped_by_random_signal)
8258 observer_notify_signal_received (inferior_thread ()->suspend.stop_signal);
8260 /* As with the notification of thread events, we want to delay
8261 notifying the user that we've switched thread context until
8262 the inferior actually stops.
8264 There's no point in saying anything if the inferior has exited.
8265 Note that SIGNALLED here means "exited with a signal", not
8266 "received a signal".
8268 Also skip saying anything in non-stop mode. In that mode, as we
8269 don't want GDB to switch threads behind the user's back, to avoid
8270 races where the user is typing a command to apply to thread x,
8271 but GDB switches to thread y before the user finishes entering
8272 the command, fetch_inferior_event installs a cleanup to restore
8273 the current thread back to the thread the user had selected right
8274 after this event is handled, so we're not really switching, only
8275 informing of a stop. */
8277 && !ptid_equal (previous_inferior_ptid, inferior_ptid)
8278 && target_has_execution
8279 && last.kind != TARGET_WAITKIND_SIGNALLED
8280 && last.kind != TARGET_WAITKIND_EXITED
8281 && last.kind != TARGET_WAITKIND_NO_RESUMED)
8283 SWITCH_THRU_ALL_UIS ()
8285 target_terminal_ours_for_output ();
8286 printf_filtered (_("[Switching to %s]\n"),
8287 target_pid_to_str (inferior_ptid));
8288 annotate_thread_changed ();
8290 previous_inferior_ptid = inferior_ptid;
8293 if (last.kind == TARGET_WAITKIND_NO_RESUMED)
8295 SWITCH_THRU_ALL_UIS ()
8296 if (current_ui->prompt_state == PROMPT_BLOCKED)
8298 target_terminal_ours_for_output ();
8299 printf_filtered (_("No unwaited-for children left.\n"));
8303 /* Note: this depends on the update_thread_list call above. */
8304 maybe_remove_breakpoints ();
8306 /* If an auto-display called a function and that got a signal,
8307 delete that auto-display to avoid an infinite recursion. */
8309 if (stopped_by_random_signal)
8310 disable_current_display ();
8312 SWITCH_THRU_ALL_UIS ()
8314 async_enable_stdin ();
8317 /* Let the user/frontend see the threads as stopped. */
8318 do_cleanups (old_chain);
8320 /* Select innermost stack frame - i.e., current frame is frame 0,
8321 and current location is based on that. Handle the case where the
8322 dummy call is returning after being stopped. E.g. the dummy call
8323 previously hit a breakpoint. (If the dummy call returns
8324 normally, we won't reach here.) Do this before the stop hook is
8325 run, so that it doesn't get to see the temporary dummy frame,
8326 which is not where we'll present the stop. */
8327 if (has_stack_frames ())
8329 if (stop_stack_dummy == STOP_STACK_DUMMY)
8331 /* Pop the empty frame that contains the stack dummy. This
8332 also restores inferior state prior to the call (struct
8333 infcall_suspend_state). */
8334 struct frame_info *frame = get_current_frame ();
8336 gdb_assert (get_frame_type (frame) == DUMMY_FRAME);
8338 /* frame_pop calls reinit_frame_cache as the last thing it
8339 does which means there's now no selected frame. */
8342 select_frame (get_current_frame ());
8344 /* Set the current source location. */
8345 set_current_sal_from_frame (get_current_frame ());
8348 /* Look up the hook_stop and run it (CLI internally handles problem
8349 of stop_command's pre-hook not existing). */
8350 if (stop_command != NULL)
8352 struct stop_context *saved_context = save_stop_context ();
8353 struct cleanup *old_chain
8354 = make_cleanup (release_stop_context_cleanup, saved_context);
8356 catch_errors (hook_stop_stub, stop_command,
8357 "Error while running hook_stop:\n", RETURN_MASK_ALL);
8359 /* If the stop hook resumes the target, then there's no point in
8360 trying to notify about the previous stop; its context is
8361 gone. Likewise if the command switches thread or inferior --
8362 the observers would print a stop for the wrong
8364 if (stop_context_changed (saved_context))
8366 do_cleanups (old_chain);
8369 do_cleanups (old_chain);
8372 /* Notify observers about the stop. This is where the interpreters
8373 print the stop event. */
8374 if (!ptid_equal (inferior_ptid, null_ptid))
8375 observer_notify_normal_stop (inferior_thread ()->control.stop_bpstat,
8378 observer_notify_normal_stop (NULL, stop_print_frame);
8380 annotate_stopped ();
8382 if (target_has_execution)
8384 if (last.kind != TARGET_WAITKIND_SIGNALLED
8385 && last.kind != TARGET_WAITKIND_EXITED)
8386 /* Delete the breakpoint we stopped at, if it wants to be deleted.
8387 Delete any breakpoint that is to be deleted at the next stop. */
8388 breakpoint_auto_delete (inferior_thread ()->control.stop_bpstat);
8391 /* Try to get rid of automatically added inferiors that are no
8392 longer needed. Keeping those around slows down things linearly.
8393 Note that this never removes the current inferior. */
8400 hook_stop_stub (void *cmd)
8402 execute_cmd_pre_hook ((struct cmd_list_element *) cmd);
8407 signal_stop_state (int signo)
8409 return signal_stop[signo];
8413 signal_print_state (int signo)
8415 return signal_print[signo];
8419 signal_pass_state (int signo)
8421 return signal_program[signo];
8425 signal_cache_update (int signo)
8429 for (signo = 0; signo < (int) GDB_SIGNAL_LAST; signo++)
8430 signal_cache_update (signo);
8435 signal_pass[signo] = (signal_stop[signo] == 0
8436 && signal_print[signo] == 0
8437 && signal_program[signo] == 1
8438 && signal_catch[signo] == 0);
8442 signal_stop_update (int signo, int state)
8444 int ret = signal_stop[signo];
8446 signal_stop[signo] = state;
8447 signal_cache_update (signo);
8452 signal_print_update (int signo, int state)
8454 int ret = signal_print[signo];
8456 signal_print[signo] = state;
8457 signal_cache_update (signo);
8462 signal_pass_update (int signo, int state)
8464 int ret = signal_program[signo];
8466 signal_program[signo] = state;
8467 signal_cache_update (signo);
8471 /* Update the global 'signal_catch' from INFO and notify the
8475 signal_catch_update (const unsigned int *info)
8479 for (i = 0; i < GDB_SIGNAL_LAST; ++i)
8480 signal_catch[i] = info[i] > 0;
8481 signal_cache_update (-1);
8482 target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
8486 sig_print_header (void)
8488 printf_filtered (_("Signal Stop\tPrint\tPass "
8489 "to program\tDescription\n"));
8493 sig_print_info (enum gdb_signal oursig)
8495 const char *name = gdb_signal_to_name (oursig);
8496 int name_padding = 13 - strlen (name);
8498 if (name_padding <= 0)
8501 printf_filtered ("%s", name);
8502 printf_filtered ("%*.*s ", name_padding, name_padding, " ");
8503 printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
8504 printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
8505 printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
8506 printf_filtered ("%s\n", gdb_signal_to_string (oursig));
8509 /* Specify how various signals in the inferior should be handled. */
8512 handle_command (char *args, int from_tty)
8515 int digits, wordlen;
8516 int sigfirst, signum, siglast;
8517 enum gdb_signal oursig;
8520 unsigned char *sigs;
8521 struct cleanup *old_chain;
8525 error_no_arg (_("signal to handle"));
8528 /* Allocate and zero an array of flags for which signals to handle. */
8530 nsigs = (int) GDB_SIGNAL_LAST;
8531 sigs = (unsigned char *) alloca (nsigs);
8532 memset (sigs, 0, nsigs);
8534 /* Break the command line up into args. */
8536 argv = gdb_buildargv (args);
8537 old_chain = make_cleanup_freeargv (argv);
8539 /* Walk through the args, looking for signal oursigs, signal names, and
8540 actions. Signal numbers and signal names may be interspersed with
8541 actions, with the actions being performed for all signals cumulatively
8542 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
8544 while (*argv != NULL)
8546 wordlen = strlen (*argv);
8547 for (digits = 0; isdigit ((*argv)[digits]); digits++)
8551 sigfirst = siglast = -1;
8553 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
8555 /* Apply action to all signals except those used by the
8556 debugger. Silently skip those. */
8559 siglast = nsigs - 1;
8561 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
8563 SET_SIGS (nsigs, sigs, signal_stop);
8564 SET_SIGS (nsigs, sigs, signal_print);
8566 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
8568 UNSET_SIGS (nsigs, sigs, signal_program);
8570 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
8572 SET_SIGS (nsigs, sigs, signal_print);
8574 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
8576 SET_SIGS (nsigs, sigs, signal_program);
8578 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
8580 UNSET_SIGS (nsigs, sigs, signal_stop);
8582 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
8584 SET_SIGS (nsigs, sigs, signal_program);
8586 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
8588 UNSET_SIGS (nsigs, sigs, signal_print);
8589 UNSET_SIGS (nsigs, sigs, signal_stop);
8591 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
8593 UNSET_SIGS (nsigs, sigs, signal_program);
8595 else if (digits > 0)
8597 /* It is numeric. The numeric signal refers to our own
8598 internal signal numbering from target.h, not to host/target
8599 signal number. This is a feature; users really should be
8600 using symbolic names anyway, and the common ones like
8601 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
8603 sigfirst = siglast = (int)
8604 gdb_signal_from_command (atoi (*argv));
8605 if ((*argv)[digits] == '-')
8608 gdb_signal_from_command (atoi ((*argv) + digits + 1));
8610 if (sigfirst > siglast)
8612 /* Bet he didn't figure we'd think of this case... */
8620 oursig = gdb_signal_from_name (*argv);
8621 if (oursig != GDB_SIGNAL_UNKNOWN)
8623 sigfirst = siglast = (int) oursig;
8627 /* Not a number and not a recognized flag word => complain. */
8628 error (_("Unrecognized or ambiguous flag word: \"%s\"."), *argv);
8632 /* If any signal numbers or symbol names were found, set flags for
8633 which signals to apply actions to. */
8635 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
8637 switch ((enum gdb_signal) signum)
8639 case GDB_SIGNAL_TRAP:
8640 case GDB_SIGNAL_INT:
8641 if (!allsigs && !sigs[signum])
8643 if (query (_("%s is used by the debugger.\n\
8644 Are you sure you want to change it? "),
8645 gdb_signal_to_name ((enum gdb_signal) signum)))
8651 printf_unfiltered (_("Not confirmed, unchanged.\n"));
8652 gdb_flush (gdb_stdout);
8657 case GDB_SIGNAL_DEFAULT:
8658 case GDB_SIGNAL_UNKNOWN:
8659 /* Make sure that "all" doesn't print these. */
8670 for (signum = 0; signum < nsigs; signum++)
8673 signal_cache_update (-1);
8674 target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
8675 target_program_signals ((int) GDB_SIGNAL_LAST, signal_program);
8679 /* Show the results. */
8680 sig_print_header ();
8681 for (; signum < nsigs; signum++)
8683 sig_print_info ((enum gdb_signal) signum);
8689 do_cleanups (old_chain);
8692 /* Complete the "handle" command. */
8694 static VEC (char_ptr) *
8695 handle_completer (struct cmd_list_element *ignore,
8696 const char *text, const char *word)
8698 VEC (char_ptr) *vec_signals, *vec_keywords, *return_val;
8699 static const char * const keywords[] =
8713 vec_signals = signal_completer (ignore, text, word);
8714 vec_keywords = complete_on_enum (keywords, word, word);
8716 return_val = VEC_merge (char_ptr, vec_signals, vec_keywords);
8717 VEC_free (char_ptr, vec_signals);
8718 VEC_free (char_ptr, vec_keywords);
8723 gdb_signal_from_command (int num)
8725 if (num >= 1 && num <= 15)
8726 return (enum gdb_signal) num;
8727 error (_("Only signals 1-15 are valid as numeric signals.\n\
8728 Use \"info signals\" for a list of symbolic signals."));
8731 /* Print current contents of the tables set by the handle command.
8732 It is possible we should just be printing signals actually used
8733 by the current target (but for things to work right when switching
8734 targets, all signals should be in the signal tables). */
8737 signals_info (char *signum_exp, int from_tty)
8739 enum gdb_signal oursig;
8741 sig_print_header ();
8745 /* First see if this is a symbol name. */
8746 oursig = gdb_signal_from_name (signum_exp);
8747 if (oursig == GDB_SIGNAL_UNKNOWN)
8749 /* No, try numeric. */
8751 gdb_signal_from_command (parse_and_eval_long (signum_exp));
8753 sig_print_info (oursig);
8757 printf_filtered ("\n");
8758 /* These ugly casts brought to you by the native VAX compiler. */
8759 for (oursig = GDB_SIGNAL_FIRST;
8760 (int) oursig < (int) GDB_SIGNAL_LAST;
8761 oursig = (enum gdb_signal) ((int) oursig + 1))
8765 if (oursig != GDB_SIGNAL_UNKNOWN
8766 && oursig != GDB_SIGNAL_DEFAULT && oursig != GDB_SIGNAL_0)
8767 sig_print_info (oursig);
8770 printf_filtered (_("\nUse the \"handle\" command "
8771 "to change these tables.\n"));
8774 /* The $_siginfo convenience variable is a bit special. We don't know
8775 for sure the type of the value until we actually have a chance to
8776 fetch the data. The type can change depending on gdbarch, so it is
8777 also dependent on which thread you have selected.
8779 1. making $_siginfo be an internalvar that creates a new value on
8782 2. making the value of $_siginfo be an lval_computed value. */
8784 /* This function implements the lval_computed support for reading a
8788 siginfo_value_read (struct value *v)
8790 LONGEST transferred;
8792 /* If we can access registers, so can we access $_siginfo. Likewise
8794 validate_registers_access ();
8797 target_read (¤t_target, TARGET_OBJECT_SIGNAL_INFO,
8799 value_contents_all_raw (v),
8801 TYPE_LENGTH (value_type (v)));
8803 if (transferred != TYPE_LENGTH (value_type (v)))
8804 error (_("Unable to read siginfo"));
8807 /* This function implements the lval_computed support for writing a
8811 siginfo_value_write (struct value *v, struct value *fromval)
8813 LONGEST transferred;
8815 /* If we can access registers, so can we access $_siginfo. Likewise
8817 validate_registers_access ();
8819 transferred = target_write (¤t_target,
8820 TARGET_OBJECT_SIGNAL_INFO,
8822 value_contents_all_raw (fromval),
8824 TYPE_LENGTH (value_type (fromval)));
8826 if (transferred != TYPE_LENGTH (value_type (fromval)))
8827 error (_("Unable to write siginfo"));
8830 static const struct lval_funcs siginfo_value_funcs =
8836 /* Return a new value with the correct type for the siginfo object of
8837 the current thread using architecture GDBARCH. Return a void value
8838 if there's no object available. */
8840 static struct value *
8841 siginfo_make_value (struct gdbarch *gdbarch, struct internalvar *var,
8844 if (target_has_stack
8845 && !ptid_equal (inferior_ptid, null_ptid)
8846 && gdbarch_get_siginfo_type_p (gdbarch))
8848 struct type *type = gdbarch_get_siginfo_type (gdbarch);
8850 return allocate_computed_value (type, &siginfo_value_funcs, NULL);
8853 return allocate_value (builtin_type (gdbarch)->builtin_void);
8857 /* infcall_suspend_state contains state about the program itself like its
8858 registers and any signal it received when it last stopped.
8859 This state must be restored regardless of how the inferior function call
8860 ends (either successfully, or after it hits a breakpoint or signal)
8861 if the program is to properly continue where it left off. */
8863 struct infcall_suspend_state
8865 struct thread_suspend_state thread_suspend;
8869 struct regcache *registers;
8871 /* Format of SIGINFO_DATA or NULL if it is not present. */
8872 struct gdbarch *siginfo_gdbarch;
8874 /* The inferior format depends on SIGINFO_GDBARCH and it has a length of
8875 TYPE_LENGTH (gdbarch_get_siginfo_type ()). For different gdbarch the
8876 content would be invalid. */
8877 gdb_byte *siginfo_data;
8880 struct infcall_suspend_state *
8881 save_infcall_suspend_state (void)
8883 struct infcall_suspend_state *inf_state;
8884 struct thread_info *tp = inferior_thread ();
8885 struct regcache *regcache = get_current_regcache ();
8886 struct gdbarch *gdbarch = get_regcache_arch (regcache);
8887 gdb_byte *siginfo_data = NULL;
8889 if (gdbarch_get_siginfo_type_p (gdbarch))
8891 struct type *type = gdbarch_get_siginfo_type (gdbarch);
8892 size_t len = TYPE_LENGTH (type);
8893 struct cleanup *back_to;
8895 siginfo_data = (gdb_byte *) xmalloc (len);
8896 back_to = make_cleanup (xfree, siginfo_data);
8898 if (target_read (¤t_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
8899 siginfo_data, 0, len) == len)
8900 discard_cleanups (back_to);
8903 /* Errors ignored. */
8904 do_cleanups (back_to);
8905 siginfo_data = NULL;
8909 inf_state = XCNEW (struct infcall_suspend_state);
8913 inf_state->siginfo_gdbarch = gdbarch;
8914 inf_state->siginfo_data = siginfo_data;
8917 inf_state->thread_suspend = tp->suspend;
8919 /* run_inferior_call will not use the signal due to its `proceed' call with
8920 GDB_SIGNAL_0 anyway. */
8921 tp->suspend.stop_signal = GDB_SIGNAL_0;
8923 inf_state->stop_pc = stop_pc;
8925 inf_state->registers = regcache_dup (regcache);
8930 /* Restore inferior session state to INF_STATE. */
8933 restore_infcall_suspend_state (struct infcall_suspend_state *inf_state)
8935 struct thread_info *tp = inferior_thread ();
8936 struct regcache *regcache = get_current_regcache ();
8937 struct gdbarch *gdbarch = get_regcache_arch (regcache);
8939 tp->suspend = inf_state->thread_suspend;
8941 stop_pc = inf_state->stop_pc;
8943 if (inf_state->siginfo_gdbarch == gdbarch)
8945 struct type *type = gdbarch_get_siginfo_type (gdbarch);
8947 /* Errors ignored. */
8948 target_write (¤t_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
8949 inf_state->siginfo_data, 0, TYPE_LENGTH (type));
8952 /* The inferior can be gone if the user types "print exit(0)"
8953 (and perhaps other times). */
8954 if (target_has_execution)
8955 /* NB: The register write goes through to the target. */
8956 regcache_cpy (regcache, inf_state->registers);
8958 discard_infcall_suspend_state (inf_state);
8962 do_restore_infcall_suspend_state_cleanup (void *state)
8964 restore_infcall_suspend_state ((struct infcall_suspend_state *) state);
8968 make_cleanup_restore_infcall_suspend_state
8969 (struct infcall_suspend_state *inf_state)
8971 return make_cleanup (do_restore_infcall_suspend_state_cleanup, inf_state);
8975 discard_infcall_suspend_state (struct infcall_suspend_state *inf_state)
8977 regcache_xfree (inf_state->registers);
8978 xfree (inf_state->siginfo_data);
8983 get_infcall_suspend_state_regcache (struct infcall_suspend_state *inf_state)
8985 return inf_state->registers;
8988 /* infcall_control_state contains state regarding gdb's control of the
8989 inferior itself like stepping control. It also contains session state like
8990 the user's currently selected frame. */
8992 struct infcall_control_state
8994 struct thread_control_state thread_control;
8995 struct inferior_control_state inferior_control;
8998 enum stop_stack_kind stop_stack_dummy;
8999 int stopped_by_random_signal;
9001 /* ID if the selected frame when the inferior function call was made. */
9002 struct frame_id selected_frame_id;
9005 /* Save all of the information associated with the inferior<==>gdb
9008 struct infcall_control_state *
9009 save_infcall_control_state (void)
9011 struct infcall_control_state *inf_status =
9012 XNEW (struct infcall_control_state);
9013 struct thread_info *tp = inferior_thread ();
9014 struct inferior *inf = current_inferior ();
9016 inf_status->thread_control = tp->control;
9017 inf_status->inferior_control = inf->control;
9019 tp->control.step_resume_breakpoint = NULL;
9020 tp->control.exception_resume_breakpoint = NULL;
9022 /* Save original bpstat chain to INF_STATUS; replace it in TP with copy of
9023 chain. If caller's caller is walking the chain, they'll be happier if we
9024 hand them back the original chain when restore_infcall_control_state is
9026 tp->control.stop_bpstat = bpstat_copy (tp->control.stop_bpstat);
9029 inf_status->stop_stack_dummy = stop_stack_dummy;
9030 inf_status->stopped_by_random_signal = stopped_by_random_signal;
9032 inf_status->selected_frame_id = get_frame_id (get_selected_frame (NULL));
9038 restore_selected_frame (void *args)
9040 struct frame_id *fid = (struct frame_id *) args;
9041 struct frame_info *frame;
9043 frame = frame_find_by_id (*fid);
9045 /* If inf_status->selected_frame_id is NULL, there was no previously
9049 warning (_("Unable to restore previously selected frame."));
9053 select_frame (frame);
9058 /* Restore inferior session state to INF_STATUS. */
9061 restore_infcall_control_state (struct infcall_control_state *inf_status)
9063 struct thread_info *tp = inferior_thread ();
9064 struct inferior *inf = current_inferior ();
9066 if (tp->control.step_resume_breakpoint)
9067 tp->control.step_resume_breakpoint->disposition = disp_del_at_next_stop;
9069 if (tp->control.exception_resume_breakpoint)
9070 tp->control.exception_resume_breakpoint->disposition
9071 = disp_del_at_next_stop;
9073 /* Handle the bpstat_copy of the chain. */
9074 bpstat_clear (&tp->control.stop_bpstat);
9076 tp->control = inf_status->thread_control;
9077 inf->control = inf_status->inferior_control;
9080 stop_stack_dummy = inf_status->stop_stack_dummy;
9081 stopped_by_random_signal = inf_status->stopped_by_random_signal;
9083 if (target_has_stack)
9085 /* The point of catch_errors is that if the stack is clobbered,
9086 walking the stack might encounter a garbage pointer and
9087 error() trying to dereference it. */
9089 (restore_selected_frame, &inf_status->selected_frame_id,
9090 "Unable to restore previously selected frame:\n",
9091 RETURN_MASK_ERROR) == 0)
9092 /* Error in restoring the selected frame. Select the innermost
9094 select_frame (get_current_frame ());
9101 do_restore_infcall_control_state_cleanup (void *sts)
9103 restore_infcall_control_state ((struct infcall_control_state *) sts);
9107 make_cleanup_restore_infcall_control_state
9108 (struct infcall_control_state *inf_status)
9110 return make_cleanup (do_restore_infcall_control_state_cleanup, inf_status);
9114 discard_infcall_control_state (struct infcall_control_state *inf_status)
9116 if (inf_status->thread_control.step_resume_breakpoint)
9117 inf_status->thread_control.step_resume_breakpoint->disposition
9118 = disp_del_at_next_stop;
9120 if (inf_status->thread_control.exception_resume_breakpoint)
9121 inf_status->thread_control.exception_resume_breakpoint->disposition
9122 = disp_del_at_next_stop;
9124 /* See save_infcall_control_state for info on stop_bpstat. */
9125 bpstat_clear (&inf_status->thread_control.stop_bpstat);
9130 /* restore_inferior_ptid() will be used by the cleanup machinery
9131 to restore the inferior_ptid value saved in a call to
9132 save_inferior_ptid(). */
9135 restore_inferior_ptid (void *arg)
9137 ptid_t *saved_ptid_ptr = (ptid_t *) arg;
9139 inferior_ptid = *saved_ptid_ptr;
9143 /* Save the value of inferior_ptid so that it may be restored by a
9144 later call to do_cleanups(). Returns the struct cleanup pointer
9145 needed for later doing the cleanup. */
9148 save_inferior_ptid (void)
9150 ptid_t *saved_ptid_ptr = XNEW (ptid_t);
9152 *saved_ptid_ptr = inferior_ptid;
9153 return make_cleanup (restore_inferior_ptid, saved_ptid_ptr);
9159 clear_exit_convenience_vars (void)
9161 clear_internalvar (lookup_internalvar ("_exitsignal"));
9162 clear_internalvar (lookup_internalvar ("_exitcode"));
9166 /* User interface for reverse debugging:
9167 Set exec-direction / show exec-direction commands
9168 (returns error unless target implements to_set_exec_direction method). */
9170 enum exec_direction_kind execution_direction = EXEC_FORWARD;
9171 static const char exec_forward[] = "forward";
9172 static const char exec_reverse[] = "reverse";
9173 static const char *exec_direction = exec_forward;
9174 static const char *const exec_direction_names[] = {
9181 set_exec_direction_func (char *args, int from_tty,
9182 struct cmd_list_element *cmd)
9184 if (target_can_execute_reverse)
9186 if (!strcmp (exec_direction, exec_forward))
9187 execution_direction = EXEC_FORWARD;
9188 else if (!strcmp (exec_direction, exec_reverse))
9189 execution_direction = EXEC_REVERSE;
9193 exec_direction = exec_forward;
9194 error (_("Target does not support this operation."));
9199 show_exec_direction_func (struct ui_file *out, int from_tty,
9200 struct cmd_list_element *cmd, const char *value)
9202 switch (execution_direction) {
9204 fprintf_filtered (out, _("Forward.\n"));
9207 fprintf_filtered (out, _("Reverse.\n"));
9210 internal_error (__FILE__, __LINE__,
9211 _("bogus execution_direction value: %d"),
9212 (int) execution_direction);
9217 show_schedule_multiple (struct ui_file *file, int from_tty,
9218 struct cmd_list_element *c, const char *value)
9220 fprintf_filtered (file, _("Resuming the execution of threads "
9221 "of all processes is %s.\n"), value);
9224 /* Implementation of `siginfo' variable. */
9226 static const struct internalvar_funcs siginfo_funcs =
9233 /* Callback for infrun's target events source. This is marked when a
9234 thread has a pending status to process. */
9237 infrun_async_inferior_event_handler (gdb_client_data data)
9239 inferior_event_handler (INF_REG_EVENT, NULL);
9243 _initialize_infrun (void)
9247 struct cmd_list_element *c;
9249 /* Register extra event sources in the event loop. */
9250 infrun_async_inferior_event_token
9251 = create_async_event_handler (infrun_async_inferior_event_handler, NULL);
9253 add_info ("signals", signals_info, _("\
9254 What debugger does when program gets various signals.\n\
9255 Specify a signal as argument to print info on that signal only."));
9256 add_info_alias ("handle", "signals", 0);
9258 c = add_com ("handle", class_run, handle_command, _("\
9259 Specify how to handle signals.\n\
9260 Usage: handle SIGNAL [ACTIONS]\n\
9261 Args are signals and actions to apply to those signals.\n\
9262 If no actions are specified, the current settings for the specified signals\n\
9263 will be displayed instead.\n\
9265 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
9266 from 1-15 are allowed for compatibility with old versions of GDB.\n\
9267 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
9268 The special arg \"all\" is recognized to mean all signals except those\n\
9269 used by the debugger, typically SIGTRAP and SIGINT.\n\
9271 Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
9272 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
9273 Stop means reenter debugger if this signal happens (implies print).\n\
9274 Print means print a message if this signal happens.\n\
9275 Pass means let program see this signal; otherwise program doesn't know.\n\
9276 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
9277 Pass and Stop may be combined.\n\
9279 Multiple signals may be specified. Signal numbers and signal names\n\
9280 may be interspersed with actions, with the actions being performed for\n\
9281 all signals cumulatively specified."));
9282 set_cmd_completer (c, handle_completer);
9285 stop_command = add_cmd ("stop", class_obscure,
9286 not_just_help_class_command, _("\
9287 There is no `stop' command, but you can set a hook on `stop'.\n\
9288 This allows you to set a list of commands to be run each time execution\n\
9289 of the program stops."), &cmdlist);
9291 add_setshow_zuinteger_cmd ("infrun", class_maintenance, &debug_infrun, _("\
9292 Set inferior debugging."), _("\
9293 Show inferior debugging."), _("\
9294 When non-zero, inferior specific debugging is enabled."),
9297 &setdebuglist, &showdebuglist);
9299 add_setshow_boolean_cmd ("displaced", class_maintenance,
9300 &debug_displaced, _("\
9301 Set displaced stepping debugging."), _("\
9302 Show displaced stepping debugging."), _("\
9303 When non-zero, displaced stepping specific debugging is enabled."),
9305 show_debug_displaced,
9306 &setdebuglist, &showdebuglist);
9308 add_setshow_boolean_cmd ("non-stop", no_class,
9310 Set whether gdb controls the inferior in non-stop mode."), _("\
9311 Show whether gdb controls the inferior in non-stop mode."), _("\
9312 When debugging a multi-threaded program and this setting is\n\
9313 off (the default, also called all-stop mode), when one thread stops\n\
9314 (for a breakpoint, watchpoint, exception, or similar events), GDB stops\n\
9315 all other threads in the program while you interact with the thread of\n\
9316 interest. When you continue or step a thread, you can allow the other\n\
9317 threads to run, or have them remain stopped, but while you inspect any\n\
9318 thread's state, all threads stop.\n\
9320 In non-stop mode, when one thread stops, other threads can continue\n\
9321 to run freely. You'll be able to step each thread independently,\n\
9322 leave it stopped or free to run as needed."),
9328 numsigs = (int) GDB_SIGNAL_LAST;
9329 signal_stop = XNEWVEC (unsigned char, numsigs);
9330 signal_print = XNEWVEC (unsigned char, numsigs);
9331 signal_program = XNEWVEC (unsigned char, numsigs);
9332 signal_catch = XNEWVEC (unsigned char, numsigs);
9333 signal_pass = XNEWVEC (unsigned char, numsigs);
9334 for (i = 0; i < numsigs; i++)
9337 signal_print[i] = 1;
9338 signal_program[i] = 1;
9339 signal_catch[i] = 0;
9342 /* Signals caused by debugger's own actions should not be given to
9343 the program afterwards.
9345 Do not deliver GDB_SIGNAL_TRAP by default, except when the user
9346 explicitly specifies that it should be delivered to the target
9347 program. Typically, that would occur when a user is debugging a
9348 target monitor on a simulator: the target monitor sets a
9349 breakpoint; the simulator encounters this breakpoint and halts
9350 the simulation handing control to GDB; GDB, noting that the stop
9351 address doesn't map to any known breakpoint, returns control back
9352 to the simulator; the simulator then delivers the hardware
9353 equivalent of a GDB_SIGNAL_TRAP to the program being
9355 signal_program[GDB_SIGNAL_TRAP] = 0;
9356 signal_program[GDB_SIGNAL_INT] = 0;
9358 /* Signals that are not errors should not normally enter the debugger. */
9359 signal_stop[GDB_SIGNAL_ALRM] = 0;
9360 signal_print[GDB_SIGNAL_ALRM] = 0;
9361 signal_stop[GDB_SIGNAL_VTALRM] = 0;
9362 signal_print[GDB_SIGNAL_VTALRM] = 0;
9363 signal_stop[GDB_SIGNAL_PROF] = 0;
9364 signal_print[GDB_SIGNAL_PROF] = 0;
9365 signal_stop[GDB_SIGNAL_CHLD] = 0;
9366 signal_print[GDB_SIGNAL_CHLD] = 0;
9367 signal_stop[GDB_SIGNAL_IO] = 0;
9368 signal_print[GDB_SIGNAL_IO] = 0;
9369 signal_stop[GDB_SIGNAL_POLL] = 0;
9370 signal_print[GDB_SIGNAL_POLL] = 0;
9371 signal_stop[GDB_SIGNAL_URG] = 0;
9372 signal_print[GDB_SIGNAL_URG] = 0;
9373 signal_stop[GDB_SIGNAL_WINCH] = 0;
9374 signal_print[GDB_SIGNAL_WINCH] = 0;
9375 signal_stop[GDB_SIGNAL_PRIO] = 0;
9376 signal_print[GDB_SIGNAL_PRIO] = 0;
9378 /* These signals are used internally by user-level thread
9379 implementations. (See signal(5) on Solaris.) Like the above
9380 signals, a healthy program receives and handles them as part of
9381 its normal operation. */
9382 signal_stop[GDB_SIGNAL_LWP] = 0;
9383 signal_print[GDB_SIGNAL_LWP] = 0;
9384 signal_stop[GDB_SIGNAL_WAITING] = 0;
9385 signal_print[GDB_SIGNAL_WAITING] = 0;
9386 signal_stop[GDB_SIGNAL_CANCEL] = 0;
9387 signal_print[GDB_SIGNAL_CANCEL] = 0;
9388 signal_stop[GDB_SIGNAL_LIBRT] = 0;
9389 signal_print[GDB_SIGNAL_LIBRT] = 0;
9391 /* Update cached state. */
9392 signal_cache_update (-1);
9394 add_setshow_zinteger_cmd ("stop-on-solib-events", class_support,
9395 &stop_on_solib_events, _("\
9396 Set stopping for shared library events."), _("\
9397 Show stopping for shared library events."), _("\
9398 If nonzero, gdb will give control to the user when the dynamic linker\n\
9399 notifies gdb of shared library events. The most common event of interest\n\
9400 to the user would be loading/unloading of a new library."),
9401 set_stop_on_solib_events,
9402 show_stop_on_solib_events,
9403 &setlist, &showlist);
9405 add_setshow_enum_cmd ("follow-fork-mode", class_run,
9406 follow_fork_mode_kind_names,
9407 &follow_fork_mode_string, _("\
9408 Set debugger response to a program call of fork or vfork."), _("\
9409 Show debugger response to a program call of fork or vfork."), _("\
9410 A fork or vfork creates a new process. follow-fork-mode can be:\n\
9411 parent - the original process is debugged after a fork\n\
9412 child - the new process is debugged after a fork\n\
9413 The unfollowed process will continue to run.\n\
9414 By default, the debugger will follow the parent process."),
9416 show_follow_fork_mode_string,
9417 &setlist, &showlist);
9419 add_setshow_enum_cmd ("follow-exec-mode", class_run,
9420 follow_exec_mode_names,
9421 &follow_exec_mode_string, _("\
9422 Set debugger response to a program call of exec."), _("\
9423 Show debugger response to a program call of exec."), _("\
9424 An exec call replaces the program image of a process.\n\
9426 follow-exec-mode can be:\n\
9428 new - the debugger creates a new inferior and rebinds the process\n\
9429 to this new inferior. The program the process was running before\n\
9430 the exec call can be restarted afterwards by restarting the original\n\
9433 same - the debugger keeps the process bound to the same inferior.\n\
9434 The new executable image replaces the previous executable loaded in\n\
9435 the inferior. Restarting the inferior after the exec call restarts\n\
9436 the executable the process was running after the exec call.\n\
9438 By default, the debugger will use the same inferior."),
9440 show_follow_exec_mode_string,
9441 &setlist, &showlist);
9443 add_setshow_enum_cmd ("scheduler-locking", class_run,
9444 scheduler_enums, &scheduler_mode, _("\
9445 Set mode for locking scheduler during execution."), _("\
9446 Show mode for locking scheduler during execution."), _("\
9447 off == no locking (threads may preempt at any time)\n\
9448 on == full locking (no thread except the current thread may run)\n\
9449 This applies to both normal execution and replay mode.\n\
9450 step == scheduler locked during stepping commands (step, next, stepi, nexti).\n\
9451 In this mode, other threads may run during other commands.\n\
9452 This applies to both normal execution and replay mode.\n\
9453 replay == scheduler locked in replay mode and unlocked during normal execution."),
9454 set_schedlock_func, /* traps on target vector */
9455 show_scheduler_mode,
9456 &setlist, &showlist);
9458 add_setshow_boolean_cmd ("schedule-multiple", class_run, &sched_multi, _("\
9459 Set mode for resuming threads of all processes."), _("\
9460 Show mode for resuming threads of all processes."), _("\
9461 When on, execution commands (such as 'continue' or 'next') resume all\n\
9462 threads of all processes. When off (which is the default), execution\n\
9463 commands only resume the threads of the current process. The set of\n\
9464 threads that are resumed is further refined by the scheduler-locking\n\
9465 mode (see help set scheduler-locking)."),
9467 show_schedule_multiple,
9468 &setlist, &showlist);
9470 add_setshow_boolean_cmd ("step-mode", class_run, &step_stop_if_no_debug, _("\
9471 Set mode of the step operation."), _("\
9472 Show mode of the step operation."), _("\
9473 When set, doing a step over a function without debug line information\n\
9474 will stop at the first instruction of that function. Otherwise, the\n\
9475 function is skipped and the step command stops at a different source line."),
9477 show_step_stop_if_no_debug,
9478 &setlist, &showlist);
9480 add_setshow_auto_boolean_cmd ("displaced-stepping", class_run,
9481 &can_use_displaced_stepping, _("\
9482 Set debugger's willingness to use displaced stepping."), _("\
9483 Show debugger's willingness to use displaced stepping."), _("\
9484 If on, gdb will use displaced stepping to step over breakpoints if it is\n\
9485 supported by the target architecture. If off, gdb will not use displaced\n\
9486 stepping to step over breakpoints, even if such is supported by the target\n\
9487 architecture. If auto (which is the default), gdb will use displaced stepping\n\
9488 if the target architecture supports it and non-stop mode is active, but will not\n\
9489 use it in all-stop mode (see help set non-stop)."),
9491 show_can_use_displaced_stepping,
9492 &setlist, &showlist);
9494 add_setshow_enum_cmd ("exec-direction", class_run, exec_direction_names,
9495 &exec_direction, _("Set direction of execution.\n\
9496 Options are 'forward' or 'reverse'."),
9497 _("Show direction of execution (forward/reverse)."),
9498 _("Tells gdb whether to execute forward or backward."),
9499 set_exec_direction_func, show_exec_direction_func,
9500 &setlist, &showlist);
9502 /* Set/show detach-on-fork: user-settable mode. */
9504 add_setshow_boolean_cmd ("detach-on-fork", class_run, &detach_fork, _("\
9505 Set whether gdb will detach the child of a fork."), _("\
9506 Show whether gdb will detach the child of a fork."), _("\
9507 Tells gdb whether to detach the child of a fork."),
9508 NULL, NULL, &setlist, &showlist);
9510 /* Set/show disable address space randomization mode. */
9512 add_setshow_boolean_cmd ("disable-randomization", class_support,
9513 &disable_randomization, _("\
9514 Set disabling of debuggee's virtual address space randomization."), _("\
9515 Show disabling of debuggee's virtual address space randomization."), _("\
9516 When this mode is on (which is the default), randomization of the virtual\n\
9517 address space is disabled. Standalone programs run with the randomization\n\
9518 enabled by default on some platforms."),
9519 &set_disable_randomization,
9520 &show_disable_randomization,
9521 &setlist, &showlist);
9523 /* ptid initializations */
9524 inferior_ptid = null_ptid;
9525 target_last_wait_ptid = minus_one_ptid;
9527 observer_attach_thread_ptid_changed (infrun_thread_ptid_changed);
9528 observer_attach_thread_stop_requested (infrun_thread_stop_requested);
9529 observer_attach_thread_exit (infrun_thread_thread_exit);
9530 observer_attach_inferior_exit (infrun_inferior_exit);
9532 /* Explicitly create without lookup, since that tries to create a
9533 value with a void typed value, and when we get here, gdbarch
9534 isn't initialized yet. At this point, we're quite sure there
9535 isn't another convenience variable of the same name. */
9536 create_internalvar_type_lazy ("_siginfo", &siginfo_funcs, NULL);
9538 add_setshow_boolean_cmd ("observer", no_class,
9539 &observer_mode_1, _("\
9540 Set whether gdb controls the inferior in observer mode."), _("\
9541 Show whether gdb controls the inferior in observer mode."), _("\
9542 In observer mode, GDB can get data from the inferior, but not\n\
9543 affect its execution. Registers and memory may not be changed,\n\
9544 breakpoints may not be set, and the program cannot be interrupted\n\