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"
65 /* Prototypes for local functions */
67 static void signals_info (char *, int);
69 static void handle_command (char *, int);
71 static void sig_print_info (enum gdb_signal);
73 static void sig_print_header (void);
75 static void resume_cleanups (void *);
77 static int hook_stop_stub (void *);
79 static int restore_selected_frame (void *);
81 static int follow_fork (void);
83 static int follow_fork_inferior (int follow_child, int detach_fork);
85 static void follow_inferior_reset_breakpoints (void);
87 static void set_schedlock_func (char *args, int from_tty,
88 struct cmd_list_element *c);
90 static int currently_stepping (struct thread_info *tp);
92 void _initialize_infrun (void);
94 void nullify_last_target_wait_ptid (void);
96 static void insert_hp_step_resume_breakpoint_at_frame (struct frame_info *);
98 static void insert_step_resume_breakpoint_at_caller (struct frame_info *);
100 static void insert_longjmp_resume_breakpoint (struct gdbarch *, CORE_ADDR);
102 static int maybe_software_singlestep (struct gdbarch *gdbarch, CORE_ADDR pc);
104 /* When set, stop the 'step' command if we enter a function which has
105 no line number information. The normal behavior is that we step
106 over such function. */
107 int step_stop_if_no_debug = 0;
109 show_step_stop_if_no_debug (struct ui_file *file, int from_tty,
110 struct cmd_list_element *c, const char *value)
112 fprintf_filtered (file, _("Mode of the step operation is %s.\n"), value);
115 /* In asynchronous mode, but simulating synchronous execution. */
117 int sync_execution = 0;
119 /* proceed and normal_stop use this to notify the user when the
120 inferior stopped in a different thread than it had been running
123 static ptid_t previous_inferior_ptid;
125 /* If set (default for legacy reasons), when following a fork, GDB
126 will detach from one of the fork branches, child or parent.
127 Exactly which branch is detached depends on 'set follow-fork-mode'
130 static int detach_fork = 1;
132 int debug_displaced = 0;
134 show_debug_displaced (struct ui_file *file, int from_tty,
135 struct cmd_list_element *c, const char *value)
137 fprintf_filtered (file, _("Displace stepping debugging is %s.\n"), value);
140 unsigned int debug_infrun = 0;
142 show_debug_infrun (struct ui_file *file, int from_tty,
143 struct cmd_list_element *c, const char *value)
145 fprintf_filtered (file, _("Inferior debugging is %s.\n"), value);
149 /* Support for disabling address space randomization. */
151 int disable_randomization = 1;
154 show_disable_randomization (struct ui_file *file, int from_tty,
155 struct cmd_list_element *c, const char *value)
157 if (target_supports_disable_randomization ())
158 fprintf_filtered (file,
159 _("Disabling randomization of debuggee's "
160 "virtual address space is %s.\n"),
163 fputs_filtered (_("Disabling randomization of debuggee's "
164 "virtual address space is unsupported on\n"
165 "this platform.\n"), file);
169 set_disable_randomization (char *args, int from_tty,
170 struct cmd_list_element *c)
172 if (!target_supports_disable_randomization ())
173 error (_("Disabling randomization of debuggee's "
174 "virtual address space is unsupported on\n"
178 /* User interface for non-stop mode. */
181 static int non_stop_1 = 0;
184 set_non_stop (char *args, int from_tty,
185 struct cmd_list_element *c)
187 if (target_has_execution)
189 non_stop_1 = non_stop;
190 error (_("Cannot change this setting while the inferior is running."));
193 non_stop = non_stop_1;
197 show_non_stop (struct ui_file *file, int from_tty,
198 struct cmd_list_element *c, const char *value)
200 fprintf_filtered (file,
201 _("Controlling the inferior in non-stop mode is %s.\n"),
205 /* "Observer mode" is somewhat like a more extreme version of
206 non-stop, in which all GDB operations that might affect the
207 target's execution have been disabled. */
209 int observer_mode = 0;
210 static int observer_mode_1 = 0;
213 set_observer_mode (char *args, int from_tty,
214 struct cmd_list_element *c)
216 if (target_has_execution)
218 observer_mode_1 = observer_mode;
219 error (_("Cannot change this setting while the inferior is running."));
222 observer_mode = observer_mode_1;
224 may_write_registers = !observer_mode;
225 may_write_memory = !observer_mode;
226 may_insert_breakpoints = !observer_mode;
227 may_insert_tracepoints = !observer_mode;
228 /* We can insert fast tracepoints in or out of observer mode,
229 but enable them if we're going into this mode. */
231 may_insert_fast_tracepoints = 1;
232 may_stop = !observer_mode;
233 update_target_permissions ();
235 /* Going *into* observer mode we must force non-stop, then
236 going out we leave it that way. */
239 pagination_enabled = 0;
240 non_stop = non_stop_1 = 1;
244 printf_filtered (_("Observer mode is now %s.\n"),
245 (observer_mode ? "on" : "off"));
249 show_observer_mode (struct ui_file *file, int from_tty,
250 struct cmd_list_element *c, const char *value)
252 fprintf_filtered (file, _("Observer mode is %s.\n"), value);
255 /* This updates the value of observer mode based on changes in
256 permissions. Note that we are deliberately ignoring the values of
257 may-write-registers and may-write-memory, since the user may have
258 reason to enable these during a session, for instance to turn on a
259 debugging-related global. */
262 update_observer_mode (void)
266 newval = (!may_insert_breakpoints
267 && !may_insert_tracepoints
268 && may_insert_fast_tracepoints
272 /* Let the user know if things change. */
273 if (newval != observer_mode)
274 printf_filtered (_("Observer mode is now %s.\n"),
275 (newval ? "on" : "off"));
277 observer_mode = observer_mode_1 = newval;
280 /* Tables of how to react to signals; the user sets them. */
282 static unsigned char *signal_stop;
283 static unsigned char *signal_print;
284 static unsigned char *signal_program;
286 /* Table of signals that are registered with "catch signal". A
287 non-zero entry indicates that the signal is caught by some "catch
288 signal" command. This has size GDB_SIGNAL_LAST, to accommodate all
290 static unsigned char *signal_catch;
292 /* Table of signals that the target may silently handle.
293 This is automatically determined from the flags above,
294 and simply cached here. */
295 static unsigned char *signal_pass;
297 #define SET_SIGS(nsigs,sigs,flags) \
299 int signum = (nsigs); \
300 while (signum-- > 0) \
301 if ((sigs)[signum]) \
302 (flags)[signum] = 1; \
305 #define UNSET_SIGS(nsigs,sigs,flags) \
307 int signum = (nsigs); \
308 while (signum-- > 0) \
309 if ((sigs)[signum]) \
310 (flags)[signum] = 0; \
313 /* Update the target's copy of SIGNAL_PROGRAM. The sole purpose of
314 this function is to avoid exporting `signal_program'. */
317 update_signals_program_target (void)
319 target_program_signals ((int) GDB_SIGNAL_LAST, signal_program);
322 /* Value to pass to target_resume() to cause all threads to resume. */
324 #define RESUME_ALL minus_one_ptid
326 /* Command list pointer for the "stop" placeholder. */
328 static struct cmd_list_element *stop_command;
330 /* Nonzero if we want to give control to the user when we're notified
331 of shared library events by the dynamic linker. */
332 int stop_on_solib_events;
334 /* Enable or disable optional shared library event breakpoints
335 as appropriate when the above flag is changed. */
338 set_stop_on_solib_events (char *args, int from_tty, struct cmd_list_element *c)
340 update_solib_breakpoints ();
344 show_stop_on_solib_events (struct ui_file *file, int from_tty,
345 struct cmd_list_element *c, const char *value)
347 fprintf_filtered (file, _("Stopping for shared library events is %s.\n"),
351 /* Nonzero means expecting a trace trap
352 and should stop the inferior and return silently when it happens. */
356 /* Nonzero after stop if current stack frame should be printed. */
358 static int stop_print_frame;
360 /* This is a cached copy of the pid/waitstatus of the last event
361 returned by target_wait()/deprecated_target_wait_hook(). This
362 information is returned by get_last_target_status(). */
363 static ptid_t target_last_wait_ptid;
364 static struct target_waitstatus target_last_waitstatus;
366 static void context_switch (ptid_t ptid);
368 void init_thread_stepping_state (struct thread_info *tss);
370 static const char follow_fork_mode_child[] = "child";
371 static const char follow_fork_mode_parent[] = "parent";
373 static const char *const follow_fork_mode_kind_names[] = {
374 follow_fork_mode_child,
375 follow_fork_mode_parent,
379 static const char *follow_fork_mode_string = follow_fork_mode_parent;
381 show_follow_fork_mode_string (struct ui_file *file, int from_tty,
382 struct cmd_list_element *c, const char *value)
384 fprintf_filtered (file,
385 _("Debugger response to a program "
386 "call of fork or vfork is \"%s\".\n"),
391 /* Handle changes to the inferior list based on the type of fork,
392 which process is being followed, and whether the other process
393 should be detached. On entry inferior_ptid must be the ptid of
394 the fork parent. At return inferior_ptid is the ptid of the
395 followed inferior. */
398 follow_fork_inferior (int follow_child, int detach_fork)
401 ptid_t parent_ptid, child_ptid;
403 has_vforked = (inferior_thread ()->pending_follow.kind
404 == TARGET_WAITKIND_VFORKED);
405 parent_ptid = inferior_ptid;
406 child_ptid = inferior_thread ()->pending_follow.value.related_pid;
409 && !non_stop /* Non-stop always resumes both branches. */
410 && (!target_is_async_p () || sync_execution)
411 && !(follow_child || detach_fork || sched_multi))
413 /* The parent stays blocked inside the vfork syscall until the
414 child execs or exits. If we don't let the child run, then
415 the parent stays blocked. If we're telling the parent to run
416 in the foreground, the user will not be able to ctrl-c to get
417 back the terminal, effectively hanging the debug session. */
418 fprintf_filtered (gdb_stderr, _("\
419 Can not resume the parent process over vfork in the foreground while\n\
420 holding the child stopped. Try \"set detach-on-fork\" or \
421 \"set schedule-multiple\".\n"));
422 /* FIXME output string > 80 columns. */
428 /* Detach new forked process? */
431 struct cleanup *old_chain;
433 /* Before detaching from the child, remove all breakpoints
434 from it. If we forked, then this has already been taken
435 care of by infrun.c. If we vforked however, any
436 breakpoint inserted in the parent is visible in the
437 child, even those added while stopped in a vfork
438 catchpoint. This will remove the breakpoints from the
439 parent also, but they'll be reinserted below. */
442 /* Keep breakpoints list in sync. */
443 remove_breakpoints_pid (ptid_get_pid (inferior_ptid));
446 if (info_verbose || debug_infrun)
448 /* Ensure that we have a process ptid. */
449 ptid_t process_ptid = pid_to_ptid (ptid_get_pid (child_ptid));
451 target_terminal_ours_for_output ();
452 fprintf_filtered (gdb_stdlog,
453 _("Detaching after %s from child %s.\n"),
454 has_vforked ? "vfork" : "fork",
455 target_pid_to_str (process_ptid));
460 struct inferior *parent_inf, *child_inf;
461 struct cleanup *old_chain;
463 /* Add process to GDB's tables. */
464 child_inf = add_inferior (ptid_get_pid (child_ptid));
466 parent_inf = current_inferior ();
467 child_inf->attach_flag = parent_inf->attach_flag;
468 copy_terminal_info (child_inf, parent_inf);
469 child_inf->gdbarch = parent_inf->gdbarch;
470 copy_inferior_target_desc_info (child_inf, parent_inf);
472 old_chain = save_inferior_ptid ();
473 save_current_program_space ();
475 inferior_ptid = child_ptid;
476 add_thread (inferior_ptid);
477 child_inf->symfile_flags = SYMFILE_NO_READ;
479 /* If this is a vfork child, then the address-space is
480 shared with the parent. */
483 child_inf->pspace = parent_inf->pspace;
484 child_inf->aspace = parent_inf->aspace;
486 /* The parent will be frozen until the child is done
487 with the shared region. Keep track of the
489 child_inf->vfork_parent = parent_inf;
490 child_inf->pending_detach = 0;
491 parent_inf->vfork_child = child_inf;
492 parent_inf->pending_detach = 0;
496 child_inf->aspace = new_address_space ();
497 child_inf->pspace = add_program_space (child_inf->aspace);
498 child_inf->removable = 1;
499 set_current_program_space (child_inf->pspace);
500 clone_program_space (child_inf->pspace, parent_inf->pspace);
502 /* Let the shared library layer (e.g., solib-svr4) learn
503 about this new process, relocate the cloned exec, pull
504 in shared libraries, and install the solib event
505 breakpoint. If a "cloned-VM" event was propagated
506 better throughout the core, this wouldn't be
508 solib_create_inferior_hook (0);
511 do_cleanups (old_chain);
516 struct inferior *parent_inf;
518 parent_inf = current_inferior ();
520 /* If we detached from the child, then we have to be careful
521 to not insert breakpoints in the parent until the child
522 is done with the shared memory region. However, if we're
523 staying attached to the child, then we can and should
524 insert breakpoints, so that we can debug it. A
525 subsequent child exec or exit is enough to know when does
526 the child stops using the parent's address space. */
527 parent_inf->waiting_for_vfork_done = detach_fork;
528 parent_inf->pspace->breakpoints_not_allowed = detach_fork;
533 /* Follow the child. */
534 struct inferior *parent_inf, *child_inf;
535 struct program_space *parent_pspace;
537 if (info_verbose || debug_infrun)
539 target_terminal_ours_for_output ();
540 fprintf_filtered (gdb_stdlog,
541 _("Attaching after %s %s to child %s.\n"),
542 target_pid_to_str (parent_ptid),
543 has_vforked ? "vfork" : "fork",
544 target_pid_to_str (child_ptid));
547 /* Add the new inferior first, so that the target_detach below
548 doesn't unpush the target. */
550 child_inf = add_inferior (ptid_get_pid (child_ptid));
552 parent_inf = current_inferior ();
553 child_inf->attach_flag = parent_inf->attach_flag;
554 copy_terminal_info (child_inf, parent_inf);
555 child_inf->gdbarch = parent_inf->gdbarch;
556 copy_inferior_target_desc_info (child_inf, parent_inf);
558 parent_pspace = parent_inf->pspace;
560 /* If we're vforking, we want to hold on to the parent until the
561 child exits or execs. At child exec or exit time we can
562 remove the old breakpoints from the parent and detach or
563 resume debugging it. Otherwise, detach the parent now; we'll
564 want to reuse it's program/address spaces, but we can't set
565 them to the child before removing breakpoints from the
566 parent, otherwise, the breakpoints module could decide to
567 remove breakpoints from the wrong process (since they'd be
568 assigned to the same address space). */
572 gdb_assert (child_inf->vfork_parent == NULL);
573 gdb_assert (parent_inf->vfork_child == NULL);
574 child_inf->vfork_parent = parent_inf;
575 child_inf->pending_detach = 0;
576 parent_inf->vfork_child = child_inf;
577 parent_inf->pending_detach = detach_fork;
578 parent_inf->waiting_for_vfork_done = 0;
580 else if (detach_fork)
582 if (info_verbose || debug_infrun)
584 /* Ensure that we have a process ptid. */
585 ptid_t process_ptid = pid_to_ptid (ptid_get_pid (child_ptid));
587 target_terminal_ours_for_output ();
588 fprintf_filtered (gdb_stdlog,
589 _("Detaching after fork from "
591 target_pid_to_str (process_ptid));
594 target_detach (NULL, 0);
597 /* Note that the detach above makes PARENT_INF dangling. */
599 /* Add the child thread to the appropriate lists, and switch to
600 this new thread, before cloning the program space, and
601 informing the solib layer about this new process. */
603 inferior_ptid = child_ptid;
604 add_thread (inferior_ptid);
606 /* If this is a vfork child, then the address-space is shared
607 with the parent. If we detached from the parent, then we can
608 reuse the parent's program/address spaces. */
609 if (has_vforked || detach_fork)
611 child_inf->pspace = parent_pspace;
612 child_inf->aspace = child_inf->pspace->aspace;
616 child_inf->aspace = new_address_space ();
617 child_inf->pspace = add_program_space (child_inf->aspace);
618 child_inf->removable = 1;
619 child_inf->symfile_flags = SYMFILE_NO_READ;
620 set_current_program_space (child_inf->pspace);
621 clone_program_space (child_inf->pspace, parent_pspace);
623 /* Let the shared library layer (e.g., solib-svr4) learn
624 about this new process, relocate the cloned exec, pull in
625 shared libraries, and install the solib event breakpoint.
626 If a "cloned-VM" event was propagated better throughout
627 the core, this wouldn't be required. */
628 solib_create_inferior_hook (0);
632 return target_follow_fork (follow_child, detach_fork);
635 /* Tell the target to follow the fork we're stopped at. Returns true
636 if the inferior should be resumed; false, if the target for some
637 reason decided it's best not to resume. */
642 int follow_child = (follow_fork_mode_string == follow_fork_mode_child);
643 int should_resume = 1;
644 struct thread_info *tp;
646 /* Copy user stepping state to the new inferior thread. FIXME: the
647 followed fork child thread should have a copy of most of the
648 parent thread structure's run control related fields, not just these.
649 Initialized to avoid "may be used uninitialized" warnings from gcc. */
650 struct breakpoint *step_resume_breakpoint = NULL;
651 struct breakpoint *exception_resume_breakpoint = NULL;
652 CORE_ADDR step_range_start = 0;
653 CORE_ADDR step_range_end = 0;
654 struct frame_id step_frame_id = { 0 };
655 struct interp *command_interp = NULL;
660 struct target_waitstatus wait_status;
662 /* Get the last target status returned by target_wait(). */
663 get_last_target_status (&wait_ptid, &wait_status);
665 /* If not stopped at a fork event, then there's nothing else to
667 if (wait_status.kind != TARGET_WAITKIND_FORKED
668 && wait_status.kind != TARGET_WAITKIND_VFORKED)
671 /* Check if we switched over from WAIT_PTID, since the event was
673 if (!ptid_equal (wait_ptid, minus_one_ptid)
674 && !ptid_equal (inferior_ptid, wait_ptid))
676 /* We did. Switch back to WAIT_PTID thread, to tell the
677 target to follow it (in either direction). We'll
678 afterwards refuse to resume, and inform the user what
680 switch_to_thread (wait_ptid);
685 tp = inferior_thread ();
687 /* If there were any forks/vforks that were caught and are now to be
688 followed, then do so now. */
689 switch (tp->pending_follow.kind)
691 case TARGET_WAITKIND_FORKED:
692 case TARGET_WAITKIND_VFORKED:
694 ptid_t parent, child;
696 /* If the user did a next/step, etc, over a fork call,
697 preserve the stepping state in the fork child. */
698 if (follow_child && should_resume)
700 step_resume_breakpoint = clone_momentary_breakpoint
701 (tp->control.step_resume_breakpoint);
702 step_range_start = tp->control.step_range_start;
703 step_range_end = tp->control.step_range_end;
704 step_frame_id = tp->control.step_frame_id;
705 exception_resume_breakpoint
706 = clone_momentary_breakpoint (tp->control.exception_resume_breakpoint);
707 command_interp = tp->control.command_interp;
709 /* For now, delete the parent's sr breakpoint, otherwise,
710 parent/child sr breakpoints are considered duplicates,
711 and the child version will not be installed. Remove
712 this when the breakpoints module becomes aware of
713 inferiors and address spaces. */
714 delete_step_resume_breakpoint (tp);
715 tp->control.step_range_start = 0;
716 tp->control.step_range_end = 0;
717 tp->control.step_frame_id = null_frame_id;
718 delete_exception_resume_breakpoint (tp);
719 tp->control.command_interp = NULL;
722 parent = inferior_ptid;
723 child = tp->pending_follow.value.related_pid;
725 /* Set up inferior(s) as specified by the caller, and tell the
726 target to do whatever is necessary to follow either parent
728 if (follow_fork_inferior (follow_child, detach_fork))
730 /* Target refused to follow, or there's some other reason
731 we shouldn't resume. */
736 /* This pending follow fork event is now handled, one way
737 or another. The previous selected thread may be gone
738 from the lists by now, but if it is still around, need
739 to clear the pending follow request. */
740 tp = find_thread_ptid (parent);
742 tp->pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
744 /* This makes sure we don't try to apply the "Switched
745 over from WAIT_PID" logic above. */
746 nullify_last_target_wait_ptid ();
748 /* If we followed the child, switch to it... */
751 switch_to_thread (child);
753 /* ... and preserve the stepping state, in case the
754 user was stepping over the fork call. */
757 tp = inferior_thread ();
758 tp->control.step_resume_breakpoint
759 = step_resume_breakpoint;
760 tp->control.step_range_start = step_range_start;
761 tp->control.step_range_end = step_range_end;
762 tp->control.step_frame_id = step_frame_id;
763 tp->control.exception_resume_breakpoint
764 = exception_resume_breakpoint;
765 tp->control.command_interp = command_interp;
769 /* If we get here, it was because we're trying to
770 resume from a fork catchpoint, but, the user
771 has switched threads away from the thread that
772 forked. In that case, the resume command
773 issued is most likely not applicable to the
774 child, so just warn, and refuse to resume. */
775 warning (_("Not resuming: switched threads "
776 "before following fork child.\n"));
779 /* Reset breakpoints in the child as appropriate. */
780 follow_inferior_reset_breakpoints ();
783 switch_to_thread (parent);
787 case TARGET_WAITKIND_SPURIOUS:
788 /* Nothing to follow. */
791 internal_error (__FILE__, __LINE__,
792 "Unexpected pending_follow.kind %d\n",
793 tp->pending_follow.kind);
797 return should_resume;
801 follow_inferior_reset_breakpoints (void)
803 struct thread_info *tp = inferior_thread ();
805 /* Was there a step_resume breakpoint? (There was if the user
806 did a "next" at the fork() call.) If so, explicitly reset its
807 thread number. Cloned step_resume breakpoints are disabled on
808 creation, so enable it here now that it is associated with the
811 step_resumes are a form of bp that are made to be per-thread.
812 Since we created the step_resume bp when the parent process
813 was being debugged, and now are switching to the child process,
814 from the breakpoint package's viewpoint, that's a switch of
815 "threads". We must update the bp's notion of which thread
816 it is for, or it'll be ignored when it triggers. */
818 if (tp->control.step_resume_breakpoint)
820 breakpoint_re_set_thread (tp->control.step_resume_breakpoint);
821 tp->control.step_resume_breakpoint->loc->enabled = 1;
824 /* Treat exception_resume breakpoints like step_resume breakpoints. */
825 if (tp->control.exception_resume_breakpoint)
827 breakpoint_re_set_thread (tp->control.exception_resume_breakpoint);
828 tp->control.exception_resume_breakpoint->loc->enabled = 1;
831 /* Reinsert all breakpoints in the child. The user may have set
832 breakpoints after catching the fork, in which case those
833 were never set in the child, but only in the parent. This makes
834 sure the inserted breakpoints match the breakpoint list. */
836 breakpoint_re_set ();
837 insert_breakpoints ();
840 /* The child has exited or execed: resume threads of the parent the
841 user wanted to be executing. */
844 proceed_after_vfork_done (struct thread_info *thread,
847 int pid = * (int *) arg;
849 if (ptid_get_pid (thread->ptid) == pid
850 && is_running (thread->ptid)
851 && !is_executing (thread->ptid)
852 && !thread->stop_requested
853 && thread->suspend.stop_signal == GDB_SIGNAL_0)
856 fprintf_unfiltered (gdb_stdlog,
857 "infrun: resuming vfork parent thread %s\n",
858 target_pid_to_str (thread->ptid));
860 switch_to_thread (thread->ptid);
861 clear_proceed_status (0);
862 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
868 /* Called whenever we notice an exec or exit event, to handle
869 detaching or resuming a vfork parent. */
872 handle_vfork_child_exec_or_exit (int exec)
874 struct inferior *inf = current_inferior ();
876 if (inf->vfork_parent)
878 int resume_parent = -1;
880 /* This exec or exit marks the end of the shared memory region
881 between the parent and the child. If the user wanted to
882 detach from the parent, now is the time. */
884 if (inf->vfork_parent->pending_detach)
886 struct thread_info *tp;
887 struct cleanup *old_chain;
888 struct program_space *pspace;
889 struct address_space *aspace;
891 /* follow-fork child, detach-on-fork on. */
893 inf->vfork_parent->pending_detach = 0;
897 /* If we're handling a child exit, then inferior_ptid
898 points at the inferior's pid, not to a thread. */
899 old_chain = save_inferior_ptid ();
900 save_current_program_space ();
901 save_current_inferior ();
904 old_chain = save_current_space_and_thread ();
906 /* We're letting loose of the parent. */
907 tp = any_live_thread_of_process (inf->vfork_parent->pid);
908 switch_to_thread (tp->ptid);
910 /* We're about to detach from the parent, which implicitly
911 removes breakpoints from its address space. There's a
912 catch here: we want to reuse the spaces for the child,
913 but, parent/child are still sharing the pspace at this
914 point, although the exec in reality makes the kernel give
915 the child a fresh set of new pages. The problem here is
916 that the breakpoints module being unaware of this, would
917 likely chose the child process to write to the parent
918 address space. Swapping the child temporarily away from
919 the spaces has the desired effect. Yes, this is "sort
922 pspace = inf->pspace;
923 aspace = inf->aspace;
927 if (debug_infrun || info_verbose)
929 target_terminal_ours_for_output ();
933 fprintf_filtered (gdb_stdlog,
934 _("Detaching vfork parent process "
935 "%d after child exec.\n"),
936 inf->vfork_parent->pid);
940 fprintf_filtered (gdb_stdlog,
941 _("Detaching vfork parent process "
942 "%d after child exit.\n"),
943 inf->vfork_parent->pid);
947 target_detach (NULL, 0);
950 inf->pspace = pspace;
951 inf->aspace = aspace;
953 do_cleanups (old_chain);
957 /* We're staying attached to the parent, so, really give the
958 child a new address space. */
959 inf->pspace = add_program_space (maybe_new_address_space ());
960 inf->aspace = inf->pspace->aspace;
962 set_current_program_space (inf->pspace);
964 resume_parent = inf->vfork_parent->pid;
966 /* Break the bonds. */
967 inf->vfork_parent->vfork_child = NULL;
971 struct cleanup *old_chain;
972 struct program_space *pspace;
974 /* If this is a vfork child exiting, then the pspace and
975 aspaces were shared with the parent. Since we're
976 reporting the process exit, we'll be mourning all that is
977 found in the address space, and switching to null_ptid,
978 preparing to start a new inferior. But, since we don't
979 want to clobber the parent's address/program spaces, we
980 go ahead and create a new one for this exiting
983 /* Switch to null_ptid, so that clone_program_space doesn't want
984 to read the selected frame of a dead process. */
985 old_chain = save_inferior_ptid ();
986 inferior_ptid = null_ptid;
988 /* This inferior is dead, so avoid giving the breakpoints
989 module the option to write through to it (cloning a
990 program space resets breakpoints). */
993 pspace = add_program_space (maybe_new_address_space ());
994 set_current_program_space (pspace);
996 inf->symfile_flags = SYMFILE_NO_READ;
997 clone_program_space (pspace, inf->vfork_parent->pspace);
998 inf->pspace = pspace;
999 inf->aspace = pspace->aspace;
1001 /* Put back inferior_ptid. We'll continue mourning this
1003 do_cleanups (old_chain);
1005 resume_parent = inf->vfork_parent->pid;
1006 /* Break the bonds. */
1007 inf->vfork_parent->vfork_child = NULL;
1010 inf->vfork_parent = NULL;
1012 gdb_assert (current_program_space == inf->pspace);
1014 if (non_stop && resume_parent != -1)
1016 /* If the user wanted the parent to be running, let it go
1018 struct cleanup *old_chain = make_cleanup_restore_current_thread ();
1021 fprintf_unfiltered (gdb_stdlog,
1022 "infrun: resuming vfork parent process %d\n",
1025 iterate_over_threads (proceed_after_vfork_done, &resume_parent);
1027 do_cleanups (old_chain);
1032 /* Enum strings for "set|show follow-exec-mode". */
1034 static const char follow_exec_mode_new[] = "new";
1035 static const char follow_exec_mode_same[] = "same";
1036 static const char *const follow_exec_mode_names[] =
1038 follow_exec_mode_new,
1039 follow_exec_mode_same,
1043 static const char *follow_exec_mode_string = follow_exec_mode_same;
1045 show_follow_exec_mode_string (struct ui_file *file, int from_tty,
1046 struct cmd_list_element *c, const char *value)
1048 fprintf_filtered (file, _("Follow exec mode is \"%s\".\n"), value);
1051 /* EXECD_PATHNAME is assumed to be non-NULL. */
1054 follow_exec (ptid_t ptid, char *execd_pathname)
1056 struct thread_info *th, *tmp;
1057 struct inferior *inf = current_inferior ();
1058 int pid = ptid_get_pid (ptid);
1060 /* This is an exec event that we actually wish to pay attention to.
1061 Refresh our symbol table to the newly exec'd program, remove any
1062 momentary bp's, etc.
1064 If there are breakpoints, they aren't really inserted now,
1065 since the exec() transformed our inferior into a fresh set
1068 We want to preserve symbolic breakpoints on the list, since
1069 we have hopes that they can be reset after the new a.out's
1070 symbol table is read.
1072 However, any "raw" breakpoints must be removed from the list
1073 (e.g., the solib bp's), since their address is probably invalid
1076 And, we DON'T want to call delete_breakpoints() here, since
1077 that may write the bp's "shadow contents" (the instruction
1078 value that was overwritten witha TRAP instruction). Since
1079 we now have a new a.out, those shadow contents aren't valid. */
1081 mark_breakpoints_out ();
1083 /* The target reports the exec event to the main thread, even if
1084 some other thread does the exec, and even if the main thread was
1085 stopped or already gone. We may still have non-leader threads of
1086 the process on our list. E.g., on targets that don't have thread
1087 exit events (like remote); or on native Linux in non-stop mode if
1088 there were only two threads in the inferior and the non-leader
1089 one is the one that execs (and nothing forces an update of the
1090 thread list up to here). When debugging remotely, it's best to
1091 avoid extra traffic, when possible, so avoid syncing the thread
1092 list with the target, and instead go ahead and delete all threads
1093 of the process but one that reported the event. Note this must
1094 be done before calling update_breakpoints_after_exec, as
1095 otherwise clearing the threads' resources would reference stale
1096 thread breakpoints -- it may have been one of these threads that
1097 stepped across the exec. We could just clear their stepping
1098 states, but as long as we're iterating, might as well delete
1099 them. Deleting them now rather than at the next user-visible
1100 stop provides a nicer sequence of events for user and MI
1102 ALL_THREADS_SAFE (th, tmp)
1103 if (ptid_get_pid (th->ptid) == pid && !ptid_equal (th->ptid, ptid))
1104 delete_thread (th->ptid);
1106 /* We also need to clear any left over stale state for the
1107 leader/event thread. E.g., if there was any step-resume
1108 breakpoint or similar, it's gone now. We cannot truly
1109 step-to-next statement through an exec(). */
1110 th = inferior_thread ();
1111 th->control.step_resume_breakpoint = NULL;
1112 th->control.exception_resume_breakpoint = NULL;
1113 th->control.single_step_breakpoints = NULL;
1114 th->control.step_range_start = 0;
1115 th->control.step_range_end = 0;
1117 /* The user may have had the main thread held stopped in the
1118 previous image (e.g., schedlock on, or non-stop). Release
1120 th->stop_requested = 0;
1122 update_breakpoints_after_exec ();
1124 /* What is this a.out's name? */
1125 printf_unfiltered (_("%s is executing new program: %s\n"),
1126 target_pid_to_str (inferior_ptid),
1129 /* We've followed the inferior through an exec. Therefore, the
1130 inferior has essentially been killed & reborn. */
1132 gdb_flush (gdb_stdout);
1134 breakpoint_init_inferior (inf_execd);
1136 if (*gdb_sysroot != '\0')
1138 char *name = exec_file_find (execd_pathname, NULL);
1140 execd_pathname = alloca (strlen (name) + 1);
1141 strcpy (execd_pathname, name);
1145 /* Reset the shared library package. This ensures that we get a
1146 shlib event when the child reaches "_start", at which point the
1147 dld will have had a chance to initialize the child. */
1148 /* Also, loading a symbol file below may trigger symbol lookups, and
1149 we don't want those to be satisfied by the libraries of the
1150 previous incarnation of this process. */
1151 no_shared_libraries (NULL, 0);
1153 if (follow_exec_mode_string == follow_exec_mode_new)
1155 struct program_space *pspace;
1157 /* The user wants to keep the old inferior and program spaces
1158 around. Create a new fresh one, and switch to it. */
1160 inf = add_inferior (current_inferior ()->pid);
1161 pspace = add_program_space (maybe_new_address_space ());
1162 inf->pspace = pspace;
1163 inf->aspace = pspace->aspace;
1165 exit_inferior_num_silent (current_inferior ()->num);
1167 set_current_inferior (inf);
1168 set_current_program_space (pspace);
1172 /* The old description may no longer be fit for the new image.
1173 E.g, a 64-bit process exec'ed a 32-bit process. Clear the
1174 old description; we'll read a new one below. No need to do
1175 this on "follow-exec-mode new", as the old inferior stays
1176 around (its description is later cleared/refetched on
1178 target_clear_description ();
1181 gdb_assert (current_program_space == inf->pspace);
1183 /* That a.out is now the one to use. */
1184 exec_file_attach (execd_pathname, 0);
1186 /* SYMFILE_DEFER_BP_RESET is used as the proper displacement for PIE
1187 (Position Independent Executable) main symbol file will get applied by
1188 solib_create_inferior_hook below. breakpoint_re_set would fail to insert
1189 the breakpoints with the zero displacement. */
1191 symbol_file_add (execd_pathname,
1193 | SYMFILE_MAINLINE | SYMFILE_DEFER_BP_RESET),
1196 if ((inf->symfile_flags & SYMFILE_NO_READ) == 0)
1197 set_initial_language ();
1199 /* If the target can specify a description, read it. Must do this
1200 after flipping to the new executable (because the target supplied
1201 description must be compatible with the executable's
1202 architecture, and the old executable may e.g., be 32-bit, while
1203 the new one 64-bit), and before anything involving memory or
1205 target_find_description ();
1207 solib_create_inferior_hook (0);
1209 jit_inferior_created_hook ();
1211 breakpoint_re_set ();
1213 /* Reinsert all breakpoints. (Those which were symbolic have
1214 been reset to the proper address in the new a.out, thanks
1215 to symbol_file_command...). */
1216 insert_breakpoints ();
1218 /* The next resume of this inferior should bring it to the shlib
1219 startup breakpoints. (If the user had also set bp's on
1220 "main" from the old (parent) process, then they'll auto-
1221 matically get reset there in the new process.). */
1224 /* Bit flags indicating what the thread needs to step over. */
1228 /* Step over a breakpoint. */
1229 STEP_OVER_BREAKPOINT = 1,
1231 /* Step past a non-continuable watchpoint, in order to let the
1232 instruction execute so we can evaluate the watchpoint
1234 STEP_OVER_WATCHPOINT = 2
1237 /* Info about an instruction that is being stepped over. */
1239 struct step_over_info
1241 /* If we're stepping past a breakpoint, this is the address space
1242 and address of the instruction the breakpoint is set at. We'll
1243 skip inserting all breakpoints here. Valid iff ASPACE is
1245 struct address_space *aspace;
1248 /* The instruction being stepped over triggers a nonsteppable
1249 watchpoint. If true, we'll skip inserting watchpoints. */
1250 int nonsteppable_watchpoint_p;
1253 /* The step-over info of the location that is being stepped over.
1255 Note that with async/breakpoint always-inserted mode, a user might
1256 set a new breakpoint/watchpoint/etc. exactly while a breakpoint is
1257 being stepped over. As setting a new breakpoint inserts all
1258 breakpoints, we need to make sure the breakpoint being stepped over
1259 isn't inserted then. We do that by only clearing the step-over
1260 info when the step-over is actually finished (or aborted).
1262 Presently GDB can only step over one breakpoint at any given time.
1263 Given threads that can't run code in the same address space as the
1264 breakpoint's can't really miss the breakpoint, GDB could be taught
1265 to step-over at most one breakpoint per address space (so this info
1266 could move to the address space object if/when GDB is extended).
1267 The set of breakpoints being stepped over will normally be much
1268 smaller than the set of all breakpoints, so a flag in the
1269 breakpoint location structure would be wasteful. A separate list
1270 also saves complexity and run-time, as otherwise we'd have to go
1271 through all breakpoint locations clearing their flag whenever we
1272 start a new sequence. Similar considerations weigh against storing
1273 this info in the thread object. Plus, not all step overs actually
1274 have breakpoint locations -- e.g., stepping past a single-step
1275 breakpoint, or stepping to complete a non-continuable
1277 static struct step_over_info step_over_info;
1279 /* Record the address of the breakpoint/instruction we're currently
1283 set_step_over_info (struct address_space *aspace, CORE_ADDR address,
1284 int nonsteppable_watchpoint_p)
1286 step_over_info.aspace = aspace;
1287 step_over_info.address = address;
1288 step_over_info.nonsteppable_watchpoint_p = nonsteppable_watchpoint_p;
1291 /* Called when we're not longer stepping over a breakpoint / an
1292 instruction, so all breakpoints are free to be (re)inserted. */
1295 clear_step_over_info (void)
1297 step_over_info.aspace = NULL;
1298 step_over_info.address = 0;
1299 step_over_info.nonsteppable_watchpoint_p = 0;
1305 stepping_past_instruction_at (struct address_space *aspace,
1308 return (step_over_info.aspace != NULL
1309 && breakpoint_address_match (aspace, address,
1310 step_over_info.aspace,
1311 step_over_info.address));
1317 stepping_past_nonsteppable_watchpoint (void)
1319 return step_over_info.nonsteppable_watchpoint_p;
1322 /* Returns true if step-over info is valid. */
1325 step_over_info_valid_p (void)
1327 return (step_over_info.aspace != NULL
1328 || stepping_past_nonsteppable_watchpoint ());
1332 /* Displaced stepping. */
1334 /* In non-stop debugging mode, we must take special care to manage
1335 breakpoints properly; in particular, the traditional strategy for
1336 stepping a thread past a breakpoint it has hit is unsuitable.
1337 'Displaced stepping' is a tactic for stepping one thread past a
1338 breakpoint it has hit while ensuring that other threads running
1339 concurrently will hit the breakpoint as they should.
1341 The traditional way to step a thread T off a breakpoint in a
1342 multi-threaded program in all-stop mode is as follows:
1344 a0) Initially, all threads are stopped, and breakpoints are not
1346 a1) We single-step T, leaving breakpoints uninserted.
1347 a2) We insert breakpoints, and resume all threads.
1349 In non-stop debugging, however, this strategy is unsuitable: we
1350 don't want to have to stop all threads in the system in order to
1351 continue or step T past a breakpoint. Instead, we use displaced
1354 n0) Initially, T is stopped, other threads are running, and
1355 breakpoints are inserted.
1356 n1) We copy the instruction "under" the breakpoint to a separate
1357 location, outside the main code stream, making any adjustments
1358 to the instruction, register, and memory state as directed by
1360 n2) We single-step T over the instruction at its new location.
1361 n3) We adjust the resulting register and memory state as directed
1362 by T's architecture. This includes resetting T's PC to point
1363 back into the main instruction stream.
1366 This approach depends on the following gdbarch methods:
1368 - gdbarch_max_insn_length and gdbarch_displaced_step_location
1369 indicate where to copy the instruction, and how much space must
1370 be reserved there. We use these in step n1.
1372 - gdbarch_displaced_step_copy_insn copies a instruction to a new
1373 address, and makes any necessary adjustments to the instruction,
1374 register contents, and memory. We use this in step n1.
1376 - gdbarch_displaced_step_fixup adjusts registers and memory after
1377 we have successfuly single-stepped the instruction, to yield the
1378 same effect the instruction would have had if we had executed it
1379 at its original address. We use this in step n3.
1381 - gdbarch_displaced_step_free_closure provides cleanup.
1383 The gdbarch_displaced_step_copy_insn and
1384 gdbarch_displaced_step_fixup functions must be written so that
1385 copying an instruction with gdbarch_displaced_step_copy_insn,
1386 single-stepping across the copied instruction, and then applying
1387 gdbarch_displaced_insn_fixup should have the same effects on the
1388 thread's memory and registers as stepping the instruction in place
1389 would have. Exactly which responsibilities fall to the copy and
1390 which fall to the fixup is up to the author of those functions.
1392 See the comments in gdbarch.sh for details.
1394 Note that displaced stepping and software single-step cannot
1395 currently be used in combination, although with some care I think
1396 they could be made to. Software single-step works by placing
1397 breakpoints on all possible subsequent instructions; if the
1398 displaced instruction is a PC-relative jump, those breakpoints
1399 could fall in very strange places --- on pages that aren't
1400 executable, or at addresses that are not proper instruction
1401 boundaries. (We do generally let other threads run while we wait
1402 to hit the software single-step breakpoint, and they might
1403 encounter such a corrupted instruction.) One way to work around
1404 this would be to have gdbarch_displaced_step_copy_insn fully
1405 simulate the effect of PC-relative instructions (and return NULL)
1406 on architectures that use software single-stepping.
1408 In non-stop mode, we can have independent and simultaneous step
1409 requests, so more than one thread may need to simultaneously step
1410 over a breakpoint. The current implementation assumes there is
1411 only one scratch space per process. In this case, we have to
1412 serialize access to the scratch space. If thread A wants to step
1413 over a breakpoint, but we are currently waiting for some other
1414 thread to complete a displaced step, we leave thread A stopped and
1415 place it in the displaced_step_request_queue. Whenever a displaced
1416 step finishes, we pick the next thread in the queue and start a new
1417 displaced step operation on it. See displaced_step_prepare and
1418 displaced_step_fixup for details. */
1420 struct displaced_step_request
1423 struct displaced_step_request *next;
1426 /* Per-inferior displaced stepping state. */
1427 struct displaced_step_inferior_state
1429 /* Pointer to next in linked list. */
1430 struct displaced_step_inferior_state *next;
1432 /* The process this displaced step state refers to. */
1435 /* A queue of pending displaced stepping requests. One entry per
1436 thread that needs to do a displaced step. */
1437 struct displaced_step_request *step_request_queue;
1439 /* If this is not null_ptid, this is the thread carrying out a
1440 displaced single-step in process PID. This thread's state will
1441 require fixing up once it has completed its step. */
1444 /* The architecture the thread had when we stepped it. */
1445 struct gdbarch *step_gdbarch;
1447 /* The closure provided gdbarch_displaced_step_copy_insn, to be used
1448 for post-step cleanup. */
1449 struct displaced_step_closure *step_closure;
1451 /* The address of the original instruction, and the copy we
1453 CORE_ADDR step_original, step_copy;
1455 /* Saved contents of copy area. */
1456 gdb_byte *step_saved_copy;
1459 /* The list of states of processes involved in displaced stepping
1461 static struct displaced_step_inferior_state *displaced_step_inferior_states;
1463 /* Get the displaced stepping state of process PID. */
1465 static struct displaced_step_inferior_state *
1466 get_displaced_stepping_state (int pid)
1468 struct displaced_step_inferior_state *state;
1470 for (state = displaced_step_inferior_states;
1472 state = state->next)
1473 if (state->pid == pid)
1479 /* Return true if process PID has a thread doing a displaced step. */
1482 displaced_step_in_progress (int pid)
1484 struct displaced_step_inferior_state *displaced;
1486 displaced = get_displaced_stepping_state (pid);
1487 if (displaced != NULL && !ptid_equal (displaced->step_ptid, null_ptid))
1493 /* Add a new displaced stepping state for process PID to the displaced
1494 stepping state list, or return a pointer to an already existing
1495 entry, if it already exists. Never returns NULL. */
1497 static struct displaced_step_inferior_state *
1498 add_displaced_stepping_state (int pid)
1500 struct displaced_step_inferior_state *state;
1502 for (state = displaced_step_inferior_states;
1504 state = state->next)
1505 if (state->pid == pid)
1508 state = xcalloc (1, sizeof (*state));
1510 state->next = displaced_step_inferior_states;
1511 displaced_step_inferior_states = state;
1516 /* If inferior is in displaced stepping, and ADDR equals to starting address
1517 of copy area, return corresponding displaced_step_closure. Otherwise,
1520 struct displaced_step_closure*
1521 get_displaced_step_closure_by_addr (CORE_ADDR addr)
1523 struct displaced_step_inferior_state *displaced
1524 = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
1526 /* If checking the mode of displaced instruction in copy area. */
1527 if (displaced && !ptid_equal (displaced->step_ptid, null_ptid)
1528 && (displaced->step_copy == addr))
1529 return displaced->step_closure;
1534 /* Remove the displaced stepping state of process PID. */
1537 remove_displaced_stepping_state (int pid)
1539 struct displaced_step_inferior_state *it, **prev_next_p;
1541 gdb_assert (pid != 0);
1543 it = displaced_step_inferior_states;
1544 prev_next_p = &displaced_step_inferior_states;
1549 *prev_next_p = it->next;
1554 prev_next_p = &it->next;
1560 infrun_inferior_exit (struct inferior *inf)
1562 remove_displaced_stepping_state (inf->pid);
1565 /* If ON, and the architecture supports it, GDB will use displaced
1566 stepping to step over breakpoints. If OFF, or if the architecture
1567 doesn't support it, GDB will instead use the traditional
1568 hold-and-step approach. If AUTO (which is the default), GDB will
1569 decide which technique to use to step over breakpoints depending on
1570 which of all-stop or non-stop mode is active --- displaced stepping
1571 in non-stop mode; hold-and-step in all-stop mode. */
1573 static enum auto_boolean can_use_displaced_stepping = AUTO_BOOLEAN_AUTO;
1576 show_can_use_displaced_stepping (struct ui_file *file, int from_tty,
1577 struct cmd_list_element *c,
1580 if (can_use_displaced_stepping == AUTO_BOOLEAN_AUTO)
1581 fprintf_filtered (file,
1582 _("Debugger's willingness to use displaced stepping "
1583 "to step over breakpoints is %s (currently %s).\n"),
1584 value, non_stop ? "on" : "off");
1586 fprintf_filtered (file,
1587 _("Debugger's willingness to use displaced stepping "
1588 "to step over breakpoints is %s.\n"), value);
1591 /* Return non-zero if displaced stepping can/should be used to step
1592 over breakpoints. */
1595 use_displaced_stepping (struct gdbarch *gdbarch)
1597 return (((can_use_displaced_stepping == AUTO_BOOLEAN_AUTO && non_stop)
1598 || can_use_displaced_stepping == AUTO_BOOLEAN_TRUE)
1599 && gdbarch_displaced_step_copy_insn_p (gdbarch)
1600 && find_record_target () == NULL);
1603 /* Clean out any stray displaced stepping state. */
1605 displaced_step_clear (struct displaced_step_inferior_state *displaced)
1607 /* Indicate that there is no cleanup pending. */
1608 displaced->step_ptid = null_ptid;
1610 if (displaced->step_closure)
1612 gdbarch_displaced_step_free_closure (displaced->step_gdbarch,
1613 displaced->step_closure);
1614 displaced->step_closure = NULL;
1619 displaced_step_clear_cleanup (void *arg)
1621 struct displaced_step_inferior_state *state = arg;
1623 displaced_step_clear (state);
1626 /* Dump LEN bytes at BUF in hex to FILE, followed by a newline. */
1628 displaced_step_dump_bytes (struct ui_file *file,
1629 const gdb_byte *buf,
1634 for (i = 0; i < len; i++)
1635 fprintf_unfiltered (file, "%02x ", buf[i]);
1636 fputs_unfiltered ("\n", file);
1639 /* Prepare to single-step, using displaced stepping.
1641 Note that we cannot use displaced stepping when we have a signal to
1642 deliver. If we have a signal to deliver and an instruction to step
1643 over, then after the step, there will be no indication from the
1644 target whether the thread entered a signal handler or ignored the
1645 signal and stepped over the instruction successfully --- both cases
1646 result in a simple SIGTRAP. In the first case we mustn't do a
1647 fixup, and in the second case we must --- but we can't tell which.
1648 Comments in the code for 'random signals' in handle_inferior_event
1649 explain how we handle this case instead.
1651 Returns 1 if preparing was successful -- this thread is going to be
1652 stepped now; or 0 if displaced stepping this thread got queued. */
1654 displaced_step_prepare (ptid_t ptid)
1656 struct cleanup *old_cleanups, *ignore_cleanups;
1657 struct thread_info *tp = find_thread_ptid (ptid);
1658 struct regcache *regcache = get_thread_regcache (ptid);
1659 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1660 CORE_ADDR original, copy;
1662 struct displaced_step_closure *closure;
1663 struct displaced_step_inferior_state *displaced;
1666 /* We should never reach this function if the architecture does not
1667 support displaced stepping. */
1668 gdb_assert (gdbarch_displaced_step_copy_insn_p (gdbarch));
1670 /* Disable range stepping while executing in the scratch pad. We
1671 want a single-step even if executing the displaced instruction in
1672 the scratch buffer lands within the stepping range (e.g., a
1674 tp->control.may_range_step = 0;
1676 /* We have to displaced step one thread at a time, as we only have
1677 access to a single scratch space per inferior. */
1679 displaced = add_displaced_stepping_state (ptid_get_pid (ptid));
1681 if (!ptid_equal (displaced->step_ptid, null_ptid))
1683 /* Already waiting for a displaced step to finish. Defer this
1684 request and place in queue. */
1685 struct displaced_step_request *req, *new_req;
1687 if (debug_displaced)
1688 fprintf_unfiltered (gdb_stdlog,
1689 "displaced: defering step of %s\n",
1690 target_pid_to_str (ptid));
1692 new_req = xmalloc (sizeof (*new_req));
1693 new_req->ptid = ptid;
1694 new_req->next = NULL;
1696 if (displaced->step_request_queue)
1698 for (req = displaced->step_request_queue;
1702 req->next = new_req;
1705 displaced->step_request_queue = new_req;
1711 if (debug_displaced)
1712 fprintf_unfiltered (gdb_stdlog,
1713 "displaced: stepping %s now\n",
1714 target_pid_to_str (ptid));
1717 displaced_step_clear (displaced);
1719 old_cleanups = save_inferior_ptid ();
1720 inferior_ptid = ptid;
1722 original = regcache_read_pc (regcache);
1724 copy = gdbarch_displaced_step_location (gdbarch);
1725 len = gdbarch_max_insn_length (gdbarch);
1727 /* Save the original contents of the copy area. */
1728 displaced->step_saved_copy = xmalloc (len);
1729 ignore_cleanups = make_cleanup (free_current_contents,
1730 &displaced->step_saved_copy);
1731 status = target_read_memory (copy, displaced->step_saved_copy, len);
1733 throw_error (MEMORY_ERROR,
1734 _("Error accessing memory address %s (%s) for "
1735 "displaced-stepping scratch space."),
1736 paddress (gdbarch, copy), safe_strerror (status));
1737 if (debug_displaced)
1739 fprintf_unfiltered (gdb_stdlog, "displaced: saved %s: ",
1740 paddress (gdbarch, copy));
1741 displaced_step_dump_bytes (gdb_stdlog,
1742 displaced->step_saved_copy,
1746 closure = gdbarch_displaced_step_copy_insn (gdbarch,
1747 original, copy, regcache);
1749 /* We don't support the fully-simulated case at present. */
1750 gdb_assert (closure);
1752 /* Save the information we need to fix things up if the step
1754 displaced->step_ptid = ptid;
1755 displaced->step_gdbarch = gdbarch;
1756 displaced->step_closure = closure;
1757 displaced->step_original = original;
1758 displaced->step_copy = copy;
1760 make_cleanup (displaced_step_clear_cleanup, displaced);
1762 /* Resume execution at the copy. */
1763 regcache_write_pc (regcache, copy);
1765 discard_cleanups (ignore_cleanups);
1767 do_cleanups (old_cleanups);
1769 if (debug_displaced)
1770 fprintf_unfiltered (gdb_stdlog, "displaced: displaced pc to %s\n",
1771 paddress (gdbarch, copy));
1777 write_memory_ptid (ptid_t ptid, CORE_ADDR memaddr,
1778 const gdb_byte *myaddr, int len)
1780 struct cleanup *ptid_cleanup = save_inferior_ptid ();
1782 inferior_ptid = ptid;
1783 write_memory (memaddr, myaddr, len);
1784 do_cleanups (ptid_cleanup);
1787 /* Restore the contents of the copy area for thread PTID. */
1790 displaced_step_restore (struct displaced_step_inferior_state *displaced,
1793 ULONGEST len = gdbarch_max_insn_length (displaced->step_gdbarch);
1795 write_memory_ptid (ptid, displaced->step_copy,
1796 displaced->step_saved_copy, len);
1797 if (debug_displaced)
1798 fprintf_unfiltered (gdb_stdlog, "displaced: restored %s %s\n",
1799 target_pid_to_str (ptid),
1800 paddress (displaced->step_gdbarch,
1801 displaced->step_copy));
1805 displaced_step_fixup (ptid_t event_ptid, enum gdb_signal signal)
1807 struct cleanup *old_cleanups;
1808 struct displaced_step_inferior_state *displaced
1809 = get_displaced_stepping_state (ptid_get_pid (event_ptid));
1811 /* Was any thread of this process doing a displaced step? */
1812 if (displaced == NULL)
1815 /* Was this event for the pid we displaced? */
1816 if (ptid_equal (displaced->step_ptid, null_ptid)
1817 || ! ptid_equal (displaced->step_ptid, event_ptid))
1820 old_cleanups = make_cleanup (displaced_step_clear_cleanup, displaced);
1822 displaced_step_restore (displaced, displaced->step_ptid);
1824 /* Fixup may need to read memory/registers. Switch to the thread
1825 that we're fixing up. Also, target_stopped_by_watchpoint checks
1826 the current thread. */
1827 switch_to_thread (event_ptid);
1829 /* Did the instruction complete successfully? */
1830 if (signal == GDB_SIGNAL_TRAP
1831 && !(target_stopped_by_watchpoint ()
1832 && (gdbarch_have_nonsteppable_watchpoint (displaced->step_gdbarch)
1833 || target_have_steppable_watchpoint)))
1835 /* Fix up the resulting state. */
1836 gdbarch_displaced_step_fixup (displaced->step_gdbarch,
1837 displaced->step_closure,
1838 displaced->step_original,
1839 displaced->step_copy,
1840 get_thread_regcache (displaced->step_ptid));
1844 /* Since the instruction didn't complete, all we can do is
1846 struct regcache *regcache = get_thread_regcache (event_ptid);
1847 CORE_ADDR pc = regcache_read_pc (regcache);
1849 pc = displaced->step_original + (pc - displaced->step_copy);
1850 regcache_write_pc (regcache, pc);
1853 do_cleanups (old_cleanups);
1855 displaced->step_ptid = null_ptid;
1857 /* Are there any pending displaced stepping requests? If so, run
1858 one now. Leave the state object around, since we're likely to
1859 need it again soon. */
1860 while (displaced->step_request_queue)
1862 struct displaced_step_request *head;
1864 struct regcache *regcache;
1865 struct gdbarch *gdbarch;
1866 CORE_ADDR actual_pc;
1867 struct address_space *aspace;
1869 head = displaced->step_request_queue;
1871 displaced->step_request_queue = head->next;
1874 context_switch (ptid);
1876 regcache = get_thread_regcache (ptid);
1877 actual_pc = regcache_read_pc (regcache);
1878 aspace = get_regcache_aspace (regcache);
1879 gdbarch = get_regcache_arch (regcache);
1881 if (breakpoint_here_p (aspace, actual_pc))
1883 if (debug_displaced)
1884 fprintf_unfiltered (gdb_stdlog,
1885 "displaced: stepping queued %s now\n",
1886 target_pid_to_str (ptid));
1888 displaced_step_prepare (ptid);
1890 if (debug_displaced)
1892 CORE_ADDR actual_pc = regcache_read_pc (regcache);
1895 fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
1896 paddress (gdbarch, actual_pc));
1897 read_memory (actual_pc, buf, sizeof (buf));
1898 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
1901 if (gdbarch_displaced_step_hw_singlestep (gdbarch,
1902 displaced->step_closure))
1903 target_resume (ptid, 1, GDB_SIGNAL_0);
1905 target_resume (ptid, 0, GDB_SIGNAL_0);
1907 /* Done, we're stepping a thread. */
1913 struct thread_info *tp = inferior_thread ();
1915 /* The breakpoint we were sitting under has since been
1917 tp->control.trap_expected = 0;
1919 /* Go back to what we were trying to do. */
1920 step = currently_stepping (tp);
1923 step = maybe_software_singlestep (gdbarch, actual_pc);
1925 if (debug_displaced)
1926 fprintf_unfiltered (gdb_stdlog,
1927 "displaced: breakpoint is gone: %s, step(%d)\n",
1928 target_pid_to_str (tp->ptid), step);
1930 target_resume (ptid, step, GDB_SIGNAL_0);
1931 tp->suspend.stop_signal = GDB_SIGNAL_0;
1933 /* This request was discarded. See if there's any other
1934 thread waiting for its turn. */
1939 /* Update global variables holding ptids to hold NEW_PTID if they were
1940 holding OLD_PTID. */
1942 infrun_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
1944 struct displaced_step_request *it;
1945 struct displaced_step_inferior_state *displaced;
1947 if (ptid_equal (inferior_ptid, old_ptid))
1948 inferior_ptid = new_ptid;
1950 for (displaced = displaced_step_inferior_states;
1952 displaced = displaced->next)
1954 if (ptid_equal (displaced->step_ptid, old_ptid))
1955 displaced->step_ptid = new_ptid;
1957 for (it = displaced->step_request_queue; it; it = it->next)
1958 if (ptid_equal (it->ptid, old_ptid))
1959 it->ptid = new_ptid;
1966 /* Things to clean up if we QUIT out of resume (). */
1968 resume_cleanups (void *ignore)
1970 if (!ptid_equal (inferior_ptid, null_ptid))
1971 delete_single_step_breakpoints (inferior_thread ());
1976 static const char schedlock_off[] = "off";
1977 static const char schedlock_on[] = "on";
1978 static const char schedlock_step[] = "step";
1979 static const char *const scheduler_enums[] = {
1985 static const char *scheduler_mode = schedlock_off;
1987 show_scheduler_mode (struct ui_file *file, int from_tty,
1988 struct cmd_list_element *c, const char *value)
1990 fprintf_filtered (file,
1991 _("Mode for locking scheduler "
1992 "during execution is \"%s\".\n"),
1997 set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
1999 if (!target_can_lock_scheduler)
2001 scheduler_mode = schedlock_off;
2002 error (_("Target '%s' cannot support this command."), target_shortname);
2006 /* True if execution commands resume all threads of all processes by
2007 default; otherwise, resume only threads of the current inferior
2009 int sched_multi = 0;
2011 /* Try to setup for software single stepping over the specified location.
2012 Return 1 if target_resume() should use hardware single step.
2014 GDBARCH the current gdbarch.
2015 PC the location to step over. */
2018 maybe_software_singlestep (struct gdbarch *gdbarch, CORE_ADDR pc)
2022 if (execution_direction == EXEC_FORWARD
2023 && gdbarch_software_single_step_p (gdbarch)
2024 && gdbarch_software_single_step (gdbarch, get_current_frame ()))
2034 user_visible_resume_ptid (int step)
2040 /* With non-stop mode on, threads are always handled
2042 resume_ptid = inferior_ptid;
2044 else if ((scheduler_mode == schedlock_on)
2045 || (scheduler_mode == schedlock_step && step))
2047 /* User-settable 'scheduler' mode requires solo thread
2049 resume_ptid = inferior_ptid;
2051 else if (!sched_multi && target_supports_multi_process ())
2053 /* Resume all threads of the current process (and none of other
2055 resume_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
2059 /* Resume all threads of all processes. */
2060 resume_ptid = RESUME_ALL;
2066 /* Wrapper for target_resume, that handles infrun-specific
2070 do_target_resume (ptid_t resume_ptid, int step, enum gdb_signal sig)
2072 struct thread_info *tp = inferior_thread ();
2074 /* Install inferior's terminal modes. */
2075 target_terminal_inferior ();
2077 /* Avoid confusing the next resume, if the next stop/resume
2078 happens to apply to another thread. */
2079 tp->suspend.stop_signal = GDB_SIGNAL_0;
2081 /* Advise target which signals may be handled silently.
2083 If we have removed breakpoints because we are stepping over one
2084 in-line (in any thread), we need to receive all signals to avoid
2085 accidentally skipping a breakpoint during execution of a signal
2088 Likewise if we're displaced stepping, otherwise a trap for a
2089 breakpoint in a signal handler might be confused with the
2090 displaced step finishing. We don't make the displaced_step_fixup
2091 step distinguish the cases instead, because:
2093 - a backtrace while stopped in the signal handler would show the
2094 scratch pad as frame older than the signal handler, instead of
2095 the real mainline code.
2097 - when the thread is later resumed, the signal handler would
2098 return to the scratch pad area, which would no longer be
2100 if (step_over_info_valid_p ()
2101 || displaced_step_in_progress (ptid_get_pid (tp->ptid)))
2102 target_pass_signals (0, NULL);
2104 target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
2106 target_resume (resume_ptid, step, sig);
2109 /* Resume the inferior, but allow a QUIT. This is useful if the user
2110 wants to interrupt some lengthy single-stepping operation
2111 (for child processes, the SIGINT goes to the inferior, and so
2112 we get a SIGINT random_signal, but for remote debugging and perhaps
2113 other targets, that's not true).
2115 SIG is the signal to give the inferior (zero for none). */
2117 resume (enum gdb_signal sig)
2119 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
2120 struct regcache *regcache = get_current_regcache ();
2121 struct gdbarch *gdbarch = get_regcache_arch (regcache);
2122 struct thread_info *tp = inferior_thread ();
2123 CORE_ADDR pc = regcache_read_pc (regcache);
2124 struct address_space *aspace = get_regcache_aspace (regcache);
2126 /* This represents the user's step vs continue request. When
2127 deciding whether "set scheduler-locking step" applies, it's the
2128 user's intention that counts. */
2129 const int user_step = tp->control.stepping_command;
2130 /* This represents what we'll actually request the target to do.
2131 This can decay from a step to a continue, if e.g., we need to
2132 implement single-stepping with breakpoints (software
2136 tp->stepped_breakpoint = 0;
2140 /* Depends on stepped_breakpoint. */
2141 step = currently_stepping (tp);
2143 if (current_inferior ()->waiting_for_vfork_done)
2145 /* Don't try to single-step a vfork parent that is waiting for
2146 the child to get out of the shared memory region (by exec'ing
2147 or exiting). This is particularly important on software
2148 single-step archs, as the child process would trip on the
2149 software single step breakpoint inserted for the parent
2150 process. Since the parent will not actually execute any
2151 instruction until the child is out of the shared region (such
2152 are vfork's semantics), it is safe to simply continue it.
2153 Eventually, we'll see a TARGET_WAITKIND_VFORK_DONE event for
2154 the parent, and tell it to `keep_going', which automatically
2155 re-sets it stepping. */
2157 fprintf_unfiltered (gdb_stdlog,
2158 "infrun: resume : clear step\n");
2163 fprintf_unfiltered (gdb_stdlog,
2164 "infrun: resume (step=%d, signal=%s), "
2165 "trap_expected=%d, current thread [%s] at %s\n",
2166 step, gdb_signal_to_symbol_string (sig),
2167 tp->control.trap_expected,
2168 target_pid_to_str (inferior_ptid),
2169 paddress (gdbarch, pc));
2171 /* Normally, by the time we reach `resume', the breakpoints are either
2172 removed or inserted, as appropriate. The exception is if we're sitting
2173 at a permanent breakpoint; we need to step over it, but permanent
2174 breakpoints can't be removed. So we have to test for it here. */
2175 if (breakpoint_here_p (aspace, pc) == permanent_breakpoint_here)
2177 if (sig != GDB_SIGNAL_0)
2179 /* We have a signal to pass to the inferior. The resume
2180 may, or may not take us to the signal handler. If this
2181 is a step, we'll need to stop in the signal handler, if
2182 there's one, (if the target supports stepping into
2183 handlers), or in the next mainline instruction, if
2184 there's no handler. If this is a continue, we need to be
2185 sure to run the handler with all breakpoints inserted.
2186 In all cases, set a breakpoint at the current address
2187 (where the handler returns to), and once that breakpoint
2188 is hit, resume skipping the permanent breakpoint. If
2189 that breakpoint isn't hit, then we've stepped into the
2190 signal handler (or hit some other event). We'll delete
2191 the step-resume breakpoint then. */
2194 fprintf_unfiltered (gdb_stdlog,
2195 "infrun: resume: skipping permanent breakpoint, "
2196 "deliver signal first\n");
2198 clear_step_over_info ();
2199 tp->control.trap_expected = 0;
2201 if (tp->control.step_resume_breakpoint == NULL)
2203 /* Set a "high-priority" step-resume, as we don't want
2204 user breakpoints at PC to trigger (again) when this
2206 insert_hp_step_resume_breakpoint_at_frame (get_current_frame ());
2207 gdb_assert (tp->control.step_resume_breakpoint->loc->permanent);
2209 tp->step_after_step_resume_breakpoint = step;
2212 insert_breakpoints ();
2216 /* There's no signal to pass, we can go ahead and skip the
2217 permanent breakpoint manually. */
2219 fprintf_unfiltered (gdb_stdlog,
2220 "infrun: resume: skipping permanent breakpoint\n");
2221 gdbarch_skip_permanent_breakpoint (gdbarch, regcache);
2222 /* Update pc to reflect the new address from which we will
2223 execute instructions. */
2224 pc = regcache_read_pc (regcache);
2228 /* We've already advanced the PC, so the stepping part
2229 is done. Now we need to arrange for a trap to be
2230 reported to handle_inferior_event. Set a breakpoint
2231 at the current PC, and run to it. Don't update
2232 prev_pc, because if we end in
2233 switch_back_to_stepped_thread, we want the "expected
2234 thread advanced also" branch to be taken. IOW, we
2235 don't want this thread to step further from PC
2237 gdb_assert (!step_over_info_valid_p ());
2238 insert_single_step_breakpoint (gdbarch, aspace, pc);
2239 insert_breakpoints ();
2241 resume_ptid = user_visible_resume_ptid (user_step);
2242 do_target_resume (resume_ptid, 0, GDB_SIGNAL_0);
2243 discard_cleanups (old_cleanups);
2249 /* If we have a breakpoint to step over, make sure to do a single
2250 step only. Same if we have software watchpoints. */
2251 if (tp->control.trap_expected || bpstat_should_step ())
2252 tp->control.may_range_step = 0;
2254 /* If enabled, step over breakpoints by executing a copy of the
2255 instruction at a different address.
2257 We can't use displaced stepping when we have a signal to deliver;
2258 the comments for displaced_step_prepare explain why. The
2259 comments in the handle_inferior event for dealing with 'random
2260 signals' explain what we do instead.
2262 We can't use displaced stepping when we are waiting for vfork_done
2263 event, displaced stepping breaks the vfork child similarly as single
2264 step software breakpoint. */
2265 if (use_displaced_stepping (gdbarch)
2266 && tp->control.trap_expected
2267 && !step_over_info_valid_p ()
2268 && sig == GDB_SIGNAL_0
2269 && !current_inferior ()->waiting_for_vfork_done)
2271 struct displaced_step_inferior_state *displaced;
2273 if (!displaced_step_prepare (inferior_ptid))
2275 /* Got placed in displaced stepping queue. Will be resumed
2276 later when all the currently queued displaced stepping
2277 requests finish. The thread is not executing at this
2278 point, and the call to set_executing will be made later.
2279 But we need to call set_running here, since from the
2280 user/frontend's point of view, threads were set running. */
2281 set_running (user_visible_resume_ptid (user_step), 1);
2282 discard_cleanups (old_cleanups);
2286 /* Update pc to reflect the new address from which we will execute
2287 instructions due to displaced stepping. */
2288 pc = regcache_read_pc (get_thread_regcache (inferior_ptid));
2290 displaced = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
2291 step = gdbarch_displaced_step_hw_singlestep (gdbarch,
2292 displaced->step_closure);
2295 /* Do we need to do it the hard way, w/temp breakpoints? */
2297 step = maybe_software_singlestep (gdbarch, pc);
2299 /* Currently, our software single-step implementation leads to different
2300 results than hardware single-stepping in one situation: when stepping
2301 into delivering a signal which has an associated signal handler,
2302 hardware single-step will stop at the first instruction of the handler,
2303 while software single-step will simply skip execution of the handler.
2305 For now, this difference in behavior is accepted since there is no
2306 easy way to actually implement single-stepping into a signal handler
2307 without kernel support.
2309 However, there is one scenario where this difference leads to follow-on
2310 problems: if we're stepping off a breakpoint by removing all breakpoints
2311 and then single-stepping. In this case, the software single-step
2312 behavior means that even if there is a *breakpoint* in the signal
2313 handler, GDB still would not stop.
2315 Fortunately, we can at least fix this particular issue. We detect
2316 here the case where we are about to deliver a signal while software
2317 single-stepping with breakpoints removed. In this situation, we
2318 revert the decisions to remove all breakpoints and insert single-
2319 step breakpoints, and instead we install a step-resume breakpoint
2320 at the current address, deliver the signal without stepping, and
2321 once we arrive back at the step-resume breakpoint, actually step
2322 over the breakpoint we originally wanted to step over. */
2323 if (thread_has_single_step_breakpoints_set (tp)
2324 && sig != GDB_SIGNAL_0
2325 && step_over_info_valid_p ())
2327 /* If we have nested signals or a pending signal is delivered
2328 immediately after a handler returns, might might already have
2329 a step-resume breakpoint set on the earlier handler. We cannot
2330 set another step-resume breakpoint; just continue on until the
2331 original breakpoint is hit. */
2332 if (tp->control.step_resume_breakpoint == NULL)
2334 insert_hp_step_resume_breakpoint_at_frame (get_current_frame ());
2335 tp->step_after_step_resume_breakpoint = 1;
2338 delete_single_step_breakpoints (tp);
2340 clear_step_over_info ();
2341 tp->control.trap_expected = 0;
2343 insert_breakpoints ();
2346 /* If STEP is set, it's a request to use hardware stepping
2347 facilities. But in that case, we should never
2348 use singlestep breakpoint. */
2349 gdb_assert (!(thread_has_single_step_breakpoints_set (tp) && step));
2351 /* Decide the set of threads to ask the target to resume. Start
2352 by assuming everything will be resumed, than narrow the set
2353 by applying increasingly restricting conditions. */
2354 resume_ptid = user_visible_resume_ptid (user_step);
2356 /* Even if RESUME_PTID is a wildcard, and we end up resuming less
2357 (e.g., we might need to step over a breakpoint), from the
2358 user/frontend's point of view, all threads in RESUME_PTID are now
2360 set_running (resume_ptid, 1);
2362 /* Maybe resume a single thread after all. */
2363 if ((step || thread_has_single_step_breakpoints_set (tp))
2364 && tp->control.trap_expected)
2366 /* We're allowing a thread to run past a breakpoint it has
2367 hit, by single-stepping the thread with the breakpoint
2368 removed. In which case, we need to single-step only this
2369 thread, and keep others stopped, as they can miss this
2370 breakpoint if allowed to run. */
2371 resume_ptid = inferior_ptid;
2374 if (execution_direction != EXEC_REVERSE
2375 && step && breakpoint_inserted_here_p (aspace, pc))
2377 /* The only case we currently need to step a breakpoint
2378 instruction is when we have a signal to deliver. See
2379 handle_signal_stop where we handle random signals that could
2380 take out us out of the stepping range. Normally, in that
2381 case we end up continuing (instead of stepping) over the
2382 signal handler with a breakpoint at PC, but there are cases
2383 where we should _always_ single-step, even if we have a
2384 step-resume breakpoint, like when a software watchpoint is
2385 set. Assuming single-stepping and delivering a signal at the
2386 same time would takes us to the signal handler, then we could
2387 have removed the breakpoint at PC to step over it. However,
2388 some hardware step targets (like e.g., Mac OS) can't step
2389 into signal handlers, and for those, we need to leave the
2390 breakpoint at PC inserted, as otherwise if the handler
2391 recurses and executes PC again, it'll miss the breakpoint.
2392 So we leave the breakpoint inserted anyway, but we need to
2393 record that we tried to step a breakpoint instruction, so
2394 that adjust_pc_after_break doesn't end up confused. */
2395 gdb_assert (sig != GDB_SIGNAL_0);
2397 tp->stepped_breakpoint = 1;
2399 /* Most targets can step a breakpoint instruction, thus
2400 executing it normally. But if this one cannot, just
2401 continue and we will hit it anyway. */
2402 if (gdbarch_cannot_step_breakpoint (gdbarch))
2407 && use_displaced_stepping (gdbarch)
2408 && tp->control.trap_expected
2409 && !step_over_info_valid_p ())
2411 struct regcache *resume_regcache = get_thread_regcache (tp->ptid);
2412 struct gdbarch *resume_gdbarch = get_regcache_arch (resume_regcache);
2413 CORE_ADDR actual_pc = regcache_read_pc (resume_regcache);
2416 fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
2417 paddress (resume_gdbarch, actual_pc));
2418 read_memory (actual_pc, buf, sizeof (buf));
2419 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
2422 if (tp->control.may_range_step)
2424 /* If we're resuming a thread with the PC out of the step
2425 range, then we're doing some nested/finer run control
2426 operation, like stepping the thread out of the dynamic
2427 linker or the displaced stepping scratch pad. We
2428 shouldn't have allowed a range step then. */
2429 gdb_assert (pc_in_thread_step_range (pc, tp));
2432 do_target_resume (resume_ptid, step, sig);
2433 discard_cleanups (old_cleanups);
2438 /* Clear out all variables saying what to do when inferior is continued.
2439 First do this, then set the ones you want, then call `proceed'. */
2442 clear_proceed_status_thread (struct thread_info *tp)
2445 fprintf_unfiltered (gdb_stdlog,
2446 "infrun: clear_proceed_status_thread (%s)\n",
2447 target_pid_to_str (tp->ptid));
2449 /* If this signal should not be seen by program, give it zero.
2450 Used for debugging signals. */
2451 if (!signal_pass_state (tp->suspend.stop_signal))
2452 tp->suspend.stop_signal = GDB_SIGNAL_0;
2454 tp->control.trap_expected = 0;
2455 tp->control.step_range_start = 0;
2456 tp->control.step_range_end = 0;
2457 tp->control.may_range_step = 0;
2458 tp->control.step_frame_id = null_frame_id;
2459 tp->control.step_stack_frame_id = null_frame_id;
2460 tp->control.step_over_calls = STEP_OVER_UNDEBUGGABLE;
2461 tp->control.step_start_function = NULL;
2462 tp->stop_requested = 0;
2464 tp->control.stop_step = 0;
2466 tp->control.proceed_to_finish = 0;
2468 tp->control.command_interp = NULL;
2469 tp->control.stepping_command = 0;
2471 /* Discard any remaining commands or status from previous stop. */
2472 bpstat_clear (&tp->control.stop_bpstat);
2476 clear_proceed_status (int step)
2480 struct thread_info *tp;
2483 resume_ptid = user_visible_resume_ptid (step);
2485 /* In all-stop mode, delete the per-thread status of all threads
2486 we're about to resume, implicitly and explicitly. */
2487 ALL_NON_EXITED_THREADS (tp)
2489 if (!ptid_match (tp->ptid, resume_ptid))
2491 clear_proceed_status_thread (tp);
2495 if (!ptid_equal (inferior_ptid, null_ptid))
2497 struct inferior *inferior;
2501 /* If in non-stop mode, only delete the per-thread status of
2502 the current thread. */
2503 clear_proceed_status_thread (inferior_thread ());
2506 inferior = current_inferior ();
2507 inferior->control.stop_soon = NO_STOP_QUIETLY;
2510 stop_after_trap = 0;
2512 clear_step_over_info ();
2514 observer_notify_about_to_proceed ();
2517 /* Returns true if TP is still stopped at a breakpoint that needs
2518 stepping-over in order to make progress. If the breakpoint is gone
2519 meanwhile, we can skip the whole step-over dance. */
2522 thread_still_needs_step_over_bp (struct thread_info *tp)
2524 if (tp->stepping_over_breakpoint)
2526 struct regcache *regcache = get_thread_regcache (tp->ptid);
2528 if (breakpoint_here_p (get_regcache_aspace (regcache),
2529 regcache_read_pc (regcache))
2530 == ordinary_breakpoint_here)
2533 tp->stepping_over_breakpoint = 0;
2539 /* Check whether thread TP still needs to start a step-over in order
2540 to make progress when resumed. Returns an bitwise or of enum
2541 step_over_what bits, indicating what needs to be stepped over. */
2544 thread_still_needs_step_over (struct thread_info *tp)
2546 struct inferior *inf = find_inferior_ptid (tp->ptid);
2549 if (thread_still_needs_step_over_bp (tp))
2550 what |= STEP_OVER_BREAKPOINT;
2552 if (tp->stepping_over_watchpoint
2553 && !target_have_steppable_watchpoint)
2554 what |= STEP_OVER_WATCHPOINT;
2559 /* Returns true if scheduler locking applies. STEP indicates whether
2560 we're about to do a step/next-like command to a thread. */
2563 schedlock_applies (struct thread_info *tp)
2565 return (scheduler_mode == schedlock_on
2566 || (scheduler_mode == schedlock_step
2567 && tp->control.stepping_command));
2570 /* Look a thread other than EXCEPT that has previously reported a
2571 breakpoint event, and thus needs a step-over in order to make
2572 progress. Returns NULL is none is found. */
2574 static struct thread_info *
2575 find_thread_needs_step_over (struct thread_info *except)
2577 struct thread_info *tp, *current;
2579 /* With non-stop mode on, threads are always handled individually. */
2580 gdb_assert (! non_stop);
2582 current = inferior_thread ();
2584 /* If scheduler locking applies, we can avoid iterating over all
2586 if (schedlock_applies (except))
2588 if (except != current
2589 && thread_still_needs_step_over (current))
2595 ALL_NON_EXITED_THREADS (tp)
2597 /* Ignore the EXCEPT thread. */
2600 /* Ignore threads of processes we're not resuming. */
2602 && ptid_get_pid (tp->ptid) != ptid_get_pid (inferior_ptid))
2605 if (thread_still_needs_step_over (tp))
2612 /* Basic routine for continuing the program in various fashions.
2614 ADDR is the address to resume at, or -1 for resume where stopped.
2615 SIGGNAL is the signal to give it, or 0 for none,
2616 or -1 for act according to how it stopped.
2617 STEP is nonzero if should trap after one instruction.
2618 -1 means return after that and print nothing.
2619 You should probably set various step_... variables
2620 before calling here, if you are stepping.
2622 You should call clear_proceed_status before calling proceed. */
2625 proceed (CORE_ADDR addr, enum gdb_signal siggnal)
2627 struct regcache *regcache;
2628 struct gdbarch *gdbarch;
2629 struct thread_info *tp;
2631 struct address_space *aspace;
2633 /* If we're stopped at a fork/vfork, follow the branch set by the
2634 "set follow-fork-mode" command; otherwise, we'll just proceed
2635 resuming the current thread. */
2636 if (!follow_fork ())
2638 /* The target for some reason decided not to resume. */
2640 if (target_can_async_p ())
2641 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
2645 /* We'll update this if & when we switch to a new thread. */
2646 previous_inferior_ptid = inferior_ptid;
2648 regcache = get_current_regcache ();
2649 gdbarch = get_regcache_arch (regcache);
2650 aspace = get_regcache_aspace (regcache);
2651 pc = regcache_read_pc (regcache);
2652 tp = inferior_thread ();
2654 /* Fill in with reasonable starting values. */
2655 init_thread_stepping_state (tp);
2657 if (addr == (CORE_ADDR) -1)
2660 && breakpoint_here_p (aspace, pc) == ordinary_breakpoint_here
2661 && execution_direction != EXEC_REVERSE)
2662 /* There is a breakpoint at the address we will resume at,
2663 step one instruction before inserting breakpoints so that
2664 we do not stop right away (and report a second hit at this
2667 Note, we don't do this in reverse, because we won't
2668 actually be executing the breakpoint insn anyway.
2669 We'll be (un-)executing the previous instruction. */
2670 tp->stepping_over_breakpoint = 1;
2671 else if (gdbarch_single_step_through_delay_p (gdbarch)
2672 && gdbarch_single_step_through_delay (gdbarch,
2673 get_current_frame ()))
2674 /* We stepped onto an instruction that needs to be stepped
2675 again before re-inserting the breakpoint, do so. */
2676 tp->stepping_over_breakpoint = 1;
2680 regcache_write_pc (regcache, addr);
2683 if (siggnal != GDB_SIGNAL_DEFAULT)
2684 tp->suspend.stop_signal = siggnal;
2686 /* Record the interpreter that issued the execution command that
2687 caused this thread to resume. If the top level interpreter is
2688 MI/async, and the execution command was a CLI command
2689 (next/step/etc.), we'll want to print stop event output to the MI
2690 console channel (the stepped-to line, etc.), as if the user
2691 entered the execution command on a real GDB console. */
2692 inferior_thread ()->control.command_interp = command_interp ();
2695 fprintf_unfiltered (gdb_stdlog,
2696 "infrun: proceed (addr=%s, signal=%s)\n",
2697 paddress (gdbarch, addr),
2698 gdb_signal_to_symbol_string (siggnal));
2701 /* In non-stop, each thread is handled individually. The context
2702 must already be set to the right thread here. */
2706 struct thread_info *step_over;
2708 /* In a multi-threaded task we may select another thread and
2709 then continue or step.
2711 But if the old thread was stopped at a breakpoint, it will
2712 immediately cause another breakpoint stop without any
2713 execution (i.e. it will report a breakpoint hit incorrectly).
2714 So we must step over it first.
2716 Look for a thread other than the current (TP) that reported a
2717 breakpoint hit and hasn't been resumed yet since. */
2718 step_over = find_thread_needs_step_over (tp);
2719 if (step_over != NULL)
2722 fprintf_unfiltered (gdb_stdlog,
2723 "infrun: need to step-over [%s] first\n",
2724 target_pid_to_str (step_over->ptid));
2726 /* Store the prev_pc for the stepping thread too, needed by
2727 switch_back_to_stepped_thread. */
2728 tp->prev_pc = regcache_read_pc (get_current_regcache ());
2729 switch_to_thread (step_over->ptid);
2734 /* If we need to step over a breakpoint, and we're not using
2735 displaced stepping to do so, insert all breakpoints (watchpoints,
2736 etc.) but the one we're stepping over, step one instruction, and
2737 then re-insert the breakpoint when that step is finished. */
2738 if (tp->stepping_over_breakpoint && !use_displaced_stepping (gdbarch))
2740 struct regcache *regcache = get_current_regcache ();
2742 set_step_over_info (get_regcache_aspace (regcache),
2743 regcache_read_pc (regcache), 0);
2746 clear_step_over_info ();
2748 insert_breakpoints ();
2750 tp->control.trap_expected = tp->stepping_over_breakpoint;
2752 annotate_starting ();
2754 /* Make sure that output from GDB appears before output from the
2756 gdb_flush (gdb_stdout);
2758 /* Refresh prev_pc value just prior to resuming. This used to be
2759 done in stop_waiting, however, setting prev_pc there did not handle
2760 scenarios such as inferior function calls or returning from
2761 a function via the return command. In those cases, the prev_pc
2762 value was not set properly for subsequent commands. The prev_pc value
2763 is used to initialize the starting line number in the ecs. With an
2764 invalid value, the gdb next command ends up stopping at the position
2765 represented by the next line table entry past our start position.
2766 On platforms that generate one line table entry per line, this
2767 is not a problem. However, on the ia64, the compiler generates
2768 extraneous line table entries that do not increase the line number.
2769 When we issue the gdb next command on the ia64 after an inferior call
2770 or a return command, we often end up a few instructions forward, still
2771 within the original line we started.
2773 An attempt was made to refresh the prev_pc at the same time the
2774 execution_control_state is initialized (for instance, just before
2775 waiting for an inferior event). But this approach did not work
2776 because of platforms that use ptrace, where the pc register cannot
2777 be read unless the inferior is stopped. At that point, we are not
2778 guaranteed the inferior is stopped and so the regcache_read_pc() call
2779 can fail. Setting the prev_pc value here ensures the value is updated
2780 correctly when the inferior is stopped. */
2781 tp->prev_pc = regcache_read_pc (get_current_regcache ());
2783 /* Resume inferior. */
2784 resume (tp->suspend.stop_signal);
2786 /* Wait for it to stop (if not standalone)
2787 and in any case decode why it stopped, and act accordingly. */
2788 /* Do this only if we are not using the event loop, or if the target
2789 does not support asynchronous execution. */
2790 if (!target_can_async_p ())
2792 wait_for_inferior ();
2798 /* Start remote-debugging of a machine over a serial link. */
2801 start_remote (int from_tty)
2803 struct inferior *inferior;
2805 inferior = current_inferior ();
2806 inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
2808 /* Always go on waiting for the target, regardless of the mode. */
2809 /* FIXME: cagney/1999-09-23: At present it isn't possible to
2810 indicate to wait_for_inferior that a target should timeout if
2811 nothing is returned (instead of just blocking). Because of this,
2812 targets expecting an immediate response need to, internally, set
2813 things up so that the target_wait() is forced to eventually
2815 /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
2816 differentiate to its caller what the state of the target is after
2817 the initial open has been performed. Here we're assuming that
2818 the target has stopped. It should be possible to eventually have
2819 target_open() return to the caller an indication that the target
2820 is currently running and GDB state should be set to the same as
2821 for an async run. */
2822 wait_for_inferior ();
2824 /* Now that the inferior has stopped, do any bookkeeping like
2825 loading shared libraries. We want to do this before normal_stop,
2826 so that the displayed frame is up to date. */
2827 post_create_inferior (¤t_target, from_tty);
2832 /* Initialize static vars when a new inferior begins. */
2835 init_wait_for_inferior (void)
2837 /* These are meaningless until the first time through wait_for_inferior. */
2839 breakpoint_init_inferior (inf_starting);
2841 clear_proceed_status (0);
2843 target_last_wait_ptid = minus_one_ptid;
2845 previous_inferior_ptid = inferior_ptid;
2847 /* Discard any skipped inlined frames. */
2848 clear_inline_frame_state (minus_one_ptid);
2852 /* Data to be passed around while handling an event. This data is
2853 discarded between events. */
2854 struct execution_control_state
2857 /* The thread that got the event, if this was a thread event; NULL
2859 struct thread_info *event_thread;
2861 struct target_waitstatus ws;
2862 int stop_func_filled_in;
2863 CORE_ADDR stop_func_start;
2864 CORE_ADDR stop_func_end;
2865 const char *stop_func_name;
2868 /* True if the event thread hit the single-step breakpoint of
2869 another thread. Thus the event doesn't cause a stop, the thread
2870 needs to be single-stepped past the single-step breakpoint before
2871 we can switch back to the original stepping thread. */
2872 int hit_singlestep_breakpoint;
2875 static void handle_inferior_event (struct execution_control_state *ecs);
2877 static void handle_step_into_function (struct gdbarch *gdbarch,
2878 struct execution_control_state *ecs);
2879 static void handle_step_into_function_backward (struct gdbarch *gdbarch,
2880 struct execution_control_state *ecs);
2881 static void handle_signal_stop (struct execution_control_state *ecs);
2882 static void check_exception_resume (struct execution_control_state *,
2883 struct frame_info *);
2885 static void end_stepping_range (struct execution_control_state *ecs);
2886 static void stop_waiting (struct execution_control_state *ecs);
2887 static void prepare_to_wait (struct execution_control_state *ecs);
2888 static void keep_going (struct execution_control_state *ecs);
2889 static void process_event_stop_test (struct execution_control_state *ecs);
2890 static int switch_back_to_stepped_thread (struct execution_control_state *ecs);
2892 /* Callback for iterate over threads. If the thread is stopped, but
2893 the user/frontend doesn't know about that yet, go through
2894 normal_stop, as if the thread had just stopped now. ARG points at
2895 a ptid. If PTID is MINUS_ONE_PTID, applies to all threads. If
2896 ptid_is_pid(PTID) is true, applies to all threads of the process
2897 pointed at by PTID. Otherwise, apply only to the thread pointed by
2901 infrun_thread_stop_requested_callback (struct thread_info *info, void *arg)
2903 ptid_t ptid = * (ptid_t *) arg;
2905 if ((ptid_equal (info->ptid, ptid)
2906 || ptid_equal (minus_one_ptid, ptid)
2907 || (ptid_is_pid (ptid)
2908 && ptid_get_pid (ptid) == ptid_get_pid (info->ptid)))
2909 && is_running (info->ptid)
2910 && !is_executing (info->ptid))
2912 struct cleanup *old_chain;
2913 struct execution_control_state ecss;
2914 struct execution_control_state *ecs = &ecss;
2916 memset (ecs, 0, sizeof (*ecs));
2918 old_chain = make_cleanup_restore_current_thread ();
2920 overlay_cache_invalid = 1;
2921 /* Flush target cache before starting to handle each event.
2922 Target was running and cache could be stale. This is just a
2923 heuristic. Running threads may modify target memory, but we
2924 don't get any event. */
2925 target_dcache_invalidate ();
2927 /* Go through handle_inferior_event/normal_stop, so we always
2928 have consistent output as if the stop event had been
2930 ecs->ptid = info->ptid;
2931 ecs->event_thread = find_thread_ptid (info->ptid);
2932 ecs->ws.kind = TARGET_WAITKIND_STOPPED;
2933 ecs->ws.value.sig = GDB_SIGNAL_0;
2935 handle_inferior_event (ecs);
2937 if (!ecs->wait_some_more)
2939 struct thread_info *tp;
2943 /* Finish off the continuations. */
2944 tp = inferior_thread ();
2945 do_all_intermediate_continuations_thread (tp, 1);
2946 do_all_continuations_thread (tp, 1);
2949 do_cleanups (old_chain);
2955 /* This function is attached as a "thread_stop_requested" observer.
2956 Cleanup local state that assumed the PTID was to be resumed, and
2957 report the stop to the frontend. */
2960 infrun_thread_stop_requested (ptid_t ptid)
2962 struct displaced_step_inferior_state *displaced;
2964 /* PTID was requested to stop. Remove it from the displaced
2965 stepping queue, so we don't try to resume it automatically. */
2967 for (displaced = displaced_step_inferior_states;
2969 displaced = displaced->next)
2971 struct displaced_step_request *it, **prev_next_p;
2973 it = displaced->step_request_queue;
2974 prev_next_p = &displaced->step_request_queue;
2977 if (ptid_match (it->ptid, ptid))
2979 *prev_next_p = it->next;
2985 prev_next_p = &it->next;
2992 iterate_over_threads (infrun_thread_stop_requested_callback, &ptid);
2996 infrun_thread_thread_exit (struct thread_info *tp, int silent)
2998 if (ptid_equal (target_last_wait_ptid, tp->ptid))
2999 nullify_last_target_wait_ptid ();
3002 /* Delete the step resume, single-step and longjmp/exception resume
3003 breakpoints of TP. */
3006 delete_thread_infrun_breakpoints (struct thread_info *tp)
3008 delete_step_resume_breakpoint (tp);
3009 delete_exception_resume_breakpoint (tp);
3010 delete_single_step_breakpoints (tp);
3013 /* If the target still has execution, call FUNC for each thread that
3014 just stopped. In all-stop, that's all the non-exited threads; in
3015 non-stop, that's the current thread, only. */
3017 typedef void (*for_each_just_stopped_thread_callback_func)
3018 (struct thread_info *tp);
3021 for_each_just_stopped_thread (for_each_just_stopped_thread_callback_func func)
3023 if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
3028 /* If in non-stop mode, only the current thread stopped. */
3029 func (inferior_thread ());
3033 struct thread_info *tp;
3035 /* In all-stop mode, all threads have stopped. */
3036 ALL_NON_EXITED_THREADS (tp)
3043 /* Delete the step resume and longjmp/exception resume breakpoints of
3044 the threads that just stopped. */
3047 delete_just_stopped_threads_infrun_breakpoints (void)
3049 for_each_just_stopped_thread (delete_thread_infrun_breakpoints);
3052 /* Delete the single-step breakpoints of the threads that just
3056 delete_just_stopped_threads_single_step_breakpoints (void)
3058 for_each_just_stopped_thread (delete_single_step_breakpoints);
3061 /* A cleanup wrapper. */
3064 delete_just_stopped_threads_infrun_breakpoints_cleanup (void *arg)
3066 delete_just_stopped_threads_infrun_breakpoints ();
3069 /* Pretty print the results of target_wait, for debugging purposes. */
3072 print_target_wait_results (ptid_t waiton_ptid, ptid_t result_ptid,
3073 const struct target_waitstatus *ws)
3075 char *status_string = target_waitstatus_to_string (ws);
3076 struct ui_file *tmp_stream = mem_fileopen ();
3079 /* The text is split over several lines because it was getting too long.
3080 Call fprintf_unfiltered (gdb_stdlog) once so that the text is still
3081 output as a unit; we want only one timestamp printed if debug_timestamp
3084 fprintf_unfiltered (tmp_stream,
3085 "infrun: target_wait (%d.%ld.%ld",
3086 ptid_get_pid (waiton_ptid),
3087 ptid_get_lwp (waiton_ptid),
3088 ptid_get_tid (waiton_ptid));
3089 if (ptid_get_pid (waiton_ptid) != -1)
3090 fprintf_unfiltered (tmp_stream,
3091 " [%s]", target_pid_to_str (waiton_ptid));
3092 fprintf_unfiltered (tmp_stream, ", status) =\n");
3093 fprintf_unfiltered (tmp_stream,
3094 "infrun: %d.%ld.%ld [%s],\n",
3095 ptid_get_pid (result_ptid),
3096 ptid_get_lwp (result_ptid),
3097 ptid_get_tid (result_ptid),
3098 target_pid_to_str (result_ptid));
3099 fprintf_unfiltered (tmp_stream,
3103 text = ui_file_xstrdup (tmp_stream, NULL);
3105 /* This uses %s in part to handle %'s in the text, but also to avoid
3106 a gcc error: the format attribute requires a string literal. */
3107 fprintf_unfiltered (gdb_stdlog, "%s", text);
3109 xfree (status_string);
3111 ui_file_delete (tmp_stream);
3114 /* Prepare and stabilize the inferior for detaching it. E.g.,
3115 detaching while a thread is displaced stepping is a recipe for
3116 crashing it, as nothing would readjust the PC out of the scratch
3120 prepare_for_detach (void)
3122 struct inferior *inf = current_inferior ();
3123 ptid_t pid_ptid = pid_to_ptid (inf->pid);
3124 struct cleanup *old_chain_1;
3125 struct displaced_step_inferior_state *displaced;
3127 displaced = get_displaced_stepping_state (inf->pid);
3129 /* Is any thread of this process displaced stepping? If not,
3130 there's nothing else to do. */
3131 if (displaced == NULL || ptid_equal (displaced->step_ptid, null_ptid))
3135 fprintf_unfiltered (gdb_stdlog,
3136 "displaced-stepping in-process while detaching");
3138 old_chain_1 = make_cleanup_restore_integer (&inf->detaching);
3141 while (!ptid_equal (displaced->step_ptid, null_ptid))
3143 struct cleanup *old_chain_2;
3144 struct execution_control_state ecss;
3145 struct execution_control_state *ecs;
3148 memset (ecs, 0, sizeof (*ecs));
3150 overlay_cache_invalid = 1;
3151 /* Flush target cache before starting to handle each event.
3152 Target was running and cache could be stale. This is just a
3153 heuristic. Running threads may modify target memory, but we
3154 don't get any event. */
3155 target_dcache_invalidate ();
3157 if (deprecated_target_wait_hook)
3158 ecs->ptid = deprecated_target_wait_hook (pid_ptid, &ecs->ws, 0);
3160 ecs->ptid = target_wait (pid_ptid, &ecs->ws, 0);
3163 print_target_wait_results (pid_ptid, ecs->ptid, &ecs->ws);
3165 /* If an error happens while handling the event, propagate GDB's
3166 knowledge of the executing state to the frontend/user running
3168 old_chain_2 = make_cleanup (finish_thread_state_cleanup,
3171 /* Now figure out what to do with the result of the result. */
3172 handle_inferior_event (ecs);
3174 /* No error, don't finish the state yet. */
3175 discard_cleanups (old_chain_2);
3177 /* Breakpoints and watchpoints are not installed on the target
3178 at this point, and signals are passed directly to the
3179 inferior, so this must mean the process is gone. */
3180 if (!ecs->wait_some_more)
3182 discard_cleanups (old_chain_1);
3183 error (_("Program exited while detaching"));
3187 discard_cleanups (old_chain_1);
3190 /* Wait for control to return from inferior to debugger.
3192 If inferior gets a signal, we may decide to start it up again
3193 instead of returning. That is why there is a loop in this function.
3194 When this function actually returns it means the inferior
3195 should be left stopped and GDB should read more commands. */
3198 wait_for_inferior (void)
3200 struct cleanup *old_cleanups;
3201 struct cleanup *thread_state_chain;
3205 (gdb_stdlog, "infrun: wait_for_inferior ()\n");
3208 = make_cleanup (delete_just_stopped_threads_infrun_breakpoints_cleanup,
3211 /* If an error happens while handling the event, propagate GDB's
3212 knowledge of the executing state to the frontend/user running
3214 thread_state_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
3218 struct execution_control_state ecss;
3219 struct execution_control_state *ecs = &ecss;
3220 ptid_t waiton_ptid = minus_one_ptid;
3222 memset (ecs, 0, sizeof (*ecs));
3224 overlay_cache_invalid = 1;
3226 /* Flush target cache before starting to handle each event.
3227 Target was running and cache could be stale. This is just a
3228 heuristic. Running threads may modify target memory, but we
3229 don't get any event. */
3230 target_dcache_invalidate ();
3232 if (deprecated_target_wait_hook)
3233 ecs->ptid = deprecated_target_wait_hook (waiton_ptid, &ecs->ws, 0);
3235 ecs->ptid = target_wait (waiton_ptid, &ecs->ws, 0);
3238 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
3240 /* Now figure out what to do with the result of the result. */
3241 handle_inferior_event (ecs);
3243 if (!ecs->wait_some_more)
3247 /* No error, don't finish the state yet. */
3248 discard_cleanups (thread_state_chain);
3250 do_cleanups (old_cleanups);
3253 /* Cleanup that reinstalls the readline callback handler, if the
3254 target is running in the background. If while handling the target
3255 event something triggered a secondary prompt, like e.g., a
3256 pagination prompt, we'll have removed the callback handler (see
3257 gdb_readline_wrapper_line). Need to do this as we go back to the
3258 event loop, ready to process further input. Note this has no
3259 effect if the handler hasn't actually been removed, because calling
3260 rl_callback_handler_install resets the line buffer, thus losing
3264 reinstall_readline_callback_handler_cleanup (void *arg)
3266 if (!interpreter_async)
3268 /* We're not going back to the top level event loop yet. Don't
3269 install the readline callback, as it'd prep the terminal,
3270 readline-style (raw, noecho) (e.g., --batch). We'll install
3271 it the next time the prompt is displayed, when we're ready
3276 if (async_command_editing_p && !sync_execution)
3277 gdb_rl_callback_handler_reinstall ();
3280 /* Asynchronous version of wait_for_inferior. It is called by the
3281 event loop whenever a change of state is detected on the file
3282 descriptor corresponding to the target. It can be called more than
3283 once to complete a single execution command. In such cases we need
3284 to keep the state in a global variable ECSS. If it is the last time
3285 that this function is called for a single execution command, then
3286 report to the user that the inferior has stopped, and do the
3287 necessary cleanups. */
3290 fetch_inferior_event (void *client_data)
3292 struct execution_control_state ecss;
3293 struct execution_control_state *ecs = &ecss;
3294 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
3295 struct cleanup *ts_old_chain;
3296 int was_sync = sync_execution;
3298 ptid_t waiton_ptid = minus_one_ptid;
3300 memset (ecs, 0, sizeof (*ecs));
3302 /* End up with readline processing input, if necessary. */
3303 make_cleanup (reinstall_readline_callback_handler_cleanup, NULL);
3305 /* We're handling a live event, so make sure we're doing live
3306 debugging. If we're looking at traceframes while the target is
3307 running, we're going to need to get back to that mode after
3308 handling the event. */
3311 make_cleanup_restore_current_traceframe ();
3312 set_current_traceframe (-1);
3316 /* In non-stop mode, the user/frontend should not notice a thread
3317 switch due to internal events. Make sure we reverse to the
3318 user selected thread and frame after handling the event and
3319 running any breakpoint commands. */
3320 make_cleanup_restore_current_thread ();
3322 overlay_cache_invalid = 1;
3323 /* Flush target cache before starting to handle each event. Target
3324 was running and cache could be stale. This is just a heuristic.
3325 Running threads may modify target memory, but we don't get any
3327 target_dcache_invalidate ();
3329 make_cleanup_restore_integer (&execution_direction);
3330 execution_direction = target_execution_direction ();
3332 if (deprecated_target_wait_hook)
3334 deprecated_target_wait_hook (waiton_ptid, &ecs->ws, TARGET_WNOHANG);
3336 ecs->ptid = target_wait (waiton_ptid, &ecs->ws, TARGET_WNOHANG);
3339 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
3341 /* If an error happens while handling the event, propagate GDB's
3342 knowledge of the executing state to the frontend/user running
3345 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
3347 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &ecs->ptid);
3349 /* Get executed before make_cleanup_restore_current_thread above to apply
3350 still for the thread which has thrown the exception. */
3351 make_bpstat_clear_actions_cleanup ();
3353 make_cleanup (delete_just_stopped_threads_infrun_breakpoints_cleanup, NULL);
3355 /* Now figure out what to do with the result of the result. */
3356 handle_inferior_event (ecs);
3358 if (!ecs->wait_some_more)
3360 struct inferior *inf = find_inferior_ptid (ecs->ptid);
3362 delete_just_stopped_threads_infrun_breakpoints ();
3364 /* We may not find an inferior if this was a process exit. */
3365 if (inf == NULL || inf->control.stop_soon == NO_STOP_QUIETLY)
3368 if (target_has_execution
3369 && ecs->ws.kind != TARGET_WAITKIND_NO_RESUMED
3370 && ecs->ws.kind != TARGET_WAITKIND_EXITED
3371 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
3372 && ecs->event_thread->step_multi
3373 && ecs->event_thread->control.stop_step)
3374 inferior_event_handler (INF_EXEC_CONTINUE, NULL);
3377 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
3382 /* No error, don't finish the thread states yet. */
3383 discard_cleanups (ts_old_chain);
3385 /* Revert thread and frame. */
3386 do_cleanups (old_chain);
3388 /* If the inferior was in sync execution mode, and now isn't,
3389 restore the prompt (a synchronous execution command has finished,
3390 and we're ready for input). */
3391 if (interpreter_async && was_sync && !sync_execution)
3392 observer_notify_sync_execution_done ();
3396 && exec_done_display_p
3397 && (ptid_equal (inferior_ptid, null_ptid)
3398 || !is_running (inferior_ptid)))
3399 printf_unfiltered (_("completed.\n"));
3402 /* Record the frame and location we're currently stepping through. */
3404 set_step_info (struct frame_info *frame, struct symtab_and_line sal)
3406 struct thread_info *tp = inferior_thread ();
3408 tp->control.step_frame_id = get_frame_id (frame);
3409 tp->control.step_stack_frame_id = get_stack_frame_id (frame);
3411 tp->current_symtab = sal.symtab;
3412 tp->current_line = sal.line;
3415 /* Clear context switchable stepping state. */
3418 init_thread_stepping_state (struct thread_info *tss)
3420 tss->stepped_breakpoint = 0;
3421 tss->stepping_over_breakpoint = 0;
3422 tss->stepping_over_watchpoint = 0;
3423 tss->step_after_step_resume_breakpoint = 0;
3426 /* Set the cached copy of the last ptid/waitstatus. */
3429 set_last_target_status (ptid_t ptid, struct target_waitstatus status)
3431 target_last_wait_ptid = ptid;
3432 target_last_waitstatus = status;
3435 /* Return the cached copy of the last pid/waitstatus returned by
3436 target_wait()/deprecated_target_wait_hook(). The data is actually
3437 cached by handle_inferior_event(), which gets called immediately
3438 after target_wait()/deprecated_target_wait_hook(). */
3441 get_last_target_status (ptid_t *ptidp, struct target_waitstatus *status)
3443 *ptidp = target_last_wait_ptid;
3444 *status = target_last_waitstatus;
3448 nullify_last_target_wait_ptid (void)
3450 target_last_wait_ptid = minus_one_ptid;
3453 /* Switch thread contexts. */
3456 context_switch (ptid_t ptid)
3458 if (debug_infrun && !ptid_equal (ptid, inferior_ptid))
3460 fprintf_unfiltered (gdb_stdlog, "infrun: Switching context from %s ",
3461 target_pid_to_str (inferior_ptid));
3462 fprintf_unfiltered (gdb_stdlog, "to %s\n",
3463 target_pid_to_str (ptid));
3466 switch_to_thread (ptid);
3469 /* If the target can't tell whether we've hit breakpoints
3470 (target_supports_stopped_by_sw_breakpoint), and we got a SIGTRAP,
3471 check whether that could have been caused by a breakpoint. If so,
3472 adjust the PC, per gdbarch_decr_pc_after_break. */
3475 adjust_pc_after_break (struct thread_info *thread,
3476 struct target_waitstatus *ws)
3478 struct regcache *regcache;
3479 struct gdbarch *gdbarch;
3480 struct address_space *aspace;
3481 CORE_ADDR breakpoint_pc, decr_pc;
3483 /* If we've hit a breakpoint, we'll normally be stopped with SIGTRAP. If
3484 we aren't, just return.
3486 We assume that waitkinds other than TARGET_WAITKIND_STOPPED are not
3487 affected by gdbarch_decr_pc_after_break. Other waitkinds which are
3488 implemented by software breakpoints should be handled through the normal
3491 NOTE drow/2004-01-31: On some targets, breakpoints may generate
3492 different signals (SIGILL or SIGEMT for instance), but it is less
3493 clear where the PC is pointing afterwards. It may not match
3494 gdbarch_decr_pc_after_break. I don't know any specific target that
3495 generates these signals at breakpoints (the code has been in GDB since at
3496 least 1992) so I can not guess how to handle them here.
3498 In earlier versions of GDB, a target with
3499 gdbarch_have_nonsteppable_watchpoint would have the PC after hitting a
3500 watchpoint affected by gdbarch_decr_pc_after_break. I haven't found any
3501 target with both of these set in GDB history, and it seems unlikely to be
3502 correct, so gdbarch_have_nonsteppable_watchpoint is not checked here. */
3504 if (ws->kind != TARGET_WAITKIND_STOPPED)
3507 if (ws->value.sig != GDB_SIGNAL_TRAP)
3510 /* In reverse execution, when a breakpoint is hit, the instruction
3511 under it has already been de-executed. The reported PC always
3512 points at the breakpoint address, so adjusting it further would
3513 be wrong. E.g., consider this case on a decr_pc_after_break == 1
3516 B1 0x08000000 : INSN1
3517 B2 0x08000001 : INSN2
3519 PC -> 0x08000003 : INSN4
3521 Say you're stopped at 0x08000003 as above. Reverse continuing
3522 from that point should hit B2 as below. Reading the PC when the
3523 SIGTRAP is reported should read 0x08000001 and INSN2 should have
3524 been de-executed already.
3526 B1 0x08000000 : INSN1
3527 B2 PC -> 0x08000001 : INSN2
3531 We can't apply the same logic as for forward execution, because
3532 we would wrongly adjust the PC to 0x08000000, since there's a
3533 breakpoint at PC - 1. We'd then report a hit on B1, although
3534 INSN1 hadn't been de-executed yet. Doing nothing is the correct
3536 if (execution_direction == EXEC_REVERSE)
3539 /* If the target can tell whether the thread hit a SW breakpoint,
3540 trust it. Targets that can tell also adjust the PC
3542 if (target_supports_stopped_by_sw_breakpoint ())
3545 /* Note that relying on whether a breakpoint is planted in memory to
3546 determine this can fail. E.g,. the breakpoint could have been
3547 removed since. Or the thread could have been told to step an
3548 instruction the size of a breakpoint instruction, and only
3549 _after_ was a breakpoint inserted at its address. */
3551 /* If this target does not decrement the PC after breakpoints, then
3552 we have nothing to do. */
3553 regcache = get_thread_regcache (thread->ptid);
3554 gdbarch = get_regcache_arch (regcache);
3556 decr_pc = gdbarch_decr_pc_after_break (gdbarch);
3560 aspace = get_regcache_aspace (regcache);
3562 /* Find the location where (if we've hit a breakpoint) the
3563 breakpoint would be. */
3564 breakpoint_pc = regcache_read_pc (regcache) - decr_pc;
3566 /* If the target can't tell whether a software breakpoint triggered,
3567 fallback to figuring it out based on breakpoints we think were
3568 inserted in the target, and on whether the thread was stepped or
3571 /* Check whether there actually is a software breakpoint inserted at
3574 If in non-stop mode, a race condition is possible where we've
3575 removed a breakpoint, but stop events for that breakpoint were
3576 already queued and arrive later. To suppress those spurious
3577 SIGTRAPs, we keep a list of such breakpoint locations for a bit,
3578 and retire them after a number of stop events are reported. Note
3579 this is an heuristic and can thus get confused. The real fix is
3580 to get the "stopped by SW BP and needs adjustment" info out of
3581 the target/kernel (and thus never reach here; see above). */
3582 if (software_breakpoint_inserted_here_p (aspace, breakpoint_pc)
3583 || (non_stop && moribund_breakpoint_here_p (aspace, breakpoint_pc)))
3585 struct cleanup *old_cleanups = make_cleanup (null_cleanup, NULL);
3587 if (record_full_is_used ())
3588 record_full_gdb_operation_disable_set ();
3590 /* When using hardware single-step, a SIGTRAP is reported for both
3591 a completed single-step and a software breakpoint. Need to
3592 differentiate between the two, as the latter needs adjusting
3593 but the former does not.
3595 The SIGTRAP can be due to a completed hardware single-step only if
3596 - we didn't insert software single-step breakpoints
3597 - this thread is currently being stepped
3599 If any of these events did not occur, we must have stopped due
3600 to hitting a software breakpoint, and have to back up to the
3603 As a special case, we could have hardware single-stepped a
3604 software breakpoint. In this case (prev_pc == breakpoint_pc),
3605 we also need to back up to the breakpoint address. */
3607 if (thread_has_single_step_breakpoints_set (thread)
3608 || !currently_stepping (thread)
3609 || (thread->stepped_breakpoint
3610 && thread->prev_pc == breakpoint_pc))
3611 regcache_write_pc (regcache, breakpoint_pc);
3613 do_cleanups (old_cleanups);
3618 stepped_in_from (struct frame_info *frame, struct frame_id step_frame_id)
3620 for (frame = get_prev_frame (frame);
3622 frame = get_prev_frame (frame))
3624 if (frame_id_eq (get_frame_id (frame), step_frame_id))
3626 if (get_frame_type (frame) != INLINE_FRAME)
3633 /* Auxiliary function that handles syscall entry/return events.
3634 It returns 1 if the inferior should keep going (and GDB
3635 should ignore the event), or 0 if the event deserves to be
3639 handle_syscall_event (struct execution_control_state *ecs)
3641 struct regcache *regcache;
3644 if (!ptid_equal (ecs->ptid, inferior_ptid))
3645 context_switch (ecs->ptid);
3647 regcache = get_thread_regcache (ecs->ptid);
3648 syscall_number = ecs->ws.value.syscall_number;
3649 stop_pc = regcache_read_pc (regcache);
3651 if (catch_syscall_enabled () > 0
3652 && catching_syscall_number (syscall_number) > 0)
3655 fprintf_unfiltered (gdb_stdlog, "infrun: syscall number = '%d'\n",
3658 ecs->event_thread->control.stop_bpstat
3659 = bpstat_stop_status (get_regcache_aspace (regcache),
3660 stop_pc, ecs->ptid, &ecs->ws);
3662 if (bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
3664 /* Catchpoint hit. */
3669 /* If no catchpoint triggered for this, then keep going. */
3674 /* Lazily fill in the execution_control_state's stop_func_* fields. */
3677 fill_in_stop_func (struct gdbarch *gdbarch,
3678 struct execution_control_state *ecs)
3680 if (!ecs->stop_func_filled_in)
3682 /* Don't care about return value; stop_func_start and stop_func_name
3683 will both be 0 if it doesn't work. */
3684 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
3685 &ecs->stop_func_start, &ecs->stop_func_end);
3686 ecs->stop_func_start
3687 += gdbarch_deprecated_function_start_offset (gdbarch);
3689 if (gdbarch_skip_entrypoint_p (gdbarch))
3690 ecs->stop_func_start = gdbarch_skip_entrypoint (gdbarch,
3691 ecs->stop_func_start);
3693 ecs->stop_func_filled_in = 1;
3698 /* Return the STOP_SOON field of the inferior pointed at by PTID. */
3700 static enum stop_kind
3701 get_inferior_stop_soon (ptid_t ptid)
3703 struct inferior *inf = find_inferior_ptid (ptid);
3705 gdb_assert (inf != NULL);
3706 return inf->control.stop_soon;
3709 /* Given an execution control state that has been freshly filled in by
3710 an event from the inferior, figure out what it means and take
3713 The alternatives are:
3715 1) stop_waiting and return; to really stop and return to the
3718 2) keep_going and return; to wait for the next event (set
3719 ecs->event_thread->stepping_over_breakpoint to 1 to single step
3723 handle_inferior_event_1 (struct execution_control_state *ecs)
3725 enum stop_kind stop_soon;
3727 if (ecs->ws.kind == TARGET_WAITKIND_IGNORE)
3729 /* We had an event in the inferior, but we are not interested in
3730 handling it at this level. The lower layers have already
3731 done what needs to be done, if anything.
3733 One of the possible circumstances for this is when the
3734 inferior produces output for the console. The inferior has
3735 not stopped, and we are ignoring the event. Another possible
3736 circumstance is any event which the lower level knows will be
3737 reported multiple times without an intervening resume. */
3739 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_IGNORE\n");
3740 prepare_to_wait (ecs);
3744 if (ecs->ws.kind == TARGET_WAITKIND_NO_RESUMED
3745 && target_can_async_p () && !sync_execution)
3747 /* There were no unwaited-for children left in the target, but,
3748 we're not synchronously waiting for events either. Just
3749 ignore. Otherwise, if we were running a synchronous
3750 execution command, we need to cancel it and give the user
3751 back the terminal. */
3753 fprintf_unfiltered (gdb_stdlog,
3754 "infrun: TARGET_WAITKIND_NO_RESUMED (ignoring)\n");
3755 prepare_to_wait (ecs);
3759 /* Cache the last pid/waitstatus. */
3760 set_last_target_status (ecs->ptid, ecs->ws);
3762 /* Always clear state belonging to the previous time we stopped. */
3763 stop_stack_dummy = STOP_NONE;
3765 if (ecs->ws.kind == TARGET_WAITKIND_NO_RESUMED)
3767 /* No unwaited-for children left. IOW, all resumed children
3770 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_NO_RESUMED\n");
3772 stop_print_frame = 0;
3777 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
3778 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED)
3780 ecs->event_thread = find_thread_ptid (ecs->ptid);
3781 /* If it's a new thread, add it to the thread database. */
3782 if (ecs->event_thread == NULL)
3783 ecs->event_thread = add_thread (ecs->ptid);
3785 /* Disable range stepping. If the next step request could use a
3786 range, this will be end up re-enabled then. */
3787 ecs->event_thread->control.may_range_step = 0;
3790 /* Dependent on valid ECS->EVENT_THREAD. */
3791 adjust_pc_after_break (ecs->event_thread, &ecs->ws);
3793 /* Dependent on the current PC value modified by adjust_pc_after_break. */
3794 reinit_frame_cache ();
3796 breakpoint_retire_moribund ();
3798 /* First, distinguish signals caused by the debugger from signals
3799 that have to do with the program's own actions. Note that
3800 breakpoint insns may cause SIGTRAP or SIGILL or SIGEMT, depending
3801 on the operating system version. Here we detect when a SIGILL or
3802 SIGEMT is really a breakpoint and change it to SIGTRAP. We do
3803 something similar for SIGSEGV, since a SIGSEGV will be generated
3804 when we're trying to execute a breakpoint instruction on a
3805 non-executable stack. This happens for call dummy breakpoints
3806 for architectures like SPARC that place call dummies on the
3808 if (ecs->ws.kind == TARGET_WAITKIND_STOPPED
3809 && (ecs->ws.value.sig == GDB_SIGNAL_ILL
3810 || ecs->ws.value.sig == GDB_SIGNAL_SEGV
3811 || ecs->ws.value.sig == GDB_SIGNAL_EMT))
3813 struct regcache *regcache = get_thread_regcache (ecs->ptid);
3815 if (breakpoint_inserted_here_p (get_regcache_aspace (regcache),
3816 regcache_read_pc (regcache)))
3819 fprintf_unfiltered (gdb_stdlog,
3820 "infrun: Treating signal as SIGTRAP\n");
3821 ecs->ws.value.sig = GDB_SIGNAL_TRAP;
3825 /* Mark the non-executing threads accordingly. In all-stop, all
3826 threads of all processes are stopped when we get any event
3827 reported. In non-stop mode, only the event thread stops. */
3829 set_executing (minus_one_ptid, 0);
3830 else if (ecs->ws.kind == TARGET_WAITKIND_SIGNALLED
3831 || ecs->ws.kind == TARGET_WAITKIND_EXITED)
3835 /* If we're handling a process exit in non-stop mode, even
3836 though threads haven't been deleted yet, one would think that
3837 there is nothing to do, as threads of the dead process will
3838 be soon deleted, and threads of any other process were left
3839 running. However, on some targets, threads survive a process
3840 exit event. E.g., for the "checkpoint" command, when the
3841 current checkpoint/fork exits, linux-fork.c automatically
3842 switches to another fork from within target_mourn_inferior,
3843 by associating the same inferior/thread to another fork. We
3844 haven't mourned yet at this point, but we must mark any
3845 threads left in the process as not-executing so that
3846 finish_thread_state marks them stopped (in the user's
3847 perspective) if/when we present the stop to the user. */
3848 pid_ptid = pid_to_ptid (ptid_get_pid (ecs->ptid));
3849 set_executing (pid_ptid, 0);
3852 set_executing (ecs->ptid, 0);
3854 switch (ecs->ws.kind)
3856 case TARGET_WAITKIND_LOADED:
3858 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_LOADED\n");
3859 if (!ptid_equal (ecs->ptid, inferior_ptid))
3860 context_switch (ecs->ptid);
3861 /* Ignore gracefully during startup of the inferior, as it might
3862 be the shell which has just loaded some objects, otherwise
3863 add the symbols for the newly loaded objects. Also ignore at
3864 the beginning of an attach or remote session; we will query
3865 the full list of libraries once the connection is
3868 stop_soon = get_inferior_stop_soon (ecs->ptid);
3869 if (stop_soon == NO_STOP_QUIETLY)
3871 struct regcache *regcache;
3873 regcache = get_thread_regcache (ecs->ptid);
3875 handle_solib_event ();
3877 ecs->event_thread->control.stop_bpstat
3878 = bpstat_stop_status (get_regcache_aspace (regcache),
3879 stop_pc, ecs->ptid, &ecs->ws);
3881 if (bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
3883 /* A catchpoint triggered. */
3884 process_event_stop_test (ecs);
3888 /* If requested, stop when the dynamic linker notifies
3889 gdb of events. This allows the user to get control
3890 and place breakpoints in initializer routines for
3891 dynamically loaded objects (among other things). */
3892 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3893 if (stop_on_solib_events)
3895 /* Make sure we print "Stopped due to solib-event" in
3897 stop_print_frame = 1;
3904 /* If we are skipping through a shell, or through shared library
3905 loading that we aren't interested in, resume the program. If
3906 we're running the program normally, also resume. */
3907 if (stop_soon == STOP_QUIETLY || stop_soon == NO_STOP_QUIETLY)
3909 /* Loading of shared libraries might have changed breakpoint
3910 addresses. Make sure new breakpoints are inserted. */
3911 if (stop_soon == NO_STOP_QUIETLY)
3912 insert_breakpoints ();
3913 resume (GDB_SIGNAL_0);
3914 prepare_to_wait (ecs);
3918 /* But stop if we're attaching or setting up a remote
3920 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
3921 || stop_soon == STOP_QUIETLY_REMOTE)
3924 fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
3929 internal_error (__FILE__, __LINE__,
3930 _("unhandled stop_soon: %d"), (int) stop_soon);
3932 case TARGET_WAITKIND_SPURIOUS:
3934 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SPURIOUS\n");
3935 if (!ptid_equal (ecs->ptid, inferior_ptid))
3936 context_switch (ecs->ptid);
3937 resume (GDB_SIGNAL_0);
3938 prepare_to_wait (ecs);
3941 case TARGET_WAITKIND_EXITED:
3942 case TARGET_WAITKIND_SIGNALLED:
3945 if (ecs->ws.kind == TARGET_WAITKIND_EXITED)
3946 fprintf_unfiltered (gdb_stdlog,
3947 "infrun: TARGET_WAITKIND_EXITED\n");
3949 fprintf_unfiltered (gdb_stdlog,
3950 "infrun: TARGET_WAITKIND_SIGNALLED\n");
3953 inferior_ptid = ecs->ptid;
3954 set_current_inferior (find_inferior_ptid (ecs->ptid));
3955 set_current_program_space (current_inferior ()->pspace);
3956 handle_vfork_child_exec_or_exit (0);
3957 target_terminal_ours (); /* Must do this before mourn anyway. */
3959 /* Clearing any previous state of convenience variables. */
3960 clear_exit_convenience_vars ();
3962 if (ecs->ws.kind == TARGET_WAITKIND_EXITED)
3964 /* Record the exit code in the convenience variable $_exitcode, so
3965 that the user can inspect this again later. */
3966 set_internalvar_integer (lookup_internalvar ("_exitcode"),
3967 (LONGEST) ecs->ws.value.integer);
3969 /* Also record this in the inferior itself. */
3970 current_inferior ()->has_exit_code = 1;
3971 current_inferior ()->exit_code = (LONGEST) ecs->ws.value.integer;
3973 /* Support the --return-child-result option. */
3974 return_child_result_value = ecs->ws.value.integer;
3976 observer_notify_exited (ecs->ws.value.integer);
3980 struct regcache *regcache = get_thread_regcache (ecs->ptid);
3981 struct gdbarch *gdbarch = get_regcache_arch (regcache);
3983 if (gdbarch_gdb_signal_to_target_p (gdbarch))
3985 /* Set the value of the internal variable $_exitsignal,
3986 which holds the signal uncaught by the inferior. */
3987 set_internalvar_integer (lookup_internalvar ("_exitsignal"),
3988 gdbarch_gdb_signal_to_target (gdbarch,
3989 ecs->ws.value.sig));
3993 /* We don't have access to the target's method used for
3994 converting between signal numbers (GDB's internal
3995 representation <-> target's representation).
3996 Therefore, we cannot do a good job at displaying this
3997 information to the user. It's better to just warn
3998 her about it (if infrun debugging is enabled), and
4001 fprintf_filtered (gdb_stdlog, _("\
4002 Cannot fill $_exitsignal with the correct signal number.\n"));
4005 observer_notify_signal_exited (ecs->ws.value.sig);
4008 gdb_flush (gdb_stdout);
4009 target_mourn_inferior ();
4010 stop_print_frame = 0;
4014 /* The following are the only cases in which we keep going;
4015 the above cases end in a continue or goto. */
4016 case TARGET_WAITKIND_FORKED:
4017 case TARGET_WAITKIND_VFORKED:
4020 if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
4021 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_FORKED\n");
4023 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_VFORKED\n");
4026 /* Check whether the inferior is displaced stepping. */
4028 struct regcache *regcache = get_thread_regcache (ecs->ptid);
4029 struct gdbarch *gdbarch = get_regcache_arch (regcache);
4030 struct displaced_step_inferior_state *displaced
4031 = get_displaced_stepping_state (ptid_get_pid (ecs->ptid));
4033 /* If checking displaced stepping is supported, and thread
4034 ecs->ptid is displaced stepping. */
4035 if (displaced && ptid_equal (displaced->step_ptid, ecs->ptid))
4037 struct inferior *parent_inf
4038 = find_inferior_ptid (ecs->ptid);
4039 struct regcache *child_regcache;
4040 CORE_ADDR parent_pc;
4042 /* GDB has got TARGET_WAITKIND_FORKED or TARGET_WAITKIND_VFORKED,
4043 indicating that the displaced stepping of syscall instruction
4044 has been done. Perform cleanup for parent process here. Note
4045 that this operation also cleans up the child process for vfork,
4046 because their pages are shared. */
4047 displaced_step_fixup (ecs->ptid, GDB_SIGNAL_TRAP);
4049 if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
4051 /* Restore scratch pad for child process. */
4052 displaced_step_restore (displaced, ecs->ws.value.related_pid);
4055 /* Since the vfork/fork syscall instruction was executed in the scratchpad,
4056 the child's PC is also within the scratchpad. Set the child's PC
4057 to the parent's PC value, which has already been fixed up.
4058 FIXME: we use the parent's aspace here, although we're touching
4059 the child, because the child hasn't been added to the inferior
4060 list yet at this point. */
4063 = get_thread_arch_aspace_regcache (ecs->ws.value.related_pid,
4065 parent_inf->aspace);
4066 /* Read PC value of parent process. */
4067 parent_pc = regcache_read_pc (regcache);
4069 if (debug_displaced)
4070 fprintf_unfiltered (gdb_stdlog,
4071 "displaced: write child pc from %s to %s\n",
4073 regcache_read_pc (child_regcache)),
4074 paddress (gdbarch, parent_pc));
4076 regcache_write_pc (child_regcache, parent_pc);
4080 if (!ptid_equal (ecs->ptid, inferior_ptid))
4081 context_switch (ecs->ptid);
4083 /* Immediately detach breakpoints from the child before there's
4084 any chance of letting the user delete breakpoints from the
4085 breakpoint lists. If we don't do this early, it's easy to
4086 leave left over traps in the child, vis: "break foo; catch
4087 fork; c; <fork>; del; c; <child calls foo>". We only follow
4088 the fork on the last `continue', and by that time the
4089 breakpoint at "foo" is long gone from the breakpoint table.
4090 If we vforked, then we don't need to unpatch here, since both
4091 parent and child are sharing the same memory pages; we'll
4092 need to unpatch at follow/detach time instead to be certain
4093 that new breakpoints added between catchpoint hit time and
4094 vfork follow are detached. */
4095 if (ecs->ws.kind != TARGET_WAITKIND_VFORKED)
4097 /* This won't actually modify the breakpoint list, but will
4098 physically remove the breakpoints from the child. */
4099 detach_breakpoints (ecs->ws.value.related_pid);
4102 delete_just_stopped_threads_single_step_breakpoints ();
4104 /* In case the event is caught by a catchpoint, remember that
4105 the event is to be followed at the next resume of the thread,
4106 and not immediately. */
4107 ecs->event_thread->pending_follow = ecs->ws;
4109 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
4111 ecs->event_thread->control.stop_bpstat
4112 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
4113 stop_pc, ecs->ptid, &ecs->ws);
4115 /* If no catchpoint triggered for this, then keep going. Note
4116 that we're interested in knowing the bpstat actually causes a
4117 stop, not just if it may explain the signal. Software
4118 watchpoints, for example, always appear in the bpstat. */
4119 if (!bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
4125 = (follow_fork_mode_string == follow_fork_mode_child);
4127 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
4129 should_resume = follow_fork ();
4132 child = ecs->ws.value.related_pid;
4134 /* In non-stop mode, also resume the other branch. */
4135 if (non_stop && !detach_fork)
4138 switch_to_thread (parent);
4140 switch_to_thread (child);
4142 ecs->event_thread = inferior_thread ();
4143 ecs->ptid = inferior_ptid;
4148 switch_to_thread (child);
4150 switch_to_thread (parent);
4152 ecs->event_thread = inferior_thread ();
4153 ecs->ptid = inferior_ptid;
4161 process_event_stop_test (ecs);
4164 case TARGET_WAITKIND_VFORK_DONE:
4165 /* Done with the shared memory region. Re-insert breakpoints in
4166 the parent, and keep going. */
4169 fprintf_unfiltered (gdb_stdlog,
4170 "infrun: TARGET_WAITKIND_VFORK_DONE\n");
4172 if (!ptid_equal (ecs->ptid, inferior_ptid))
4173 context_switch (ecs->ptid);
4175 current_inferior ()->waiting_for_vfork_done = 0;
4176 current_inferior ()->pspace->breakpoints_not_allowed = 0;
4177 /* This also takes care of reinserting breakpoints in the
4178 previously locked inferior. */
4182 case TARGET_WAITKIND_EXECD:
4184 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXECD\n");
4186 if (!ptid_equal (ecs->ptid, inferior_ptid))
4187 context_switch (ecs->ptid);
4189 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
4191 /* Do whatever is necessary to the parent branch of the vfork. */
4192 handle_vfork_child_exec_or_exit (1);
4194 /* This causes the eventpoints and symbol table to be reset.
4195 Must do this now, before trying to determine whether to
4197 follow_exec (inferior_ptid, ecs->ws.value.execd_pathname);
4199 ecs->event_thread->control.stop_bpstat
4200 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
4201 stop_pc, ecs->ptid, &ecs->ws);
4203 /* Note that this may be referenced from inside
4204 bpstat_stop_status above, through inferior_has_execd. */
4205 xfree (ecs->ws.value.execd_pathname);
4206 ecs->ws.value.execd_pathname = NULL;
4208 /* If no catchpoint triggered for this, then keep going. */
4209 if (!bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
4211 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
4215 process_event_stop_test (ecs);
4218 /* Be careful not to try to gather much state about a thread
4219 that's in a syscall. It's frequently a losing proposition. */
4220 case TARGET_WAITKIND_SYSCALL_ENTRY:
4222 fprintf_unfiltered (gdb_stdlog,
4223 "infrun: TARGET_WAITKIND_SYSCALL_ENTRY\n");
4224 /* Getting the current syscall number. */
4225 if (handle_syscall_event (ecs) == 0)
4226 process_event_stop_test (ecs);
4229 /* Before examining the threads further, step this thread to
4230 get it entirely out of the syscall. (We get notice of the
4231 event when the thread is just on the verge of exiting a
4232 syscall. Stepping one instruction seems to get it back
4234 case TARGET_WAITKIND_SYSCALL_RETURN:
4236 fprintf_unfiltered (gdb_stdlog,
4237 "infrun: TARGET_WAITKIND_SYSCALL_RETURN\n");
4238 if (handle_syscall_event (ecs) == 0)
4239 process_event_stop_test (ecs);
4242 case TARGET_WAITKIND_STOPPED:
4244 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_STOPPED\n");
4245 ecs->event_thread->suspend.stop_signal = ecs->ws.value.sig;
4246 handle_signal_stop (ecs);
4249 case TARGET_WAITKIND_NO_HISTORY:
4251 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_NO_HISTORY\n");
4252 /* Reverse execution: target ran out of history info. */
4254 delete_just_stopped_threads_single_step_breakpoints ();
4255 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
4256 observer_notify_no_history ();
4262 /* A wrapper around handle_inferior_event_1, which also makes sure
4263 that all temporary struct value objects that were created during
4264 the handling of the event get deleted at the end. */
4267 handle_inferior_event (struct execution_control_state *ecs)
4269 struct value *mark = value_mark ();
4271 handle_inferior_event_1 (ecs);
4272 /* Purge all temporary values created during the event handling,
4273 as it could be a long time before we return to the command level
4274 where such values would otherwise be purged. */
4275 value_free_to_mark (mark);
4278 /* Come here when the program has stopped with a signal. */
4281 handle_signal_stop (struct execution_control_state *ecs)
4283 struct frame_info *frame;
4284 struct gdbarch *gdbarch;
4285 int stopped_by_watchpoint;
4286 enum stop_kind stop_soon;
4289 gdb_assert (ecs->ws.kind == TARGET_WAITKIND_STOPPED);
4291 /* Do we need to clean up the state of a thread that has
4292 completed a displaced single-step? (Doing so usually affects
4293 the PC, so do it here, before we set stop_pc.) */
4294 displaced_step_fixup (ecs->ptid,
4295 ecs->event_thread->suspend.stop_signal);
4297 /* If we either finished a single-step or hit a breakpoint, but
4298 the user wanted this thread to be stopped, pretend we got a
4299 SIG0 (generic unsignaled stop). */
4300 if (ecs->event_thread->stop_requested
4301 && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
4302 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
4304 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
4308 struct regcache *regcache = get_thread_regcache (ecs->ptid);
4309 struct gdbarch *gdbarch = get_regcache_arch (regcache);
4310 struct cleanup *old_chain = save_inferior_ptid ();
4312 inferior_ptid = ecs->ptid;
4314 fprintf_unfiltered (gdb_stdlog, "infrun: stop_pc = %s\n",
4315 paddress (gdbarch, stop_pc));
4316 if (target_stopped_by_watchpoint ())
4320 fprintf_unfiltered (gdb_stdlog, "infrun: stopped by watchpoint\n");
4322 if (target_stopped_data_address (¤t_target, &addr))
4323 fprintf_unfiltered (gdb_stdlog,
4324 "infrun: stopped data address = %s\n",
4325 paddress (gdbarch, addr));
4327 fprintf_unfiltered (gdb_stdlog,
4328 "infrun: (no data address available)\n");
4331 do_cleanups (old_chain);
4334 /* This is originated from start_remote(), start_inferior() and
4335 shared libraries hook functions. */
4336 stop_soon = get_inferior_stop_soon (ecs->ptid);
4337 if (stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_REMOTE)
4339 if (!ptid_equal (ecs->ptid, inferior_ptid))
4340 context_switch (ecs->ptid);
4342 fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
4343 stop_print_frame = 1;
4348 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4351 if (!ptid_equal (ecs->ptid, inferior_ptid))
4352 context_switch (ecs->ptid);
4354 fprintf_unfiltered (gdb_stdlog, "infrun: stopped\n");
4355 stop_print_frame = 0;
4360 /* This originates from attach_command(). We need to overwrite
4361 the stop_signal here, because some kernels don't ignore a
4362 SIGSTOP in a subsequent ptrace(PTRACE_CONT,SIGSTOP) call.
4363 See more comments in inferior.h. On the other hand, if we
4364 get a non-SIGSTOP, report it to the user - assume the backend
4365 will handle the SIGSTOP if it should show up later.
4367 Also consider that the attach is complete when we see a
4368 SIGTRAP. Some systems (e.g. Windows), and stubs supporting
4369 target extended-remote report it instead of a SIGSTOP
4370 (e.g. gdbserver). We already rely on SIGTRAP being our
4371 signal, so this is no exception.
4373 Also consider that the attach is complete when we see a
4374 GDB_SIGNAL_0. In non-stop mode, GDB will explicitly tell
4375 the target to stop all threads of the inferior, in case the
4376 low level attach operation doesn't stop them implicitly. If
4377 they weren't stopped implicitly, then the stub will report a
4378 GDB_SIGNAL_0, meaning: stopped for no particular reason
4379 other than GDB's request. */
4380 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
4381 && (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_STOP
4382 || ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4383 || ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_0))
4385 stop_print_frame = 1;
4387 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
4391 /* See if something interesting happened to the non-current thread. If
4392 so, then switch to that thread. */
4393 if (!ptid_equal (ecs->ptid, inferior_ptid))
4396 fprintf_unfiltered (gdb_stdlog, "infrun: context switch\n");
4398 context_switch (ecs->ptid);
4400 if (deprecated_context_hook)
4401 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
4404 /* At this point, get hold of the now-current thread's frame. */
4405 frame = get_current_frame ();
4406 gdbarch = get_frame_arch (frame);
4408 /* Pull the single step breakpoints out of the target. */
4409 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
4411 struct regcache *regcache;
4412 struct address_space *aspace;
4415 regcache = get_thread_regcache (ecs->ptid);
4416 aspace = get_regcache_aspace (regcache);
4417 pc = regcache_read_pc (regcache);
4419 /* However, before doing so, if this single-step breakpoint was
4420 actually for another thread, set this thread up for moving
4422 if (!thread_has_single_step_breakpoint_here (ecs->event_thread,
4425 if (single_step_breakpoint_inserted_here_p (aspace, pc))
4429 fprintf_unfiltered (gdb_stdlog,
4430 "infrun: [%s] hit another thread's "
4431 "single-step breakpoint\n",
4432 target_pid_to_str (ecs->ptid));
4434 ecs->hit_singlestep_breakpoint = 1;
4441 fprintf_unfiltered (gdb_stdlog,
4442 "infrun: [%s] hit its "
4443 "single-step breakpoint\n",
4444 target_pid_to_str (ecs->ptid));
4448 delete_just_stopped_threads_single_step_breakpoints ();
4450 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4451 && ecs->event_thread->control.trap_expected
4452 && ecs->event_thread->stepping_over_watchpoint)
4453 stopped_by_watchpoint = 0;
4455 stopped_by_watchpoint = watchpoints_triggered (&ecs->ws);
4457 /* If necessary, step over this watchpoint. We'll be back to display
4459 if (stopped_by_watchpoint
4460 && (target_have_steppable_watchpoint
4461 || gdbarch_have_nonsteppable_watchpoint (gdbarch)))
4463 /* At this point, we are stopped at an instruction which has
4464 attempted to write to a piece of memory under control of
4465 a watchpoint. The instruction hasn't actually executed
4466 yet. If we were to evaluate the watchpoint expression
4467 now, we would get the old value, and therefore no change
4468 would seem to have occurred.
4470 In order to make watchpoints work `right', we really need
4471 to complete the memory write, and then evaluate the
4472 watchpoint expression. We do this by single-stepping the
4475 It may not be necessary to disable the watchpoint to step over
4476 it. For example, the PA can (with some kernel cooperation)
4477 single step over a watchpoint without disabling the watchpoint.
4479 It is far more common to need to disable a watchpoint to step
4480 the inferior over it. If we have non-steppable watchpoints,
4481 we must disable the current watchpoint; it's simplest to
4482 disable all watchpoints.
4484 Any breakpoint at PC must also be stepped over -- if there's
4485 one, it will have already triggered before the watchpoint
4486 triggered, and we either already reported it to the user, or
4487 it didn't cause a stop and we called keep_going. In either
4488 case, if there was a breakpoint at PC, we must be trying to
4490 ecs->event_thread->stepping_over_watchpoint = 1;
4495 ecs->event_thread->stepping_over_breakpoint = 0;
4496 ecs->event_thread->stepping_over_watchpoint = 0;
4497 bpstat_clear (&ecs->event_thread->control.stop_bpstat);
4498 ecs->event_thread->control.stop_step = 0;
4499 stop_print_frame = 1;
4500 stopped_by_random_signal = 0;
4502 /* Hide inlined functions starting here, unless we just performed stepi or
4503 nexti. After stepi and nexti, always show the innermost frame (not any
4504 inline function call sites). */
4505 if (ecs->event_thread->control.step_range_end != 1)
4507 struct address_space *aspace =
4508 get_regcache_aspace (get_thread_regcache (ecs->ptid));
4510 /* skip_inline_frames is expensive, so we avoid it if we can
4511 determine that the address is one where functions cannot have
4512 been inlined. This improves performance with inferiors that
4513 load a lot of shared libraries, because the solib event
4514 breakpoint is defined as the address of a function (i.e. not
4515 inline). Note that we have to check the previous PC as well
4516 as the current one to catch cases when we have just
4517 single-stepped off a breakpoint prior to reinstating it.
4518 Note that we're assuming that the code we single-step to is
4519 not inline, but that's not definitive: there's nothing
4520 preventing the event breakpoint function from containing
4521 inlined code, and the single-step ending up there. If the
4522 user had set a breakpoint on that inlined code, the missing
4523 skip_inline_frames call would break things. Fortunately
4524 that's an extremely unlikely scenario. */
4525 if (!pc_at_non_inline_function (aspace, stop_pc, &ecs->ws)
4526 && !(ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4527 && ecs->event_thread->control.trap_expected
4528 && pc_at_non_inline_function (aspace,
4529 ecs->event_thread->prev_pc,
4532 skip_inline_frames (ecs->ptid);
4534 /* Re-fetch current thread's frame in case that invalidated
4536 frame = get_current_frame ();
4537 gdbarch = get_frame_arch (frame);
4541 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4542 && ecs->event_thread->control.trap_expected
4543 && gdbarch_single_step_through_delay_p (gdbarch)
4544 && currently_stepping (ecs->event_thread))
4546 /* We're trying to step off a breakpoint. Turns out that we're
4547 also on an instruction that needs to be stepped multiple
4548 times before it's been fully executing. E.g., architectures
4549 with a delay slot. It needs to be stepped twice, once for
4550 the instruction and once for the delay slot. */
4551 int step_through_delay
4552 = gdbarch_single_step_through_delay (gdbarch, frame);
4554 if (debug_infrun && step_through_delay)
4555 fprintf_unfiltered (gdb_stdlog, "infrun: step through delay\n");
4556 if (ecs->event_thread->control.step_range_end == 0
4557 && step_through_delay)
4559 /* The user issued a continue when stopped at a breakpoint.
4560 Set up for another trap and get out of here. */
4561 ecs->event_thread->stepping_over_breakpoint = 1;
4565 else if (step_through_delay)
4567 /* The user issued a step when stopped at a breakpoint.
4568 Maybe we should stop, maybe we should not - the delay
4569 slot *might* correspond to a line of source. In any
4570 case, don't decide that here, just set
4571 ecs->stepping_over_breakpoint, making sure we
4572 single-step again before breakpoints are re-inserted. */
4573 ecs->event_thread->stepping_over_breakpoint = 1;
4577 /* See if there is a breakpoint/watchpoint/catchpoint/etc. that
4578 handles this event. */
4579 ecs->event_thread->control.stop_bpstat
4580 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
4581 stop_pc, ecs->ptid, &ecs->ws);
4583 /* Following in case break condition called a
4585 stop_print_frame = 1;
4587 /* This is where we handle "moribund" watchpoints. Unlike
4588 software breakpoints traps, hardware watchpoint traps are
4589 always distinguishable from random traps. If no high-level
4590 watchpoint is associated with the reported stop data address
4591 anymore, then the bpstat does not explain the signal ---
4592 simply make sure to ignore it if `stopped_by_watchpoint' is
4596 && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4597 && !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat,
4599 && stopped_by_watchpoint)
4600 fprintf_unfiltered (gdb_stdlog,
4601 "infrun: no user watchpoint explains "
4602 "watchpoint SIGTRAP, ignoring\n");
4604 /* NOTE: cagney/2003-03-29: These checks for a random signal
4605 at one stage in the past included checks for an inferior
4606 function call's call dummy's return breakpoint. The original
4607 comment, that went with the test, read:
4609 ``End of a stack dummy. Some systems (e.g. Sony news) give
4610 another signal besides SIGTRAP, so check here as well as
4613 If someone ever tries to get call dummys on a
4614 non-executable stack to work (where the target would stop
4615 with something like a SIGSEGV), then those tests might need
4616 to be re-instated. Given, however, that the tests were only
4617 enabled when momentary breakpoints were not being used, I
4618 suspect that it won't be the case.
4620 NOTE: kettenis/2004-02-05: Indeed such checks don't seem to
4621 be necessary for call dummies on a non-executable stack on
4624 /* See if the breakpoints module can explain the signal. */
4626 = !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat,
4627 ecs->event_thread->suspend.stop_signal);
4629 /* Maybe this was a trap for a software breakpoint that has since
4631 if (random_signal && target_stopped_by_sw_breakpoint ())
4633 if (program_breakpoint_here_p (gdbarch, stop_pc))
4635 struct regcache *regcache;
4638 /* Re-adjust PC to what the program would see if GDB was not
4640 regcache = get_thread_regcache (ecs->event_thread->ptid);
4641 decr_pc = gdbarch_decr_pc_after_break (gdbarch);
4644 struct cleanup *old_cleanups = make_cleanup (null_cleanup, NULL);
4646 if (record_full_is_used ())
4647 record_full_gdb_operation_disable_set ();
4649 regcache_write_pc (regcache, stop_pc + decr_pc);
4651 do_cleanups (old_cleanups);
4656 /* A delayed software breakpoint event. Ignore the trap. */
4658 fprintf_unfiltered (gdb_stdlog,
4659 "infrun: delayed software breakpoint "
4660 "trap, ignoring\n");
4665 /* Maybe this was a trap for a hardware breakpoint/watchpoint that
4666 has since been removed. */
4667 if (random_signal && target_stopped_by_hw_breakpoint ())
4669 /* A delayed hardware breakpoint event. Ignore the trap. */
4671 fprintf_unfiltered (gdb_stdlog,
4672 "infrun: delayed hardware breakpoint/watchpoint "
4673 "trap, ignoring\n");
4677 /* If not, perhaps stepping/nexting can. */
4679 random_signal = !(ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4680 && currently_stepping (ecs->event_thread));
4682 /* Perhaps the thread hit a single-step breakpoint of _another_
4683 thread. Single-step breakpoints are transparent to the
4684 breakpoints module. */
4686 random_signal = !ecs->hit_singlestep_breakpoint;
4688 /* No? Perhaps we got a moribund watchpoint. */
4690 random_signal = !stopped_by_watchpoint;
4692 /* For the program's own signals, act according to
4693 the signal handling tables. */
4697 /* Signal not for debugging purposes. */
4698 struct inferior *inf = find_inferior_ptid (ecs->ptid);
4699 enum gdb_signal stop_signal = ecs->event_thread->suspend.stop_signal;
4702 fprintf_unfiltered (gdb_stdlog, "infrun: random signal (%s)\n",
4703 gdb_signal_to_symbol_string (stop_signal));
4705 stopped_by_random_signal = 1;
4707 /* Always stop on signals if we're either just gaining control
4708 of the program, or the user explicitly requested this thread
4709 to remain stopped. */
4710 if (stop_soon != NO_STOP_QUIETLY
4711 || ecs->event_thread->stop_requested
4713 && signal_stop_state (ecs->event_thread->suspend.stop_signal)))
4719 /* Notify observers the signal has "handle print" set. Note we
4720 returned early above if stopping; normal_stop handles the
4721 printing in that case. */
4722 if (signal_print[ecs->event_thread->suspend.stop_signal])
4724 /* The signal table tells us to print about this signal. */
4725 target_terminal_ours_for_output ();
4726 observer_notify_signal_received (ecs->event_thread->suspend.stop_signal);
4727 target_terminal_inferior ();
4730 /* Clear the signal if it should not be passed. */
4731 if (signal_program[ecs->event_thread->suspend.stop_signal] == 0)
4732 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
4734 if (ecs->event_thread->prev_pc == stop_pc
4735 && ecs->event_thread->control.trap_expected
4736 && ecs->event_thread->control.step_resume_breakpoint == NULL)
4738 /* We were just starting a new sequence, attempting to
4739 single-step off of a breakpoint and expecting a SIGTRAP.
4740 Instead this signal arrives. This signal will take us out
4741 of the stepping range so GDB needs to remember to, when
4742 the signal handler returns, resume stepping off that
4744 /* To simplify things, "continue" is forced to use the same
4745 code paths as single-step - set a breakpoint at the
4746 signal return address and then, once hit, step off that
4749 fprintf_unfiltered (gdb_stdlog,
4750 "infrun: signal arrived while stepping over "
4753 insert_hp_step_resume_breakpoint_at_frame (frame);
4754 ecs->event_thread->step_after_step_resume_breakpoint = 1;
4755 /* Reset trap_expected to ensure breakpoints are re-inserted. */
4756 ecs->event_thread->control.trap_expected = 0;
4758 /* If we were nexting/stepping some other thread, switch to
4759 it, so that we don't continue it, losing control. */
4760 if (!switch_back_to_stepped_thread (ecs))
4765 if (ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_0
4766 && (pc_in_thread_step_range (stop_pc, ecs->event_thread)
4767 || ecs->event_thread->control.step_range_end == 1)
4768 && frame_id_eq (get_stack_frame_id (frame),
4769 ecs->event_thread->control.step_stack_frame_id)
4770 && ecs->event_thread->control.step_resume_breakpoint == NULL)
4772 /* The inferior is about to take a signal that will take it
4773 out of the single step range. Set a breakpoint at the
4774 current PC (which is presumably where the signal handler
4775 will eventually return) and then allow the inferior to
4778 Note that this is only needed for a signal delivered
4779 while in the single-step range. Nested signals aren't a
4780 problem as they eventually all return. */
4782 fprintf_unfiltered (gdb_stdlog,
4783 "infrun: signal may take us out of "
4784 "single-step range\n");
4786 insert_hp_step_resume_breakpoint_at_frame (frame);
4787 ecs->event_thread->step_after_step_resume_breakpoint = 1;
4788 /* Reset trap_expected to ensure breakpoints are re-inserted. */
4789 ecs->event_thread->control.trap_expected = 0;
4794 /* Note: step_resume_breakpoint may be non-NULL. This occures
4795 when either there's a nested signal, or when there's a
4796 pending signal enabled just as the signal handler returns
4797 (leaving the inferior at the step-resume-breakpoint without
4798 actually executing it). Either way continue until the
4799 breakpoint is really hit. */
4801 if (!switch_back_to_stepped_thread (ecs))
4804 fprintf_unfiltered (gdb_stdlog,
4805 "infrun: random signal, keep going\n");
4812 process_event_stop_test (ecs);
4815 /* Come here when we've got some debug event / signal we can explain
4816 (IOW, not a random signal), and test whether it should cause a
4817 stop, or whether we should resume the inferior (transparently).
4818 E.g., could be a breakpoint whose condition evaluates false; we
4819 could be still stepping within the line; etc. */
4822 process_event_stop_test (struct execution_control_state *ecs)
4824 struct symtab_and_line stop_pc_sal;
4825 struct frame_info *frame;
4826 struct gdbarch *gdbarch;
4827 CORE_ADDR jmp_buf_pc;
4828 struct bpstat_what what;
4830 /* Handle cases caused by hitting a breakpoint. */
4832 frame = get_current_frame ();
4833 gdbarch = get_frame_arch (frame);
4835 what = bpstat_what (ecs->event_thread->control.stop_bpstat);
4837 if (what.call_dummy)
4839 stop_stack_dummy = what.call_dummy;
4842 /* If we hit an internal event that triggers symbol changes, the
4843 current frame will be invalidated within bpstat_what (e.g., if we
4844 hit an internal solib event). Re-fetch it. */
4845 frame = get_current_frame ();
4846 gdbarch = get_frame_arch (frame);
4848 switch (what.main_action)
4850 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
4851 /* If we hit the breakpoint at longjmp while stepping, we
4852 install a momentary breakpoint at the target of the
4856 fprintf_unfiltered (gdb_stdlog,
4857 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME\n");
4859 ecs->event_thread->stepping_over_breakpoint = 1;
4861 if (what.is_longjmp)
4863 struct value *arg_value;
4865 /* If we set the longjmp breakpoint via a SystemTap probe,
4866 then use it to extract the arguments. The destination PC
4867 is the third argument to the probe. */
4868 arg_value = probe_safe_evaluate_at_pc (frame, 2);
4871 jmp_buf_pc = value_as_address (arg_value);
4872 jmp_buf_pc = gdbarch_addr_bits_remove (gdbarch, jmp_buf_pc);
4874 else if (!gdbarch_get_longjmp_target_p (gdbarch)
4875 || !gdbarch_get_longjmp_target (gdbarch,
4876 frame, &jmp_buf_pc))
4879 fprintf_unfiltered (gdb_stdlog,
4880 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME "
4881 "(!gdbarch_get_longjmp_target)\n");
4886 /* Insert a breakpoint at resume address. */
4887 insert_longjmp_resume_breakpoint (gdbarch, jmp_buf_pc);
4890 check_exception_resume (ecs, frame);
4894 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
4896 struct frame_info *init_frame;
4898 /* There are several cases to consider.
4900 1. The initiating frame no longer exists. In this case we
4901 must stop, because the exception or longjmp has gone too
4904 2. The initiating frame exists, and is the same as the
4905 current frame. We stop, because the exception or longjmp
4908 3. The initiating frame exists and is different from the
4909 current frame. This means the exception or longjmp has
4910 been caught beneath the initiating frame, so keep going.
4912 4. longjmp breakpoint has been placed just to protect
4913 against stale dummy frames and user is not interested in
4914 stopping around longjmps. */
4917 fprintf_unfiltered (gdb_stdlog,
4918 "infrun: BPSTAT_WHAT_CLEAR_LONGJMP_RESUME\n");
4920 gdb_assert (ecs->event_thread->control.exception_resume_breakpoint
4922 delete_exception_resume_breakpoint (ecs->event_thread);
4924 if (what.is_longjmp)
4926 check_longjmp_breakpoint_for_call_dummy (ecs->event_thread);
4928 if (!frame_id_p (ecs->event_thread->initiating_frame))
4936 init_frame = frame_find_by_id (ecs->event_thread->initiating_frame);
4940 struct frame_id current_id
4941 = get_frame_id (get_current_frame ());
4942 if (frame_id_eq (current_id,
4943 ecs->event_thread->initiating_frame))
4945 /* Case 2. Fall through. */
4955 /* For Cases 1 and 2, remove the step-resume breakpoint, if it
4957 delete_step_resume_breakpoint (ecs->event_thread);
4959 end_stepping_range (ecs);
4963 case BPSTAT_WHAT_SINGLE:
4965 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_SINGLE\n");
4966 ecs->event_thread->stepping_over_breakpoint = 1;
4967 /* Still need to check other stuff, at least the case where we
4968 are stepping and step out of the right range. */
4971 case BPSTAT_WHAT_STEP_RESUME:
4973 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STEP_RESUME\n");
4975 delete_step_resume_breakpoint (ecs->event_thread);
4976 if (ecs->event_thread->control.proceed_to_finish
4977 && execution_direction == EXEC_REVERSE)
4979 struct thread_info *tp = ecs->event_thread;
4981 /* We are finishing a function in reverse, and just hit the
4982 step-resume breakpoint at the start address of the
4983 function, and we're almost there -- just need to back up
4984 by one more single-step, which should take us back to the
4986 tp->control.step_range_start = tp->control.step_range_end = 1;
4990 fill_in_stop_func (gdbarch, ecs);
4991 if (stop_pc == ecs->stop_func_start
4992 && execution_direction == EXEC_REVERSE)
4994 /* We are stepping over a function call in reverse, and just
4995 hit the step-resume breakpoint at the start address of
4996 the function. Go back to single-stepping, which should
4997 take us back to the function call. */
4998 ecs->event_thread->stepping_over_breakpoint = 1;
5004 case BPSTAT_WHAT_STOP_NOISY:
5006 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_NOISY\n");
5007 stop_print_frame = 1;
5009 /* Assume the thread stopped for a breapoint. We'll still check
5010 whether a/the breakpoint is there when the thread is next
5012 ecs->event_thread->stepping_over_breakpoint = 1;
5017 case BPSTAT_WHAT_STOP_SILENT:
5019 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_SILENT\n");
5020 stop_print_frame = 0;
5022 /* Assume the thread stopped for a breapoint. We'll still check
5023 whether a/the breakpoint is there when the thread is next
5025 ecs->event_thread->stepping_over_breakpoint = 1;
5029 case BPSTAT_WHAT_HP_STEP_RESUME:
5031 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_HP_STEP_RESUME\n");
5033 delete_step_resume_breakpoint (ecs->event_thread);
5034 if (ecs->event_thread->step_after_step_resume_breakpoint)
5036 /* Back when the step-resume breakpoint was inserted, we
5037 were trying to single-step off a breakpoint. Go back to
5039 ecs->event_thread->step_after_step_resume_breakpoint = 0;
5040 ecs->event_thread->stepping_over_breakpoint = 1;
5046 case BPSTAT_WHAT_KEEP_CHECKING:
5050 /* If we stepped a permanent breakpoint and we had a high priority
5051 step-resume breakpoint for the address we stepped, but we didn't
5052 hit it, then we must have stepped into the signal handler. The
5053 step-resume was only necessary to catch the case of _not_
5054 stepping into the handler, so delete it, and fall through to
5055 checking whether the step finished. */
5056 if (ecs->event_thread->stepped_breakpoint)
5058 struct breakpoint *sr_bp
5059 = ecs->event_thread->control.step_resume_breakpoint;
5062 && sr_bp->loc->permanent
5063 && sr_bp->type == bp_hp_step_resume
5064 && sr_bp->loc->address == ecs->event_thread->prev_pc)
5067 fprintf_unfiltered (gdb_stdlog,
5068 "infrun: stepped permanent breakpoint, stopped in "
5070 delete_step_resume_breakpoint (ecs->event_thread);
5071 ecs->event_thread->step_after_step_resume_breakpoint = 0;
5075 /* We come here if we hit a breakpoint but should not stop for it.
5076 Possibly we also were stepping and should stop for that. So fall
5077 through and test for stepping. But, if not stepping, do not
5080 /* In all-stop mode, if we're currently stepping but have stopped in
5081 some other thread, we need to switch back to the stepped thread. */
5082 if (switch_back_to_stepped_thread (ecs))
5085 if (ecs->event_thread->control.step_resume_breakpoint)
5088 fprintf_unfiltered (gdb_stdlog,
5089 "infrun: step-resume breakpoint is inserted\n");
5091 /* Having a step-resume breakpoint overrides anything
5092 else having to do with stepping commands until
5093 that breakpoint is reached. */
5098 if (ecs->event_thread->control.step_range_end == 0)
5101 fprintf_unfiltered (gdb_stdlog, "infrun: no stepping, continue\n");
5102 /* Likewise if we aren't even stepping. */
5107 /* Re-fetch current thread's frame in case the code above caused
5108 the frame cache to be re-initialized, making our FRAME variable
5109 a dangling pointer. */
5110 frame = get_current_frame ();
5111 gdbarch = get_frame_arch (frame);
5112 fill_in_stop_func (gdbarch, ecs);
5114 /* If stepping through a line, keep going if still within it.
5116 Note that step_range_end is the address of the first instruction
5117 beyond the step range, and NOT the address of the last instruction
5120 Note also that during reverse execution, we may be stepping
5121 through a function epilogue and therefore must detect when
5122 the current-frame changes in the middle of a line. */
5124 if (pc_in_thread_step_range (stop_pc, ecs->event_thread)
5125 && (execution_direction != EXEC_REVERSE
5126 || frame_id_eq (get_frame_id (frame),
5127 ecs->event_thread->control.step_frame_id)))
5131 (gdb_stdlog, "infrun: stepping inside range [%s-%s]\n",
5132 paddress (gdbarch, ecs->event_thread->control.step_range_start),
5133 paddress (gdbarch, ecs->event_thread->control.step_range_end));
5135 /* Tentatively re-enable range stepping; `resume' disables it if
5136 necessary (e.g., if we're stepping over a breakpoint or we
5137 have software watchpoints). */
5138 ecs->event_thread->control.may_range_step = 1;
5140 /* When stepping backward, stop at beginning of line range
5141 (unless it's the function entry point, in which case
5142 keep going back to the call point). */
5143 if (stop_pc == ecs->event_thread->control.step_range_start
5144 && stop_pc != ecs->stop_func_start
5145 && execution_direction == EXEC_REVERSE)
5146 end_stepping_range (ecs);
5153 /* We stepped out of the stepping range. */
5155 /* If we are stepping at the source level and entered the runtime
5156 loader dynamic symbol resolution code...
5158 EXEC_FORWARD: we keep on single stepping until we exit the run
5159 time loader code and reach the callee's address.
5161 EXEC_REVERSE: we've already executed the callee (backward), and
5162 the runtime loader code is handled just like any other
5163 undebuggable function call. Now we need only keep stepping
5164 backward through the trampoline code, and that's handled further
5165 down, so there is nothing for us to do here. */
5167 if (execution_direction != EXEC_REVERSE
5168 && ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
5169 && in_solib_dynsym_resolve_code (stop_pc))
5171 CORE_ADDR pc_after_resolver =
5172 gdbarch_skip_solib_resolver (gdbarch, stop_pc);
5175 fprintf_unfiltered (gdb_stdlog,
5176 "infrun: stepped into dynsym resolve code\n");
5178 if (pc_after_resolver)
5180 /* Set up a step-resume breakpoint at the address
5181 indicated by SKIP_SOLIB_RESOLVER. */
5182 struct symtab_and_line sr_sal;
5185 sr_sal.pc = pc_after_resolver;
5186 sr_sal.pspace = get_frame_program_space (frame);
5188 insert_step_resume_breakpoint_at_sal (gdbarch,
5189 sr_sal, null_frame_id);
5196 if (ecs->event_thread->control.step_range_end != 1
5197 && (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
5198 || ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
5199 && get_frame_type (frame) == SIGTRAMP_FRAME)
5202 fprintf_unfiltered (gdb_stdlog,
5203 "infrun: stepped into signal trampoline\n");
5204 /* The inferior, while doing a "step" or "next", has ended up in
5205 a signal trampoline (either by a signal being delivered or by
5206 the signal handler returning). Just single-step until the
5207 inferior leaves the trampoline (either by calling the handler
5213 /* If we're in the return path from a shared library trampoline,
5214 we want to proceed through the trampoline when stepping. */
5215 /* macro/2012-04-25: This needs to come before the subroutine
5216 call check below as on some targets return trampolines look
5217 like subroutine calls (MIPS16 return thunks). */
5218 if (gdbarch_in_solib_return_trampoline (gdbarch,
5219 stop_pc, ecs->stop_func_name)
5220 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
5222 /* Determine where this trampoline returns. */
5223 CORE_ADDR real_stop_pc;
5225 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
5228 fprintf_unfiltered (gdb_stdlog,
5229 "infrun: stepped into solib return tramp\n");
5231 /* Only proceed through if we know where it's going. */
5234 /* And put the step-breakpoint there and go until there. */
5235 struct symtab_and_line sr_sal;
5237 init_sal (&sr_sal); /* initialize to zeroes */
5238 sr_sal.pc = real_stop_pc;
5239 sr_sal.section = find_pc_overlay (sr_sal.pc);
5240 sr_sal.pspace = get_frame_program_space (frame);
5242 /* Do not specify what the fp should be when we stop since
5243 on some machines the prologue is where the new fp value
5245 insert_step_resume_breakpoint_at_sal (gdbarch,
5246 sr_sal, null_frame_id);
5248 /* Restart without fiddling with the step ranges or
5255 /* Check for subroutine calls. The check for the current frame
5256 equalling the step ID is not necessary - the check of the
5257 previous frame's ID is sufficient - but it is a common case and
5258 cheaper than checking the previous frame's ID.
5260 NOTE: frame_id_eq will never report two invalid frame IDs as
5261 being equal, so to get into this block, both the current and
5262 previous frame must have valid frame IDs. */
5263 /* The outer_frame_id check is a heuristic to detect stepping
5264 through startup code. If we step over an instruction which
5265 sets the stack pointer from an invalid value to a valid value,
5266 we may detect that as a subroutine call from the mythical
5267 "outermost" function. This could be fixed by marking
5268 outermost frames as !stack_p,code_p,special_p. Then the
5269 initial outermost frame, before sp was valid, would
5270 have code_addr == &_start. See the comment in frame_id_eq
5272 if (!frame_id_eq (get_stack_frame_id (frame),
5273 ecs->event_thread->control.step_stack_frame_id)
5274 && (frame_id_eq (frame_unwind_caller_id (get_current_frame ()),
5275 ecs->event_thread->control.step_stack_frame_id)
5276 && (!frame_id_eq (ecs->event_thread->control.step_stack_frame_id,
5278 || (ecs->event_thread->control.step_start_function
5279 != find_pc_function (stop_pc)))))
5281 CORE_ADDR real_stop_pc;
5284 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into subroutine\n");
5286 if (ecs->event_thread->control.step_over_calls == STEP_OVER_NONE)
5288 /* I presume that step_over_calls is only 0 when we're
5289 supposed to be stepping at the assembly language level
5290 ("stepi"). Just stop. */
5291 /* And this works the same backward as frontward. MVS */
5292 end_stepping_range (ecs);
5296 /* Reverse stepping through solib trampolines. */
5298 if (execution_direction == EXEC_REVERSE
5299 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE
5300 && (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
5301 || (ecs->stop_func_start == 0
5302 && in_solib_dynsym_resolve_code (stop_pc))))
5304 /* Any solib trampoline code can be handled in reverse
5305 by simply continuing to single-step. We have already
5306 executed the solib function (backwards), and a few
5307 steps will take us back through the trampoline to the
5313 if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
5315 /* We're doing a "next".
5317 Normal (forward) execution: set a breakpoint at the
5318 callee's return address (the address at which the caller
5321 Reverse (backward) execution. set the step-resume
5322 breakpoint at the start of the function that we just
5323 stepped into (backwards), and continue to there. When we
5324 get there, we'll need to single-step back to the caller. */
5326 if (execution_direction == EXEC_REVERSE)
5328 /* If we're already at the start of the function, we've either
5329 just stepped backward into a single instruction function,
5330 or stepped back out of a signal handler to the first instruction
5331 of the function. Just keep going, which will single-step back
5333 if (ecs->stop_func_start != stop_pc && ecs->stop_func_start != 0)
5335 struct symtab_and_line sr_sal;
5337 /* Normal function call return (static or dynamic). */
5339 sr_sal.pc = ecs->stop_func_start;
5340 sr_sal.pspace = get_frame_program_space (frame);
5341 insert_step_resume_breakpoint_at_sal (gdbarch,
5342 sr_sal, null_frame_id);
5346 insert_step_resume_breakpoint_at_caller (frame);
5352 /* If we are in a function call trampoline (a stub between the
5353 calling routine and the real function), locate the real
5354 function. That's what tells us (a) whether we want to step
5355 into it at all, and (b) what prologue we want to run to the
5356 end of, if we do step into it. */
5357 real_stop_pc = skip_language_trampoline (frame, stop_pc);
5358 if (real_stop_pc == 0)
5359 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
5360 if (real_stop_pc != 0)
5361 ecs->stop_func_start = real_stop_pc;
5363 if (real_stop_pc != 0 && in_solib_dynsym_resolve_code (real_stop_pc))
5365 struct symtab_and_line sr_sal;
5368 sr_sal.pc = ecs->stop_func_start;
5369 sr_sal.pspace = get_frame_program_space (frame);
5371 insert_step_resume_breakpoint_at_sal (gdbarch,
5372 sr_sal, null_frame_id);
5377 /* If we have line number information for the function we are
5378 thinking of stepping into and the function isn't on the skip
5381 If there are several symtabs at that PC (e.g. with include
5382 files), just want to know whether *any* of them have line
5383 numbers. find_pc_line handles this. */
5385 struct symtab_and_line tmp_sal;
5387 tmp_sal = find_pc_line (ecs->stop_func_start, 0);
5388 if (tmp_sal.line != 0
5389 && !function_name_is_marked_for_skip (ecs->stop_func_name,
5392 if (execution_direction == EXEC_REVERSE)
5393 handle_step_into_function_backward (gdbarch, ecs);
5395 handle_step_into_function (gdbarch, ecs);
5400 /* If we have no line number and the step-stop-if-no-debug is
5401 set, we stop the step so that the user has a chance to switch
5402 in assembly mode. */
5403 if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
5404 && step_stop_if_no_debug)
5406 end_stepping_range (ecs);
5410 if (execution_direction == EXEC_REVERSE)
5412 /* If we're already at the start of the function, we've either just
5413 stepped backward into a single instruction function without line
5414 number info, or stepped back out of a signal handler to the first
5415 instruction of the function without line number info. Just keep
5416 going, which will single-step back to the caller. */
5417 if (ecs->stop_func_start != stop_pc)
5419 /* Set a breakpoint at callee's start address.
5420 From there we can step once and be back in the caller. */
5421 struct symtab_and_line sr_sal;
5424 sr_sal.pc = ecs->stop_func_start;
5425 sr_sal.pspace = get_frame_program_space (frame);
5426 insert_step_resume_breakpoint_at_sal (gdbarch,
5427 sr_sal, null_frame_id);
5431 /* Set a breakpoint at callee's return address (the address
5432 at which the caller will resume). */
5433 insert_step_resume_breakpoint_at_caller (frame);
5439 /* Reverse stepping through solib trampolines. */
5441 if (execution_direction == EXEC_REVERSE
5442 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
5444 if (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
5445 || (ecs->stop_func_start == 0
5446 && in_solib_dynsym_resolve_code (stop_pc)))
5448 /* Any solib trampoline code can be handled in reverse
5449 by simply continuing to single-step. We have already
5450 executed the solib function (backwards), and a few
5451 steps will take us back through the trampoline to the
5456 else if (in_solib_dynsym_resolve_code (stop_pc))
5458 /* Stepped backward into the solib dynsym resolver.
5459 Set a breakpoint at its start and continue, then
5460 one more step will take us out. */
5461 struct symtab_and_line sr_sal;
5464 sr_sal.pc = ecs->stop_func_start;
5465 sr_sal.pspace = get_frame_program_space (frame);
5466 insert_step_resume_breakpoint_at_sal (gdbarch,
5467 sr_sal, null_frame_id);
5473 stop_pc_sal = find_pc_line (stop_pc, 0);
5475 /* NOTE: tausq/2004-05-24: This if block used to be done before all
5476 the trampoline processing logic, however, there are some trampolines
5477 that have no names, so we should do trampoline handling first. */
5478 if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
5479 && ecs->stop_func_name == NULL
5480 && stop_pc_sal.line == 0)
5483 fprintf_unfiltered (gdb_stdlog,
5484 "infrun: stepped into undebuggable function\n");
5486 /* The inferior just stepped into, or returned to, an
5487 undebuggable function (where there is no debugging information
5488 and no line number corresponding to the address where the
5489 inferior stopped). Since we want to skip this kind of code,
5490 we keep going until the inferior returns from this
5491 function - unless the user has asked us not to (via
5492 set step-mode) or we no longer know how to get back
5493 to the call site. */
5494 if (step_stop_if_no_debug
5495 || !frame_id_p (frame_unwind_caller_id (frame)))
5497 /* If we have no line number and the step-stop-if-no-debug
5498 is set, we stop the step so that the user has a chance to
5499 switch in assembly mode. */
5500 end_stepping_range (ecs);
5505 /* Set a breakpoint at callee's return address (the address
5506 at which the caller will resume). */
5507 insert_step_resume_breakpoint_at_caller (frame);
5513 if (ecs->event_thread->control.step_range_end == 1)
5515 /* It is stepi or nexti. We always want to stop stepping after
5518 fprintf_unfiltered (gdb_stdlog, "infrun: stepi/nexti\n");
5519 end_stepping_range (ecs);
5523 if (stop_pc_sal.line == 0)
5525 /* We have no line number information. That means to stop
5526 stepping (does this always happen right after one instruction,
5527 when we do "s" in a function with no line numbers,
5528 or can this happen as a result of a return or longjmp?). */
5530 fprintf_unfiltered (gdb_stdlog, "infrun: no line number info\n");
5531 end_stepping_range (ecs);
5535 /* Look for "calls" to inlined functions, part one. If the inline
5536 frame machinery detected some skipped call sites, we have entered
5537 a new inline function. */
5539 if (frame_id_eq (get_frame_id (get_current_frame ()),
5540 ecs->event_thread->control.step_frame_id)
5541 && inline_skipped_frames (ecs->ptid))
5543 struct symtab_and_line call_sal;
5546 fprintf_unfiltered (gdb_stdlog,
5547 "infrun: stepped into inlined function\n");
5549 find_frame_sal (get_current_frame (), &call_sal);
5551 if (ecs->event_thread->control.step_over_calls != STEP_OVER_ALL)
5553 /* For "step", we're going to stop. But if the call site
5554 for this inlined function is on the same source line as
5555 we were previously stepping, go down into the function
5556 first. Otherwise stop at the call site. */
5558 if (call_sal.line == ecs->event_thread->current_line
5559 && call_sal.symtab == ecs->event_thread->current_symtab)
5560 step_into_inline_frame (ecs->ptid);
5562 end_stepping_range (ecs);
5567 /* For "next", we should stop at the call site if it is on a
5568 different source line. Otherwise continue through the
5569 inlined function. */
5570 if (call_sal.line == ecs->event_thread->current_line
5571 && call_sal.symtab == ecs->event_thread->current_symtab)
5574 end_stepping_range (ecs);
5579 /* Look for "calls" to inlined functions, part two. If we are still
5580 in the same real function we were stepping through, but we have
5581 to go further up to find the exact frame ID, we are stepping
5582 through a more inlined call beyond its call site. */
5584 if (get_frame_type (get_current_frame ()) == INLINE_FRAME
5585 && !frame_id_eq (get_frame_id (get_current_frame ()),
5586 ecs->event_thread->control.step_frame_id)
5587 && stepped_in_from (get_current_frame (),
5588 ecs->event_thread->control.step_frame_id))
5591 fprintf_unfiltered (gdb_stdlog,
5592 "infrun: stepping through inlined function\n");
5594 if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
5597 end_stepping_range (ecs);
5601 if ((stop_pc == stop_pc_sal.pc)
5602 && (ecs->event_thread->current_line != stop_pc_sal.line
5603 || ecs->event_thread->current_symtab != stop_pc_sal.symtab))
5605 /* We are at the start of a different line. So stop. Note that
5606 we don't stop if we step into the middle of a different line.
5607 That is said to make things like for (;;) statements work
5610 fprintf_unfiltered (gdb_stdlog,
5611 "infrun: stepped to a different line\n");
5612 end_stepping_range (ecs);
5616 /* We aren't done stepping.
5618 Optimize by setting the stepping range to the line.
5619 (We might not be in the original line, but if we entered a
5620 new line in mid-statement, we continue stepping. This makes
5621 things like for(;;) statements work better.) */
5623 ecs->event_thread->control.step_range_start = stop_pc_sal.pc;
5624 ecs->event_thread->control.step_range_end = stop_pc_sal.end;
5625 ecs->event_thread->control.may_range_step = 1;
5626 set_step_info (frame, stop_pc_sal);
5629 fprintf_unfiltered (gdb_stdlog, "infrun: keep going\n");
5633 /* In all-stop mode, if we're currently stepping but have stopped in
5634 some other thread, we may need to switch back to the stepped
5635 thread. Returns true we set the inferior running, false if we left
5636 it stopped (and the event needs further processing). */
5639 switch_back_to_stepped_thread (struct execution_control_state *ecs)
5643 struct thread_info *tp;
5644 struct thread_info *stepping_thread;
5645 struct thread_info *step_over;
5647 /* If any thread is blocked on some internal breakpoint, and we
5648 simply need to step over that breakpoint to get it going
5649 again, do that first. */
5651 /* However, if we see an event for the stepping thread, then we
5652 know all other threads have been moved past their breakpoints
5653 already. Let the caller check whether the step is finished,
5654 etc., before deciding to move it past a breakpoint. */
5655 if (ecs->event_thread->control.step_range_end != 0)
5658 /* Check if the current thread is blocked on an incomplete
5659 step-over, interrupted by a random signal. */
5660 if (ecs->event_thread->control.trap_expected
5661 && ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_TRAP)
5665 fprintf_unfiltered (gdb_stdlog,
5666 "infrun: need to finish step-over of [%s]\n",
5667 target_pid_to_str (ecs->event_thread->ptid));
5673 /* Check if the current thread is blocked by a single-step
5674 breakpoint of another thread. */
5675 if (ecs->hit_singlestep_breakpoint)
5679 fprintf_unfiltered (gdb_stdlog,
5680 "infrun: need to step [%s] over single-step "
5682 target_pid_to_str (ecs->ptid));
5688 /* Otherwise, we no longer expect a trap in the current thread.
5689 Clear the trap_expected flag before switching back -- this is
5690 what keep_going does as well, if we call it. */
5691 ecs->event_thread->control.trap_expected = 0;
5693 /* Likewise, clear the signal if it should not be passed. */
5694 if (!signal_program[ecs->event_thread->suspend.stop_signal])
5695 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5697 /* If scheduler locking applies even if not stepping, there's no
5698 need to walk over threads. Above we've checked whether the
5699 current thread is stepping. If some other thread not the
5700 event thread is stepping, then it must be that scheduler
5701 locking is not in effect. */
5702 if (schedlock_applies (ecs->event_thread))
5705 /* Look for the stepping/nexting thread, and check if any other
5706 thread other than the stepping thread needs to start a
5707 step-over. Do all step-overs before actually proceeding with
5709 stepping_thread = NULL;
5711 ALL_NON_EXITED_THREADS (tp)
5713 /* Ignore threads of processes we're not resuming. */
5715 && ptid_get_pid (tp->ptid) != ptid_get_pid (inferior_ptid))
5718 /* When stepping over a breakpoint, we lock all threads
5719 except the one that needs to move past the breakpoint.
5720 If a non-event thread has this set, the "incomplete
5721 step-over" check above should have caught it earlier. */
5722 gdb_assert (!tp->control.trap_expected);
5724 /* Did we find the stepping thread? */
5725 if (tp->control.step_range_end)
5727 /* Yep. There should only one though. */
5728 gdb_assert (stepping_thread == NULL);
5730 /* The event thread is handled at the top, before we
5732 gdb_assert (tp != ecs->event_thread);
5734 /* If some thread other than the event thread is
5735 stepping, then scheduler locking can't be in effect,
5736 otherwise we wouldn't have resumed the current event
5737 thread in the first place. */
5738 gdb_assert (!schedlock_applies (tp));
5740 stepping_thread = tp;
5742 else if (thread_still_needs_step_over (tp))
5746 /* At the top we've returned early if the event thread
5747 is stepping. If some other thread not the event
5748 thread is stepping, then scheduler locking can't be
5749 in effect, and we can resume this thread. No need to
5750 keep looking for the stepping thread then. */
5755 if (step_over != NULL)
5760 fprintf_unfiltered (gdb_stdlog,
5761 "infrun: need to step-over [%s]\n",
5762 target_pid_to_str (tp->ptid));
5765 /* Only the stepping thread should have this set. */
5766 gdb_assert (tp->control.step_range_end == 0);
5768 ecs->ptid = tp->ptid;
5769 ecs->event_thread = tp;
5770 switch_to_thread (ecs->ptid);
5775 if (stepping_thread != NULL)
5777 struct frame_info *frame;
5778 struct gdbarch *gdbarch;
5780 tp = stepping_thread;
5782 /* If the stepping thread exited, then don't try to switch
5783 back and resume it, which could fail in several different
5784 ways depending on the target. Instead, just keep going.
5786 We can find a stepping dead thread in the thread list in
5789 - The target supports thread exit events, and when the
5790 target tries to delete the thread from the thread list,
5791 inferior_ptid pointed at the exiting thread. In such
5792 case, calling delete_thread does not really remove the
5793 thread from the list; instead, the thread is left listed,
5794 with 'exited' state.
5796 - The target's debug interface does not support thread
5797 exit events, and so we have no idea whatsoever if the
5798 previously stepping thread is still alive. For that
5799 reason, we need to synchronously query the target
5801 if (is_exited (tp->ptid)
5802 || !target_thread_alive (tp->ptid))
5805 fprintf_unfiltered (gdb_stdlog,
5806 "infrun: not switching back to "
5807 "stepped thread, it has vanished\n");
5809 delete_thread (tp->ptid);
5815 fprintf_unfiltered (gdb_stdlog,
5816 "infrun: switching back to stepped thread\n");
5818 ecs->event_thread = tp;
5819 ecs->ptid = tp->ptid;
5820 context_switch (ecs->ptid);
5822 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
5823 frame = get_current_frame ();
5824 gdbarch = get_frame_arch (frame);
5826 /* If the PC of the thread we were trying to single-step has
5827 changed, then that thread has trapped or been signaled,
5828 but the event has not been reported to GDB yet. Re-poll
5829 the target looking for this particular thread's event
5830 (i.e. temporarily enable schedlock) by:
5832 - setting a break at the current PC
5833 - resuming that particular thread, only (by setting
5836 This prevents us continuously moving the single-step
5837 breakpoint forward, one instruction at a time,
5840 if (stop_pc != tp->prev_pc)
5845 fprintf_unfiltered (gdb_stdlog,
5846 "infrun: expected thread advanced also\n");
5848 /* Clear the info of the previous step-over, as it's no
5849 longer valid. It's what keep_going would do too, if
5850 we called it. Must do this before trying to insert
5851 the sss breakpoint, otherwise if we were previously
5852 trying to step over this exact address in another
5853 thread, the breakpoint ends up not installed. */
5854 clear_step_over_info ();
5856 insert_single_step_breakpoint (get_frame_arch (frame),
5857 get_frame_address_space (frame),
5860 resume_ptid = user_visible_resume_ptid (tp->control.stepping_command);
5861 do_target_resume (resume_ptid,
5862 currently_stepping (tp), GDB_SIGNAL_0);
5863 prepare_to_wait (ecs);
5868 fprintf_unfiltered (gdb_stdlog,
5869 "infrun: expected thread still "
5870 "hasn't advanced\n");
5880 /* Is thread TP in the middle of single-stepping? */
5883 currently_stepping (struct thread_info *tp)
5885 return ((tp->control.step_range_end
5886 && tp->control.step_resume_breakpoint == NULL)
5887 || tp->control.trap_expected
5888 || tp->stepped_breakpoint
5889 || bpstat_should_step ());
5892 /* Inferior has stepped into a subroutine call with source code that
5893 we should not step over. Do step to the first line of code in
5897 handle_step_into_function (struct gdbarch *gdbarch,
5898 struct execution_control_state *ecs)
5900 struct compunit_symtab *cust;
5901 struct symtab_and_line stop_func_sal, sr_sal;
5903 fill_in_stop_func (gdbarch, ecs);
5905 cust = find_pc_compunit_symtab (stop_pc);
5906 if (cust != NULL && compunit_language (cust) != language_asm)
5907 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
5908 ecs->stop_func_start);
5910 stop_func_sal = find_pc_line (ecs->stop_func_start, 0);
5911 /* Use the step_resume_break to step until the end of the prologue,
5912 even if that involves jumps (as it seems to on the vax under
5914 /* If the prologue ends in the middle of a source line, continue to
5915 the end of that source line (if it is still within the function).
5916 Otherwise, just go to end of prologue. */
5917 if (stop_func_sal.end
5918 && stop_func_sal.pc != ecs->stop_func_start
5919 && stop_func_sal.end < ecs->stop_func_end)
5920 ecs->stop_func_start = stop_func_sal.end;
5922 /* Architectures which require breakpoint adjustment might not be able
5923 to place a breakpoint at the computed address. If so, the test
5924 ``ecs->stop_func_start == stop_pc'' will never succeed. Adjust
5925 ecs->stop_func_start to an address at which a breakpoint may be
5926 legitimately placed.
5928 Note: kevinb/2004-01-19: On FR-V, if this adjustment is not
5929 made, GDB will enter an infinite loop when stepping through
5930 optimized code consisting of VLIW instructions which contain
5931 subinstructions corresponding to different source lines. On
5932 FR-V, it's not permitted to place a breakpoint on any but the
5933 first subinstruction of a VLIW instruction. When a breakpoint is
5934 set, GDB will adjust the breakpoint address to the beginning of
5935 the VLIW instruction. Thus, we need to make the corresponding
5936 adjustment here when computing the stop address. */
5938 if (gdbarch_adjust_breakpoint_address_p (gdbarch))
5940 ecs->stop_func_start
5941 = gdbarch_adjust_breakpoint_address (gdbarch,
5942 ecs->stop_func_start);
5945 if (ecs->stop_func_start == stop_pc)
5947 /* We are already there: stop now. */
5948 end_stepping_range (ecs);
5953 /* Put the step-breakpoint there and go until there. */
5954 init_sal (&sr_sal); /* initialize to zeroes */
5955 sr_sal.pc = ecs->stop_func_start;
5956 sr_sal.section = find_pc_overlay (ecs->stop_func_start);
5957 sr_sal.pspace = get_frame_program_space (get_current_frame ());
5959 /* Do not specify what the fp should be when we stop since on
5960 some machines the prologue is where the new fp value is
5962 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal, null_frame_id);
5964 /* And make sure stepping stops right away then. */
5965 ecs->event_thread->control.step_range_end
5966 = ecs->event_thread->control.step_range_start;
5971 /* Inferior has stepped backward into a subroutine call with source
5972 code that we should not step over. Do step to the beginning of the
5973 last line of code in it. */
5976 handle_step_into_function_backward (struct gdbarch *gdbarch,
5977 struct execution_control_state *ecs)
5979 struct compunit_symtab *cust;
5980 struct symtab_and_line stop_func_sal;
5982 fill_in_stop_func (gdbarch, ecs);
5984 cust = find_pc_compunit_symtab (stop_pc);
5985 if (cust != NULL && compunit_language (cust) != language_asm)
5986 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
5987 ecs->stop_func_start);
5989 stop_func_sal = find_pc_line (stop_pc, 0);
5991 /* OK, we're just going to keep stepping here. */
5992 if (stop_func_sal.pc == stop_pc)
5994 /* We're there already. Just stop stepping now. */
5995 end_stepping_range (ecs);
5999 /* Else just reset the step range and keep going.
6000 No step-resume breakpoint, they don't work for
6001 epilogues, which can have multiple entry paths. */
6002 ecs->event_thread->control.step_range_start = stop_func_sal.pc;
6003 ecs->event_thread->control.step_range_end = stop_func_sal.end;
6009 /* Insert a "step-resume breakpoint" at SR_SAL with frame ID SR_ID.
6010 This is used to both functions and to skip over code. */
6013 insert_step_resume_breakpoint_at_sal_1 (struct gdbarch *gdbarch,
6014 struct symtab_and_line sr_sal,
6015 struct frame_id sr_id,
6016 enum bptype sr_type)
6018 /* There should never be more than one step-resume or longjmp-resume
6019 breakpoint per thread, so we should never be setting a new
6020 step_resume_breakpoint when one is already active. */
6021 gdb_assert (inferior_thread ()->control.step_resume_breakpoint == NULL);
6022 gdb_assert (sr_type == bp_step_resume || sr_type == bp_hp_step_resume);
6025 fprintf_unfiltered (gdb_stdlog,
6026 "infrun: inserting step-resume breakpoint at %s\n",
6027 paddress (gdbarch, sr_sal.pc));
6029 inferior_thread ()->control.step_resume_breakpoint
6030 = set_momentary_breakpoint (gdbarch, sr_sal, sr_id, sr_type);
6034 insert_step_resume_breakpoint_at_sal (struct gdbarch *gdbarch,
6035 struct symtab_and_line sr_sal,
6036 struct frame_id sr_id)
6038 insert_step_resume_breakpoint_at_sal_1 (gdbarch,
6043 /* Insert a "high-priority step-resume breakpoint" at RETURN_FRAME.pc.
6044 This is used to skip a potential signal handler.
6046 This is called with the interrupted function's frame. The signal
6047 handler, when it returns, will resume the interrupted function at
6051 insert_hp_step_resume_breakpoint_at_frame (struct frame_info *return_frame)
6053 struct symtab_and_line sr_sal;
6054 struct gdbarch *gdbarch;
6056 gdb_assert (return_frame != NULL);
6057 init_sal (&sr_sal); /* initialize to zeros */
6059 gdbarch = get_frame_arch (return_frame);
6060 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch, get_frame_pc (return_frame));
6061 sr_sal.section = find_pc_overlay (sr_sal.pc);
6062 sr_sal.pspace = get_frame_program_space (return_frame);
6064 insert_step_resume_breakpoint_at_sal_1 (gdbarch, sr_sal,
6065 get_stack_frame_id (return_frame),
6069 /* Insert a "step-resume breakpoint" at the previous frame's PC. This
6070 is used to skip a function after stepping into it (for "next" or if
6071 the called function has no debugging information).
6073 The current function has almost always been reached by single
6074 stepping a call or return instruction. NEXT_FRAME belongs to the
6075 current function, and the breakpoint will be set at the caller's
6078 This is a separate function rather than reusing
6079 insert_hp_step_resume_breakpoint_at_frame in order to avoid
6080 get_prev_frame, which may stop prematurely (see the implementation
6081 of frame_unwind_caller_id for an example). */
6084 insert_step_resume_breakpoint_at_caller (struct frame_info *next_frame)
6086 struct symtab_and_line sr_sal;
6087 struct gdbarch *gdbarch;
6089 /* We shouldn't have gotten here if we don't know where the call site
6091 gdb_assert (frame_id_p (frame_unwind_caller_id (next_frame)));
6093 init_sal (&sr_sal); /* initialize to zeros */
6095 gdbarch = frame_unwind_caller_arch (next_frame);
6096 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch,
6097 frame_unwind_caller_pc (next_frame));
6098 sr_sal.section = find_pc_overlay (sr_sal.pc);
6099 sr_sal.pspace = frame_unwind_program_space (next_frame);
6101 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal,
6102 frame_unwind_caller_id (next_frame));
6105 /* Insert a "longjmp-resume" breakpoint at PC. This is used to set a
6106 new breakpoint at the target of a jmp_buf. The handling of
6107 longjmp-resume uses the same mechanisms used for handling
6108 "step-resume" breakpoints. */
6111 insert_longjmp_resume_breakpoint (struct gdbarch *gdbarch, CORE_ADDR pc)
6113 /* There should never be more than one longjmp-resume breakpoint per
6114 thread, so we should never be setting a new
6115 longjmp_resume_breakpoint when one is already active. */
6116 gdb_assert (inferior_thread ()->control.exception_resume_breakpoint == NULL);
6119 fprintf_unfiltered (gdb_stdlog,
6120 "infrun: inserting longjmp-resume breakpoint at %s\n",
6121 paddress (gdbarch, pc));
6123 inferior_thread ()->control.exception_resume_breakpoint =
6124 set_momentary_breakpoint_at_pc (gdbarch, pc, bp_longjmp_resume);
6127 /* Insert an exception resume breakpoint. TP is the thread throwing
6128 the exception. The block B is the block of the unwinder debug hook
6129 function. FRAME is the frame corresponding to the call to this
6130 function. SYM is the symbol of the function argument holding the
6131 target PC of the exception. */
6134 insert_exception_resume_breakpoint (struct thread_info *tp,
6135 const struct block *b,
6136 struct frame_info *frame,
6141 struct symbol *vsym;
6142 struct value *value;
6144 struct breakpoint *bp;
6146 vsym = lookup_symbol (SYMBOL_LINKAGE_NAME (sym), b, VAR_DOMAIN,
6148 value = read_var_value (vsym, frame);
6149 /* If the value was optimized out, revert to the old behavior. */
6150 if (! value_optimized_out (value))
6152 handler = value_as_address (value);
6155 fprintf_unfiltered (gdb_stdlog,
6156 "infrun: exception resume at %lx\n",
6157 (unsigned long) handler);
6159 bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
6160 handler, bp_exception_resume);
6162 /* set_momentary_breakpoint_at_pc invalidates FRAME. */
6165 bp->thread = tp->num;
6166 inferior_thread ()->control.exception_resume_breakpoint = bp;
6169 CATCH (e, RETURN_MASK_ERROR)
6171 /* We want to ignore errors here. */
6176 /* A helper for check_exception_resume that sets an
6177 exception-breakpoint based on a SystemTap probe. */
6180 insert_exception_resume_from_probe (struct thread_info *tp,
6181 const struct bound_probe *probe,
6182 struct frame_info *frame)
6184 struct value *arg_value;
6186 struct breakpoint *bp;
6188 arg_value = probe_safe_evaluate_at_pc (frame, 1);
6192 handler = value_as_address (arg_value);
6195 fprintf_unfiltered (gdb_stdlog,
6196 "infrun: exception resume at %s\n",
6197 paddress (get_objfile_arch (probe->objfile),
6200 bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
6201 handler, bp_exception_resume);
6202 bp->thread = tp->num;
6203 inferior_thread ()->control.exception_resume_breakpoint = bp;
6206 /* This is called when an exception has been intercepted. Check to
6207 see whether the exception's destination is of interest, and if so,
6208 set an exception resume breakpoint there. */
6211 check_exception_resume (struct execution_control_state *ecs,
6212 struct frame_info *frame)
6214 struct bound_probe probe;
6215 struct symbol *func;
6217 /* First see if this exception unwinding breakpoint was set via a
6218 SystemTap probe point. If so, the probe has two arguments: the
6219 CFA and the HANDLER. We ignore the CFA, extract the handler, and
6220 set a breakpoint there. */
6221 probe = find_probe_by_pc (get_frame_pc (frame));
6224 insert_exception_resume_from_probe (ecs->event_thread, &probe, frame);
6228 func = get_frame_function (frame);
6234 const struct block *b;
6235 struct block_iterator iter;
6239 /* The exception breakpoint is a thread-specific breakpoint on
6240 the unwinder's debug hook, declared as:
6242 void _Unwind_DebugHook (void *cfa, void *handler);
6244 The CFA argument indicates the frame to which control is
6245 about to be transferred. HANDLER is the destination PC.
6247 We ignore the CFA and set a temporary breakpoint at HANDLER.
6248 This is not extremely efficient but it avoids issues in gdb
6249 with computing the DWARF CFA, and it also works even in weird
6250 cases such as throwing an exception from inside a signal
6253 b = SYMBOL_BLOCK_VALUE (func);
6254 ALL_BLOCK_SYMBOLS (b, iter, sym)
6256 if (!SYMBOL_IS_ARGUMENT (sym))
6263 insert_exception_resume_breakpoint (ecs->event_thread,
6269 CATCH (e, RETURN_MASK_ERROR)
6276 stop_waiting (struct execution_control_state *ecs)
6279 fprintf_unfiltered (gdb_stdlog, "infrun: stop_waiting\n");
6281 clear_step_over_info ();
6283 /* Let callers know we don't want to wait for the inferior anymore. */
6284 ecs->wait_some_more = 0;
6287 /* Called when we should continue running the inferior, because the
6288 current event doesn't cause a user visible stop. This does the
6289 resuming part; waiting for the next event is done elsewhere. */
6292 keep_going (struct execution_control_state *ecs)
6294 /* Make sure normal_stop is called if we get a QUIT handled before
6296 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
6298 /* Save the pc before execution, to compare with pc after stop. */
6299 ecs->event_thread->prev_pc
6300 = regcache_read_pc (get_thread_regcache (ecs->ptid));
6302 if (ecs->event_thread->control.trap_expected
6303 && ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_TRAP)
6305 /* We haven't yet gotten our trap, and either: intercepted a
6306 non-signal event (e.g., a fork); or took a signal which we
6307 are supposed to pass through to the inferior. Simply
6309 discard_cleanups (old_cleanups);
6310 resume (ecs->event_thread->suspend.stop_signal);
6314 struct regcache *regcache = get_current_regcache ();
6317 enum step_over_what step_what;
6319 /* Either the trap was not expected, but we are continuing
6320 anyway (if we got a signal, the user asked it be passed to
6323 We got our expected trap, but decided we should resume from
6326 We're going to run this baby now!
6328 Note that insert_breakpoints won't try to re-insert
6329 already inserted breakpoints. Therefore, we don't
6330 care if breakpoints were already inserted, or not. */
6332 /* If we need to step over a breakpoint, and we're not using
6333 displaced stepping to do so, insert all breakpoints
6334 (watchpoints, etc.) but the one we're stepping over, step one
6335 instruction, and then re-insert the breakpoint when that step
6338 step_what = thread_still_needs_step_over (ecs->event_thread);
6340 remove_bp = (ecs->hit_singlestep_breakpoint
6341 || (step_what & STEP_OVER_BREAKPOINT));
6342 remove_wps = (step_what & STEP_OVER_WATCHPOINT);
6344 /* We can't use displaced stepping if we need to step past a
6345 watchpoint. The instruction copied to the scratch pad would
6346 still trigger the watchpoint. */
6349 || !use_displaced_stepping (get_regcache_arch (regcache))))
6351 set_step_over_info (get_regcache_aspace (regcache),
6352 regcache_read_pc (regcache), remove_wps);
6354 else if (remove_wps)
6355 set_step_over_info (NULL, 0, remove_wps);
6357 clear_step_over_info ();
6359 /* Stop stepping if inserting breakpoints fails. */
6362 insert_breakpoints ();
6364 CATCH (e, RETURN_MASK_ERROR)
6366 exception_print (gdb_stderr, e);
6368 discard_cleanups (old_cleanups);
6373 ecs->event_thread->control.trap_expected = (remove_bp || remove_wps);
6375 /* Do not deliver GDB_SIGNAL_TRAP (except when the user
6376 explicitly specifies that such a signal should be delivered
6377 to the target program). Typically, that would occur when a
6378 user is debugging a target monitor on a simulator: the target
6379 monitor sets a breakpoint; the simulator encounters this
6380 breakpoint and halts the simulation handing control to GDB;
6381 GDB, noting that the stop address doesn't map to any known
6382 breakpoint, returns control back to the simulator; the
6383 simulator then delivers the hardware equivalent of a
6384 GDB_SIGNAL_TRAP to the program being debugged. */
6385 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
6386 && !signal_program[ecs->event_thread->suspend.stop_signal])
6387 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
6389 discard_cleanups (old_cleanups);
6390 resume (ecs->event_thread->suspend.stop_signal);
6393 prepare_to_wait (ecs);
6396 /* This function normally comes after a resume, before
6397 handle_inferior_event exits. It takes care of any last bits of
6398 housekeeping, and sets the all-important wait_some_more flag. */
6401 prepare_to_wait (struct execution_control_state *ecs)
6404 fprintf_unfiltered (gdb_stdlog, "infrun: prepare_to_wait\n");
6406 /* This is the old end of the while loop. Let everybody know we
6407 want to wait for the inferior some more and get called again
6409 ecs->wait_some_more = 1;
6412 /* We are done with the step range of a step/next/si/ni command.
6413 Called once for each n of a "step n" operation. */
6416 end_stepping_range (struct execution_control_state *ecs)
6418 ecs->event_thread->control.stop_step = 1;
6422 /* Several print_*_reason functions to print why the inferior has stopped.
6423 We always print something when the inferior exits, or receives a signal.
6424 The rest of the cases are dealt with later on in normal_stop and
6425 print_it_typical. Ideally there should be a call to one of these
6426 print_*_reason functions functions from handle_inferior_event each time
6427 stop_waiting is called.
6429 Note that we don't call these directly, instead we delegate that to
6430 the interpreters, through observers. Interpreters then call these
6431 with whatever uiout is right. */
6434 print_end_stepping_range_reason (struct ui_out *uiout)
6436 /* For CLI-like interpreters, print nothing. */
6438 if (ui_out_is_mi_like_p (uiout))
6440 ui_out_field_string (uiout, "reason",
6441 async_reason_lookup (EXEC_ASYNC_END_STEPPING_RANGE));
6446 print_signal_exited_reason (struct ui_out *uiout, enum gdb_signal siggnal)
6448 annotate_signalled ();
6449 if (ui_out_is_mi_like_p (uiout))
6451 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_EXITED_SIGNALLED));
6452 ui_out_text (uiout, "\nProgram terminated with signal ");
6453 annotate_signal_name ();
6454 ui_out_field_string (uiout, "signal-name",
6455 gdb_signal_to_name (siggnal));
6456 annotate_signal_name_end ();
6457 ui_out_text (uiout, ", ");
6458 annotate_signal_string ();
6459 ui_out_field_string (uiout, "signal-meaning",
6460 gdb_signal_to_string (siggnal));
6461 annotate_signal_string_end ();
6462 ui_out_text (uiout, ".\n");
6463 ui_out_text (uiout, "The program no longer exists.\n");
6467 print_exited_reason (struct ui_out *uiout, int exitstatus)
6469 struct inferior *inf = current_inferior ();
6470 const char *pidstr = target_pid_to_str (pid_to_ptid (inf->pid));
6472 annotate_exited (exitstatus);
6475 if (ui_out_is_mi_like_p (uiout))
6476 ui_out_field_string (uiout, "reason",
6477 async_reason_lookup (EXEC_ASYNC_EXITED));
6478 ui_out_text (uiout, "[Inferior ");
6479 ui_out_text (uiout, plongest (inf->num));
6480 ui_out_text (uiout, " (");
6481 ui_out_text (uiout, pidstr);
6482 ui_out_text (uiout, ") exited with code ");
6483 ui_out_field_fmt (uiout, "exit-code", "0%o", (unsigned int) exitstatus);
6484 ui_out_text (uiout, "]\n");
6488 if (ui_out_is_mi_like_p (uiout))
6490 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_EXITED_NORMALLY));
6491 ui_out_text (uiout, "[Inferior ");
6492 ui_out_text (uiout, plongest (inf->num));
6493 ui_out_text (uiout, " (");
6494 ui_out_text (uiout, pidstr);
6495 ui_out_text (uiout, ") exited normally]\n");
6500 print_signal_received_reason (struct ui_out *uiout, enum gdb_signal siggnal)
6504 if (siggnal == GDB_SIGNAL_0 && !ui_out_is_mi_like_p (uiout))
6506 struct thread_info *t = inferior_thread ();
6508 ui_out_text (uiout, "\n[");
6509 ui_out_field_string (uiout, "thread-name",
6510 target_pid_to_str (t->ptid));
6511 ui_out_field_fmt (uiout, "thread-id", "] #%d", t->num);
6512 ui_out_text (uiout, " stopped");
6516 ui_out_text (uiout, "\nProgram received signal ");
6517 annotate_signal_name ();
6518 if (ui_out_is_mi_like_p (uiout))
6520 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_SIGNAL_RECEIVED));
6521 ui_out_field_string (uiout, "signal-name",
6522 gdb_signal_to_name (siggnal));
6523 annotate_signal_name_end ();
6524 ui_out_text (uiout, ", ");
6525 annotate_signal_string ();
6526 ui_out_field_string (uiout, "signal-meaning",
6527 gdb_signal_to_string (siggnal));
6528 annotate_signal_string_end ();
6530 ui_out_text (uiout, ".\n");
6534 print_no_history_reason (struct ui_out *uiout)
6536 ui_out_text (uiout, "\nNo more reverse-execution history.\n");
6539 /* Print current location without a level number, if we have changed
6540 functions or hit a breakpoint. Print source line if we have one.
6541 bpstat_print contains the logic deciding in detail what to print,
6542 based on the event(s) that just occurred. */
6545 print_stop_event (struct target_waitstatus *ws)
6548 enum print_what source_flag;
6549 int do_frame_printing = 1;
6550 struct thread_info *tp = inferior_thread ();
6552 bpstat_ret = bpstat_print (tp->control.stop_bpstat, ws->kind);
6556 /* FIXME: cagney/2002-12-01: Given that a frame ID does (or
6557 should) carry around the function and does (or should) use
6558 that when doing a frame comparison. */
6559 if (tp->control.stop_step
6560 && frame_id_eq (tp->control.step_frame_id,
6561 get_frame_id (get_current_frame ()))
6562 && tp->control.step_start_function == find_pc_function (stop_pc))
6564 /* Finished step, just print source line. */
6565 source_flag = SRC_LINE;
6569 /* Print location and source line. */
6570 source_flag = SRC_AND_LOC;
6573 case PRINT_SRC_AND_LOC:
6574 /* Print location and source line. */
6575 source_flag = SRC_AND_LOC;
6577 case PRINT_SRC_ONLY:
6578 source_flag = SRC_LINE;
6581 /* Something bogus. */
6582 source_flag = SRC_LINE;
6583 do_frame_printing = 0;
6586 internal_error (__FILE__, __LINE__, _("Unknown value."));
6589 /* The behavior of this routine with respect to the source
6591 SRC_LINE: Print only source line
6592 LOCATION: Print only location
6593 SRC_AND_LOC: Print location and source line. */
6594 if (do_frame_printing)
6595 print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
6597 /* Display the auto-display expressions. */
6601 /* Here to return control to GDB when the inferior stops for real.
6602 Print appropriate messages, remove breakpoints, give terminal our modes.
6604 STOP_PRINT_FRAME nonzero means print the executing frame
6605 (pc, function, args, file, line number and line text).
6606 BREAKPOINTS_FAILED nonzero means stop was due to error
6607 attempting to insert breakpoints. */
6612 struct target_waitstatus last;
6614 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
6617 get_last_target_status (&last_ptid, &last);
6619 /* If an exception is thrown from this point on, make sure to
6620 propagate GDB's knowledge of the executing state to the
6621 frontend/user running state. A QUIT is an easy exception to see
6622 here, so do this before any filtered output. */
6624 make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
6625 else if (last.kind == TARGET_WAITKIND_SIGNALLED
6626 || last.kind == TARGET_WAITKIND_EXITED)
6628 /* On some targets, we may still have live threads in the
6629 inferior when we get a process exit event. E.g., for
6630 "checkpoint", when the current checkpoint/fork exits,
6631 linux-fork.c automatically switches to another fork from
6632 within target_mourn_inferior. */
6633 if (!ptid_equal (inferior_ptid, null_ptid))
6635 pid_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
6636 make_cleanup (finish_thread_state_cleanup, &pid_ptid);
6639 else if (last.kind != TARGET_WAITKIND_NO_RESUMED)
6640 make_cleanup (finish_thread_state_cleanup, &inferior_ptid);
6642 /* As we're presenting a stop, and potentially removing breakpoints,
6643 update the thread list so we can tell whether there are threads
6644 running on the target. With target remote, for example, we can
6645 only learn about new threads when we explicitly update the thread
6646 list. Do this before notifying the interpreters about signal
6647 stops, end of stepping ranges, etc., so that the "new thread"
6648 output is emitted before e.g., "Program received signal FOO",
6649 instead of after. */
6650 update_thread_list ();
6652 if (last.kind == TARGET_WAITKIND_STOPPED && stopped_by_random_signal)
6653 observer_notify_signal_received (inferior_thread ()->suspend.stop_signal);
6655 /* As with the notification of thread events, we want to delay
6656 notifying the user that we've switched thread context until
6657 the inferior actually stops.
6659 There's no point in saying anything if the inferior has exited.
6660 Note that SIGNALLED here means "exited with a signal", not
6661 "received a signal".
6663 Also skip saying anything in non-stop mode. In that mode, as we
6664 don't want GDB to switch threads behind the user's back, to avoid
6665 races where the user is typing a command to apply to thread x,
6666 but GDB switches to thread y before the user finishes entering
6667 the command, fetch_inferior_event installs a cleanup to restore
6668 the current thread back to the thread the user had selected right
6669 after this event is handled, so we're not really switching, only
6670 informing of a stop. */
6672 && !ptid_equal (previous_inferior_ptid, inferior_ptid)
6673 && target_has_execution
6674 && last.kind != TARGET_WAITKIND_SIGNALLED
6675 && last.kind != TARGET_WAITKIND_EXITED
6676 && last.kind != TARGET_WAITKIND_NO_RESUMED)
6678 target_terminal_ours_for_output ();
6679 printf_filtered (_("[Switching to %s]\n"),
6680 target_pid_to_str (inferior_ptid));
6681 annotate_thread_changed ();
6682 previous_inferior_ptid = inferior_ptid;
6685 if (last.kind == TARGET_WAITKIND_NO_RESUMED)
6687 gdb_assert (sync_execution || !target_can_async_p ());
6689 target_terminal_ours_for_output ();
6690 printf_filtered (_("No unwaited-for children left.\n"));
6693 /* Note: this depends on the update_thread_list call above. */
6694 if (!breakpoints_should_be_inserted_now () && target_has_execution)
6696 if (remove_breakpoints ())
6698 target_terminal_ours_for_output ();
6699 printf_filtered (_("Cannot remove breakpoints because "
6700 "program is no longer writable.\nFurther "
6701 "execution is probably impossible.\n"));
6705 /* If an auto-display called a function and that got a signal,
6706 delete that auto-display to avoid an infinite recursion. */
6708 if (stopped_by_random_signal)
6709 disable_current_display ();
6711 /* Notify observers if we finished a "step"-like command, etc. */
6712 if (target_has_execution
6713 && last.kind != TARGET_WAITKIND_SIGNALLED
6714 && last.kind != TARGET_WAITKIND_EXITED
6715 && inferior_thread ()->control.stop_step)
6717 /* But not if in the middle of doing a "step n" operation for
6719 if (inferior_thread ()->step_multi)
6722 observer_notify_end_stepping_range ();
6725 target_terminal_ours ();
6726 async_enable_stdin ();
6728 /* Set the current source location. This will also happen if we
6729 display the frame below, but the current SAL will be incorrect
6730 during a user hook-stop function. */
6731 if (has_stack_frames () && !stop_stack_dummy)
6732 set_current_sal_from_frame (get_current_frame ());
6734 /* Let the user/frontend see the threads as stopped, but defer to
6735 call_function_by_hand if the thread finished an infcall
6736 successfully. We may be e.g., evaluating a breakpoint condition.
6737 In that case, the thread had state THREAD_RUNNING before the
6738 infcall, and shall remain marked running, all without informing
6739 the user/frontend about state transition changes. */
6740 if (target_has_execution
6741 && inferior_thread ()->control.in_infcall
6742 && stop_stack_dummy == STOP_STACK_DUMMY)
6743 discard_cleanups (old_chain);
6745 do_cleanups (old_chain);
6747 /* Look up the hook_stop and run it (CLI internally handles problem
6748 of stop_command's pre-hook not existing). */
6750 catch_errors (hook_stop_stub, stop_command,
6751 "Error while running hook_stop:\n", RETURN_MASK_ALL);
6753 if (!has_stack_frames ())
6756 if (last.kind == TARGET_WAITKIND_SIGNALLED
6757 || last.kind == TARGET_WAITKIND_EXITED)
6760 /* Select innermost stack frame - i.e., current frame is frame 0,
6761 and current location is based on that.
6762 Don't do this on return from a stack dummy routine,
6763 or if the program has exited. */
6765 if (!stop_stack_dummy)
6767 select_frame (get_current_frame ());
6769 /* If --batch-silent is enabled then there's no need to print the current
6770 source location, and to try risks causing an error message about
6771 missing source files. */
6772 if (stop_print_frame && !batch_silent)
6773 print_stop_event (&last);
6776 if (stop_stack_dummy == STOP_STACK_DUMMY)
6778 /* Pop the empty frame that contains the stack dummy.
6779 This also restores inferior state prior to the call
6780 (struct infcall_suspend_state). */
6781 struct frame_info *frame = get_current_frame ();
6783 gdb_assert (get_frame_type (frame) == DUMMY_FRAME);
6785 /* frame_pop() calls reinit_frame_cache as the last thing it
6786 does which means there's currently no selected frame. We
6787 don't need to re-establish a selected frame if the dummy call
6788 returns normally, that will be done by
6789 restore_infcall_control_state. However, we do have to handle
6790 the case where the dummy call is returning after being
6791 stopped (e.g. the dummy call previously hit a breakpoint).
6792 We can't know which case we have so just always re-establish
6793 a selected frame here. */
6794 select_frame (get_current_frame ());
6798 annotate_stopped ();
6800 /* Suppress the stop observer if we're in the middle of:
6802 - a step n (n > 1), as there still more steps to be done.
6804 - a "finish" command, as the observer will be called in
6805 finish_command_continuation, so it can include the inferior
6806 function's return value.
6808 - calling an inferior function, as we pretend we inferior didn't
6809 run at all. The return value of the call is handled by the
6810 expression evaluator, through call_function_by_hand. */
6812 if (!target_has_execution
6813 || last.kind == TARGET_WAITKIND_SIGNALLED
6814 || last.kind == TARGET_WAITKIND_EXITED
6815 || last.kind == TARGET_WAITKIND_NO_RESUMED
6816 || (!(inferior_thread ()->step_multi
6817 && inferior_thread ()->control.stop_step)
6818 && !(inferior_thread ()->control.stop_bpstat
6819 && inferior_thread ()->control.proceed_to_finish)
6820 && !inferior_thread ()->control.in_infcall))
6822 if (!ptid_equal (inferior_ptid, null_ptid))
6823 observer_notify_normal_stop (inferior_thread ()->control.stop_bpstat,
6826 observer_notify_normal_stop (NULL, stop_print_frame);
6829 if (target_has_execution)
6831 if (last.kind != TARGET_WAITKIND_SIGNALLED
6832 && last.kind != TARGET_WAITKIND_EXITED)
6833 /* Delete the breakpoint we stopped at, if it wants to be deleted.
6834 Delete any breakpoint that is to be deleted at the next stop. */
6835 breakpoint_auto_delete (inferior_thread ()->control.stop_bpstat);
6838 /* Try to get rid of automatically added inferiors that are no
6839 longer needed. Keeping those around slows down things linearly.
6840 Note that this never removes the current inferior. */
6845 hook_stop_stub (void *cmd)
6847 execute_cmd_pre_hook ((struct cmd_list_element *) cmd);
6852 signal_stop_state (int signo)
6854 return signal_stop[signo];
6858 signal_print_state (int signo)
6860 return signal_print[signo];
6864 signal_pass_state (int signo)
6866 return signal_program[signo];
6870 signal_cache_update (int signo)
6874 for (signo = 0; signo < (int) GDB_SIGNAL_LAST; signo++)
6875 signal_cache_update (signo);
6880 signal_pass[signo] = (signal_stop[signo] == 0
6881 && signal_print[signo] == 0
6882 && signal_program[signo] == 1
6883 && signal_catch[signo] == 0);
6887 signal_stop_update (int signo, int state)
6889 int ret = signal_stop[signo];
6891 signal_stop[signo] = state;
6892 signal_cache_update (signo);
6897 signal_print_update (int signo, int state)
6899 int ret = signal_print[signo];
6901 signal_print[signo] = state;
6902 signal_cache_update (signo);
6907 signal_pass_update (int signo, int state)
6909 int ret = signal_program[signo];
6911 signal_program[signo] = state;
6912 signal_cache_update (signo);
6916 /* Update the global 'signal_catch' from INFO and notify the
6920 signal_catch_update (const unsigned int *info)
6924 for (i = 0; i < GDB_SIGNAL_LAST; ++i)
6925 signal_catch[i] = info[i] > 0;
6926 signal_cache_update (-1);
6927 target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
6931 sig_print_header (void)
6933 printf_filtered (_("Signal Stop\tPrint\tPass "
6934 "to program\tDescription\n"));
6938 sig_print_info (enum gdb_signal oursig)
6940 const char *name = gdb_signal_to_name (oursig);
6941 int name_padding = 13 - strlen (name);
6943 if (name_padding <= 0)
6946 printf_filtered ("%s", name);
6947 printf_filtered ("%*.*s ", name_padding, name_padding, " ");
6948 printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
6949 printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
6950 printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
6951 printf_filtered ("%s\n", gdb_signal_to_string (oursig));
6954 /* Specify how various signals in the inferior should be handled. */
6957 handle_command (char *args, int from_tty)
6960 int digits, wordlen;
6961 int sigfirst, signum, siglast;
6962 enum gdb_signal oursig;
6965 unsigned char *sigs;
6966 struct cleanup *old_chain;
6970 error_no_arg (_("signal to handle"));
6973 /* Allocate and zero an array of flags for which signals to handle. */
6975 nsigs = (int) GDB_SIGNAL_LAST;
6976 sigs = (unsigned char *) alloca (nsigs);
6977 memset (sigs, 0, nsigs);
6979 /* Break the command line up into args. */
6981 argv = gdb_buildargv (args);
6982 old_chain = make_cleanup_freeargv (argv);
6984 /* Walk through the args, looking for signal oursigs, signal names, and
6985 actions. Signal numbers and signal names may be interspersed with
6986 actions, with the actions being performed for all signals cumulatively
6987 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
6989 while (*argv != NULL)
6991 wordlen = strlen (*argv);
6992 for (digits = 0; isdigit ((*argv)[digits]); digits++)
6996 sigfirst = siglast = -1;
6998 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
7000 /* Apply action to all signals except those used by the
7001 debugger. Silently skip those. */
7004 siglast = nsigs - 1;
7006 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
7008 SET_SIGS (nsigs, sigs, signal_stop);
7009 SET_SIGS (nsigs, sigs, signal_print);
7011 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
7013 UNSET_SIGS (nsigs, sigs, signal_program);
7015 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
7017 SET_SIGS (nsigs, sigs, signal_print);
7019 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
7021 SET_SIGS (nsigs, sigs, signal_program);
7023 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
7025 UNSET_SIGS (nsigs, sigs, signal_stop);
7027 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
7029 SET_SIGS (nsigs, sigs, signal_program);
7031 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
7033 UNSET_SIGS (nsigs, sigs, signal_print);
7034 UNSET_SIGS (nsigs, sigs, signal_stop);
7036 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
7038 UNSET_SIGS (nsigs, sigs, signal_program);
7040 else if (digits > 0)
7042 /* It is numeric. The numeric signal refers to our own
7043 internal signal numbering from target.h, not to host/target
7044 signal number. This is a feature; users really should be
7045 using symbolic names anyway, and the common ones like
7046 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
7048 sigfirst = siglast = (int)
7049 gdb_signal_from_command (atoi (*argv));
7050 if ((*argv)[digits] == '-')
7053 gdb_signal_from_command (atoi ((*argv) + digits + 1));
7055 if (sigfirst > siglast)
7057 /* Bet he didn't figure we'd think of this case... */
7065 oursig = gdb_signal_from_name (*argv);
7066 if (oursig != GDB_SIGNAL_UNKNOWN)
7068 sigfirst = siglast = (int) oursig;
7072 /* Not a number and not a recognized flag word => complain. */
7073 error (_("Unrecognized or ambiguous flag word: \"%s\"."), *argv);
7077 /* If any signal numbers or symbol names were found, set flags for
7078 which signals to apply actions to. */
7080 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
7082 switch ((enum gdb_signal) signum)
7084 case GDB_SIGNAL_TRAP:
7085 case GDB_SIGNAL_INT:
7086 if (!allsigs && !sigs[signum])
7088 if (query (_("%s is used by the debugger.\n\
7089 Are you sure you want to change it? "),
7090 gdb_signal_to_name ((enum gdb_signal) signum)))
7096 printf_unfiltered (_("Not confirmed, unchanged.\n"));
7097 gdb_flush (gdb_stdout);
7102 case GDB_SIGNAL_DEFAULT:
7103 case GDB_SIGNAL_UNKNOWN:
7104 /* Make sure that "all" doesn't print these. */
7115 for (signum = 0; signum < nsigs; signum++)
7118 signal_cache_update (-1);
7119 target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
7120 target_program_signals ((int) GDB_SIGNAL_LAST, signal_program);
7124 /* Show the results. */
7125 sig_print_header ();
7126 for (; signum < nsigs; signum++)
7128 sig_print_info ((enum gdb_signal) signum);
7134 do_cleanups (old_chain);
7137 /* Complete the "handle" command. */
7139 static VEC (char_ptr) *
7140 handle_completer (struct cmd_list_element *ignore,
7141 const char *text, const char *word)
7143 VEC (char_ptr) *vec_signals, *vec_keywords, *return_val;
7144 static const char * const keywords[] =
7158 vec_signals = signal_completer (ignore, text, word);
7159 vec_keywords = complete_on_enum (keywords, word, word);
7161 return_val = VEC_merge (char_ptr, vec_signals, vec_keywords);
7162 VEC_free (char_ptr, vec_signals);
7163 VEC_free (char_ptr, vec_keywords);
7168 gdb_signal_from_command (int num)
7170 if (num >= 1 && num <= 15)
7171 return (enum gdb_signal) num;
7172 error (_("Only signals 1-15 are valid as numeric signals.\n\
7173 Use \"info signals\" for a list of symbolic signals."));
7176 /* Print current contents of the tables set by the handle command.
7177 It is possible we should just be printing signals actually used
7178 by the current target (but for things to work right when switching
7179 targets, all signals should be in the signal tables). */
7182 signals_info (char *signum_exp, int from_tty)
7184 enum gdb_signal oursig;
7186 sig_print_header ();
7190 /* First see if this is a symbol name. */
7191 oursig = gdb_signal_from_name (signum_exp);
7192 if (oursig == GDB_SIGNAL_UNKNOWN)
7194 /* No, try numeric. */
7196 gdb_signal_from_command (parse_and_eval_long (signum_exp));
7198 sig_print_info (oursig);
7202 printf_filtered ("\n");
7203 /* These ugly casts brought to you by the native VAX compiler. */
7204 for (oursig = GDB_SIGNAL_FIRST;
7205 (int) oursig < (int) GDB_SIGNAL_LAST;
7206 oursig = (enum gdb_signal) ((int) oursig + 1))
7210 if (oursig != GDB_SIGNAL_UNKNOWN
7211 && oursig != GDB_SIGNAL_DEFAULT && oursig != GDB_SIGNAL_0)
7212 sig_print_info (oursig);
7215 printf_filtered (_("\nUse the \"handle\" command "
7216 "to change these tables.\n"));
7219 /* Check if it makes sense to read $_siginfo from the current thread
7220 at this point. If not, throw an error. */
7223 validate_siginfo_access (void)
7225 /* No current inferior, no siginfo. */
7226 if (ptid_equal (inferior_ptid, null_ptid))
7227 error (_("No thread selected."));
7229 /* Don't try to read from a dead thread. */
7230 if (is_exited (inferior_ptid))
7231 error (_("The current thread has terminated"));
7233 /* ... or from a spinning thread. */
7234 if (is_running (inferior_ptid))
7235 error (_("Selected thread is running."));
7238 /* The $_siginfo convenience variable is a bit special. We don't know
7239 for sure the type of the value until we actually have a chance to
7240 fetch the data. The type can change depending on gdbarch, so it is
7241 also dependent on which thread you have selected.
7243 1. making $_siginfo be an internalvar that creates a new value on
7246 2. making the value of $_siginfo be an lval_computed value. */
7248 /* This function implements the lval_computed support for reading a
7252 siginfo_value_read (struct value *v)
7254 LONGEST transferred;
7256 validate_siginfo_access ();
7259 target_read (¤t_target, TARGET_OBJECT_SIGNAL_INFO,
7261 value_contents_all_raw (v),
7263 TYPE_LENGTH (value_type (v)));
7265 if (transferred != TYPE_LENGTH (value_type (v)))
7266 error (_("Unable to read siginfo"));
7269 /* This function implements the lval_computed support for writing a
7273 siginfo_value_write (struct value *v, struct value *fromval)
7275 LONGEST transferred;
7277 validate_siginfo_access ();
7279 transferred = target_write (¤t_target,
7280 TARGET_OBJECT_SIGNAL_INFO,
7282 value_contents_all_raw (fromval),
7284 TYPE_LENGTH (value_type (fromval)));
7286 if (transferred != TYPE_LENGTH (value_type (fromval)))
7287 error (_("Unable to write siginfo"));
7290 static const struct lval_funcs siginfo_value_funcs =
7296 /* Return a new value with the correct type for the siginfo object of
7297 the current thread using architecture GDBARCH. Return a void value
7298 if there's no object available. */
7300 static struct value *
7301 siginfo_make_value (struct gdbarch *gdbarch, struct internalvar *var,
7304 if (target_has_stack
7305 && !ptid_equal (inferior_ptid, null_ptid)
7306 && gdbarch_get_siginfo_type_p (gdbarch))
7308 struct type *type = gdbarch_get_siginfo_type (gdbarch);
7310 return allocate_computed_value (type, &siginfo_value_funcs, NULL);
7313 return allocate_value (builtin_type (gdbarch)->builtin_void);
7317 /* infcall_suspend_state contains state about the program itself like its
7318 registers and any signal it received when it last stopped.
7319 This state must be restored regardless of how the inferior function call
7320 ends (either successfully, or after it hits a breakpoint or signal)
7321 if the program is to properly continue where it left off. */
7323 struct infcall_suspend_state
7325 struct thread_suspend_state thread_suspend;
7329 struct regcache *registers;
7331 /* Format of SIGINFO_DATA or NULL if it is not present. */
7332 struct gdbarch *siginfo_gdbarch;
7334 /* The inferior format depends on SIGINFO_GDBARCH and it has a length of
7335 TYPE_LENGTH (gdbarch_get_siginfo_type ()). For different gdbarch the
7336 content would be invalid. */
7337 gdb_byte *siginfo_data;
7340 struct infcall_suspend_state *
7341 save_infcall_suspend_state (void)
7343 struct infcall_suspend_state *inf_state;
7344 struct thread_info *tp = inferior_thread ();
7345 struct regcache *regcache = get_current_regcache ();
7346 struct gdbarch *gdbarch = get_regcache_arch (regcache);
7347 gdb_byte *siginfo_data = NULL;
7349 if (gdbarch_get_siginfo_type_p (gdbarch))
7351 struct type *type = gdbarch_get_siginfo_type (gdbarch);
7352 size_t len = TYPE_LENGTH (type);
7353 struct cleanup *back_to;
7355 siginfo_data = xmalloc (len);
7356 back_to = make_cleanup (xfree, siginfo_data);
7358 if (target_read (¤t_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
7359 siginfo_data, 0, len) == len)
7360 discard_cleanups (back_to);
7363 /* Errors ignored. */
7364 do_cleanups (back_to);
7365 siginfo_data = NULL;
7369 inf_state = XCNEW (struct infcall_suspend_state);
7373 inf_state->siginfo_gdbarch = gdbarch;
7374 inf_state->siginfo_data = siginfo_data;
7377 inf_state->thread_suspend = tp->suspend;
7379 /* run_inferior_call will not use the signal due to its `proceed' call with
7380 GDB_SIGNAL_0 anyway. */
7381 tp->suspend.stop_signal = GDB_SIGNAL_0;
7383 inf_state->stop_pc = stop_pc;
7385 inf_state->registers = regcache_dup (regcache);
7390 /* Restore inferior session state to INF_STATE. */
7393 restore_infcall_suspend_state (struct infcall_suspend_state *inf_state)
7395 struct thread_info *tp = inferior_thread ();
7396 struct regcache *regcache = get_current_regcache ();
7397 struct gdbarch *gdbarch = get_regcache_arch (regcache);
7399 tp->suspend = inf_state->thread_suspend;
7401 stop_pc = inf_state->stop_pc;
7403 if (inf_state->siginfo_gdbarch == gdbarch)
7405 struct type *type = gdbarch_get_siginfo_type (gdbarch);
7407 /* Errors ignored. */
7408 target_write (¤t_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
7409 inf_state->siginfo_data, 0, TYPE_LENGTH (type));
7412 /* The inferior can be gone if the user types "print exit(0)"
7413 (and perhaps other times). */
7414 if (target_has_execution)
7415 /* NB: The register write goes through to the target. */
7416 regcache_cpy (regcache, inf_state->registers);
7418 discard_infcall_suspend_state (inf_state);
7422 do_restore_infcall_suspend_state_cleanup (void *state)
7424 restore_infcall_suspend_state (state);
7428 make_cleanup_restore_infcall_suspend_state
7429 (struct infcall_suspend_state *inf_state)
7431 return make_cleanup (do_restore_infcall_suspend_state_cleanup, inf_state);
7435 discard_infcall_suspend_state (struct infcall_suspend_state *inf_state)
7437 regcache_xfree (inf_state->registers);
7438 xfree (inf_state->siginfo_data);
7443 get_infcall_suspend_state_regcache (struct infcall_suspend_state *inf_state)
7445 return inf_state->registers;
7448 /* infcall_control_state contains state regarding gdb's control of the
7449 inferior itself like stepping control. It also contains session state like
7450 the user's currently selected frame. */
7452 struct infcall_control_state
7454 struct thread_control_state thread_control;
7455 struct inferior_control_state inferior_control;
7458 enum stop_stack_kind stop_stack_dummy;
7459 int stopped_by_random_signal;
7460 int stop_after_trap;
7462 /* ID if the selected frame when the inferior function call was made. */
7463 struct frame_id selected_frame_id;
7466 /* Save all of the information associated with the inferior<==>gdb
7469 struct infcall_control_state *
7470 save_infcall_control_state (void)
7472 struct infcall_control_state *inf_status = xmalloc (sizeof (*inf_status));
7473 struct thread_info *tp = inferior_thread ();
7474 struct inferior *inf = current_inferior ();
7476 inf_status->thread_control = tp->control;
7477 inf_status->inferior_control = inf->control;
7479 tp->control.step_resume_breakpoint = NULL;
7480 tp->control.exception_resume_breakpoint = NULL;
7482 /* Save original bpstat chain to INF_STATUS; replace it in TP with copy of
7483 chain. If caller's caller is walking the chain, they'll be happier if we
7484 hand them back the original chain when restore_infcall_control_state is
7486 tp->control.stop_bpstat = bpstat_copy (tp->control.stop_bpstat);
7489 inf_status->stop_stack_dummy = stop_stack_dummy;
7490 inf_status->stopped_by_random_signal = stopped_by_random_signal;
7491 inf_status->stop_after_trap = stop_after_trap;
7493 inf_status->selected_frame_id = get_frame_id (get_selected_frame (NULL));
7499 restore_selected_frame (void *args)
7501 struct frame_id *fid = (struct frame_id *) args;
7502 struct frame_info *frame;
7504 frame = frame_find_by_id (*fid);
7506 /* If inf_status->selected_frame_id is NULL, there was no previously
7510 warning (_("Unable to restore previously selected frame."));
7514 select_frame (frame);
7519 /* Restore inferior session state to INF_STATUS. */
7522 restore_infcall_control_state (struct infcall_control_state *inf_status)
7524 struct thread_info *tp = inferior_thread ();
7525 struct inferior *inf = current_inferior ();
7527 if (tp->control.step_resume_breakpoint)
7528 tp->control.step_resume_breakpoint->disposition = disp_del_at_next_stop;
7530 if (tp->control.exception_resume_breakpoint)
7531 tp->control.exception_resume_breakpoint->disposition
7532 = disp_del_at_next_stop;
7534 /* Handle the bpstat_copy of the chain. */
7535 bpstat_clear (&tp->control.stop_bpstat);
7537 tp->control = inf_status->thread_control;
7538 inf->control = inf_status->inferior_control;
7541 stop_stack_dummy = inf_status->stop_stack_dummy;
7542 stopped_by_random_signal = inf_status->stopped_by_random_signal;
7543 stop_after_trap = inf_status->stop_after_trap;
7545 if (target_has_stack)
7547 /* The point of catch_errors is that if the stack is clobbered,
7548 walking the stack might encounter a garbage pointer and
7549 error() trying to dereference it. */
7551 (restore_selected_frame, &inf_status->selected_frame_id,
7552 "Unable to restore previously selected frame:\n",
7553 RETURN_MASK_ERROR) == 0)
7554 /* Error in restoring the selected frame. Select the innermost
7556 select_frame (get_current_frame ());
7563 do_restore_infcall_control_state_cleanup (void *sts)
7565 restore_infcall_control_state (sts);
7569 make_cleanup_restore_infcall_control_state
7570 (struct infcall_control_state *inf_status)
7572 return make_cleanup (do_restore_infcall_control_state_cleanup, inf_status);
7576 discard_infcall_control_state (struct infcall_control_state *inf_status)
7578 if (inf_status->thread_control.step_resume_breakpoint)
7579 inf_status->thread_control.step_resume_breakpoint->disposition
7580 = disp_del_at_next_stop;
7582 if (inf_status->thread_control.exception_resume_breakpoint)
7583 inf_status->thread_control.exception_resume_breakpoint->disposition
7584 = disp_del_at_next_stop;
7586 /* See save_infcall_control_state for info on stop_bpstat. */
7587 bpstat_clear (&inf_status->thread_control.stop_bpstat);
7592 /* restore_inferior_ptid() will be used by the cleanup machinery
7593 to restore the inferior_ptid value saved in a call to
7594 save_inferior_ptid(). */
7597 restore_inferior_ptid (void *arg)
7599 ptid_t *saved_ptid_ptr = arg;
7601 inferior_ptid = *saved_ptid_ptr;
7605 /* Save the value of inferior_ptid so that it may be restored by a
7606 later call to do_cleanups(). Returns the struct cleanup pointer
7607 needed for later doing the cleanup. */
7610 save_inferior_ptid (void)
7612 ptid_t *saved_ptid_ptr;
7614 saved_ptid_ptr = xmalloc (sizeof (ptid_t));
7615 *saved_ptid_ptr = inferior_ptid;
7616 return make_cleanup (restore_inferior_ptid, saved_ptid_ptr);
7622 clear_exit_convenience_vars (void)
7624 clear_internalvar (lookup_internalvar ("_exitsignal"));
7625 clear_internalvar (lookup_internalvar ("_exitcode"));
7629 /* User interface for reverse debugging:
7630 Set exec-direction / show exec-direction commands
7631 (returns error unless target implements to_set_exec_direction method). */
7633 int execution_direction = EXEC_FORWARD;
7634 static const char exec_forward[] = "forward";
7635 static const char exec_reverse[] = "reverse";
7636 static const char *exec_direction = exec_forward;
7637 static const char *const exec_direction_names[] = {
7644 set_exec_direction_func (char *args, int from_tty,
7645 struct cmd_list_element *cmd)
7647 if (target_can_execute_reverse)
7649 if (!strcmp (exec_direction, exec_forward))
7650 execution_direction = EXEC_FORWARD;
7651 else if (!strcmp (exec_direction, exec_reverse))
7652 execution_direction = EXEC_REVERSE;
7656 exec_direction = exec_forward;
7657 error (_("Target does not support this operation."));
7662 show_exec_direction_func (struct ui_file *out, int from_tty,
7663 struct cmd_list_element *cmd, const char *value)
7665 switch (execution_direction) {
7667 fprintf_filtered (out, _("Forward.\n"));
7670 fprintf_filtered (out, _("Reverse.\n"));
7673 internal_error (__FILE__, __LINE__,
7674 _("bogus execution_direction value: %d"),
7675 (int) execution_direction);
7680 show_schedule_multiple (struct ui_file *file, int from_tty,
7681 struct cmd_list_element *c, const char *value)
7683 fprintf_filtered (file, _("Resuming the execution of threads "
7684 "of all processes is %s.\n"), value);
7687 /* Implementation of `siginfo' variable. */
7689 static const struct internalvar_funcs siginfo_funcs =
7697 _initialize_infrun (void)
7701 struct cmd_list_element *c;
7703 add_info ("signals", signals_info, _("\
7704 What debugger does when program gets various signals.\n\
7705 Specify a signal as argument to print info on that signal only."));
7706 add_info_alias ("handle", "signals", 0);
7708 c = add_com ("handle", class_run, handle_command, _("\
7709 Specify how to handle signals.\n\
7710 Usage: handle SIGNAL [ACTIONS]\n\
7711 Args are signals and actions to apply to those signals.\n\
7712 If no actions are specified, the current settings for the specified signals\n\
7713 will be displayed instead.\n\
7715 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
7716 from 1-15 are allowed for compatibility with old versions of GDB.\n\
7717 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
7718 The special arg \"all\" is recognized to mean all signals except those\n\
7719 used by the debugger, typically SIGTRAP and SIGINT.\n\
7721 Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
7722 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
7723 Stop means reenter debugger if this signal happens (implies print).\n\
7724 Print means print a message if this signal happens.\n\
7725 Pass means let program see this signal; otherwise program doesn't know.\n\
7726 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
7727 Pass and Stop may be combined.\n\
7729 Multiple signals may be specified. Signal numbers and signal names\n\
7730 may be interspersed with actions, with the actions being performed for\n\
7731 all signals cumulatively specified."));
7732 set_cmd_completer (c, handle_completer);
7735 stop_command = add_cmd ("stop", class_obscure,
7736 not_just_help_class_command, _("\
7737 There is no `stop' command, but you can set a hook on `stop'.\n\
7738 This allows you to set a list of commands to be run each time execution\n\
7739 of the program stops."), &cmdlist);
7741 add_setshow_zuinteger_cmd ("infrun", class_maintenance, &debug_infrun, _("\
7742 Set inferior debugging."), _("\
7743 Show inferior debugging."), _("\
7744 When non-zero, inferior specific debugging is enabled."),
7747 &setdebuglist, &showdebuglist);
7749 add_setshow_boolean_cmd ("displaced", class_maintenance,
7750 &debug_displaced, _("\
7751 Set displaced stepping debugging."), _("\
7752 Show displaced stepping debugging."), _("\
7753 When non-zero, displaced stepping specific debugging is enabled."),
7755 show_debug_displaced,
7756 &setdebuglist, &showdebuglist);
7758 add_setshow_boolean_cmd ("non-stop", no_class,
7760 Set whether gdb controls the inferior in non-stop mode."), _("\
7761 Show whether gdb controls the inferior in non-stop mode."), _("\
7762 When debugging a multi-threaded program and this setting is\n\
7763 off (the default, also called all-stop mode), when one thread stops\n\
7764 (for a breakpoint, watchpoint, exception, or similar events), GDB stops\n\
7765 all other threads in the program while you interact with the thread of\n\
7766 interest. When you continue or step a thread, you can allow the other\n\
7767 threads to run, or have them remain stopped, but while you inspect any\n\
7768 thread's state, all threads stop.\n\
7770 In non-stop mode, when one thread stops, other threads can continue\n\
7771 to run freely. You'll be able to step each thread independently,\n\
7772 leave it stopped or free to run as needed."),
7778 numsigs = (int) GDB_SIGNAL_LAST;
7779 signal_stop = (unsigned char *) xmalloc (sizeof (signal_stop[0]) * numsigs);
7780 signal_print = (unsigned char *)
7781 xmalloc (sizeof (signal_print[0]) * numsigs);
7782 signal_program = (unsigned char *)
7783 xmalloc (sizeof (signal_program[0]) * numsigs);
7784 signal_catch = (unsigned char *)
7785 xmalloc (sizeof (signal_catch[0]) * numsigs);
7786 signal_pass = (unsigned char *)
7787 xmalloc (sizeof (signal_pass[0]) * numsigs);
7788 for (i = 0; i < numsigs; i++)
7791 signal_print[i] = 1;
7792 signal_program[i] = 1;
7793 signal_catch[i] = 0;
7796 /* Signals caused by debugger's own actions
7797 should not be given to the program afterwards. */
7798 signal_program[GDB_SIGNAL_TRAP] = 0;
7799 signal_program[GDB_SIGNAL_INT] = 0;
7801 /* Signals that are not errors should not normally enter the debugger. */
7802 signal_stop[GDB_SIGNAL_ALRM] = 0;
7803 signal_print[GDB_SIGNAL_ALRM] = 0;
7804 signal_stop[GDB_SIGNAL_VTALRM] = 0;
7805 signal_print[GDB_SIGNAL_VTALRM] = 0;
7806 signal_stop[GDB_SIGNAL_PROF] = 0;
7807 signal_print[GDB_SIGNAL_PROF] = 0;
7808 signal_stop[GDB_SIGNAL_CHLD] = 0;
7809 signal_print[GDB_SIGNAL_CHLD] = 0;
7810 signal_stop[GDB_SIGNAL_IO] = 0;
7811 signal_print[GDB_SIGNAL_IO] = 0;
7812 signal_stop[GDB_SIGNAL_POLL] = 0;
7813 signal_print[GDB_SIGNAL_POLL] = 0;
7814 signal_stop[GDB_SIGNAL_URG] = 0;
7815 signal_print[GDB_SIGNAL_URG] = 0;
7816 signal_stop[GDB_SIGNAL_WINCH] = 0;
7817 signal_print[GDB_SIGNAL_WINCH] = 0;
7818 signal_stop[GDB_SIGNAL_PRIO] = 0;
7819 signal_print[GDB_SIGNAL_PRIO] = 0;
7821 /* These signals are used internally by user-level thread
7822 implementations. (See signal(5) on Solaris.) Like the above
7823 signals, a healthy program receives and handles them as part of
7824 its normal operation. */
7825 signal_stop[GDB_SIGNAL_LWP] = 0;
7826 signal_print[GDB_SIGNAL_LWP] = 0;
7827 signal_stop[GDB_SIGNAL_WAITING] = 0;
7828 signal_print[GDB_SIGNAL_WAITING] = 0;
7829 signal_stop[GDB_SIGNAL_CANCEL] = 0;
7830 signal_print[GDB_SIGNAL_CANCEL] = 0;
7832 /* Update cached state. */
7833 signal_cache_update (-1);
7835 add_setshow_zinteger_cmd ("stop-on-solib-events", class_support,
7836 &stop_on_solib_events, _("\
7837 Set stopping for shared library events."), _("\
7838 Show stopping for shared library events."), _("\
7839 If nonzero, gdb will give control to the user when the dynamic linker\n\
7840 notifies gdb of shared library events. The most common event of interest\n\
7841 to the user would be loading/unloading of a new library."),
7842 set_stop_on_solib_events,
7843 show_stop_on_solib_events,
7844 &setlist, &showlist);
7846 add_setshow_enum_cmd ("follow-fork-mode", class_run,
7847 follow_fork_mode_kind_names,
7848 &follow_fork_mode_string, _("\
7849 Set debugger response to a program call of fork or vfork."), _("\
7850 Show debugger response to a program call of fork or vfork."), _("\
7851 A fork or vfork creates a new process. follow-fork-mode can be:\n\
7852 parent - the original process is debugged after a fork\n\
7853 child - the new process is debugged after a fork\n\
7854 The unfollowed process will continue to run.\n\
7855 By default, the debugger will follow the parent process."),
7857 show_follow_fork_mode_string,
7858 &setlist, &showlist);
7860 add_setshow_enum_cmd ("follow-exec-mode", class_run,
7861 follow_exec_mode_names,
7862 &follow_exec_mode_string, _("\
7863 Set debugger response to a program call of exec."), _("\
7864 Show debugger response to a program call of exec."), _("\
7865 An exec call replaces the program image of a process.\n\
7867 follow-exec-mode can be:\n\
7869 new - the debugger creates a new inferior and rebinds the process\n\
7870 to this new inferior. The program the process was running before\n\
7871 the exec call can be restarted afterwards by restarting the original\n\
7874 same - the debugger keeps the process bound to the same inferior.\n\
7875 The new executable image replaces the previous executable loaded in\n\
7876 the inferior. Restarting the inferior after the exec call restarts\n\
7877 the executable the process was running after the exec call.\n\
7879 By default, the debugger will use the same inferior."),
7881 show_follow_exec_mode_string,
7882 &setlist, &showlist);
7884 add_setshow_enum_cmd ("scheduler-locking", class_run,
7885 scheduler_enums, &scheduler_mode, _("\
7886 Set mode for locking scheduler during execution."), _("\
7887 Show mode for locking scheduler during execution."), _("\
7888 off == no locking (threads may preempt at any time)\n\
7889 on == full locking (no thread except the current thread may run)\n\
7890 step == scheduler locked during stepping commands (step, next, stepi, nexti).\n\
7891 In this mode, other threads may run during other commands."),
7892 set_schedlock_func, /* traps on target vector */
7893 show_scheduler_mode,
7894 &setlist, &showlist);
7896 add_setshow_boolean_cmd ("schedule-multiple", class_run, &sched_multi, _("\
7897 Set mode for resuming threads of all processes."), _("\
7898 Show mode for resuming threads of all processes."), _("\
7899 When on, execution commands (such as 'continue' or 'next') resume all\n\
7900 threads of all processes. When off (which is the default), execution\n\
7901 commands only resume the threads of the current process. The set of\n\
7902 threads that are resumed is further refined by the scheduler-locking\n\
7903 mode (see help set scheduler-locking)."),
7905 show_schedule_multiple,
7906 &setlist, &showlist);
7908 add_setshow_boolean_cmd ("step-mode", class_run, &step_stop_if_no_debug, _("\
7909 Set mode of the step operation."), _("\
7910 Show mode of the step operation."), _("\
7911 When set, doing a step over a function without debug line information\n\
7912 will stop at the first instruction of that function. Otherwise, the\n\
7913 function is skipped and the step command stops at a different source line."),
7915 show_step_stop_if_no_debug,
7916 &setlist, &showlist);
7918 add_setshow_auto_boolean_cmd ("displaced-stepping", class_run,
7919 &can_use_displaced_stepping, _("\
7920 Set debugger's willingness to use displaced stepping."), _("\
7921 Show debugger's willingness to use displaced stepping."), _("\
7922 If on, gdb will use displaced stepping to step over breakpoints if it is\n\
7923 supported by the target architecture. If off, gdb will not use displaced\n\
7924 stepping to step over breakpoints, even if such is supported by the target\n\
7925 architecture. If auto (which is the default), gdb will use displaced stepping\n\
7926 if the target architecture supports it and non-stop mode is active, but will not\n\
7927 use it in all-stop mode (see help set non-stop)."),
7929 show_can_use_displaced_stepping,
7930 &setlist, &showlist);
7932 add_setshow_enum_cmd ("exec-direction", class_run, exec_direction_names,
7933 &exec_direction, _("Set direction of execution.\n\
7934 Options are 'forward' or 'reverse'."),
7935 _("Show direction of execution (forward/reverse)."),
7936 _("Tells gdb whether to execute forward or backward."),
7937 set_exec_direction_func, show_exec_direction_func,
7938 &setlist, &showlist);
7940 /* Set/show detach-on-fork: user-settable mode. */
7942 add_setshow_boolean_cmd ("detach-on-fork", class_run, &detach_fork, _("\
7943 Set whether gdb will detach the child of a fork."), _("\
7944 Show whether gdb will detach the child of a fork."), _("\
7945 Tells gdb whether to detach the child of a fork."),
7946 NULL, NULL, &setlist, &showlist);
7948 /* Set/show disable address space randomization mode. */
7950 add_setshow_boolean_cmd ("disable-randomization", class_support,
7951 &disable_randomization, _("\
7952 Set disabling of debuggee's virtual address space randomization."), _("\
7953 Show disabling of debuggee's virtual address space randomization."), _("\
7954 When this mode is on (which is the default), randomization of the virtual\n\
7955 address space is disabled. Standalone programs run with the randomization\n\
7956 enabled by default on some platforms."),
7957 &set_disable_randomization,
7958 &show_disable_randomization,
7959 &setlist, &showlist);
7961 /* ptid initializations */
7962 inferior_ptid = null_ptid;
7963 target_last_wait_ptid = minus_one_ptid;
7965 observer_attach_thread_ptid_changed (infrun_thread_ptid_changed);
7966 observer_attach_thread_stop_requested (infrun_thread_stop_requested);
7967 observer_attach_thread_exit (infrun_thread_thread_exit);
7968 observer_attach_inferior_exit (infrun_inferior_exit);
7970 /* Explicitly create without lookup, since that tries to create a
7971 value with a void typed value, and when we get here, gdbarch
7972 isn't initialized yet. At this point, we're quite sure there
7973 isn't another convenience variable of the same name. */
7974 create_internalvar_type_lazy ("_siginfo", &siginfo_funcs, NULL);
7976 add_setshow_boolean_cmd ("observer", no_class,
7977 &observer_mode_1, _("\
7978 Set whether gdb controls the inferior in observer mode."), _("\
7979 Show whether gdb controls the inferior in observer mode."), _("\
7980 In observer mode, GDB can get data from the inferior, but not\n\
7981 affect its execution. Registers and memory may not be changed,\n\
7982 breakpoints may not be set, and the program cannot be interrupted\n\