1 /* Target-struct-independent code to start (run) and stop an inferior
4 Copyright (C) 1986-2015 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"
67 /* Prototypes for local functions */
69 static void signals_info (char *, int);
71 static void handle_command (char *, int);
73 static void sig_print_info (enum gdb_signal);
75 static void sig_print_header (void);
77 static void resume_cleanups (void *);
79 static int hook_stop_stub (void *);
81 static int restore_selected_frame (void *);
83 static int follow_fork (void);
85 static int follow_fork_inferior (int follow_child, int detach_fork);
87 static void follow_inferior_reset_breakpoints (void);
89 static void set_schedlock_func (char *args, int from_tty,
90 struct cmd_list_element *c);
92 static int currently_stepping (struct thread_info *tp);
94 void _initialize_infrun (void);
96 void nullify_last_target_wait_ptid (void);
98 static void insert_hp_step_resume_breakpoint_at_frame (struct frame_info *);
100 static void insert_step_resume_breakpoint_at_caller (struct frame_info *);
102 static void insert_longjmp_resume_breakpoint (struct gdbarch *, CORE_ADDR);
104 static int maybe_software_singlestep (struct gdbarch *gdbarch, CORE_ADDR pc);
106 /* Asynchronous signal handler registered as event loop source for
107 when we have pending events ready to be passed to the core. */
108 static struct async_event_handler *infrun_async_inferior_event_token;
110 /* Stores whether infrun_async was previously enabled or disabled.
111 Starts off as -1, indicating "never enabled/disabled". */
112 static int infrun_is_async = -1;
117 infrun_async (int enable)
119 if (infrun_is_async != enable)
121 infrun_is_async = enable;
124 fprintf_unfiltered (gdb_stdlog,
125 "infrun: infrun_async(%d)\n",
129 mark_async_event_handler (infrun_async_inferior_event_token);
131 clear_async_event_handler (infrun_async_inferior_event_token);
138 mark_infrun_async_event_handler (void)
140 mark_async_event_handler (infrun_async_inferior_event_token);
143 /* When set, stop the 'step' command if we enter a function which has
144 no line number information. The normal behavior is that we step
145 over such function. */
146 int step_stop_if_no_debug = 0;
148 show_step_stop_if_no_debug (struct ui_file *file, int from_tty,
149 struct cmd_list_element *c, const char *value)
151 fprintf_filtered (file, _("Mode of the step operation is %s.\n"), value);
154 /* In asynchronous mode, but simulating synchronous execution. */
156 int sync_execution = 0;
158 /* proceed and normal_stop use this to notify the user when the
159 inferior stopped in a different thread than it had been running
162 static ptid_t previous_inferior_ptid;
164 /* If set (default for legacy reasons), when following a fork, GDB
165 will detach from one of the fork branches, child or parent.
166 Exactly which branch is detached depends on 'set follow-fork-mode'
169 static int detach_fork = 1;
171 int debug_displaced = 0;
173 show_debug_displaced (struct ui_file *file, int from_tty,
174 struct cmd_list_element *c, const char *value)
176 fprintf_filtered (file, _("Displace stepping debugging is %s.\n"), value);
179 unsigned int debug_infrun = 0;
181 show_debug_infrun (struct ui_file *file, int from_tty,
182 struct cmd_list_element *c, const char *value)
184 fprintf_filtered (file, _("Inferior debugging is %s.\n"), value);
188 /* Support for disabling address space randomization. */
190 int disable_randomization = 1;
193 show_disable_randomization (struct ui_file *file, int from_tty,
194 struct cmd_list_element *c, const char *value)
196 if (target_supports_disable_randomization ())
197 fprintf_filtered (file,
198 _("Disabling randomization of debuggee's "
199 "virtual address space is %s.\n"),
202 fputs_filtered (_("Disabling randomization of debuggee's "
203 "virtual address space is unsupported on\n"
204 "this platform.\n"), file);
208 set_disable_randomization (char *args, int from_tty,
209 struct cmd_list_element *c)
211 if (!target_supports_disable_randomization ())
212 error (_("Disabling randomization of debuggee's "
213 "virtual address space is unsupported on\n"
217 /* User interface for non-stop mode. */
220 static int non_stop_1 = 0;
223 set_non_stop (char *args, int from_tty,
224 struct cmd_list_element *c)
226 if (target_has_execution)
228 non_stop_1 = non_stop;
229 error (_("Cannot change this setting while the inferior is running."));
232 non_stop = non_stop_1;
236 show_non_stop (struct ui_file *file, int from_tty,
237 struct cmd_list_element *c, const char *value)
239 fprintf_filtered (file,
240 _("Controlling the inferior in non-stop mode is %s.\n"),
244 /* "Observer mode" is somewhat like a more extreme version of
245 non-stop, in which all GDB operations that might affect the
246 target's execution have been disabled. */
248 int observer_mode = 0;
249 static int observer_mode_1 = 0;
252 set_observer_mode (char *args, int from_tty,
253 struct cmd_list_element *c)
255 if (target_has_execution)
257 observer_mode_1 = observer_mode;
258 error (_("Cannot change this setting while the inferior is running."));
261 observer_mode = observer_mode_1;
263 may_write_registers = !observer_mode;
264 may_write_memory = !observer_mode;
265 may_insert_breakpoints = !observer_mode;
266 may_insert_tracepoints = !observer_mode;
267 /* We can insert fast tracepoints in or out of observer mode,
268 but enable them if we're going into this mode. */
270 may_insert_fast_tracepoints = 1;
271 may_stop = !observer_mode;
272 update_target_permissions ();
274 /* Going *into* observer mode we must force non-stop, then
275 going out we leave it that way. */
278 pagination_enabled = 0;
279 non_stop = non_stop_1 = 1;
283 printf_filtered (_("Observer mode is now %s.\n"),
284 (observer_mode ? "on" : "off"));
288 show_observer_mode (struct ui_file *file, int from_tty,
289 struct cmd_list_element *c, const char *value)
291 fprintf_filtered (file, _("Observer mode is %s.\n"), value);
294 /* This updates the value of observer mode based on changes in
295 permissions. Note that we are deliberately ignoring the values of
296 may-write-registers and may-write-memory, since the user may have
297 reason to enable these during a session, for instance to turn on a
298 debugging-related global. */
301 update_observer_mode (void)
305 newval = (!may_insert_breakpoints
306 && !may_insert_tracepoints
307 && may_insert_fast_tracepoints
311 /* Let the user know if things change. */
312 if (newval != observer_mode)
313 printf_filtered (_("Observer mode is now %s.\n"),
314 (newval ? "on" : "off"));
316 observer_mode = observer_mode_1 = newval;
319 /* Tables of how to react to signals; the user sets them. */
321 static unsigned char *signal_stop;
322 static unsigned char *signal_print;
323 static unsigned char *signal_program;
325 /* Table of signals that are registered with "catch signal". A
326 non-zero entry indicates that the signal is caught by some "catch
327 signal" command. This has size GDB_SIGNAL_LAST, to accommodate all
329 static unsigned char *signal_catch;
331 /* Table of signals that the target may silently handle.
332 This is automatically determined from the flags above,
333 and simply cached here. */
334 static unsigned char *signal_pass;
336 #define SET_SIGS(nsigs,sigs,flags) \
338 int signum = (nsigs); \
339 while (signum-- > 0) \
340 if ((sigs)[signum]) \
341 (flags)[signum] = 1; \
344 #define UNSET_SIGS(nsigs,sigs,flags) \
346 int signum = (nsigs); \
347 while (signum-- > 0) \
348 if ((sigs)[signum]) \
349 (flags)[signum] = 0; \
352 /* Update the target's copy of SIGNAL_PROGRAM. The sole purpose of
353 this function is to avoid exporting `signal_program'. */
356 update_signals_program_target (void)
358 target_program_signals ((int) GDB_SIGNAL_LAST, signal_program);
361 /* Value to pass to target_resume() to cause all threads to resume. */
363 #define RESUME_ALL minus_one_ptid
365 /* Command list pointer for the "stop" placeholder. */
367 static struct cmd_list_element *stop_command;
369 /* Nonzero if we want to give control to the user when we're notified
370 of shared library events by the dynamic linker. */
371 int stop_on_solib_events;
373 /* Enable or disable optional shared library event breakpoints
374 as appropriate when the above flag is changed. */
377 set_stop_on_solib_events (char *args, int from_tty, struct cmd_list_element *c)
379 update_solib_breakpoints ();
383 show_stop_on_solib_events (struct ui_file *file, int from_tty,
384 struct cmd_list_element *c, const char *value)
386 fprintf_filtered (file, _("Stopping for shared library events is %s.\n"),
390 /* Nonzero means expecting a trace trap
391 and should stop the inferior and return silently when it happens. */
395 /* Nonzero after stop if current stack frame should be printed. */
397 static int stop_print_frame;
399 /* This is a cached copy of the pid/waitstatus of the last event
400 returned by target_wait()/deprecated_target_wait_hook(). This
401 information is returned by get_last_target_status(). */
402 static ptid_t target_last_wait_ptid;
403 static struct target_waitstatus target_last_waitstatus;
405 static void context_switch (ptid_t ptid);
407 void init_thread_stepping_state (struct thread_info *tss);
409 static const char follow_fork_mode_child[] = "child";
410 static const char follow_fork_mode_parent[] = "parent";
412 static const char *const follow_fork_mode_kind_names[] = {
413 follow_fork_mode_child,
414 follow_fork_mode_parent,
418 static const char *follow_fork_mode_string = follow_fork_mode_parent;
420 show_follow_fork_mode_string (struct ui_file *file, int from_tty,
421 struct cmd_list_element *c, const char *value)
423 fprintf_filtered (file,
424 _("Debugger response to a program "
425 "call of fork or vfork is \"%s\".\n"),
430 /* Handle changes to the inferior list based on the type of fork,
431 which process is being followed, and whether the other process
432 should be detached. On entry inferior_ptid must be the ptid of
433 the fork parent. At return inferior_ptid is the ptid of the
434 followed inferior. */
437 follow_fork_inferior (int follow_child, int detach_fork)
440 ptid_t parent_ptid, child_ptid;
442 has_vforked = (inferior_thread ()->pending_follow.kind
443 == TARGET_WAITKIND_VFORKED);
444 parent_ptid = inferior_ptid;
445 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
448 && !non_stop /* Non-stop always resumes both branches. */
449 && (!target_is_async_p () || sync_execution)
450 && !(follow_child || detach_fork || sched_multi))
452 /* The parent stays blocked inside the vfork syscall until the
453 child execs or exits. If we don't let the child run, then
454 the parent stays blocked. If we're telling the parent to run
455 in the foreground, the user will not be able to ctrl-c to get
456 back the terminal, effectively hanging the debug session. */
457 fprintf_filtered (gdb_stderr, _("\
458 Can not resume the parent process over vfork in the foreground while\n\
459 holding the child stopped. Try \"set detach-on-fork\" or \
460 \"set schedule-multiple\".\n"));
461 /* FIXME output string > 80 columns. */
467 /* Detach new forked process? */
470 struct cleanup *old_chain;
472 /* Before detaching from the child, remove all breakpoints
473 from it. If we forked, then this has already been taken
474 care of by infrun.c. If we vforked however, any
475 breakpoint inserted in the parent is visible in the
476 child, even those added while stopped in a vfork
477 catchpoint. This will remove the breakpoints from the
478 parent also, but they'll be reinserted below. */
481 /* Keep breakpoints list in sync. */
482 remove_breakpoints_pid (ptid_get_pid (inferior_ptid));
485 if (info_verbose || debug_infrun)
487 /* Ensure that we have a process ptid. */
488 ptid_t process_ptid = pid_to_ptid (ptid_get_pid (child_ptid));
490 target_terminal_ours_for_output ();
491 fprintf_filtered (gdb_stdlog,
492 _("Detaching after %s from child %s.\n"),
493 has_vforked ? "vfork" : "fork",
494 target_pid_to_str (process_ptid));
499 struct inferior *parent_inf, *child_inf;
500 struct cleanup *old_chain;
502 /* Add process to GDB's tables. */
503 child_inf = add_inferior (ptid_get_pid (child_ptid));
505 parent_inf = current_inferior ();
506 child_inf->attach_flag = parent_inf->attach_flag;
507 copy_terminal_info (child_inf, parent_inf);
508 child_inf->gdbarch = parent_inf->gdbarch;
509 copy_inferior_target_desc_info (child_inf, parent_inf);
511 old_chain = save_inferior_ptid ();
512 save_current_program_space ();
514 inferior_ptid = child_ptid;
515 add_thread (inferior_ptid);
516 child_inf->symfile_flags = SYMFILE_NO_READ;
518 /* If this is a vfork child, then the address-space is
519 shared with the parent. */
522 child_inf->pspace = parent_inf->pspace;
523 child_inf->aspace = parent_inf->aspace;
525 /* The parent will be frozen until the child is done
526 with the shared region. Keep track of the
528 child_inf->vfork_parent = parent_inf;
529 child_inf->pending_detach = 0;
530 parent_inf->vfork_child = child_inf;
531 parent_inf->pending_detach = 0;
535 child_inf->aspace = new_address_space ();
536 child_inf->pspace = add_program_space (child_inf->aspace);
537 child_inf->removable = 1;
538 set_current_program_space (child_inf->pspace);
539 clone_program_space (child_inf->pspace, parent_inf->pspace);
541 /* Let the shared library layer (e.g., solib-svr4) learn
542 about this new process, relocate the cloned exec, pull
543 in shared libraries, and install the solib event
544 breakpoint. If a "cloned-VM" event was propagated
545 better throughout the core, this wouldn't be
547 solib_create_inferior_hook (0);
550 do_cleanups (old_chain);
555 struct inferior *parent_inf;
557 parent_inf = current_inferior ();
559 /* If we detached from the child, then we have to be careful
560 to not insert breakpoints in the parent until the child
561 is done with the shared memory region. However, if we're
562 staying attached to the child, then we can and should
563 insert breakpoints, so that we can debug it. A
564 subsequent child exec or exit is enough to know when does
565 the child stops using the parent's address space. */
566 parent_inf->waiting_for_vfork_done = detach_fork;
567 parent_inf->pspace->breakpoints_not_allowed = detach_fork;
572 /* Follow the child. */
573 struct inferior *parent_inf, *child_inf;
574 struct program_space *parent_pspace;
576 if (info_verbose || debug_infrun)
578 target_terminal_ours_for_output ();
579 fprintf_filtered (gdb_stdlog,
580 _("Attaching after %s %s to child %s.\n"),
581 target_pid_to_str (parent_ptid),
582 has_vforked ? "vfork" : "fork",
583 target_pid_to_str (child_ptid));
586 /* Add the new inferior first, so that the target_detach below
587 doesn't unpush the target. */
589 child_inf = add_inferior (ptid_get_pid (child_ptid));
591 parent_inf = current_inferior ();
592 child_inf->attach_flag = parent_inf->attach_flag;
593 copy_terminal_info (child_inf, parent_inf);
594 child_inf->gdbarch = parent_inf->gdbarch;
595 copy_inferior_target_desc_info (child_inf, parent_inf);
597 parent_pspace = parent_inf->pspace;
599 /* If we're vforking, we want to hold on to the parent until the
600 child exits or execs. At child exec or exit time we can
601 remove the old breakpoints from the parent and detach or
602 resume debugging it. Otherwise, detach the parent now; we'll
603 want to reuse it's program/address spaces, but we can't set
604 them to the child before removing breakpoints from the
605 parent, otherwise, the breakpoints module could decide to
606 remove breakpoints from the wrong process (since they'd be
607 assigned to the same address space). */
611 gdb_assert (child_inf->vfork_parent == NULL);
612 gdb_assert (parent_inf->vfork_child == NULL);
613 child_inf->vfork_parent = parent_inf;
614 child_inf->pending_detach = 0;
615 parent_inf->vfork_child = child_inf;
616 parent_inf->pending_detach = detach_fork;
617 parent_inf->waiting_for_vfork_done = 0;
619 else if (detach_fork)
621 if (info_verbose || debug_infrun)
623 /* Ensure that we have a process ptid. */
624 ptid_t process_ptid = pid_to_ptid (ptid_get_pid (child_ptid));
626 target_terminal_ours_for_output ();
627 fprintf_filtered (gdb_stdlog,
628 _("Detaching after fork from "
630 target_pid_to_str (process_ptid));
633 target_detach (NULL, 0);
636 /* Note that the detach above makes PARENT_INF dangling. */
638 /* Add the child thread to the appropriate lists, and switch to
639 this new thread, before cloning the program space, and
640 informing the solib layer about this new process. */
642 inferior_ptid = child_ptid;
643 add_thread (inferior_ptid);
645 /* If this is a vfork child, then the address-space is shared
646 with the parent. If we detached from the parent, then we can
647 reuse the parent's program/address spaces. */
648 if (has_vforked || detach_fork)
650 child_inf->pspace = parent_pspace;
651 child_inf->aspace = child_inf->pspace->aspace;
655 child_inf->aspace = new_address_space ();
656 child_inf->pspace = add_program_space (child_inf->aspace);
657 child_inf->removable = 1;
658 child_inf->symfile_flags = SYMFILE_NO_READ;
659 set_current_program_space (child_inf->pspace);
660 clone_program_space (child_inf->pspace, parent_pspace);
662 /* Let the shared library layer (e.g., solib-svr4) learn
663 about this new process, relocate the cloned exec, pull in
664 shared libraries, and install the solib event breakpoint.
665 If a "cloned-VM" event was propagated better throughout
666 the core, this wouldn't be required. */
667 solib_create_inferior_hook (0);
671 return target_follow_fork (follow_child, detach_fork);
674 /* Tell the target to follow the fork we're stopped at. Returns true
675 if the inferior should be resumed; false, if the target for some
676 reason decided it's best not to resume. */
681 int follow_child = (follow_fork_mode_string == follow_fork_mode_child);
682 int should_resume = 1;
683 struct thread_info *tp;
685 /* Copy user stepping state to the new inferior thread. FIXME: the
686 followed fork child thread should have a copy of most of the
687 parent thread structure's run control related fields, not just these.
688 Initialized to avoid "may be used uninitialized" warnings from gcc. */
689 struct breakpoint *step_resume_breakpoint = NULL;
690 struct breakpoint *exception_resume_breakpoint = NULL;
691 CORE_ADDR step_range_start = 0;
692 CORE_ADDR step_range_end = 0;
693 struct frame_id step_frame_id = { 0 };
694 struct interp *command_interp = NULL;
699 struct target_waitstatus wait_status;
701 /* Get the last target status returned by target_wait(). */
702 get_last_target_status (&wait_ptid, &wait_status);
704 /* If not stopped at a fork event, then there's nothing else to
706 if (wait_status.kind != TARGET_WAITKIND_FORKED
707 && wait_status.kind != TARGET_WAITKIND_VFORKED)
710 /* Check if we switched over from WAIT_PTID, since the event was
712 if (!ptid_equal (wait_ptid, minus_one_ptid)
713 && !ptid_equal (inferior_ptid, wait_ptid))
715 /* We did. Switch back to WAIT_PTID thread, to tell the
716 target to follow it (in either direction). We'll
717 afterwards refuse to resume, and inform the user what
719 switch_to_thread (wait_ptid);
724 tp = inferior_thread ();
726 /* If there were any forks/vforks that were caught and are now to be
727 followed, then do so now. */
728 switch (tp->pending_follow.kind)
730 case TARGET_WAITKIND_FORKED:
731 case TARGET_WAITKIND_VFORKED:
733 ptid_t parent, child;
735 /* If the user did a next/step, etc, over a fork call,
736 preserve the stepping state in the fork child. */
737 if (follow_child && should_resume)
739 step_resume_breakpoint = clone_momentary_breakpoint
740 (tp->control.step_resume_breakpoint);
741 step_range_start = tp->control.step_range_start;
742 step_range_end = tp->control.step_range_end;
743 step_frame_id = tp->control.step_frame_id;
744 exception_resume_breakpoint
745 = clone_momentary_breakpoint (tp->control.exception_resume_breakpoint);
746 command_interp = tp->control.command_interp;
748 /* For now, delete the parent's sr breakpoint, otherwise,
749 parent/child sr breakpoints are considered duplicates,
750 and the child version will not be installed. Remove
751 this when the breakpoints module becomes aware of
752 inferiors and address spaces. */
753 delete_step_resume_breakpoint (tp);
754 tp->control.step_range_start = 0;
755 tp->control.step_range_end = 0;
756 tp->control.step_frame_id = null_frame_id;
757 delete_exception_resume_breakpoint (tp);
758 tp->control.command_interp = NULL;
761 parent = inferior_ptid;
762 child = tp->pending_follow.value.related_pid;
764 /* Set up inferior(s) as specified by the caller, and tell the
765 target to do whatever is necessary to follow either parent
767 if (follow_fork_inferior (follow_child, detach_fork))
769 /* Target refused to follow, or there's some other reason
770 we shouldn't resume. */
775 /* This pending follow fork event is now handled, one way
776 or another. The previous selected thread may be gone
777 from the lists by now, but if it is still around, need
778 to clear the pending follow request. */
779 tp = find_thread_ptid (parent);
781 tp->pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
783 /* This makes sure we don't try to apply the "Switched
784 over from WAIT_PID" logic above. */
785 nullify_last_target_wait_ptid ();
787 /* If we followed the child, switch to it... */
790 switch_to_thread (child);
792 /* ... and preserve the stepping state, in case the
793 user was stepping over the fork call. */
796 tp = inferior_thread ();
797 tp->control.step_resume_breakpoint
798 = step_resume_breakpoint;
799 tp->control.step_range_start = step_range_start;
800 tp->control.step_range_end = step_range_end;
801 tp->control.step_frame_id = step_frame_id;
802 tp->control.exception_resume_breakpoint
803 = exception_resume_breakpoint;
804 tp->control.command_interp = command_interp;
808 /* If we get here, it was because we're trying to
809 resume from a fork catchpoint, but, the user
810 has switched threads away from the thread that
811 forked. In that case, the resume command
812 issued is most likely not applicable to the
813 child, so just warn, and refuse to resume. */
814 warning (_("Not resuming: switched threads "
815 "before following fork child."));
818 /* Reset breakpoints in the child as appropriate. */
819 follow_inferior_reset_breakpoints ();
822 switch_to_thread (parent);
826 case TARGET_WAITKIND_SPURIOUS:
827 /* Nothing to follow. */
830 internal_error (__FILE__, __LINE__,
831 "Unexpected pending_follow.kind %d\n",
832 tp->pending_follow.kind);
836 return should_resume;
840 follow_inferior_reset_breakpoints (void)
842 struct thread_info *tp = inferior_thread ();
844 /* Was there a step_resume breakpoint? (There was if the user
845 did a "next" at the fork() call.) If so, explicitly reset its
846 thread number. Cloned step_resume breakpoints are disabled on
847 creation, so enable it here now that it is associated with the
850 step_resumes are a form of bp that are made to be per-thread.
851 Since we created the step_resume bp when the parent process
852 was being debugged, and now are switching to the child process,
853 from the breakpoint package's viewpoint, that's a switch of
854 "threads". We must update the bp's notion of which thread
855 it is for, or it'll be ignored when it triggers. */
857 if (tp->control.step_resume_breakpoint)
859 breakpoint_re_set_thread (tp->control.step_resume_breakpoint);
860 tp->control.step_resume_breakpoint->loc->enabled = 1;
863 /* Treat exception_resume breakpoints like step_resume breakpoints. */
864 if (tp->control.exception_resume_breakpoint)
866 breakpoint_re_set_thread (tp->control.exception_resume_breakpoint);
867 tp->control.exception_resume_breakpoint->loc->enabled = 1;
870 /* Reinsert all breakpoints in the child. The user may have set
871 breakpoints after catching the fork, in which case those
872 were never set in the child, but only in the parent. This makes
873 sure the inserted breakpoints match the breakpoint list. */
875 breakpoint_re_set ();
876 insert_breakpoints ();
879 /* The child has exited or execed: resume threads of the parent the
880 user wanted to be executing. */
883 proceed_after_vfork_done (struct thread_info *thread,
886 int pid = * (int *) arg;
888 if (ptid_get_pid (thread->ptid) == pid
889 && is_running (thread->ptid)
890 && !is_executing (thread->ptid)
891 && !thread->stop_requested
892 && thread->suspend.stop_signal == GDB_SIGNAL_0)
895 fprintf_unfiltered (gdb_stdlog,
896 "infrun: resuming vfork parent thread %s\n",
897 target_pid_to_str (thread->ptid));
899 switch_to_thread (thread->ptid);
900 clear_proceed_status (0);
901 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
907 /* Called whenever we notice an exec or exit event, to handle
908 detaching or resuming a vfork parent. */
911 handle_vfork_child_exec_or_exit (int exec)
913 struct inferior *inf = current_inferior ();
915 if (inf->vfork_parent)
917 int resume_parent = -1;
919 /* This exec or exit marks the end of the shared memory region
920 between the parent and the child. If the user wanted to
921 detach from the parent, now is the time. */
923 if (inf->vfork_parent->pending_detach)
925 struct thread_info *tp;
926 struct cleanup *old_chain;
927 struct program_space *pspace;
928 struct address_space *aspace;
930 /* follow-fork child, detach-on-fork on. */
932 inf->vfork_parent->pending_detach = 0;
936 /* If we're handling a child exit, then inferior_ptid
937 points at the inferior's pid, not to a thread. */
938 old_chain = save_inferior_ptid ();
939 save_current_program_space ();
940 save_current_inferior ();
943 old_chain = save_current_space_and_thread ();
945 /* We're letting loose of the parent. */
946 tp = any_live_thread_of_process (inf->vfork_parent->pid);
947 switch_to_thread (tp->ptid);
949 /* We're about to detach from the parent, which implicitly
950 removes breakpoints from its address space. There's a
951 catch here: we want to reuse the spaces for the child,
952 but, parent/child are still sharing the pspace at this
953 point, although the exec in reality makes the kernel give
954 the child a fresh set of new pages. The problem here is
955 that the breakpoints module being unaware of this, would
956 likely chose the child process to write to the parent
957 address space. Swapping the child temporarily away from
958 the spaces has the desired effect. Yes, this is "sort
961 pspace = inf->pspace;
962 aspace = inf->aspace;
966 if (debug_infrun || info_verbose)
968 target_terminal_ours_for_output ();
972 fprintf_filtered (gdb_stdlog,
973 _("Detaching vfork parent process "
974 "%d after child exec.\n"),
975 inf->vfork_parent->pid);
979 fprintf_filtered (gdb_stdlog,
980 _("Detaching vfork parent process "
981 "%d after child exit.\n"),
982 inf->vfork_parent->pid);
986 target_detach (NULL, 0);
989 inf->pspace = pspace;
990 inf->aspace = aspace;
992 do_cleanups (old_chain);
996 /* We're staying attached to the parent, so, really give the
997 child a new address space. */
998 inf->pspace = add_program_space (maybe_new_address_space ());
999 inf->aspace = inf->pspace->aspace;
1001 set_current_program_space (inf->pspace);
1003 resume_parent = inf->vfork_parent->pid;
1005 /* Break the bonds. */
1006 inf->vfork_parent->vfork_child = NULL;
1010 struct cleanup *old_chain;
1011 struct program_space *pspace;
1013 /* If this is a vfork child exiting, then the pspace and
1014 aspaces were shared with the parent. Since we're
1015 reporting the process exit, we'll be mourning all that is
1016 found in the address space, and switching to null_ptid,
1017 preparing to start a new inferior. But, since we don't
1018 want to clobber the parent's address/program spaces, we
1019 go ahead and create a new one for this exiting
1022 /* Switch to null_ptid, so that clone_program_space doesn't want
1023 to read the selected frame of a dead process. */
1024 old_chain = save_inferior_ptid ();
1025 inferior_ptid = null_ptid;
1027 /* This inferior is dead, so avoid giving the breakpoints
1028 module the option to write through to it (cloning a
1029 program space resets breakpoints). */
1032 pspace = add_program_space (maybe_new_address_space ());
1033 set_current_program_space (pspace);
1035 inf->symfile_flags = SYMFILE_NO_READ;
1036 clone_program_space (pspace, inf->vfork_parent->pspace);
1037 inf->pspace = pspace;
1038 inf->aspace = pspace->aspace;
1040 /* Put back inferior_ptid. We'll continue mourning this
1042 do_cleanups (old_chain);
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 struct cleanup *old_chain = make_cleanup_restore_current_thread ();
1060 fprintf_unfiltered (gdb_stdlog,
1061 "infrun: resuming vfork parent process %d\n",
1064 iterate_over_threads (proceed_after_vfork_done, &resume_parent);
1066 do_cleanups (old_chain);
1071 /* Enum strings for "set|show follow-exec-mode". */
1073 static const char follow_exec_mode_new[] = "new";
1074 static const char follow_exec_mode_same[] = "same";
1075 static const char *const follow_exec_mode_names[] =
1077 follow_exec_mode_new,
1078 follow_exec_mode_same,
1082 static const char *follow_exec_mode_string = follow_exec_mode_same;
1084 show_follow_exec_mode_string (struct ui_file *file, int from_tty,
1085 struct cmd_list_element *c, const char *value)
1087 fprintf_filtered (file, _("Follow exec mode is \"%s\".\n"), value);
1090 /* EXECD_PATHNAME is assumed to be non-NULL. */
1093 follow_exec (ptid_t ptid, char *execd_pathname)
1095 struct thread_info *th, *tmp;
1096 struct inferior *inf = current_inferior ();
1097 int pid = ptid_get_pid (ptid);
1099 /* This is an exec event that we actually wish to pay attention to.
1100 Refresh our symbol table to the newly exec'd program, remove any
1101 momentary bp's, etc.
1103 If there are breakpoints, they aren't really inserted now,
1104 since the exec() transformed our inferior into a fresh set
1107 We want to preserve symbolic breakpoints on the list, since
1108 we have hopes that they can be reset after the new a.out's
1109 symbol table is read.
1111 However, any "raw" breakpoints must be removed from the list
1112 (e.g., the solib bp's), since their address is probably invalid
1115 And, we DON'T want to call delete_breakpoints() here, since
1116 that may write the bp's "shadow contents" (the instruction
1117 value that was overwritten witha TRAP instruction). Since
1118 we now have a new a.out, those shadow contents aren't valid. */
1120 mark_breakpoints_out ();
1122 /* The target reports the exec event to the main thread, even if
1123 some other thread does the exec, and even if the main thread was
1124 stopped or already gone. We may still have non-leader threads of
1125 the process on our list. E.g., on targets that don't have thread
1126 exit events (like remote); or on native Linux in non-stop mode if
1127 there were only two threads in the inferior and the non-leader
1128 one is the one that execs (and nothing forces an update of the
1129 thread list up to here). When debugging remotely, it's best to
1130 avoid extra traffic, when possible, so avoid syncing the thread
1131 list with the target, and instead go ahead and delete all threads
1132 of the process but one that reported the event. Note this must
1133 be done before calling update_breakpoints_after_exec, as
1134 otherwise clearing the threads' resources would reference stale
1135 thread breakpoints -- it may have been one of these threads that
1136 stepped across the exec. We could just clear their stepping
1137 states, but as long as we're iterating, might as well delete
1138 them. Deleting them now rather than at the next user-visible
1139 stop provides a nicer sequence of events for user and MI
1141 ALL_THREADS_SAFE (th, tmp)
1142 if (ptid_get_pid (th->ptid) == pid && !ptid_equal (th->ptid, ptid))
1143 delete_thread (th->ptid);
1145 /* We also need to clear any left over stale state for the
1146 leader/event thread. E.g., if there was any step-resume
1147 breakpoint or similar, it's gone now. We cannot truly
1148 step-to-next statement through an exec(). */
1149 th = inferior_thread ();
1150 th->control.step_resume_breakpoint = NULL;
1151 th->control.exception_resume_breakpoint = NULL;
1152 th->control.single_step_breakpoints = NULL;
1153 th->control.step_range_start = 0;
1154 th->control.step_range_end = 0;
1156 /* The user may have had the main thread held stopped in the
1157 previous image (e.g., schedlock on, or non-stop). Release
1159 th->stop_requested = 0;
1161 update_breakpoints_after_exec ();
1163 /* What is this a.out's name? */
1164 printf_unfiltered (_("%s is executing new program: %s\n"),
1165 target_pid_to_str (inferior_ptid),
1168 /* We've followed the inferior through an exec. Therefore, the
1169 inferior has essentially been killed & reborn. */
1171 gdb_flush (gdb_stdout);
1173 breakpoint_init_inferior (inf_execd);
1175 if (*gdb_sysroot != '\0')
1177 char *name = exec_file_find (execd_pathname, NULL);
1179 execd_pathname = alloca (strlen (name) + 1);
1180 strcpy (execd_pathname, name);
1184 /* Reset the shared library package. This ensures that we get a
1185 shlib event when the child reaches "_start", at which point the
1186 dld will have had a chance to initialize the child. */
1187 /* Also, loading a symbol file below may trigger symbol lookups, and
1188 we don't want those to be satisfied by the libraries of the
1189 previous incarnation of this process. */
1190 no_shared_libraries (NULL, 0);
1192 if (follow_exec_mode_string == follow_exec_mode_new)
1194 struct program_space *pspace;
1196 /* The user wants to keep the old inferior and program spaces
1197 around. Create a new fresh one, and switch to it. */
1199 /* Do exit processing for the original inferior before adding
1200 the new inferior so we don't have two active inferiors with
1201 the same ptid, which can confuse find_inferior_ptid. */
1202 exit_inferior_num_silent (current_inferior ()->num);
1204 inf = add_inferior (pid);
1205 pspace = add_program_space (maybe_new_address_space ());
1206 inf->pspace = pspace;
1207 inf->aspace = pspace->aspace;
1210 set_current_inferior (inf);
1211 set_current_program_space (pspace);
1215 /* The old description may no longer be fit for the new image.
1216 E.g, a 64-bit process exec'ed a 32-bit process. Clear the
1217 old description; we'll read a new one below. No need to do
1218 this on "follow-exec-mode new", as the old inferior stays
1219 around (its description is later cleared/refetched on
1221 target_clear_description ();
1224 gdb_assert (current_program_space == inf->pspace);
1226 /* That a.out is now the one to use. */
1227 exec_file_attach (execd_pathname, 0);
1229 /* SYMFILE_DEFER_BP_RESET is used as the proper displacement for PIE
1230 (Position Independent Executable) main symbol file will get applied by
1231 solib_create_inferior_hook below. breakpoint_re_set would fail to insert
1232 the breakpoints with the zero displacement. */
1234 symbol_file_add (execd_pathname,
1236 | SYMFILE_MAINLINE | SYMFILE_DEFER_BP_RESET),
1239 if ((inf->symfile_flags & SYMFILE_NO_READ) == 0)
1240 set_initial_language ();
1242 /* If the target can specify a description, read it. Must do this
1243 after flipping to the new executable (because the target supplied
1244 description must be compatible with the executable's
1245 architecture, and the old executable may e.g., be 32-bit, while
1246 the new one 64-bit), and before anything involving memory or
1248 target_find_description ();
1250 solib_create_inferior_hook (0);
1252 jit_inferior_created_hook ();
1254 breakpoint_re_set ();
1256 /* Reinsert all breakpoints. (Those which were symbolic have
1257 been reset to the proper address in the new a.out, thanks
1258 to symbol_file_command...). */
1259 insert_breakpoints ();
1261 /* The next resume of this inferior should bring it to the shlib
1262 startup breakpoints. (If the user had also set bp's on
1263 "main" from the old (parent) process, then they'll auto-
1264 matically get reset there in the new process.). */
1267 /* The queue of threads that need to do a step-over operation to get
1268 past e.g., a breakpoint. What technique is used to step over the
1269 breakpoint/watchpoint does not matter -- all threads end up in the
1270 same queue, to maintain rough temporal order of execution, in order
1271 to avoid starvation, otherwise, we could e.g., find ourselves
1272 constantly stepping the same couple threads past their breakpoints
1273 over and over, if the single-step finish fast enough. */
1274 struct thread_info *step_over_queue_head;
1276 /* Bit flags indicating what the thread needs to step over. */
1280 /* Step over a breakpoint. */
1281 STEP_OVER_BREAKPOINT = 1,
1283 /* Step past a non-continuable watchpoint, in order to let the
1284 instruction execute so we can evaluate the watchpoint
1286 STEP_OVER_WATCHPOINT = 2
1289 /* Info about an instruction that is being stepped over. */
1291 struct step_over_info
1293 /* If we're stepping past a breakpoint, this is the address space
1294 and address of the instruction the breakpoint is set at. We'll
1295 skip inserting all breakpoints here. Valid iff ASPACE is
1297 struct address_space *aspace;
1300 /* The instruction being stepped over triggers a nonsteppable
1301 watchpoint. If true, we'll skip inserting watchpoints. */
1302 int nonsteppable_watchpoint_p;
1305 /* The step-over info of the location that is being stepped over.
1307 Note that with async/breakpoint always-inserted mode, a user might
1308 set a new breakpoint/watchpoint/etc. exactly while a breakpoint is
1309 being stepped over. As setting a new breakpoint inserts all
1310 breakpoints, we need to make sure the breakpoint being stepped over
1311 isn't inserted then. We do that by only clearing the step-over
1312 info when the step-over is actually finished (or aborted).
1314 Presently GDB can only step over one breakpoint at any given time.
1315 Given threads that can't run code in the same address space as the
1316 breakpoint's can't really miss the breakpoint, GDB could be taught
1317 to step-over at most one breakpoint per address space (so this info
1318 could move to the address space object if/when GDB is extended).
1319 The set of breakpoints being stepped over will normally be much
1320 smaller than the set of all breakpoints, so a flag in the
1321 breakpoint location structure would be wasteful. A separate list
1322 also saves complexity and run-time, as otherwise we'd have to go
1323 through all breakpoint locations clearing their flag whenever we
1324 start a new sequence. Similar considerations weigh against storing
1325 this info in the thread object. Plus, not all step overs actually
1326 have breakpoint locations -- e.g., stepping past a single-step
1327 breakpoint, or stepping to complete a non-continuable
1329 static struct step_over_info step_over_info;
1331 /* Record the address of the breakpoint/instruction we're currently
1335 set_step_over_info (struct address_space *aspace, CORE_ADDR address,
1336 int nonsteppable_watchpoint_p)
1338 step_over_info.aspace = aspace;
1339 step_over_info.address = address;
1340 step_over_info.nonsteppable_watchpoint_p = nonsteppable_watchpoint_p;
1343 /* Called when we're not longer stepping over a breakpoint / an
1344 instruction, so all breakpoints are free to be (re)inserted. */
1347 clear_step_over_info (void)
1350 fprintf_unfiltered (gdb_stdlog,
1351 "infrun: clear_step_over_info\n");
1352 step_over_info.aspace = NULL;
1353 step_over_info.address = 0;
1354 step_over_info.nonsteppable_watchpoint_p = 0;
1360 stepping_past_instruction_at (struct address_space *aspace,
1363 return (step_over_info.aspace != NULL
1364 && breakpoint_address_match (aspace, address,
1365 step_over_info.aspace,
1366 step_over_info.address));
1372 stepping_past_nonsteppable_watchpoint (void)
1374 return step_over_info.nonsteppable_watchpoint_p;
1377 /* Returns true if step-over info is valid. */
1380 step_over_info_valid_p (void)
1382 return (step_over_info.aspace != NULL
1383 || stepping_past_nonsteppable_watchpoint ());
1387 /* Displaced stepping. */
1389 /* In non-stop debugging mode, we must take special care to manage
1390 breakpoints properly; in particular, the traditional strategy for
1391 stepping a thread past a breakpoint it has hit is unsuitable.
1392 'Displaced stepping' is a tactic for stepping one thread past a
1393 breakpoint it has hit while ensuring that other threads running
1394 concurrently will hit the breakpoint as they should.
1396 The traditional way to step a thread T off a breakpoint in a
1397 multi-threaded program in all-stop mode is as follows:
1399 a0) Initially, all threads are stopped, and breakpoints are not
1401 a1) We single-step T, leaving breakpoints uninserted.
1402 a2) We insert breakpoints, and resume all threads.
1404 In non-stop debugging, however, this strategy is unsuitable: we
1405 don't want to have to stop all threads in the system in order to
1406 continue or step T past a breakpoint. Instead, we use displaced
1409 n0) Initially, T is stopped, other threads are running, and
1410 breakpoints are inserted.
1411 n1) We copy the instruction "under" the breakpoint to a separate
1412 location, outside the main code stream, making any adjustments
1413 to the instruction, register, and memory state as directed by
1415 n2) We single-step T over the instruction at its new location.
1416 n3) We adjust the resulting register and memory state as directed
1417 by T's architecture. This includes resetting T's PC to point
1418 back into the main instruction stream.
1421 This approach depends on the following gdbarch methods:
1423 - gdbarch_max_insn_length and gdbarch_displaced_step_location
1424 indicate where to copy the instruction, and how much space must
1425 be reserved there. We use these in step n1.
1427 - gdbarch_displaced_step_copy_insn copies a instruction to a new
1428 address, and makes any necessary adjustments to the instruction,
1429 register contents, and memory. We use this in step n1.
1431 - gdbarch_displaced_step_fixup adjusts registers and memory after
1432 we have successfuly single-stepped the instruction, to yield the
1433 same effect the instruction would have had if we had executed it
1434 at its original address. We use this in step n3.
1436 - gdbarch_displaced_step_free_closure provides cleanup.
1438 The gdbarch_displaced_step_copy_insn and
1439 gdbarch_displaced_step_fixup functions must be written so that
1440 copying an instruction with gdbarch_displaced_step_copy_insn,
1441 single-stepping across the copied instruction, and then applying
1442 gdbarch_displaced_insn_fixup should have the same effects on the
1443 thread's memory and registers as stepping the instruction in place
1444 would have. Exactly which responsibilities fall to the copy and
1445 which fall to the fixup is up to the author of those functions.
1447 See the comments in gdbarch.sh for details.
1449 Note that displaced stepping and software single-step cannot
1450 currently be used in combination, although with some care I think
1451 they could be made to. Software single-step works by placing
1452 breakpoints on all possible subsequent instructions; if the
1453 displaced instruction is a PC-relative jump, those breakpoints
1454 could fall in very strange places --- on pages that aren't
1455 executable, or at addresses that are not proper instruction
1456 boundaries. (We do generally let other threads run while we wait
1457 to hit the software single-step breakpoint, and they might
1458 encounter such a corrupted instruction.) One way to work around
1459 this would be to have gdbarch_displaced_step_copy_insn fully
1460 simulate the effect of PC-relative instructions (and return NULL)
1461 on architectures that use software single-stepping.
1463 In non-stop mode, we can have independent and simultaneous step
1464 requests, so more than one thread may need to simultaneously step
1465 over a breakpoint. The current implementation assumes there is
1466 only one scratch space per process. In this case, we have to
1467 serialize access to the scratch space. If thread A wants to step
1468 over a breakpoint, but we are currently waiting for some other
1469 thread to complete a displaced step, we leave thread A stopped and
1470 place it in the displaced_step_request_queue. Whenever a displaced
1471 step finishes, we pick the next thread in the queue and start a new
1472 displaced step operation on it. See displaced_step_prepare and
1473 displaced_step_fixup for details. */
1475 /* Per-inferior displaced stepping state. */
1476 struct displaced_step_inferior_state
1478 /* Pointer to next in linked list. */
1479 struct displaced_step_inferior_state *next;
1481 /* The process this displaced step state refers to. */
1484 /* True if preparing a displaced step ever failed. If so, we won't
1485 try displaced stepping for this inferior again. */
1488 /* If this is not null_ptid, this is the thread carrying out a
1489 displaced single-step in process PID. This thread's state will
1490 require fixing up once it has completed its step. */
1493 /* The architecture the thread had when we stepped it. */
1494 struct gdbarch *step_gdbarch;
1496 /* The closure provided gdbarch_displaced_step_copy_insn, to be used
1497 for post-step cleanup. */
1498 struct displaced_step_closure *step_closure;
1500 /* The address of the original instruction, and the copy we
1502 CORE_ADDR step_original, step_copy;
1504 /* Saved contents of copy area. */
1505 gdb_byte *step_saved_copy;
1508 /* The list of states of processes involved in displaced stepping
1510 static struct displaced_step_inferior_state *displaced_step_inferior_states;
1512 /* Get the displaced stepping state of process PID. */
1514 static struct displaced_step_inferior_state *
1515 get_displaced_stepping_state (int pid)
1517 struct displaced_step_inferior_state *state;
1519 for (state = displaced_step_inferior_states;
1521 state = state->next)
1522 if (state->pid == pid)
1528 /* Returns true if any inferior has a thread doing a displaced
1532 displaced_step_in_progress_any_inferior (void)
1534 struct displaced_step_inferior_state *state;
1536 for (state = displaced_step_inferior_states;
1538 state = state->next)
1539 if (!ptid_equal (state->step_ptid, null_ptid))
1545 /* Return true if process PID has a thread doing a displaced step. */
1548 displaced_step_in_progress (int pid)
1550 struct displaced_step_inferior_state *displaced;
1552 displaced = get_displaced_stepping_state (pid);
1553 if (displaced != NULL && !ptid_equal (displaced->step_ptid, null_ptid))
1559 /* Add a new displaced stepping state for process PID to the displaced
1560 stepping state list, or return a pointer to an already existing
1561 entry, if it already exists. Never returns NULL. */
1563 static struct displaced_step_inferior_state *
1564 add_displaced_stepping_state (int pid)
1566 struct displaced_step_inferior_state *state;
1568 for (state = displaced_step_inferior_states;
1570 state = state->next)
1571 if (state->pid == pid)
1574 state = XCNEW (struct displaced_step_inferior_state);
1576 state->next = displaced_step_inferior_states;
1577 displaced_step_inferior_states = state;
1582 /* If inferior is in displaced stepping, and ADDR equals to starting address
1583 of copy area, return corresponding displaced_step_closure. Otherwise,
1586 struct displaced_step_closure*
1587 get_displaced_step_closure_by_addr (CORE_ADDR addr)
1589 struct displaced_step_inferior_state *displaced
1590 = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
1592 /* If checking the mode of displaced instruction in copy area. */
1593 if (displaced && !ptid_equal (displaced->step_ptid, null_ptid)
1594 && (displaced->step_copy == addr))
1595 return displaced->step_closure;
1600 /* Remove the displaced stepping state of process PID. */
1603 remove_displaced_stepping_state (int pid)
1605 struct displaced_step_inferior_state *it, **prev_next_p;
1607 gdb_assert (pid != 0);
1609 it = displaced_step_inferior_states;
1610 prev_next_p = &displaced_step_inferior_states;
1615 *prev_next_p = it->next;
1620 prev_next_p = &it->next;
1626 infrun_inferior_exit (struct inferior *inf)
1628 remove_displaced_stepping_state (inf->pid);
1631 /* If ON, and the architecture supports it, GDB will use displaced
1632 stepping to step over breakpoints. If OFF, or if the architecture
1633 doesn't support it, GDB will instead use the traditional
1634 hold-and-step approach. If AUTO (which is the default), GDB will
1635 decide which technique to use to step over breakpoints depending on
1636 which of all-stop or non-stop mode is active --- displaced stepping
1637 in non-stop mode; hold-and-step in all-stop mode. */
1639 static enum auto_boolean can_use_displaced_stepping = AUTO_BOOLEAN_AUTO;
1642 show_can_use_displaced_stepping (struct ui_file *file, int from_tty,
1643 struct cmd_list_element *c,
1646 if (can_use_displaced_stepping == AUTO_BOOLEAN_AUTO)
1647 fprintf_filtered (file,
1648 _("Debugger's willingness to use displaced stepping "
1649 "to step over breakpoints is %s (currently %s).\n"),
1650 value, target_is_non_stop_p () ? "on" : "off");
1652 fprintf_filtered (file,
1653 _("Debugger's willingness to use displaced stepping "
1654 "to step over breakpoints is %s.\n"), value);
1657 /* Return non-zero if displaced stepping can/should be used to step
1658 over breakpoints of thread TP. */
1661 use_displaced_stepping (struct thread_info *tp)
1663 struct regcache *regcache = get_thread_regcache (tp->ptid);
1664 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1665 struct displaced_step_inferior_state *displaced_state;
1667 displaced_state = get_displaced_stepping_state (ptid_get_pid (tp->ptid));
1669 return (((can_use_displaced_stepping == AUTO_BOOLEAN_AUTO
1670 && target_is_non_stop_p ())
1671 || can_use_displaced_stepping == AUTO_BOOLEAN_TRUE)
1672 && gdbarch_displaced_step_copy_insn_p (gdbarch)
1673 && find_record_target () == NULL
1674 && (displaced_state == NULL
1675 || !displaced_state->failed_before));
1678 /* Clean out any stray displaced stepping state. */
1680 displaced_step_clear (struct displaced_step_inferior_state *displaced)
1682 /* Indicate that there is no cleanup pending. */
1683 displaced->step_ptid = null_ptid;
1685 if (displaced->step_closure)
1687 gdbarch_displaced_step_free_closure (displaced->step_gdbarch,
1688 displaced->step_closure);
1689 displaced->step_closure = NULL;
1694 displaced_step_clear_cleanup (void *arg)
1696 struct displaced_step_inferior_state *state = arg;
1698 displaced_step_clear (state);
1701 /* Dump LEN bytes at BUF in hex to FILE, followed by a newline. */
1703 displaced_step_dump_bytes (struct ui_file *file,
1704 const gdb_byte *buf,
1709 for (i = 0; i < len; i++)
1710 fprintf_unfiltered (file, "%02x ", buf[i]);
1711 fputs_unfiltered ("\n", file);
1714 /* Prepare to single-step, using displaced stepping.
1716 Note that we cannot use displaced stepping when we have a signal to
1717 deliver. If we have a signal to deliver and an instruction to step
1718 over, then after the step, there will be no indication from the
1719 target whether the thread entered a signal handler or ignored the
1720 signal and stepped over the instruction successfully --- both cases
1721 result in a simple SIGTRAP. In the first case we mustn't do a
1722 fixup, and in the second case we must --- but we can't tell which.
1723 Comments in the code for 'random signals' in handle_inferior_event
1724 explain how we handle this case instead.
1726 Returns 1 if preparing was successful -- this thread is going to be
1727 stepped now; 0 if displaced stepping this thread got queued; or -1
1728 if this instruction can't be displaced stepped. */
1731 displaced_step_prepare_throw (ptid_t ptid)
1733 struct cleanup *old_cleanups, *ignore_cleanups;
1734 struct thread_info *tp = find_thread_ptid (ptid);
1735 struct regcache *regcache = get_thread_regcache (ptid);
1736 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1737 CORE_ADDR original, copy;
1739 struct displaced_step_closure *closure;
1740 struct displaced_step_inferior_state *displaced;
1743 /* We should never reach this function if the architecture does not
1744 support displaced stepping. */
1745 gdb_assert (gdbarch_displaced_step_copy_insn_p (gdbarch));
1747 /* Nor if the thread isn't meant to step over a breakpoint. */
1748 gdb_assert (tp->control.trap_expected);
1750 /* Disable range stepping while executing in the scratch pad. We
1751 want a single-step even if executing the displaced instruction in
1752 the scratch buffer lands within the stepping range (e.g., a
1754 tp->control.may_range_step = 0;
1756 /* We have to displaced step one thread at a time, as we only have
1757 access to a single scratch space per inferior. */
1759 displaced = add_displaced_stepping_state (ptid_get_pid (ptid));
1761 if (!ptid_equal (displaced->step_ptid, null_ptid))
1763 /* Already waiting for a displaced step to finish. Defer this
1764 request and place in queue. */
1766 if (debug_displaced)
1767 fprintf_unfiltered (gdb_stdlog,
1768 "displaced: deferring step of %s\n",
1769 target_pid_to_str (ptid));
1771 thread_step_over_chain_enqueue (tp);
1776 if (debug_displaced)
1777 fprintf_unfiltered (gdb_stdlog,
1778 "displaced: stepping %s now\n",
1779 target_pid_to_str (ptid));
1782 displaced_step_clear (displaced);
1784 old_cleanups = save_inferior_ptid ();
1785 inferior_ptid = ptid;
1787 original = regcache_read_pc (regcache);
1789 copy = gdbarch_displaced_step_location (gdbarch);
1790 len = gdbarch_max_insn_length (gdbarch);
1792 /* Save the original contents of the copy area. */
1793 displaced->step_saved_copy = xmalloc (len);
1794 ignore_cleanups = make_cleanup (free_current_contents,
1795 &displaced->step_saved_copy);
1796 status = target_read_memory (copy, displaced->step_saved_copy, len);
1798 throw_error (MEMORY_ERROR,
1799 _("Error accessing memory address %s (%s) for "
1800 "displaced-stepping scratch space."),
1801 paddress (gdbarch, copy), safe_strerror (status));
1802 if (debug_displaced)
1804 fprintf_unfiltered (gdb_stdlog, "displaced: saved %s: ",
1805 paddress (gdbarch, copy));
1806 displaced_step_dump_bytes (gdb_stdlog,
1807 displaced->step_saved_copy,
1811 closure = gdbarch_displaced_step_copy_insn (gdbarch,
1812 original, copy, regcache);
1813 if (closure == NULL)
1815 /* The architecture doesn't know how or want to displaced step
1816 this instruction or instruction sequence. Fallback to
1817 stepping over the breakpoint in-line. */
1818 do_cleanups (old_cleanups);
1822 /* Save the information we need to fix things up if the step
1824 displaced->step_ptid = ptid;
1825 displaced->step_gdbarch = gdbarch;
1826 displaced->step_closure = closure;
1827 displaced->step_original = original;
1828 displaced->step_copy = copy;
1830 make_cleanup (displaced_step_clear_cleanup, displaced);
1832 /* Resume execution at the copy. */
1833 regcache_write_pc (regcache, copy);
1835 discard_cleanups (ignore_cleanups);
1837 do_cleanups (old_cleanups);
1839 if (debug_displaced)
1840 fprintf_unfiltered (gdb_stdlog, "displaced: displaced pc to %s\n",
1841 paddress (gdbarch, copy));
1846 /* Wrapper for displaced_step_prepare_throw that disabled further
1847 attempts at displaced stepping if we get a memory error. */
1850 displaced_step_prepare (ptid_t ptid)
1856 prepared = displaced_step_prepare_throw (ptid);
1858 CATCH (ex, RETURN_MASK_ERROR)
1860 struct displaced_step_inferior_state *displaced_state;
1862 if (ex.error != MEMORY_ERROR)
1863 throw_exception (ex);
1867 fprintf_unfiltered (gdb_stdlog,
1868 "infrun: disabling displaced stepping: %s\n",
1872 /* Be verbose if "set displaced-stepping" is "on", silent if
1874 if (can_use_displaced_stepping == AUTO_BOOLEAN_TRUE)
1876 warning (_("disabling displaced stepping: %s"),
1880 /* Disable further displaced stepping attempts. */
1882 = get_displaced_stepping_state (ptid_get_pid (ptid));
1883 displaced_state->failed_before = 1;
1891 write_memory_ptid (ptid_t ptid, CORE_ADDR memaddr,
1892 const gdb_byte *myaddr, int len)
1894 struct cleanup *ptid_cleanup = save_inferior_ptid ();
1896 inferior_ptid = ptid;
1897 write_memory (memaddr, myaddr, len);
1898 do_cleanups (ptid_cleanup);
1901 /* Restore the contents of the copy area for thread PTID. */
1904 displaced_step_restore (struct displaced_step_inferior_state *displaced,
1907 ULONGEST len = gdbarch_max_insn_length (displaced->step_gdbarch);
1909 write_memory_ptid (ptid, displaced->step_copy,
1910 displaced->step_saved_copy, len);
1911 if (debug_displaced)
1912 fprintf_unfiltered (gdb_stdlog, "displaced: restored %s %s\n",
1913 target_pid_to_str (ptid),
1914 paddress (displaced->step_gdbarch,
1915 displaced->step_copy));
1918 /* If we displaced stepped an instruction successfully, adjust
1919 registers and memory to yield the same effect the instruction would
1920 have had if we had executed it at its original address, and return
1921 1. If the instruction didn't complete, relocate the PC and return
1922 -1. If the thread wasn't displaced stepping, return 0. */
1925 displaced_step_fixup (ptid_t event_ptid, enum gdb_signal signal)
1927 struct cleanup *old_cleanups;
1928 struct displaced_step_inferior_state *displaced
1929 = get_displaced_stepping_state (ptid_get_pid (event_ptid));
1932 /* Was any thread of this process doing a displaced step? */
1933 if (displaced == NULL)
1936 /* Was this event for the pid we displaced? */
1937 if (ptid_equal (displaced->step_ptid, null_ptid)
1938 || ! ptid_equal (displaced->step_ptid, event_ptid))
1941 old_cleanups = make_cleanup (displaced_step_clear_cleanup, displaced);
1943 displaced_step_restore (displaced, displaced->step_ptid);
1945 /* Fixup may need to read memory/registers. Switch to the thread
1946 that we're fixing up. Also, target_stopped_by_watchpoint checks
1947 the current thread. */
1948 switch_to_thread (event_ptid);
1950 /* Did the instruction complete successfully? */
1951 if (signal == GDB_SIGNAL_TRAP
1952 && !(target_stopped_by_watchpoint ()
1953 && (gdbarch_have_nonsteppable_watchpoint (displaced->step_gdbarch)
1954 || target_have_steppable_watchpoint)))
1956 /* Fix up the resulting state. */
1957 gdbarch_displaced_step_fixup (displaced->step_gdbarch,
1958 displaced->step_closure,
1959 displaced->step_original,
1960 displaced->step_copy,
1961 get_thread_regcache (displaced->step_ptid));
1966 /* Since the instruction didn't complete, all we can do is
1968 struct regcache *regcache = get_thread_regcache (event_ptid);
1969 CORE_ADDR pc = regcache_read_pc (regcache);
1971 pc = displaced->step_original + (pc - displaced->step_copy);
1972 regcache_write_pc (regcache, pc);
1976 do_cleanups (old_cleanups);
1978 displaced->step_ptid = null_ptid;
1983 /* Data to be passed around while handling an event. This data is
1984 discarded between events. */
1985 struct execution_control_state
1988 /* The thread that got the event, if this was a thread event; NULL
1990 struct thread_info *event_thread;
1992 struct target_waitstatus ws;
1993 int stop_func_filled_in;
1994 CORE_ADDR stop_func_start;
1995 CORE_ADDR stop_func_end;
1996 const char *stop_func_name;
1999 /* True if the event thread hit the single-step breakpoint of
2000 another thread. Thus the event doesn't cause a stop, the thread
2001 needs to be single-stepped past the single-step breakpoint before
2002 we can switch back to the original stepping thread. */
2003 int hit_singlestep_breakpoint;
2006 /* Clear ECS and set it to point at TP. */
2009 reset_ecs (struct execution_control_state *ecs, struct thread_info *tp)
2011 memset (ecs, 0, sizeof (*ecs));
2012 ecs->event_thread = tp;
2013 ecs->ptid = tp->ptid;
2016 static void keep_going_pass_signal (struct execution_control_state *ecs);
2017 static void prepare_to_wait (struct execution_control_state *ecs);
2018 static int keep_going_stepped_thread (struct thread_info *tp);
2019 static int thread_still_needs_step_over (struct thread_info *tp);
2020 static void stop_all_threads (void);
2022 /* Are there any pending step-over requests? If so, run all we can
2023 now and return true. Otherwise, return false. */
2026 start_step_over (void)
2028 struct thread_info *tp, *next;
2030 /* Don't start a new step-over if we already have an in-line
2031 step-over operation ongoing. */
2032 if (step_over_info_valid_p ())
2035 for (tp = step_over_queue_head; tp != NULL; tp = next)
2037 struct execution_control_state ecss;
2038 struct execution_control_state *ecs = &ecss;
2039 enum step_over_what step_what;
2040 int must_be_in_line;
2042 next = thread_step_over_chain_next (tp);
2044 /* If this inferior already has a displaced step in process,
2045 don't start a new one. */
2046 if (displaced_step_in_progress (ptid_get_pid (tp->ptid)))
2049 step_what = thread_still_needs_step_over (tp);
2050 must_be_in_line = ((step_what & STEP_OVER_WATCHPOINT)
2051 || ((step_what & STEP_OVER_BREAKPOINT)
2052 && !use_displaced_stepping (tp)));
2054 /* We currently stop all threads of all processes to step-over
2055 in-line. If we need to start a new in-line step-over, let
2056 any pending displaced steps finish first. */
2057 if (must_be_in_line && displaced_step_in_progress_any_inferior ())
2060 thread_step_over_chain_remove (tp);
2062 if (step_over_queue_head == NULL)
2065 fprintf_unfiltered (gdb_stdlog,
2066 "infrun: step-over queue now empty\n");
2069 if (tp->control.trap_expected
2073 internal_error (__FILE__, __LINE__,
2074 "[%s] has inconsistent state: "
2075 "trap_expected=%d, resumed=%d, executing=%d\n",
2076 target_pid_to_str (tp->ptid),
2077 tp->control.trap_expected,
2083 fprintf_unfiltered (gdb_stdlog,
2084 "infrun: resuming [%s] for step-over\n",
2085 target_pid_to_str (tp->ptid));
2087 /* keep_going_pass_signal skips the step-over if the breakpoint
2088 is no longer inserted. In all-stop, we want to keep looking
2089 for a thread that needs a step-over instead of resuming TP,
2090 because we wouldn't be able to resume anything else until the
2091 target stops again. In non-stop, the resume always resumes
2092 only TP, so it's OK to let the thread resume freely. */
2093 if (!target_is_non_stop_p () && !step_what)
2096 switch_to_thread (tp->ptid);
2097 reset_ecs (ecs, tp);
2098 keep_going_pass_signal (ecs);
2100 if (!ecs->wait_some_more)
2101 error (_("Command aborted."));
2103 gdb_assert (tp->resumed);
2105 /* If we started a new in-line step-over, we're done. */
2106 if (step_over_info_valid_p ())
2108 gdb_assert (tp->control.trap_expected);
2112 if (!target_is_non_stop_p ())
2114 /* On all-stop, shouldn't have resumed unless we needed a
2116 gdb_assert (tp->control.trap_expected
2117 || tp->step_after_step_resume_breakpoint);
2119 /* With remote targets (at least), in all-stop, we can't
2120 issue any further remote commands until the program stops
2125 /* Either the thread no longer needed a step-over, or a new
2126 displaced stepping sequence started. Even in the latter
2127 case, continue looking. Maybe we can also start another
2128 displaced step on a thread of other process. */
2134 /* Update global variables holding ptids to hold NEW_PTID if they were
2135 holding OLD_PTID. */
2137 infrun_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
2139 struct displaced_step_request *it;
2140 struct displaced_step_inferior_state *displaced;
2142 if (ptid_equal (inferior_ptid, old_ptid))
2143 inferior_ptid = new_ptid;
2145 for (displaced = displaced_step_inferior_states;
2147 displaced = displaced->next)
2149 if (ptid_equal (displaced->step_ptid, old_ptid))
2150 displaced->step_ptid = new_ptid;
2157 /* Things to clean up if we QUIT out of resume (). */
2159 resume_cleanups (void *ignore)
2161 if (!ptid_equal (inferior_ptid, null_ptid))
2162 delete_single_step_breakpoints (inferior_thread ());
2167 static const char schedlock_off[] = "off";
2168 static const char schedlock_on[] = "on";
2169 static const char schedlock_step[] = "step";
2170 static const char *const scheduler_enums[] = {
2176 static const char *scheduler_mode = schedlock_off;
2178 show_scheduler_mode (struct ui_file *file, int from_tty,
2179 struct cmd_list_element *c, const char *value)
2181 fprintf_filtered (file,
2182 _("Mode for locking scheduler "
2183 "during execution is \"%s\".\n"),
2188 set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
2190 if (!target_can_lock_scheduler)
2192 scheduler_mode = schedlock_off;
2193 error (_("Target '%s' cannot support this command."), target_shortname);
2197 /* True if execution commands resume all threads of all processes by
2198 default; otherwise, resume only threads of the current inferior
2200 int sched_multi = 0;
2202 /* Try to setup for software single stepping over the specified location.
2203 Return 1 if target_resume() should use hardware single step.
2205 GDBARCH the current gdbarch.
2206 PC the location to step over. */
2209 maybe_software_singlestep (struct gdbarch *gdbarch, CORE_ADDR pc)
2213 if (execution_direction == EXEC_FORWARD
2214 && gdbarch_software_single_step_p (gdbarch)
2215 && gdbarch_software_single_step (gdbarch, get_current_frame ()))
2225 user_visible_resume_ptid (int step)
2231 /* With non-stop mode on, threads are always handled
2233 resume_ptid = inferior_ptid;
2235 else if ((scheduler_mode == schedlock_on)
2236 || (scheduler_mode == schedlock_step && step))
2238 /* User-settable 'scheduler' mode requires solo thread
2240 resume_ptid = inferior_ptid;
2242 else if (!sched_multi && target_supports_multi_process ())
2244 /* Resume all threads of the current process (and none of other
2246 resume_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
2250 /* Resume all threads of all processes. */
2251 resume_ptid = RESUME_ALL;
2257 /* Return a ptid representing the set of threads that we will resume,
2258 in the perspective of the target, assuming run control handling
2259 does not require leaving some threads stopped (e.g., stepping past
2260 breakpoint). USER_STEP indicates whether we're about to start the
2261 target for a stepping command. */
2264 internal_resume_ptid (int user_step)
2266 /* In non-stop, we always control threads individually. Note that
2267 the target may always work in non-stop mode even with "set
2268 non-stop off", in which case user_visible_resume_ptid could
2269 return a wildcard ptid. */
2270 if (target_is_non_stop_p ())
2271 return inferior_ptid;
2273 return user_visible_resume_ptid (user_step);
2276 /* Wrapper for target_resume, that handles infrun-specific
2280 do_target_resume (ptid_t resume_ptid, int step, enum gdb_signal sig)
2282 struct thread_info *tp = inferior_thread ();
2284 /* Install inferior's terminal modes. */
2285 target_terminal_inferior ();
2287 /* Avoid confusing the next resume, if the next stop/resume
2288 happens to apply to another thread. */
2289 tp->suspend.stop_signal = GDB_SIGNAL_0;
2291 /* Advise target which signals may be handled silently.
2293 If we have removed breakpoints because we are stepping over one
2294 in-line (in any thread), we need to receive all signals to avoid
2295 accidentally skipping a breakpoint during execution of a signal
2298 Likewise if we're displaced stepping, otherwise a trap for a
2299 breakpoint in a signal handler might be confused with the
2300 displaced step finishing. We don't make the displaced_step_fixup
2301 step distinguish the cases instead, because:
2303 - a backtrace while stopped in the signal handler would show the
2304 scratch pad as frame older than the signal handler, instead of
2305 the real mainline code.
2307 - when the thread is later resumed, the signal handler would
2308 return to the scratch pad area, which would no longer be
2310 if (step_over_info_valid_p ()
2311 || displaced_step_in_progress (ptid_get_pid (tp->ptid)))
2312 target_pass_signals (0, NULL);
2314 target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
2316 target_resume (resume_ptid, step, sig);
2319 /* Resume the inferior, but allow a QUIT. This is useful if the user
2320 wants to interrupt some lengthy single-stepping operation
2321 (for child processes, the SIGINT goes to the inferior, and so
2322 we get a SIGINT random_signal, but for remote debugging and perhaps
2323 other targets, that's not true).
2325 SIG is the signal to give the inferior (zero for none). */
2327 resume (enum gdb_signal sig)
2329 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
2330 struct regcache *regcache = get_current_regcache ();
2331 struct gdbarch *gdbarch = get_regcache_arch (regcache);
2332 struct thread_info *tp = inferior_thread ();
2333 CORE_ADDR pc = regcache_read_pc (regcache);
2334 struct address_space *aspace = get_regcache_aspace (regcache);
2336 /* This represents the user's step vs continue request. When
2337 deciding whether "set scheduler-locking step" applies, it's the
2338 user's intention that counts. */
2339 const int user_step = tp->control.stepping_command;
2340 /* This represents what we'll actually request the target to do.
2341 This can decay from a step to a continue, if e.g., we need to
2342 implement single-stepping with breakpoints (software
2346 gdb_assert (!thread_is_in_step_over_chain (tp));
2350 if (tp->suspend.waitstatus_pending_p)
2356 statstr = target_waitstatus_to_string (&tp->suspend.waitstatus);
2357 fprintf_unfiltered (gdb_stdlog,
2358 "infrun: resume: thread %s has pending wait status %s "
2359 "(currently_stepping=%d).\n",
2360 target_pid_to_str (tp->ptid), statstr,
2361 currently_stepping (tp));
2367 /* FIXME: What should we do if we are supposed to resume this
2368 thread with a signal? Maybe we should maintain a queue of
2369 pending signals to deliver. */
2370 if (sig != GDB_SIGNAL_0)
2372 warning (_("Couldn't deliver signal %s to %s."),
2373 gdb_signal_to_name (sig), target_pid_to_str (tp->ptid));
2376 tp->suspend.stop_signal = GDB_SIGNAL_0;
2377 discard_cleanups (old_cleanups);
2379 if (target_can_async_p ())
2384 tp->stepped_breakpoint = 0;
2386 /* Depends on stepped_breakpoint. */
2387 step = currently_stepping (tp);
2389 if (current_inferior ()->waiting_for_vfork_done)
2391 /* Don't try to single-step a vfork parent that is waiting for
2392 the child to get out of the shared memory region (by exec'ing
2393 or exiting). This is particularly important on software
2394 single-step archs, as the child process would trip on the
2395 software single step breakpoint inserted for the parent
2396 process. Since the parent will not actually execute any
2397 instruction until the child is out of the shared region (such
2398 are vfork's semantics), it is safe to simply continue it.
2399 Eventually, we'll see a TARGET_WAITKIND_VFORK_DONE event for
2400 the parent, and tell it to `keep_going', which automatically
2401 re-sets it stepping. */
2403 fprintf_unfiltered (gdb_stdlog,
2404 "infrun: resume : clear step\n");
2409 fprintf_unfiltered (gdb_stdlog,
2410 "infrun: resume (step=%d, signal=%s), "
2411 "trap_expected=%d, current thread [%s] at %s\n",
2412 step, gdb_signal_to_symbol_string (sig),
2413 tp->control.trap_expected,
2414 target_pid_to_str (inferior_ptid),
2415 paddress (gdbarch, pc));
2417 /* Normally, by the time we reach `resume', the breakpoints are either
2418 removed or inserted, as appropriate. The exception is if we're sitting
2419 at a permanent breakpoint; we need to step over it, but permanent
2420 breakpoints can't be removed. So we have to test for it here. */
2421 if (breakpoint_here_p (aspace, pc) == permanent_breakpoint_here)
2423 if (sig != GDB_SIGNAL_0)
2425 /* We have a signal to pass to the inferior. The resume
2426 may, or may not take us to the signal handler. If this
2427 is a step, we'll need to stop in the signal handler, if
2428 there's one, (if the target supports stepping into
2429 handlers), or in the next mainline instruction, if
2430 there's no handler. If this is a continue, we need to be
2431 sure to run the handler with all breakpoints inserted.
2432 In all cases, set a breakpoint at the current address
2433 (where the handler returns to), and once that breakpoint
2434 is hit, resume skipping the permanent breakpoint. If
2435 that breakpoint isn't hit, then we've stepped into the
2436 signal handler (or hit some other event). We'll delete
2437 the step-resume breakpoint then. */
2440 fprintf_unfiltered (gdb_stdlog,
2441 "infrun: resume: skipping permanent breakpoint, "
2442 "deliver signal first\n");
2444 clear_step_over_info ();
2445 tp->control.trap_expected = 0;
2447 if (tp->control.step_resume_breakpoint == NULL)
2449 /* Set a "high-priority" step-resume, as we don't want
2450 user breakpoints at PC to trigger (again) when this
2452 insert_hp_step_resume_breakpoint_at_frame (get_current_frame ());
2453 gdb_assert (tp->control.step_resume_breakpoint->loc->permanent);
2455 tp->step_after_step_resume_breakpoint = step;
2458 insert_breakpoints ();
2462 /* There's no signal to pass, we can go ahead and skip the
2463 permanent breakpoint manually. */
2465 fprintf_unfiltered (gdb_stdlog,
2466 "infrun: resume: skipping permanent breakpoint\n");
2467 gdbarch_skip_permanent_breakpoint (gdbarch, regcache);
2468 /* Update pc to reflect the new address from which we will
2469 execute instructions. */
2470 pc = regcache_read_pc (regcache);
2474 /* We've already advanced the PC, so the stepping part
2475 is done. Now we need to arrange for a trap to be
2476 reported to handle_inferior_event. Set a breakpoint
2477 at the current PC, and run to it. Don't update
2478 prev_pc, because if we end in
2479 switch_back_to_stepped_thread, we want the "expected
2480 thread advanced also" branch to be taken. IOW, we
2481 don't want this thread to step further from PC
2483 gdb_assert (!step_over_info_valid_p ());
2484 insert_single_step_breakpoint (gdbarch, aspace, pc);
2485 insert_breakpoints ();
2487 resume_ptid = internal_resume_ptid (user_step);
2488 do_target_resume (resume_ptid, 0, GDB_SIGNAL_0);
2489 discard_cleanups (old_cleanups);
2496 /* If we have a breakpoint to step over, make sure to do a single
2497 step only. Same if we have software watchpoints. */
2498 if (tp->control.trap_expected || bpstat_should_step ())
2499 tp->control.may_range_step = 0;
2501 /* If enabled, step over breakpoints by executing a copy of the
2502 instruction at a different address.
2504 We can't use displaced stepping when we have a signal to deliver;
2505 the comments for displaced_step_prepare explain why. The
2506 comments in the handle_inferior event for dealing with 'random
2507 signals' explain what we do instead.
2509 We can't use displaced stepping when we are waiting for vfork_done
2510 event, displaced stepping breaks the vfork child similarly as single
2511 step software breakpoint. */
2512 if (tp->control.trap_expected
2513 && use_displaced_stepping (tp)
2514 && !step_over_info_valid_p ()
2515 && sig == GDB_SIGNAL_0
2516 && !current_inferior ()->waiting_for_vfork_done)
2518 int prepared = displaced_step_prepare (inferior_ptid);
2523 fprintf_unfiltered (gdb_stdlog,
2524 "Got placed in step-over queue\n");
2526 tp->control.trap_expected = 0;
2527 discard_cleanups (old_cleanups);
2530 else if (prepared < 0)
2532 /* Fallback to stepping over the breakpoint in-line. */
2534 if (target_is_non_stop_p ())
2535 stop_all_threads ();
2537 set_step_over_info (get_regcache_aspace (regcache),
2538 regcache_read_pc (regcache), 0);
2540 step = maybe_software_singlestep (gdbarch, pc);
2542 insert_breakpoints ();
2544 else if (prepared > 0)
2546 struct displaced_step_inferior_state *displaced;
2548 /* Update pc to reflect the new address from which we will
2549 execute instructions due to displaced stepping. */
2550 pc = regcache_read_pc (get_thread_regcache (inferior_ptid));
2552 displaced = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
2553 step = gdbarch_displaced_step_hw_singlestep (gdbarch,
2554 displaced->step_closure);
2558 /* Do we need to do it the hard way, w/temp breakpoints? */
2560 step = maybe_software_singlestep (gdbarch, pc);
2562 /* Currently, our software single-step implementation leads to different
2563 results than hardware single-stepping in one situation: when stepping
2564 into delivering a signal which has an associated signal handler,
2565 hardware single-step will stop at the first instruction of the handler,
2566 while software single-step will simply skip execution of the handler.
2568 For now, this difference in behavior is accepted since there is no
2569 easy way to actually implement single-stepping into a signal handler
2570 without kernel support.
2572 However, there is one scenario where this difference leads to follow-on
2573 problems: if we're stepping off a breakpoint by removing all breakpoints
2574 and then single-stepping. In this case, the software single-step
2575 behavior means that even if there is a *breakpoint* in the signal
2576 handler, GDB still would not stop.
2578 Fortunately, we can at least fix this particular issue. We detect
2579 here the case where we are about to deliver a signal while software
2580 single-stepping with breakpoints removed. In this situation, we
2581 revert the decisions to remove all breakpoints and insert single-
2582 step breakpoints, and instead we install a step-resume breakpoint
2583 at the current address, deliver the signal without stepping, and
2584 once we arrive back at the step-resume breakpoint, actually step
2585 over the breakpoint we originally wanted to step over. */
2586 if (thread_has_single_step_breakpoints_set (tp)
2587 && sig != GDB_SIGNAL_0
2588 && step_over_info_valid_p ())
2590 /* If we have nested signals or a pending signal is delivered
2591 immediately after a handler returns, might might already have
2592 a step-resume breakpoint set on the earlier handler. We cannot
2593 set another step-resume breakpoint; just continue on until the
2594 original breakpoint is hit. */
2595 if (tp->control.step_resume_breakpoint == NULL)
2597 insert_hp_step_resume_breakpoint_at_frame (get_current_frame ());
2598 tp->step_after_step_resume_breakpoint = 1;
2601 delete_single_step_breakpoints (tp);
2603 clear_step_over_info ();
2604 tp->control.trap_expected = 0;
2606 insert_breakpoints ();
2609 /* If STEP is set, it's a request to use hardware stepping
2610 facilities. But in that case, we should never
2611 use singlestep breakpoint. */
2612 gdb_assert (!(thread_has_single_step_breakpoints_set (tp) && step));
2614 /* Decide the set of threads to ask the target to resume. */
2615 if ((step || thread_has_single_step_breakpoints_set (tp))
2616 && tp->control.trap_expected)
2618 /* We're allowing a thread to run past a breakpoint it has
2619 hit, by single-stepping the thread with the breakpoint
2620 removed. In which case, we need to single-step only this
2621 thread, and keep others stopped, as they can miss this
2622 breakpoint if allowed to run. */
2623 resume_ptid = inferior_ptid;
2626 resume_ptid = internal_resume_ptid (user_step);
2628 if (execution_direction != EXEC_REVERSE
2629 && step && breakpoint_inserted_here_p (aspace, pc))
2631 /* There are two cases where we currently need to step a
2632 breakpoint instruction when we have a signal to deliver:
2634 - See handle_signal_stop where we handle random signals that
2635 could take out us out of the stepping range. Normally, in
2636 that case we end up continuing (instead of stepping) over the
2637 signal handler with a breakpoint at PC, but there are cases
2638 where we should _always_ single-step, even if we have a
2639 step-resume breakpoint, like when a software watchpoint is
2640 set. Assuming single-stepping and delivering a signal at the
2641 same time would takes us to the signal handler, then we could
2642 have removed the breakpoint at PC to step over it. However,
2643 some hardware step targets (like e.g., Mac OS) can't step
2644 into signal handlers, and for those, we need to leave the
2645 breakpoint at PC inserted, as otherwise if the handler
2646 recurses and executes PC again, it'll miss the breakpoint.
2647 So we leave the breakpoint inserted anyway, but we need to
2648 record that we tried to step a breakpoint instruction, so
2649 that adjust_pc_after_break doesn't end up confused.
2651 - In non-stop if we insert a breakpoint (e.g., a step-resume)
2652 in one thread after another thread that was stepping had been
2653 momentarily paused for a step-over. When we re-resume the
2654 stepping thread, it may be resumed from that address with a
2655 breakpoint that hasn't trapped yet. Seen with
2656 gdb.threads/non-stop-fair-events.exp, on targets that don't
2657 do displaced stepping. */
2660 fprintf_unfiltered (gdb_stdlog,
2661 "infrun: resume: [%s] stepped breakpoint\n",
2662 target_pid_to_str (tp->ptid));
2664 tp->stepped_breakpoint = 1;
2666 /* Most targets can step a breakpoint instruction, thus
2667 executing it normally. But if this one cannot, just
2668 continue and we will hit it anyway. */
2669 if (gdbarch_cannot_step_breakpoint (gdbarch))
2674 && tp->control.trap_expected
2675 && use_displaced_stepping (tp)
2676 && !step_over_info_valid_p ())
2678 struct regcache *resume_regcache = get_thread_regcache (tp->ptid);
2679 struct gdbarch *resume_gdbarch = get_regcache_arch (resume_regcache);
2680 CORE_ADDR actual_pc = regcache_read_pc (resume_regcache);
2683 fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
2684 paddress (resume_gdbarch, actual_pc));
2685 read_memory (actual_pc, buf, sizeof (buf));
2686 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
2689 if (tp->control.may_range_step)
2691 /* If we're resuming a thread with the PC out of the step
2692 range, then we're doing some nested/finer run control
2693 operation, like stepping the thread out of the dynamic
2694 linker or the displaced stepping scratch pad. We
2695 shouldn't have allowed a range step then. */
2696 gdb_assert (pc_in_thread_step_range (pc, tp));
2699 do_target_resume (resume_ptid, step, sig);
2701 discard_cleanups (old_cleanups);
2706 /* Clear out all variables saying what to do when inferior is continued.
2707 First do this, then set the ones you want, then call `proceed'. */
2710 clear_proceed_status_thread (struct thread_info *tp)
2713 fprintf_unfiltered (gdb_stdlog,
2714 "infrun: clear_proceed_status_thread (%s)\n",
2715 target_pid_to_str (tp->ptid));
2717 /* If we're starting a new sequence, then the previous finished
2718 single-step is no longer relevant. */
2719 if (tp->suspend.waitstatus_pending_p)
2721 if (tp->suspend.stop_reason == TARGET_STOPPED_BY_SINGLE_STEP)
2724 fprintf_unfiltered (gdb_stdlog,
2725 "infrun: clear_proceed_status: pending "
2726 "event of %s was a finished step. "
2728 target_pid_to_str (tp->ptid));
2730 tp->suspend.waitstatus_pending_p = 0;
2731 tp->suspend.stop_reason = TARGET_STOPPED_BY_NO_REASON;
2733 else if (debug_infrun)
2737 statstr = target_waitstatus_to_string (&tp->suspend.waitstatus);
2738 fprintf_unfiltered (gdb_stdlog,
2739 "infrun: clear_proceed_status_thread: thread %s "
2740 "has pending wait status %s "
2741 "(currently_stepping=%d).\n",
2742 target_pid_to_str (tp->ptid), statstr,
2743 currently_stepping (tp));
2748 /* If this signal should not be seen by program, give it zero.
2749 Used for debugging signals. */
2750 if (!signal_pass_state (tp->suspend.stop_signal))
2751 tp->suspend.stop_signal = GDB_SIGNAL_0;
2753 thread_fsm_delete (tp->thread_fsm);
2754 tp->thread_fsm = NULL;
2756 tp->control.trap_expected = 0;
2757 tp->control.step_range_start = 0;
2758 tp->control.step_range_end = 0;
2759 tp->control.may_range_step = 0;
2760 tp->control.step_frame_id = null_frame_id;
2761 tp->control.step_stack_frame_id = null_frame_id;
2762 tp->control.step_over_calls = STEP_OVER_UNDEBUGGABLE;
2763 tp->control.step_start_function = NULL;
2764 tp->stop_requested = 0;
2766 tp->control.stop_step = 0;
2768 tp->control.proceed_to_finish = 0;
2770 tp->control.command_interp = NULL;
2771 tp->control.stepping_command = 0;
2773 /* Discard any remaining commands or status from previous stop. */
2774 bpstat_clear (&tp->control.stop_bpstat);
2778 clear_proceed_status (int step)
2782 struct thread_info *tp;
2785 resume_ptid = user_visible_resume_ptid (step);
2787 /* In all-stop mode, delete the per-thread status of all threads
2788 we're about to resume, implicitly and explicitly. */
2789 ALL_NON_EXITED_THREADS (tp)
2791 if (!ptid_match (tp->ptid, resume_ptid))
2793 clear_proceed_status_thread (tp);
2797 if (!ptid_equal (inferior_ptid, null_ptid))
2799 struct inferior *inferior;
2803 /* If in non-stop mode, only delete the per-thread status of
2804 the current thread. */
2805 clear_proceed_status_thread (inferior_thread ());
2808 inferior = current_inferior ();
2809 inferior->control.stop_soon = NO_STOP_QUIETLY;
2812 stop_after_trap = 0;
2814 observer_notify_about_to_proceed ();
2817 /* Returns true if TP is still stopped at a breakpoint that needs
2818 stepping-over in order to make progress. If the breakpoint is gone
2819 meanwhile, we can skip the whole step-over dance. */
2822 thread_still_needs_step_over_bp (struct thread_info *tp)
2824 if (tp->stepping_over_breakpoint)
2826 struct regcache *regcache = get_thread_regcache (tp->ptid);
2828 if (breakpoint_here_p (get_regcache_aspace (regcache),
2829 regcache_read_pc (regcache))
2830 == ordinary_breakpoint_here)
2833 tp->stepping_over_breakpoint = 0;
2839 /* Check whether thread TP still needs to start a step-over in order
2840 to make progress when resumed. Returns an bitwise or of enum
2841 step_over_what bits, indicating what needs to be stepped over. */
2844 thread_still_needs_step_over (struct thread_info *tp)
2846 struct inferior *inf = find_inferior_ptid (tp->ptid);
2849 if (thread_still_needs_step_over_bp (tp))
2850 what |= STEP_OVER_BREAKPOINT;
2852 if (tp->stepping_over_watchpoint
2853 && !target_have_steppable_watchpoint)
2854 what |= STEP_OVER_WATCHPOINT;
2859 /* Returns true if scheduler locking applies. STEP indicates whether
2860 we're about to do a step/next-like command to a thread. */
2863 schedlock_applies (struct thread_info *tp)
2865 return (scheduler_mode == schedlock_on
2866 || (scheduler_mode == schedlock_step
2867 && tp->control.stepping_command));
2870 /* Basic routine for continuing the program in various fashions.
2872 ADDR is the address to resume at, or -1 for resume where stopped.
2873 SIGGNAL is the signal to give it, or 0 for none,
2874 or -1 for act according to how it stopped.
2875 STEP is nonzero if should trap after one instruction.
2876 -1 means return after that and print nothing.
2877 You should probably set various step_... variables
2878 before calling here, if you are stepping.
2880 You should call clear_proceed_status before calling proceed. */
2883 proceed (CORE_ADDR addr, enum gdb_signal siggnal)
2885 struct regcache *regcache;
2886 struct gdbarch *gdbarch;
2887 struct thread_info *tp;
2889 struct address_space *aspace;
2891 struct execution_control_state ecss;
2892 struct execution_control_state *ecs = &ecss;
2893 struct cleanup *old_chain;
2896 /* If we're stopped at a fork/vfork, follow the branch set by the
2897 "set follow-fork-mode" command; otherwise, we'll just proceed
2898 resuming the current thread. */
2899 if (!follow_fork ())
2901 /* The target for some reason decided not to resume. */
2903 if (target_can_async_p ())
2904 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
2908 /* We'll update this if & when we switch to a new thread. */
2909 previous_inferior_ptid = inferior_ptid;
2911 regcache = get_current_regcache ();
2912 gdbarch = get_regcache_arch (regcache);
2913 aspace = get_regcache_aspace (regcache);
2914 pc = regcache_read_pc (regcache);
2915 tp = inferior_thread ();
2917 /* Fill in with reasonable starting values. */
2918 init_thread_stepping_state (tp);
2920 gdb_assert (!thread_is_in_step_over_chain (tp));
2922 if (addr == (CORE_ADDR) -1)
2925 && breakpoint_here_p (aspace, pc) == ordinary_breakpoint_here
2926 && execution_direction != EXEC_REVERSE)
2927 /* There is a breakpoint at the address we will resume at,
2928 step one instruction before inserting breakpoints so that
2929 we do not stop right away (and report a second hit at this
2932 Note, we don't do this in reverse, because we won't
2933 actually be executing the breakpoint insn anyway.
2934 We'll be (un-)executing the previous instruction. */
2935 tp->stepping_over_breakpoint = 1;
2936 else if (gdbarch_single_step_through_delay_p (gdbarch)
2937 && gdbarch_single_step_through_delay (gdbarch,
2938 get_current_frame ()))
2939 /* We stepped onto an instruction that needs to be stepped
2940 again before re-inserting the breakpoint, do so. */
2941 tp->stepping_over_breakpoint = 1;
2945 regcache_write_pc (regcache, addr);
2948 if (siggnal != GDB_SIGNAL_DEFAULT)
2949 tp->suspend.stop_signal = siggnal;
2951 /* Record the interpreter that issued the execution command that
2952 caused this thread to resume. If the top level interpreter is
2953 MI/async, and the execution command was a CLI command
2954 (next/step/etc.), we'll want to print stop event output to the MI
2955 console channel (the stepped-to line, etc.), as if the user
2956 entered the execution command on a real GDB console. */
2957 tp->control.command_interp = command_interp ();
2959 resume_ptid = user_visible_resume_ptid (tp->control.stepping_command);
2961 /* If an exception is thrown from this point on, make sure to
2962 propagate GDB's knowledge of the executing state to the
2963 frontend/user running state. */
2964 old_chain = make_cleanup (finish_thread_state_cleanup, &resume_ptid);
2966 /* Even if RESUME_PTID is a wildcard, and we end up resuming fewer
2967 threads (e.g., we might need to set threads stepping over
2968 breakpoints first), from the user/frontend's point of view, all
2969 threads in RESUME_PTID are now running. Unless we're calling an
2970 inferior function, as in that case we pretend the inferior
2971 doesn't run at all. */
2972 if (!tp->control.in_infcall)
2973 set_running (resume_ptid, 1);
2976 fprintf_unfiltered (gdb_stdlog,
2977 "infrun: proceed (addr=%s, signal=%s)\n",
2978 paddress (gdbarch, addr),
2979 gdb_signal_to_symbol_string (siggnal));
2981 annotate_starting ();
2983 /* Make sure that output from GDB appears before output from the
2985 gdb_flush (gdb_stdout);
2987 /* In a multi-threaded task we may select another thread and
2988 then continue or step.
2990 But if a thread that we're resuming had stopped at a breakpoint,
2991 it will immediately cause another breakpoint stop without any
2992 execution (i.e. it will report a breakpoint hit incorrectly). So
2993 we must step over it first.
2995 Look for threads other than the current (TP) that reported a
2996 breakpoint hit and haven't been resumed yet since. */
2998 /* If scheduler locking applies, we can avoid iterating over all
3000 if (!non_stop && !schedlock_applies (tp))
3002 struct thread_info *current = tp;
3004 ALL_NON_EXITED_THREADS (tp)
3006 /* Ignore the current thread here. It's handled
3011 /* Ignore threads of processes we're not resuming. */
3012 if (!ptid_match (tp->ptid, resume_ptid))
3015 if (!thread_still_needs_step_over (tp))
3018 gdb_assert (!thread_is_in_step_over_chain (tp));
3021 fprintf_unfiltered (gdb_stdlog,
3022 "infrun: need to step-over [%s] first\n",
3023 target_pid_to_str (tp->ptid));
3025 thread_step_over_chain_enqueue (tp);
3031 /* Enqueue the current thread last, so that we move all other
3032 threads over their breakpoints first. */
3033 if (tp->stepping_over_breakpoint)
3034 thread_step_over_chain_enqueue (tp);
3036 /* If the thread isn't started, we'll still need to set its prev_pc,
3037 so that switch_back_to_stepped_thread knows the thread hasn't
3038 advanced. Must do this before resuming any thread, as in
3039 all-stop/remote, once we resume we can't send any other packet
3040 until the target stops again. */
3041 tp->prev_pc = regcache_read_pc (regcache);
3043 started = start_step_over ();
3045 if (step_over_info_valid_p ())
3047 /* Either this thread started a new in-line step over, or some
3048 other thread was already doing one. In either case, don't
3049 resume anything else until the step-over is finished. */
3051 else if (started && !target_is_non_stop_p ())
3053 /* A new displaced stepping sequence was started. In all-stop,
3054 we can't talk to the target anymore until it next stops. */
3056 else if (!non_stop && target_is_non_stop_p ())
3058 /* In all-stop, but the target is always in non-stop mode.
3059 Start all other threads that are implicitly resumed too. */
3060 ALL_NON_EXITED_THREADS (tp)
3062 /* Ignore threads of processes we're not resuming. */
3063 if (!ptid_match (tp->ptid, resume_ptid))
3069 fprintf_unfiltered (gdb_stdlog,
3070 "infrun: proceed: [%s] resumed\n",
3071 target_pid_to_str (tp->ptid));
3072 gdb_assert (tp->executing || tp->suspend.waitstatus_pending_p);
3076 if (thread_is_in_step_over_chain (tp))
3079 fprintf_unfiltered (gdb_stdlog,
3080 "infrun: proceed: [%s] needs step-over\n",
3081 target_pid_to_str (tp->ptid));
3086 fprintf_unfiltered (gdb_stdlog,
3087 "infrun: proceed: resuming %s\n",
3088 target_pid_to_str (tp->ptid));
3090 reset_ecs (ecs, tp);
3091 switch_to_thread (tp->ptid);
3092 keep_going_pass_signal (ecs);
3093 if (!ecs->wait_some_more)
3094 error (_("Command aborted."));
3097 else if (!tp->resumed && !thread_is_in_step_over_chain (tp))
3099 /* The thread wasn't started, and isn't queued, run it now. */
3100 reset_ecs (ecs, tp);
3101 switch_to_thread (tp->ptid);
3102 keep_going_pass_signal (ecs);
3103 if (!ecs->wait_some_more)
3104 error (_("Command aborted."));
3107 discard_cleanups (old_chain);
3109 /* Tell the event loop to wait for it to stop. If the target
3110 supports asynchronous execution, it'll do this from within
3112 if (!target_can_async_p ())
3113 mark_async_event_handler (infrun_async_inferior_event_token);
3117 /* Start remote-debugging of a machine over a serial link. */
3120 start_remote (int from_tty)
3122 struct inferior *inferior;
3124 inferior = current_inferior ();
3125 inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
3127 /* Always go on waiting for the target, regardless of the mode. */
3128 /* FIXME: cagney/1999-09-23: At present it isn't possible to
3129 indicate to wait_for_inferior that a target should timeout if
3130 nothing is returned (instead of just blocking). Because of this,
3131 targets expecting an immediate response need to, internally, set
3132 things up so that the target_wait() is forced to eventually
3134 /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
3135 differentiate to its caller what the state of the target is after
3136 the initial open has been performed. Here we're assuming that
3137 the target has stopped. It should be possible to eventually have
3138 target_open() return to the caller an indication that the target
3139 is currently running and GDB state should be set to the same as
3140 for an async run. */
3141 wait_for_inferior ();
3143 /* Now that the inferior has stopped, do any bookkeeping like
3144 loading shared libraries. We want to do this before normal_stop,
3145 so that the displayed frame is up to date. */
3146 post_create_inferior (¤t_target, from_tty);
3151 /* Initialize static vars when a new inferior begins. */
3154 init_wait_for_inferior (void)
3156 /* These are meaningless until the first time through wait_for_inferior. */
3158 breakpoint_init_inferior (inf_starting);
3160 clear_proceed_status (0);
3162 target_last_wait_ptid = minus_one_ptid;
3164 previous_inferior_ptid = inferior_ptid;
3166 /* Discard any skipped inlined frames. */
3167 clear_inline_frame_state (minus_one_ptid);
3172 static void handle_inferior_event (struct execution_control_state *ecs);
3174 static void handle_step_into_function (struct gdbarch *gdbarch,
3175 struct execution_control_state *ecs);
3176 static void handle_step_into_function_backward (struct gdbarch *gdbarch,
3177 struct execution_control_state *ecs);
3178 static void handle_signal_stop (struct execution_control_state *ecs);
3179 static void check_exception_resume (struct execution_control_state *,
3180 struct frame_info *);
3182 static void end_stepping_range (struct execution_control_state *ecs);
3183 static void stop_waiting (struct execution_control_state *ecs);
3184 static void keep_going (struct execution_control_state *ecs);
3185 static void process_event_stop_test (struct execution_control_state *ecs);
3186 static int switch_back_to_stepped_thread (struct execution_control_state *ecs);
3188 /* Callback for iterate over threads. If the thread is stopped, but
3189 the user/frontend doesn't know about that yet, go through
3190 normal_stop, as if the thread had just stopped now. ARG points at
3191 a ptid. If PTID is MINUS_ONE_PTID, applies to all threads. If
3192 ptid_is_pid(PTID) is true, applies to all threads of the process
3193 pointed at by PTID. Otherwise, apply only to the thread pointed by
3197 infrun_thread_stop_requested_callback (struct thread_info *info, void *arg)
3199 ptid_t ptid = * (ptid_t *) arg;
3201 if ((ptid_equal (info->ptid, ptid)
3202 || ptid_equal (minus_one_ptid, ptid)
3203 || (ptid_is_pid (ptid)
3204 && ptid_get_pid (ptid) == ptid_get_pid (info->ptid)))
3205 && is_running (info->ptid)
3206 && !is_executing (info->ptid))
3208 struct cleanup *old_chain;
3209 struct execution_control_state ecss;
3210 struct execution_control_state *ecs = &ecss;
3212 memset (ecs, 0, sizeof (*ecs));
3214 old_chain = make_cleanup_restore_current_thread ();
3216 overlay_cache_invalid = 1;
3217 /* Flush target cache before starting to handle each event.
3218 Target was running and cache could be stale. This is just a
3219 heuristic. Running threads may modify target memory, but we
3220 don't get any event. */
3221 target_dcache_invalidate ();
3223 /* Go through handle_inferior_event/normal_stop, so we always
3224 have consistent output as if the stop event had been
3226 ecs->ptid = info->ptid;
3227 ecs->event_thread = info;
3228 ecs->ws.kind = TARGET_WAITKIND_STOPPED;
3229 ecs->ws.value.sig = GDB_SIGNAL_0;
3231 handle_inferior_event (ecs);
3233 if (!ecs->wait_some_more)
3235 struct thread_info *tp;
3237 /* Cancel any running execution command. */
3238 thread_cancel_execution_command (info);
3242 /* Finish off the continuations. */
3243 tp = inferior_thread ();
3244 do_all_intermediate_continuations_thread (tp, 1);
3245 do_all_continuations_thread (tp, 1);
3248 do_cleanups (old_chain);
3254 /* This function is attached as a "thread_stop_requested" observer.
3255 Cleanup local state that assumed the PTID was to be resumed, and
3256 report the stop to the frontend. */
3259 infrun_thread_stop_requested (ptid_t ptid)
3261 struct thread_info *tp;
3263 /* PTID was requested to stop. Remove matching threads from the
3264 step-over queue, so we don't try to resume them
3266 ALL_NON_EXITED_THREADS (tp)
3267 if (ptid_match (tp->ptid, ptid))
3269 if (thread_is_in_step_over_chain (tp))
3270 thread_step_over_chain_remove (tp);
3273 iterate_over_threads (infrun_thread_stop_requested_callback, &ptid);
3277 infrun_thread_thread_exit (struct thread_info *tp, int silent)
3279 if (ptid_equal (target_last_wait_ptid, tp->ptid))
3280 nullify_last_target_wait_ptid ();
3283 /* Delete the step resume, single-step and longjmp/exception resume
3284 breakpoints of TP. */
3287 delete_thread_infrun_breakpoints (struct thread_info *tp)
3289 delete_step_resume_breakpoint (tp);
3290 delete_exception_resume_breakpoint (tp);
3291 delete_single_step_breakpoints (tp);
3294 /* If the target still has execution, call FUNC for each thread that
3295 just stopped. In all-stop, that's all the non-exited threads; in
3296 non-stop, that's the current thread, only. */
3298 typedef void (*for_each_just_stopped_thread_callback_func)
3299 (struct thread_info *tp);
3302 for_each_just_stopped_thread (for_each_just_stopped_thread_callback_func func)
3304 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
3307 if (target_is_non_stop_p ())
3309 /* If in non-stop mode, only the current thread stopped. */
3310 func (inferior_thread ());
3314 struct thread_info *tp;
3316 /* In all-stop mode, all threads have stopped. */
3317 ALL_NON_EXITED_THREADS (tp)
3324 /* Delete the step resume and longjmp/exception resume breakpoints of
3325 the threads that just stopped. */
3328 delete_just_stopped_threads_infrun_breakpoints (void)
3330 for_each_just_stopped_thread (delete_thread_infrun_breakpoints);
3333 /* Delete the single-step breakpoints of the threads that just
3337 delete_just_stopped_threads_single_step_breakpoints (void)
3339 for_each_just_stopped_thread (delete_single_step_breakpoints);
3342 /* A cleanup wrapper. */
3345 delete_just_stopped_threads_infrun_breakpoints_cleanup (void *arg)
3347 delete_just_stopped_threads_infrun_breakpoints ();
3353 print_target_wait_results (ptid_t waiton_ptid, ptid_t result_ptid,
3354 const struct target_waitstatus *ws)
3356 char *status_string = target_waitstatus_to_string (ws);
3357 struct ui_file *tmp_stream = mem_fileopen ();
3360 /* The text is split over several lines because it was getting too long.
3361 Call fprintf_unfiltered (gdb_stdlog) once so that the text is still
3362 output as a unit; we want only one timestamp printed if debug_timestamp
3365 fprintf_unfiltered (tmp_stream,
3366 "infrun: target_wait (%d.%ld.%ld",
3367 ptid_get_pid (waiton_ptid),
3368 ptid_get_lwp (waiton_ptid),
3369 ptid_get_tid (waiton_ptid));
3370 if (ptid_get_pid (waiton_ptid) != -1)
3371 fprintf_unfiltered (tmp_stream,
3372 " [%s]", target_pid_to_str (waiton_ptid));
3373 fprintf_unfiltered (tmp_stream, ", status) =\n");
3374 fprintf_unfiltered (tmp_stream,
3375 "infrun: %d.%ld.%ld [%s],\n",
3376 ptid_get_pid (result_ptid),
3377 ptid_get_lwp (result_ptid),
3378 ptid_get_tid (result_ptid),
3379 target_pid_to_str (result_ptid));
3380 fprintf_unfiltered (tmp_stream,
3384 text = ui_file_xstrdup (tmp_stream, NULL);
3386 /* This uses %s in part to handle %'s in the text, but also to avoid
3387 a gcc error: the format attribute requires a string literal. */
3388 fprintf_unfiltered (gdb_stdlog, "%s", text);
3390 xfree (status_string);
3392 ui_file_delete (tmp_stream);
3395 /* Select a thread at random, out of those which are resumed and have
3398 static struct thread_info *
3399 random_pending_event_thread (ptid_t waiton_ptid)
3401 struct thread_info *event_tp;
3403 int random_selector;
3405 /* First see how many events we have. Count only resumed threads
3406 that have an event pending. */
3407 ALL_NON_EXITED_THREADS (event_tp)
3408 if (ptid_match (event_tp->ptid, waiton_ptid)
3409 && event_tp->resumed
3410 && event_tp->suspend.waitstatus_pending_p)
3413 if (num_events == 0)
3416 /* Now randomly pick a thread out of those that have had events. */
3417 random_selector = (int)
3418 ((num_events * (double) rand ()) / (RAND_MAX + 1.0));
3420 if (debug_infrun && num_events > 1)
3421 fprintf_unfiltered (gdb_stdlog,
3422 "infrun: Found %d events, selecting #%d\n",
3423 num_events, random_selector);
3425 /* Select the Nth thread that has had an event. */
3426 ALL_NON_EXITED_THREADS (event_tp)
3427 if (ptid_match (event_tp->ptid, waiton_ptid)
3428 && event_tp->resumed
3429 && event_tp->suspend.waitstatus_pending_p)
3430 if (random_selector-- == 0)
3436 /* Wrapper for target_wait that first checks whether threads have
3437 pending statuses to report before actually asking the target for
3441 do_target_wait (ptid_t ptid, struct target_waitstatus *status, int options)
3444 struct thread_info *tp;
3446 /* First check if there is a resumed thread with a wait status
3448 if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
3450 tp = random_pending_event_thread (ptid);
3455 fprintf_unfiltered (gdb_stdlog,
3456 "infrun: Waiting for specific thread %s.\n",
3457 target_pid_to_str (ptid));
3459 /* We have a specific thread to check. */
3460 tp = find_thread_ptid (ptid);
3461 gdb_assert (tp != NULL);
3462 if (!tp->suspend.waitstatus_pending_p)
3467 && (tp->suspend.stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT
3468 || tp->suspend.stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT))
3470 struct regcache *regcache = get_thread_regcache (tp->ptid);
3471 struct gdbarch *gdbarch = get_regcache_arch (regcache);
3475 pc = regcache_read_pc (regcache);
3477 if (pc != tp->suspend.stop_pc)
3480 fprintf_unfiltered (gdb_stdlog,
3481 "infrun: PC of %s changed. was=%s, now=%s\n",
3482 target_pid_to_str (tp->ptid),
3483 paddress (gdbarch, tp->prev_pc),
3484 paddress (gdbarch, pc));
3487 else if (!breakpoint_inserted_here_p (get_regcache_aspace (regcache), pc))
3490 fprintf_unfiltered (gdb_stdlog,
3491 "infrun: previous breakpoint of %s, at %s gone\n",
3492 target_pid_to_str (tp->ptid),
3493 paddress (gdbarch, pc));
3501 fprintf_unfiltered (gdb_stdlog,
3502 "infrun: pending event of %s cancelled.\n",
3503 target_pid_to_str (tp->ptid));
3505 tp->suspend.waitstatus.kind = TARGET_WAITKIND_SPURIOUS;
3506 tp->suspend.stop_reason = TARGET_STOPPED_BY_NO_REASON;
3516 statstr = target_waitstatus_to_string (&tp->suspend.waitstatus);
3517 fprintf_unfiltered (gdb_stdlog,
3518 "infrun: Using pending wait status %s for %s.\n",
3520 target_pid_to_str (tp->ptid));
3524 /* Now that we've selected our final event LWP, un-adjust its PC
3525 if it was a software breakpoint (and the target doesn't
3526 always adjust the PC itself). */
3527 if (tp->suspend.stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT
3528 && !target_supports_stopped_by_sw_breakpoint ())
3530 struct regcache *regcache;
3531 struct gdbarch *gdbarch;
3534 regcache = get_thread_regcache (tp->ptid);
3535 gdbarch = get_regcache_arch (regcache);
3537 decr_pc = gdbarch_decr_pc_after_break (gdbarch);
3542 pc = regcache_read_pc (regcache);
3543 regcache_write_pc (regcache, pc + decr_pc);
3547 tp->suspend.stop_reason = TARGET_STOPPED_BY_NO_REASON;
3548 *status = tp->suspend.waitstatus;
3549 tp->suspend.waitstatus_pending_p = 0;
3551 /* Wake up the event loop again, until all pending events are
3553 if (target_is_async_p ())
3554 mark_async_event_handler (infrun_async_inferior_event_token);
3558 /* But if we don't find one, we'll have to wait. */
3560 if (deprecated_target_wait_hook)
3561 event_ptid = deprecated_target_wait_hook (ptid, status, options);
3563 event_ptid = target_wait (ptid, status, options);
3568 /* Prepare and stabilize the inferior for detaching it. E.g.,
3569 detaching while a thread is displaced stepping is a recipe for
3570 crashing it, as nothing would readjust the PC out of the scratch
3574 prepare_for_detach (void)
3576 struct inferior *inf = current_inferior ();
3577 ptid_t pid_ptid = pid_to_ptid (inf->pid);
3578 struct cleanup *old_chain_1;
3579 struct displaced_step_inferior_state *displaced;
3581 displaced = get_displaced_stepping_state (inf->pid);
3583 /* Is any thread of this process displaced stepping? If not,
3584 there's nothing else to do. */
3585 if (displaced == NULL || ptid_equal (displaced->step_ptid, null_ptid))
3589 fprintf_unfiltered (gdb_stdlog,
3590 "displaced-stepping in-process while detaching");
3592 old_chain_1 = make_cleanup_restore_integer (&inf->detaching);
3595 while (!ptid_equal (displaced->step_ptid, null_ptid))
3597 struct cleanup *old_chain_2;
3598 struct execution_control_state ecss;
3599 struct execution_control_state *ecs;
3602 memset (ecs, 0, sizeof (*ecs));
3604 overlay_cache_invalid = 1;
3605 /* Flush target cache before starting to handle each event.
3606 Target was running and cache could be stale. This is just a
3607 heuristic. Running threads may modify target memory, but we
3608 don't get any event. */
3609 target_dcache_invalidate ();
3611 ecs->ptid = do_target_wait (pid_ptid, &ecs->ws, 0);
3614 print_target_wait_results (pid_ptid, ecs->ptid, &ecs->ws);
3616 /* If an error happens while handling the event, propagate GDB's
3617 knowledge of the executing state to the frontend/user running
3619 old_chain_2 = make_cleanup (finish_thread_state_cleanup,
3622 /* Now figure out what to do with the result of the result. */
3623 handle_inferior_event (ecs);
3625 /* No error, don't finish the state yet. */
3626 discard_cleanups (old_chain_2);
3628 /* Breakpoints and watchpoints are not installed on the target
3629 at this point, and signals are passed directly to the
3630 inferior, so this must mean the process is gone. */
3631 if (!ecs->wait_some_more)
3633 discard_cleanups (old_chain_1);
3634 error (_("Program exited while detaching"));
3638 discard_cleanups (old_chain_1);
3641 /* Wait for control to return from inferior to debugger.
3643 If inferior gets a signal, we may decide to start it up again
3644 instead of returning. That is why there is a loop in this function.
3645 When this function actually returns it means the inferior
3646 should be left stopped and GDB should read more commands. */
3649 wait_for_inferior (void)
3651 struct cleanup *old_cleanups;
3652 struct cleanup *thread_state_chain;
3656 (gdb_stdlog, "infrun: wait_for_inferior ()\n");
3659 = make_cleanup (delete_just_stopped_threads_infrun_breakpoints_cleanup,
3662 /* If an error happens while handling the event, propagate GDB's
3663 knowledge of the executing state to the frontend/user running
3665 thread_state_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
3669 struct execution_control_state ecss;
3670 struct execution_control_state *ecs = &ecss;
3671 ptid_t waiton_ptid = minus_one_ptid;
3673 memset (ecs, 0, sizeof (*ecs));
3675 overlay_cache_invalid = 1;
3677 /* Flush target cache before starting to handle each event.
3678 Target was running and cache could be stale. This is just a
3679 heuristic. Running threads may modify target memory, but we
3680 don't get any event. */
3681 target_dcache_invalidate ();
3683 ecs->ptid = do_target_wait (waiton_ptid, &ecs->ws, 0);
3686 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
3688 /* Now figure out what to do with the result of the result. */
3689 handle_inferior_event (ecs);
3691 if (!ecs->wait_some_more)
3695 /* No error, don't finish the state yet. */
3696 discard_cleanups (thread_state_chain);
3698 do_cleanups (old_cleanups);
3701 /* Cleanup that reinstalls the readline callback handler, if the
3702 target is running in the background. If while handling the target
3703 event something triggered a secondary prompt, like e.g., a
3704 pagination prompt, we'll have removed the callback handler (see
3705 gdb_readline_wrapper_line). Need to do this as we go back to the
3706 event loop, ready to process further input. Note this has no
3707 effect if the handler hasn't actually been removed, because calling
3708 rl_callback_handler_install resets the line buffer, thus losing
3712 reinstall_readline_callback_handler_cleanup (void *arg)
3714 if (!interpreter_async)
3716 /* We're not going back to the top level event loop yet. Don't
3717 install the readline callback, as it'd prep the terminal,
3718 readline-style (raw, noecho) (e.g., --batch). We'll install
3719 it the next time the prompt is displayed, when we're ready
3724 if (async_command_editing_p && !sync_execution)
3725 gdb_rl_callback_handler_reinstall ();
3728 /* Clean up the FSMs of threads that are now stopped. In non-stop,
3729 that's just the event thread. In all-stop, that's all threads. */
3732 clean_up_just_stopped_threads_fsms (struct execution_control_state *ecs)
3734 struct thread_info *thr = ecs->event_thread;
3736 if (thr != NULL && thr->thread_fsm != NULL)
3737 thread_fsm_clean_up (thr->thread_fsm);
3741 ALL_NON_EXITED_THREADS (thr)
3743 if (thr->thread_fsm == NULL)
3745 if (thr == ecs->event_thread)
3748 switch_to_thread (thr->ptid);
3749 thread_fsm_clean_up (thr->thread_fsm);
3752 if (ecs->event_thread != NULL)
3753 switch_to_thread (ecs->event_thread->ptid);
3757 /* Asynchronous version of wait_for_inferior. It is called by the
3758 event loop whenever a change of state is detected on the file
3759 descriptor corresponding to the target. It can be called more than
3760 once to complete a single execution command. In such cases we need
3761 to keep the state in a global variable ECSS. If it is the last time
3762 that this function is called for a single execution command, then
3763 report to the user that the inferior has stopped, and do the
3764 necessary cleanups. */
3767 fetch_inferior_event (void *client_data)
3769 struct execution_control_state ecss;
3770 struct execution_control_state *ecs = &ecss;
3771 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
3772 struct cleanup *ts_old_chain;
3773 int was_sync = sync_execution;
3775 ptid_t waiton_ptid = minus_one_ptid;
3777 memset (ecs, 0, sizeof (*ecs));
3779 /* End up with readline processing input, if necessary. */
3780 make_cleanup (reinstall_readline_callback_handler_cleanup, NULL);
3782 /* We're handling a live event, so make sure we're doing live
3783 debugging. If we're looking at traceframes while the target is
3784 running, we're going to need to get back to that mode after
3785 handling the event. */
3788 make_cleanup_restore_current_traceframe ();
3789 set_current_traceframe (-1);
3793 /* In non-stop mode, the user/frontend should not notice a thread
3794 switch due to internal events. Make sure we reverse to the
3795 user selected thread and frame after handling the event and
3796 running any breakpoint commands. */
3797 make_cleanup_restore_current_thread ();
3799 overlay_cache_invalid = 1;
3800 /* Flush target cache before starting to handle each event. Target
3801 was running and cache could be stale. This is just a heuristic.
3802 Running threads may modify target memory, but we don't get any
3804 target_dcache_invalidate ();
3806 make_cleanup_restore_integer (&execution_direction);
3807 execution_direction = target_execution_direction ();
3809 ecs->ptid = do_target_wait (waiton_ptid, &ecs->ws,
3810 target_can_async_p () ? TARGET_WNOHANG : 0);
3813 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
3815 /* If an error happens while handling the event, propagate GDB's
3816 knowledge of the executing state to the frontend/user running
3818 if (!target_is_non_stop_p ())
3819 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
3821 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &ecs->ptid);
3823 /* Get executed before make_cleanup_restore_current_thread above to apply
3824 still for the thread which has thrown the exception. */
3825 make_bpstat_clear_actions_cleanup ();
3827 make_cleanup (delete_just_stopped_threads_infrun_breakpoints_cleanup, NULL);
3829 /* Now figure out what to do with the result of the result. */
3830 handle_inferior_event (ecs);
3832 if (!ecs->wait_some_more)
3834 struct inferior *inf = find_inferior_ptid (ecs->ptid);
3835 int should_stop = 1;
3836 struct thread_info *thr = ecs->event_thread;
3838 delete_just_stopped_threads_infrun_breakpoints ();
3842 struct thread_fsm *thread_fsm = thr->thread_fsm;
3844 if (thread_fsm != NULL)
3845 should_stop = thread_fsm_should_stop (thread_fsm);
3854 clean_up_just_stopped_threads_fsms (ecs);
3856 /* We may not find an inferior if this was a process exit. */
3857 if (inf == NULL || inf->control.stop_soon == NO_STOP_QUIETLY)
3860 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
3865 /* No error, don't finish the thread states yet. */
3866 discard_cleanups (ts_old_chain);
3868 /* Revert thread and frame. */
3869 do_cleanups (old_chain);
3871 /* If the inferior was in sync execution mode, and now isn't,
3872 restore the prompt (a synchronous execution command has finished,
3873 and we're ready for input). */
3874 if (interpreter_async && was_sync && !sync_execution)
3875 observer_notify_sync_execution_done ();
3879 && exec_done_display_p
3880 && (ptid_equal (inferior_ptid, null_ptid)
3881 || !is_running (inferior_ptid)))
3882 printf_unfiltered (_("completed.\n"));
3885 /* Record the frame and location we're currently stepping through. */
3887 set_step_info (struct frame_info *frame, struct symtab_and_line sal)
3889 struct thread_info *tp = inferior_thread ();
3891 tp->control.step_frame_id = get_frame_id (frame);
3892 tp->control.step_stack_frame_id = get_stack_frame_id (frame);
3894 tp->current_symtab = sal.symtab;
3895 tp->current_line = sal.line;
3898 /* Clear context switchable stepping state. */
3901 init_thread_stepping_state (struct thread_info *tss)
3903 tss->stepped_breakpoint = 0;
3904 tss->stepping_over_breakpoint = 0;
3905 tss->stepping_over_watchpoint = 0;
3906 tss->step_after_step_resume_breakpoint = 0;
3909 /* Set the cached copy of the last ptid/waitstatus. */
3912 set_last_target_status (ptid_t ptid, struct target_waitstatus status)
3914 target_last_wait_ptid = ptid;
3915 target_last_waitstatus = status;
3918 /* Return the cached copy of the last pid/waitstatus returned by
3919 target_wait()/deprecated_target_wait_hook(). The data is actually
3920 cached by handle_inferior_event(), which gets called immediately
3921 after target_wait()/deprecated_target_wait_hook(). */
3924 get_last_target_status (ptid_t *ptidp, struct target_waitstatus *status)
3926 *ptidp = target_last_wait_ptid;
3927 *status = target_last_waitstatus;
3931 nullify_last_target_wait_ptid (void)
3933 target_last_wait_ptid = minus_one_ptid;
3936 /* Switch thread contexts. */
3939 context_switch (ptid_t ptid)
3941 if (debug_infrun && !ptid_equal (ptid, inferior_ptid))
3943 fprintf_unfiltered (gdb_stdlog, "infrun: Switching context from %s ",
3944 target_pid_to_str (inferior_ptid));
3945 fprintf_unfiltered (gdb_stdlog, "to %s\n",
3946 target_pid_to_str (ptid));
3949 switch_to_thread (ptid);
3952 /* If the target can't tell whether we've hit breakpoints
3953 (target_supports_stopped_by_sw_breakpoint), and we got a SIGTRAP,
3954 check whether that could have been caused by a breakpoint. If so,
3955 adjust the PC, per gdbarch_decr_pc_after_break. */
3958 adjust_pc_after_break (struct thread_info *thread,
3959 struct target_waitstatus *ws)
3961 struct regcache *regcache;
3962 struct gdbarch *gdbarch;
3963 struct address_space *aspace;
3964 CORE_ADDR breakpoint_pc, decr_pc;
3966 /* If we've hit a breakpoint, we'll normally be stopped with SIGTRAP. If
3967 we aren't, just return.
3969 We assume that waitkinds other than TARGET_WAITKIND_STOPPED are not
3970 affected by gdbarch_decr_pc_after_break. Other waitkinds which are
3971 implemented by software breakpoints should be handled through the normal
3974 NOTE drow/2004-01-31: On some targets, breakpoints may generate
3975 different signals (SIGILL or SIGEMT for instance), but it is less
3976 clear where the PC is pointing afterwards. It may not match
3977 gdbarch_decr_pc_after_break. I don't know any specific target that
3978 generates these signals at breakpoints (the code has been in GDB since at
3979 least 1992) so I can not guess how to handle them here.
3981 In earlier versions of GDB, a target with
3982 gdbarch_have_nonsteppable_watchpoint would have the PC after hitting a
3983 watchpoint affected by gdbarch_decr_pc_after_break. I haven't found any
3984 target with both of these set in GDB history, and it seems unlikely to be
3985 correct, so gdbarch_have_nonsteppable_watchpoint is not checked here. */
3987 if (ws->kind != TARGET_WAITKIND_STOPPED)
3990 if (ws->value.sig != GDB_SIGNAL_TRAP)
3993 /* In reverse execution, when a breakpoint is hit, the instruction
3994 under it has already been de-executed. The reported PC always
3995 points at the breakpoint address, so adjusting it further would
3996 be wrong. E.g., consider this case on a decr_pc_after_break == 1
3999 B1 0x08000000 : INSN1
4000 B2 0x08000001 : INSN2
4002 PC -> 0x08000003 : INSN4
4004 Say you're stopped at 0x08000003 as above. Reverse continuing
4005 from that point should hit B2 as below. Reading the PC when the
4006 SIGTRAP is reported should read 0x08000001 and INSN2 should have
4007 been de-executed already.
4009 B1 0x08000000 : INSN1
4010 B2 PC -> 0x08000001 : INSN2
4014 We can't apply the same logic as for forward execution, because
4015 we would wrongly adjust the PC to 0x08000000, since there's a
4016 breakpoint at PC - 1. We'd then report a hit on B1, although
4017 INSN1 hadn't been de-executed yet. Doing nothing is the correct
4019 if (execution_direction == EXEC_REVERSE)
4022 /* If the target can tell whether the thread hit a SW breakpoint,
4023 trust it. Targets that can tell also adjust the PC
4025 if (target_supports_stopped_by_sw_breakpoint ())
4028 /* Note that relying on whether a breakpoint is planted in memory to
4029 determine this can fail. E.g,. the breakpoint could have been
4030 removed since. Or the thread could have been told to step an
4031 instruction the size of a breakpoint instruction, and only
4032 _after_ was a breakpoint inserted at its address. */
4034 /* If this target does not decrement the PC after breakpoints, then
4035 we have nothing to do. */
4036 regcache = get_thread_regcache (thread->ptid);
4037 gdbarch = get_regcache_arch (regcache);
4039 decr_pc = gdbarch_decr_pc_after_break (gdbarch);
4043 aspace = get_regcache_aspace (regcache);
4045 /* Find the location where (if we've hit a breakpoint) the
4046 breakpoint would be. */
4047 breakpoint_pc = regcache_read_pc (regcache) - decr_pc;
4049 /* If the target can't tell whether a software breakpoint triggered,
4050 fallback to figuring it out based on breakpoints we think were
4051 inserted in the target, and on whether the thread was stepped or
4054 /* Check whether there actually is a software breakpoint inserted at
4057 If in non-stop mode, a race condition is possible where we've
4058 removed a breakpoint, but stop events for that breakpoint were
4059 already queued and arrive later. To suppress those spurious
4060 SIGTRAPs, we keep a list of such breakpoint locations for a bit,
4061 and retire them after a number of stop events are reported. Note
4062 this is an heuristic and can thus get confused. The real fix is
4063 to get the "stopped by SW BP and needs adjustment" info out of
4064 the target/kernel (and thus never reach here; see above). */
4065 if (software_breakpoint_inserted_here_p (aspace, breakpoint_pc)
4066 || (target_is_non_stop_p ()
4067 && moribund_breakpoint_here_p (aspace, breakpoint_pc)))
4069 struct cleanup *old_cleanups = make_cleanup (null_cleanup, NULL);
4071 if (record_full_is_used ())
4072 record_full_gdb_operation_disable_set ();
4074 /* When using hardware single-step, a SIGTRAP is reported for both
4075 a completed single-step and a software breakpoint. Need to
4076 differentiate between the two, as the latter needs adjusting
4077 but the former does not.
4079 The SIGTRAP can be due to a completed hardware single-step only if
4080 - we didn't insert software single-step breakpoints
4081 - this thread is currently being stepped
4083 If any of these events did not occur, we must have stopped due
4084 to hitting a software breakpoint, and have to back up to the
4087 As a special case, we could have hardware single-stepped a
4088 software breakpoint. In this case (prev_pc == breakpoint_pc),
4089 we also need to back up to the breakpoint address. */
4091 if (thread_has_single_step_breakpoints_set (thread)
4092 || !currently_stepping (thread)
4093 || (thread->stepped_breakpoint
4094 && thread->prev_pc == breakpoint_pc))
4095 regcache_write_pc (regcache, breakpoint_pc);
4097 do_cleanups (old_cleanups);
4102 stepped_in_from (struct frame_info *frame, struct frame_id step_frame_id)
4104 for (frame = get_prev_frame (frame);
4106 frame = get_prev_frame (frame))
4108 if (frame_id_eq (get_frame_id (frame), step_frame_id))
4110 if (get_frame_type (frame) != INLINE_FRAME)
4117 /* Auxiliary function that handles syscall entry/return events.
4118 It returns 1 if the inferior should keep going (and GDB
4119 should ignore the event), or 0 if the event deserves to be
4123 handle_syscall_event (struct execution_control_state *ecs)
4125 struct regcache *regcache;
4128 if (!ptid_equal (ecs->ptid, inferior_ptid))
4129 context_switch (ecs->ptid);
4131 regcache = get_thread_regcache (ecs->ptid);
4132 syscall_number = ecs->ws.value.syscall_number;
4133 stop_pc = regcache_read_pc (regcache);
4135 if (catch_syscall_enabled () > 0
4136 && catching_syscall_number (syscall_number) > 0)
4139 fprintf_unfiltered (gdb_stdlog, "infrun: syscall number = '%d'\n",
4142 ecs->event_thread->control.stop_bpstat
4143 = bpstat_stop_status (get_regcache_aspace (regcache),
4144 stop_pc, ecs->ptid, &ecs->ws);
4146 if (bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
4148 /* Catchpoint hit. */
4153 /* If no catchpoint triggered for this, then keep going. */
4158 /* Lazily fill in the execution_control_state's stop_func_* fields. */
4161 fill_in_stop_func (struct gdbarch *gdbarch,
4162 struct execution_control_state *ecs)
4164 if (!ecs->stop_func_filled_in)
4166 /* Don't care about return value; stop_func_start and stop_func_name
4167 will both be 0 if it doesn't work. */
4168 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
4169 &ecs->stop_func_start, &ecs->stop_func_end);
4170 ecs->stop_func_start
4171 += gdbarch_deprecated_function_start_offset (gdbarch);
4173 if (gdbarch_skip_entrypoint_p (gdbarch))
4174 ecs->stop_func_start = gdbarch_skip_entrypoint (gdbarch,
4175 ecs->stop_func_start);
4177 ecs->stop_func_filled_in = 1;
4182 /* Return the STOP_SOON field of the inferior pointed at by PTID. */
4184 static enum stop_kind
4185 get_inferior_stop_soon (ptid_t ptid)
4187 struct inferior *inf = find_inferior_ptid (ptid);
4189 gdb_assert (inf != NULL);
4190 return inf->control.stop_soon;
4193 /* Wait for one event. Store the resulting waitstatus in WS, and
4194 return the event ptid. */
4197 wait_one (struct target_waitstatus *ws)
4200 ptid_t wait_ptid = minus_one_ptid;
4202 overlay_cache_invalid = 1;
4204 /* Flush target cache before starting to handle each event.
4205 Target was running and cache could be stale. This is just a
4206 heuristic. Running threads may modify target memory, but we
4207 don't get any event. */
4208 target_dcache_invalidate ();
4210 if (deprecated_target_wait_hook)
4211 event_ptid = deprecated_target_wait_hook (wait_ptid, ws, 0);
4213 event_ptid = target_wait (wait_ptid, ws, 0);
4216 print_target_wait_results (wait_ptid, event_ptid, ws);
4221 /* Generate a wrapper for target_stopped_by_REASON that works on PTID
4222 instead of the current thread. */
4223 #define THREAD_STOPPED_BY(REASON) \
4225 thread_stopped_by_ ## REASON (ptid_t ptid) \
4227 struct cleanup *old_chain; \
4230 old_chain = save_inferior_ptid (); \
4231 inferior_ptid = ptid; \
4233 res = target_stopped_by_ ## REASON (); \
4235 do_cleanups (old_chain); \
4240 /* Generate thread_stopped_by_watchpoint. */
4241 THREAD_STOPPED_BY (watchpoint)
4242 /* Generate thread_stopped_by_sw_breakpoint. */
4243 THREAD_STOPPED_BY (sw_breakpoint)
4244 /* Generate thread_stopped_by_hw_breakpoint. */
4245 THREAD_STOPPED_BY (hw_breakpoint)
4247 /* Cleanups that switches to the PTID pointed at by PTID_P. */
4250 switch_to_thread_cleanup (void *ptid_p)
4252 ptid_t ptid = *(ptid_t *) ptid_p;
4254 switch_to_thread (ptid);
4257 /* Save the thread's event and stop reason to process it later. */
4260 save_waitstatus (struct thread_info *tp, struct target_waitstatus *ws)
4262 struct regcache *regcache;
4263 struct address_space *aspace;
4269 statstr = target_waitstatus_to_string (ws);
4270 fprintf_unfiltered (gdb_stdlog,
4271 "infrun: saving status %s for %d.%ld.%ld\n",
4273 ptid_get_pid (tp->ptid),
4274 ptid_get_lwp (tp->ptid),
4275 ptid_get_tid (tp->ptid));
4279 /* Record for later. */
4280 tp->suspend.waitstatus = *ws;
4281 tp->suspend.waitstatus_pending_p = 1;
4283 regcache = get_thread_regcache (tp->ptid);
4284 aspace = get_regcache_aspace (regcache);
4286 if (ws->kind == TARGET_WAITKIND_STOPPED
4287 && ws->value.sig == GDB_SIGNAL_TRAP)
4289 CORE_ADDR pc = regcache_read_pc (regcache);
4291 adjust_pc_after_break (tp, &tp->suspend.waitstatus);
4293 if (thread_stopped_by_watchpoint (tp->ptid))
4295 tp->suspend.stop_reason
4296 = TARGET_STOPPED_BY_WATCHPOINT;
4298 else if (target_supports_stopped_by_sw_breakpoint ()
4299 && thread_stopped_by_sw_breakpoint (tp->ptid))
4301 tp->suspend.stop_reason
4302 = TARGET_STOPPED_BY_SW_BREAKPOINT;
4304 else if (target_supports_stopped_by_hw_breakpoint ()
4305 && thread_stopped_by_hw_breakpoint (tp->ptid))
4307 tp->suspend.stop_reason
4308 = TARGET_STOPPED_BY_HW_BREAKPOINT;
4310 else if (!target_supports_stopped_by_hw_breakpoint ()
4311 && hardware_breakpoint_inserted_here_p (aspace,
4314 tp->suspend.stop_reason
4315 = TARGET_STOPPED_BY_HW_BREAKPOINT;
4317 else if (!target_supports_stopped_by_sw_breakpoint ()
4318 && software_breakpoint_inserted_here_p (aspace,
4321 tp->suspend.stop_reason
4322 = TARGET_STOPPED_BY_SW_BREAKPOINT;
4324 else if (!thread_has_single_step_breakpoints_set (tp)
4325 && currently_stepping (tp))
4327 tp->suspend.stop_reason
4328 = TARGET_STOPPED_BY_SINGLE_STEP;
4333 /* Stop all threads. */
4336 stop_all_threads (void)
4338 /* We may need multiple passes to discover all threads. */
4342 struct cleanup *old_chain;
4344 gdb_assert (target_is_non_stop_p ());
4347 fprintf_unfiltered (gdb_stdlog, "infrun: stop_all_threads\n");
4349 entry_ptid = inferior_ptid;
4350 old_chain = make_cleanup (switch_to_thread_cleanup, &entry_ptid);
4352 /* Request threads to stop, and then wait for the stops. Because
4353 threads we already know about can spawn more threads while we're
4354 trying to stop them, and we only learn about new threads when we
4355 update the thread list, do this in a loop, and keep iterating
4356 until two passes find no threads that need to be stopped. */
4357 for (pass = 0; pass < 2; pass++, iterations++)
4360 fprintf_unfiltered (gdb_stdlog,
4361 "infrun: stop_all_threads, pass=%d, "
4362 "iterations=%d\n", pass, iterations);
4366 struct target_waitstatus ws;
4368 struct thread_info *t;
4370 update_thread_list ();
4372 /* Go through all threads looking for threads that we need
4373 to tell the target to stop. */
4374 ALL_NON_EXITED_THREADS (t)
4378 /* If already stopping, don't request a stop again.
4379 We just haven't seen the notification yet. */
4380 if (!t->stop_requested)
4383 fprintf_unfiltered (gdb_stdlog,
4384 "infrun: %s executing, "
4386 target_pid_to_str (t->ptid));
4387 target_stop (t->ptid);
4388 t->stop_requested = 1;
4393 fprintf_unfiltered (gdb_stdlog,
4394 "infrun: %s executing, "
4395 "already stopping\n",
4396 target_pid_to_str (t->ptid));
4399 if (t->stop_requested)
4405 fprintf_unfiltered (gdb_stdlog,
4406 "infrun: %s not executing\n",
4407 target_pid_to_str (t->ptid));
4409 /* The thread may be not executing, but still be
4410 resumed with a pending status to process. */
4418 /* If we find new threads on the second iteration, restart
4419 over. We want to see two iterations in a row with all
4424 event_ptid = wait_one (&ws);
4425 if (ws.kind == TARGET_WAITKIND_NO_RESUMED)
4427 /* All resumed threads exited. */
4429 else if (ws.kind == TARGET_WAITKIND_EXITED
4430 || ws.kind == TARGET_WAITKIND_SIGNALLED)
4434 ptid_t ptid = pid_to_ptid (ws.value.integer);
4436 fprintf_unfiltered (gdb_stdlog,
4437 "infrun: %s exited while "
4438 "stopping threads\n",
4439 target_pid_to_str (ptid));
4444 t = find_thread_ptid (event_ptid);
4446 t = add_thread (event_ptid);
4448 t->stop_requested = 0;
4451 t->control.may_range_step = 0;
4453 if (ws.kind == TARGET_WAITKIND_STOPPED
4454 && ws.value.sig == GDB_SIGNAL_0)
4456 /* We caught the event that we intended to catch, so
4457 there's no event pending. */
4458 t->suspend.waitstatus.kind = TARGET_WAITKIND_IGNORE;
4459 t->suspend.waitstatus_pending_p = 0;
4461 if (displaced_step_fixup (t->ptid, GDB_SIGNAL_0) < 0)
4463 /* Add it back to the step-over queue. */
4466 fprintf_unfiltered (gdb_stdlog,
4467 "infrun: displaced-step of %s "
4468 "canceled: adding back to the "
4469 "step-over queue\n",
4470 target_pid_to_str (t->ptid));
4472 t->control.trap_expected = 0;
4473 thread_step_over_chain_enqueue (t);
4478 enum gdb_signal sig;
4479 struct regcache *regcache;
4480 struct address_space *aspace;
4486 statstr = target_waitstatus_to_string (&ws);
4487 fprintf_unfiltered (gdb_stdlog,
4488 "infrun: target_wait %s, saving "
4489 "status for %d.%ld.%ld\n",
4491 ptid_get_pid (t->ptid),
4492 ptid_get_lwp (t->ptid),
4493 ptid_get_tid (t->ptid));
4497 /* Record for later. */
4498 save_waitstatus (t, &ws);
4500 sig = (ws.kind == TARGET_WAITKIND_STOPPED
4501 ? ws.value.sig : GDB_SIGNAL_0);
4503 if (displaced_step_fixup (t->ptid, sig) < 0)
4505 /* Add it back to the step-over queue. */
4506 t->control.trap_expected = 0;
4507 thread_step_over_chain_enqueue (t);
4510 regcache = get_thread_regcache (t->ptid);
4511 t->suspend.stop_pc = regcache_read_pc (regcache);
4515 fprintf_unfiltered (gdb_stdlog,
4516 "infrun: saved stop_pc=%s for %s "
4517 "(currently_stepping=%d)\n",
4518 paddress (target_gdbarch (),
4519 t->suspend.stop_pc),
4520 target_pid_to_str (t->ptid),
4521 currently_stepping (t));
4528 do_cleanups (old_chain);
4531 fprintf_unfiltered (gdb_stdlog, "infrun: stop_all_threads done\n");
4534 /* Given an execution control state that has been freshly filled in by
4535 an event from the inferior, figure out what it means and take
4538 The alternatives are:
4540 1) stop_waiting and return; to really stop and return to the
4543 2) keep_going and return; to wait for the next event (set
4544 ecs->event_thread->stepping_over_breakpoint to 1 to single step
4548 handle_inferior_event_1 (struct execution_control_state *ecs)
4550 enum stop_kind stop_soon;
4552 if (ecs->ws.kind == TARGET_WAITKIND_IGNORE)
4554 /* We had an event in the inferior, but we are not interested in
4555 handling it at this level. The lower layers have already
4556 done what needs to be done, if anything.
4558 One of the possible circumstances for this is when the
4559 inferior produces output for the console. The inferior has
4560 not stopped, and we are ignoring the event. Another possible
4561 circumstance is any event which the lower level knows will be
4562 reported multiple times without an intervening resume. */
4564 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_IGNORE\n");
4565 prepare_to_wait (ecs);
4569 if (ecs->ws.kind == TARGET_WAITKIND_NO_RESUMED
4570 && target_can_async_p () && !sync_execution)
4572 /* There were no unwaited-for children left in the target, but,
4573 we're not synchronously waiting for events either. Just
4574 ignore. Otherwise, if we were running a synchronous
4575 execution command, we need to cancel it and give the user
4576 back the terminal. */
4578 fprintf_unfiltered (gdb_stdlog,
4579 "infrun: TARGET_WAITKIND_NO_RESUMED (ignoring)\n");
4580 prepare_to_wait (ecs);
4584 /* Cache the last pid/waitstatus. */
4585 set_last_target_status (ecs->ptid, ecs->ws);
4587 /* Always clear state belonging to the previous time we stopped. */
4588 stop_stack_dummy = STOP_NONE;
4590 if (ecs->ws.kind == TARGET_WAITKIND_NO_RESUMED)
4592 /* No unwaited-for children left. IOW, all resumed children
4595 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_NO_RESUMED\n");
4597 stop_print_frame = 0;
4602 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
4603 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED)
4605 ecs->event_thread = find_thread_ptid (ecs->ptid);
4606 /* If it's a new thread, add it to the thread database. */
4607 if (ecs->event_thread == NULL)
4608 ecs->event_thread = add_thread (ecs->ptid);
4610 /* Disable range stepping. If the next step request could use a
4611 range, this will be end up re-enabled then. */
4612 ecs->event_thread->control.may_range_step = 0;
4615 /* Dependent on valid ECS->EVENT_THREAD. */
4616 adjust_pc_after_break (ecs->event_thread, &ecs->ws);
4618 /* Dependent on the current PC value modified by adjust_pc_after_break. */
4619 reinit_frame_cache ();
4621 breakpoint_retire_moribund ();
4623 /* First, distinguish signals caused by the debugger from signals
4624 that have to do with the program's own actions. Note that
4625 breakpoint insns may cause SIGTRAP or SIGILL or SIGEMT, depending
4626 on the operating system version. Here we detect when a SIGILL or
4627 SIGEMT is really a breakpoint and change it to SIGTRAP. We do
4628 something similar for SIGSEGV, since a SIGSEGV will be generated
4629 when we're trying to execute a breakpoint instruction on a
4630 non-executable stack. This happens for call dummy breakpoints
4631 for architectures like SPARC that place call dummies on the
4633 if (ecs->ws.kind == TARGET_WAITKIND_STOPPED
4634 && (ecs->ws.value.sig == GDB_SIGNAL_ILL
4635 || ecs->ws.value.sig == GDB_SIGNAL_SEGV
4636 || ecs->ws.value.sig == GDB_SIGNAL_EMT))
4638 struct regcache *regcache = get_thread_regcache (ecs->ptid);
4640 if (breakpoint_inserted_here_p (get_regcache_aspace (regcache),
4641 regcache_read_pc (regcache)))
4644 fprintf_unfiltered (gdb_stdlog,
4645 "infrun: Treating signal as SIGTRAP\n");
4646 ecs->ws.value.sig = GDB_SIGNAL_TRAP;
4650 /* Mark the non-executing threads accordingly. In all-stop, all
4651 threads of all processes are stopped when we get any event
4652 reported. In non-stop mode, only the event thread stops. */
4656 if (!target_is_non_stop_p ())
4657 mark_ptid = minus_one_ptid;
4658 else if (ecs->ws.kind == TARGET_WAITKIND_SIGNALLED
4659 || ecs->ws.kind == TARGET_WAITKIND_EXITED)
4661 /* If we're handling a process exit in non-stop mode, even
4662 though threads haven't been deleted yet, one would think
4663 that there is nothing to do, as threads of the dead process
4664 will be soon deleted, and threads of any other process were
4665 left running. However, on some targets, threads survive a
4666 process exit event. E.g., for the "checkpoint" command,
4667 when the current checkpoint/fork exits, linux-fork.c
4668 automatically switches to another fork from within
4669 target_mourn_inferior, by associating the same
4670 inferior/thread to another fork. We haven't mourned yet at
4671 this point, but we must mark any threads left in the
4672 process as not-executing so that finish_thread_state marks
4673 them stopped (in the user's perspective) if/when we present
4674 the stop to the user. */
4675 mark_ptid = pid_to_ptid (ptid_get_pid (ecs->ptid));
4678 mark_ptid = ecs->ptid;
4680 set_executing (mark_ptid, 0);
4682 /* Likewise the resumed flag. */
4683 set_resumed (mark_ptid, 0);
4686 switch (ecs->ws.kind)
4688 case TARGET_WAITKIND_LOADED:
4690 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_LOADED\n");
4691 if (!ptid_equal (ecs->ptid, inferior_ptid))
4692 context_switch (ecs->ptid);
4693 /* Ignore gracefully during startup of the inferior, as it might
4694 be the shell which has just loaded some objects, otherwise
4695 add the symbols for the newly loaded objects. Also ignore at
4696 the beginning of an attach or remote session; we will query
4697 the full list of libraries once the connection is
4700 stop_soon = get_inferior_stop_soon (ecs->ptid);
4701 if (stop_soon == NO_STOP_QUIETLY)
4703 struct regcache *regcache;
4705 regcache = get_thread_regcache (ecs->ptid);
4707 handle_solib_event ();
4709 ecs->event_thread->control.stop_bpstat
4710 = bpstat_stop_status (get_regcache_aspace (regcache),
4711 stop_pc, ecs->ptid, &ecs->ws);
4713 if (bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
4715 /* A catchpoint triggered. */
4716 process_event_stop_test (ecs);
4720 /* If requested, stop when the dynamic linker notifies
4721 gdb of events. This allows the user to get control
4722 and place breakpoints in initializer routines for
4723 dynamically loaded objects (among other things). */
4724 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
4725 if (stop_on_solib_events)
4727 /* Make sure we print "Stopped due to solib-event" in
4729 stop_print_frame = 1;
4736 /* If we are skipping through a shell, or through shared library
4737 loading that we aren't interested in, resume the program. If
4738 we're running the program normally, also resume. */
4739 if (stop_soon == STOP_QUIETLY || stop_soon == NO_STOP_QUIETLY)
4741 /* Loading of shared libraries might have changed breakpoint
4742 addresses. Make sure new breakpoints are inserted. */
4743 if (stop_soon == NO_STOP_QUIETLY)
4744 insert_breakpoints ();
4745 resume (GDB_SIGNAL_0);
4746 prepare_to_wait (ecs);
4750 /* But stop if we're attaching or setting up a remote
4752 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
4753 || stop_soon == STOP_QUIETLY_REMOTE)
4756 fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
4761 internal_error (__FILE__, __LINE__,
4762 _("unhandled stop_soon: %d"), (int) stop_soon);
4764 case TARGET_WAITKIND_SPURIOUS:
4766 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SPURIOUS\n");
4767 if (!ptid_equal (ecs->ptid, inferior_ptid))
4768 context_switch (ecs->ptid);
4769 resume (GDB_SIGNAL_0);
4770 prepare_to_wait (ecs);
4773 case TARGET_WAITKIND_EXITED:
4774 case TARGET_WAITKIND_SIGNALLED:
4777 if (ecs->ws.kind == TARGET_WAITKIND_EXITED)
4778 fprintf_unfiltered (gdb_stdlog,
4779 "infrun: TARGET_WAITKIND_EXITED\n");
4781 fprintf_unfiltered (gdb_stdlog,
4782 "infrun: TARGET_WAITKIND_SIGNALLED\n");
4785 inferior_ptid = ecs->ptid;
4786 set_current_inferior (find_inferior_ptid (ecs->ptid));
4787 set_current_program_space (current_inferior ()->pspace);
4788 handle_vfork_child_exec_or_exit (0);
4789 target_terminal_ours (); /* Must do this before mourn anyway. */
4791 /* Clearing any previous state of convenience variables. */
4792 clear_exit_convenience_vars ();
4794 if (ecs->ws.kind == TARGET_WAITKIND_EXITED)
4796 /* Record the exit code in the convenience variable $_exitcode, so
4797 that the user can inspect this again later. */
4798 set_internalvar_integer (lookup_internalvar ("_exitcode"),
4799 (LONGEST) ecs->ws.value.integer);
4801 /* Also record this in the inferior itself. */
4802 current_inferior ()->has_exit_code = 1;
4803 current_inferior ()->exit_code = (LONGEST) ecs->ws.value.integer;
4805 /* Support the --return-child-result option. */
4806 return_child_result_value = ecs->ws.value.integer;
4808 observer_notify_exited (ecs->ws.value.integer);
4812 struct regcache *regcache = get_thread_regcache (ecs->ptid);
4813 struct gdbarch *gdbarch = get_regcache_arch (regcache);
4815 if (gdbarch_gdb_signal_to_target_p (gdbarch))
4817 /* Set the value of the internal variable $_exitsignal,
4818 which holds the signal uncaught by the inferior. */
4819 set_internalvar_integer (lookup_internalvar ("_exitsignal"),
4820 gdbarch_gdb_signal_to_target (gdbarch,
4821 ecs->ws.value.sig));
4825 /* We don't have access to the target's method used for
4826 converting between signal numbers (GDB's internal
4827 representation <-> target's representation).
4828 Therefore, we cannot do a good job at displaying this
4829 information to the user. It's better to just warn
4830 her about it (if infrun debugging is enabled), and
4833 fprintf_filtered (gdb_stdlog, _("\
4834 Cannot fill $_exitsignal with the correct signal number.\n"));
4837 observer_notify_signal_exited (ecs->ws.value.sig);
4840 gdb_flush (gdb_stdout);
4841 target_mourn_inferior ();
4842 stop_print_frame = 0;
4846 /* The following are the only cases in which we keep going;
4847 the above cases end in a continue or goto. */
4848 case TARGET_WAITKIND_FORKED:
4849 case TARGET_WAITKIND_VFORKED:
4852 if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
4853 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_FORKED\n");
4855 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_VFORKED\n");
4858 /* Check whether the inferior is displaced stepping. */
4860 struct regcache *regcache = get_thread_regcache (ecs->ptid);
4861 struct gdbarch *gdbarch = get_regcache_arch (regcache);
4862 struct displaced_step_inferior_state *displaced
4863 = get_displaced_stepping_state (ptid_get_pid (ecs->ptid));
4865 /* If checking displaced stepping is supported, and thread
4866 ecs->ptid is displaced stepping. */
4867 if (displaced && ptid_equal (displaced->step_ptid, ecs->ptid))
4869 struct inferior *parent_inf
4870 = find_inferior_ptid (ecs->ptid);
4871 struct regcache *child_regcache;
4872 CORE_ADDR parent_pc;
4874 /* GDB has got TARGET_WAITKIND_FORKED or TARGET_WAITKIND_VFORKED,
4875 indicating that the displaced stepping of syscall instruction
4876 has been done. Perform cleanup for parent process here. Note
4877 that this operation also cleans up the child process for vfork,
4878 because their pages are shared. */
4879 displaced_step_fixup (ecs->ptid, GDB_SIGNAL_TRAP);
4880 /* Start a new step-over in another thread if there's one
4884 if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
4886 /* Restore scratch pad for child process. */
4887 displaced_step_restore (displaced, ecs->ws.value.related_pid);
4890 /* Since the vfork/fork syscall instruction was executed in the scratchpad,
4891 the child's PC is also within the scratchpad. Set the child's PC
4892 to the parent's PC value, which has already been fixed up.
4893 FIXME: we use the parent's aspace here, although we're touching
4894 the child, because the child hasn't been added to the inferior
4895 list yet at this point. */
4898 = get_thread_arch_aspace_regcache (ecs->ws.value.related_pid,
4900 parent_inf->aspace);
4901 /* Read PC value of parent process. */
4902 parent_pc = regcache_read_pc (regcache);
4904 if (debug_displaced)
4905 fprintf_unfiltered (gdb_stdlog,
4906 "displaced: write child pc from %s to %s\n",
4908 regcache_read_pc (child_regcache)),
4909 paddress (gdbarch, parent_pc));
4911 regcache_write_pc (child_regcache, parent_pc);
4915 if (!ptid_equal (ecs->ptid, inferior_ptid))
4916 context_switch (ecs->ptid);
4918 /* Immediately detach breakpoints from the child before there's
4919 any chance of letting the user delete breakpoints from the
4920 breakpoint lists. If we don't do this early, it's easy to
4921 leave left over traps in the child, vis: "break foo; catch
4922 fork; c; <fork>; del; c; <child calls foo>". We only follow
4923 the fork on the last `continue', and by that time the
4924 breakpoint at "foo" is long gone from the breakpoint table.
4925 If we vforked, then we don't need to unpatch here, since both
4926 parent and child are sharing the same memory pages; we'll
4927 need to unpatch at follow/detach time instead to be certain
4928 that new breakpoints added between catchpoint hit time and
4929 vfork follow are detached. */
4930 if (ecs->ws.kind != TARGET_WAITKIND_VFORKED)
4932 /* This won't actually modify the breakpoint list, but will
4933 physically remove the breakpoints from the child. */
4934 detach_breakpoints (ecs->ws.value.related_pid);
4937 delete_just_stopped_threads_single_step_breakpoints ();
4939 /* In case the event is caught by a catchpoint, remember that
4940 the event is to be followed at the next resume of the thread,
4941 and not immediately. */
4942 ecs->event_thread->pending_follow = ecs->ws;
4944 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
4946 ecs->event_thread->control.stop_bpstat
4947 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
4948 stop_pc, ecs->ptid, &ecs->ws);
4950 /* If no catchpoint triggered for this, then keep going. Note
4951 that we're interested in knowing the bpstat actually causes a
4952 stop, not just if it may explain the signal. Software
4953 watchpoints, for example, always appear in the bpstat. */
4954 if (!bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
4960 = (follow_fork_mode_string == follow_fork_mode_child);
4962 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
4964 should_resume = follow_fork ();
4967 child = ecs->ws.value.related_pid;
4969 /* In non-stop mode, also resume the other branch. */
4970 if (!detach_fork && (non_stop
4971 || (sched_multi && target_is_non_stop_p ())))
4974 switch_to_thread (parent);
4976 switch_to_thread (child);
4978 ecs->event_thread = inferior_thread ();
4979 ecs->ptid = inferior_ptid;
4984 switch_to_thread (child);
4986 switch_to_thread (parent);
4988 ecs->event_thread = inferior_thread ();
4989 ecs->ptid = inferior_ptid;
4997 process_event_stop_test (ecs);
5000 case TARGET_WAITKIND_VFORK_DONE:
5001 /* Done with the shared memory region. Re-insert breakpoints in
5002 the parent, and keep going. */
5005 fprintf_unfiltered (gdb_stdlog,
5006 "infrun: TARGET_WAITKIND_VFORK_DONE\n");
5008 if (!ptid_equal (ecs->ptid, inferior_ptid))
5009 context_switch (ecs->ptid);
5011 current_inferior ()->waiting_for_vfork_done = 0;
5012 current_inferior ()->pspace->breakpoints_not_allowed = 0;
5013 /* This also takes care of reinserting breakpoints in the
5014 previously locked inferior. */
5018 case TARGET_WAITKIND_EXECD:
5020 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXECD\n");
5022 if (!ptid_equal (ecs->ptid, inferior_ptid))
5023 context_switch (ecs->ptid);
5025 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
5027 /* Do whatever is necessary to the parent branch of the vfork. */
5028 handle_vfork_child_exec_or_exit (1);
5030 /* This causes the eventpoints and symbol table to be reset.
5031 Must do this now, before trying to determine whether to
5033 follow_exec (inferior_ptid, ecs->ws.value.execd_pathname);
5035 /* In follow_exec we may have deleted the original thread and
5036 created a new one. Make sure that the event thread is the
5037 execd thread for that case (this is a nop otherwise). */
5038 ecs->event_thread = inferior_thread ();
5040 ecs->event_thread->control.stop_bpstat
5041 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
5042 stop_pc, ecs->ptid, &ecs->ws);
5044 /* Note that this may be referenced from inside
5045 bpstat_stop_status above, through inferior_has_execd. */
5046 xfree (ecs->ws.value.execd_pathname);
5047 ecs->ws.value.execd_pathname = NULL;
5049 /* If no catchpoint triggered for this, then keep going. */
5050 if (!bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
5052 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5056 process_event_stop_test (ecs);
5059 /* Be careful not to try to gather much state about a thread
5060 that's in a syscall. It's frequently a losing proposition. */
5061 case TARGET_WAITKIND_SYSCALL_ENTRY:
5063 fprintf_unfiltered (gdb_stdlog,
5064 "infrun: TARGET_WAITKIND_SYSCALL_ENTRY\n");
5065 /* Getting the current syscall number. */
5066 if (handle_syscall_event (ecs) == 0)
5067 process_event_stop_test (ecs);
5070 /* Before examining the threads further, step this thread to
5071 get it entirely out of the syscall. (We get notice of the
5072 event when the thread is just on the verge of exiting a
5073 syscall. Stepping one instruction seems to get it back
5075 case TARGET_WAITKIND_SYSCALL_RETURN:
5077 fprintf_unfiltered (gdb_stdlog,
5078 "infrun: TARGET_WAITKIND_SYSCALL_RETURN\n");
5079 if (handle_syscall_event (ecs) == 0)
5080 process_event_stop_test (ecs);
5083 case TARGET_WAITKIND_STOPPED:
5085 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_STOPPED\n");
5086 ecs->event_thread->suspend.stop_signal = ecs->ws.value.sig;
5087 handle_signal_stop (ecs);
5090 case TARGET_WAITKIND_NO_HISTORY:
5092 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_NO_HISTORY\n");
5093 /* Reverse execution: target ran out of history info. */
5095 delete_just_stopped_threads_single_step_breakpoints ();
5096 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
5097 observer_notify_no_history ();
5103 /* A wrapper around handle_inferior_event_1, which also makes sure
5104 that all temporary struct value objects that were created during
5105 the handling of the event get deleted at the end. */
5108 handle_inferior_event (struct execution_control_state *ecs)
5110 struct value *mark = value_mark ();
5112 handle_inferior_event_1 (ecs);
5113 /* Purge all temporary values created during the event handling,
5114 as it could be a long time before we return to the command level
5115 where such values would otherwise be purged. */
5116 value_free_to_mark (mark);
5119 /* Restart threads back to what they were trying to do back when we
5120 paused them for an in-line step-over. The EVENT_THREAD thread is
5124 restart_threads (struct thread_info *event_thread)
5126 struct thread_info *tp;
5127 struct thread_info *step_over = NULL;
5129 /* In case the instruction just stepped spawned a new thread. */
5130 update_thread_list ();
5132 ALL_NON_EXITED_THREADS (tp)
5134 if (tp == event_thread)
5137 fprintf_unfiltered (gdb_stdlog,
5138 "infrun: restart threads: "
5139 "[%s] is event thread\n",
5140 target_pid_to_str (tp->ptid));
5144 if (!(tp->state == THREAD_RUNNING || tp->control.in_infcall))
5147 fprintf_unfiltered (gdb_stdlog,
5148 "infrun: restart threads: "
5149 "[%s] not meant to be running\n",
5150 target_pid_to_str (tp->ptid));
5157 fprintf_unfiltered (gdb_stdlog,
5158 "infrun: restart threads: [%s] resumed\n",
5159 target_pid_to_str (tp->ptid));
5160 gdb_assert (tp->executing || tp->suspend.waitstatus_pending_p);
5164 if (thread_is_in_step_over_chain (tp))
5167 fprintf_unfiltered (gdb_stdlog,
5168 "infrun: restart threads: "
5169 "[%s] needs step-over\n",
5170 target_pid_to_str (tp->ptid));
5171 gdb_assert (!tp->resumed);
5176 if (tp->suspend.waitstatus_pending_p)
5179 fprintf_unfiltered (gdb_stdlog,
5180 "infrun: restart threads: "
5181 "[%s] has pending status\n",
5182 target_pid_to_str (tp->ptid));
5187 /* If some thread needs to start a step-over at this point, it
5188 should still be in the step-over queue, and thus skipped
5190 if (thread_still_needs_step_over (tp))
5192 internal_error (__FILE__, __LINE__,
5193 "thread [%s] needs a step-over, but not in "
5194 "step-over queue\n",
5195 target_pid_to_str (tp->ptid));
5198 if (currently_stepping (tp))
5201 fprintf_unfiltered (gdb_stdlog,
5202 "infrun: restart threads: [%s] was stepping\n",
5203 target_pid_to_str (tp->ptid));
5204 keep_going_stepped_thread (tp);
5208 struct execution_control_state ecss;
5209 struct execution_control_state *ecs = &ecss;
5212 fprintf_unfiltered (gdb_stdlog,
5213 "infrun: restart threads: [%s] continuing\n",
5214 target_pid_to_str (tp->ptid));
5215 reset_ecs (ecs, tp);
5216 switch_to_thread (tp->ptid);
5217 keep_going_pass_signal (ecs);
5222 /* Callback for iterate_over_threads. Find a resumed thread that has
5223 a pending waitstatus. */
5226 resumed_thread_with_pending_status (struct thread_info *tp,
5230 && tp->suspend.waitstatus_pending_p);
5233 /* Called when we get an event that may finish an in-line or
5234 out-of-line (displaced stepping) step-over started previously.
5235 Return true if the event is processed and we should go back to the
5236 event loop; false if the caller should continue processing the
5240 finish_step_over (struct execution_control_state *ecs)
5242 int had_step_over_info;
5244 displaced_step_fixup (ecs->ptid,
5245 ecs->event_thread->suspend.stop_signal);
5247 had_step_over_info = step_over_info_valid_p ();
5249 if (had_step_over_info)
5251 /* If we're stepping over a breakpoint with all threads locked,
5252 then only the thread that was stepped should be reporting
5254 gdb_assert (ecs->event_thread->control.trap_expected);
5256 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
5257 clear_step_over_info ();
5260 if (!target_is_non_stop_p ())
5263 /* Start a new step-over in another thread if there's one that
5267 /* If we were stepping over a breakpoint before, and haven't started
5268 a new in-line step-over sequence, then restart all other threads
5269 (except the event thread). We can't do this in all-stop, as then
5270 e.g., we wouldn't be able to issue any other remote packet until
5271 these other threads stop. */
5272 if (had_step_over_info && !step_over_info_valid_p ())
5274 struct thread_info *pending;
5276 /* If we only have threads with pending statuses, the restart
5277 below won't restart any thread and so nothing re-inserts the
5278 breakpoint we just stepped over. But we need it inserted
5279 when we later process the pending events, otherwise if
5280 another thread has a pending event for this breakpoint too,
5281 we'd discard its event (because the breakpoint that
5282 originally caused the event was no longer inserted). */
5283 context_switch (ecs->ptid);
5284 insert_breakpoints ();
5286 restart_threads (ecs->event_thread);
5288 /* If we have events pending, go through handle_inferior_event
5289 again, picking up a pending event at random. This avoids
5290 thread starvation. */
5292 /* But not if we just stepped over a watchpoint in order to let
5293 the instruction execute so we can evaluate its expression.
5294 The set of watchpoints that triggered is recorded in the
5295 breakpoint objects themselves (see bp->watchpoint_triggered).
5296 If we processed another event first, that other event could
5297 clobber this info. */
5298 if (ecs->event_thread->stepping_over_watchpoint)
5301 pending = iterate_over_threads (resumed_thread_with_pending_status,
5303 if (pending != NULL)
5305 struct thread_info *tp = ecs->event_thread;
5306 struct regcache *regcache;
5310 fprintf_unfiltered (gdb_stdlog,
5311 "infrun: found resumed threads with "
5312 "pending events, saving status\n");
5315 gdb_assert (pending != tp);
5317 /* Record the event thread's event for later. */
5318 save_waitstatus (tp, &ecs->ws);
5319 /* This was cleared early, by handle_inferior_event. Set it
5320 so this pending event is considered by
5324 gdb_assert (!tp->executing);
5326 regcache = get_thread_regcache (tp->ptid);
5327 tp->suspend.stop_pc = regcache_read_pc (regcache);
5331 fprintf_unfiltered (gdb_stdlog,
5332 "infrun: saved stop_pc=%s for %s "
5333 "(currently_stepping=%d)\n",
5334 paddress (target_gdbarch (),
5335 tp->suspend.stop_pc),
5336 target_pid_to_str (tp->ptid),
5337 currently_stepping (tp));
5340 /* This in-line step-over finished; clear this so we won't
5341 start a new one. This is what handle_signal_stop would
5342 do, if we returned false. */
5343 tp->stepping_over_breakpoint = 0;
5345 /* Wake up the event loop again. */
5346 mark_async_event_handler (infrun_async_inferior_event_token);
5348 prepare_to_wait (ecs);
5356 /* Come here when the program has stopped with a signal. */
5359 handle_signal_stop (struct execution_control_state *ecs)
5361 struct frame_info *frame;
5362 struct gdbarch *gdbarch;
5363 int stopped_by_watchpoint;
5364 enum stop_kind stop_soon;
5367 gdb_assert (ecs->ws.kind == TARGET_WAITKIND_STOPPED);
5369 /* Do we need to clean up the state of a thread that has
5370 completed a displaced single-step? (Doing so usually affects
5371 the PC, so do it here, before we set stop_pc.) */
5372 if (finish_step_over (ecs))
5375 /* If we either finished a single-step or hit a breakpoint, but
5376 the user wanted this thread to be stopped, pretend we got a
5377 SIG0 (generic unsignaled stop). */
5378 if (ecs->event_thread->stop_requested
5379 && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
5380 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5382 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
5386 struct regcache *regcache = get_thread_regcache (ecs->ptid);
5387 struct gdbarch *gdbarch = get_regcache_arch (regcache);
5388 struct cleanup *old_chain = save_inferior_ptid ();
5390 inferior_ptid = ecs->ptid;
5392 fprintf_unfiltered (gdb_stdlog, "infrun: stop_pc = %s\n",
5393 paddress (gdbarch, stop_pc));
5394 if (target_stopped_by_watchpoint ())
5398 fprintf_unfiltered (gdb_stdlog, "infrun: stopped by watchpoint\n");
5400 if (target_stopped_data_address (¤t_target, &addr))
5401 fprintf_unfiltered (gdb_stdlog,
5402 "infrun: stopped data address = %s\n",
5403 paddress (gdbarch, addr));
5405 fprintf_unfiltered (gdb_stdlog,
5406 "infrun: (no data address available)\n");
5409 do_cleanups (old_chain);
5412 /* This is originated from start_remote(), start_inferior() and
5413 shared libraries hook functions. */
5414 stop_soon = get_inferior_stop_soon (ecs->ptid);
5415 if (stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_REMOTE)
5417 if (!ptid_equal (ecs->ptid, inferior_ptid))
5418 context_switch (ecs->ptid);
5420 fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
5421 stop_print_frame = 1;
5426 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5429 if (!ptid_equal (ecs->ptid, inferior_ptid))
5430 context_switch (ecs->ptid);
5432 fprintf_unfiltered (gdb_stdlog, "infrun: stopped\n");
5433 stop_print_frame = 0;
5438 /* This originates from attach_command(). We need to overwrite
5439 the stop_signal here, because some kernels don't ignore a
5440 SIGSTOP in a subsequent ptrace(PTRACE_CONT,SIGSTOP) call.
5441 See more comments in inferior.h. On the other hand, if we
5442 get a non-SIGSTOP, report it to the user - assume the backend
5443 will handle the SIGSTOP if it should show up later.
5445 Also consider that the attach is complete when we see a
5446 SIGTRAP. Some systems (e.g. Windows), and stubs supporting
5447 target extended-remote report it instead of a SIGSTOP
5448 (e.g. gdbserver). We already rely on SIGTRAP being our
5449 signal, so this is no exception.
5451 Also consider that the attach is complete when we see a
5452 GDB_SIGNAL_0. In non-stop mode, GDB will explicitly tell
5453 the target to stop all threads of the inferior, in case the
5454 low level attach operation doesn't stop them implicitly. If
5455 they weren't stopped implicitly, then the stub will report a
5456 GDB_SIGNAL_0, meaning: stopped for no particular reason
5457 other than GDB's request. */
5458 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
5459 && (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_STOP
5460 || ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5461 || ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_0))
5463 stop_print_frame = 1;
5465 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5469 /* See if something interesting happened to the non-current thread. If
5470 so, then switch to that thread. */
5471 if (!ptid_equal (ecs->ptid, inferior_ptid))
5474 fprintf_unfiltered (gdb_stdlog, "infrun: context switch\n");
5476 context_switch (ecs->ptid);
5478 if (deprecated_context_hook)
5479 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
5482 /* At this point, get hold of the now-current thread's frame. */
5483 frame = get_current_frame ();
5484 gdbarch = get_frame_arch (frame);
5486 /* Pull the single step breakpoints out of the target. */
5487 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
5489 struct regcache *regcache;
5490 struct address_space *aspace;
5493 regcache = get_thread_regcache (ecs->ptid);
5494 aspace = get_regcache_aspace (regcache);
5495 pc = regcache_read_pc (regcache);
5497 /* However, before doing so, if this single-step breakpoint was
5498 actually for another thread, set this thread up for moving
5500 if (!thread_has_single_step_breakpoint_here (ecs->event_thread,
5503 if (single_step_breakpoint_inserted_here_p (aspace, pc))
5507 fprintf_unfiltered (gdb_stdlog,
5508 "infrun: [%s] hit another thread's "
5509 "single-step breakpoint\n",
5510 target_pid_to_str (ecs->ptid));
5512 ecs->hit_singlestep_breakpoint = 1;
5519 fprintf_unfiltered (gdb_stdlog,
5520 "infrun: [%s] hit its "
5521 "single-step breakpoint\n",
5522 target_pid_to_str (ecs->ptid));
5526 delete_just_stopped_threads_single_step_breakpoints ();
5528 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5529 && ecs->event_thread->control.trap_expected
5530 && ecs->event_thread->stepping_over_watchpoint)
5531 stopped_by_watchpoint = 0;
5533 stopped_by_watchpoint = watchpoints_triggered (&ecs->ws);
5535 /* If necessary, step over this watchpoint. We'll be back to display
5537 if (stopped_by_watchpoint
5538 && (target_have_steppable_watchpoint
5539 || gdbarch_have_nonsteppable_watchpoint (gdbarch)))
5541 /* At this point, we are stopped at an instruction which has
5542 attempted to write to a piece of memory under control of
5543 a watchpoint. The instruction hasn't actually executed
5544 yet. If we were to evaluate the watchpoint expression
5545 now, we would get the old value, and therefore no change
5546 would seem to have occurred.
5548 In order to make watchpoints work `right', we really need
5549 to complete the memory write, and then evaluate the
5550 watchpoint expression. We do this by single-stepping the
5553 It may not be necessary to disable the watchpoint to step over
5554 it. For example, the PA can (with some kernel cooperation)
5555 single step over a watchpoint without disabling the watchpoint.
5557 It is far more common to need to disable a watchpoint to step
5558 the inferior over it. If we have non-steppable watchpoints,
5559 we must disable the current watchpoint; it's simplest to
5560 disable all watchpoints.
5562 Any breakpoint at PC must also be stepped over -- if there's
5563 one, it will have already triggered before the watchpoint
5564 triggered, and we either already reported it to the user, or
5565 it didn't cause a stop and we called keep_going. In either
5566 case, if there was a breakpoint at PC, we must be trying to
5568 ecs->event_thread->stepping_over_watchpoint = 1;
5573 ecs->event_thread->stepping_over_breakpoint = 0;
5574 ecs->event_thread->stepping_over_watchpoint = 0;
5575 bpstat_clear (&ecs->event_thread->control.stop_bpstat);
5576 ecs->event_thread->control.stop_step = 0;
5577 stop_print_frame = 1;
5578 stopped_by_random_signal = 0;
5580 /* Hide inlined functions starting here, unless we just performed stepi or
5581 nexti. After stepi and nexti, always show the innermost frame (not any
5582 inline function call sites). */
5583 if (ecs->event_thread->control.step_range_end != 1)
5585 struct address_space *aspace =
5586 get_regcache_aspace (get_thread_regcache (ecs->ptid));
5588 /* skip_inline_frames is expensive, so we avoid it if we can
5589 determine that the address is one where functions cannot have
5590 been inlined. This improves performance with inferiors that
5591 load a lot of shared libraries, because the solib event
5592 breakpoint is defined as the address of a function (i.e. not
5593 inline). Note that we have to check the previous PC as well
5594 as the current one to catch cases when we have just
5595 single-stepped off a breakpoint prior to reinstating it.
5596 Note that we're assuming that the code we single-step to is
5597 not inline, but that's not definitive: there's nothing
5598 preventing the event breakpoint function from containing
5599 inlined code, and the single-step ending up there. If the
5600 user had set a breakpoint on that inlined code, the missing
5601 skip_inline_frames call would break things. Fortunately
5602 that's an extremely unlikely scenario. */
5603 if (!pc_at_non_inline_function (aspace, stop_pc, &ecs->ws)
5604 && !(ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5605 && ecs->event_thread->control.trap_expected
5606 && pc_at_non_inline_function (aspace,
5607 ecs->event_thread->prev_pc,
5610 skip_inline_frames (ecs->ptid);
5612 /* Re-fetch current thread's frame in case that invalidated
5614 frame = get_current_frame ();
5615 gdbarch = get_frame_arch (frame);
5619 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5620 && ecs->event_thread->control.trap_expected
5621 && gdbarch_single_step_through_delay_p (gdbarch)
5622 && currently_stepping (ecs->event_thread))
5624 /* We're trying to step off a breakpoint. Turns out that we're
5625 also on an instruction that needs to be stepped multiple
5626 times before it's been fully executing. E.g., architectures
5627 with a delay slot. It needs to be stepped twice, once for
5628 the instruction and once for the delay slot. */
5629 int step_through_delay
5630 = gdbarch_single_step_through_delay (gdbarch, frame);
5632 if (debug_infrun && step_through_delay)
5633 fprintf_unfiltered (gdb_stdlog, "infrun: step through delay\n");
5634 if (ecs->event_thread->control.step_range_end == 0
5635 && step_through_delay)
5637 /* The user issued a continue when stopped at a breakpoint.
5638 Set up for another trap and get out of here. */
5639 ecs->event_thread->stepping_over_breakpoint = 1;
5643 else if (step_through_delay)
5645 /* The user issued a step when stopped at a breakpoint.
5646 Maybe we should stop, maybe we should not - the delay
5647 slot *might* correspond to a line of source. In any
5648 case, don't decide that here, just set
5649 ecs->stepping_over_breakpoint, making sure we
5650 single-step again before breakpoints are re-inserted. */
5651 ecs->event_thread->stepping_over_breakpoint = 1;
5655 /* See if there is a breakpoint/watchpoint/catchpoint/etc. that
5656 handles this event. */
5657 ecs->event_thread->control.stop_bpstat
5658 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
5659 stop_pc, ecs->ptid, &ecs->ws);
5661 /* Following in case break condition called a
5663 stop_print_frame = 1;
5665 /* This is where we handle "moribund" watchpoints. Unlike
5666 software breakpoints traps, hardware watchpoint traps are
5667 always distinguishable from random traps. If no high-level
5668 watchpoint is associated with the reported stop data address
5669 anymore, then the bpstat does not explain the signal ---
5670 simply make sure to ignore it if `stopped_by_watchpoint' is
5674 && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5675 && !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat,
5677 && stopped_by_watchpoint)
5678 fprintf_unfiltered (gdb_stdlog,
5679 "infrun: no user watchpoint explains "
5680 "watchpoint SIGTRAP, ignoring\n");
5682 /* NOTE: cagney/2003-03-29: These checks for a random signal
5683 at one stage in the past included checks for an inferior
5684 function call's call dummy's return breakpoint. The original
5685 comment, that went with the test, read:
5687 ``End of a stack dummy. Some systems (e.g. Sony news) give
5688 another signal besides SIGTRAP, so check here as well as
5691 If someone ever tries to get call dummys on a
5692 non-executable stack to work (where the target would stop
5693 with something like a SIGSEGV), then those tests might need
5694 to be re-instated. Given, however, that the tests were only
5695 enabled when momentary breakpoints were not being used, I
5696 suspect that it won't be the case.
5698 NOTE: kettenis/2004-02-05: Indeed such checks don't seem to
5699 be necessary for call dummies on a non-executable stack on
5702 /* See if the breakpoints module can explain the signal. */
5704 = !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat,
5705 ecs->event_thread->suspend.stop_signal);
5707 /* Maybe this was a trap for a software breakpoint that has since
5709 if (random_signal && target_stopped_by_sw_breakpoint ())
5711 if (program_breakpoint_here_p (gdbarch, stop_pc))
5713 struct regcache *regcache;
5716 /* Re-adjust PC to what the program would see if GDB was not
5718 regcache = get_thread_regcache (ecs->event_thread->ptid);
5719 decr_pc = gdbarch_decr_pc_after_break (gdbarch);
5722 struct cleanup *old_cleanups = make_cleanup (null_cleanup, NULL);
5724 if (record_full_is_used ())
5725 record_full_gdb_operation_disable_set ();
5727 regcache_write_pc (regcache, stop_pc + decr_pc);
5729 do_cleanups (old_cleanups);
5734 /* A delayed software breakpoint event. Ignore the trap. */
5736 fprintf_unfiltered (gdb_stdlog,
5737 "infrun: delayed software breakpoint "
5738 "trap, ignoring\n");
5743 /* Maybe this was a trap for a hardware breakpoint/watchpoint that
5744 has since been removed. */
5745 if (random_signal && target_stopped_by_hw_breakpoint ())
5747 /* A delayed hardware breakpoint event. Ignore the trap. */
5749 fprintf_unfiltered (gdb_stdlog,
5750 "infrun: delayed hardware breakpoint/watchpoint "
5751 "trap, ignoring\n");
5755 /* If not, perhaps stepping/nexting can. */
5757 random_signal = !(ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5758 && currently_stepping (ecs->event_thread));
5760 /* Perhaps the thread hit a single-step breakpoint of _another_
5761 thread. Single-step breakpoints are transparent to the
5762 breakpoints module. */
5764 random_signal = !ecs->hit_singlestep_breakpoint;
5766 /* No? Perhaps we got a moribund watchpoint. */
5768 random_signal = !stopped_by_watchpoint;
5770 /* For the program's own signals, act according to
5771 the signal handling tables. */
5775 /* Signal not for debugging purposes. */
5776 struct inferior *inf = find_inferior_ptid (ecs->ptid);
5777 enum gdb_signal stop_signal = ecs->event_thread->suspend.stop_signal;
5780 fprintf_unfiltered (gdb_stdlog, "infrun: random signal (%s)\n",
5781 gdb_signal_to_symbol_string (stop_signal));
5783 stopped_by_random_signal = 1;
5785 /* Always stop on signals if we're either just gaining control
5786 of the program, or the user explicitly requested this thread
5787 to remain stopped. */
5788 if (stop_soon != NO_STOP_QUIETLY
5789 || ecs->event_thread->stop_requested
5791 && signal_stop_state (ecs->event_thread->suspend.stop_signal)))
5797 /* Notify observers the signal has "handle print" set. Note we
5798 returned early above if stopping; normal_stop handles the
5799 printing in that case. */
5800 if (signal_print[ecs->event_thread->suspend.stop_signal])
5802 /* The signal table tells us to print about this signal. */
5803 target_terminal_ours_for_output ();
5804 observer_notify_signal_received (ecs->event_thread->suspend.stop_signal);
5805 target_terminal_inferior ();
5808 /* Clear the signal if it should not be passed. */
5809 if (signal_program[ecs->event_thread->suspend.stop_signal] == 0)
5810 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5812 if (ecs->event_thread->prev_pc == stop_pc
5813 && ecs->event_thread->control.trap_expected
5814 && ecs->event_thread->control.step_resume_breakpoint == NULL)
5818 /* We were just starting a new sequence, attempting to
5819 single-step off of a breakpoint and expecting a SIGTRAP.
5820 Instead this signal arrives. This signal will take us out
5821 of the stepping range so GDB needs to remember to, when
5822 the signal handler returns, resume stepping off that
5824 /* To simplify things, "continue" is forced to use the same
5825 code paths as single-step - set a breakpoint at the
5826 signal return address and then, once hit, step off that
5829 fprintf_unfiltered (gdb_stdlog,
5830 "infrun: signal arrived while stepping over "
5833 was_in_line = step_over_info_valid_p ();
5834 clear_step_over_info ();
5835 insert_hp_step_resume_breakpoint_at_frame (frame);
5836 ecs->event_thread->step_after_step_resume_breakpoint = 1;
5837 /* Reset trap_expected to ensure breakpoints are re-inserted. */
5838 ecs->event_thread->control.trap_expected = 0;
5840 if (target_is_non_stop_p ())
5842 /* Either "set non-stop" is "on", or the target is
5843 always in non-stop mode. In this case, we have a bit
5844 more work to do. Resume the current thread, and if
5845 we had paused all threads, restart them while the
5846 signal handler runs. */
5851 restart_threads (ecs->event_thread);
5853 else if (debug_infrun)
5855 fprintf_unfiltered (gdb_stdlog,
5856 "infrun: no need to restart threads\n");
5861 /* If we were nexting/stepping some other thread, switch to
5862 it, so that we don't continue it, losing control. */
5863 if (!switch_back_to_stepped_thread (ecs))
5868 if (ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_0
5869 && (pc_in_thread_step_range (stop_pc, ecs->event_thread)
5870 || ecs->event_thread->control.step_range_end == 1)
5871 && frame_id_eq (get_stack_frame_id (frame),
5872 ecs->event_thread->control.step_stack_frame_id)
5873 && ecs->event_thread->control.step_resume_breakpoint == NULL)
5875 /* The inferior is about to take a signal that will take it
5876 out of the single step range. Set a breakpoint at the
5877 current PC (which is presumably where the signal handler
5878 will eventually return) and then allow the inferior to
5881 Note that this is only needed for a signal delivered
5882 while in the single-step range. Nested signals aren't a
5883 problem as they eventually all return. */
5885 fprintf_unfiltered (gdb_stdlog,
5886 "infrun: signal may take us out of "
5887 "single-step range\n");
5889 clear_step_over_info ();
5890 insert_hp_step_resume_breakpoint_at_frame (frame);
5891 ecs->event_thread->step_after_step_resume_breakpoint = 1;
5892 /* Reset trap_expected to ensure breakpoints are re-inserted. */
5893 ecs->event_thread->control.trap_expected = 0;
5898 /* Note: step_resume_breakpoint may be non-NULL. This occures
5899 when either there's a nested signal, or when there's a
5900 pending signal enabled just as the signal handler returns
5901 (leaving the inferior at the step-resume-breakpoint without
5902 actually executing it). Either way continue until the
5903 breakpoint is really hit. */
5905 if (!switch_back_to_stepped_thread (ecs))
5908 fprintf_unfiltered (gdb_stdlog,
5909 "infrun: random signal, keep going\n");
5916 process_event_stop_test (ecs);
5919 /* Come here when we've got some debug event / signal we can explain
5920 (IOW, not a random signal), and test whether it should cause a
5921 stop, or whether we should resume the inferior (transparently).
5922 E.g., could be a breakpoint whose condition evaluates false; we
5923 could be still stepping within the line; etc. */
5926 process_event_stop_test (struct execution_control_state *ecs)
5928 struct symtab_and_line stop_pc_sal;
5929 struct frame_info *frame;
5930 struct gdbarch *gdbarch;
5931 CORE_ADDR jmp_buf_pc;
5932 struct bpstat_what what;
5934 /* Handle cases caused by hitting a breakpoint. */
5936 frame = get_current_frame ();
5937 gdbarch = get_frame_arch (frame);
5939 what = bpstat_what (ecs->event_thread->control.stop_bpstat);
5941 if (what.call_dummy)
5943 stop_stack_dummy = what.call_dummy;
5946 /* A few breakpoint types have callbacks associated (e.g.,
5947 bp_jit_event). Run them now. */
5948 bpstat_run_callbacks (ecs->event_thread->control.stop_bpstat);
5950 /* If we hit an internal event that triggers symbol changes, the
5951 current frame will be invalidated within bpstat_what (e.g., if we
5952 hit an internal solib event). Re-fetch it. */
5953 frame = get_current_frame ();
5954 gdbarch = get_frame_arch (frame);
5956 switch (what.main_action)
5958 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
5959 /* If we hit the breakpoint at longjmp while stepping, we
5960 install a momentary breakpoint at the target of the
5964 fprintf_unfiltered (gdb_stdlog,
5965 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME\n");
5967 ecs->event_thread->stepping_over_breakpoint = 1;
5969 if (what.is_longjmp)
5971 struct value *arg_value;
5973 /* If we set the longjmp breakpoint via a SystemTap probe,
5974 then use it to extract the arguments. The destination PC
5975 is the third argument to the probe. */
5976 arg_value = probe_safe_evaluate_at_pc (frame, 2);
5979 jmp_buf_pc = value_as_address (arg_value);
5980 jmp_buf_pc = gdbarch_addr_bits_remove (gdbarch, jmp_buf_pc);
5982 else if (!gdbarch_get_longjmp_target_p (gdbarch)
5983 || !gdbarch_get_longjmp_target (gdbarch,
5984 frame, &jmp_buf_pc))
5987 fprintf_unfiltered (gdb_stdlog,
5988 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME "
5989 "(!gdbarch_get_longjmp_target)\n");
5994 /* Insert a breakpoint at resume address. */
5995 insert_longjmp_resume_breakpoint (gdbarch, jmp_buf_pc);
5998 check_exception_resume (ecs, frame);
6002 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
6004 struct frame_info *init_frame;
6006 /* There are several cases to consider.
6008 1. The initiating frame no longer exists. In this case we
6009 must stop, because the exception or longjmp has gone too
6012 2. The initiating frame exists, and is the same as the
6013 current frame. We stop, because the exception or longjmp
6016 3. The initiating frame exists and is different from the
6017 current frame. This means the exception or longjmp has
6018 been caught beneath the initiating frame, so keep going.
6020 4. longjmp breakpoint has been placed just to protect
6021 against stale dummy frames and user is not interested in
6022 stopping around longjmps. */
6025 fprintf_unfiltered (gdb_stdlog,
6026 "infrun: BPSTAT_WHAT_CLEAR_LONGJMP_RESUME\n");
6028 gdb_assert (ecs->event_thread->control.exception_resume_breakpoint
6030 delete_exception_resume_breakpoint (ecs->event_thread);
6032 if (what.is_longjmp)
6034 check_longjmp_breakpoint_for_call_dummy (ecs->event_thread);
6036 if (!frame_id_p (ecs->event_thread->initiating_frame))
6044 init_frame = frame_find_by_id (ecs->event_thread->initiating_frame);
6048 struct frame_id current_id
6049 = get_frame_id (get_current_frame ());
6050 if (frame_id_eq (current_id,
6051 ecs->event_thread->initiating_frame))
6053 /* Case 2. Fall through. */
6063 /* For Cases 1 and 2, remove the step-resume breakpoint, if it
6065 delete_step_resume_breakpoint (ecs->event_thread);
6067 end_stepping_range (ecs);
6071 case BPSTAT_WHAT_SINGLE:
6073 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_SINGLE\n");
6074 ecs->event_thread->stepping_over_breakpoint = 1;
6075 /* Still need to check other stuff, at least the case where we
6076 are stepping and step out of the right range. */
6079 case BPSTAT_WHAT_STEP_RESUME:
6081 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STEP_RESUME\n");
6083 delete_step_resume_breakpoint (ecs->event_thread);
6084 if (ecs->event_thread->control.proceed_to_finish
6085 && execution_direction == EXEC_REVERSE)
6087 struct thread_info *tp = ecs->event_thread;
6089 /* We are finishing a function in reverse, and just hit the
6090 step-resume breakpoint at the start address of the
6091 function, and we're almost there -- just need to back up
6092 by one more single-step, which should take us back to the
6094 tp->control.step_range_start = tp->control.step_range_end = 1;
6098 fill_in_stop_func (gdbarch, ecs);
6099 if (stop_pc == ecs->stop_func_start
6100 && execution_direction == EXEC_REVERSE)
6102 /* We are stepping over a function call in reverse, and just
6103 hit the step-resume breakpoint at the start address of
6104 the function. Go back to single-stepping, which should
6105 take us back to the function call. */
6106 ecs->event_thread->stepping_over_breakpoint = 1;
6112 case BPSTAT_WHAT_STOP_NOISY:
6114 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_NOISY\n");
6115 stop_print_frame = 1;
6117 /* Assume the thread stopped for a breapoint. We'll still check
6118 whether a/the breakpoint is there when the thread is next
6120 ecs->event_thread->stepping_over_breakpoint = 1;
6125 case BPSTAT_WHAT_STOP_SILENT:
6127 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_SILENT\n");
6128 stop_print_frame = 0;
6130 /* Assume the thread stopped for a breapoint. We'll still check
6131 whether a/the breakpoint is there when the thread is next
6133 ecs->event_thread->stepping_over_breakpoint = 1;
6137 case BPSTAT_WHAT_HP_STEP_RESUME:
6139 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_HP_STEP_RESUME\n");
6141 delete_step_resume_breakpoint (ecs->event_thread);
6142 if (ecs->event_thread->step_after_step_resume_breakpoint)
6144 /* Back when the step-resume breakpoint was inserted, we
6145 were trying to single-step off a breakpoint. Go back to
6147 ecs->event_thread->step_after_step_resume_breakpoint = 0;
6148 ecs->event_thread->stepping_over_breakpoint = 1;
6154 case BPSTAT_WHAT_KEEP_CHECKING:
6158 /* If we stepped a permanent breakpoint and we had a high priority
6159 step-resume breakpoint for the address we stepped, but we didn't
6160 hit it, then we must have stepped into the signal handler. The
6161 step-resume was only necessary to catch the case of _not_
6162 stepping into the handler, so delete it, and fall through to
6163 checking whether the step finished. */
6164 if (ecs->event_thread->stepped_breakpoint)
6166 struct breakpoint *sr_bp
6167 = ecs->event_thread->control.step_resume_breakpoint;
6170 && sr_bp->loc->permanent
6171 && sr_bp->type == bp_hp_step_resume
6172 && sr_bp->loc->address == ecs->event_thread->prev_pc)
6175 fprintf_unfiltered (gdb_stdlog,
6176 "infrun: stepped permanent breakpoint, stopped in "
6178 delete_step_resume_breakpoint (ecs->event_thread);
6179 ecs->event_thread->step_after_step_resume_breakpoint = 0;
6183 /* We come here if we hit a breakpoint but should not stop for it.
6184 Possibly we also were stepping and should stop for that. So fall
6185 through and test for stepping. But, if not stepping, do not
6188 /* In all-stop mode, if we're currently stepping but have stopped in
6189 some other thread, we need to switch back to the stepped thread. */
6190 if (switch_back_to_stepped_thread (ecs))
6193 if (ecs->event_thread->control.step_resume_breakpoint)
6196 fprintf_unfiltered (gdb_stdlog,
6197 "infrun: step-resume breakpoint is inserted\n");
6199 /* Having a step-resume breakpoint overrides anything
6200 else having to do with stepping commands until
6201 that breakpoint is reached. */
6206 if (ecs->event_thread->control.step_range_end == 0)
6209 fprintf_unfiltered (gdb_stdlog, "infrun: no stepping, continue\n");
6210 /* Likewise if we aren't even stepping. */
6215 /* Re-fetch current thread's frame in case the code above caused
6216 the frame cache to be re-initialized, making our FRAME variable
6217 a dangling pointer. */
6218 frame = get_current_frame ();
6219 gdbarch = get_frame_arch (frame);
6220 fill_in_stop_func (gdbarch, ecs);
6222 /* If stepping through a line, keep going if still within it.
6224 Note that step_range_end is the address of the first instruction
6225 beyond the step range, and NOT the address of the last instruction
6228 Note also that during reverse execution, we may be stepping
6229 through a function epilogue and therefore must detect when
6230 the current-frame changes in the middle of a line. */
6232 if (pc_in_thread_step_range (stop_pc, ecs->event_thread)
6233 && (execution_direction != EXEC_REVERSE
6234 || frame_id_eq (get_frame_id (frame),
6235 ecs->event_thread->control.step_frame_id)))
6239 (gdb_stdlog, "infrun: stepping inside range [%s-%s]\n",
6240 paddress (gdbarch, ecs->event_thread->control.step_range_start),
6241 paddress (gdbarch, ecs->event_thread->control.step_range_end));
6243 /* Tentatively re-enable range stepping; `resume' disables it if
6244 necessary (e.g., if we're stepping over a breakpoint or we
6245 have software watchpoints). */
6246 ecs->event_thread->control.may_range_step = 1;
6248 /* When stepping backward, stop at beginning of line range
6249 (unless it's the function entry point, in which case
6250 keep going back to the call point). */
6251 if (stop_pc == ecs->event_thread->control.step_range_start
6252 && stop_pc != ecs->stop_func_start
6253 && execution_direction == EXEC_REVERSE)
6254 end_stepping_range (ecs);
6261 /* We stepped out of the stepping range. */
6263 /* If we are stepping at the source level and entered the runtime
6264 loader dynamic symbol resolution code...
6266 EXEC_FORWARD: we keep on single stepping until we exit the run
6267 time loader code and reach the callee's address.
6269 EXEC_REVERSE: we've already executed the callee (backward), and
6270 the runtime loader code is handled just like any other
6271 undebuggable function call. Now we need only keep stepping
6272 backward through the trampoline code, and that's handled further
6273 down, so there is nothing for us to do here. */
6275 if (execution_direction != EXEC_REVERSE
6276 && ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
6277 && in_solib_dynsym_resolve_code (stop_pc))
6279 CORE_ADDR pc_after_resolver =
6280 gdbarch_skip_solib_resolver (gdbarch, stop_pc);
6283 fprintf_unfiltered (gdb_stdlog,
6284 "infrun: stepped into dynsym resolve code\n");
6286 if (pc_after_resolver)
6288 /* Set up a step-resume breakpoint at the address
6289 indicated by SKIP_SOLIB_RESOLVER. */
6290 struct symtab_and_line sr_sal;
6293 sr_sal.pc = pc_after_resolver;
6294 sr_sal.pspace = get_frame_program_space (frame);
6296 insert_step_resume_breakpoint_at_sal (gdbarch,
6297 sr_sal, null_frame_id);
6304 if (ecs->event_thread->control.step_range_end != 1
6305 && (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
6306 || ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
6307 && get_frame_type (frame) == SIGTRAMP_FRAME)
6310 fprintf_unfiltered (gdb_stdlog,
6311 "infrun: stepped into signal trampoline\n");
6312 /* The inferior, while doing a "step" or "next", has ended up in
6313 a signal trampoline (either by a signal being delivered or by
6314 the signal handler returning). Just single-step until the
6315 inferior leaves the trampoline (either by calling the handler
6321 /* If we're in the return path from a shared library trampoline,
6322 we want to proceed through the trampoline when stepping. */
6323 /* macro/2012-04-25: This needs to come before the subroutine
6324 call check below as on some targets return trampolines look
6325 like subroutine calls (MIPS16 return thunks). */
6326 if (gdbarch_in_solib_return_trampoline (gdbarch,
6327 stop_pc, ecs->stop_func_name)
6328 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
6330 /* Determine where this trampoline returns. */
6331 CORE_ADDR real_stop_pc;
6333 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
6336 fprintf_unfiltered (gdb_stdlog,
6337 "infrun: stepped into solib return tramp\n");
6339 /* Only proceed through if we know where it's going. */
6342 /* And put the step-breakpoint there and go until there. */
6343 struct symtab_and_line sr_sal;
6345 init_sal (&sr_sal); /* initialize to zeroes */
6346 sr_sal.pc = real_stop_pc;
6347 sr_sal.section = find_pc_overlay (sr_sal.pc);
6348 sr_sal.pspace = get_frame_program_space (frame);
6350 /* Do not specify what the fp should be when we stop since
6351 on some machines the prologue is where the new fp value
6353 insert_step_resume_breakpoint_at_sal (gdbarch,
6354 sr_sal, null_frame_id);
6356 /* Restart without fiddling with the step ranges or
6363 /* Check for subroutine calls. The check for the current frame
6364 equalling the step ID is not necessary - the check of the
6365 previous frame's ID is sufficient - but it is a common case and
6366 cheaper than checking the previous frame's ID.
6368 NOTE: frame_id_eq will never report two invalid frame IDs as
6369 being equal, so to get into this block, both the current and
6370 previous frame must have valid frame IDs. */
6371 /* The outer_frame_id check is a heuristic to detect stepping
6372 through startup code. If we step over an instruction which
6373 sets the stack pointer from an invalid value to a valid value,
6374 we may detect that as a subroutine call from the mythical
6375 "outermost" function. This could be fixed by marking
6376 outermost frames as !stack_p,code_p,special_p. Then the
6377 initial outermost frame, before sp was valid, would
6378 have code_addr == &_start. See the comment in frame_id_eq
6380 if (!frame_id_eq (get_stack_frame_id (frame),
6381 ecs->event_thread->control.step_stack_frame_id)
6382 && (frame_id_eq (frame_unwind_caller_id (get_current_frame ()),
6383 ecs->event_thread->control.step_stack_frame_id)
6384 && (!frame_id_eq (ecs->event_thread->control.step_stack_frame_id,
6386 || (ecs->event_thread->control.step_start_function
6387 != find_pc_function (stop_pc)))))
6389 CORE_ADDR real_stop_pc;
6392 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into subroutine\n");
6394 if (ecs->event_thread->control.step_over_calls == STEP_OVER_NONE)
6396 /* I presume that step_over_calls is only 0 when we're
6397 supposed to be stepping at the assembly language level
6398 ("stepi"). Just stop. */
6399 /* And this works the same backward as frontward. MVS */
6400 end_stepping_range (ecs);
6404 /* Reverse stepping through solib trampolines. */
6406 if (execution_direction == EXEC_REVERSE
6407 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE
6408 && (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
6409 || (ecs->stop_func_start == 0
6410 && in_solib_dynsym_resolve_code (stop_pc))))
6412 /* Any solib trampoline code can be handled in reverse
6413 by simply continuing to single-step. We have already
6414 executed the solib function (backwards), and a few
6415 steps will take us back through the trampoline to the
6421 if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
6423 /* We're doing a "next".
6425 Normal (forward) execution: set a breakpoint at the
6426 callee's return address (the address at which the caller
6429 Reverse (backward) execution. set the step-resume
6430 breakpoint at the start of the function that we just
6431 stepped into (backwards), and continue to there. When we
6432 get there, we'll need to single-step back to the caller. */
6434 if (execution_direction == EXEC_REVERSE)
6436 /* If we're already at the start of the function, we've either
6437 just stepped backward into a single instruction function,
6438 or stepped back out of a signal handler to the first instruction
6439 of the function. Just keep going, which will single-step back
6441 if (ecs->stop_func_start != stop_pc && ecs->stop_func_start != 0)
6443 struct symtab_and_line sr_sal;
6445 /* Normal function call return (static or dynamic). */
6447 sr_sal.pc = ecs->stop_func_start;
6448 sr_sal.pspace = get_frame_program_space (frame);
6449 insert_step_resume_breakpoint_at_sal (gdbarch,
6450 sr_sal, null_frame_id);
6454 insert_step_resume_breakpoint_at_caller (frame);
6460 /* If we are in a function call trampoline (a stub between the
6461 calling routine and the real function), locate the real
6462 function. That's what tells us (a) whether we want to step
6463 into it at all, and (b) what prologue we want to run to the
6464 end of, if we do step into it. */
6465 real_stop_pc = skip_language_trampoline (frame, stop_pc);
6466 if (real_stop_pc == 0)
6467 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
6468 if (real_stop_pc != 0)
6469 ecs->stop_func_start = real_stop_pc;
6471 if (real_stop_pc != 0 && in_solib_dynsym_resolve_code (real_stop_pc))
6473 struct symtab_and_line sr_sal;
6476 sr_sal.pc = ecs->stop_func_start;
6477 sr_sal.pspace = get_frame_program_space (frame);
6479 insert_step_resume_breakpoint_at_sal (gdbarch,
6480 sr_sal, null_frame_id);
6485 /* If we have line number information for the function we are
6486 thinking of stepping into and the function isn't on the skip
6489 If there are several symtabs at that PC (e.g. with include
6490 files), just want to know whether *any* of them have line
6491 numbers. find_pc_line handles this. */
6493 struct symtab_and_line tmp_sal;
6495 tmp_sal = find_pc_line (ecs->stop_func_start, 0);
6496 if (tmp_sal.line != 0
6497 && !function_name_is_marked_for_skip (ecs->stop_func_name,
6500 if (execution_direction == EXEC_REVERSE)
6501 handle_step_into_function_backward (gdbarch, ecs);
6503 handle_step_into_function (gdbarch, ecs);
6508 /* If we have no line number and the step-stop-if-no-debug is
6509 set, we stop the step so that the user has a chance to switch
6510 in assembly mode. */
6511 if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
6512 && step_stop_if_no_debug)
6514 end_stepping_range (ecs);
6518 if (execution_direction == EXEC_REVERSE)
6520 /* If we're already at the start of the function, we've either just
6521 stepped backward into a single instruction function without line
6522 number info, or stepped back out of a signal handler to the first
6523 instruction of the function without line number info. Just keep
6524 going, which will single-step back to the caller. */
6525 if (ecs->stop_func_start != stop_pc)
6527 /* Set a breakpoint at callee's start address.
6528 From there we can step once and be back in the caller. */
6529 struct symtab_and_line sr_sal;
6532 sr_sal.pc = ecs->stop_func_start;
6533 sr_sal.pspace = get_frame_program_space (frame);
6534 insert_step_resume_breakpoint_at_sal (gdbarch,
6535 sr_sal, null_frame_id);
6539 /* Set a breakpoint at callee's return address (the address
6540 at which the caller will resume). */
6541 insert_step_resume_breakpoint_at_caller (frame);
6547 /* Reverse stepping through solib trampolines. */
6549 if (execution_direction == EXEC_REVERSE
6550 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
6552 if (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
6553 || (ecs->stop_func_start == 0
6554 && in_solib_dynsym_resolve_code (stop_pc)))
6556 /* Any solib trampoline code can be handled in reverse
6557 by simply continuing to single-step. We have already
6558 executed the solib function (backwards), and a few
6559 steps will take us back through the trampoline to the
6564 else if (in_solib_dynsym_resolve_code (stop_pc))
6566 /* Stepped backward into the solib dynsym resolver.
6567 Set a breakpoint at its start and continue, then
6568 one more step will take us out. */
6569 struct symtab_and_line sr_sal;
6572 sr_sal.pc = ecs->stop_func_start;
6573 sr_sal.pspace = get_frame_program_space (frame);
6574 insert_step_resume_breakpoint_at_sal (gdbarch,
6575 sr_sal, null_frame_id);
6581 stop_pc_sal = find_pc_line (stop_pc, 0);
6583 /* NOTE: tausq/2004-05-24: This if block used to be done before all
6584 the trampoline processing logic, however, there are some trampolines
6585 that have no names, so we should do trampoline handling first. */
6586 if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
6587 && ecs->stop_func_name == NULL
6588 && stop_pc_sal.line == 0)
6591 fprintf_unfiltered (gdb_stdlog,
6592 "infrun: stepped into undebuggable function\n");
6594 /* The inferior just stepped into, or returned to, an
6595 undebuggable function (where there is no debugging information
6596 and no line number corresponding to the address where the
6597 inferior stopped). Since we want to skip this kind of code,
6598 we keep going until the inferior returns from this
6599 function - unless the user has asked us not to (via
6600 set step-mode) or we no longer know how to get back
6601 to the call site. */
6602 if (step_stop_if_no_debug
6603 || !frame_id_p (frame_unwind_caller_id (frame)))
6605 /* If we have no line number and the step-stop-if-no-debug
6606 is set, we stop the step so that the user has a chance to
6607 switch in assembly mode. */
6608 end_stepping_range (ecs);
6613 /* Set a breakpoint at callee's return address (the address
6614 at which the caller will resume). */
6615 insert_step_resume_breakpoint_at_caller (frame);
6621 if (ecs->event_thread->control.step_range_end == 1)
6623 /* It is stepi or nexti. We always want to stop stepping after
6626 fprintf_unfiltered (gdb_stdlog, "infrun: stepi/nexti\n");
6627 end_stepping_range (ecs);
6631 if (stop_pc_sal.line == 0)
6633 /* We have no line number information. That means to stop
6634 stepping (does this always happen right after one instruction,
6635 when we do "s" in a function with no line numbers,
6636 or can this happen as a result of a return or longjmp?). */
6638 fprintf_unfiltered (gdb_stdlog, "infrun: no line number info\n");
6639 end_stepping_range (ecs);
6643 /* Look for "calls" to inlined functions, part one. If the inline
6644 frame machinery detected some skipped call sites, we have entered
6645 a new inline function. */
6647 if (frame_id_eq (get_frame_id (get_current_frame ()),
6648 ecs->event_thread->control.step_frame_id)
6649 && inline_skipped_frames (ecs->ptid))
6651 struct symtab_and_line call_sal;
6654 fprintf_unfiltered (gdb_stdlog,
6655 "infrun: stepped into inlined function\n");
6657 find_frame_sal (get_current_frame (), &call_sal);
6659 if (ecs->event_thread->control.step_over_calls != STEP_OVER_ALL)
6661 /* For "step", we're going to stop. But if the call site
6662 for this inlined function is on the same source line as
6663 we were previously stepping, go down into the function
6664 first. Otherwise stop at the call site. */
6666 if (call_sal.line == ecs->event_thread->current_line
6667 && call_sal.symtab == ecs->event_thread->current_symtab)
6668 step_into_inline_frame (ecs->ptid);
6670 end_stepping_range (ecs);
6675 /* For "next", we should stop at the call site if it is on a
6676 different source line. Otherwise continue through the
6677 inlined function. */
6678 if (call_sal.line == ecs->event_thread->current_line
6679 && call_sal.symtab == ecs->event_thread->current_symtab)
6682 end_stepping_range (ecs);
6687 /* Look for "calls" to inlined functions, part two. If we are still
6688 in the same real function we were stepping through, but we have
6689 to go further up to find the exact frame ID, we are stepping
6690 through a more inlined call beyond its call site. */
6692 if (get_frame_type (get_current_frame ()) == INLINE_FRAME
6693 && !frame_id_eq (get_frame_id (get_current_frame ()),
6694 ecs->event_thread->control.step_frame_id)
6695 && stepped_in_from (get_current_frame (),
6696 ecs->event_thread->control.step_frame_id))
6699 fprintf_unfiltered (gdb_stdlog,
6700 "infrun: stepping through inlined function\n");
6702 if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
6705 end_stepping_range (ecs);
6709 if ((stop_pc == stop_pc_sal.pc)
6710 && (ecs->event_thread->current_line != stop_pc_sal.line
6711 || ecs->event_thread->current_symtab != stop_pc_sal.symtab))
6713 /* We are at the start of a different line. So stop. Note that
6714 we don't stop if we step into the middle of a different line.
6715 That is said to make things like for (;;) statements work
6718 fprintf_unfiltered (gdb_stdlog,
6719 "infrun: stepped to a different line\n");
6720 end_stepping_range (ecs);
6724 /* We aren't done stepping.
6726 Optimize by setting the stepping range to the line.
6727 (We might not be in the original line, but if we entered a
6728 new line in mid-statement, we continue stepping. This makes
6729 things like for(;;) statements work better.) */
6731 ecs->event_thread->control.step_range_start = stop_pc_sal.pc;
6732 ecs->event_thread->control.step_range_end = stop_pc_sal.end;
6733 ecs->event_thread->control.may_range_step = 1;
6734 set_step_info (frame, stop_pc_sal);
6737 fprintf_unfiltered (gdb_stdlog, "infrun: keep going\n");
6741 /* In all-stop mode, if we're currently stepping but have stopped in
6742 some other thread, we may need to switch back to the stepped
6743 thread. Returns true we set the inferior running, false if we left
6744 it stopped (and the event needs further processing). */
6747 switch_back_to_stepped_thread (struct execution_control_state *ecs)
6749 if (!target_is_non_stop_p ())
6751 struct thread_info *tp;
6752 struct thread_info *stepping_thread;
6754 /* If any thread is blocked on some internal breakpoint, and we
6755 simply need to step over that breakpoint to get it going
6756 again, do that first. */
6758 /* However, if we see an event for the stepping thread, then we
6759 know all other threads have been moved past their breakpoints
6760 already. Let the caller check whether the step is finished,
6761 etc., before deciding to move it past a breakpoint. */
6762 if (ecs->event_thread->control.step_range_end != 0)
6765 /* Check if the current thread is blocked on an incomplete
6766 step-over, interrupted by a random signal. */
6767 if (ecs->event_thread->control.trap_expected
6768 && ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_TRAP)
6772 fprintf_unfiltered (gdb_stdlog,
6773 "infrun: need to finish step-over of [%s]\n",
6774 target_pid_to_str (ecs->event_thread->ptid));
6780 /* Check if the current thread is blocked by a single-step
6781 breakpoint of another thread. */
6782 if (ecs->hit_singlestep_breakpoint)
6786 fprintf_unfiltered (gdb_stdlog,
6787 "infrun: need to step [%s] over single-step "
6789 target_pid_to_str (ecs->ptid));
6795 /* If this thread needs yet another step-over (e.g., stepping
6796 through a delay slot), do it first before moving on to
6798 if (thread_still_needs_step_over (ecs->event_thread))
6802 fprintf_unfiltered (gdb_stdlog,
6803 "infrun: thread [%s] still needs step-over\n",
6804 target_pid_to_str (ecs->event_thread->ptid));
6810 /* If scheduler locking applies even if not stepping, there's no
6811 need to walk over threads. Above we've checked whether the
6812 current thread is stepping. If some other thread not the
6813 event thread is stepping, then it must be that scheduler
6814 locking is not in effect. */
6815 if (schedlock_applies (ecs->event_thread))
6818 /* Otherwise, we no longer expect a trap in the current thread.
6819 Clear the trap_expected flag before switching back -- this is
6820 what keep_going does as well, if we call it. */
6821 ecs->event_thread->control.trap_expected = 0;
6823 /* Likewise, clear the signal if it should not be passed. */
6824 if (!signal_program[ecs->event_thread->suspend.stop_signal])
6825 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
6827 /* Do all pending step-overs before actually proceeding with
6829 if (start_step_over ())
6831 prepare_to_wait (ecs);
6835 /* Look for the stepping/nexting thread. */
6836 stepping_thread = NULL;
6838 ALL_NON_EXITED_THREADS (tp)
6840 /* Ignore threads of processes the caller is not
6843 && ptid_get_pid (tp->ptid) != ptid_get_pid (ecs->ptid))
6846 /* When stepping over a breakpoint, we lock all threads
6847 except the one that needs to move past the breakpoint.
6848 If a non-event thread has this set, the "incomplete
6849 step-over" check above should have caught it earlier. */
6850 if (tp->control.trap_expected)
6852 internal_error (__FILE__, __LINE__,
6853 "[%s] has inconsistent state: "
6854 "trap_expected=%d\n",
6855 target_pid_to_str (tp->ptid),
6856 tp->control.trap_expected);
6859 /* Did we find the stepping thread? */
6860 if (tp->control.step_range_end)
6862 /* Yep. There should only one though. */
6863 gdb_assert (stepping_thread == NULL);
6865 /* The event thread is handled at the top, before we
6867 gdb_assert (tp != ecs->event_thread);
6869 /* If some thread other than the event thread is
6870 stepping, then scheduler locking can't be in effect,
6871 otherwise we wouldn't have resumed the current event
6872 thread in the first place. */
6873 gdb_assert (!schedlock_applies (tp));
6875 stepping_thread = tp;
6879 if (stepping_thread != NULL)
6882 fprintf_unfiltered (gdb_stdlog,
6883 "infrun: switching back to stepped thread\n");
6885 if (keep_going_stepped_thread (stepping_thread))
6887 prepare_to_wait (ecs);
6896 /* Set a previously stepped thread back to stepping. Returns true on
6897 success, false if the resume is not possible (e.g., the thread
6901 keep_going_stepped_thread (struct thread_info *tp)
6903 struct frame_info *frame;
6904 struct gdbarch *gdbarch;
6905 struct execution_control_state ecss;
6906 struct execution_control_state *ecs = &ecss;
6908 /* If the stepping thread exited, then don't try to switch back and
6909 resume it, which could fail in several different ways depending
6910 on the target. Instead, just keep going.
6912 We can find a stepping dead thread in the thread list in two
6915 - The target supports thread exit events, and when the target
6916 tries to delete the thread from the thread list, inferior_ptid
6917 pointed at the exiting thread. In such case, calling
6918 delete_thread does not really remove the thread from the list;
6919 instead, the thread is left listed, with 'exited' state.
6921 - The target's debug interface does not support thread exit
6922 events, and so we have no idea whatsoever if the previously
6923 stepping thread is still alive. For that reason, we need to
6924 synchronously query the target now. */
6926 if (is_exited (tp->ptid)
6927 || !target_thread_alive (tp->ptid))
6930 fprintf_unfiltered (gdb_stdlog,
6931 "infrun: not resuming previously "
6932 "stepped thread, it has vanished\n");
6934 delete_thread (tp->ptid);
6939 fprintf_unfiltered (gdb_stdlog,
6940 "infrun: resuming previously stepped thread\n");
6942 reset_ecs (ecs, tp);
6943 switch_to_thread (tp->ptid);
6945 stop_pc = regcache_read_pc (get_thread_regcache (tp->ptid));
6946 frame = get_current_frame ();
6947 gdbarch = get_frame_arch (frame);
6949 /* If the PC of the thread we were trying to single-step has
6950 changed, then that thread has trapped or been signaled, but the
6951 event has not been reported to GDB yet. Re-poll the target
6952 looking for this particular thread's event (i.e. temporarily
6953 enable schedlock) by:
6955 - setting a break at the current PC
6956 - resuming that particular thread, only (by setting trap
6959 This prevents us continuously moving the single-step breakpoint
6960 forward, one instruction at a time, overstepping. */
6962 if (stop_pc != tp->prev_pc)
6967 fprintf_unfiltered (gdb_stdlog,
6968 "infrun: expected thread advanced also (%s -> %s)\n",
6969 paddress (target_gdbarch (), tp->prev_pc),
6970 paddress (target_gdbarch (), stop_pc));
6972 /* Clear the info of the previous step-over, as it's no longer
6973 valid (if the thread was trying to step over a breakpoint, it
6974 has already succeeded). It's what keep_going would do too,
6975 if we called it. Do this before trying to insert the sss
6976 breakpoint, otherwise if we were previously trying to step
6977 over this exact address in another thread, the breakpoint is
6979 clear_step_over_info ();
6980 tp->control.trap_expected = 0;
6982 insert_single_step_breakpoint (get_frame_arch (frame),
6983 get_frame_address_space (frame),
6987 resume_ptid = internal_resume_ptid (tp->control.stepping_command);
6988 do_target_resume (resume_ptid, 0, GDB_SIGNAL_0);
6993 fprintf_unfiltered (gdb_stdlog,
6994 "infrun: expected thread still hasn't advanced\n");
6996 keep_going_pass_signal (ecs);
7001 /* Is thread TP in the middle of (software or hardware)
7002 single-stepping? (Note the result of this function must never be
7003 passed directly as target_resume's STEP parameter.) */
7006 currently_stepping (struct thread_info *tp)
7008 return ((tp->control.step_range_end
7009 && tp->control.step_resume_breakpoint == NULL)
7010 || tp->control.trap_expected
7011 || tp->stepped_breakpoint
7012 || bpstat_should_step ());
7015 /* Inferior has stepped into a subroutine call with source code that
7016 we should not step over. Do step to the first line of code in
7020 handle_step_into_function (struct gdbarch *gdbarch,
7021 struct execution_control_state *ecs)
7023 struct compunit_symtab *cust;
7024 struct symtab_and_line stop_func_sal, sr_sal;
7026 fill_in_stop_func (gdbarch, ecs);
7028 cust = find_pc_compunit_symtab (stop_pc);
7029 if (cust != NULL && compunit_language (cust) != language_asm)
7030 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
7031 ecs->stop_func_start);
7033 stop_func_sal = find_pc_line (ecs->stop_func_start, 0);
7034 /* Use the step_resume_break to step until the end of the prologue,
7035 even if that involves jumps (as it seems to on the vax under
7037 /* If the prologue ends in the middle of a source line, continue to
7038 the end of that source line (if it is still within the function).
7039 Otherwise, just go to end of prologue. */
7040 if (stop_func_sal.end
7041 && stop_func_sal.pc != ecs->stop_func_start
7042 && stop_func_sal.end < ecs->stop_func_end)
7043 ecs->stop_func_start = stop_func_sal.end;
7045 /* Architectures which require breakpoint adjustment might not be able
7046 to place a breakpoint at the computed address. If so, the test
7047 ``ecs->stop_func_start == stop_pc'' will never succeed. Adjust
7048 ecs->stop_func_start to an address at which a breakpoint may be
7049 legitimately placed.
7051 Note: kevinb/2004-01-19: On FR-V, if this adjustment is not
7052 made, GDB will enter an infinite loop when stepping through
7053 optimized code consisting of VLIW instructions which contain
7054 subinstructions corresponding to different source lines. On
7055 FR-V, it's not permitted to place a breakpoint on any but the
7056 first subinstruction of a VLIW instruction. When a breakpoint is
7057 set, GDB will adjust the breakpoint address to the beginning of
7058 the VLIW instruction. Thus, we need to make the corresponding
7059 adjustment here when computing the stop address. */
7061 if (gdbarch_adjust_breakpoint_address_p (gdbarch))
7063 ecs->stop_func_start
7064 = gdbarch_adjust_breakpoint_address (gdbarch,
7065 ecs->stop_func_start);
7068 if (ecs->stop_func_start == stop_pc)
7070 /* We are already there: stop now. */
7071 end_stepping_range (ecs);
7076 /* Put the step-breakpoint there and go until there. */
7077 init_sal (&sr_sal); /* initialize to zeroes */
7078 sr_sal.pc = ecs->stop_func_start;
7079 sr_sal.section = find_pc_overlay (ecs->stop_func_start);
7080 sr_sal.pspace = get_frame_program_space (get_current_frame ());
7082 /* Do not specify what the fp should be when we stop since on
7083 some machines the prologue is where the new fp value is
7085 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal, null_frame_id);
7087 /* And make sure stepping stops right away then. */
7088 ecs->event_thread->control.step_range_end
7089 = ecs->event_thread->control.step_range_start;
7094 /* Inferior has stepped backward into a subroutine call with source
7095 code that we should not step over. Do step to the beginning of the
7096 last line of code in it. */
7099 handle_step_into_function_backward (struct gdbarch *gdbarch,
7100 struct execution_control_state *ecs)
7102 struct compunit_symtab *cust;
7103 struct symtab_and_line stop_func_sal;
7105 fill_in_stop_func (gdbarch, ecs);
7107 cust = find_pc_compunit_symtab (stop_pc);
7108 if (cust != NULL && compunit_language (cust) != language_asm)
7109 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
7110 ecs->stop_func_start);
7112 stop_func_sal = find_pc_line (stop_pc, 0);
7114 /* OK, we're just going to keep stepping here. */
7115 if (stop_func_sal.pc == stop_pc)
7117 /* We're there already. Just stop stepping now. */
7118 end_stepping_range (ecs);
7122 /* Else just reset the step range and keep going.
7123 No step-resume breakpoint, they don't work for
7124 epilogues, which can have multiple entry paths. */
7125 ecs->event_thread->control.step_range_start = stop_func_sal.pc;
7126 ecs->event_thread->control.step_range_end = stop_func_sal.end;
7132 /* Insert a "step-resume breakpoint" at SR_SAL with frame ID SR_ID.
7133 This is used to both functions and to skip over code. */
7136 insert_step_resume_breakpoint_at_sal_1 (struct gdbarch *gdbarch,
7137 struct symtab_and_line sr_sal,
7138 struct frame_id sr_id,
7139 enum bptype sr_type)
7141 /* There should never be more than one step-resume or longjmp-resume
7142 breakpoint per thread, so we should never be setting a new
7143 step_resume_breakpoint when one is already active. */
7144 gdb_assert (inferior_thread ()->control.step_resume_breakpoint == NULL);
7145 gdb_assert (sr_type == bp_step_resume || sr_type == bp_hp_step_resume);
7148 fprintf_unfiltered (gdb_stdlog,
7149 "infrun: inserting step-resume breakpoint at %s\n",
7150 paddress (gdbarch, sr_sal.pc));
7152 inferior_thread ()->control.step_resume_breakpoint
7153 = set_momentary_breakpoint (gdbarch, sr_sal, sr_id, sr_type);
7157 insert_step_resume_breakpoint_at_sal (struct gdbarch *gdbarch,
7158 struct symtab_and_line sr_sal,
7159 struct frame_id sr_id)
7161 insert_step_resume_breakpoint_at_sal_1 (gdbarch,
7166 /* Insert a "high-priority step-resume breakpoint" at RETURN_FRAME.pc.
7167 This is used to skip a potential signal handler.
7169 This is called with the interrupted function's frame. The signal
7170 handler, when it returns, will resume the interrupted function at
7174 insert_hp_step_resume_breakpoint_at_frame (struct frame_info *return_frame)
7176 struct symtab_and_line sr_sal;
7177 struct gdbarch *gdbarch;
7179 gdb_assert (return_frame != NULL);
7180 init_sal (&sr_sal); /* initialize to zeros */
7182 gdbarch = get_frame_arch (return_frame);
7183 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch, get_frame_pc (return_frame));
7184 sr_sal.section = find_pc_overlay (sr_sal.pc);
7185 sr_sal.pspace = get_frame_program_space (return_frame);
7187 insert_step_resume_breakpoint_at_sal_1 (gdbarch, sr_sal,
7188 get_stack_frame_id (return_frame),
7192 /* Insert a "step-resume breakpoint" at the previous frame's PC. This
7193 is used to skip a function after stepping into it (for "next" or if
7194 the called function has no debugging information).
7196 The current function has almost always been reached by single
7197 stepping a call or return instruction. NEXT_FRAME belongs to the
7198 current function, and the breakpoint will be set at the caller's
7201 This is a separate function rather than reusing
7202 insert_hp_step_resume_breakpoint_at_frame in order to avoid
7203 get_prev_frame, which may stop prematurely (see the implementation
7204 of frame_unwind_caller_id for an example). */
7207 insert_step_resume_breakpoint_at_caller (struct frame_info *next_frame)
7209 struct symtab_and_line sr_sal;
7210 struct gdbarch *gdbarch;
7212 /* We shouldn't have gotten here if we don't know where the call site
7214 gdb_assert (frame_id_p (frame_unwind_caller_id (next_frame)));
7216 init_sal (&sr_sal); /* initialize to zeros */
7218 gdbarch = frame_unwind_caller_arch (next_frame);
7219 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch,
7220 frame_unwind_caller_pc (next_frame));
7221 sr_sal.section = find_pc_overlay (sr_sal.pc);
7222 sr_sal.pspace = frame_unwind_program_space (next_frame);
7224 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal,
7225 frame_unwind_caller_id (next_frame));
7228 /* Insert a "longjmp-resume" breakpoint at PC. This is used to set a
7229 new breakpoint at the target of a jmp_buf. The handling of
7230 longjmp-resume uses the same mechanisms used for handling
7231 "step-resume" breakpoints. */
7234 insert_longjmp_resume_breakpoint (struct gdbarch *gdbarch, CORE_ADDR pc)
7236 /* There should never be more than one longjmp-resume breakpoint per
7237 thread, so we should never be setting a new
7238 longjmp_resume_breakpoint when one is already active. */
7239 gdb_assert (inferior_thread ()->control.exception_resume_breakpoint == NULL);
7242 fprintf_unfiltered (gdb_stdlog,
7243 "infrun: inserting longjmp-resume breakpoint at %s\n",
7244 paddress (gdbarch, pc));
7246 inferior_thread ()->control.exception_resume_breakpoint =
7247 set_momentary_breakpoint_at_pc (gdbarch, pc, bp_longjmp_resume);
7250 /* Insert an exception resume breakpoint. TP is the thread throwing
7251 the exception. The block B is the block of the unwinder debug hook
7252 function. FRAME is the frame corresponding to the call to this
7253 function. SYM is the symbol of the function argument holding the
7254 target PC of the exception. */
7257 insert_exception_resume_breakpoint (struct thread_info *tp,
7258 const struct block *b,
7259 struct frame_info *frame,
7264 struct block_symbol vsym;
7265 struct value *value;
7267 struct breakpoint *bp;
7269 vsym = lookup_symbol (SYMBOL_LINKAGE_NAME (sym), b, VAR_DOMAIN, NULL);
7270 value = read_var_value (vsym.symbol, vsym.block, frame);
7271 /* If the value was optimized out, revert to the old behavior. */
7272 if (! value_optimized_out (value))
7274 handler = value_as_address (value);
7277 fprintf_unfiltered (gdb_stdlog,
7278 "infrun: exception resume at %lx\n",
7279 (unsigned long) handler);
7281 bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
7282 handler, bp_exception_resume);
7284 /* set_momentary_breakpoint_at_pc invalidates FRAME. */
7287 bp->thread = tp->num;
7288 inferior_thread ()->control.exception_resume_breakpoint = bp;
7291 CATCH (e, RETURN_MASK_ERROR)
7293 /* We want to ignore errors here. */
7298 /* A helper for check_exception_resume that sets an
7299 exception-breakpoint based on a SystemTap probe. */
7302 insert_exception_resume_from_probe (struct thread_info *tp,
7303 const struct bound_probe *probe,
7304 struct frame_info *frame)
7306 struct value *arg_value;
7308 struct breakpoint *bp;
7310 arg_value = probe_safe_evaluate_at_pc (frame, 1);
7314 handler = value_as_address (arg_value);
7317 fprintf_unfiltered (gdb_stdlog,
7318 "infrun: exception resume at %s\n",
7319 paddress (get_objfile_arch (probe->objfile),
7322 bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
7323 handler, bp_exception_resume);
7324 bp->thread = tp->num;
7325 inferior_thread ()->control.exception_resume_breakpoint = bp;
7328 /* This is called when an exception has been intercepted. Check to
7329 see whether the exception's destination is of interest, and if so,
7330 set an exception resume breakpoint there. */
7333 check_exception_resume (struct execution_control_state *ecs,
7334 struct frame_info *frame)
7336 struct bound_probe probe;
7337 struct symbol *func;
7339 /* First see if this exception unwinding breakpoint was set via a
7340 SystemTap probe point. If so, the probe has two arguments: the
7341 CFA and the HANDLER. We ignore the CFA, extract the handler, and
7342 set a breakpoint there. */
7343 probe = find_probe_by_pc (get_frame_pc (frame));
7346 insert_exception_resume_from_probe (ecs->event_thread, &probe, frame);
7350 func = get_frame_function (frame);
7356 const struct block *b;
7357 struct block_iterator iter;
7361 /* The exception breakpoint is a thread-specific breakpoint on
7362 the unwinder's debug hook, declared as:
7364 void _Unwind_DebugHook (void *cfa, void *handler);
7366 The CFA argument indicates the frame to which control is
7367 about to be transferred. HANDLER is the destination PC.
7369 We ignore the CFA and set a temporary breakpoint at HANDLER.
7370 This is not extremely efficient but it avoids issues in gdb
7371 with computing the DWARF CFA, and it also works even in weird
7372 cases such as throwing an exception from inside a signal
7375 b = SYMBOL_BLOCK_VALUE (func);
7376 ALL_BLOCK_SYMBOLS (b, iter, sym)
7378 if (!SYMBOL_IS_ARGUMENT (sym))
7385 insert_exception_resume_breakpoint (ecs->event_thread,
7391 CATCH (e, RETURN_MASK_ERROR)
7398 stop_waiting (struct execution_control_state *ecs)
7401 fprintf_unfiltered (gdb_stdlog, "infrun: stop_waiting\n");
7403 clear_step_over_info ();
7405 /* Let callers know we don't want to wait for the inferior anymore. */
7406 ecs->wait_some_more = 0;
7408 /* If all-stop, but the target is always in non-stop mode, stop all
7409 threads now that we're presenting the stop to the user. */
7410 if (!non_stop && target_is_non_stop_p ())
7411 stop_all_threads ();
7414 /* Like keep_going, but passes the signal to the inferior, even if the
7415 signal is set to nopass. */
7418 keep_going_pass_signal (struct execution_control_state *ecs)
7420 /* Make sure normal_stop is called if we get a QUIT handled before
7422 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
7424 gdb_assert (ptid_equal (ecs->event_thread->ptid, inferior_ptid));
7425 gdb_assert (!ecs->event_thread->resumed);
7427 /* Save the pc before execution, to compare with pc after stop. */
7428 ecs->event_thread->prev_pc
7429 = regcache_read_pc (get_thread_regcache (ecs->ptid));
7431 if (ecs->event_thread->control.trap_expected)
7433 struct thread_info *tp = ecs->event_thread;
7436 fprintf_unfiltered (gdb_stdlog,
7437 "infrun: %s has trap_expected set, "
7438 "resuming to collect trap\n",
7439 target_pid_to_str (tp->ptid));
7441 /* We haven't yet gotten our trap, and either: intercepted a
7442 non-signal event (e.g., a fork); or took a signal which we
7443 are supposed to pass through to the inferior. Simply
7445 discard_cleanups (old_cleanups);
7446 resume (ecs->event_thread->suspend.stop_signal);
7448 else if (step_over_info_valid_p ())
7450 /* Another thread is stepping over a breakpoint in-line. If
7451 this thread needs a step-over too, queue the request. In
7452 either case, this resume must be deferred for later. */
7453 struct thread_info *tp = ecs->event_thread;
7455 if (ecs->hit_singlestep_breakpoint
7456 || thread_still_needs_step_over (tp))
7459 fprintf_unfiltered (gdb_stdlog,
7460 "infrun: step-over already in progress: "
7461 "step-over for %s deferred\n",
7462 target_pid_to_str (tp->ptid));
7463 thread_step_over_chain_enqueue (tp);
7468 fprintf_unfiltered (gdb_stdlog,
7469 "infrun: step-over in progress: "
7470 "resume of %s deferred\n",
7471 target_pid_to_str (tp->ptid));
7474 discard_cleanups (old_cleanups);
7478 struct regcache *regcache = get_current_regcache ();
7481 enum step_over_what step_what;
7483 /* Either the trap was not expected, but we are continuing
7484 anyway (if we got a signal, the user asked it be passed to
7487 We got our expected trap, but decided we should resume from
7490 We're going to run this baby now!
7492 Note that insert_breakpoints won't try to re-insert
7493 already inserted breakpoints. Therefore, we don't
7494 care if breakpoints were already inserted, or not. */
7496 /* If we need to step over a breakpoint, and we're not using
7497 displaced stepping to do so, insert all breakpoints
7498 (watchpoints, etc.) but the one we're stepping over, step one
7499 instruction, and then re-insert the breakpoint when that step
7502 step_what = thread_still_needs_step_over (ecs->event_thread);
7504 remove_bp = (ecs->hit_singlestep_breakpoint
7505 || (step_what & STEP_OVER_BREAKPOINT));
7506 remove_wps = (step_what & STEP_OVER_WATCHPOINT);
7508 /* We can't use displaced stepping if we need to step past a
7509 watchpoint. The instruction copied to the scratch pad would
7510 still trigger the watchpoint. */
7512 && (remove_wps || !use_displaced_stepping (ecs->event_thread)))
7514 set_step_over_info (get_regcache_aspace (regcache),
7515 regcache_read_pc (regcache), remove_wps);
7517 else if (remove_wps)
7518 set_step_over_info (NULL, 0, remove_wps);
7520 /* If we now need to do an in-line step-over, we need to stop
7521 all other threads. Note this must be done before
7522 insert_breakpoints below, because that removes the breakpoint
7523 we're about to step over, otherwise other threads could miss
7525 if (step_over_info_valid_p () && target_is_non_stop_p ())
7526 stop_all_threads ();
7528 /* Stop stepping if inserting breakpoints fails. */
7531 insert_breakpoints ();
7533 CATCH (e, RETURN_MASK_ERROR)
7535 exception_print (gdb_stderr, e);
7537 discard_cleanups (old_cleanups);
7542 ecs->event_thread->control.trap_expected = (remove_bp || remove_wps);
7544 discard_cleanups (old_cleanups);
7545 resume (ecs->event_thread->suspend.stop_signal);
7548 prepare_to_wait (ecs);
7551 /* Called when we should continue running the inferior, because the
7552 current event doesn't cause a user visible stop. This does the
7553 resuming part; waiting for the next event is done elsewhere. */
7556 keep_going (struct execution_control_state *ecs)
7558 if (ecs->event_thread->control.trap_expected
7559 && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
7560 ecs->event_thread->control.trap_expected = 0;
7562 if (!signal_program[ecs->event_thread->suspend.stop_signal])
7563 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
7564 keep_going_pass_signal (ecs);
7567 /* This function normally comes after a resume, before
7568 handle_inferior_event exits. It takes care of any last bits of
7569 housekeeping, and sets the all-important wait_some_more flag. */
7572 prepare_to_wait (struct execution_control_state *ecs)
7575 fprintf_unfiltered (gdb_stdlog, "infrun: prepare_to_wait\n");
7577 ecs->wait_some_more = 1;
7579 if (!target_is_async_p ())
7580 mark_infrun_async_event_handler ();
7583 /* We are done with the step range of a step/next/si/ni command.
7584 Called once for each n of a "step n" operation. */
7587 end_stepping_range (struct execution_control_state *ecs)
7589 ecs->event_thread->control.stop_step = 1;
7593 /* Several print_*_reason functions to print why the inferior has stopped.
7594 We always print something when the inferior exits, or receives a signal.
7595 The rest of the cases are dealt with later on in normal_stop and
7596 print_it_typical. Ideally there should be a call to one of these
7597 print_*_reason functions functions from handle_inferior_event each time
7598 stop_waiting is called.
7600 Note that we don't call these directly, instead we delegate that to
7601 the interpreters, through observers. Interpreters then call these
7602 with whatever uiout is right. */
7605 print_end_stepping_range_reason (struct ui_out *uiout)
7607 /* For CLI-like interpreters, print nothing. */
7609 if (ui_out_is_mi_like_p (uiout))
7611 ui_out_field_string (uiout, "reason",
7612 async_reason_lookup (EXEC_ASYNC_END_STEPPING_RANGE));
7617 print_signal_exited_reason (struct ui_out *uiout, enum gdb_signal siggnal)
7619 annotate_signalled ();
7620 if (ui_out_is_mi_like_p (uiout))
7622 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_EXITED_SIGNALLED));
7623 ui_out_text (uiout, "\nProgram terminated with signal ");
7624 annotate_signal_name ();
7625 ui_out_field_string (uiout, "signal-name",
7626 gdb_signal_to_name (siggnal));
7627 annotate_signal_name_end ();
7628 ui_out_text (uiout, ", ");
7629 annotate_signal_string ();
7630 ui_out_field_string (uiout, "signal-meaning",
7631 gdb_signal_to_string (siggnal));
7632 annotate_signal_string_end ();
7633 ui_out_text (uiout, ".\n");
7634 ui_out_text (uiout, "The program no longer exists.\n");
7638 print_exited_reason (struct ui_out *uiout, int exitstatus)
7640 struct inferior *inf = current_inferior ();
7641 const char *pidstr = target_pid_to_str (pid_to_ptid (inf->pid));
7643 annotate_exited (exitstatus);
7646 if (ui_out_is_mi_like_p (uiout))
7647 ui_out_field_string (uiout, "reason",
7648 async_reason_lookup (EXEC_ASYNC_EXITED));
7649 ui_out_text (uiout, "[Inferior ");
7650 ui_out_text (uiout, plongest (inf->num));
7651 ui_out_text (uiout, " (");
7652 ui_out_text (uiout, pidstr);
7653 ui_out_text (uiout, ") exited with code ");
7654 ui_out_field_fmt (uiout, "exit-code", "0%o", (unsigned int) exitstatus);
7655 ui_out_text (uiout, "]\n");
7659 if (ui_out_is_mi_like_p (uiout))
7661 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_EXITED_NORMALLY));
7662 ui_out_text (uiout, "[Inferior ");
7663 ui_out_text (uiout, plongest (inf->num));
7664 ui_out_text (uiout, " (");
7665 ui_out_text (uiout, pidstr);
7666 ui_out_text (uiout, ") exited normally]\n");
7671 print_signal_received_reason (struct ui_out *uiout, enum gdb_signal siggnal)
7675 if (siggnal == GDB_SIGNAL_0 && !ui_out_is_mi_like_p (uiout))
7677 struct thread_info *t = inferior_thread ();
7679 ui_out_text (uiout, "\n[");
7680 ui_out_field_string (uiout, "thread-name",
7681 target_pid_to_str (t->ptid));
7682 ui_out_field_fmt (uiout, "thread-id", "] #%d", t->num);
7683 ui_out_text (uiout, " stopped");
7687 ui_out_text (uiout, "\nProgram received signal ");
7688 annotate_signal_name ();
7689 if (ui_out_is_mi_like_p (uiout))
7691 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_SIGNAL_RECEIVED));
7692 ui_out_field_string (uiout, "signal-name",
7693 gdb_signal_to_name (siggnal));
7694 annotate_signal_name_end ();
7695 ui_out_text (uiout, ", ");
7696 annotate_signal_string ();
7697 ui_out_field_string (uiout, "signal-meaning",
7698 gdb_signal_to_string (siggnal));
7699 annotate_signal_string_end ();
7701 ui_out_text (uiout, ".\n");
7705 print_no_history_reason (struct ui_out *uiout)
7707 ui_out_text (uiout, "\nNo more reverse-execution history.\n");
7710 /* Print current location without a level number, if we have changed
7711 functions or hit a breakpoint. Print source line if we have one.
7712 bpstat_print contains the logic deciding in detail what to print,
7713 based on the event(s) that just occurred. */
7716 print_stop_location (struct target_waitstatus *ws)
7719 enum print_what source_flag;
7720 int do_frame_printing = 1;
7721 struct thread_info *tp = inferior_thread ();
7723 bpstat_ret = bpstat_print (tp->control.stop_bpstat, ws->kind);
7727 /* FIXME: cagney/2002-12-01: Given that a frame ID does (or
7728 should) carry around the function and does (or should) use
7729 that when doing a frame comparison. */
7730 if (tp->control.stop_step
7731 && frame_id_eq (tp->control.step_frame_id,
7732 get_frame_id (get_current_frame ()))
7733 && tp->control.step_start_function == find_pc_function (stop_pc))
7735 /* Finished step, just print source line. */
7736 source_flag = SRC_LINE;
7740 /* Print location and source line. */
7741 source_flag = SRC_AND_LOC;
7744 case PRINT_SRC_AND_LOC:
7745 /* Print location and source line. */
7746 source_flag = SRC_AND_LOC;
7748 case PRINT_SRC_ONLY:
7749 source_flag = SRC_LINE;
7752 /* Something bogus. */
7753 source_flag = SRC_LINE;
7754 do_frame_printing = 0;
7757 internal_error (__FILE__, __LINE__, _("Unknown value."));
7760 /* The behavior of this routine with respect to the source
7762 SRC_LINE: Print only source line
7763 LOCATION: Print only location
7764 SRC_AND_LOC: Print location and source line. */
7765 if (do_frame_printing)
7766 print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
7769 /* Cleanup that restores a previous current uiout. */
7772 restore_current_uiout_cleanup (void *arg)
7774 struct ui_out *saved_uiout = arg;
7776 current_uiout = saved_uiout;
7782 print_stop_event (struct ui_out *uiout)
7784 struct cleanup *old_chain;
7785 struct target_waitstatus last;
7787 struct thread_info *tp;
7789 get_last_target_status (&last_ptid, &last);
7791 old_chain = make_cleanup (restore_current_uiout_cleanup, current_uiout);
7792 current_uiout = uiout;
7794 print_stop_location (&last);
7796 /* Display the auto-display expressions. */
7799 do_cleanups (old_chain);
7801 tp = inferior_thread ();
7802 if (tp->thread_fsm != NULL
7803 && thread_fsm_finished_p (tp->thread_fsm))
7805 struct return_value_info *rv;
7807 rv = thread_fsm_return_value (tp->thread_fsm);
7809 print_return_value (uiout, rv);
7813 /* Here to return control to GDB when the inferior stops for real.
7814 Print appropriate messages, remove breakpoints, give terminal our modes.
7816 STOP_PRINT_FRAME nonzero means print the executing frame
7817 (pc, function, args, file, line number and line text).
7818 BREAKPOINTS_FAILED nonzero means stop was due to error
7819 attempting to insert breakpoints. */
7824 struct target_waitstatus last;
7826 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
7829 get_last_target_status (&last_ptid, &last);
7831 /* If an exception is thrown from this point on, make sure to
7832 propagate GDB's knowledge of the executing state to the
7833 frontend/user running state. A QUIT is an easy exception to see
7834 here, so do this before any filtered output. */
7836 make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
7837 else if (last.kind == TARGET_WAITKIND_SIGNALLED
7838 || last.kind == TARGET_WAITKIND_EXITED)
7840 /* On some targets, we may still have live threads in the
7841 inferior when we get a process exit event. E.g., for
7842 "checkpoint", when the current checkpoint/fork exits,
7843 linux-fork.c automatically switches to another fork from
7844 within target_mourn_inferior. */
7845 if (!ptid_equal (inferior_ptid, null_ptid))
7847 pid_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
7848 make_cleanup (finish_thread_state_cleanup, &pid_ptid);
7851 else if (last.kind != TARGET_WAITKIND_NO_RESUMED)
7852 make_cleanup (finish_thread_state_cleanup, &inferior_ptid);
7854 /* As we're presenting a stop, and potentially removing breakpoints,
7855 update the thread list so we can tell whether there are threads
7856 running on the target. With target remote, for example, we can
7857 only learn about new threads when we explicitly update the thread
7858 list. Do this before notifying the interpreters about signal
7859 stops, end of stepping ranges, etc., so that the "new thread"
7860 output is emitted before e.g., "Program received signal FOO",
7861 instead of after. */
7862 update_thread_list ();
7864 if (last.kind == TARGET_WAITKIND_STOPPED && stopped_by_random_signal)
7865 observer_notify_signal_received (inferior_thread ()->suspend.stop_signal);
7867 /* As with the notification of thread events, we want to delay
7868 notifying the user that we've switched thread context until
7869 the inferior actually stops.
7871 There's no point in saying anything if the inferior has exited.
7872 Note that SIGNALLED here means "exited with a signal", not
7873 "received a signal".
7875 Also skip saying anything in non-stop mode. In that mode, as we
7876 don't want GDB to switch threads behind the user's back, to avoid
7877 races where the user is typing a command to apply to thread x,
7878 but GDB switches to thread y before the user finishes entering
7879 the command, fetch_inferior_event installs a cleanup to restore
7880 the current thread back to the thread the user had selected right
7881 after this event is handled, so we're not really switching, only
7882 informing of a stop. */
7884 && !ptid_equal (previous_inferior_ptid, inferior_ptid)
7885 && target_has_execution
7886 && last.kind != TARGET_WAITKIND_SIGNALLED
7887 && last.kind != TARGET_WAITKIND_EXITED
7888 && last.kind != TARGET_WAITKIND_NO_RESUMED)
7890 target_terminal_ours_for_output ();
7891 printf_filtered (_("[Switching to %s]\n"),
7892 target_pid_to_str (inferior_ptid));
7893 annotate_thread_changed ();
7894 previous_inferior_ptid = inferior_ptid;
7897 if (last.kind == TARGET_WAITKIND_NO_RESUMED)
7899 gdb_assert (sync_execution || !target_can_async_p ());
7901 target_terminal_ours_for_output ();
7902 printf_filtered (_("No unwaited-for children left.\n"));
7905 /* Note: this depends on the update_thread_list call above. */
7906 if (!breakpoints_should_be_inserted_now () && target_has_execution)
7908 if (remove_breakpoints ())
7910 target_terminal_ours_for_output ();
7911 printf_filtered (_("Cannot remove breakpoints because "
7912 "program is no longer writable.\nFurther "
7913 "execution is probably impossible.\n"));
7917 /* If an auto-display called a function and that got a signal,
7918 delete that auto-display to avoid an infinite recursion. */
7920 if (stopped_by_random_signal)
7921 disable_current_display ();
7923 target_terminal_ours ();
7924 async_enable_stdin ();
7926 /* Set the current source location. This will also happen if we
7927 display the frame below, but the current SAL will be incorrect
7928 during a user hook-stop function. */
7929 if (has_stack_frames () && !stop_stack_dummy)
7930 set_current_sal_from_frame (get_current_frame ());
7932 /* Let the user/frontend see the threads as stopped, but defer to
7933 call_function_by_hand if the thread finished an infcall
7934 successfully. We may be e.g., evaluating a breakpoint condition.
7935 In that case, the thread had state THREAD_RUNNING before the
7936 infcall, and shall remain marked running, all without informing
7937 the user/frontend about state transition changes. */
7938 if (target_has_execution
7939 && inferior_thread ()->control.in_infcall
7940 && stop_stack_dummy == STOP_STACK_DUMMY)
7941 discard_cleanups (old_chain);
7943 do_cleanups (old_chain);
7945 /* Look up the hook_stop and run it (CLI internally handles problem
7946 of stop_command's pre-hook not existing). */
7948 catch_errors (hook_stop_stub, stop_command,
7949 "Error while running hook_stop:\n", RETURN_MASK_ALL);
7951 if (!has_stack_frames ())
7954 if (last.kind == TARGET_WAITKIND_SIGNALLED
7955 || last.kind == TARGET_WAITKIND_EXITED)
7958 /* Select innermost stack frame - i.e., current frame is frame 0,
7959 and current location is based on that.
7960 Don't do this on return from a stack dummy routine,
7961 or if the program has exited. */
7963 if (!stop_stack_dummy)
7964 select_frame (get_current_frame ());
7966 if (stop_stack_dummy == STOP_STACK_DUMMY)
7968 /* Pop the empty frame that contains the stack dummy.
7969 This also restores inferior state prior to the call
7970 (struct infcall_suspend_state). */
7971 struct frame_info *frame = get_current_frame ();
7973 gdb_assert (get_frame_type (frame) == DUMMY_FRAME);
7975 /* frame_pop() calls reinit_frame_cache as the last thing it
7976 does which means there's currently no selected frame. We
7977 don't need to re-establish a selected frame if the dummy call
7978 returns normally, that will be done by
7979 restore_infcall_control_state. However, we do have to handle
7980 the case where the dummy call is returning after being
7981 stopped (e.g. the dummy call previously hit a breakpoint).
7982 We can't know which case we have so just always re-establish
7983 a selected frame here. */
7984 select_frame (get_current_frame ());
7989 /* Suppress the stop observer if we're in the middle of:
7991 - calling an inferior function, as we pretend we inferior didn't
7992 run at all. The return value of the call is handled by the
7993 expression evaluator, through call_function_by_hand. */
7995 if (!target_has_execution
7996 || last.kind == TARGET_WAITKIND_SIGNALLED
7997 || last.kind == TARGET_WAITKIND_EXITED
7998 || last.kind == TARGET_WAITKIND_NO_RESUMED
7999 || !inferior_thread ()->control.in_infcall)
8001 if (!ptid_equal (inferior_ptid, null_ptid))
8002 observer_notify_normal_stop (inferior_thread ()->control.stop_bpstat,
8005 observer_notify_normal_stop (NULL, stop_print_frame);
8008 annotate_stopped ();
8010 if (target_has_execution)
8012 if (last.kind != TARGET_WAITKIND_SIGNALLED
8013 && last.kind != TARGET_WAITKIND_EXITED)
8014 /* Delete the breakpoint we stopped at, if it wants to be deleted.
8015 Delete any breakpoint that is to be deleted at the next stop. */
8016 breakpoint_auto_delete (inferior_thread ()->control.stop_bpstat);
8019 /* Try to get rid of automatically added inferiors that are no
8020 longer needed. Keeping those around slows down things linearly.
8021 Note that this never removes the current inferior. */
8026 hook_stop_stub (void *cmd)
8028 execute_cmd_pre_hook ((struct cmd_list_element *) cmd);
8033 signal_stop_state (int signo)
8035 return signal_stop[signo];
8039 signal_print_state (int signo)
8041 return signal_print[signo];
8045 signal_pass_state (int signo)
8047 return signal_program[signo];
8051 signal_cache_update (int signo)
8055 for (signo = 0; signo < (int) GDB_SIGNAL_LAST; signo++)
8056 signal_cache_update (signo);
8061 signal_pass[signo] = (signal_stop[signo] == 0
8062 && signal_print[signo] == 0
8063 && signal_program[signo] == 1
8064 && signal_catch[signo] == 0);
8068 signal_stop_update (int signo, int state)
8070 int ret = signal_stop[signo];
8072 signal_stop[signo] = state;
8073 signal_cache_update (signo);
8078 signal_print_update (int signo, int state)
8080 int ret = signal_print[signo];
8082 signal_print[signo] = state;
8083 signal_cache_update (signo);
8088 signal_pass_update (int signo, int state)
8090 int ret = signal_program[signo];
8092 signal_program[signo] = state;
8093 signal_cache_update (signo);
8097 /* Update the global 'signal_catch' from INFO and notify the
8101 signal_catch_update (const unsigned int *info)
8105 for (i = 0; i < GDB_SIGNAL_LAST; ++i)
8106 signal_catch[i] = info[i] > 0;
8107 signal_cache_update (-1);
8108 target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
8112 sig_print_header (void)
8114 printf_filtered (_("Signal Stop\tPrint\tPass "
8115 "to program\tDescription\n"));
8119 sig_print_info (enum gdb_signal oursig)
8121 const char *name = gdb_signal_to_name (oursig);
8122 int name_padding = 13 - strlen (name);
8124 if (name_padding <= 0)
8127 printf_filtered ("%s", name);
8128 printf_filtered ("%*.*s ", name_padding, name_padding, " ");
8129 printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
8130 printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
8131 printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
8132 printf_filtered ("%s\n", gdb_signal_to_string (oursig));
8135 /* Specify how various signals in the inferior should be handled. */
8138 handle_command (char *args, int from_tty)
8141 int digits, wordlen;
8142 int sigfirst, signum, siglast;
8143 enum gdb_signal oursig;
8146 unsigned char *sigs;
8147 struct cleanup *old_chain;
8151 error_no_arg (_("signal to handle"));
8154 /* Allocate and zero an array of flags for which signals to handle. */
8156 nsigs = (int) GDB_SIGNAL_LAST;
8157 sigs = (unsigned char *) alloca (nsigs);
8158 memset (sigs, 0, nsigs);
8160 /* Break the command line up into args. */
8162 argv = gdb_buildargv (args);
8163 old_chain = make_cleanup_freeargv (argv);
8165 /* Walk through the args, looking for signal oursigs, signal names, and
8166 actions. Signal numbers and signal names may be interspersed with
8167 actions, with the actions being performed for all signals cumulatively
8168 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
8170 while (*argv != NULL)
8172 wordlen = strlen (*argv);
8173 for (digits = 0; isdigit ((*argv)[digits]); digits++)
8177 sigfirst = siglast = -1;
8179 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
8181 /* Apply action to all signals except those used by the
8182 debugger. Silently skip those. */
8185 siglast = nsigs - 1;
8187 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
8189 SET_SIGS (nsigs, sigs, signal_stop);
8190 SET_SIGS (nsigs, sigs, signal_print);
8192 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
8194 UNSET_SIGS (nsigs, sigs, signal_program);
8196 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
8198 SET_SIGS (nsigs, sigs, signal_print);
8200 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
8202 SET_SIGS (nsigs, sigs, signal_program);
8204 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
8206 UNSET_SIGS (nsigs, sigs, signal_stop);
8208 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
8210 SET_SIGS (nsigs, sigs, signal_program);
8212 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
8214 UNSET_SIGS (nsigs, sigs, signal_print);
8215 UNSET_SIGS (nsigs, sigs, signal_stop);
8217 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
8219 UNSET_SIGS (nsigs, sigs, signal_program);
8221 else if (digits > 0)
8223 /* It is numeric. The numeric signal refers to our own
8224 internal signal numbering from target.h, not to host/target
8225 signal number. This is a feature; users really should be
8226 using symbolic names anyway, and the common ones like
8227 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
8229 sigfirst = siglast = (int)
8230 gdb_signal_from_command (atoi (*argv));
8231 if ((*argv)[digits] == '-')
8234 gdb_signal_from_command (atoi ((*argv) + digits + 1));
8236 if (sigfirst > siglast)
8238 /* Bet he didn't figure we'd think of this case... */
8246 oursig = gdb_signal_from_name (*argv);
8247 if (oursig != GDB_SIGNAL_UNKNOWN)
8249 sigfirst = siglast = (int) oursig;
8253 /* Not a number and not a recognized flag word => complain. */
8254 error (_("Unrecognized or ambiguous flag word: \"%s\"."), *argv);
8258 /* If any signal numbers or symbol names were found, set flags for
8259 which signals to apply actions to. */
8261 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
8263 switch ((enum gdb_signal) signum)
8265 case GDB_SIGNAL_TRAP:
8266 case GDB_SIGNAL_INT:
8267 if (!allsigs && !sigs[signum])
8269 if (query (_("%s is used by the debugger.\n\
8270 Are you sure you want to change it? "),
8271 gdb_signal_to_name ((enum gdb_signal) signum)))
8277 printf_unfiltered (_("Not confirmed, unchanged.\n"));
8278 gdb_flush (gdb_stdout);
8283 case GDB_SIGNAL_DEFAULT:
8284 case GDB_SIGNAL_UNKNOWN:
8285 /* Make sure that "all" doesn't print these. */
8296 for (signum = 0; signum < nsigs; signum++)
8299 signal_cache_update (-1);
8300 target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
8301 target_program_signals ((int) GDB_SIGNAL_LAST, signal_program);
8305 /* Show the results. */
8306 sig_print_header ();
8307 for (; signum < nsigs; signum++)
8309 sig_print_info ((enum gdb_signal) signum);
8315 do_cleanups (old_chain);
8318 /* Complete the "handle" command. */
8320 static VEC (char_ptr) *
8321 handle_completer (struct cmd_list_element *ignore,
8322 const char *text, const char *word)
8324 VEC (char_ptr) *vec_signals, *vec_keywords, *return_val;
8325 static const char * const keywords[] =
8339 vec_signals = signal_completer (ignore, text, word);
8340 vec_keywords = complete_on_enum (keywords, word, word);
8342 return_val = VEC_merge (char_ptr, vec_signals, vec_keywords);
8343 VEC_free (char_ptr, vec_signals);
8344 VEC_free (char_ptr, vec_keywords);
8349 gdb_signal_from_command (int num)
8351 if (num >= 1 && num <= 15)
8352 return (enum gdb_signal) num;
8353 error (_("Only signals 1-15 are valid as numeric signals.\n\
8354 Use \"info signals\" for a list of symbolic signals."));
8357 /* Print current contents of the tables set by the handle command.
8358 It is possible we should just be printing signals actually used
8359 by the current target (but for things to work right when switching
8360 targets, all signals should be in the signal tables). */
8363 signals_info (char *signum_exp, int from_tty)
8365 enum gdb_signal oursig;
8367 sig_print_header ();
8371 /* First see if this is a symbol name. */
8372 oursig = gdb_signal_from_name (signum_exp);
8373 if (oursig == GDB_SIGNAL_UNKNOWN)
8375 /* No, try numeric. */
8377 gdb_signal_from_command (parse_and_eval_long (signum_exp));
8379 sig_print_info (oursig);
8383 printf_filtered ("\n");
8384 /* These ugly casts brought to you by the native VAX compiler. */
8385 for (oursig = GDB_SIGNAL_FIRST;
8386 (int) oursig < (int) GDB_SIGNAL_LAST;
8387 oursig = (enum gdb_signal) ((int) oursig + 1))
8391 if (oursig != GDB_SIGNAL_UNKNOWN
8392 && oursig != GDB_SIGNAL_DEFAULT && oursig != GDB_SIGNAL_0)
8393 sig_print_info (oursig);
8396 printf_filtered (_("\nUse the \"handle\" command "
8397 "to change these tables.\n"));
8400 /* Check if it makes sense to read $_siginfo from the current thread
8401 at this point. If not, throw an error. */
8404 validate_siginfo_access (void)
8406 /* No current inferior, no siginfo. */
8407 if (ptid_equal (inferior_ptid, null_ptid))
8408 error (_("No thread selected."));
8410 /* Don't try to read from a dead thread. */
8411 if (is_exited (inferior_ptid))
8412 error (_("The current thread has terminated"));
8414 /* ... or from a spinning thread. */
8415 if (is_running (inferior_ptid))
8416 error (_("Selected thread is running."));
8419 /* The $_siginfo convenience variable is a bit special. We don't know
8420 for sure the type of the value until we actually have a chance to
8421 fetch the data. The type can change depending on gdbarch, so it is
8422 also dependent on which thread you have selected.
8424 1. making $_siginfo be an internalvar that creates a new value on
8427 2. making the value of $_siginfo be an lval_computed value. */
8429 /* This function implements the lval_computed support for reading a
8433 siginfo_value_read (struct value *v)
8435 LONGEST transferred;
8437 validate_siginfo_access ();
8440 target_read (¤t_target, TARGET_OBJECT_SIGNAL_INFO,
8442 value_contents_all_raw (v),
8444 TYPE_LENGTH (value_type (v)));
8446 if (transferred != TYPE_LENGTH (value_type (v)))
8447 error (_("Unable to read siginfo"));
8450 /* This function implements the lval_computed support for writing a
8454 siginfo_value_write (struct value *v, struct value *fromval)
8456 LONGEST transferred;
8458 validate_siginfo_access ();
8460 transferred = target_write (¤t_target,
8461 TARGET_OBJECT_SIGNAL_INFO,
8463 value_contents_all_raw (fromval),
8465 TYPE_LENGTH (value_type (fromval)));
8467 if (transferred != TYPE_LENGTH (value_type (fromval)))
8468 error (_("Unable to write siginfo"));
8471 static const struct lval_funcs siginfo_value_funcs =
8477 /* Return a new value with the correct type for the siginfo object of
8478 the current thread using architecture GDBARCH. Return a void value
8479 if there's no object available. */
8481 static struct value *
8482 siginfo_make_value (struct gdbarch *gdbarch, struct internalvar *var,
8485 if (target_has_stack
8486 && !ptid_equal (inferior_ptid, null_ptid)
8487 && gdbarch_get_siginfo_type_p (gdbarch))
8489 struct type *type = gdbarch_get_siginfo_type (gdbarch);
8491 return allocate_computed_value (type, &siginfo_value_funcs, NULL);
8494 return allocate_value (builtin_type (gdbarch)->builtin_void);
8498 /* infcall_suspend_state contains state about the program itself like its
8499 registers and any signal it received when it last stopped.
8500 This state must be restored regardless of how the inferior function call
8501 ends (either successfully, or after it hits a breakpoint or signal)
8502 if the program is to properly continue where it left off. */
8504 struct infcall_suspend_state
8506 struct thread_suspend_state thread_suspend;
8510 struct regcache *registers;
8512 /* Format of SIGINFO_DATA or NULL if it is not present. */
8513 struct gdbarch *siginfo_gdbarch;
8515 /* The inferior format depends on SIGINFO_GDBARCH and it has a length of
8516 TYPE_LENGTH (gdbarch_get_siginfo_type ()). For different gdbarch the
8517 content would be invalid. */
8518 gdb_byte *siginfo_data;
8521 struct infcall_suspend_state *
8522 save_infcall_suspend_state (void)
8524 struct infcall_suspend_state *inf_state;
8525 struct thread_info *tp = inferior_thread ();
8526 struct regcache *regcache = get_current_regcache ();
8527 struct gdbarch *gdbarch = get_regcache_arch (regcache);
8528 gdb_byte *siginfo_data = NULL;
8530 if (gdbarch_get_siginfo_type_p (gdbarch))
8532 struct type *type = gdbarch_get_siginfo_type (gdbarch);
8533 size_t len = TYPE_LENGTH (type);
8534 struct cleanup *back_to;
8536 siginfo_data = xmalloc (len);
8537 back_to = make_cleanup (xfree, siginfo_data);
8539 if (target_read (¤t_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
8540 siginfo_data, 0, len) == len)
8541 discard_cleanups (back_to);
8544 /* Errors ignored. */
8545 do_cleanups (back_to);
8546 siginfo_data = NULL;
8550 inf_state = XCNEW (struct infcall_suspend_state);
8554 inf_state->siginfo_gdbarch = gdbarch;
8555 inf_state->siginfo_data = siginfo_data;
8558 inf_state->thread_suspend = tp->suspend;
8560 /* run_inferior_call will not use the signal due to its `proceed' call with
8561 GDB_SIGNAL_0 anyway. */
8562 tp->suspend.stop_signal = GDB_SIGNAL_0;
8564 inf_state->stop_pc = stop_pc;
8566 inf_state->registers = regcache_dup (regcache);
8571 /* Restore inferior session state to INF_STATE. */
8574 restore_infcall_suspend_state (struct infcall_suspend_state *inf_state)
8576 struct thread_info *tp = inferior_thread ();
8577 struct regcache *regcache = get_current_regcache ();
8578 struct gdbarch *gdbarch = get_regcache_arch (regcache);
8580 tp->suspend = inf_state->thread_suspend;
8582 stop_pc = inf_state->stop_pc;
8584 if (inf_state->siginfo_gdbarch == gdbarch)
8586 struct type *type = gdbarch_get_siginfo_type (gdbarch);
8588 /* Errors ignored. */
8589 target_write (¤t_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
8590 inf_state->siginfo_data, 0, TYPE_LENGTH (type));
8593 /* The inferior can be gone if the user types "print exit(0)"
8594 (and perhaps other times). */
8595 if (target_has_execution)
8596 /* NB: The register write goes through to the target. */
8597 regcache_cpy (regcache, inf_state->registers);
8599 discard_infcall_suspend_state (inf_state);
8603 do_restore_infcall_suspend_state_cleanup (void *state)
8605 restore_infcall_suspend_state (state);
8609 make_cleanup_restore_infcall_suspend_state
8610 (struct infcall_suspend_state *inf_state)
8612 return make_cleanup (do_restore_infcall_suspend_state_cleanup, inf_state);
8616 discard_infcall_suspend_state (struct infcall_suspend_state *inf_state)
8618 regcache_xfree (inf_state->registers);
8619 xfree (inf_state->siginfo_data);
8624 get_infcall_suspend_state_regcache (struct infcall_suspend_state *inf_state)
8626 return inf_state->registers;
8629 /* infcall_control_state contains state regarding gdb's control of the
8630 inferior itself like stepping control. It also contains session state like
8631 the user's currently selected frame. */
8633 struct infcall_control_state
8635 struct thread_control_state thread_control;
8636 struct inferior_control_state inferior_control;
8639 enum stop_stack_kind stop_stack_dummy;
8640 int stopped_by_random_signal;
8641 int stop_after_trap;
8643 /* ID if the selected frame when the inferior function call was made. */
8644 struct frame_id selected_frame_id;
8647 /* Save all of the information associated with the inferior<==>gdb
8650 struct infcall_control_state *
8651 save_infcall_control_state (void)
8653 struct infcall_control_state *inf_status =
8654 XNEW (struct infcall_control_state);
8655 struct thread_info *tp = inferior_thread ();
8656 struct inferior *inf = current_inferior ();
8658 inf_status->thread_control = tp->control;
8659 inf_status->inferior_control = inf->control;
8661 tp->control.step_resume_breakpoint = NULL;
8662 tp->control.exception_resume_breakpoint = NULL;
8664 /* Save original bpstat chain to INF_STATUS; replace it in TP with copy of
8665 chain. If caller's caller is walking the chain, they'll be happier if we
8666 hand them back the original chain when restore_infcall_control_state is
8668 tp->control.stop_bpstat = bpstat_copy (tp->control.stop_bpstat);
8671 inf_status->stop_stack_dummy = stop_stack_dummy;
8672 inf_status->stopped_by_random_signal = stopped_by_random_signal;
8673 inf_status->stop_after_trap = stop_after_trap;
8675 inf_status->selected_frame_id = get_frame_id (get_selected_frame (NULL));
8681 restore_selected_frame (void *args)
8683 struct frame_id *fid = (struct frame_id *) args;
8684 struct frame_info *frame;
8686 frame = frame_find_by_id (*fid);
8688 /* If inf_status->selected_frame_id is NULL, there was no previously
8692 warning (_("Unable to restore previously selected frame."));
8696 select_frame (frame);
8701 /* Restore inferior session state to INF_STATUS. */
8704 restore_infcall_control_state (struct infcall_control_state *inf_status)
8706 struct thread_info *tp = inferior_thread ();
8707 struct inferior *inf = current_inferior ();
8709 if (tp->control.step_resume_breakpoint)
8710 tp->control.step_resume_breakpoint->disposition = disp_del_at_next_stop;
8712 if (tp->control.exception_resume_breakpoint)
8713 tp->control.exception_resume_breakpoint->disposition
8714 = disp_del_at_next_stop;
8716 /* Handle the bpstat_copy of the chain. */
8717 bpstat_clear (&tp->control.stop_bpstat);
8719 tp->control = inf_status->thread_control;
8720 inf->control = inf_status->inferior_control;
8723 stop_stack_dummy = inf_status->stop_stack_dummy;
8724 stopped_by_random_signal = inf_status->stopped_by_random_signal;
8725 stop_after_trap = inf_status->stop_after_trap;
8727 if (target_has_stack)
8729 /* The point of catch_errors is that if the stack is clobbered,
8730 walking the stack might encounter a garbage pointer and
8731 error() trying to dereference it. */
8733 (restore_selected_frame, &inf_status->selected_frame_id,
8734 "Unable to restore previously selected frame:\n",
8735 RETURN_MASK_ERROR) == 0)
8736 /* Error in restoring the selected frame. Select the innermost
8738 select_frame (get_current_frame ());
8745 do_restore_infcall_control_state_cleanup (void *sts)
8747 restore_infcall_control_state (sts);
8751 make_cleanup_restore_infcall_control_state
8752 (struct infcall_control_state *inf_status)
8754 return make_cleanup (do_restore_infcall_control_state_cleanup, inf_status);
8758 discard_infcall_control_state (struct infcall_control_state *inf_status)
8760 if (inf_status->thread_control.step_resume_breakpoint)
8761 inf_status->thread_control.step_resume_breakpoint->disposition
8762 = disp_del_at_next_stop;
8764 if (inf_status->thread_control.exception_resume_breakpoint)
8765 inf_status->thread_control.exception_resume_breakpoint->disposition
8766 = disp_del_at_next_stop;
8768 /* See save_infcall_control_state for info on stop_bpstat. */
8769 bpstat_clear (&inf_status->thread_control.stop_bpstat);
8774 /* restore_inferior_ptid() will be used by the cleanup machinery
8775 to restore the inferior_ptid value saved in a call to
8776 save_inferior_ptid(). */
8779 restore_inferior_ptid (void *arg)
8781 ptid_t *saved_ptid_ptr = arg;
8783 inferior_ptid = *saved_ptid_ptr;
8787 /* Save the value of inferior_ptid so that it may be restored by a
8788 later call to do_cleanups(). Returns the struct cleanup pointer
8789 needed for later doing the cleanup. */
8792 save_inferior_ptid (void)
8794 ptid_t *saved_ptid_ptr = XNEW (ptid_t);
8796 *saved_ptid_ptr = inferior_ptid;
8797 return make_cleanup (restore_inferior_ptid, saved_ptid_ptr);
8803 clear_exit_convenience_vars (void)
8805 clear_internalvar (lookup_internalvar ("_exitsignal"));
8806 clear_internalvar (lookup_internalvar ("_exitcode"));
8810 /* User interface for reverse debugging:
8811 Set exec-direction / show exec-direction commands
8812 (returns error unless target implements to_set_exec_direction method). */
8814 int execution_direction = EXEC_FORWARD;
8815 static const char exec_forward[] = "forward";
8816 static const char exec_reverse[] = "reverse";
8817 static const char *exec_direction = exec_forward;
8818 static const char *const exec_direction_names[] = {
8825 set_exec_direction_func (char *args, int from_tty,
8826 struct cmd_list_element *cmd)
8828 if (target_can_execute_reverse)
8830 if (!strcmp (exec_direction, exec_forward))
8831 execution_direction = EXEC_FORWARD;
8832 else if (!strcmp (exec_direction, exec_reverse))
8833 execution_direction = EXEC_REVERSE;
8837 exec_direction = exec_forward;
8838 error (_("Target does not support this operation."));
8843 show_exec_direction_func (struct ui_file *out, int from_tty,
8844 struct cmd_list_element *cmd, const char *value)
8846 switch (execution_direction) {
8848 fprintf_filtered (out, _("Forward.\n"));
8851 fprintf_filtered (out, _("Reverse.\n"));
8854 internal_error (__FILE__, __LINE__,
8855 _("bogus execution_direction value: %d"),
8856 (int) execution_direction);
8861 show_schedule_multiple (struct ui_file *file, int from_tty,
8862 struct cmd_list_element *c, const char *value)
8864 fprintf_filtered (file, _("Resuming the execution of threads "
8865 "of all processes is %s.\n"), value);
8868 /* Implementation of `siginfo' variable. */
8870 static const struct internalvar_funcs siginfo_funcs =
8877 /* Callback for infrun's target events source. This is marked when a
8878 thread has a pending status to process. */
8881 infrun_async_inferior_event_handler (gdb_client_data data)
8883 inferior_event_handler (INF_REG_EVENT, NULL);
8887 _initialize_infrun (void)
8891 struct cmd_list_element *c;
8893 /* Register extra event sources in the event loop. */
8894 infrun_async_inferior_event_token
8895 = create_async_event_handler (infrun_async_inferior_event_handler, NULL);
8897 add_info ("signals", signals_info, _("\
8898 What debugger does when program gets various signals.\n\
8899 Specify a signal as argument to print info on that signal only."));
8900 add_info_alias ("handle", "signals", 0);
8902 c = add_com ("handle", class_run, handle_command, _("\
8903 Specify how to handle signals.\n\
8904 Usage: handle SIGNAL [ACTIONS]\n\
8905 Args are signals and actions to apply to those signals.\n\
8906 If no actions are specified, the current settings for the specified signals\n\
8907 will be displayed instead.\n\
8909 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
8910 from 1-15 are allowed for compatibility with old versions of GDB.\n\
8911 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
8912 The special arg \"all\" is recognized to mean all signals except those\n\
8913 used by the debugger, typically SIGTRAP and SIGINT.\n\
8915 Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
8916 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
8917 Stop means reenter debugger if this signal happens (implies print).\n\
8918 Print means print a message if this signal happens.\n\
8919 Pass means let program see this signal; otherwise program doesn't know.\n\
8920 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
8921 Pass and Stop may be combined.\n\
8923 Multiple signals may be specified. Signal numbers and signal names\n\
8924 may be interspersed with actions, with the actions being performed for\n\
8925 all signals cumulatively specified."));
8926 set_cmd_completer (c, handle_completer);
8929 stop_command = add_cmd ("stop", class_obscure,
8930 not_just_help_class_command, _("\
8931 There is no `stop' command, but you can set a hook on `stop'.\n\
8932 This allows you to set a list of commands to be run each time execution\n\
8933 of the program stops."), &cmdlist);
8935 add_setshow_zuinteger_cmd ("infrun", class_maintenance, &debug_infrun, _("\
8936 Set inferior debugging."), _("\
8937 Show inferior debugging."), _("\
8938 When non-zero, inferior specific debugging is enabled."),
8941 &setdebuglist, &showdebuglist);
8943 add_setshow_boolean_cmd ("displaced", class_maintenance,
8944 &debug_displaced, _("\
8945 Set displaced stepping debugging."), _("\
8946 Show displaced stepping debugging."), _("\
8947 When non-zero, displaced stepping specific debugging is enabled."),
8949 show_debug_displaced,
8950 &setdebuglist, &showdebuglist);
8952 add_setshow_boolean_cmd ("non-stop", no_class,
8954 Set whether gdb controls the inferior in non-stop mode."), _("\
8955 Show whether gdb controls the inferior in non-stop mode."), _("\
8956 When debugging a multi-threaded program and this setting is\n\
8957 off (the default, also called all-stop mode), when one thread stops\n\
8958 (for a breakpoint, watchpoint, exception, or similar events), GDB stops\n\
8959 all other threads in the program while you interact with the thread of\n\
8960 interest. When you continue or step a thread, you can allow the other\n\
8961 threads to run, or have them remain stopped, but while you inspect any\n\
8962 thread's state, all threads stop.\n\
8964 In non-stop mode, when one thread stops, other threads can continue\n\
8965 to run freely. You'll be able to step each thread independently,\n\
8966 leave it stopped or free to run as needed."),
8972 numsigs = (int) GDB_SIGNAL_LAST;
8973 signal_stop = XNEWVEC (unsigned char, numsigs);
8974 signal_print = XNEWVEC (unsigned char, numsigs);
8975 signal_program = XNEWVEC (unsigned char, numsigs);
8976 signal_catch = XNEWVEC (unsigned char, numsigs);
8977 signal_pass = XNEWVEC (unsigned char, numsigs);
8978 for (i = 0; i < numsigs; i++)
8981 signal_print[i] = 1;
8982 signal_program[i] = 1;
8983 signal_catch[i] = 0;
8986 /* Signals caused by debugger's own actions should not be given to
8987 the program afterwards.
8989 Do not deliver GDB_SIGNAL_TRAP by default, except when the user
8990 explicitly specifies that it should be delivered to the target
8991 program. Typically, that would occur when a user is debugging a
8992 target monitor on a simulator: the target monitor sets a
8993 breakpoint; the simulator encounters this breakpoint and halts
8994 the simulation handing control to GDB; GDB, noting that the stop
8995 address doesn't map to any known breakpoint, returns control back
8996 to the simulator; the simulator then delivers the hardware
8997 equivalent of a GDB_SIGNAL_TRAP to the program being
8999 signal_program[GDB_SIGNAL_TRAP] = 0;
9000 signal_program[GDB_SIGNAL_INT] = 0;
9002 /* Signals that are not errors should not normally enter the debugger. */
9003 signal_stop[GDB_SIGNAL_ALRM] = 0;
9004 signal_print[GDB_SIGNAL_ALRM] = 0;
9005 signal_stop[GDB_SIGNAL_VTALRM] = 0;
9006 signal_print[GDB_SIGNAL_VTALRM] = 0;
9007 signal_stop[GDB_SIGNAL_PROF] = 0;
9008 signal_print[GDB_SIGNAL_PROF] = 0;
9009 signal_stop[GDB_SIGNAL_CHLD] = 0;
9010 signal_print[GDB_SIGNAL_CHLD] = 0;
9011 signal_stop[GDB_SIGNAL_IO] = 0;
9012 signal_print[GDB_SIGNAL_IO] = 0;
9013 signal_stop[GDB_SIGNAL_POLL] = 0;
9014 signal_print[GDB_SIGNAL_POLL] = 0;
9015 signal_stop[GDB_SIGNAL_URG] = 0;
9016 signal_print[GDB_SIGNAL_URG] = 0;
9017 signal_stop[GDB_SIGNAL_WINCH] = 0;
9018 signal_print[GDB_SIGNAL_WINCH] = 0;
9019 signal_stop[GDB_SIGNAL_PRIO] = 0;
9020 signal_print[GDB_SIGNAL_PRIO] = 0;
9022 /* These signals are used internally by user-level thread
9023 implementations. (See signal(5) on Solaris.) Like the above
9024 signals, a healthy program receives and handles them as part of
9025 its normal operation. */
9026 signal_stop[GDB_SIGNAL_LWP] = 0;
9027 signal_print[GDB_SIGNAL_LWP] = 0;
9028 signal_stop[GDB_SIGNAL_WAITING] = 0;
9029 signal_print[GDB_SIGNAL_WAITING] = 0;
9030 signal_stop[GDB_SIGNAL_CANCEL] = 0;
9031 signal_print[GDB_SIGNAL_CANCEL] = 0;
9033 /* Update cached state. */
9034 signal_cache_update (-1);
9036 add_setshow_zinteger_cmd ("stop-on-solib-events", class_support,
9037 &stop_on_solib_events, _("\
9038 Set stopping for shared library events."), _("\
9039 Show stopping for shared library events."), _("\
9040 If nonzero, gdb will give control to the user when the dynamic linker\n\
9041 notifies gdb of shared library events. The most common event of interest\n\
9042 to the user would be loading/unloading of a new library."),
9043 set_stop_on_solib_events,
9044 show_stop_on_solib_events,
9045 &setlist, &showlist);
9047 add_setshow_enum_cmd ("follow-fork-mode", class_run,
9048 follow_fork_mode_kind_names,
9049 &follow_fork_mode_string, _("\
9050 Set debugger response to a program call of fork or vfork."), _("\
9051 Show debugger response to a program call of fork or vfork."), _("\
9052 A fork or vfork creates a new process. follow-fork-mode can be:\n\
9053 parent - the original process is debugged after a fork\n\
9054 child - the new process is debugged after a fork\n\
9055 The unfollowed process will continue to run.\n\
9056 By default, the debugger will follow the parent process."),
9058 show_follow_fork_mode_string,
9059 &setlist, &showlist);
9061 add_setshow_enum_cmd ("follow-exec-mode", class_run,
9062 follow_exec_mode_names,
9063 &follow_exec_mode_string, _("\
9064 Set debugger response to a program call of exec."), _("\
9065 Show debugger response to a program call of exec."), _("\
9066 An exec call replaces the program image of a process.\n\
9068 follow-exec-mode can be:\n\
9070 new - the debugger creates a new inferior and rebinds the process\n\
9071 to this new inferior. The program the process was running before\n\
9072 the exec call can be restarted afterwards by restarting the original\n\
9075 same - the debugger keeps the process bound to the same inferior.\n\
9076 The new executable image replaces the previous executable loaded in\n\
9077 the inferior. Restarting the inferior after the exec call restarts\n\
9078 the executable the process was running after the exec call.\n\
9080 By default, the debugger will use the same inferior."),
9082 show_follow_exec_mode_string,
9083 &setlist, &showlist);
9085 add_setshow_enum_cmd ("scheduler-locking", class_run,
9086 scheduler_enums, &scheduler_mode, _("\
9087 Set mode for locking scheduler during execution."), _("\
9088 Show mode for locking scheduler during execution."), _("\
9089 off == no locking (threads may preempt at any time)\n\
9090 on == full locking (no thread except the current thread may run)\n\
9091 step == scheduler locked during stepping commands (step, next, stepi, nexti).\n\
9092 In this mode, other threads may run during other commands."),
9093 set_schedlock_func, /* traps on target vector */
9094 show_scheduler_mode,
9095 &setlist, &showlist);
9097 add_setshow_boolean_cmd ("schedule-multiple", class_run, &sched_multi, _("\
9098 Set mode for resuming threads of all processes."), _("\
9099 Show mode for resuming threads of all processes."), _("\
9100 When on, execution commands (such as 'continue' or 'next') resume all\n\
9101 threads of all processes. When off (which is the default), execution\n\
9102 commands only resume the threads of the current process. The set of\n\
9103 threads that are resumed is further refined by the scheduler-locking\n\
9104 mode (see help set scheduler-locking)."),
9106 show_schedule_multiple,
9107 &setlist, &showlist);
9109 add_setshow_boolean_cmd ("step-mode", class_run, &step_stop_if_no_debug, _("\
9110 Set mode of the step operation."), _("\
9111 Show mode of the step operation."), _("\
9112 When set, doing a step over a function without debug line information\n\
9113 will stop at the first instruction of that function. Otherwise, the\n\
9114 function is skipped and the step command stops at a different source line."),
9116 show_step_stop_if_no_debug,
9117 &setlist, &showlist);
9119 add_setshow_auto_boolean_cmd ("displaced-stepping", class_run,
9120 &can_use_displaced_stepping, _("\
9121 Set debugger's willingness to use displaced stepping."), _("\
9122 Show debugger's willingness to use displaced stepping."), _("\
9123 If on, gdb will use displaced stepping to step over breakpoints if it is\n\
9124 supported by the target architecture. If off, gdb will not use displaced\n\
9125 stepping to step over breakpoints, even if such is supported by the target\n\
9126 architecture. If auto (which is the default), gdb will use displaced stepping\n\
9127 if the target architecture supports it and non-stop mode is active, but will not\n\
9128 use it in all-stop mode (see help set non-stop)."),
9130 show_can_use_displaced_stepping,
9131 &setlist, &showlist);
9133 add_setshow_enum_cmd ("exec-direction", class_run, exec_direction_names,
9134 &exec_direction, _("Set direction of execution.\n\
9135 Options are 'forward' or 'reverse'."),
9136 _("Show direction of execution (forward/reverse)."),
9137 _("Tells gdb whether to execute forward or backward."),
9138 set_exec_direction_func, show_exec_direction_func,
9139 &setlist, &showlist);
9141 /* Set/show detach-on-fork: user-settable mode. */
9143 add_setshow_boolean_cmd ("detach-on-fork", class_run, &detach_fork, _("\
9144 Set whether gdb will detach the child of a fork."), _("\
9145 Show whether gdb will detach the child of a fork."), _("\
9146 Tells gdb whether to detach the child of a fork."),
9147 NULL, NULL, &setlist, &showlist);
9149 /* Set/show disable address space randomization mode. */
9151 add_setshow_boolean_cmd ("disable-randomization", class_support,
9152 &disable_randomization, _("\
9153 Set disabling of debuggee's virtual address space randomization."), _("\
9154 Show disabling of debuggee's virtual address space randomization."), _("\
9155 When this mode is on (which is the default), randomization of the virtual\n\
9156 address space is disabled. Standalone programs run with the randomization\n\
9157 enabled by default on some platforms."),
9158 &set_disable_randomization,
9159 &show_disable_randomization,
9160 &setlist, &showlist);
9162 /* ptid initializations */
9163 inferior_ptid = null_ptid;
9164 target_last_wait_ptid = minus_one_ptid;
9166 observer_attach_thread_ptid_changed (infrun_thread_ptid_changed);
9167 observer_attach_thread_stop_requested (infrun_thread_stop_requested);
9168 observer_attach_thread_exit (infrun_thread_thread_exit);
9169 observer_attach_inferior_exit (infrun_inferior_exit);
9171 /* Explicitly create without lookup, since that tries to create a
9172 value with a void typed value, and when we get here, gdbarch
9173 isn't initialized yet. At this point, we're quite sure there
9174 isn't another convenience variable of the same name. */
9175 create_internalvar_type_lazy ("_siginfo", &siginfo_funcs, NULL);
9177 add_setshow_boolean_cmd ("observer", no_class,
9178 &observer_mode_1, _("\
9179 Set whether gdb controls the inferior in observer mode."), _("\
9180 Show whether gdb controls the inferior in observer mode."), _("\
9181 In observer mode, GDB can get data from the inferior, but not\n\
9182 affect its execution. Registers and memory may not be changed,\n\
9183 breakpoints may not be set, and the program cannot be interrupted\n\