1 /* Target-struct-independent code to start (run) and stop an inferior
4 Copyright (C) 1986-2014 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 "exceptions.h"
28 #include "breakpoint.h"
32 #include "cli/cli-script.h"
34 #include "gdbthread.h"
46 #include "dictionary.h"
48 #include "gdb_assert.h"
49 #include "mi/mi-common.h"
50 #include "event-top.h"
52 #include "record-full.h"
53 #include "inline-frame.h"
55 #include "tracepoint.h"
56 #include "continuations.h"
61 #include "completer.h"
62 #include "target-descriptions.h"
63 #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 void set_schedlock_func (char *args, int from_tty,
84 struct cmd_list_element *c);
86 static int currently_stepping (struct thread_info *tp);
88 static int currently_stepping_or_nexting_callback (struct thread_info *tp,
91 static void xdb_handle_command (char *args, int from_tty);
93 static int prepare_to_proceed (int);
95 static void print_exited_reason (int exitstatus);
97 static void print_signal_exited_reason (enum gdb_signal siggnal);
99 static void print_no_history_reason (void);
101 static void print_signal_received_reason (enum gdb_signal siggnal);
103 static void print_end_stepping_range_reason (void);
105 void _initialize_infrun (void);
107 void nullify_last_target_wait_ptid (void);
109 static void insert_hp_step_resume_breakpoint_at_frame (struct frame_info *);
111 static void insert_step_resume_breakpoint_at_caller (struct frame_info *);
113 static void insert_longjmp_resume_breakpoint (struct gdbarch *, CORE_ADDR);
115 /* When set, stop the 'step' command if we enter a function which has
116 no line number information. The normal behavior is that we step
117 over such function. */
118 int step_stop_if_no_debug = 0;
120 show_step_stop_if_no_debug (struct ui_file *file, int from_tty,
121 struct cmd_list_element *c, const char *value)
123 fprintf_filtered (file, _("Mode of the step operation is %s.\n"), value);
126 /* In asynchronous mode, but simulating synchronous execution. */
128 int sync_execution = 0;
130 /* proceed and normal_stop use this to notify the user when the
131 inferior stopped in a different thread than it had been running
134 static ptid_t previous_inferior_ptid;
136 /* If set (default for legacy reasons), when following a fork, GDB
137 will detach from one of the fork branches, child or parent.
138 Exactly which branch is detached depends on 'set follow-fork-mode'
141 static int detach_fork = 1;
143 int debug_displaced = 0;
145 show_debug_displaced (struct ui_file *file, int from_tty,
146 struct cmd_list_element *c, const char *value)
148 fprintf_filtered (file, _("Displace stepping debugging is %s.\n"), value);
151 unsigned int debug_infrun = 0;
153 show_debug_infrun (struct ui_file *file, int from_tty,
154 struct cmd_list_element *c, const char *value)
156 fprintf_filtered (file, _("Inferior debugging is %s.\n"), value);
160 /* Support for disabling address space randomization. */
162 int disable_randomization = 1;
165 show_disable_randomization (struct ui_file *file, int from_tty,
166 struct cmd_list_element *c, const char *value)
168 if (target_supports_disable_randomization ())
169 fprintf_filtered (file,
170 _("Disabling randomization of debuggee's "
171 "virtual address space is %s.\n"),
174 fputs_filtered (_("Disabling randomization of debuggee's "
175 "virtual address space is unsupported on\n"
176 "this platform.\n"), file);
180 set_disable_randomization (char *args, int from_tty,
181 struct cmd_list_element *c)
183 if (!target_supports_disable_randomization ())
184 error (_("Disabling randomization of debuggee's "
185 "virtual address space is unsupported on\n"
189 /* User interface for non-stop mode. */
192 static int non_stop_1 = 0;
195 set_non_stop (char *args, int from_tty,
196 struct cmd_list_element *c)
198 if (target_has_execution)
200 non_stop_1 = non_stop;
201 error (_("Cannot change this setting while the inferior is running."));
204 non_stop = non_stop_1;
208 show_non_stop (struct ui_file *file, int from_tty,
209 struct cmd_list_element *c, const char *value)
211 fprintf_filtered (file,
212 _("Controlling the inferior in non-stop mode is %s.\n"),
216 /* "Observer mode" is somewhat like a more extreme version of
217 non-stop, in which all GDB operations that might affect the
218 target's execution have been disabled. */
220 int observer_mode = 0;
221 static int observer_mode_1 = 0;
224 set_observer_mode (char *args, int from_tty,
225 struct cmd_list_element *c)
227 if (target_has_execution)
229 observer_mode_1 = observer_mode;
230 error (_("Cannot change this setting while the inferior is running."));
233 observer_mode = observer_mode_1;
235 may_write_registers = !observer_mode;
236 may_write_memory = !observer_mode;
237 may_insert_breakpoints = !observer_mode;
238 may_insert_tracepoints = !observer_mode;
239 /* We can insert fast tracepoints in or out of observer mode,
240 but enable them if we're going into this mode. */
242 may_insert_fast_tracepoints = 1;
243 may_stop = !observer_mode;
244 update_target_permissions ();
246 /* Going *into* observer mode we must force non-stop, then
247 going out we leave it that way. */
250 target_async_permitted = 1;
251 pagination_enabled = 0;
252 non_stop = non_stop_1 = 1;
256 printf_filtered (_("Observer mode is now %s.\n"),
257 (observer_mode ? "on" : "off"));
261 show_observer_mode (struct ui_file *file, int from_tty,
262 struct cmd_list_element *c, const char *value)
264 fprintf_filtered (file, _("Observer mode is %s.\n"), value);
267 /* This updates the value of observer mode based on changes in
268 permissions. Note that we are deliberately ignoring the values of
269 may-write-registers and may-write-memory, since the user may have
270 reason to enable these during a session, for instance to turn on a
271 debugging-related global. */
274 update_observer_mode (void)
278 newval = (!may_insert_breakpoints
279 && !may_insert_tracepoints
280 && may_insert_fast_tracepoints
284 /* Let the user know if things change. */
285 if (newval != observer_mode)
286 printf_filtered (_("Observer mode is now %s.\n"),
287 (newval ? "on" : "off"));
289 observer_mode = observer_mode_1 = newval;
292 /* Tables of how to react to signals; the user sets them. */
294 static unsigned char *signal_stop;
295 static unsigned char *signal_print;
296 static unsigned char *signal_program;
298 /* Table of signals that are registered with "catch signal". A
299 non-zero entry indicates that the signal is caught by some "catch
300 signal" command. This has size GDB_SIGNAL_LAST, to accommodate all
302 static unsigned char *signal_catch;
304 /* Table of signals that the target may silently handle.
305 This is automatically determined from the flags above,
306 and simply cached here. */
307 static unsigned char *signal_pass;
309 #define SET_SIGS(nsigs,sigs,flags) \
311 int signum = (nsigs); \
312 while (signum-- > 0) \
313 if ((sigs)[signum]) \
314 (flags)[signum] = 1; \
317 #define UNSET_SIGS(nsigs,sigs,flags) \
319 int signum = (nsigs); \
320 while (signum-- > 0) \
321 if ((sigs)[signum]) \
322 (flags)[signum] = 0; \
325 /* Update the target's copy of SIGNAL_PROGRAM. The sole purpose of
326 this function is to avoid exporting `signal_program'. */
329 update_signals_program_target (void)
331 target_program_signals ((int) GDB_SIGNAL_LAST, signal_program);
334 /* Value to pass to target_resume() to cause all threads to resume. */
336 #define RESUME_ALL minus_one_ptid
338 /* Command list pointer for the "stop" placeholder. */
340 static struct cmd_list_element *stop_command;
342 /* Function inferior was in as of last step command. */
344 static struct symbol *step_start_function;
346 /* Nonzero if we want to give control to the user when we're notified
347 of shared library events by the dynamic linker. */
348 int stop_on_solib_events;
350 /* Enable or disable optional shared library event breakpoints
351 as appropriate when the above flag is changed. */
354 set_stop_on_solib_events (char *args, int from_tty, struct cmd_list_element *c)
356 update_solib_breakpoints ();
360 show_stop_on_solib_events (struct ui_file *file, int from_tty,
361 struct cmd_list_element *c, const char *value)
363 fprintf_filtered (file, _("Stopping for shared library events is %s.\n"),
367 /* Nonzero means expecting a trace trap
368 and should stop the inferior and return silently when it happens. */
372 /* Save register contents here when executing a "finish" command or are
373 about to pop a stack dummy frame, if-and-only-if proceed_to_finish is set.
374 Thus this contains the return value from the called function (assuming
375 values are returned in a register). */
377 struct regcache *stop_registers;
379 /* Nonzero after stop if current stack frame should be printed. */
381 static int stop_print_frame;
383 /* This is a cached copy of the pid/waitstatus of the last event
384 returned by target_wait()/deprecated_target_wait_hook(). This
385 information is returned by get_last_target_status(). */
386 static ptid_t target_last_wait_ptid;
387 static struct target_waitstatus target_last_waitstatus;
389 static void context_switch (ptid_t ptid);
391 void init_thread_stepping_state (struct thread_info *tss);
393 static void init_infwait_state (void);
395 static const char follow_fork_mode_child[] = "child";
396 static const char follow_fork_mode_parent[] = "parent";
398 static const char *const follow_fork_mode_kind_names[] = {
399 follow_fork_mode_child,
400 follow_fork_mode_parent,
404 static const char *follow_fork_mode_string = follow_fork_mode_parent;
406 show_follow_fork_mode_string (struct ui_file *file, int from_tty,
407 struct cmd_list_element *c, const char *value)
409 fprintf_filtered (file,
410 _("Debugger response to a program "
411 "call of fork or vfork is \"%s\".\n"),
416 /* Tell the target to follow the fork we're stopped at. Returns true
417 if the inferior should be resumed; false, if the target for some
418 reason decided it's best not to resume. */
423 int follow_child = (follow_fork_mode_string == follow_fork_mode_child);
424 int should_resume = 1;
425 struct thread_info *tp;
427 /* Copy user stepping state to the new inferior thread. FIXME: the
428 followed fork child thread should have a copy of most of the
429 parent thread structure's run control related fields, not just these.
430 Initialized to avoid "may be used uninitialized" warnings from gcc. */
431 struct breakpoint *step_resume_breakpoint = NULL;
432 struct breakpoint *exception_resume_breakpoint = NULL;
433 CORE_ADDR step_range_start = 0;
434 CORE_ADDR step_range_end = 0;
435 struct frame_id step_frame_id = { 0 };
440 struct target_waitstatus wait_status;
442 /* Get the last target status returned by target_wait(). */
443 get_last_target_status (&wait_ptid, &wait_status);
445 /* If not stopped at a fork event, then there's nothing else to
447 if (wait_status.kind != TARGET_WAITKIND_FORKED
448 && wait_status.kind != TARGET_WAITKIND_VFORKED)
451 /* Check if we switched over from WAIT_PTID, since the event was
453 if (!ptid_equal (wait_ptid, minus_one_ptid)
454 && !ptid_equal (inferior_ptid, wait_ptid))
456 /* We did. Switch back to WAIT_PTID thread, to tell the
457 target to follow it (in either direction). We'll
458 afterwards refuse to resume, and inform the user what
460 switch_to_thread (wait_ptid);
465 tp = inferior_thread ();
467 /* If there were any forks/vforks that were caught and are now to be
468 followed, then do so now. */
469 switch (tp->pending_follow.kind)
471 case TARGET_WAITKIND_FORKED:
472 case TARGET_WAITKIND_VFORKED:
474 ptid_t parent, child;
476 /* If the user did a next/step, etc, over a fork call,
477 preserve the stepping state in the fork child. */
478 if (follow_child && should_resume)
480 step_resume_breakpoint = clone_momentary_breakpoint
481 (tp->control.step_resume_breakpoint);
482 step_range_start = tp->control.step_range_start;
483 step_range_end = tp->control.step_range_end;
484 step_frame_id = tp->control.step_frame_id;
485 exception_resume_breakpoint
486 = clone_momentary_breakpoint (tp->control.exception_resume_breakpoint);
488 /* For now, delete the parent's sr breakpoint, otherwise,
489 parent/child sr breakpoints are considered duplicates,
490 and the child version will not be installed. Remove
491 this when the breakpoints module becomes aware of
492 inferiors and address spaces. */
493 delete_step_resume_breakpoint (tp);
494 tp->control.step_range_start = 0;
495 tp->control.step_range_end = 0;
496 tp->control.step_frame_id = null_frame_id;
497 delete_exception_resume_breakpoint (tp);
500 parent = inferior_ptid;
501 child = tp->pending_follow.value.related_pid;
503 /* Tell the target to do whatever is necessary to follow
504 either parent or child. */
505 if (target_follow_fork (follow_child, detach_fork))
507 /* Target refused to follow, or there's some other reason
508 we shouldn't resume. */
513 /* This pending follow fork event is now handled, one way
514 or another. The previous selected thread may be gone
515 from the lists by now, but if it is still around, need
516 to clear the pending follow request. */
517 tp = find_thread_ptid (parent);
519 tp->pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
521 /* This makes sure we don't try to apply the "Switched
522 over from WAIT_PID" logic above. */
523 nullify_last_target_wait_ptid ();
525 /* If we followed the child, switch to it... */
528 switch_to_thread (child);
530 /* ... and preserve the stepping state, in case the
531 user was stepping over the fork call. */
534 tp = inferior_thread ();
535 tp->control.step_resume_breakpoint
536 = step_resume_breakpoint;
537 tp->control.step_range_start = step_range_start;
538 tp->control.step_range_end = step_range_end;
539 tp->control.step_frame_id = step_frame_id;
540 tp->control.exception_resume_breakpoint
541 = exception_resume_breakpoint;
545 /* If we get here, it was because we're trying to
546 resume from a fork catchpoint, but, the user
547 has switched threads away from the thread that
548 forked. In that case, the resume command
549 issued is most likely not applicable to the
550 child, so just warn, and refuse to resume. */
551 warning (_("Not resuming: switched threads "
552 "before following fork child.\n"));
555 /* Reset breakpoints in the child as appropriate. */
556 follow_inferior_reset_breakpoints ();
559 switch_to_thread (parent);
563 case TARGET_WAITKIND_SPURIOUS:
564 /* Nothing to follow. */
567 internal_error (__FILE__, __LINE__,
568 "Unexpected pending_follow.kind %d\n",
569 tp->pending_follow.kind);
573 return should_resume;
577 follow_inferior_reset_breakpoints (void)
579 struct thread_info *tp = inferior_thread ();
581 /* Was there a step_resume breakpoint? (There was if the user
582 did a "next" at the fork() call.) If so, explicitly reset its
585 step_resumes are a form of bp that are made to be per-thread.
586 Since we created the step_resume bp when the parent process
587 was being debugged, and now are switching to the child process,
588 from the breakpoint package's viewpoint, that's a switch of
589 "threads". We must update the bp's notion of which thread
590 it is for, or it'll be ignored when it triggers. */
592 if (tp->control.step_resume_breakpoint)
593 breakpoint_re_set_thread (tp->control.step_resume_breakpoint);
595 if (tp->control.exception_resume_breakpoint)
596 breakpoint_re_set_thread (tp->control.exception_resume_breakpoint);
598 /* Reinsert all breakpoints in the child. The user may have set
599 breakpoints after catching the fork, in which case those
600 were never set in the child, but only in the parent. This makes
601 sure the inserted breakpoints match the breakpoint list. */
603 breakpoint_re_set ();
604 insert_breakpoints ();
607 /* The child has exited or execed: resume threads of the parent the
608 user wanted to be executing. */
611 proceed_after_vfork_done (struct thread_info *thread,
614 int pid = * (int *) arg;
616 if (ptid_get_pid (thread->ptid) == pid
617 && is_running (thread->ptid)
618 && !is_executing (thread->ptid)
619 && !thread->stop_requested
620 && thread->suspend.stop_signal == GDB_SIGNAL_0)
623 fprintf_unfiltered (gdb_stdlog,
624 "infrun: resuming vfork parent thread %s\n",
625 target_pid_to_str (thread->ptid));
627 switch_to_thread (thread->ptid);
628 clear_proceed_status ();
629 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
635 /* Called whenever we notice an exec or exit event, to handle
636 detaching or resuming a vfork parent. */
639 handle_vfork_child_exec_or_exit (int exec)
641 struct inferior *inf = current_inferior ();
643 if (inf->vfork_parent)
645 int resume_parent = -1;
647 /* This exec or exit marks the end of the shared memory region
648 between the parent and the child. If the user wanted to
649 detach from the parent, now is the time. */
651 if (inf->vfork_parent->pending_detach)
653 struct thread_info *tp;
654 struct cleanup *old_chain;
655 struct program_space *pspace;
656 struct address_space *aspace;
658 /* follow-fork child, detach-on-fork on. */
660 inf->vfork_parent->pending_detach = 0;
664 /* If we're handling a child exit, then inferior_ptid
665 points at the inferior's pid, not to a thread. */
666 old_chain = save_inferior_ptid ();
667 save_current_program_space ();
668 save_current_inferior ();
671 old_chain = save_current_space_and_thread ();
673 /* We're letting loose of the parent. */
674 tp = any_live_thread_of_process (inf->vfork_parent->pid);
675 switch_to_thread (tp->ptid);
677 /* We're about to detach from the parent, which implicitly
678 removes breakpoints from its address space. There's a
679 catch here: we want to reuse the spaces for the child,
680 but, parent/child are still sharing the pspace at this
681 point, although the exec in reality makes the kernel give
682 the child a fresh set of new pages. The problem here is
683 that the breakpoints module being unaware of this, would
684 likely chose the child process to write to the parent
685 address space. Swapping the child temporarily away from
686 the spaces has the desired effect. Yes, this is "sort
689 pspace = inf->pspace;
690 aspace = inf->aspace;
694 if (debug_infrun || info_verbose)
696 target_terminal_ours ();
699 fprintf_filtered (gdb_stdlog,
700 "Detaching vfork parent process "
701 "%d after child exec.\n",
702 inf->vfork_parent->pid);
704 fprintf_filtered (gdb_stdlog,
705 "Detaching vfork parent process "
706 "%d after child exit.\n",
707 inf->vfork_parent->pid);
710 target_detach (NULL, 0);
713 inf->pspace = pspace;
714 inf->aspace = aspace;
716 do_cleanups (old_chain);
720 /* We're staying attached to the parent, so, really give the
721 child a new address space. */
722 inf->pspace = add_program_space (maybe_new_address_space ());
723 inf->aspace = inf->pspace->aspace;
725 set_current_program_space (inf->pspace);
727 resume_parent = inf->vfork_parent->pid;
729 /* Break the bonds. */
730 inf->vfork_parent->vfork_child = NULL;
734 struct cleanup *old_chain;
735 struct program_space *pspace;
737 /* If this is a vfork child exiting, then the pspace and
738 aspaces were shared with the parent. Since we're
739 reporting the process exit, we'll be mourning all that is
740 found in the address space, and switching to null_ptid,
741 preparing to start a new inferior. But, since we don't
742 want to clobber the parent's address/program spaces, we
743 go ahead and create a new one for this exiting
746 /* Switch to null_ptid, so that clone_program_space doesn't want
747 to read the selected frame of a dead process. */
748 old_chain = save_inferior_ptid ();
749 inferior_ptid = null_ptid;
751 /* This inferior is dead, so avoid giving the breakpoints
752 module the option to write through to it (cloning a
753 program space resets breakpoints). */
756 pspace = add_program_space (maybe_new_address_space ());
757 set_current_program_space (pspace);
759 inf->symfile_flags = SYMFILE_NO_READ;
760 clone_program_space (pspace, inf->vfork_parent->pspace);
761 inf->pspace = pspace;
762 inf->aspace = pspace->aspace;
764 /* Put back inferior_ptid. We'll continue mourning this
766 do_cleanups (old_chain);
768 resume_parent = inf->vfork_parent->pid;
769 /* Break the bonds. */
770 inf->vfork_parent->vfork_child = NULL;
773 inf->vfork_parent = NULL;
775 gdb_assert (current_program_space == inf->pspace);
777 if (non_stop && resume_parent != -1)
779 /* If the user wanted the parent to be running, let it go
781 struct cleanup *old_chain = make_cleanup_restore_current_thread ();
784 fprintf_unfiltered (gdb_stdlog,
785 "infrun: resuming vfork parent process %d\n",
788 iterate_over_threads (proceed_after_vfork_done, &resume_parent);
790 do_cleanups (old_chain);
795 /* Enum strings for "set|show follow-exec-mode". */
797 static const char follow_exec_mode_new[] = "new";
798 static const char follow_exec_mode_same[] = "same";
799 static const char *const follow_exec_mode_names[] =
801 follow_exec_mode_new,
802 follow_exec_mode_same,
806 static const char *follow_exec_mode_string = follow_exec_mode_same;
808 show_follow_exec_mode_string (struct ui_file *file, int from_tty,
809 struct cmd_list_element *c, const char *value)
811 fprintf_filtered (file, _("Follow exec mode is \"%s\".\n"), value);
814 /* EXECD_PATHNAME is assumed to be non-NULL. */
817 follow_exec (ptid_t pid, char *execd_pathname)
819 struct thread_info *th = inferior_thread ();
820 struct inferior *inf = current_inferior ();
822 /* This is an exec event that we actually wish to pay attention to.
823 Refresh our symbol table to the newly exec'd program, remove any
826 If there are breakpoints, they aren't really inserted now,
827 since the exec() transformed our inferior into a fresh set
830 We want to preserve symbolic breakpoints on the list, since
831 we have hopes that they can be reset after the new a.out's
832 symbol table is read.
834 However, any "raw" breakpoints must be removed from the list
835 (e.g., the solib bp's), since their address is probably invalid
838 And, we DON'T want to call delete_breakpoints() here, since
839 that may write the bp's "shadow contents" (the instruction
840 value that was overwritten witha TRAP instruction). Since
841 we now have a new a.out, those shadow contents aren't valid. */
843 mark_breakpoints_out ();
845 update_breakpoints_after_exec ();
847 /* If there was one, it's gone now. We cannot truly step-to-next
848 statement through an exec(). */
849 th->control.step_resume_breakpoint = NULL;
850 th->control.exception_resume_breakpoint = NULL;
851 th->control.step_range_start = 0;
852 th->control.step_range_end = 0;
854 /* The target reports the exec event to the main thread, even if
855 some other thread does the exec, and even if the main thread was
856 already stopped --- if debugging in non-stop mode, it's possible
857 the user had the main thread held stopped in the previous image
858 --- release it now. This is the same behavior as step-over-exec
859 with scheduler-locking on in all-stop mode. */
860 th->stop_requested = 0;
862 /* What is this a.out's name? */
863 printf_unfiltered (_("%s is executing new program: %s\n"),
864 target_pid_to_str (inferior_ptid),
867 /* We've followed the inferior through an exec. Therefore, the
868 inferior has essentially been killed & reborn. */
870 gdb_flush (gdb_stdout);
872 breakpoint_init_inferior (inf_execd);
874 if (gdb_sysroot && *gdb_sysroot)
876 char *name = alloca (strlen (gdb_sysroot)
877 + strlen (execd_pathname)
880 strcpy (name, gdb_sysroot);
881 strcat (name, execd_pathname);
882 execd_pathname = name;
885 /* Reset the shared library package. This ensures that we get a
886 shlib event when the child reaches "_start", at which point the
887 dld will have had a chance to initialize the child. */
888 /* Also, loading a symbol file below may trigger symbol lookups, and
889 we don't want those to be satisfied by the libraries of the
890 previous incarnation of this process. */
891 no_shared_libraries (NULL, 0);
893 if (follow_exec_mode_string == follow_exec_mode_new)
895 struct program_space *pspace;
897 /* The user wants to keep the old inferior and program spaces
898 around. Create a new fresh one, and switch to it. */
900 inf = add_inferior (current_inferior ()->pid);
901 pspace = add_program_space (maybe_new_address_space ());
902 inf->pspace = pspace;
903 inf->aspace = pspace->aspace;
905 exit_inferior_num_silent (current_inferior ()->num);
907 set_current_inferior (inf);
908 set_current_program_space (pspace);
912 /* The old description may no longer be fit for the new image.
913 E.g, a 64-bit process exec'ed a 32-bit process. Clear the
914 old description; we'll read a new one below. No need to do
915 this on "follow-exec-mode new", as the old inferior stays
916 around (its description is later cleared/refetched on
918 target_clear_description ();
921 gdb_assert (current_program_space == inf->pspace);
923 /* That a.out is now the one to use. */
924 exec_file_attach (execd_pathname, 0);
926 /* SYMFILE_DEFER_BP_RESET is used as the proper displacement for PIE
927 (Position Independent Executable) main symbol file will get applied by
928 solib_create_inferior_hook below. breakpoint_re_set would fail to insert
929 the breakpoints with the zero displacement. */
931 symbol_file_add (execd_pathname,
933 | SYMFILE_MAINLINE | SYMFILE_DEFER_BP_RESET),
936 if ((inf->symfile_flags & SYMFILE_NO_READ) == 0)
937 set_initial_language ();
939 /* If the target can specify a description, read it. Must do this
940 after flipping to the new executable (because the target supplied
941 description must be compatible with the executable's
942 architecture, and the old executable may e.g., be 32-bit, while
943 the new one 64-bit), and before anything involving memory or
945 target_find_description ();
947 solib_create_inferior_hook (0);
949 jit_inferior_created_hook ();
951 breakpoint_re_set ();
953 /* Reinsert all breakpoints. (Those which were symbolic have
954 been reset to the proper address in the new a.out, thanks
955 to symbol_file_command...). */
956 insert_breakpoints ();
958 /* The next resume of this inferior should bring it to the shlib
959 startup breakpoints. (If the user had also set bp's on
960 "main" from the old (parent) process, then they'll auto-
961 matically get reset there in the new process.). */
964 /* Non-zero if we just simulating a single-step. This is needed
965 because we cannot remove the breakpoints in the inferior process
966 until after the `wait' in `wait_for_inferior'. */
967 static int singlestep_breakpoints_inserted_p = 0;
969 /* The thread we inserted single-step breakpoints for. */
970 static ptid_t singlestep_ptid;
972 /* PC when we started this single-step. */
973 static CORE_ADDR singlestep_pc;
975 /* If another thread hit the singlestep breakpoint, we save the original
976 thread here so that we can resume single-stepping it later. */
977 static ptid_t saved_singlestep_ptid;
978 static int stepping_past_singlestep_breakpoint;
980 /* Info about an instruction that is being stepped over. Invalid if
983 struct step_over_info
985 /* The instruction's address space. */
986 struct address_space *aspace;
988 /* The instruction's address. */
992 /* The step-over info of the location that is being stepped over.
994 Note that with async/breakpoint always-inserted mode, a user might
995 set a new breakpoint/watchpoint/etc. exactly while a breakpoint is
996 being stepped over. As setting a new breakpoint inserts all
997 breakpoints, we need to make sure the breakpoint being stepped over
998 isn't inserted then. We do that by only clearing the step-over
999 info when the step-over is actually finished (or aborted).
1001 Presently GDB can only step over one breakpoint at any given time.
1002 Given threads that can't run code in the same address space as the
1003 breakpoint's can't really miss the breakpoint, GDB could be taught
1004 to step-over at most one breakpoint per address space (so this info
1005 could move to the address space object if/when GDB is extended).
1006 The set of breakpoints being stepped over will normally be much
1007 smaller than the set of all breakpoints, so a flag in the
1008 breakpoint location structure would be wasteful. A separate list
1009 also saves complexity and run-time, as otherwise we'd have to go
1010 through all breakpoint locations clearing their flag whenever we
1011 start a new sequence. Similar considerations weigh against storing
1012 this info in the thread object. Plus, not all step overs actually
1013 have breakpoint locations -- e.g., stepping past a single-step
1014 breakpoint, or stepping to complete a non-continuable
1016 static struct step_over_info step_over_info;
1018 /* Record the address of the breakpoint/instruction we're currently
1022 set_step_over_info (struct address_space *aspace, CORE_ADDR address)
1024 step_over_info.aspace = aspace;
1025 step_over_info.address = address;
1028 /* Called when we're not longer stepping over a breakpoint / an
1029 instruction, so all breakpoints are free to be (re)inserted. */
1032 clear_step_over_info (void)
1034 step_over_info.aspace = NULL;
1035 step_over_info.address = 0;
1038 /* See inferior.h. */
1041 stepping_past_instruction_at (struct address_space *aspace,
1044 return (step_over_info.aspace != NULL
1045 && breakpoint_address_match (aspace, address,
1046 step_over_info.aspace,
1047 step_over_info.address));
1051 /* Displaced stepping. */
1053 /* In non-stop debugging mode, we must take special care to manage
1054 breakpoints properly; in particular, the traditional strategy for
1055 stepping a thread past a breakpoint it has hit is unsuitable.
1056 'Displaced stepping' is a tactic for stepping one thread past a
1057 breakpoint it has hit while ensuring that other threads running
1058 concurrently will hit the breakpoint as they should.
1060 The traditional way to step a thread T off a breakpoint in a
1061 multi-threaded program in all-stop mode is as follows:
1063 a0) Initially, all threads are stopped, and breakpoints are not
1065 a1) We single-step T, leaving breakpoints uninserted.
1066 a2) We insert breakpoints, and resume all threads.
1068 In non-stop debugging, however, this strategy is unsuitable: we
1069 don't want to have to stop all threads in the system in order to
1070 continue or step T past a breakpoint. Instead, we use displaced
1073 n0) Initially, T is stopped, other threads are running, and
1074 breakpoints are inserted.
1075 n1) We copy the instruction "under" the breakpoint to a separate
1076 location, outside the main code stream, making any adjustments
1077 to the instruction, register, and memory state as directed by
1079 n2) We single-step T over the instruction at its new location.
1080 n3) We adjust the resulting register and memory state as directed
1081 by T's architecture. This includes resetting T's PC to point
1082 back into the main instruction stream.
1085 This approach depends on the following gdbarch methods:
1087 - gdbarch_max_insn_length and gdbarch_displaced_step_location
1088 indicate where to copy the instruction, and how much space must
1089 be reserved there. We use these in step n1.
1091 - gdbarch_displaced_step_copy_insn copies a instruction to a new
1092 address, and makes any necessary adjustments to the instruction,
1093 register contents, and memory. We use this in step n1.
1095 - gdbarch_displaced_step_fixup adjusts registers and memory after
1096 we have successfuly single-stepped the instruction, to yield the
1097 same effect the instruction would have had if we had executed it
1098 at its original address. We use this in step n3.
1100 - gdbarch_displaced_step_free_closure provides cleanup.
1102 The gdbarch_displaced_step_copy_insn and
1103 gdbarch_displaced_step_fixup functions must be written so that
1104 copying an instruction with gdbarch_displaced_step_copy_insn,
1105 single-stepping across the copied instruction, and then applying
1106 gdbarch_displaced_insn_fixup should have the same effects on the
1107 thread's memory and registers as stepping the instruction in place
1108 would have. Exactly which responsibilities fall to the copy and
1109 which fall to the fixup is up to the author of those functions.
1111 See the comments in gdbarch.sh for details.
1113 Note that displaced stepping and software single-step cannot
1114 currently be used in combination, although with some care I think
1115 they could be made to. Software single-step works by placing
1116 breakpoints on all possible subsequent instructions; if the
1117 displaced instruction is a PC-relative jump, those breakpoints
1118 could fall in very strange places --- on pages that aren't
1119 executable, or at addresses that are not proper instruction
1120 boundaries. (We do generally let other threads run while we wait
1121 to hit the software single-step breakpoint, and they might
1122 encounter such a corrupted instruction.) One way to work around
1123 this would be to have gdbarch_displaced_step_copy_insn fully
1124 simulate the effect of PC-relative instructions (and return NULL)
1125 on architectures that use software single-stepping.
1127 In non-stop mode, we can have independent and simultaneous step
1128 requests, so more than one thread may need to simultaneously step
1129 over a breakpoint. The current implementation assumes there is
1130 only one scratch space per process. In this case, we have to
1131 serialize access to the scratch space. If thread A wants to step
1132 over a breakpoint, but we are currently waiting for some other
1133 thread to complete a displaced step, we leave thread A stopped and
1134 place it in the displaced_step_request_queue. Whenever a displaced
1135 step finishes, we pick the next thread in the queue and start a new
1136 displaced step operation on it. See displaced_step_prepare and
1137 displaced_step_fixup for details. */
1139 struct displaced_step_request
1142 struct displaced_step_request *next;
1145 /* Per-inferior displaced stepping state. */
1146 struct displaced_step_inferior_state
1148 /* Pointer to next in linked list. */
1149 struct displaced_step_inferior_state *next;
1151 /* The process this displaced step state refers to. */
1154 /* A queue of pending displaced stepping requests. One entry per
1155 thread that needs to do a displaced step. */
1156 struct displaced_step_request *step_request_queue;
1158 /* If this is not null_ptid, this is the thread carrying out a
1159 displaced single-step in process PID. This thread's state will
1160 require fixing up once it has completed its step. */
1163 /* The architecture the thread had when we stepped it. */
1164 struct gdbarch *step_gdbarch;
1166 /* The closure provided gdbarch_displaced_step_copy_insn, to be used
1167 for post-step cleanup. */
1168 struct displaced_step_closure *step_closure;
1170 /* The address of the original instruction, and the copy we
1172 CORE_ADDR step_original, step_copy;
1174 /* Saved contents of copy area. */
1175 gdb_byte *step_saved_copy;
1178 /* The list of states of processes involved in displaced stepping
1180 static struct displaced_step_inferior_state *displaced_step_inferior_states;
1182 /* Get the displaced stepping state of process PID. */
1184 static struct displaced_step_inferior_state *
1185 get_displaced_stepping_state (int pid)
1187 struct displaced_step_inferior_state *state;
1189 for (state = displaced_step_inferior_states;
1191 state = state->next)
1192 if (state->pid == pid)
1198 /* Add a new displaced stepping state for process PID to the displaced
1199 stepping state list, or return a pointer to an already existing
1200 entry, if it already exists. Never returns NULL. */
1202 static struct displaced_step_inferior_state *
1203 add_displaced_stepping_state (int pid)
1205 struct displaced_step_inferior_state *state;
1207 for (state = displaced_step_inferior_states;
1209 state = state->next)
1210 if (state->pid == pid)
1213 state = xcalloc (1, sizeof (*state));
1215 state->next = displaced_step_inferior_states;
1216 displaced_step_inferior_states = state;
1221 /* If inferior is in displaced stepping, and ADDR equals to starting address
1222 of copy area, return corresponding displaced_step_closure. Otherwise,
1225 struct displaced_step_closure*
1226 get_displaced_step_closure_by_addr (CORE_ADDR addr)
1228 struct displaced_step_inferior_state *displaced
1229 = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
1231 /* If checking the mode of displaced instruction in copy area. */
1232 if (displaced && !ptid_equal (displaced->step_ptid, null_ptid)
1233 && (displaced->step_copy == addr))
1234 return displaced->step_closure;
1239 /* Remove the displaced stepping state of process PID. */
1242 remove_displaced_stepping_state (int pid)
1244 struct displaced_step_inferior_state *it, **prev_next_p;
1246 gdb_assert (pid != 0);
1248 it = displaced_step_inferior_states;
1249 prev_next_p = &displaced_step_inferior_states;
1254 *prev_next_p = it->next;
1259 prev_next_p = &it->next;
1265 infrun_inferior_exit (struct inferior *inf)
1267 remove_displaced_stepping_state (inf->pid);
1270 /* If ON, and the architecture supports it, GDB will use displaced
1271 stepping to step over breakpoints. If OFF, or if the architecture
1272 doesn't support it, GDB will instead use the traditional
1273 hold-and-step approach. If AUTO (which is the default), GDB will
1274 decide which technique to use to step over breakpoints depending on
1275 which of all-stop or non-stop mode is active --- displaced stepping
1276 in non-stop mode; hold-and-step in all-stop mode. */
1278 static enum auto_boolean can_use_displaced_stepping = AUTO_BOOLEAN_AUTO;
1281 show_can_use_displaced_stepping (struct ui_file *file, int from_tty,
1282 struct cmd_list_element *c,
1285 if (can_use_displaced_stepping == AUTO_BOOLEAN_AUTO)
1286 fprintf_filtered (file,
1287 _("Debugger's willingness to use displaced stepping "
1288 "to step over breakpoints is %s (currently %s).\n"),
1289 value, non_stop ? "on" : "off");
1291 fprintf_filtered (file,
1292 _("Debugger's willingness to use displaced stepping "
1293 "to step over breakpoints is %s.\n"), value);
1296 /* Return non-zero if displaced stepping can/should be used to step
1297 over breakpoints. */
1300 use_displaced_stepping (struct gdbarch *gdbarch)
1302 return (((can_use_displaced_stepping == AUTO_BOOLEAN_AUTO && non_stop)
1303 || can_use_displaced_stepping == AUTO_BOOLEAN_TRUE)
1304 && gdbarch_displaced_step_copy_insn_p (gdbarch)
1305 && find_record_target () == NULL);
1308 /* Clean out any stray displaced stepping state. */
1310 displaced_step_clear (struct displaced_step_inferior_state *displaced)
1312 /* Indicate that there is no cleanup pending. */
1313 displaced->step_ptid = null_ptid;
1315 if (displaced->step_closure)
1317 gdbarch_displaced_step_free_closure (displaced->step_gdbarch,
1318 displaced->step_closure);
1319 displaced->step_closure = NULL;
1324 displaced_step_clear_cleanup (void *arg)
1326 struct displaced_step_inferior_state *state = arg;
1328 displaced_step_clear (state);
1331 /* Dump LEN bytes at BUF in hex to FILE, followed by a newline. */
1333 displaced_step_dump_bytes (struct ui_file *file,
1334 const gdb_byte *buf,
1339 for (i = 0; i < len; i++)
1340 fprintf_unfiltered (file, "%02x ", buf[i]);
1341 fputs_unfiltered ("\n", file);
1344 /* Prepare to single-step, using displaced stepping.
1346 Note that we cannot use displaced stepping when we have a signal to
1347 deliver. If we have a signal to deliver and an instruction to step
1348 over, then after the step, there will be no indication from the
1349 target whether the thread entered a signal handler or ignored the
1350 signal and stepped over the instruction successfully --- both cases
1351 result in a simple SIGTRAP. In the first case we mustn't do a
1352 fixup, and in the second case we must --- but we can't tell which.
1353 Comments in the code for 'random signals' in handle_inferior_event
1354 explain how we handle this case instead.
1356 Returns 1 if preparing was successful -- this thread is going to be
1357 stepped now; or 0 if displaced stepping this thread got queued. */
1359 displaced_step_prepare (ptid_t ptid)
1361 struct cleanup *old_cleanups, *ignore_cleanups;
1362 struct thread_info *tp = find_thread_ptid (ptid);
1363 struct regcache *regcache = get_thread_regcache (ptid);
1364 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1365 CORE_ADDR original, copy;
1367 struct displaced_step_closure *closure;
1368 struct displaced_step_inferior_state *displaced;
1371 /* We should never reach this function if the architecture does not
1372 support displaced stepping. */
1373 gdb_assert (gdbarch_displaced_step_copy_insn_p (gdbarch));
1375 /* Disable range stepping while executing in the scratch pad. We
1376 want a single-step even if executing the displaced instruction in
1377 the scratch buffer lands within the stepping range (e.g., a
1379 tp->control.may_range_step = 0;
1381 /* We have to displaced step one thread at a time, as we only have
1382 access to a single scratch space per inferior. */
1384 displaced = add_displaced_stepping_state (ptid_get_pid (ptid));
1386 if (!ptid_equal (displaced->step_ptid, null_ptid))
1388 /* Already waiting for a displaced step to finish. Defer this
1389 request and place in queue. */
1390 struct displaced_step_request *req, *new_req;
1392 if (debug_displaced)
1393 fprintf_unfiltered (gdb_stdlog,
1394 "displaced: defering step of %s\n",
1395 target_pid_to_str (ptid));
1397 new_req = xmalloc (sizeof (*new_req));
1398 new_req->ptid = ptid;
1399 new_req->next = NULL;
1401 if (displaced->step_request_queue)
1403 for (req = displaced->step_request_queue;
1407 req->next = new_req;
1410 displaced->step_request_queue = new_req;
1416 if (debug_displaced)
1417 fprintf_unfiltered (gdb_stdlog,
1418 "displaced: stepping %s now\n",
1419 target_pid_to_str (ptid));
1422 displaced_step_clear (displaced);
1424 old_cleanups = save_inferior_ptid ();
1425 inferior_ptid = ptid;
1427 original = regcache_read_pc (regcache);
1429 copy = gdbarch_displaced_step_location (gdbarch);
1430 len = gdbarch_max_insn_length (gdbarch);
1432 /* Save the original contents of the copy area. */
1433 displaced->step_saved_copy = xmalloc (len);
1434 ignore_cleanups = make_cleanup (free_current_contents,
1435 &displaced->step_saved_copy);
1436 status = target_read_memory (copy, displaced->step_saved_copy, len);
1438 throw_error (MEMORY_ERROR,
1439 _("Error accessing memory address %s (%s) for "
1440 "displaced-stepping scratch space."),
1441 paddress (gdbarch, copy), safe_strerror (status));
1442 if (debug_displaced)
1444 fprintf_unfiltered (gdb_stdlog, "displaced: saved %s: ",
1445 paddress (gdbarch, copy));
1446 displaced_step_dump_bytes (gdb_stdlog,
1447 displaced->step_saved_copy,
1451 closure = gdbarch_displaced_step_copy_insn (gdbarch,
1452 original, copy, regcache);
1454 /* We don't support the fully-simulated case at present. */
1455 gdb_assert (closure);
1457 /* Save the information we need to fix things up if the step
1459 displaced->step_ptid = ptid;
1460 displaced->step_gdbarch = gdbarch;
1461 displaced->step_closure = closure;
1462 displaced->step_original = original;
1463 displaced->step_copy = copy;
1465 make_cleanup (displaced_step_clear_cleanup, displaced);
1467 /* Resume execution at the copy. */
1468 regcache_write_pc (regcache, copy);
1470 discard_cleanups (ignore_cleanups);
1472 do_cleanups (old_cleanups);
1474 if (debug_displaced)
1475 fprintf_unfiltered (gdb_stdlog, "displaced: displaced pc to %s\n",
1476 paddress (gdbarch, copy));
1482 write_memory_ptid (ptid_t ptid, CORE_ADDR memaddr,
1483 const gdb_byte *myaddr, int len)
1485 struct cleanup *ptid_cleanup = save_inferior_ptid ();
1487 inferior_ptid = ptid;
1488 write_memory (memaddr, myaddr, len);
1489 do_cleanups (ptid_cleanup);
1492 /* Restore the contents of the copy area for thread PTID. */
1495 displaced_step_restore (struct displaced_step_inferior_state *displaced,
1498 ULONGEST len = gdbarch_max_insn_length (displaced->step_gdbarch);
1500 write_memory_ptid (ptid, displaced->step_copy,
1501 displaced->step_saved_copy, len);
1502 if (debug_displaced)
1503 fprintf_unfiltered (gdb_stdlog, "displaced: restored %s %s\n",
1504 target_pid_to_str (ptid),
1505 paddress (displaced->step_gdbarch,
1506 displaced->step_copy));
1510 displaced_step_fixup (ptid_t event_ptid, enum gdb_signal signal)
1512 struct cleanup *old_cleanups;
1513 struct displaced_step_inferior_state *displaced
1514 = get_displaced_stepping_state (ptid_get_pid (event_ptid));
1516 /* Was any thread of this process doing a displaced step? */
1517 if (displaced == NULL)
1520 /* Was this event for the pid we displaced? */
1521 if (ptid_equal (displaced->step_ptid, null_ptid)
1522 || ! ptid_equal (displaced->step_ptid, event_ptid))
1525 old_cleanups = make_cleanup (displaced_step_clear_cleanup, displaced);
1527 displaced_step_restore (displaced, displaced->step_ptid);
1529 /* Did the instruction complete successfully? */
1530 if (signal == GDB_SIGNAL_TRAP)
1532 /* Fix up the resulting state. */
1533 gdbarch_displaced_step_fixup (displaced->step_gdbarch,
1534 displaced->step_closure,
1535 displaced->step_original,
1536 displaced->step_copy,
1537 get_thread_regcache (displaced->step_ptid));
1541 /* Since the instruction didn't complete, all we can do is
1543 struct regcache *regcache = get_thread_regcache (event_ptid);
1544 CORE_ADDR pc = regcache_read_pc (regcache);
1546 pc = displaced->step_original + (pc - displaced->step_copy);
1547 regcache_write_pc (regcache, pc);
1550 do_cleanups (old_cleanups);
1552 displaced->step_ptid = null_ptid;
1554 /* Are there any pending displaced stepping requests? If so, run
1555 one now. Leave the state object around, since we're likely to
1556 need it again soon. */
1557 while (displaced->step_request_queue)
1559 struct displaced_step_request *head;
1561 struct regcache *regcache;
1562 struct gdbarch *gdbarch;
1563 CORE_ADDR actual_pc;
1564 struct address_space *aspace;
1566 head = displaced->step_request_queue;
1568 displaced->step_request_queue = head->next;
1571 context_switch (ptid);
1573 regcache = get_thread_regcache (ptid);
1574 actual_pc = regcache_read_pc (regcache);
1575 aspace = get_regcache_aspace (regcache);
1577 if (breakpoint_here_p (aspace, actual_pc))
1579 if (debug_displaced)
1580 fprintf_unfiltered (gdb_stdlog,
1581 "displaced: stepping queued %s now\n",
1582 target_pid_to_str (ptid));
1584 displaced_step_prepare (ptid);
1586 gdbarch = get_regcache_arch (regcache);
1588 if (debug_displaced)
1590 CORE_ADDR actual_pc = regcache_read_pc (regcache);
1593 fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
1594 paddress (gdbarch, actual_pc));
1595 read_memory (actual_pc, buf, sizeof (buf));
1596 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
1599 if (gdbarch_displaced_step_hw_singlestep (gdbarch,
1600 displaced->step_closure))
1601 target_resume (ptid, 1, GDB_SIGNAL_0);
1603 target_resume (ptid, 0, GDB_SIGNAL_0);
1605 /* Done, we're stepping a thread. */
1611 struct thread_info *tp = inferior_thread ();
1613 /* The breakpoint we were sitting under has since been
1615 tp->control.trap_expected = 0;
1617 /* Go back to what we were trying to do. */
1618 step = currently_stepping (tp);
1620 if (debug_displaced)
1621 fprintf_unfiltered (gdb_stdlog,
1622 "displaced: breakpoint is gone: %s, step(%d)\n",
1623 target_pid_to_str (tp->ptid), step);
1625 target_resume (ptid, step, GDB_SIGNAL_0);
1626 tp->suspend.stop_signal = GDB_SIGNAL_0;
1628 /* This request was discarded. See if there's any other
1629 thread waiting for its turn. */
1634 /* Update global variables holding ptids to hold NEW_PTID if they were
1635 holding OLD_PTID. */
1637 infrun_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
1639 struct displaced_step_request *it;
1640 struct displaced_step_inferior_state *displaced;
1642 if (ptid_equal (inferior_ptid, old_ptid))
1643 inferior_ptid = new_ptid;
1645 if (ptid_equal (singlestep_ptid, old_ptid))
1646 singlestep_ptid = new_ptid;
1648 for (displaced = displaced_step_inferior_states;
1650 displaced = displaced->next)
1652 if (ptid_equal (displaced->step_ptid, old_ptid))
1653 displaced->step_ptid = new_ptid;
1655 for (it = displaced->step_request_queue; it; it = it->next)
1656 if (ptid_equal (it->ptid, old_ptid))
1657 it->ptid = new_ptid;
1664 /* Things to clean up if we QUIT out of resume (). */
1666 resume_cleanups (void *ignore)
1671 static const char schedlock_off[] = "off";
1672 static const char schedlock_on[] = "on";
1673 static const char schedlock_step[] = "step";
1674 static const char *const scheduler_enums[] = {
1680 static const char *scheduler_mode = schedlock_off;
1682 show_scheduler_mode (struct ui_file *file, int from_tty,
1683 struct cmd_list_element *c, const char *value)
1685 fprintf_filtered (file,
1686 _("Mode for locking scheduler "
1687 "during execution is \"%s\".\n"),
1692 set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
1694 if (!target_can_lock_scheduler)
1696 scheduler_mode = schedlock_off;
1697 error (_("Target '%s' cannot support this command."), target_shortname);
1701 /* True if execution commands resume all threads of all processes by
1702 default; otherwise, resume only threads of the current inferior
1704 int sched_multi = 0;
1706 /* Try to setup for software single stepping over the specified location.
1707 Return 1 if target_resume() should use hardware single step.
1709 GDBARCH the current gdbarch.
1710 PC the location to step over. */
1713 maybe_software_singlestep (struct gdbarch *gdbarch, CORE_ADDR pc)
1717 if (execution_direction == EXEC_FORWARD
1718 && gdbarch_software_single_step_p (gdbarch)
1719 && gdbarch_software_single_step (gdbarch, get_current_frame ()))
1722 /* Do not pull these breakpoints until after a `wait' in
1723 `wait_for_inferior'. */
1724 singlestep_breakpoints_inserted_p = 1;
1725 singlestep_ptid = inferior_ptid;
1731 /* Return a ptid representing the set of threads that we will proceed,
1732 in the perspective of the user/frontend. We may actually resume
1733 fewer threads at first, e.g., if a thread is stopped at a
1734 breakpoint that needs stepping-off, but that should not be visible
1735 to the user/frontend, and neither should the frontend/user be
1736 allowed to proceed any of the threads that happen to be stopped for
1737 internal run control handling, if a previous command wanted them
1741 user_visible_resume_ptid (int step)
1743 /* By default, resume all threads of all processes. */
1744 ptid_t resume_ptid = RESUME_ALL;
1746 /* Maybe resume only all threads of the current process. */
1747 if (!sched_multi && target_supports_multi_process ())
1749 resume_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
1752 /* Maybe resume a single thread after all. */
1755 /* With non-stop mode on, threads are always handled
1757 resume_ptid = inferior_ptid;
1759 else if ((scheduler_mode == schedlock_on)
1760 || (scheduler_mode == schedlock_step
1761 && (step || singlestep_breakpoints_inserted_p)))
1763 /* User-settable 'scheduler' mode requires solo thread resume. */
1764 resume_ptid = inferior_ptid;
1770 /* Resume the inferior, but allow a QUIT. This is useful if the user
1771 wants to interrupt some lengthy single-stepping operation
1772 (for child processes, the SIGINT goes to the inferior, and so
1773 we get a SIGINT random_signal, but for remote debugging and perhaps
1774 other targets, that's not true).
1776 STEP nonzero if we should step (zero to continue instead).
1777 SIG is the signal to give the inferior (zero for none). */
1779 resume (int step, enum gdb_signal sig)
1781 int should_resume = 1;
1782 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
1783 struct regcache *regcache = get_current_regcache ();
1784 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1785 struct thread_info *tp = inferior_thread ();
1786 CORE_ADDR pc = regcache_read_pc (regcache);
1787 struct address_space *aspace = get_regcache_aspace (regcache);
1791 if (current_inferior ()->waiting_for_vfork_done)
1793 /* Don't try to single-step a vfork parent that is waiting for
1794 the child to get out of the shared memory region (by exec'ing
1795 or exiting). This is particularly important on software
1796 single-step archs, as the child process would trip on the
1797 software single step breakpoint inserted for the parent
1798 process. Since the parent will not actually execute any
1799 instruction until the child is out of the shared region (such
1800 are vfork's semantics), it is safe to simply continue it.
1801 Eventually, we'll see a TARGET_WAITKIND_VFORK_DONE event for
1802 the parent, and tell it to `keep_going', which automatically
1803 re-sets it stepping. */
1805 fprintf_unfiltered (gdb_stdlog,
1806 "infrun: resume : clear step\n");
1811 fprintf_unfiltered (gdb_stdlog,
1812 "infrun: resume (step=%d, signal=%s), "
1813 "trap_expected=%d, current thread [%s] at %s\n",
1814 step, gdb_signal_to_symbol_string (sig),
1815 tp->control.trap_expected,
1816 target_pid_to_str (inferior_ptid),
1817 paddress (gdbarch, pc));
1819 /* Normally, by the time we reach `resume', the breakpoints are either
1820 removed or inserted, as appropriate. The exception is if we're sitting
1821 at a permanent breakpoint; we need to step over it, but permanent
1822 breakpoints can't be removed. So we have to test for it here. */
1823 if (breakpoint_here_p (aspace, pc) == permanent_breakpoint_here)
1825 if (gdbarch_skip_permanent_breakpoint_p (gdbarch))
1826 gdbarch_skip_permanent_breakpoint (gdbarch, regcache);
1829 The program is stopped at a permanent breakpoint, but GDB does not know\n\
1830 how to step past a permanent breakpoint on this architecture. Try using\n\
1831 a command like `return' or `jump' to continue execution."));
1834 /* If we have a breakpoint to step over, make sure to do a single
1835 step only. Same if we have software watchpoints. */
1836 if (tp->control.trap_expected || bpstat_should_step ())
1837 tp->control.may_range_step = 0;
1839 /* If enabled, step over breakpoints by executing a copy of the
1840 instruction at a different address.
1842 We can't use displaced stepping when we have a signal to deliver;
1843 the comments for displaced_step_prepare explain why. The
1844 comments in the handle_inferior event for dealing with 'random
1845 signals' explain what we do instead.
1847 We can't use displaced stepping when we are waiting for vfork_done
1848 event, displaced stepping breaks the vfork child similarly as single
1849 step software breakpoint. */
1850 if (use_displaced_stepping (gdbarch)
1851 && (tp->control.trap_expected
1852 || (step && gdbarch_software_single_step_p (gdbarch)))
1853 && sig == GDB_SIGNAL_0
1854 && !current_inferior ()->waiting_for_vfork_done)
1856 struct displaced_step_inferior_state *displaced;
1858 if (!displaced_step_prepare (inferior_ptid))
1860 /* Got placed in displaced stepping queue. Will be resumed
1861 later when all the currently queued displaced stepping
1862 requests finish. The thread is not executing at this point,
1863 and the call to set_executing will be made later. But we
1864 need to call set_running here, since from frontend point of view,
1865 the thread is running. */
1866 set_running (inferior_ptid, 1);
1867 discard_cleanups (old_cleanups);
1871 /* Update pc to reflect the new address from which we will execute
1872 instructions due to displaced stepping. */
1873 pc = regcache_read_pc (get_thread_regcache (inferior_ptid));
1875 displaced = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
1876 step = gdbarch_displaced_step_hw_singlestep (gdbarch,
1877 displaced->step_closure);
1880 /* Do we need to do it the hard way, w/temp breakpoints? */
1882 step = maybe_software_singlestep (gdbarch, pc);
1884 /* Currently, our software single-step implementation leads to different
1885 results than hardware single-stepping in one situation: when stepping
1886 into delivering a signal which has an associated signal handler,
1887 hardware single-step will stop at the first instruction of the handler,
1888 while software single-step will simply skip execution of the handler.
1890 For now, this difference in behavior is accepted since there is no
1891 easy way to actually implement single-stepping into a signal handler
1892 without kernel support.
1894 However, there is one scenario where this difference leads to follow-on
1895 problems: if we're stepping off a breakpoint by removing all breakpoints
1896 and then single-stepping. In this case, the software single-step
1897 behavior means that even if there is a *breakpoint* in the signal
1898 handler, GDB still would not stop.
1900 Fortunately, we can at least fix this particular issue. We detect
1901 here the case where we are about to deliver a signal while software
1902 single-stepping with breakpoints removed. In this situation, we
1903 revert the decisions to remove all breakpoints and insert single-
1904 step breakpoints, and instead we install a step-resume breakpoint
1905 at the current address, deliver the signal without stepping, and
1906 once we arrive back at the step-resume breakpoint, actually step
1907 over the breakpoint we originally wanted to step over. */
1908 if (singlestep_breakpoints_inserted_p
1909 && tp->control.trap_expected && sig != GDB_SIGNAL_0)
1911 /* If we have nested signals or a pending signal is delivered
1912 immediately after a handler returns, might might already have
1913 a step-resume breakpoint set on the earlier handler. We cannot
1914 set another step-resume breakpoint; just continue on until the
1915 original breakpoint is hit. */
1916 if (tp->control.step_resume_breakpoint == NULL)
1918 insert_hp_step_resume_breakpoint_at_frame (get_current_frame ());
1919 tp->step_after_step_resume_breakpoint = 1;
1922 remove_single_step_breakpoints ();
1923 singlestep_breakpoints_inserted_p = 0;
1925 clear_step_over_info ();
1926 tp->control.trap_expected = 0;
1928 insert_breakpoints ();
1935 /* If STEP is set, it's a request to use hardware stepping
1936 facilities. But in that case, we should never
1937 use singlestep breakpoint. */
1938 gdb_assert (!(singlestep_breakpoints_inserted_p && step));
1940 /* Decide the set of threads to ask the target to resume. Start
1941 by assuming everything will be resumed, than narrow the set
1942 by applying increasingly restricting conditions. */
1943 resume_ptid = user_visible_resume_ptid (step);
1945 /* Maybe resume a single thread after all. */
1946 if (singlestep_breakpoints_inserted_p
1947 && stepping_past_singlestep_breakpoint)
1949 /* The situation here is as follows. In thread T1 we wanted to
1950 single-step. Lacking hardware single-stepping we've
1951 set breakpoint at the PC of the next instruction -- call it
1952 P. After resuming, we've hit that breakpoint in thread T2.
1953 Now we've removed original breakpoint, inserted breakpoint
1954 at P+1, and try to step to advance T2 past breakpoint.
1955 We need to step only T2, as if T1 is allowed to freely run,
1956 it can run past P, and if other threads are allowed to run,
1957 they can hit breakpoint at P+1, and nested hits of single-step
1958 breakpoints is not something we'd want -- that's complicated
1959 to support, and has no value. */
1960 resume_ptid = inferior_ptid;
1962 else if ((step || singlestep_breakpoints_inserted_p)
1963 && tp->control.trap_expected)
1965 /* We're allowing a thread to run past a breakpoint it has
1966 hit, by single-stepping the thread with the breakpoint
1967 removed. In which case, we need to single-step only this
1968 thread, and keep others stopped, as they can miss this
1969 breakpoint if allowed to run. */
1970 resume_ptid = inferior_ptid;
1973 if (gdbarch_cannot_step_breakpoint (gdbarch))
1975 /* Most targets can step a breakpoint instruction, thus
1976 executing it normally. But if this one cannot, just
1977 continue and we will hit it anyway. */
1978 if (step && breakpoint_inserted_here_p (aspace, pc))
1983 && use_displaced_stepping (gdbarch)
1984 && tp->control.trap_expected)
1986 struct regcache *resume_regcache = get_thread_regcache (resume_ptid);
1987 struct gdbarch *resume_gdbarch = get_regcache_arch (resume_regcache);
1988 CORE_ADDR actual_pc = regcache_read_pc (resume_regcache);
1991 fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
1992 paddress (resume_gdbarch, actual_pc));
1993 read_memory (actual_pc, buf, sizeof (buf));
1994 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
1997 if (tp->control.may_range_step)
1999 /* If we're resuming a thread with the PC out of the step
2000 range, then we're doing some nested/finer run control
2001 operation, like stepping the thread out of the dynamic
2002 linker or the displaced stepping scratch pad. We
2003 shouldn't have allowed a range step then. */
2004 gdb_assert (pc_in_thread_step_range (pc, tp));
2007 /* Install inferior's terminal modes. */
2008 target_terminal_inferior ();
2010 /* Avoid confusing the next resume, if the next stop/resume
2011 happens to apply to another thread. */
2012 tp->suspend.stop_signal = GDB_SIGNAL_0;
2014 /* Advise target which signals may be handled silently. If we have
2015 removed breakpoints because we are stepping over one (which can
2016 happen only if we are not using displaced stepping), we need to
2017 receive all signals to avoid accidentally skipping a breakpoint
2018 during execution of a signal handler. */
2019 if ((step || singlestep_breakpoints_inserted_p)
2020 && tp->control.trap_expected
2021 && !use_displaced_stepping (gdbarch))
2022 target_pass_signals (0, NULL);
2024 target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
2026 target_resume (resume_ptid, step, sig);
2029 discard_cleanups (old_cleanups);
2034 /* Clear out all variables saying what to do when inferior is continued.
2035 First do this, then set the ones you want, then call `proceed'. */
2038 clear_proceed_status_thread (struct thread_info *tp)
2041 fprintf_unfiltered (gdb_stdlog,
2042 "infrun: clear_proceed_status_thread (%s)\n",
2043 target_pid_to_str (tp->ptid));
2045 tp->control.trap_expected = 0;
2046 tp->control.step_range_start = 0;
2047 tp->control.step_range_end = 0;
2048 tp->control.may_range_step = 0;
2049 tp->control.step_frame_id = null_frame_id;
2050 tp->control.step_stack_frame_id = null_frame_id;
2051 tp->control.step_over_calls = STEP_OVER_UNDEBUGGABLE;
2052 tp->stop_requested = 0;
2054 tp->control.stop_step = 0;
2056 tp->control.proceed_to_finish = 0;
2058 /* Discard any remaining commands or status from previous stop. */
2059 bpstat_clear (&tp->control.stop_bpstat);
2063 clear_proceed_status_callback (struct thread_info *tp, void *data)
2065 if (is_exited (tp->ptid))
2068 clear_proceed_status_thread (tp);
2073 clear_proceed_status (void)
2077 /* In all-stop mode, delete the per-thread status of all
2078 threads, even if inferior_ptid is null_ptid, there may be
2079 threads on the list. E.g., we may be launching a new
2080 process, while selecting the executable. */
2081 iterate_over_threads (clear_proceed_status_callback, NULL);
2084 if (!ptid_equal (inferior_ptid, null_ptid))
2086 struct inferior *inferior;
2090 /* If in non-stop mode, only delete the per-thread status of
2091 the current thread. */
2092 clear_proceed_status_thread (inferior_thread ());
2095 inferior = current_inferior ();
2096 inferior->control.stop_soon = NO_STOP_QUIETLY;
2099 stop_after_trap = 0;
2101 clear_step_over_info ();
2103 observer_notify_about_to_proceed ();
2107 regcache_xfree (stop_registers);
2108 stop_registers = NULL;
2112 /* Check the current thread against the thread that reported the most recent
2113 event. If a step-over is required return TRUE and set the current thread
2114 to the old thread. Otherwise return FALSE.
2116 This should be suitable for any targets that support threads. */
2119 prepare_to_proceed (int step)
2122 struct target_waitstatus wait_status;
2123 int schedlock_enabled;
2125 /* With non-stop mode on, threads are always handled individually. */
2126 gdb_assert (! non_stop);
2128 /* Get the last target status returned by target_wait(). */
2129 get_last_target_status (&wait_ptid, &wait_status);
2131 /* Make sure we were stopped at a breakpoint. */
2132 if (wait_status.kind != TARGET_WAITKIND_STOPPED
2133 || (wait_status.value.sig != GDB_SIGNAL_TRAP
2134 && wait_status.value.sig != GDB_SIGNAL_ILL
2135 && wait_status.value.sig != GDB_SIGNAL_SEGV
2136 && wait_status.value.sig != GDB_SIGNAL_EMT))
2141 schedlock_enabled = (scheduler_mode == schedlock_on
2142 || (scheduler_mode == schedlock_step
2145 /* Don't switch over to WAIT_PTID if scheduler locking is on. */
2146 if (schedlock_enabled)
2149 /* Don't switch over if we're about to resume some other process
2150 other than WAIT_PTID's, and schedule-multiple is off. */
2152 && ptid_get_pid (wait_ptid) != ptid_get_pid (inferior_ptid))
2155 /* Switched over from WAIT_PID. */
2156 if (!ptid_equal (wait_ptid, minus_one_ptid)
2157 && !ptid_equal (inferior_ptid, wait_ptid))
2159 struct regcache *regcache = get_thread_regcache (wait_ptid);
2161 if (breakpoint_here_p (get_regcache_aspace (regcache),
2162 regcache_read_pc (regcache)))
2164 /* Switch back to WAIT_PID thread. */
2165 switch_to_thread (wait_ptid);
2168 fprintf_unfiltered (gdb_stdlog,
2169 "infrun: prepare_to_proceed (step=%d), "
2170 "switched to [%s]\n",
2171 step, target_pid_to_str (inferior_ptid));
2173 /* We return 1 to indicate that there is a breakpoint here,
2174 so we need to step over it before continuing to avoid
2175 hitting it straight away. */
2183 /* Basic routine for continuing the program in various fashions.
2185 ADDR is the address to resume at, or -1 for resume where stopped.
2186 SIGGNAL is the signal to give it, or 0 for none,
2187 or -1 for act according to how it stopped.
2188 STEP is nonzero if should trap after one instruction.
2189 -1 means return after that and print nothing.
2190 You should probably set various step_... variables
2191 before calling here, if you are stepping.
2193 You should call clear_proceed_status before calling proceed. */
2196 proceed (CORE_ADDR addr, enum gdb_signal siggnal, int step)
2198 struct regcache *regcache;
2199 struct gdbarch *gdbarch;
2200 struct thread_info *tp;
2202 struct address_space *aspace;
2203 /* GDB may force the inferior to step due to various reasons. */
2206 /* If we're stopped at a fork/vfork, follow the branch set by the
2207 "set follow-fork-mode" command; otherwise, we'll just proceed
2208 resuming the current thread. */
2209 if (!follow_fork ())
2211 /* The target for some reason decided not to resume. */
2213 if (target_can_async_p ())
2214 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
2218 /* We'll update this if & when we switch to a new thread. */
2219 previous_inferior_ptid = inferior_ptid;
2221 regcache = get_current_regcache ();
2222 gdbarch = get_regcache_arch (regcache);
2223 aspace = get_regcache_aspace (regcache);
2224 pc = regcache_read_pc (regcache);
2227 step_start_function = find_pc_function (pc);
2229 stop_after_trap = 1;
2231 if (addr == (CORE_ADDR) -1)
2233 if (pc == stop_pc && breakpoint_here_p (aspace, pc)
2234 && execution_direction != EXEC_REVERSE)
2235 /* There is a breakpoint at the address we will resume at,
2236 step one instruction before inserting breakpoints so that
2237 we do not stop right away (and report a second hit at this
2240 Note, we don't do this in reverse, because we won't
2241 actually be executing the breakpoint insn anyway.
2242 We'll be (un-)executing the previous instruction. */
2245 else if (gdbarch_single_step_through_delay_p (gdbarch)
2246 && gdbarch_single_step_through_delay (gdbarch,
2247 get_current_frame ()))
2248 /* We stepped onto an instruction that needs to be stepped
2249 again before re-inserting the breakpoint, do so. */
2254 regcache_write_pc (regcache, addr);
2258 fprintf_unfiltered (gdb_stdlog,
2259 "infrun: proceed (addr=%s, signal=%s, step=%d)\n",
2260 paddress (gdbarch, addr),
2261 gdb_signal_to_symbol_string (siggnal), step);
2264 /* In non-stop, each thread is handled individually. The context
2265 must already be set to the right thread here. */
2269 /* In a multi-threaded task we may select another thread and
2270 then continue or step.
2272 But if the old thread was stopped at a breakpoint, it will
2273 immediately cause another breakpoint stop without any
2274 execution (i.e. it will report a breakpoint hit incorrectly).
2275 So we must step over it first.
2277 prepare_to_proceed checks the current thread against the
2278 thread that reported the most recent event. If a step-over
2279 is required it returns TRUE and sets the current thread to
2281 if (prepare_to_proceed (step))
2285 /* prepare_to_proceed may change the current thread. */
2286 tp = inferior_thread ();
2289 tp->control.trap_expected = 1;
2291 /* If we need to step over a breakpoint, and we're not using
2292 displaced stepping to do so, insert all breakpoints (watchpoints,
2293 etc.) but the one we're stepping over, step one instruction, and
2294 then re-insert the breakpoint when that step is finished. */
2295 if (tp->control.trap_expected && !use_displaced_stepping (gdbarch))
2297 struct regcache *regcache = get_current_regcache ();
2299 set_step_over_info (get_regcache_aspace (regcache),
2300 regcache_read_pc (regcache));
2303 clear_step_over_info ();
2305 insert_breakpoints ();
2309 /* Pass the last stop signal to the thread we're resuming,
2310 irrespective of whether the current thread is the thread that
2311 got the last event or not. This was historically GDB's
2312 behaviour before keeping a stop_signal per thread. */
2314 struct thread_info *last_thread;
2316 struct target_waitstatus last_status;
2318 get_last_target_status (&last_ptid, &last_status);
2319 if (!ptid_equal (inferior_ptid, last_ptid)
2320 && !ptid_equal (last_ptid, null_ptid)
2321 && !ptid_equal (last_ptid, minus_one_ptid))
2323 last_thread = find_thread_ptid (last_ptid);
2326 tp->suspend.stop_signal = last_thread->suspend.stop_signal;
2327 last_thread->suspend.stop_signal = GDB_SIGNAL_0;
2332 if (siggnal != GDB_SIGNAL_DEFAULT)
2333 tp->suspend.stop_signal = siggnal;
2334 /* If this signal should not be seen by program,
2335 give it zero. Used for debugging signals. */
2336 else if (!signal_program[tp->suspend.stop_signal])
2337 tp->suspend.stop_signal = GDB_SIGNAL_0;
2339 annotate_starting ();
2341 /* Make sure that output from GDB appears before output from the
2343 gdb_flush (gdb_stdout);
2345 /* Refresh prev_pc value just prior to resuming. This used to be
2346 done in stop_stepping, however, setting prev_pc there did not handle
2347 scenarios such as inferior function calls or returning from
2348 a function via the return command. In those cases, the prev_pc
2349 value was not set properly for subsequent commands. The prev_pc value
2350 is used to initialize the starting line number in the ecs. With an
2351 invalid value, the gdb next command ends up stopping at the position
2352 represented by the next line table entry past our start position.
2353 On platforms that generate one line table entry per line, this
2354 is not a problem. However, on the ia64, the compiler generates
2355 extraneous line table entries that do not increase the line number.
2356 When we issue the gdb next command on the ia64 after an inferior call
2357 or a return command, we often end up a few instructions forward, still
2358 within the original line we started.
2360 An attempt was made to refresh the prev_pc at the same time the
2361 execution_control_state is initialized (for instance, just before
2362 waiting for an inferior event). But this approach did not work
2363 because of platforms that use ptrace, where the pc register cannot
2364 be read unless the inferior is stopped. At that point, we are not
2365 guaranteed the inferior is stopped and so the regcache_read_pc() call
2366 can fail. Setting the prev_pc value here ensures the value is updated
2367 correctly when the inferior is stopped. */
2368 tp->prev_pc = regcache_read_pc (get_current_regcache ());
2370 /* Fill in with reasonable starting values. */
2371 init_thread_stepping_state (tp);
2373 /* Reset to normal state. */
2374 init_infwait_state ();
2376 /* Resume inferior. */
2377 resume (force_step || step || bpstat_should_step (),
2378 tp->suspend.stop_signal);
2380 /* Wait for it to stop (if not standalone)
2381 and in any case decode why it stopped, and act accordingly. */
2382 /* Do this only if we are not using the event loop, or if the target
2383 does not support asynchronous execution. */
2384 if (!target_can_async_p ())
2386 wait_for_inferior ();
2392 /* Start remote-debugging of a machine over a serial link. */
2395 start_remote (int from_tty)
2397 struct inferior *inferior;
2399 inferior = current_inferior ();
2400 inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
2402 /* Always go on waiting for the target, regardless of the mode. */
2403 /* FIXME: cagney/1999-09-23: At present it isn't possible to
2404 indicate to wait_for_inferior that a target should timeout if
2405 nothing is returned (instead of just blocking). Because of this,
2406 targets expecting an immediate response need to, internally, set
2407 things up so that the target_wait() is forced to eventually
2409 /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
2410 differentiate to its caller what the state of the target is after
2411 the initial open has been performed. Here we're assuming that
2412 the target has stopped. It should be possible to eventually have
2413 target_open() return to the caller an indication that the target
2414 is currently running and GDB state should be set to the same as
2415 for an async run. */
2416 wait_for_inferior ();
2418 /* Now that the inferior has stopped, do any bookkeeping like
2419 loading shared libraries. We want to do this before normal_stop,
2420 so that the displayed frame is up to date. */
2421 post_create_inferior (¤t_target, from_tty);
2426 /* Initialize static vars when a new inferior begins. */
2429 init_wait_for_inferior (void)
2431 /* These are meaningless until the first time through wait_for_inferior. */
2433 breakpoint_init_inferior (inf_starting);
2435 clear_proceed_status ();
2437 stepping_past_singlestep_breakpoint = 0;
2439 target_last_wait_ptid = minus_one_ptid;
2441 previous_inferior_ptid = inferior_ptid;
2442 init_infwait_state ();
2444 /* Discard any skipped inlined frames. */
2445 clear_inline_frame_state (minus_one_ptid);
2449 /* This enum encodes possible reasons for doing a target_wait, so that
2450 wfi can call target_wait in one place. (Ultimately the call will be
2451 moved out of the infinite loop entirely.) */
2455 infwait_normal_state,
2456 infwait_thread_hop_state,
2457 infwait_step_watch_state,
2458 infwait_nonstep_watch_state
2461 /* The PTID we'll do a target_wait on.*/
2464 /* Current inferior wait state. */
2465 static enum infwait_states infwait_state;
2467 /* Data to be passed around while handling an event. This data is
2468 discarded between events. */
2469 struct execution_control_state
2472 /* The thread that got the event, if this was a thread event; NULL
2474 struct thread_info *event_thread;
2476 struct target_waitstatus ws;
2477 int stop_func_filled_in;
2478 CORE_ADDR stop_func_start;
2479 CORE_ADDR stop_func_end;
2480 const char *stop_func_name;
2483 /* We were in infwait_step_watch_state or
2484 infwait_nonstep_watch_state state, and the thread reported an
2486 int stepped_after_stopped_by_watchpoint;
2489 static void handle_inferior_event (struct execution_control_state *ecs);
2491 static void handle_step_into_function (struct gdbarch *gdbarch,
2492 struct execution_control_state *ecs);
2493 static void handle_step_into_function_backward (struct gdbarch *gdbarch,
2494 struct execution_control_state *ecs);
2495 static void handle_signal_stop (struct execution_control_state *ecs);
2496 static void check_exception_resume (struct execution_control_state *,
2497 struct frame_info *);
2499 static void stop_stepping (struct execution_control_state *ecs);
2500 static void prepare_to_wait (struct execution_control_state *ecs);
2501 static void keep_going (struct execution_control_state *ecs);
2502 static void process_event_stop_test (struct execution_control_state *ecs);
2503 static int switch_back_to_stepped_thread (struct execution_control_state *ecs);
2505 /* Callback for iterate over threads. If the thread is stopped, but
2506 the user/frontend doesn't know about that yet, go through
2507 normal_stop, as if the thread had just stopped now. ARG points at
2508 a ptid. If PTID is MINUS_ONE_PTID, applies to all threads. If
2509 ptid_is_pid(PTID) is true, applies to all threads of the process
2510 pointed at by PTID. Otherwise, apply only to the thread pointed by
2514 infrun_thread_stop_requested_callback (struct thread_info *info, void *arg)
2516 ptid_t ptid = * (ptid_t *) arg;
2518 if ((ptid_equal (info->ptid, ptid)
2519 || ptid_equal (minus_one_ptid, ptid)
2520 || (ptid_is_pid (ptid)
2521 && ptid_get_pid (ptid) == ptid_get_pid (info->ptid)))
2522 && is_running (info->ptid)
2523 && !is_executing (info->ptid))
2525 struct cleanup *old_chain;
2526 struct execution_control_state ecss;
2527 struct execution_control_state *ecs = &ecss;
2529 memset (ecs, 0, sizeof (*ecs));
2531 old_chain = make_cleanup_restore_current_thread ();
2533 overlay_cache_invalid = 1;
2534 /* Flush target cache before starting to handle each event.
2535 Target was running and cache could be stale. This is just a
2536 heuristic. Running threads may modify target memory, but we
2537 don't get any event. */
2538 target_dcache_invalidate ();
2540 /* Go through handle_inferior_event/normal_stop, so we always
2541 have consistent output as if the stop event had been
2543 ecs->ptid = info->ptid;
2544 ecs->event_thread = find_thread_ptid (info->ptid);
2545 ecs->ws.kind = TARGET_WAITKIND_STOPPED;
2546 ecs->ws.value.sig = GDB_SIGNAL_0;
2548 handle_inferior_event (ecs);
2550 if (!ecs->wait_some_more)
2552 struct thread_info *tp;
2556 /* Finish off the continuations. */
2557 tp = inferior_thread ();
2558 do_all_intermediate_continuations_thread (tp, 1);
2559 do_all_continuations_thread (tp, 1);
2562 do_cleanups (old_chain);
2568 /* This function is attached as a "thread_stop_requested" observer.
2569 Cleanup local state that assumed the PTID was to be resumed, and
2570 report the stop to the frontend. */
2573 infrun_thread_stop_requested (ptid_t ptid)
2575 struct displaced_step_inferior_state *displaced;
2577 /* PTID was requested to stop. Remove it from the displaced
2578 stepping queue, so we don't try to resume it automatically. */
2580 for (displaced = displaced_step_inferior_states;
2582 displaced = displaced->next)
2584 struct displaced_step_request *it, **prev_next_p;
2586 it = displaced->step_request_queue;
2587 prev_next_p = &displaced->step_request_queue;
2590 if (ptid_match (it->ptid, ptid))
2592 *prev_next_p = it->next;
2598 prev_next_p = &it->next;
2605 iterate_over_threads (infrun_thread_stop_requested_callback, &ptid);
2609 infrun_thread_thread_exit (struct thread_info *tp, int silent)
2611 if (ptid_equal (target_last_wait_ptid, tp->ptid))
2612 nullify_last_target_wait_ptid ();
2615 /* Callback for iterate_over_threads. */
2618 delete_step_resume_breakpoint_callback (struct thread_info *info, void *data)
2620 if (is_exited (info->ptid))
2623 delete_step_resume_breakpoint (info);
2624 delete_exception_resume_breakpoint (info);
2628 /* In all-stop, delete the step resume breakpoint of any thread that
2629 had one. In non-stop, delete the step resume breakpoint of the
2630 thread that just stopped. */
2633 delete_step_thread_step_resume_breakpoint (void)
2635 if (!target_has_execution
2636 || ptid_equal (inferior_ptid, null_ptid))
2637 /* If the inferior has exited, we have already deleted the step
2638 resume breakpoints out of GDB's lists. */
2643 /* If in non-stop mode, only delete the step-resume or
2644 longjmp-resume breakpoint of the thread that just stopped
2646 struct thread_info *tp = inferior_thread ();
2648 delete_step_resume_breakpoint (tp);
2649 delete_exception_resume_breakpoint (tp);
2652 /* In all-stop mode, delete all step-resume and longjmp-resume
2653 breakpoints of any thread that had them. */
2654 iterate_over_threads (delete_step_resume_breakpoint_callback, NULL);
2657 /* A cleanup wrapper. */
2660 delete_step_thread_step_resume_breakpoint_cleanup (void *arg)
2662 delete_step_thread_step_resume_breakpoint ();
2665 /* Pretty print the results of target_wait, for debugging purposes. */
2668 print_target_wait_results (ptid_t waiton_ptid, ptid_t result_ptid,
2669 const struct target_waitstatus *ws)
2671 char *status_string = target_waitstatus_to_string (ws);
2672 struct ui_file *tmp_stream = mem_fileopen ();
2675 /* The text is split over several lines because it was getting too long.
2676 Call fprintf_unfiltered (gdb_stdlog) once so that the text is still
2677 output as a unit; we want only one timestamp printed if debug_timestamp
2680 fprintf_unfiltered (tmp_stream,
2681 "infrun: target_wait (%d", ptid_get_pid (waiton_ptid));
2682 if (ptid_get_pid (waiton_ptid) != -1)
2683 fprintf_unfiltered (tmp_stream,
2684 " [%s]", target_pid_to_str (waiton_ptid));
2685 fprintf_unfiltered (tmp_stream, ", status) =\n");
2686 fprintf_unfiltered (tmp_stream,
2687 "infrun: %d [%s],\n",
2688 ptid_get_pid (result_ptid),
2689 target_pid_to_str (result_ptid));
2690 fprintf_unfiltered (tmp_stream,
2694 text = ui_file_xstrdup (tmp_stream, NULL);
2696 /* This uses %s in part to handle %'s in the text, but also to avoid
2697 a gcc error: the format attribute requires a string literal. */
2698 fprintf_unfiltered (gdb_stdlog, "%s", text);
2700 xfree (status_string);
2702 ui_file_delete (tmp_stream);
2705 /* Prepare and stabilize the inferior for detaching it. E.g.,
2706 detaching while a thread is displaced stepping is a recipe for
2707 crashing it, as nothing would readjust the PC out of the scratch
2711 prepare_for_detach (void)
2713 struct inferior *inf = current_inferior ();
2714 ptid_t pid_ptid = pid_to_ptid (inf->pid);
2715 struct cleanup *old_chain_1;
2716 struct displaced_step_inferior_state *displaced;
2718 displaced = get_displaced_stepping_state (inf->pid);
2720 /* Is any thread of this process displaced stepping? If not,
2721 there's nothing else to do. */
2722 if (displaced == NULL || ptid_equal (displaced->step_ptid, null_ptid))
2726 fprintf_unfiltered (gdb_stdlog,
2727 "displaced-stepping in-process while detaching");
2729 old_chain_1 = make_cleanup_restore_integer (&inf->detaching);
2732 while (!ptid_equal (displaced->step_ptid, null_ptid))
2734 struct cleanup *old_chain_2;
2735 struct execution_control_state ecss;
2736 struct execution_control_state *ecs;
2739 memset (ecs, 0, sizeof (*ecs));
2741 overlay_cache_invalid = 1;
2742 /* Flush target cache before starting to handle each event.
2743 Target was running and cache could be stale. This is just a
2744 heuristic. Running threads may modify target memory, but we
2745 don't get any event. */
2746 target_dcache_invalidate ();
2748 if (deprecated_target_wait_hook)
2749 ecs->ptid = deprecated_target_wait_hook (pid_ptid, &ecs->ws, 0);
2751 ecs->ptid = target_wait (pid_ptid, &ecs->ws, 0);
2754 print_target_wait_results (pid_ptid, ecs->ptid, &ecs->ws);
2756 /* If an error happens while handling the event, propagate GDB's
2757 knowledge of the executing state to the frontend/user running
2759 old_chain_2 = make_cleanup (finish_thread_state_cleanup,
2762 /* Now figure out what to do with the result of the result. */
2763 handle_inferior_event (ecs);
2765 /* No error, don't finish the state yet. */
2766 discard_cleanups (old_chain_2);
2768 /* Breakpoints and watchpoints are not installed on the target
2769 at this point, and signals are passed directly to the
2770 inferior, so this must mean the process is gone. */
2771 if (!ecs->wait_some_more)
2773 discard_cleanups (old_chain_1);
2774 error (_("Program exited while detaching"));
2778 discard_cleanups (old_chain_1);
2781 /* Wait for control to return from inferior to debugger.
2783 If inferior gets a signal, we may decide to start it up again
2784 instead of returning. That is why there is a loop in this function.
2785 When this function actually returns it means the inferior
2786 should be left stopped and GDB should read more commands. */
2789 wait_for_inferior (void)
2791 struct cleanup *old_cleanups;
2795 (gdb_stdlog, "infrun: wait_for_inferior ()\n");
2798 make_cleanup (delete_step_thread_step_resume_breakpoint_cleanup, NULL);
2802 struct execution_control_state ecss;
2803 struct execution_control_state *ecs = &ecss;
2804 struct cleanup *old_chain;
2806 memset (ecs, 0, sizeof (*ecs));
2808 overlay_cache_invalid = 1;
2810 /* Flush target cache before starting to handle each event.
2811 Target was running and cache could be stale. This is just a
2812 heuristic. Running threads may modify target memory, but we
2813 don't get any event. */
2814 target_dcache_invalidate ();
2816 if (deprecated_target_wait_hook)
2817 ecs->ptid = deprecated_target_wait_hook (waiton_ptid, &ecs->ws, 0);
2819 ecs->ptid = target_wait (waiton_ptid, &ecs->ws, 0);
2822 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
2824 /* If an error happens while handling the event, propagate GDB's
2825 knowledge of the executing state to the frontend/user running
2827 old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
2829 /* Now figure out what to do with the result of the result. */
2830 handle_inferior_event (ecs);
2832 /* No error, don't finish the state yet. */
2833 discard_cleanups (old_chain);
2835 if (!ecs->wait_some_more)
2839 do_cleanups (old_cleanups);
2842 /* Asynchronous version of wait_for_inferior. It is called by the
2843 event loop whenever a change of state is detected on the file
2844 descriptor corresponding to the target. It can be called more than
2845 once to complete a single execution command. In such cases we need
2846 to keep the state in a global variable ECSS. If it is the last time
2847 that this function is called for a single execution command, then
2848 report to the user that the inferior has stopped, and do the
2849 necessary cleanups. */
2852 fetch_inferior_event (void *client_data)
2854 struct execution_control_state ecss;
2855 struct execution_control_state *ecs = &ecss;
2856 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
2857 struct cleanup *ts_old_chain;
2858 int was_sync = sync_execution;
2861 memset (ecs, 0, sizeof (*ecs));
2863 /* We're handling a live event, so make sure we're doing live
2864 debugging. If we're looking at traceframes while the target is
2865 running, we're going to need to get back to that mode after
2866 handling the event. */
2869 make_cleanup_restore_current_traceframe ();
2870 set_current_traceframe (-1);
2874 /* In non-stop mode, the user/frontend should not notice a thread
2875 switch due to internal events. Make sure we reverse to the
2876 user selected thread and frame after handling the event and
2877 running any breakpoint commands. */
2878 make_cleanup_restore_current_thread ();
2880 overlay_cache_invalid = 1;
2881 /* Flush target cache before starting to handle each event. Target
2882 was running and cache could be stale. This is just a heuristic.
2883 Running threads may modify target memory, but we don't get any
2885 target_dcache_invalidate ();
2887 make_cleanup_restore_integer (&execution_direction);
2888 execution_direction = target_execution_direction ();
2890 if (deprecated_target_wait_hook)
2892 deprecated_target_wait_hook (waiton_ptid, &ecs->ws, TARGET_WNOHANG);
2894 ecs->ptid = target_wait (waiton_ptid, &ecs->ws, TARGET_WNOHANG);
2897 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
2899 /* If an error happens while handling the event, propagate GDB's
2900 knowledge of the executing state to the frontend/user running
2903 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
2905 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &ecs->ptid);
2907 /* Get executed before make_cleanup_restore_current_thread above to apply
2908 still for the thread which has thrown the exception. */
2909 make_bpstat_clear_actions_cleanup ();
2911 /* Now figure out what to do with the result of the result. */
2912 handle_inferior_event (ecs);
2914 if (!ecs->wait_some_more)
2916 struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
2918 delete_step_thread_step_resume_breakpoint ();
2920 /* We may not find an inferior if this was a process exit. */
2921 if (inf == NULL || inf->control.stop_soon == NO_STOP_QUIETLY)
2924 if (target_has_execution
2925 && ecs->ws.kind != TARGET_WAITKIND_NO_RESUMED
2926 && ecs->ws.kind != TARGET_WAITKIND_EXITED
2927 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
2928 && ecs->event_thread->step_multi
2929 && ecs->event_thread->control.stop_step)
2930 inferior_event_handler (INF_EXEC_CONTINUE, NULL);
2933 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
2938 /* No error, don't finish the thread states yet. */
2939 discard_cleanups (ts_old_chain);
2941 /* Revert thread and frame. */
2942 do_cleanups (old_chain);
2944 /* If the inferior was in sync execution mode, and now isn't,
2945 restore the prompt (a synchronous execution command has finished,
2946 and we're ready for input). */
2947 if (interpreter_async && was_sync && !sync_execution)
2948 display_gdb_prompt (0);
2952 && exec_done_display_p
2953 && (ptid_equal (inferior_ptid, null_ptid)
2954 || !is_running (inferior_ptid)))
2955 printf_unfiltered (_("completed.\n"));
2958 /* Record the frame and location we're currently stepping through. */
2960 set_step_info (struct frame_info *frame, struct symtab_and_line sal)
2962 struct thread_info *tp = inferior_thread ();
2964 tp->control.step_frame_id = get_frame_id (frame);
2965 tp->control.step_stack_frame_id = get_stack_frame_id (frame);
2967 tp->current_symtab = sal.symtab;
2968 tp->current_line = sal.line;
2971 /* Clear context switchable stepping state. */
2974 init_thread_stepping_state (struct thread_info *tss)
2976 tss->stepping_over_breakpoint = 0;
2977 tss->step_after_step_resume_breakpoint = 0;
2980 /* Return the cached copy of the last pid/waitstatus returned by
2981 target_wait()/deprecated_target_wait_hook(). The data is actually
2982 cached by handle_inferior_event(), which gets called immediately
2983 after target_wait()/deprecated_target_wait_hook(). */
2986 get_last_target_status (ptid_t *ptidp, struct target_waitstatus *status)
2988 *ptidp = target_last_wait_ptid;
2989 *status = target_last_waitstatus;
2993 nullify_last_target_wait_ptid (void)
2995 target_last_wait_ptid = minus_one_ptid;
2998 /* Switch thread contexts. */
3001 context_switch (ptid_t ptid)
3003 if (debug_infrun && !ptid_equal (ptid, inferior_ptid))
3005 fprintf_unfiltered (gdb_stdlog, "infrun: Switching context from %s ",
3006 target_pid_to_str (inferior_ptid));
3007 fprintf_unfiltered (gdb_stdlog, "to %s\n",
3008 target_pid_to_str (ptid));
3011 switch_to_thread (ptid);
3015 adjust_pc_after_break (struct execution_control_state *ecs)
3017 struct regcache *regcache;
3018 struct gdbarch *gdbarch;
3019 struct address_space *aspace;
3020 CORE_ADDR breakpoint_pc, decr_pc;
3022 /* If we've hit a breakpoint, we'll normally be stopped with SIGTRAP. If
3023 we aren't, just return.
3025 We assume that waitkinds other than TARGET_WAITKIND_STOPPED are not
3026 affected by gdbarch_decr_pc_after_break. Other waitkinds which are
3027 implemented by software breakpoints should be handled through the normal
3030 NOTE drow/2004-01-31: On some targets, breakpoints may generate
3031 different signals (SIGILL or SIGEMT for instance), but it is less
3032 clear where the PC is pointing afterwards. It may not match
3033 gdbarch_decr_pc_after_break. I don't know any specific target that
3034 generates these signals at breakpoints (the code has been in GDB since at
3035 least 1992) so I can not guess how to handle them here.
3037 In earlier versions of GDB, a target with
3038 gdbarch_have_nonsteppable_watchpoint would have the PC after hitting a
3039 watchpoint affected by gdbarch_decr_pc_after_break. I haven't found any
3040 target with both of these set in GDB history, and it seems unlikely to be
3041 correct, so gdbarch_have_nonsteppable_watchpoint is not checked here. */
3043 if (ecs->ws.kind != TARGET_WAITKIND_STOPPED)
3046 if (ecs->ws.value.sig != GDB_SIGNAL_TRAP)
3049 /* In reverse execution, when a breakpoint is hit, the instruction
3050 under it has already been de-executed. The reported PC always
3051 points at the breakpoint address, so adjusting it further would
3052 be wrong. E.g., consider this case on a decr_pc_after_break == 1
3055 B1 0x08000000 : INSN1
3056 B2 0x08000001 : INSN2
3058 PC -> 0x08000003 : INSN4
3060 Say you're stopped at 0x08000003 as above. Reverse continuing
3061 from that point should hit B2 as below. Reading the PC when the
3062 SIGTRAP is reported should read 0x08000001 and INSN2 should have
3063 been de-executed already.
3065 B1 0x08000000 : INSN1
3066 B2 PC -> 0x08000001 : INSN2
3070 We can't apply the same logic as for forward execution, because
3071 we would wrongly adjust the PC to 0x08000000, since there's a
3072 breakpoint at PC - 1. We'd then report a hit on B1, although
3073 INSN1 hadn't been de-executed yet. Doing nothing is the correct
3075 if (execution_direction == EXEC_REVERSE)
3078 /* If this target does not decrement the PC after breakpoints, then
3079 we have nothing to do. */
3080 regcache = get_thread_regcache (ecs->ptid);
3081 gdbarch = get_regcache_arch (regcache);
3083 decr_pc = target_decr_pc_after_break (gdbarch);
3087 aspace = get_regcache_aspace (regcache);
3089 /* Find the location where (if we've hit a breakpoint) the
3090 breakpoint would be. */
3091 breakpoint_pc = regcache_read_pc (regcache) - decr_pc;
3093 /* Check whether there actually is a software breakpoint inserted at
3096 If in non-stop mode, a race condition is possible where we've
3097 removed a breakpoint, but stop events for that breakpoint were
3098 already queued and arrive later. To suppress those spurious
3099 SIGTRAPs, we keep a list of such breakpoint locations for a bit,
3100 and retire them after a number of stop events are reported. */
3101 if (software_breakpoint_inserted_here_p (aspace, breakpoint_pc)
3102 || (non_stop && moribund_breakpoint_here_p (aspace, breakpoint_pc)))
3104 struct cleanup *old_cleanups = make_cleanup (null_cleanup, NULL);
3106 if (record_full_is_used ())
3107 record_full_gdb_operation_disable_set ();
3109 /* When using hardware single-step, a SIGTRAP is reported for both
3110 a completed single-step and a software breakpoint. Need to
3111 differentiate between the two, as the latter needs adjusting
3112 but the former does not.
3114 The SIGTRAP can be due to a completed hardware single-step only if
3115 - we didn't insert software single-step breakpoints
3116 - the thread to be examined is still the current thread
3117 - this thread is currently being stepped
3119 If any of these events did not occur, we must have stopped due
3120 to hitting a software breakpoint, and have to back up to the
3123 As a special case, we could have hardware single-stepped a
3124 software breakpoint. In this case (prev_pc == breakpoint_pc),
3125 we also need to back up to the breakpoint address. */
3127 if (singlestep_breakpoints_inserted_p
3128 || !ptid_equal (ecs->ptid, inferior_ptid)
3129 || !currently_stepping (ecs->event_thread)
3130 || ecs->event_thread->prev_pc == breakpoint_pc)
3131 regcache_write_pc (regcache, breakpoint_pc);
3133 do_cleanups (old_cleanups);
3138 init_infwait_state (void)
3140 waiton_ptid = pid_to_ptid (-1);
3141 infwait_state = infwait_normal_state;
3145 stepped_in_from (struct frame_info *frame, struct frame_id step_frame_id)
3147 for (frame = get_prev_frame (frame);
3149 frame = get_prev_frame (frame))
3151 if (frame_id_eq (get_frame_id (frame), step_frame_id))
3153 if (get_frame_type (frame) != INLINE_FRAME)
3160 /* Auxiliary function that handles syscall entry/return events.
3161 It returns 1 if the inferior should keep going (and GDB
3162 should ignore the event), or 0 if the event deserves to be
3166 handle_syscall_event (struct execution_control_state *ecs)
3168 struct regcache *regcache;
3171 if (!ptid_equal (ecs->ptid, inferior_ptid))
3172 context_switch (ecs->ptid);
3174 regcache = get_thread_regcache (ecs->ptid);
3175 syscall_number = ecs->ws.value.syscall_number;
3176 stop_pc = regcache_read_pc (regcache);
3178 if (catch_syscall_enabled () > 0
3179 && catching_syscall_number (syscall_number) > 0)
3182 fprintf_unfiltered (gdb_stdlog, "infrun: syscall number = '%d'\n",
3185 ecs->event_thread->control.stop_bpstat
3186 = bpstat_stop_status (get_regcache_aspace (regcache),
3187 stop_pc, ecs->ptid, &ecs->ws);
3189 if (bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
3191 /* Catchpoint hit. */
3196 /* If no catchpoint triggered for this, then keep going. */
3201 /* Lazily fill in the execution_control_state's stop_func_* fields. */
3204 fill_in_stop_func (struct gdbarch *gdbarch,
3205 struct execution_control_state *ecs)
3207 if (!ecs->stop_func_filled_in)
3209 /* Don't care about return value; stop_func_start and stop_func_name
3210 will both be 0 if it doesn't work. */
3211 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
3212 &ecs->stop_func_start, &ecs->stop_func_end);
3213 ecs->stop_func_start
3214 += gdbarch_deprecated_function_start_offset (gdbarch);
3216 if (gdbarch_skip_entrypoint_p (gdbarch))
3217 ecs->stop_func_start = gdbarch_skip_entrypoint (gdbarch,
3218 ecs->stop_func_start);
3220 ecs->stop_func_filled_in = 1;
3225 /* Return the STOP_SOON field of the inferior pointed at by PTID. */
3227 static enum stop_kind
3228 get_inferior_stop_soon (ptid_t ptid)
3230 struct inferior *inf = find_inferior_pid (ptid_get_pid (ptid));
3232 gdb_assert (inf != NULL);
3233 return inf->control.stop_soon;
3236 /* Given an execution control state that has been freshly filled in by
3237 an event from the inferior, figure out what it means and take
3240 The alternatives are:
3242 1) stop_stepping and return; to really stop and return to the
3245 2) keep_going and return; to wait for the next event (set
3246 ecs->event_thread->stepping_over_breakpoint to 1 to single step
3250 handle_inferior_event (struct execution_control_state *ecs)
3252 enum stop_kind stop_soon;
3254 if (ecs->ws.kind == TARGET_WAITKIND_IGNORE)
3256 /* We had an event in the inferior, but we are not interested in
3257 handling it at this level. The lower layers have already
3258 done what needs to be done, if anything.
3260 One of the possible circumstances for this is when the
3261 inferior produces output for the console. The inferior has
3262 not stopped, and we are ignoring the event. Another possible
3263 circumstance is any event which the lower level knows will be
3264 reported multiple times without an intervening resume. */
3266 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_IGNORE\n");
3267 prepare_to_wait (ecs);
3271 if (ecs->ws.kind == TARGET_WAITKIND_NO_RESUMED
3272 && target_can_async_p () && !sync_execution)
3274 /* There were no unwaited-for children left in the target, but,
3275 we're not synchronously waiting for events either. Just
3276 ignore. Otherwise, if we were running a synchronous
3277 execution command, we need to cancel it and give the user
3278 back the terminal. */
3280 fprintf_unfiltered (gdb_stdlog,
3281 "infrun: TARGET_WAITKIND_NO_RESUMED (ignoring)\n");
3282 prepare_to_wait (ecs);
3286 /* Cache the last pid/waitstatus. */
3287 target_last_wait_ptid = ecs->ptid;
3288 target_last_waitstatus = ecs->ws;
3290 /* Always clear state belonging to the previous time we stopped. */
3291 stop_stack_dummy = STOP_NONE;
3293 if (ecs->ws.kind == TARGET_WAITKIND_NO_RESUMED)
3295 /* No unwaited-for children left. IOW, all resumed children
3298 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_NO_RESUMED\n");
3300 stop_print_frame = 0;
3301 stop_stepping (ecs);
3305 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
3306 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED)
3308 ecs->event_thread = find_thread_ptid (ecs->ptid);
3309 /* If it's a new thread, add it to the thread database. */
3310 if (ecs->event_thread == NULL)
3311 ecs->event_thread = add_thread (ecs->ptid);
3313 /* Disable range stepping. If the next step request could use a
3314 range, this will be end up re-enabled then. */
3315 ecs->event_thread->control.may_range_step = 0;
3318 /* Dependent on valid ECS->EVENT_THREAD. */
3319 adjust_pc_after_break (ecs);
3321 /* Dependent on the current PC value modified by adjust_pc_after_break. */
3322 reinit_frame_cache ();
3324 breakpoint_retire_moribund ();
3326 /* First, distinguish signals caused by the debugger from signals
3327 that have to do with the program's own actions. Note that
3328 breakpoint insns may cause SIGTRAP or SIGILL or SIGEMT, depending
3329 on the operating system version. Here we detect when a SIGILL or
3330 SIGEMT is really a breakpoint and change it to SIGTRAP. We do
3331 something similar for SIGSEGV, since a SIGSEGV will be generated
3332 when we're trying to execute a breakpoint instruction on a
3333 non-executable stack. This happens for call dummy breakpoints
3334 for architectures like SPARC that place call dummies on the
3336 if (ecs->ws.kind == TARGET_WAITKIND_STOPPED
3337 && (ecs->ws.value.sig == GDB_SIGNAL_ILL
3338 || ecs->ws.value.sig == GDB_SIGNAL_SEGV
3339 || ecs->ws.value.sig == GDB_SIGNAL_EMT))
3341 struct regcache *regcache = get_thread_regcache (ecs->ptid);
3343 if (breakpoint_inserted_here_p (get_regcache_aspace (regcache),
3344 regcache_read_pc (regcache)))
3347 fprintf_unfiltered (gdb_stdlog,
3348 "infrun: Treating signal as SIGTRAP\n");
3349 ecs->ws.value.sig = GDB_SIGNAL_TRAP;
3353 /* Mark the non-executing threads accordingly. In all-stop, all
3354 threads of all processes are stopped when we get any event
3355 reported. In non-stop mode, only the event thread stops. If
3356 we're handling a process exit in non-stop mode, there's nothing
3357 to do, as threads of the dead process are gone, and threads of
3358 any other process were left running. */
3360 set_executing (minus_one_ptid, 0);
3361 else if (ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
3362 && ecs->ws.kind != TARGET_WAITKIND_EXITED)
3363 set_executing (ecs->ptid, 0);
3365 switch (infwait_state)
3367 case infwait_thread_hop_state:
3369 fprintf_unfiltered (gdb_stdlog, "infrun: infwait_thread_hop_state\n");
3372 case infwait_normal_state:
3374 fprintf_unfiltered (gdb_stdlog, "infrun: infwait_normal_state\n");
3377 case infwait_step_watch_state:
3379 fprintf_unfiltered (gdb_stdlog,
3380 "infrun: infwait_step_watch_state\n");
3382 ecs->stepped_after_stopped_by_watchpoint = 1;
3385 case infwait_nonstep_watch_state:
3387 fprintf_unfiltered (gdb_stdlog,
3388 "infrun: infwait_nonstep_watch_state\n");
3389 insert_breakpoints ();
3391 /* FIXME-maybe: is this cleaner than setting a flag? Does it
3392 handle things like signals arriving and other things happening
3393 in combination correctly? */
3394 ecs->stepped_after_stopped_by_watchpoint = 1;
3398 internal_error (__FILE__, __LINE__, _("bad switch"));
3401 infwait_state = infwait_normal_state;
3402 waiton_ptid = pid_to_ptid (-1);
3404 switch (ecs->ws.kind)
3406 case TARGET_WAITKIND_LOADED:
3408 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_LOADED\n");
3409 if (!ptid_equal (ecs->ptid, inferior_ptid))
3410 context_switch (ecs->ptid);
3411 /* Ignore gracefully during startup of the inferior, as it might
3412 be the shell which has just loaded some objects, otherwise
3413 add the symbols for the newly loaded objects. Also ignore at
3414 the beginning of an attach or remote session; we will query
3415 the full list of libraries once the connection is
3418 stop_soon = get_inferior_stop_soon (ecs->ptid);
3419 if (stop_soon == NO_STOP_QUIETLY)
3421 struct regcache *regcache;
3423 regcache = get_thread_regcache (ecs->ptid);
3425 handle_solib_event ();
3427 ecs->event_thread->control.stop_bpstat
3428 = bpstat_stop_status (get_regcache_aspace (regcache),
3429 stop_pc, ecs->ptid, &ecs->ws);
3431 if (bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
3433 /* A catchpoint triggered. */
3434 process_event_stop_test (ecs);
3438 /* If requested, stop when the dynamic linker notifies
3439 gdb of events. This allows the user to get control
3440 and place breakpoints in initializer routines for
3441 dynamically loaded objects (among other things). */
3442 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3443 if (stop_on_solib_events)
3445 /* Make sure we print "Stopped due to solib-event" in
3447 stop_print_frame = 1;
3449 stop_stepping (ecs);
3454 /* If we are skipping through a shell, or through shared library
3455 loading that we aren't interested in, resume the program. If
3456 we're running the program normally, also resume. */
3457 if (stop_soon == STOP_QUIETLY || stop_soon == NO_STOP_QUIETLY)
3459 /* Loading of shared libraries might have changed breakpoint
3460 addresses. Make sure new breakpoints are inserted. */
3461 if (stop_soon == NO_STOP_QUIETLY
3462 && !breakpoints_always_inserted_mode ())
3463 insert_breakpoints ();
3464 resume (0, GDB_SIGNAL_0);
3465 prepare_to_wait (ecs);
3469 /* But stop if we're attaching or setting up a remote
3471 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
3472 || stop_soon == STOP_QUIETLY_REMOTE)
3475 fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
3476 stop_stepping (ecs);
3480 internal_error (__FILE__, __LINE__,
3481 _("unhandled stop_soon: %d"), (int) stop_soon);
3483 case TARGET_WAITKIND_SPURIOUS:
3485 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SPURIOUS\n");
3486 if (!ptid_equal (ecs->ptid, inferior_ptid))
3487 context_switch (ecs->ptid);
3488 resume (0, GDB_SIGNAL_0);
3489 prepare_to_wait (ecs);
3492 case TARGET_WAITKIND_EXITED:
3493 case TARGET_WAITKIND_SIGNALLED:
3496 if (ecs->ws.kind == TARGET_WAITKIND_EXITED)
3497 fprintf_unfiltered (gdb_stdlog,
3498 "infrun: TARGET_WAITKIND_EXITED\n");
3500 fprintf_unfiltered (gdb_stdlog,
3501 "infrun: TARGET_WAITKIND_SIGNALLED\n");
3504 inferior_ptid = ecs->ptid;
3505 set_current_inferior (find_inferior_pid (ptid_get_pid (ecs->ptid)));
3506 set_current_program_space (current_inferior ()->pspace);
3507 handle_vfork_child_exec_or_exit (0);
3508 target_terminal_ours (); /* Must do this before mourn anyway. */
3510 /* Clearing any previous state of convenience variables. */
3511 clear_exit_convenience_vars ();
3513 if (ecs->ws.kind == TARGET_WAITKIND_EXITED)
3515 /* Record the exit code in the convenience variable $_exitcode, so
3516 that the user can inspect this again later. */
3517 set_internalvar_integer (lookup_internalvar ("_exitcode"),
3518 (LONGEST) ecs->ws.value.integer);
3520 /* Also record this in the inferior itself. */
3521 current_inferior ()->has_exit_code = 1;
3522 current_inferior ()->exit_code = (LONGEST) ecs->ws.value.integer;
3524 print_exited_reason (ecs->ws.value.integer);
3528 struct regcache *regcache = get_thread_regcache (ecs->ptid);
3529 struct gdbarch *gdbarch = get_regcache_arch (regcache);
3531 if (gdbarch_gdb_signal_to_target_p (gdbarch))
3533 /* Set the value of the internal variable $_exitsignal,
3534 which holds the signal uncaught by the inferior. */
3535 set_internalvar_integer (lookup_internalvar ("_exitsignal"),
3536 gdbarch_gdb_signal_to_target (gdbarch,
3537 ecs->ws.value.sig));
3541 /* We don't have access to the target's method used for
3542 converting between signal numbers (GDB's internal
3543 representation <-> target's representation).
3544 Therefore, we cannot do a good job at displaying this
3545 information to the user. It's better to just warn
3546 her about it (if infrun debugging is enabled), and
3549 fprintf_filtered (gdb_stdlog, _("\
3550 Cannot fill $_exitsignal with the correct signal number.\n"));
3553 print_signal_exited_reason (ecs->ws.value.sig);
3556 gdb_flush (gdb_stdout);
3557 target_mourn_inferior ();
3558 singlestep_breakpoints_inserted_p = 0;
3559 cancel_single_step_breakpoints ();
3560 stop_print_frame = 0;
3561 stop_stepping (ecs);
3564 /* The following are the only cases in which we keep going;
3565 the above cases end in a continue or goto. */
3566 case TARGET_WAITKIND_FORKED:
3567 case TARGET_WAITKIND_VFORKED:
3570 if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
3571 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_FORKED\n");
3573 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_VFORKED\n");
3576 /* Check whether the inferior is displaced stepping. */
3578 struct regcache *regcache = get_thread_regcache (ecs->ptid);
3579 struct gdbarch *gdbarch = get_regcache_arch (regcache);
3580 struct displaced_step_inferior_state *displaced
3581 = get_displaced_stepping_state (ptid_get_pid (ecs->ptid));
3583 /* If checking displaced stepping is supported, and thread
3584 ecs->ptid is displaced stepping. */
3585 if (displaced && ptid_equal (displaced->step_ptid, ecs->ptid))
3587 struct inferior *parent_inf
3588 = find_inferior_pid (ptid_get_pid (ecs->ptid));
3589 struct regcache *child_regcache;
3590 CORE_ADDR parent_pc;
3592 /* GDB has got TARGET_WAITKIND_FORKED or TARGET_WAITKIND_VFORKED,
3593 indicating that the displaced stepping of syscall instruction
3594 has been done. Perform cleanup for parent process here. Note
3595 that this operation also cleans up the child process for vfork,
3596 because their pages are shared. */
3597 displaced_step_fixup (ecs->ptid, GDB_SIGNAL_TRAP);
3599 if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
3601 /* Restore scratch pad for child process. */
3602 displaced_step_restore (displaced, ecs->ws.value.related_pid);
3605 /* Since the vfork/fork syscall instruction was executed in the scratchpad,
3606 the child's PC is also within the scratchpad. Set the child's PC
3607 to the parent's PC value, which has already been fixed up.
3608 FIXME: we use the parent's aspace here, although we're touching
3609 the child, because the child hasn't been added to the inferior
3610 list yet at this point. */
3613 = get_thread_arch_aspace_regcache (ecs->ws.value.related_pid,
3615 parent_inf->aspace);
3616 /* Read PC value of parent process. */
3617 parent_pc = regcache_read_pc (regcache);
3619 if (debug_displaced)
3620 fprintf_unfiltered (gdb_stdlog,
3621 "displaced: write child pc from %s to %s\n",
3623 regcache_read_pc (child_regcache)),
3624 paddress (gdbarch, parent_pc));
3626 regcache_write_pc (child_regcache, parent_pc);
3630 if (!ptid_equal (ecs->ptid, inferior_ptid))
3631 context_switch (ecs->ptid);
3633 /* Immediately detach breakpoints from the child before there's
3634 any chance of letting the user delete breakpoints from the
3635 breakpoint lists. If we don't do this early, it's easy to
3636 leave left over traps in the child, vis: "break foo; catch
3637 fork; c; <fork>; del; c; <child calls foo>". We only follow
3638 the fork on the last `continue', and by that time the
3639 breakpoint at "foo" is long gone from the breakpoint table.
3640 If we vforked, then we don't need to unpatch here, since both
3641 parent and child are sharing the same memory pages; we'll
3642 need to unpatch at follow/detach time instead to be certain
3643 that new breakpoints added between catchpoint hit time and
3644 vfork follow are detached. */
3645 if (ecs->ws.kind != TARGET_WAITKIND_VFORKED)
3647 /* This won't actually modify the breakpoint list, but will
3648 physically remove the breakpoints from the child. */
3649 detach_breakpoints (ecs->ws.value.related_pid);
3652 if (singlestep_breakpoints_inserted_p)
3654 /* Pull the single step breakpoints out of the target. */
3655 remove_single_step_breakpoints ();
3656 singlestep_breakpoints_inserted_p = 0;
3659 /* In case the event is caught by a catchpoint, remember that
3660 the event is to be followed at the next resume of the thread,
3661 and not immediately. */
3662 ecs->event_thread->pending_follow = ecs->ws;
3664 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3666 ecs->event_thread->control.stop_bpstat
3667 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
3668 stop_pc, ecs->ptid, &ecs->ws);
3670 /* If no catchpoint triggered for this, then keep going. Note
3671 that we're interested in knowing the bpstat actually causes a
3672 stop, not just if it may explain the signal. Software
3673 watchpoints, for example, always appear in the bpstat. */
3674 if (!bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
3680 = (follow_fork_mode_string == follow_fork_mode_child);
3682 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3684 should_resume = follow_fork ();
3687 child = ecs->ws.value.related_pid;
3689 /* In non-stop mode, also resume the other branch. */
3690 if (non_stop && !detach_fork)
3693 switch_to_thread (parent);
3695 switch_to_thread (child);
3697 ecs->event_thread = inferior_thread ();
3698 ecs->ptid = inferior_ptid;
3703 switch_to_thread (child);
3705 switch_to_thread (parent);
3707 ecs->event_thread = inferior_thread ();
3708 ecs->ptid = inferior_ptid;
3713 stop_stepping (ecs);
3716 process_event_stop_test (ecs);
3719 case TARGET_WAITKIND_VFORK_DONE:
3720 /* Done with the shared memory region. Re-insert breakpoints in
3721 the parent, and keep going. */
3724 fprintf_unfiltered (gdb_stdlog,
3725 "infrun: TARGET_WAITKIND_VFORK_DONE\n");
3727 if (!ptid_equal (ecs->ptid, inferior_ptid))
3728 context_switch (ecs->ptid);
3730 current_inferior ()->waiting_for_vfork_done = 0;
3731 current_inferior ()->pspace->breakpoints_not_allowed = 0;
3732 /* This also takes care of reinserting breakpoints in the
3733 previously locked inferior. */
3737 case TARGET_WAITKIND_EXECD:
3739 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXECD\n");
3741 if (!ptid_equal (ecs->ptid, inferior_ptid))
3742 context_switch (ecs->ptid);
3744 singlestep_breakpoints_inserted_p = 0;
3745 cancel_single_step_breakpoints ();
3747 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3749 /* Do whatever is necessary to the parent branch of the vfork. */
3750 handle_vfork_child_exec_or_exit (1);
3752 /* This causes the eventpoints and symbol table to be reset.
3753 Must do this now, before trying to determine whether to
3755 follow_exec (inferior_ptid, ecs->ws.value.execd_pathname);
3757 ecs->event_thread->control.stop_bpstat
3758 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
3759 stop_pc, ecs->ptid, &ecs->ws);
3761 /* Note that this may be referenced from inside
3762 bpstat_stop_status above, through inferior_has_execd. */
3763 xfree (ecs->ws.value.execd_pathname);
3764 ecs->ws.value.execd_pathname = NULL;
3766 /* If no catchpoint triggered for this, then keep going. */
3767 if (!bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
3769 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3773 process_event_stop_test (ecs);
3776 /* Be careful not to try to gather much state about a thread
3777 that's in a syscall. It's frequently a losing proposition. */
3778 case TARGET_WAITKIND_SYSCALL_ENTRY:
3780 fprintf_unfiltered (gdb_stdlog,
3781 "infrun: TARGET_WAITKIND_SYSCALL_ENTRY\n");
3782 /* Getting the current syscall number. */
3783 if (handle_syscall_event (ecs) == 0)
3784 process_event_stop_test (ecs);
3787 /* Before examining the threads further, step this thread to
3788 get it entirely out of the syscall. (We get notice of the
3789 event when the thread is just on the verge of exiting a
3790 syscall. Stepping one instruction seems to get it back
3792 case TARGET_WAITKIND_SYSCALL_RETURN:
3794 fprintf_unfiltered (gdb_stdlog,
3795 "infrun: TARGET_WAITKIND_SYSCALL_RETURN\n");
3796 if (handle_syscall_event (ecs) == 0)
3797 process_event_stop_test (ecs);
3800 case TARGET_WAITKIND_STOPPED:
3802 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_STOPPED\n");
3803 ecs->event_thread->suspend.stop_signal = ecs->ws.value.sig;
3804 handle_signal_stop (ecs);
3807 case TARGET_WAITKIND_NO_HISTORY:
3809 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_NO_HISTORY\n");
3810 /* Reverse execution: target ran out of history info. */
3812 /* Pull the single step breakpoints out of the target. */
3813 if (singlestep_breakpoints_inserted_p)
3815 if (!ptid_equal (ecs->ptid, inferior_ptid))
3816 context_switch (ecs->ptid);
3817 remove_single_step_breakpoints ();
3818 singlestep_breakpoints_inserted_p = 0;
3820 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3821 print_no_history_reason ();
3822 stop_stepping (ecs);
3827 /* Come here when the program has stopped with a signal. */
3830 handle_signal_stop (struct execution_control_state *ecs)
3832 struct frame_info *frame;
3833 struct gdbarch *gdbarch;
3834 int stopped_by_watchpoint;
3835 enum stop_kind stop_soon;
3838 gdb_assert (ecs->ws.kind == TARGET_WAITKIND_STOPPED);
3840 /* Do we need to clean up the state of a thread that has
3841 completed a displaced single-step? (Doing so usually affects
3842 the PC, so do it here, before we set stop_pc.) */
3843 displaced_step_fixup (ecs->ptid,
3844 ecs->event_thread->suspend.stop_signal);
3846 /* If we either finished a single-step or hit a breakpoint, but
3847 the user wanted this thread to be stopped, pretend we got a
3848 SIG0 (generic unsignaled stop). */
3849 if (ecs->event_thread->stop_requested
3850 && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
3851 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3853 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3857 struct regcache *regcache = get_thread_regcache (ecs->ptid);
3858 struct gdbarch *gdbarch = get_regcache_arch (regcache);
3859 struct cleanup *old_chain = save_inferior_ptid ();
3861 inferior_ptid = ecs->ptid;
3863 fprintf_unfiltered (gdb_stdlog, "infrun: stop_pc = %s\n",
3864 paddress (gdbarch, stop_pc));
3865 if (target_stopped_by_watchpoint ())
3869 fprintf_unfiltered (gdb_stdlog, "infrun: stopped by watchpoint\n");
3871 if (target_stopped_data_address (¤t_target, &addr))
3872 fprintf_unfiltered (gdb_stdlog,
3873 "infrun: stopped data address = %s\n",
3874 paddress (gdbarch, addr));
3876 fprintf_unfiltered (gdb_stdlog,
3877 "infrun: (no data address available)\n");
3880 do_cleanups (old_chain);
3883 /* This is originated from start_remote(), start_inferior() and
3884 shared libraries hook functions. */
3885 stop_soon = get_inferior_stop_soon (ecs->ptid);
3886 if (stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_REMOTE)
3888 if (!ptid_equal (ecs->ptid, inferior_ptid))
3889 context_switch (ecs->ptid);
3891 fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
3892 stop_print_frame = 1;
3893 stop_stepping (ecs);
3897 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
3900 if (!ptid_equal (ecs->ptid, inferior_ptid))
3901 context_switch (ecs->ptid);
3903 fprintf_unfiltered (gdb_stdlog, "infrun: stopped\n");
3904 stop_print_frame = 0;
3905 stop_stepping (ecs);
3909 /* This originates from attach_command(). We need to overwrite
3910 the stop_signal here, because some kernels don't ignore a
3911 SIGSTOP in a subsequent ptrace(PTRACE_CONT,SIGSTOP) call.
3912 See more comments in inferior.h. On the other hand, if we
3913 get a non-SIGSTOP, report it to the user - assume the backend
3914 will handle the SIGSTOP if it should show up later.
3916 Also consider that the attach is complete when we see a
3917 SIGTRAP. Some systems (e.g. Windows), and stubs supporting
3918 target extended-remote report it instead of a SIGSTOP
3919 (e.g. gdbserver). We already rely on SIGTRAP being our
3920 signal, so this is no exception.
3922 Also consider that the attach is complete when we see a
3923 GDB_SIGNAL_0. In non-stop mode, GDB will explicitly tell
3924 the target to stop all threads of the inferior, in case the
3925 low level attach operation doesn't stop them implicitly. If
3926 they weren't stopped implicitly, then the stub will report a
3927 GDB_SIGNAL_0, meaning: stopped for no particular reason
3928 other than GDB's request. */
3929 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
3930 && (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_STOP
3931 || ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
3932 || ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_0))
3934 stop_print_frame = 1;
3935 stop_stepping (ecs);
3936 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3940 if (stepping_past_singlestep_breakpoint)
3942 gdb_assert (singlestep_breakpoints_inserted_p);
3943 gdb_assert (ptid_equal (singlestep_ptid, ecs->ptid));
3944 gdb_assert (!ptid_equal (singlestep_ptid, saved_singlestep_ptid));
3946 stepping_past_singlestep_breakpoint = 0;
3948 /* We've either finished single-stepping past the single-step
3949 breakpoint, or stopped for some other reason. It would be nice if
3950 we could tell, but we can't reliably. */
3951 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
3954 fprintf_unfiltered (gdb_stdlog,
3955 "infrun: stepping_past_"
3956 "singlestep_breakpoint\n");
3957 /* Pull the single step breakpoints out of the target. */
3958 if (!ptid_equal (ecs->ptid, inferior_ptid))
3959 context_switch (ecs->ptid);
3960 remove_single_step_breakpoints ();
3961 singlestep_breakpoints_inserted_p = 0;
3963 ecs->event_thread->control.trap_expected = 0;
3965 context_switch (saved_singlestep_ptid);
3966 if (deprecated_context_hook)
3967 deprecated_context_hook (pid_to_thread_id (saved_singlestep_ptid));
3969 resume (1, GDB_SIGNAL_0);
3970 prepare_to_wait (ecs);
3975 /* See if a thread hit a thread-specific breakpoint that was meant for
3976 another thread. If so, then step that thread past the breakpoint,
3979 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
3981 int thread_hop_needed = 0;
3982 struct address_space *aspace =
3983 get_regcache_aspace (get_thread_regcache (ecs->ptid));
3985 /* Check if a regular breakpoint has been hit before checking
3986 for a potential single step breakpoint. Otherwise, GDB will
3987 not see this breakpoint hit when stepping onto breakpoints. */
3988 if (regular_breakpoint_inserted_here_p (aspace, stop_pc))
3990 if (!breakpoint_thread_match (aspace, stop_pc, ecs->ptid))
3991 thread_hop_needed = 1;
3993 else if (singlestep_breakpoints_inserted_p)
3995 /* We have not context switched yet, so this should be true
3996 no matter which thread hit the singlestep breakpoint. */
3997 gdb_assert (ptid_equal (inferior_ptid, singlestep_ptid));
3999 fprintf_unfiltered (gdb_stdlog, "infrun: software single step "
4001 target_pid_to_str (ecs->ptid));
4003 /* The call to in_thread_list is necessary because PTIDs sometimes
4004 change when we go from single-threaded to multi-threaded. If
4005 the singlestep_ptid is still in the list, assume that it is
4006 really different from ecs->ptid. */
4007 if (!ptid_equal (singlestep_ptid, ecs->ptid)
4008 && in_thread_list (singlestep_ptid))
4010 /* If the PC of the thread we were trying to single-step
4011 has changed, discard this event (which we were going
4012 to ignore anyway), and pretend we saw that thread
4013 trap. This prevents us continuously moving the
4014 single-step breakpoint forward, one instruction at a
4015 time. If the PC has changed, then the thread we were
4016 trying to single-step has trapped or been signalled,
4017 but the event has not been reported to GDB yet.
4019 There might be some cases where this loses signal
4020 information, if a signal has arrived at exactly the
4021 same time that the PC changed, but this is the best
4022 we can do with the information available. Perhaps we
4023 should arrange to report all events for all threads
4024 when they stop, or to re-poll the remote looking for
4025 this particular thread (i.e. temporarily enable
4028 CORE_ADDR new_singlestep_pc
4029 = regcache_read_pc (get_thread_regcache (singlestep_ptid));
4031 if (new_singlestep_pc != singlestep_pc)
4033 enum gdb_signal stop_signal;
4036 fprintf_unfiltered (gdb_stdlog, "infrun: unexpected thread,"
4037 " but expected thread advanced also\n");
4039 /* The current context still belongs to
4040 singlestep_ptid. Don't swap here, since that's
4041 the context we want to use. Just fudge our
4042 state and continue. */
4043 stop_signal = ecs->event_thread->suspend.stop_signal;
4044 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
4045 ecs->ptid = singlestep_ptid;
4046 ecs->event_thread = find_thread_ptid (ecs->ptid);
4047 ecs->event_thread->suspend.stop_signal = stop_signal;
4048 stop_pc = new_singlestep_pc;
4053 fprintf_unfiltered (gdb_stdlog,
4054 "infrun: unexpected thread\n");
4056 thread_hop_needed = 1;
4057 stepping_past_singlestep_breakpoint = 1;
4058 saved_singlestep_ptid = singlestep_ptid;
4063 if (thread_hop_needed)
4066 fprintf_unfiltered (gdb_stdlog, "infrun: thread_hop_needed\n");
4068 /* Switch context before touching inferior memory, the
4069 previous thread may have exited. */
4070 if (!ptid_equal (inferior_ptid, ecs->ptid))
4071 context_switch (ecs->ptid);
4073 /* Saw a breakpoint, but it was hit by the wrong thread.
4076 if (singlestep_breakpoints_inserted_p)
4078 /* Pull the single step breakpoints out of the target. */
4079 remove_single_step_breakpoints ();
4080 singlestep_breakpoints_inserted_p = 0;
4085 /* Only need to require the next event from this thread
4086 in all-stop mode. */
4087 waiton_ptid = ecs->ptid;
4088 infwait_state = infwait_thread_hop_state;
4091 ecs->event_thread->stepping_over_breakpoint = 1;
4097 /* See if something interesting happened to the non-current thread. If
4098 so, then switch to that thread. */
4099 if (!ptid_equal (ecs->ptid, inferior_ptid))
4102 fprintf_unfiltered (gdb_stdlog, "infrun: context switch\n");
4104 context_switch (ecs->ptid);
4106 if (deprecated_context_hook)
4107 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
4110 /* At this point, get hold of the now-current thread's frame. */
4111 frame = get_current_frame ();
4112 gdbarch = get_frame_arch (frame);
4114 if (singlestep_breakpoints_inserted_p)
4116 /* Pull the single step breakpoints out of the target. */
4117 remove_single_step_breakpoints ();
4118 singlestep_breakpoints_inserted_p = 0;
4121 if (ecs->stepped_after_stopped_by_watchpoint)
4122 stopped_by_watchpoint = 0;
4124 stopped_by_watchpoint = watchpoints_triggered (&ecs->ws);
4126 /* If necessary, step over this watchpoint. We'll be back to display
4128 if (stopped_by_watchpoint
4129 && (target_have_steppable_watchpoint
4130 || gdbarch_have_nonsteppable_watchpoint (gdbarch)))
4132 /* At this point, we are stopped at an instruction which has
4133 attempted to write to a piece of memory under control of
4134 a watchpoint. The instruction hasn't actually executed
4135 yet. If we were to evaluate the watchpoint expression
4136 now, we would get the old value, and therefore no change
4137 would seem to have occurred.
4139 In order to make watchpoints work `right', we really need
4140 to complete the memory write, and then evaluate the
4141 watchpoint expression. We do this by single-stepping the
4144 It may not be necessary to disable the watchpoint to stop over
4145 it. For example, the PA can (with some kernel cooperation)
4146 single step over a watchpoint without disabling the watchpoint.
4148 It is far more common to need to disable a watchpoint to step
4149 the inferior over it. If we have non-steppable watchpoints,
4150 we must disable the current watchpoint; it's simplest to
4151 disable all watchpoints and breakpoints. */
4154 if (!target_have_steppable_watchpoint)
4156 remove_breakpoints ();
4157 /* See comment in resume why we need to stop bypassing signals
4158 while breakpoints have been removed. */
4159 target_pass_signals (0, NULL);
4162 hw_step = maybe_software_singlestep (gdbarch, stop_pc);
4163 target_resume (ecs->ptid, hw_step, GDB_SIGNAL_0);
4164 waiton_ptid = ecs->ptid;
4165 if (target_have_steppable_watchpoint)
4166 infwait_state = infwait_step_watch_state;
4168 infwait_state = infwait_nonstep_watch_state;
4169 prepare_to_wait (ecs);
4173 ecs->event_thread->stepping_over_breakpoint = 0;
4174 bpstat_clear (&ecs->event_thread->control.stop_bpstat);
4175 ecs->event_thread->control.stop_step = 0;
4176 stop_print_frame = 1;
4177 stopped_by_random_signal = 0;
4179 /* Hide inlined functions starting here, unless we just performed stepi or
4180 nexti. After stepi and nexti, always show the innermost frame (not any
4181 inline function call sites). */
4182 if (ecs->event_thread->control.step_range_end != 1)
4184 struct address_space *aspace =
4185 get_regcache_aspace (get_thread_regcache (ecs->ptid));
4187 /* skip_inline_frames is expensive, so we avoid it if we can
4188 determine that the address is one where functions cannot have
4189 been inlined. This improves performance with inferiors that
4190 load a lot of shared libraries, because the solib event
4191 breakpoint is defined as the address of a function (i.e. not
4192 inline). Note that we have to check the previous PC as well
4193 as the current one to catch cases when we have just
4194 single-stepped off a breakpoint prior to reinstating it.
4195 Note that we're assuming that the code we single-step to is
4196 not inline, but that's not definitive: there's nothing
4197 preventing the event breakpoint function from containing
4198 inlined code, and the single-step ending up there. If the
4199 user had set a breakpoint on that inlined code, the missing
4200 skip_inline_frames call would break things. Fortunately
4201 that's an extremely unlikely scenario. */
4202 if (!pc_at_non_inline_function (aspace, stop_pc, &ecs->ws)
4203 && !(ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4204 && ecs->event_thread->control.trap_expected
4205 && pc_at_non_inline_function (aspace,
4206 ecs->event_thread->prev_pc,
4209 skip_inline_frames (ecs->ptid);
4211 /* Re-fetch current thread's frame in case that invalidated
4213 frame = get_current_frame ();
4214 gdbarch = get_frame_arch (frame);
4218 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4219 && ecs->event_thread->control.trap_expected
4220 && gdbarch_single_step_through_delay_p (gdbarch)
4221 && currently_stepping (ecs->event_thread))
4223 /* We're trying to step off a breakpoint. Turns out that we're
4224 also on an instruction that needs to be stepped multiple
4225 times before it's been fully executing. E.g., architectures
4226 with a delay slot. It needs to be stepped twice, once for
4227 the instruction and once for the delay slot. */
4228 int step_through_delay
4229 = gdbarch_single_step_through_delay (gdbarch, frame);
4231 if (debug_infrun && step_through_delay)
4232 fprintf_unfiltered (gdb_stdlog, "infrun: step through delay\n");
4233 if (ecs->event_thread->control.step_range_end == 0
4234 && step_through_delay)
4236 /* The user issued a continue when stopped at a breakpoint.
4237 Set up for another trap and get out of here. */
4238 ecs->event_thread->stepping_over_breakpoint = 1;
4242 else if (step_through_delay)
4244 /* The user issued a step when stopped at a breakpoint.
4245 Maybe we should stop, maybe we should not - the delay
4246 slot *might* correspond to a line of source. In any
4247 case, don't decide that here, just set
4248 ecs->stepping_over_breakpoint, making sure we
4249 single-step again before breakpoints are re-inserted. */
4250 ecs->event_thread->stepping_over_breakpoint = 1;
4254 /* See if there is a breakpoint/watchpoint/catchpoint/etc. that
4255 handles this event. */
4256 ecs->event_thread->control.stop_bpstat
4257 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
4258 stop_pc, ecs->ptid, &ecs->ws);
4260 /* Following in case break condition called a
4262 stop_print_frame = 1;
4264 /* This is where we handle "moribund" watchpoints. Unlike
4265 software breakpoints traps, hardware watchpoint traps are
4266 always distinguishable from random traps. If no high-level
4267 watchpoint is associated with the reported stop data address
4268 anymore, then the bpstat does not explain the signal ---
4269 simply make sure to ignore it if `stopped_by_watchpoint' is
4273 && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4274 && !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat,
4276 && stopped_by_watchpoint)
4277 fprintf_unfiltered (gdb_stdlog,
4278 "infrun: no user watchpoint explains "
4279 "watchpoint SIGTRAP, ignoring\n");
4281 /* NOTE: cagney/2003-03-29: These checks for a random signal
4282 at one stage in the past included checks for an inferior
4283 function call's call dummy's return breakpoint. The original
4284 comment, that went with the test, read:
4286 ``End of a stack dummy. Some systems (e.g. Sony news) give
4287 another signal besides SIGTRAP, so check here as well as
4290 If someone ever tries to get call dummys on a
4291 non-executable stack to work (where the target would stop
4292 with something like a SIGSEGV), then those tests might need
4293 to be re-instated. Given, however, that the tests were only
4294 enabled when momentary breakpoints were not being used, I
4295 suspect that it won't be the case.
4297 NOTE: kettenis/2004-02-05: Indeed such checks don't seem to
4298 be necessary for call dummies on a non-executable stack on
4301 /* See if the breakpoints module can explain the signal. */
4303 = !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat,
4304 ecs->event_thread->suspend.stop_signal);
4306 /* If not, perhaps stepping/nexting can. */
4308 random_signal = !(ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4309 && currently_stepping (ecs->event_thread));
4311 /* No? Perhaps we got a moribund watchpoint. */
4313 random_signal = !stopped_by_watchpoint;
4315 /* For the program's own signals, act according to
4316 the signal handling tables. */
4320 /* Signal not for debugging purposes. */
4322 struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
4323 enum gdb_signal stop_signal = ecs->event_thread->suspend.stop_signal;
4326 fprintf_unfiltered (gdb_stdlog, "infrun: random signal (%s)\n",
4327 gdb_signal_to_symbol_string (stop_signal));
4329 stopped_by_random_signal = 1;
4331 if (signal_print[ecs->event_thread->suspend.stop_signal])
4334 target_terminal_ours_for_output ();
4335 print_signal_received_reason
4336 (ecs->event_thread->suspend.stop_signal);
4338 /* Always stop on signals if we're either just gaining control
4339 of the program, or the user explicitly requested this thread
4340 to remain stopped. */
4341 if (stop_soon != NO_STOP_QUIETLY
4342 || ecs->event_thread->stop_requested
4344 && signal_stop_state (ecs->event_thread->suspend.stop_signal)))
4346 stop_stepping (ecs);
4349 /* If not going to stop, give terminal back
4350 if we took it away. */
4352 target_terminal_inferior ();
4354 /* Clear the signal if it should not be passed. */
4355 if (signal_program[ecs->event_thread->suspend.stop_signal] == 0)
4356 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
4358 if (ecs->event_thread->prev_pc == stop_pc
4359 && ecs->event_thread->control.trap_expected
4360 && ecs->event_thread->control.step_resume_breakpoint == NULL)
4362 /* We were just starting a new sequence, attempting to
4363 single-step off of a breakpoint and expecting a SIGTRAP.
4364 Instead this signal arrives. This signal will take us out
4365 of the stepping range so GDB needs to remember to, when
4366 the signal handler returns, resume stepping off that
4368 /* To simplify things, "continue" is forced to use the same
4369 code paths as single-step - set a breakpoint at the
4370 signal return address and then, once hit, step off that
4373 fprintf_unfiltered (gdb_stdlog,
4374 "infrun: signal arrived while stepping over "
4377 insert_hp_step_resume_breakpoint_at_frame (frame);
4378 ecs->event_thread->step_after_step_resume_breakpoint = 1;
4379 /* Reset trap_expected to ensure breakpoints are re-inserted. */
4380 ecs->event_thread->control.trap_expected = 0;
4382 /* If we were nexting/stepping some other thread, switch to
4383 it, so that we don't continue it, losing control. */
4384 if (!switch_back_to_stepped_thread (ecs))
4389 if (ecs->event_thread->control.step_range_end != 0
4390 && ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_0
4391 && pc_in_thread_step_range (stop_pc, ecs->event_thread)
4392 && frame_id_eq (get_stack_frame_id (frame),
4393 ecs->event_thread->control.step_stack_frame_id)
4394 && ecs->event_thread->control.step_resume_breakpoint == NULL)
4396 /* The inferior is about to take a signal that will take it
4397 out of the single step range. Set a breakpoint at the
4398 current PC (which is presumably where the signal handler
4399 will eventually return) and then allow the inferior to
4402 Note that this is only needed for a signal delivered
4403 while in the single-step range. Nested signals aren't a
4404 problem as they eventually all return. */
4406 fprintf_unfiltered (gdb_stdlog,
4407 "infrun: signal may take us out of "
4408 "single-step range\n");
4410 insert_hp_step_resume_breakpoint_at_frame (frame);
4411 /* Reset trap_expected to ensure breakpoints are re-inserted. */
4412 ecs->event_thread->control.trap_expected = 0;
4417 /* Note: step_resume_breakpoint may be non-NULL. This occures
4418 when either there's a nested signal, or when there's a
4419 pending signal enabled just as the signal handler returns
4420 (leaving the inferior at the step-resume-breakpoint without
4421 actually executing it). Either way continue until the
4422 breakpoint is really hit. */
4424 if (!switch_back_to_stepped_thread (ecs))
4427 fprintf_unfiltered (gdb_stdlog,
4428 "infrun: random signal, keep going\n");
4435 process_event_stop_test (ecs);
4438 /* Come here when we've got some debug event / signal we can explain
4439 (IOW, not a random signal), and test whether it should cause a
4440 stop, or whether we should resume the inferior (transparently).
4441 E.g., could be a breakpoint whose condition evaluates false; we
4442 could be still stepping within the line; etc. */
4445 process_event_stop_test (struct execution_control_state *ecs)
4447 struct symtab_and_line stop_pc_sal;
4448 struct frame_info *frame;
4449 struct gdbarch *gdbarch;
4450 CORE_ADDR jmp_buf_pc;
4451 struct bpstat_what what;
4453 /* Handle cases caused by hitting a breakpoint. */
4455 frame = get_current_frame ();
4456 gdbarch = get_frame_arch (frame);
4458 what = bpstat_what (ecs->event_thread->control.stop_bpstat);
4460 if (what.call_dummy)
4462 stop_stack_dummy = what.call_dummy;
4465 /* If we hit an internal event that triggers symbol changes, the
4466 current frame will be invalidated within bpstat_what (e.g., if we
4467 hit an internal solib event). Re-fetch it. */
4468 frame = get_current_frame ();
4469 gdbarch = get_frame_arch (frame);
4471 switch (what.main_action)
4473 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
4474 /* If we hit the breakpoint at longjmp while stepping, we
4475 install a momentary breakpoint at the target of the
4479 fprintf_unfiltered (gdb_stdlog,
4480 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME\n");
4482 ecs->event_thread->stepping_over_breakpoint = 1;
4484 if (what.is_longjmp)
4486 struct value *arg_value;
4488 /* If we set the longjmp breakpoint via a SystemTap probe,
4489 then use it to extract the arguments. The destination PC
4490 is the third argument to the probe. */
4491 arg_value = probe_safe_evaluate_at_pc (frame, 2);
4493 jmp_buf_pc = value_as_address (arg_value);
4494 else if (!gdbarch_get_longjmp_target_p (gdbarch)
4495 || !gdbarch_get_longjmp_target (gdbarch,
4496 frame, &jmp_buf_pc))
4499 fprintf_unfiltered (gdb_stdlog,
4500 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME "
4501 "(!gdbarch_get_longjmp_target)\n");
4506 /* Insert a breakpoint at resume address. */
4507 insert_longjmp_resume_breakpoint (gdbarch, jmp_buf_pc);
4510 check_exception_resume (ecs, frame);
4514 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
4516 struct frame_info *init_frame;
4518 /* There are several cases to consider.
4520 1. The initiating frame no longer exists. In this case we
4521 must stop, because the exception or longjmp has gone too
4524 2. The initiating frame exists, and is the same as the
4525 current frame. We stop, because the exception or longjmp
4528 3. The initiating frame exists and is different from the
4529 current frame. This means the exception or longjmp has
4530 been caught beneath the initiating frame, so keep going.
4532 4. longjmp breakpoint has been placed just to protect
4533 against stale dummy frames and user is not interested in
4534 stopping around longjmps. */
4537 fprintf_unfiltered (gdb_stdlog,
4538 "infrun: BPSTAT_WHAT_CLEAR_LONGJMP_RESUME\n");
4540 gdb_assert (ecs->event_thread->control.exception_resume_breakpoint
4542 delete_exception_resume_breakpoint (ecs->event_thread);
4544 if (what.is_longjmp)
4546 check_longjmp_breakpoint_for_call_dummy (ecs->event_thread->num);
4548 if (!frame_id_p (ecs->event_thread->initiating_frame))
4556 init_frame = frame_find_by_id (ecs->event_thread->initiating_frame);
4560 struct frame_id current_id
4561 = get_frame_id (get_current_frame ());
4562 if (frame_id_eq (current_id,
4563 ecs->event_thread->initiating_frame))
4565 /* Case 2. Fall through. */
4575 /* For Cases 1 and 2, remove the step-resume breakpoint, if it
4577 delete_step_resume_breakpoint (ecs->event_thread);
4579 ecs->event_thread->control.stop_step = 1;
4580 print_end_stepping_range_reason ();
4581 stop_stepping (ecs);
4585 case BPSTAT_WHAT_SINGLE:
4587 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_SINGLE\n");
4588 ecs->event_thread->stepping_over_breakpoint = 1;
4589 /* Still need to check other stuff, at least the case where we
4590 are stepping and step out of the right range. */
4593 case BPSTAT_WHAT_STEP_RESUME:
4595 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STEP_RESUME\n");
4597 delete_step_resume_breakpoint (ecs->event_thread);
4598 if (ecs->event_thread->control.proceed_to_finish
4599 && execution_direction == EXEC_REVERSE)
4601 struct thread_info *tp = ecs->event_thread;
4603 /* We are finishing a function in reverse, and just hit the
4604 step-resume breakpoint at the start address of the
4605 function, and we're almost there -- just need to back up
4606 by one more single-step, which should take us back to the
4608 tp->control.step_range_start = tp->control.step_range_end = 1;
4612 fill_in_stop_func (gdbarch, ecs);
4613 if (stop_pc == ecs->stop_func_start
4614 && execution_direction == EXEC_REVERSE)
4616 /* We are stepping over a function call in reverse, and just
4617 hit the step-resume breakpoint at the start address of
4618 the function. Go back to single-stepping, which should
4619 take us back to the function call. */
4620 ecs->event_thread->stepping_over_breakpoint = 1;
4626 case BPSTAT_WHAT_STOP_NOISY:
4628 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_NOISY\n");
4629 stop_print_frame = 1;
4631 /* We are about to nuke the step_resume_breakpointt via the
4632 cleanup chain, so no need to worry about it here. */
4634 stop_stepping (ecs);
4637 case BPSTAT_WHAT_STOP_SILENT:
4639 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_SILENT\n");
4640 stop_print_frame = 0;
4642 /* We are about to nuke the step_resume_breakpoin via the
4643 cleanup chain, so no need to worry about it here. */
4645 stop_stepping (ecs);
4648 case BPSTAT_WHAT_HP_STEP_RESUME:
4650 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_HP_STEP_RESUME\n");
4652 delete_step_resume_breakpoint (ecs->event_thread);
4653 if (ecs->event_thread->step_after_step_resume_breakpoint)
4655 /* Back when the step-resume breakpoint was inserted, we
4656 were trying to single-step off a breakpoint. Go back to
4658 ecs->event_thread->step_after_step_resume_breakpoint = 0;
4659 ecs->event_thread->stepping_over_breakpoint = 1;
4665 case BPSTAT_WHAT_KEEP_CHECKING:
4669 /* We come here if we hit a breakpoint but should not stop for it.
4670 Possibly we also were stepping and should stop for that. So fall
4671 through and test for stepping. But, if not stepping, do not
4674 /* In all-stop mode, if we're currently stepping but have stopped in
4675 some other thread, we need to switch back to the stepped thread. */
4676 if (switch_back_to_stepped_thread (ecs))
4679 if (ecs->event_thread->control.step_resume_breakpoint)
4682 fprintf_unfiltered (gdb_stdlog,
4683 "infrun: step-resume breakpoint is inserted\n");
4685 /* Having a step-resume breakpoint overrides anything
4686 else having to do with stepping commands until
4687 that breakpoint is reached. */
4692 if (ecs->event_thread->control.step_range_end == 0)
4695 fprintf_unfiltered (gdb_stdlog, "infrun: no stepping, continue\n");
4696 /* Likewise if we aren't even stepping. */
4701 /* Re-fetch current thread's frame in case the code above caused
4702 the frame cache to be re-initialized, making our FRAME variable
4703 a dangling pointer. */
4704 frame = get_current_frame ();
4705 gdbarch = get_frame_arch (frame);
4706 fill_in_stop_func (gdbarch, ecs);
4708 /* If stepping through a line, keep going if still within it.
4710 Note that step_range_end is the address of the first instruction
4711 beyond the step range, and NOT the address of the last instruction
4714 Note also that during reverse execution, we may be stepping
4715 through a function epilogue and therefore must detect when
4716 the current-frame changes in the middle of a line. */
4718 if (pc_in_thread_step_range (stop_pc, ecs->event_thread)
4719 && (execution_direction != EXEC_REVERSE
4720 || frame_id_eq (get_frame_id (frame),
4721 ecs->event_thread->control.step_frame_id)))
4725 (gdb_stdlog, "infrun: stepping inside range [%s-%s]\n",
4726 paddress (gdbarch, ecs->event_thread->control.step_range_start),
4727 paddress (gdbarch, ecs->event_thread->control.step_range_end));
4729 /* Tentatively re-enable range stepping; `resume' disables it if
4730 necessary (e.g., if we're stepping over a breakpoint or we
4731 have software watchpoints). */
4732 ecs->event_thread->control.may_range_step = 1;
4734 /* When stepping backward, stop at beginning of line range
4735 (unless it's the function entry point, in which case
4736 keep going back to the call point). */
4737 if (stop_pc == ecs->event_thread->control.step_range_start
4738 && stop_pc != ecs->stop_func_start
4739 && execution_direction == EXEC_REVERSE)
4741 ecs->event_thread->control.stop_step = 1;
4742 print_end_stepping_range_reason ();
4743 stop_stepping (ecs);
4751 /* We stepped out of the stepping range. */
4753 /* If we are stepping at the source level and entered the runtime
4754 loader dynamic symbol resolution code...
4756 EXEC_FORWARD: we keep on single stepping until we exit the run
4757 time loader code and reach the callee's address.
4759 EXEC_REVERSE: we've already executed the callee (backward), and
4760 the runtime loader code is handled just like any other
4761 undebuggable function call. Now we need only keep stepping
4762 backward through the trampoline code, and that's handled further
4763 down, so there is nothing for us to do here. */
4765 if (execution_direction != EXEC_REVERSE
4766 && ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
4767 && in_solib_dynsym_resolve_code (stop_pc))
4769 CORE_ADDR pc_after_resolver =
4770 gdbarch_skip_solib_resolver (gdbarch, stop_pc);
4773 fprintf_unfiltered (gdb_stdlog,
4774 "infrun: stepped into dynsym resolve code\n");
4776 if (pc_after_resolver)
4778 /* Set up a step-resume breakpoint at the address
4779 indicated by SKIP_SOLIB_RESOLVER. */
4780 struct symtab_and_line sr_sal;
4783 sr_sal.pc = pc_after_resolver;
4784 sr_sal.pspace = get_frame_program_space (frame);
4786 insert_step_resume_breakpoint_at_sal (gdbarch,
4787 sr_sal, null_frame_id);
4794 if (ecs->event_thread->control.step_range_end != 1
4795 && (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
4796 || ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
4797 && get_frame_type (frame) == SIGTRAMP_FRAME)
4800 fprintf_unfiltered (gdb_stdlog,
4801 "infrun: stepped into signal trampoline\n");
4802 /* The inferior, while doing a "step" or "next", has ended up in
4803 a signal trampoline (either by a signal being delivered or by
4804 the signal handler returning). Just single-step until the
4805 inferior leaves the trampoline (either by calling the handler
4811 /* If we're in the return path from a shared library trampoline,
4812 we want to proceed through the trampoline when stepping. */
4813 /* macro/2012-04-25: This needs to come before the subroutine
4814 call check below as on some targets return trampolines look
4815 like subroutine calls (MIPS16 return thunks). */
4816 if (gdbarch_in_solib_return_trampoline (gdbarch,
4817 stop_pc, ecs->stop_func_name)
4818 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
4820 /* Determine where this trampoline returns. */
4821 CORE_ADDR real_stop_pc;
4823 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
4826 fprintf_unfiltered (gdb_stdlog,
4827 "infrun: stepped into solib return tramp\n");
4829 /* Only proceed through if we know where it's going. */
4832 /* And put the step-breakpoint there and go until there. */
4833 struct symtab_and_line sr_sal;
4835 init_sal (&sr_sal); /* initialize to zeroes */
4836 sr_sal.pc = real_stop_pc;
4837 sr_sal.section = find_pc_overlay (sr_sal.pc);
4838 sr_sal.pspace = get_frame_program_space (frame);
4840 /* Do not specify what the fp should be when we stop since
4841 on some machines the prologue is where the new fp value
4843 insert_step_resume_breakpoint_at_sal (gdbarch,
4844 sr_sal, null_frame_id);
4846 /* Restart without fiddling with the step ranges or
4853 /* Check for subroutine calls. The check for the current frame
4854 equalling the step ID is not necessary - the check of the
4855 previous frame's ID is sufficient - but it is a common case and
4856 cheaper than checking the previous frame's ID.
4858 NOTE: frame_id_eq will never report two invalid frame IDs as
4859 being equal, so to get into this block, both the current and
4860 previous frame must have valid frame IDs. */
4861 /* The outer_frame_id check is a heuristic to detect stepping
4862 through startup code. If we step over an instruction which
4863 sets the stack pointer from an invalid value to a valid value,
4864 we may detect that as a subroutine call from the mythical
4865 "outermost" function. This could be fixed by marking
4866 outermost frames as !stack_p,code_p,special_p. Then the
4867 initial outermost frame, before sp was valid, would
4868 have code_addr == &_start. See the comment in frame_id_eq
4870 if (!frame_id_eq (get_stack_frame_id (frame),
4871 ecs->event_thread->control.step_stack_frame_id)
4872 && (frame_id_eq (frame_unwind_caller_id (get_current_frame ()),
4873 ecs->event_thread->control.step_stack_frame_id)
4874 && (!frame_id_eq (ecs->event_thread->control.step_stack_frame_id,
4876 || step_start_function != find_pc_function (stop_pc))))
4878 CORE_ADDR real_stop_pc;
4881 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into subroutine\n");
4883 if ((ecs->event_thread->control.step_over_calls == STEP_OVER_NONE)
4884 || ((ecs->event_thread->control.step_range_end == 1)
4885 && in_prologue (gdbarch, ecs->event_thread->prev_pc,
4886 ecs->stop_func_start)))
4888 /* I presume that step_over_calls is only 0 when we're
4889 supposed to be stepping at the assembly language level
4890 ("stepi"). Just stop. */
4891 /* Also, maybe we just did a "nexti" inside a prolog, so we
4892 thought it was a subroutine call but it was not. Stop as
4894 /* And this works the same backward as frontward. MVS */
4895 ecs->event_thread->control.stop_step = 1;
4896 print_end_stepping_range_reason ();
4897 stop_stepping (ecs);
4901 /* Reverse stepping through solib trampolines. */
4903 if (execution_direction == EXEC_REVERSE
4904 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE
4905 && (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
4906 || (ecs->stop_func_start == 0
4907 && in_solib_dynsym_resolve_code (stop_pc))))
4909 /* Any solib trampoline code can be handled in reverse
4910 by simply continuing to single-step. We have already
4911 executed the solib function (backwards), and a few
4912 steps will take us back through the trampoline to the
4918 if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
4920 /* We're doing a "next".
4922 Normal (forward) execution: set a breakpoint at the
4923 callee's return address (the address at which the caller
4926 Reverse (backward) execution. set the step-resume
4927 breakpoint at the start of the function that we just
4928 stepped into (backwards), and continue to there. When we
4929 get there, we'll need to single-step back to the caller. */
4931 if (execution_direction == EXEC_REVERSE)
4933 /* If we're already at the start of the function, we've either
4934 just stepped backward into a single instruction function,
4935 or stepped back out of a signal handler to the first instruction
4936 of the function. Just keep going, which will single-step back
4938 if (ecs->stop_func_start != stop_pc && ecs->stop_func_start != 0)
4940 struct symtab_and_line sr_sal;
4942 /* Normal function call return (static or dynamic). */
4944 sr_sal.pc = ecs->stop_func_start;
4945 sr_sal.pspace = get_frame_program_space (frame);
4946 insert_step_resume_breakpoint_at_sal (gdbarch,
4947 sr_sal, null_frame_id);
4951 insert_step_resume_breakpoint_at_caller (frame);
4957 /* If we are in a function call trampoline (a stub between the
4958 calling routine and the real function), locate the real
4959 function. That's what tells us (a) whether we want to step
4960 into it at all, and (b) what prologue we want to run to the
4961 end of, if we do step into it. */
4962 real_stop_pc = skip_language_trampoline (frame, stop_pc);
4963 if (real_stop_pc == 0)
4964 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
4965 if (real_stop_pc != 0)
4966 ecs->stop_func_start = real_stop_pc;
4968 if (real_stop_pc != 0 && in_solib_dynsym_resolve_code (real_stop_pc))
4970 struct symtab_and_line sr_sal;
4973 sr_sal.pc = ecs->stop_func_start;
4974 sr_sal.pspace = get_frame_program_space (frame);
4976 insert_step_resume_breakpoint_at_sal (gdbarch,
4977 sr_sal, null_frame_id);
4982 /* If we have line number information for the function we are
4983 thinking of stepping into and the function isn't on the skip
4986 If there are several symtabs at that PC (e.g. with include
4987 files), just want to know whether *any* of them have line
4988 numbers. find_pc_line handles this. */
4990 struct symtab_and_line tmp_sal;
4992 tmp_sal = find_pc_line (ecs->stop_func_start, 0);
4993 if (tmp_sal.line != 0
4994 && !function_name_is_marked_for_skip (ecs->stop_func_name,
4997 if (execution_direction == EXEC_REVERSE)
4998 handle_step_into_function_backward (gdbarch, ecs);
5000 handle_step_into_function (gdbarch, ecs);
5005 /* If we have no line number and the step-stop-if-no-debug is
5006 set, we stop the step so that the user has a chance to switch
5007 in assembly mode. */
5008 if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
5009 && step_stop_if_no_debug)
5011 ecs->event_thread->control.stop_step = 1;
5012 print_end_stepping_range_reason ();
5013 stop_stepping (ecs);
5017 if (execution_direction == EXEC_REVERSE)
5019 /* If we're already at the start of the function, we've either just
5020 stepped backward into a single instruction function without line
5021 number info, or stepped back out of a signal handler to the first
5022 instruction of the function without line number info. Just keep
5023 going, which will single-step back to the caller. */
5024 if (ecs->stop_func_start != stop_pc)
5026 /* Set a breakpoint at callee's start address.
5027 From there we can step once and be back in the caller. */
5028 struct symtab_and_line sr_sal;
5031 sr_sal.pc = ecs->stop_func_start;
5032 sr_sal.pspace = get_frame_program_space (frame);
5033 insert_step_resume_breakpoint_at_sal (gdbarch,
5034 sr_sal, null_frame_id);
5038 /* Set a breakpoint at callee's return address (the address
5039 at which the caller will resume). */
5040 insert_step_resume_breakpoint_at_caller (frame);
5046 /* Reverse stepping through solib trampolines. */
5048 if (execution_direction == EXEC_REVERSE
5049 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
5051 if (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
5052 || (ecs->stop_func_start == 0
5053 && in_solib_dynsym_resolve_code (stop_pc)))
5055 /* Any solib trampoline code can be handled in reverse
5056 by simply continuing to single-step. We have already
5057 executed the solib function (backwards), and a few
5058 steps will take us back through the trampoline to the
5063 else if (in_solib_dynsym_resolve_code (stop_pc))
5065 /* Stepped backward into the solib dynsym resolver.
5066 Set a breakpoint at its start and continue, then
5067 one more step will take us out. */
5068 struct symtab_and_line sr_sal;
5071 sr_sal.pc = ecs->stop_func_start;
5072 sr_sal.pspace = get_frame_program_space (frame);
5073 insert_step_resume_breakpoint_at_sal (gdbarch,
5074 sr_sal, null_frame_id);
5080 stop_pc_sal = find_pc_line (stop_pc, 0);
5082 /* NOTE: tausq/2004-05-24: This if block used to be done before all
5083 the trampoline processing logic, however, there are some trampolines
5084 that have no names, so we should do trampoline handling first. */
5085 if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
5086 && ecs->stop_func_name == NULL
5087 && stop_pc_sal.line == 0)
5090 fprintf_unfiltered (gdb_stdlog,
5091 "infrun: stepped into undebuggable function\n");
5093 /* The inferior just stepped into, or returned to, an
5094 undebuggable function (where there is no debugging information
5095 and no line number corresponding to the address where the
5096 inferior stopped). Since we want to skip this kind of code,
5097 we keep going until the inferior returns from this
5098 function - unless the user has asked us not to (via
5099 set step-mode) or we no longer know how to get back
5100 to the call site. */
5101 if (step_stop_if_no_debug
5102 || !frame_id_p (frame_unwind_caller_id (frame)))
5104 /* If we have no line number and the step-stop-if-no-debug
5105 is set, we stop the step so that the user has a chance to
5106 switch in assembly mode. */
5107 ecs->event_thread->control.stop_step = 1;
5108 print_end_stepping_range_reason ();
5109 stop_stepping (ecs);
5114 /* Set a breakpoint at callee's return address (the address
5115 at which the caller will resume). */
5116 insert_step_resume_breakpoint_at_caller (frame);
5122 if (ecs->event_thread->control.step_range_end == 1)
5124 /* It is stepi or nexti. We always want to stop stepping after
5127 fprintf_unfiltered (gdb_stdlog, "infrun: stepi/nexti\n");
5128 ecs->event_thread->control.stop_step = 1;
5129 print_end_stepping_range_reason ();
5130 stop_stepping (ecs);
5134 if (stop_pc_sal.line == 0)
5136 /* We have no line number information. That means to stop
5137 stepping (does this always happen right after one instruction,
5138 when we do "s" in a function with no line numbers,
5139 or can this happen as a result of a return or longjmp?). */
5141 fprintf_unfiltered (gdb_stdlog, "infrun: no line number info\n");
5142 ecs->event_thread->control.stop_step = 1;
5143 print_end_stepping_range_reason ();
5144 stop_stepping (ecs);
5148 /* Look for "calls" to inlined functions, part one. If the inline
5149 frame machinery detected some skipped call sites, we have entered
5150 a new inline function. */
5152 if (frame_id_eq (get_frame_id (get_current_frame ()),
5153 ecs->event_thread->control.step_frame_id)
5154 && inline_skipped_frames (ecs->ptid))
5156 struct symtab_and_line call_sal;
5159 fprintf_unfiltered (gdb_stdlog,
5160 "infrun: stepped into inlined function\n");
5162 find_frame_sal (get_current_frame (), &call_sal);
5164 if (ecs->event_thread->control.step_over_calls != STEP_OVER_ALL)
5166 /* For "step", we're going to stop. But if the call site
5167 for this inlined function is on the same source line as
5168 we were previously stepping, go down into the function
5169 first. Otherwise stop at the call site. */
5171 if (call_sal.line == ecs->event_thread->current_line
5172 && call_sal.symtab == ecs->event_thread->current_symtab)
5173 step_into_inline_frame (ecs->ptid);
5175 ecs->event_thread->control.stop_step = 1;
5176 print_end_stepping_range_reason ();
5177 stop_stepping (ecs);
5182 /* For "next", we should stop at the call site if it is on a
5183 different source line. Otherwise continue through the
5184 inlined function. */
5185 if (call_sal.line == ecs->event_thread->current_line
5186 && call_sal.symtab == ecs->event_thread->current_symtab)
5190 ecs->event_thread->control.stop_step = 1;
5191 print_end_stepping_range_reason ();
5192 stop_stepping (ecs);
5198 /* Look for "calls" to inlined functions, part two. If we are still
5199 in the same real function we were stepping through, but we have
5200 to go further up to find the exact frame ID, we are stepping
5201 through a more inlined call beyond its call site. */
5203 if (get_frame_type (get_current_frame ()) == INLINE_FRAME
5204 && !frame_id_eq (get_frame_id (get_current_frame ()),
5205 ecs->event_thread->control.step_frame_id)
5206 && stepped_in_from (get_current_frame (),
5207 ecs->event_thread->control.step_frame_id))
5210 fprintf_unfiltered (gdb_stdlog,
5211 "infrun: stepping through inlined function\n");
5213 if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
5217 ecs->event_thread->control.stop_step = 1;
5218 print_end_stepping_range_reason ();
5219 stop_stepping (ecs);
5224 if ((stop_pc == stop_pc_sal.pc)
5225 && (ecs->event_thread->current_line != stop_pc_sal.line
5226 || ecs->event_thread->current_symtab != stop_pc_sal.symtab))
5228 /* We are at the start of a different line. So stop. Note that
5229 we don't stop if we step into the middle of a different line.
5230 That is said to make things like for (;;) statements work
5233 fprintf_unfiltered (gdb_stdlog,
5234 "infrun: stepped to a different line\n");
5235 ecs->event_thread->control.stop_step = 1;
5236 print_end_stepping_range_reason ();
5237 stop_stepping (ecs);
5241 /* We aren't done stepping.
5243 Optimize by setting the stepping range to the line.
5244 (We might not be in the original line, but if we entered a
5245 new line in mid-statement, we continue stepping. This makes
5246 things like for(;;) statements work better.) */
5248 ecs->event_thread->control.step_range_start = stop_pc_sal.pc;
5249 ecs->event_thread->control.step_range_end = stop_pc_sal.end;
5250 ecs->event_thread->control.may_range_step = 1;
5251 set_step_info (frame, stop_pc_sal);
5254 fprintf_unfiltered (gdb_stdlog, "infrun: keep going\n");
5258 /* In all-stop mode, if we're currently stepping but have stopped in
5259 some other thread, we may need to switch back to the stepped
5260 thread. Returns true we set the inferior running, false if we left
5261 it stopped (and the event needs further processing). */
5264 switch_back_to_stepped_thread (struct execution_control_state *ecs)
5268 struct thread_info *tp;
5270 tp = iterate_over_threads (currently_stepping_or_nexting_callback,
5274 /* However, if the current thread is blocked on some internal
5275 breakpoint, and we simply need to step over that breakpoint
5276 to get it going again, do that first. */
5277 if ((ecs->event_thread->control.trap_expected
5278 && ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_TRAP)
5279 || ecs->event_thread->stepping_over_breakpoint)
5285 /* If the stepping thread exited, then don't try to switch
5286 back and resume it, which could fail in several different
5287 ways depending on the target. Instead, just keep going.
5289 We can find a stepping dead thread in the thread list in
5292 - The target supports thread exit events, and when the
5293 target tries to delete the thread from the thread list,
5294 inferior_ptid pointed at the exiting thread. In such
5295 case, calling delete_thread does not really remove the
5296 thread from the list; instead, the thread is left listed,
5297 with 'exited' state.
5299 - The target's debug interface does not support thread
5300 exit events, and so we have no idea whatsoever if the
5301 previously stepping thread is still alive. For that
5302 reason, we need to synchronously query the target
5304 if (is_exited (tp->ptid)
5305 || !target_thread_alive (tp->ptid))
5308 fprintf_unfiltered (gdb_stdlog,
5309 "infrun: not switching back to "
5310 "stepped thread, it has vanished\n");
5312 delete_thread (tp->ptid);
5317 /* Otherwise, we no longer expect a trap in the current thread.
5318 Clear the trap_expected flag before switching back -- this is
5319 what keep_going would do as well, if we called it. */
5320 ecs->event_thread->control.trap_expected = 0;
5323 fprintf_unfiltered (gdb_stdlog,
5324 "infrun: switching back to stepped thread\n");
5326 ecs->event_thread = tp;
5327 ecs->ptid = tp->ptid;
5328 context_switch (ecs->ptid);
5336 /* Is thread TP in the middle of single-stepping? */
5339 currently_stepping (struct thread_info *tp)
5341 return ((tp->control.step_range_end
5342 && tp->control.step_resume_breakpoint == NULL)
5343 || tp->control.trap_expected
5344 || bpstat_should_step ());
5347 /* Returns true if any thread *but* the one passed in "data" is in the
5348 middle of stepping or of handling a "next". */
5351 currently_stepping_or_nexting_callback (struct thread_info *tp, void *data)
5356 return (tp->control.step_range_end
5357 || tp->control.trap_expected);
5360 /* Inferior has stepped into a subroutine call with source code that
5361 we should not step over. Do step to the first line of code in
5365 handle_step_into_function (struct gdbarch *gdbarch,
5366 struct execution_control_state *ecs)
5369 struct symtab_and_line stop_func_sal, sr_sal;
5371 fill_in_stop_func (gdbarch, ecs);
5373 s = find_pc_symtab (stop_pc);
5374 if (s && s->language != language_asm)
5375 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
5376 ecs->stop_func_start);
5378 stop_func_sal = find_pc_line (ecs->stop_func_start, 0);
5379 /* Use the step_resume_break to step until the end of the prologue,
5380 even if that involves jumps (as it seems to on the vax under
5382 /* If the prologue ends in the middle of a source line, continue to
5383 the end of that source line (if it is still within the function).
5384 Otherwise, just go to end of prologue. */
5385 if (stop_func_sal.end
5386 && stop_func_sal.pc != ecs->stop_func_start
5387 && stop_func_sal.end < ecs->stop_func_end)
5388 ecs->stop_func_start = stop_func_sal.end;
5390 /* Architectures which require breakpoint adjustment might not be able
5391 to place a breakpoint at the computed address. If so, the test
5392 ``ecs->stop_func_start == stop_pc'' will never succeed. Adjust
5393 ecs->stop_func_start to an address at which a breakpoint may be
5394 legitimately placed.
5396 Note: kevinb/2004-01-19: On FR-V, if this adjustment is not
5397 made, GDB will enter an infinite loop when stepping through
5398 optimized code consisting of VLIW instructions which contain
5399 subinstructions corresponding to different source lines. On
5400 FR-V, it's not permitted to place a breakpoint on any but the
5401 first subinstruction of a VLIW instruction. When a breakpoint is
5402 set, GDB will adjust the breakpoint address to the beginning of
5403 the VLIW instruction. Thus, we need to make the corresponding
5404 adjustment here when computing the stop address. */
5406 if (gdbarch_adjust_breakpoint_address_p (gdbarch))
5408 ecs->stop_func_start
5409 = gdbarch_adjust_breakpoint_address (gdbarch,
5410 ecs->stop_func_start);
5413 if (ecs->stop_func_start == stop_pc)
5415 /* We are already there: stop now. */
5416 ecs->event_thread->control.stop_step = 1;
5417 print_end_stepping_range_reason ();
5418 stop_stepping (ecs);
5423 /* Put the step-breakpoint there and go until there. */
5424 init_sal (&sr_sal); /* initialize to zeroes */
5425 sr_sal.pc = ecs->stop_func_start;
5426 sr_sal.section = find_pc_overlay (ecs->stop_func_start);
5427 sr_sal.pspace = get_frame_program_space (get_current_frame ());
5429 /* Do not specify what the fp should be when we stop since on
5430 some machines the prologue is where the new fp value is
5432 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal, null_frame_id);
5434 /* And make sure stepping stops right away then. */
5435 ecs->event_thread->control.step_range_end
5436 = ecs->event_thread->control.step_range_start;
5441 /* Inferior has stepped backward into a subroutine call with source
5442 code that we should not step over. Do step to the beginning of the
5443 last line of code in it. */
5446 handle_step_into_function_backward (struct gdbarch *gdbarch,
5447 struct execution_control_state *ecs)
5450 struct symtab_and_line stop_func_sal;
5452 fill_in_stop_func (gdbarch, ecs);
5454 s = find_pc_symtab (stop_pc);
5455 if (s && s->language != language_asm)
5456 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
5457 ecs->stop_func_start);
5459 stop_func_sal = find_pc_line (stop_pc, 0);
5461 /* OK, we're just going to keep stepping here. */
5462 if (stop_func_sal.pc == stop_pc)
5464 /* We're there already. Just stop stepping now. */
5465 ecs->event_thread->control.stop_step = 1;
5466 print_end_stepping_range_reason ();
5467 stop_stepping (ecs);
5471 /* Else just reset the step range and keep going.
5472 No step-resume breakpoint, they don't work for
5473 epilogues, which can have multiple entry paths. */
5474 ecs->event_thread->control.step_range_start = stop_func_sal.pc;
5475 ecs->event_thread->control.step_range_end = stop_func_sal.end;
5481 /* Insert a "step-resume breakpoint" at SR_SAL with frame ID SR_ID.
5482 This is used to both functions and to skip over code. */
5485 insert_step_resume_breakpoint_at_sal_1 (struct gdbarch *gdbarch,
5486 struct symtab_and_line sr_sal,
5487 struct frame_id sr_id,
5488 enum bptype sr_type)
5490 /* There should never be more than one step-resume or longjmp-resume
5491 breakpoint per thread, so we should never be setting a new
5492 step_resume_breakpoint when one is already active. */
5493 gdb_assert (inferior_thread ()->control.step_resume_breakpoint == NULL);
5494 gdb_assert (sr_type == bp_step_resume || sr_type == bp_hp_step_resume);
5497 fprintf_unfiltered (gdb_stdlog,
5498 "infrun: inserting step-resume breakpoint at %s\n",
5499 paddress (gdbarch, sr_sal.pc));
5501 inferior_thread ()->control.step_resume_breakpoint
5502 = set_momentary_breakpoint (gdbarch, sr_sal, sr_id, sr_type);
5506 insert_step_resume_breakpoint_at_sal (struct gdbarch *gdbarch,
5507 struct symtab_and_line sr_sal,
5508 struct frame_id sr_id)
5510 insert_step_resume_breakpoint_at_sal_1 (gdbarch,
5515 /* Insert a "high-priority step-resume breakpoint" at RETURN_FRAME.pc.
5516 This is used to skip a potential signal handler.
5518 This is called with the interrupted function's frame. The signal
5519 handler, when it returns, will resume the interrupted function at
5523 insert_hp_step_resume_breakpoint_at_frame (struct frame_info *return_frame)
5525 struct symtab_and_line sr_sal;
5526 struct gdbarch *gdbarch;
5528 gdb_assert (return_frame != NULL);
5529 init_sal (&sr_sal); /* initialize to zeros */
5531 gdbarch = get_frame_arch (return_frame);
5532 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch, get_frame_pc (return_frame));
5533 sr_sal.section = find_pc_overlay (sr_sal.pc);
5534 sr_sal.pspace = get_frame_program_space (return_frame);
5536 insert_step_resume_breakpoint_at_sal_1 (gdbarch, sr_sal,
5537 get_stack_frame_id (return_frame),
5541 /* Insert a "step-resume breakpoint" at the previous frame's PC. This
5542 is used to skip a function after stepping into it (for "next" or if
5543 the called function has no debugging information).
5545 The current function has almost always been reached by single
5546 stepping a call or return instruction. NEXT_FRAME belongs to the
5547 current function, and the breakpoint will be set at the caller's
5550 This is a separate function rather than reusing
5551 insert_hp_step_resume_breakpoint_at_frame in order to avoid
5552 get_prev_frame, which may stop prematurely (see the implementation
5553 of frame_unwind_caller_id for an example). */
5556 insert_step_resume_breakpoint_at_caller (struct frame_info *next_frame)
5558 struct symtab_and_line sr_sal;
5559 struct gdbarch *gdbarch;
5561 /* We shouldn't have gotten here if we don't know where the call site
5563 gdb_assert (frame_id_p (frame_unwind_caller_id (next_frame)));
5565 init_sal (&sr_sal); /* initialize to zeros */
5567 gdbarch = frame_unwind_caller_arch (next_frame);
5568 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch,
5569 frame_unwind_caller_pc (next_frame));
5570 sr_sal.section = find_pc_overlay (sr_sal.pc);
5571 sr_sal.pspace = frame_unwind_program_space (next_frame);
5573 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal,
5574 frame_unwind_caller_id (next_frame));
5577 /* Insert a "longjmp-resume" breakpoint at PC. This is used to set a
5578 new breakpoint at the target of a jmp_buf. The handling of
5579 longjmp-resume uses the same mechanisms used for handling
5580 "step-resume" breakpoints. */
5583 insert_longjmp_resume_breakpoint (struct gdbarch *gdbarch, CORE_ADDR pc)
5585 /* There should never be more than one longjmp-resume breakpoint per
5586 thread, so we should never be setting a new
5587 longjmp_resume_breakpoint when one is already active. */
5588 gdb_assert (inferior_thread ()->control.exception_resume_breakpoint == NULL);
5591 fprintf_unfiltered (gdb_stdlog,
5592 "infrun: inserting longjmp-resume breakpoint at %s\n",
5593 paddress (gdbarch, pc));
5595 inferior_thread ()->control.exception_resume_breakpoint =
5596 set_momentary_breakpoint_at_pc (gdbarch, pc, bp_longjmp_resume);
5599 /* Insert an exception resume breakpoint. TP is the thread throwing
5600 the exception. The block B is the block of the unwinder debug hook
5601 function. FRAME is the frame corresponding to the call to this
5602 function. SYM is the symbol of the function argument holding the
5603 target PC of the exception. */
5606 insert_exception_resume_breakpoint (struct thread_info *tp,
5608 struct frame_info *frame,
5611 volatile struct gdb_exception e;
5613 /* We want to ignore errors here. */
5614 TRY_CATCH (e, RETURN_MASK_ERROR)
5616 struct symbol *vsym;
5617 struct value *value;
5619 struct breakpoint *bp;
5621 vsym = lookup_symbol (SYMBOL_LINKAGE_NAME (sym), b, VAR_DOMAIN, NULL);
5622 value = read_var_value (vsym, frame);
5623 /* If the value was optimized out, revert to the old behavior. */
5624 if (! value_optimized_out (value))
5626 handler = value_as_address (value);
5629 fprintf_unfiltered (gdb_stdlog,
5630 "infrun: exception resume at %lx\n",
5631 (unsigned long) handler);
5633 bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
5634 handler, bp_exception_resume);
5636 /* set_momentary_breakpoint_at_pc invalidates FRAME. */
5639 bp->thread = tp->num;
5640 inferior_thread ()->control.exception_resume_breakpoint = bp;
5645 /* A helper for check_exception_resume that sets an
5646 exception-breakpoint based on a SystemTap probe. */
5649 insert_exception_resume_from_probe (struct thread_info *tp,
5650 const struct bound_probe *probe,
5651 struct frame_info *frame)
5653 struct value *arg_value;
5655 struct breakpoint *bp;
5657 arg_value = probe_safe_evaluate_at_pc (frame, 1);
5661 handler = value_as_address (arg_value);
5664 fprintf_unfiltered (gdb_stdlog,
5665 "infrun: exception resume at %s\n",
5666 paddress (get_objfile_arch (probe->objfile),
5669 bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
5670 handler, bp_exception_resume);
5671 bp->thread = tp->num;
5672 inferior_thread ()->control.exception_resume_breakpoint = bp;
5675 /* This is called when an exception has been intercepted. Check to
5676 see whether the exception's destination is of interest, and if so,
5677 set an exception resume breakpoint there. */
5680 check_exception_resume (struct execution_control_state *ecs,
5681 struct frame_info *frame)
5683 volatile struct gdb_exception e;
5684 struct bound_probe probe;
5685 struct symbol *func;
5687 /* First see if this exception unwinding breakpoint was set via a
5688 SystemTap probe point. If so, the probe has two arguments: the
5689 CFA and the HANDLER. We ignore the CFA, extract the handler, and
5690 set a breakpoint there. */
5691 probe = find_probe_by_pc (get_frame_pc (frame));
5694 insert_exception_resume_from_probe (ecs->event_thread, &probe, frame);
5698 func = get_frame_function (frame);
5702 TRY_CATCH (e, RETURN_MASK_ERROR)
5705 struct block_iterator iter;
5709 /* The exception breakpoint is a thread-specific breakpoint on
5710 the unwinder's debug hook, declared as:
5712 void _Unwind_DebugHook (void *cfa, void *handler);
5714 The CFA argument indicates the frame to which control is
5715 about to be transferred. HANDLER is the destination PC.
5717 We ignore the CFA and set a temporary breakpoint at HANDLER.
5718 This is not extremely efficient but it avoids issues in gdb
5719 with computing the DWARF CFA, and it also works even in weird
5720 cases such as throwing an exception from inside a signal
5723 b = SYMBOL_BLOCK_VALUE (func);
5724 ALL_BLOCK_SYMBOLS (b, iter, sym)
5726 if (!SYMBOL_IS_ARGUMENT (sym))
5733 insert_exception_resume_breakpoint (ecs->event_thread,
5742 stop_stepping (struct execution_control_state *ecs)
5745 fprintf_unfiltered (gdb_stdlog, "infrun: stop_stepping\n");
5747 clear_step_over_info ();
5749 /* Let callers know we don't want to wait for the inferior anymore. */
5750 ecs->wait_some_more = 0;
5753 /* Called when we should continue running the inferior, because the
5754 current event doesn't cause a user visible stop. This does the
5755 resuming part; waiting for the next event is done elsewhere. */
5758 keep_going (struct execution_control_state *ecs)
5760 /* Make sure normal_stop is called if we get a QUIT handled before
5762 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
5764 /* Save the pc before execution, to compare with pc after stop. */
5765 ecs->event_thread->prev_pc
5766 = regcache_read_pc (get_thread_regcache (ecs->ptid));
5768 if (ecs->event_thread->control.trap_expected
5769 && ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_TRAP)
5771 /* We haven't yet gotten our trap, and either: intercepted a
5772 non-signal event (e.g., a fork); or took a signal which we
5773 are supposed to pass through to the inferior. Simply
5775 discard_cleanups (old_cleanups);
5776 resume (currently_stepping (ecs->event_thread),
5777 ecs->event_thread->suspend.stop_signal);
5781 volatile struct gdb_exception e;
5782 struct regcache *regcache = get_current_regcache ();
5784 /* Either the trap was not expected, but we are continuing
5785 anyway (if we got a signal, the user asked it be passed to
5788 We got our expected trap, but decided we should resume from
5791 We're going to run this baby now!
5793 Note that insert_breakpoints won't try to re-insert
5794 already inserted breakpoints. Therefore, we don't
5795 care if breakpoints were already inserted, or not. */
5797 /* If we need to step over a breakpoint, and we're not using
5798 displaced stepping to do so, insert all breakpoints
5799 (watchpoints, etc.) but the one we're stepping over, step one
5800 instruction, and then re-insert the breakpoint when that step
5802 if (ecs->event_thread->stepping_over_breakpoint
5803 && !use_displaced_stepping (get_regcache_arch (regcache)))
5805 set_step_over_info (get_regcache_aspace (regcache),
5806 regcache_read_pc (regcache));
5809 clear_step_over_info ();
5811 /* Stop stepping if inserting breakpoints fails. */
5812 TRY_CATCH (e, RETURN_MASK_ERROR)
5814 insert_breakpoints ();
5818 exception_print (gdb_stderr, e);
5819 stop_stepping (ecs);
5823 ecs->event_thread->control.trap_expected
5824 = ecs->event_thread->stepping_over_breakpoint;
5826 /* Do not deliver GDB_SIGNAL_TRAP (except when the user
5827 explicitly specifies that such a signal should be delivered
5828 to the target program). Typically, that would occur when a
5829 user is debugging a target monitor on a simulator: the target
5830 monitor sets a breakpoint; the simulator encounters this
5831 breakpoint and halts the simulation handing control to GDB;
5832 GDB, noting that the stop address doesn't map to any known
5833 breakpoint, returns control back to the simulator; the
5834 simulator then delivers the hardware equivalent of a
5835 GDB_SIGNAL_TRAP to the program being debugged. */
5836 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5837 && !signal_program[ecs->event_thread->suspend.stop_signal])
5838 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5840 discard_cleanups (old_cleanups);
5841 resume (currently_stepping (ecs->event_thread),
5842 ecs->event_thread->suspend.stop_signal);
5845 prepare_to_wait (ecs);
5848 /* This function normally comes after a resume, before
5849 handle_inferior_event exits. It takes care of any last bits of
5850 housekeeping, and sets the all-important wait_some_more flag. */
5853 prepare_to_wait (struct execution_control_state *ecs)
5856 fprintf_unfiltered (gdb_stdlog, "infrun: prepare_to_wait\n");
5858 /* This is the old end of the while loop. Let everybody know we
5859 want to wait for the inferior some more and get called again
5861 ecs->wait_some_more = 1;
5864 /* Several print_*_reason functions to print why the inferior has stopped.
5865 We always print something when the inferior exits, or receives a signal.
5866 The rest of the cases are dealt with later on in normal_stop and
5867 print_it_typical. Ideally there should be a call to one of these
5868 print_*_reason functions functions from handle_inferior_event each time
5869 stop_stepping is called. */
5871 /* Print why the inferior has stopped.
5872 We are done with a step/next/si/ni command, print why the inferior has
5873 stopped. For now print nothing. Print a message only if not in the middle
5874 of doing a "step n" operation for n > 1. */
5877 print_end_stepping_range_reason (void)
5879 if ((!inferior_thread ()->step_multi
5880 || !inferior_thread ()->control.stop_step)
5881 && ui_out_is_mi_like_p (current_uiout))
5882 ui_out_field_string (current_uiout, "reason",
5883 async_reason_lookup (EXEC_ASYNC_END_STEPPING_RANGE));
5886 /* The inferior was terminated by a signal, print why it stopped. */
5889 print_signal_exited_reason (enum gdb_signal siggnal)
5891 struct ui_out *uiout = current_uiout;
5893 annotate_signalled ();
5894 if (ui_out_is_mi_like_p (uiout))
5896 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_EXITED_SIGNALLED));
5897 ui_out_text (uiout, "\nProgram terminated with signal ");
5898 annotate_signal_name ();
5899 ui_out_field_string (uiout, "signal-name",
5900 gdb_signal_to_name (siggnal));
5901 annotate_signal_name_end ();
5902 ui_out_text (uiout, ", ");
5903 annotate_signal_string ();
5904 ui_out_field_string (uiout, "signal-meaning",
5905 gdb_signal_to_string (siggnal));
5906 annotate_signal_string_end ();
5907 ui_out_text (uiout, ".\n");
5908 ui_out_text (uiout, "The program no longer exists.\n");
5911 /* The inferior program is finished, print why it stopped. */
5914 print_exited_reason (int exitstatus)
5916 struct inferior *inf = current_inferior ();
5917 const char *pidstr = target_pid_to_str (pid_to_ptid (inf->pid));
5918 struct ui_out *uiout = current_uiout;
5920 annotate_exited (exitstatus);
5923 if (ui_out_is_mi_like_p (uiout))
5924 ui_out_field_string (uiout, "reason",
5925 async_reason_lookup (EXEC_ASYNC_EXITED));
5926 ui_out_text (uiout, "[Inferior ");
5927 ui_out_text (uiout, plongest (inf->num));
5928 ui_out_text (uiout, " (");
5929 ui_out_text (uiout, pidstr);
5930 ui_out_text (uiout, ") exited with code ");
5931 ui_out_field_fmt (uiout, "exit-code", "0%o", (unsigned int) exitstatus);
5932 ui_out_text (uiout, "]\n");
5936 if (ui_out_is_mi_like_p (uiout))
5938 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_EXITED_NORMALLY));
5939 ui_out_text (uiout, "[Inferior ");
5940 ui_out_text (uiout, plongest (inf->num));
5941 ui_out_text (uiout, " (");
5942 ui_out_text (uiout, pidstr);
5943 ui_out_text (uiout, ") exited normally]\n");
5945 /* Support the --return-child-result option. */
5946 return_child_result_value = exitstatus;
5949 /* Signal received, print why the inferior has stopped. The signal table
5950 tells us to print about it. */
5953 print_signal_received_reason (enum gdb_signal siggnal)
5955 struct ui_out *uiout = current_uiout;
5959 if (siggnal == GDB_SIGNAL_0 && !ui_out_is_mi_like_p (uiout))
5961 struct thread_info *t = inferior_thread ();
5963 ui_out_text (uiout, "\n[");
5964 ui_out_field_string (uiout, "thread-name",
5965 target_pid_to_str (t->ptid));
5966 ui_out_field_fmt (uiout, "thread-id", "] #%d", t->num);
5967 ui_out_text (uiout, " stopped");
5971 ui_out_text (uiout, "\nProgram received signal ");
5972 annotate_signal_name ();
5973 if (ui_out_is_mi_like_p (uiout))
5975 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_SIGNAL_RECEIVED));
5976 ui_out_field_string (uiout, "signal-name",
5977 gdb_signal_to_name (siggnal));
5978 annotate_signal_name_end ();
5979 ui_out_text (uiout, ", ");
5980 annotate_signal_string ();
5981 ui_out_field_string (uiout, "signal-meaning",
5982 gdb_signal_to_string (siggnal));
5983 annotate_signal_string_end ();
5985 ui_out_text (uiout, ".\n");
5988 /* Reverse execution: target ran out of history info, print why the inferior
5992 print_no_history_reason (void)
5994 ui_out_text (current_uiout, "\nNo more reverse-execution history.\n");
5997 /* Print current location without a level number, if we have changed
5998 functions or hit a breakpoint. Print source line if we have one.
5999 bpstat_print contains the logic deciding in detail what to print,
6000 based on the event(s) that just occurred. */
6003 print_stop_event (struct target_waitstatus *ws)
6007 int do_frame_printing = 1;
6008 struct thread_info *tp = inferior_thread ();
6010 bpstat_ret = bpstat_print (tp->control.stop_bpstat, ws->kind);
6014 /* FIXME: cagney/2002-12-01: Given that a frame ID does (or
6015 should) carry around the function and does (or should) use
6016 that when doing a frame comparison. */
6017 if (tp->control.stop_step
6018 && frame_id_eq (tp->control.step_frame_id,
6019 get_frame_id (get_current_frame ()))
6020 && step_start_function == find_pc_function (stop_pc))
6022 /* Finished step, just print source line. */
6023 source_flag = SRC_LINE;
6027 /* Print location and source line. */
6028 source_flag = SRC_AND_LOC;
6031 case PRINT_SRC_AND_LOC:
6032 /* Print location and source line. */
6033 source_flag = SRC_AND_LOC;
6035 case PRINT_SRC_ONLY:
6036 source_flag = SRC_LINE;
6039 /* Something bogus. */
6040 source_flag = SRC_LINE;
6041 do_frame_printing = 0;
6044 internal_error (__FILE__, __LINE__, _("Unknown value."));
6047 /* The behavior of this routine with respect to the source
6049 SRC_LINE: Print only source line
6050 LOCATION: Print only location
6051 SRC_AND_LOC: Print location and source line. */
6052 if (do_frame_printing)
6053 print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
6055 /* Display the auto-display expressions. */
6059 /* Here to return control to GDB when the inferior stops for real.
6060 Print appropriate messages, remove breakpoints, give terminal our modes.
6062 STOP_PRINT_FRAME nonzero means print the executing frame
6063 (pc, function, args, file, line number and line text).
6064 BREAKPOINTS_FAILED nonzero means stop was due to error
6065 attempting to insert breakpoints. */
6070 struct target_waitstatus last;
6072 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
6074 get_last_target_status (&last_ptid, &last);
6076 /* If an exception is thrown from this point on, make sure to
6077 propagate GDB's knowledge of the executing state to the
6078 frontend/user running state. A QUIT is an easy exception to see
6079 here, so do this before any filtered output. */
6081 make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
6082 else if (last.kind != TARGET_WAITKIND_SIGNALLED
6083 && last.kind != TARGET_WAITKIND_EXITED
6084 && last.kind != TARGET_WAITKIND_NO_RESUMED)
6085 make_cleanup (finish_thread_state_cleanup, &inferior_ptid);
6087 /* In non-stop mode, we don't want GDB to switch threads behind the
6088 user's back, to avoid races where the user is typing a command to
6089 apply to thread x, but GDB switches to thread y before the user
6090 finishes entering the command. */
6092 /* As with the notification of thread events, we want to delay
6093 notifying the user that we've switched thread context until
6094 the inferior actually stops.
6096 There's no point in saying anything if the inferior has exited.
6097 Note that SIGNALLED here means "exited with a signal", not
6098 "received a signal". */
6100 && !ptid_equal (previous_inferior_ptid, inferior_ptid)
6101 && target_has_execution
6102 && last.kind != TARGET_WAITKIND_SIGNALLED
6103 && last.kind != TARGET_WAITKIND_EXITED
6104 && last.kind != TARGET_WAITKIND_NO_RESUMED)
6106 target_terminal_ours_for_output ();
6107 printf_filtered (_("[Switching to %s]\n"),
6108 target_pid_to_str (inferior_ptid));
6109 annotate_thread_changed ();
6110 previous_inferior_ptid = inferior_ptid;
6113 if (last.kind == TARGET_WAITKIND_NO_RESUMED)
6115 gdb_assert (sync_execution || !target_can_async_p ());
6117 target_terminal_ours_for_output ();
6118 printf_filtered (_("No unwaited-for children left.\n"));
6121 if (!breakpoints_always_inserted_mode () && target_has_execution)
6123 if (remove_breakpoints ())
6125 target_terminal_ours_for_output ();
6126 printf_filtered (_("Cannot remove breakpoints because "
6127 "program is no longer writable.\nFurther "
6128 "execution is probably impossible.\n"));
6132 /* If an auto-display called a function and that got a signal,
6133 delete that auto-display to avoid an infinite recursion. */
6135 if (stopped_by_random_signal)
6136 disable_current_display ();
6138 /* Don't print a message if in the middle of doing a "step n"
6139 operation for n > 1 */
6140 if (target_has_execution
6141 && last.kind != TARGET_WAITKIND_SIGNALLED
6142 && last.kind != TARGET_WAITKIND_EXITED
6143 && inferior_thread ()->step_multi
6144 && inferior_thread ()->control.stop_step)
6147 target_terminal_ours ();
6148 async_enable_stdin ();
6150 /* Set the current source location. This will also happen if we
6151 display the frame below, but the current SAL will be incorrect
6152 during a user hook-stop function. */
6153 if (has_stack_frames () && !stop_stack_dummy)
6154 set_current_sal_from_frame (get_current_frame (), 1);
6156 /* Let the user/frontend see the threads as stopped. */
6157 do_cleanups (old_chain);
6159 /* Look up the hook_stop and run it (CLI internally handles problem
6160 of stop_command's pre-hook not existing). */
6162 catch_errors (hook_stop_stub, stop_command,
6163 "Error while running hook_stop:\n", RETURN_MASK_ALL);
6165 if (!has_stack_frames ())
6168 if (last.kind == TARGET_WAITKIND_SIGNALLED
6169 || last.kind == TARGET_WAITKIND_EXITED)
6172 /* Select innermost stack frame - i.e., current frame is frame 0,
6173 and current location is based on that.
6174 Don't do this on return from a stack dummy routine,
6175 or if the program has exited. */
6177 if (!stop_stack_dummy)
6179 select_frame (get_current_frame ());
6181 /* If --batch-silent is enabled then there's no need to print the current
6182 source location, and to try risks causing an error message about
6183 missing source files. */
6184 if (stop_print_frame && !batch_silent)
6185 print_stop_event (&last);
6188 /* Save the function value return registers, if we care.
6189 We might be about to restore their previous contents. */
6190 if (inferior_thread ()->control.proceed_to_finish
6191 && execution_direction != EXEC_REVERSE)
6193 /* This should not be necessary. */
6195 regcache_xfree (stop_registers);
6197 /* NB: The copy goes through to the target picking up the value of
6198 all the registers. */
6199 stop_registers = regcache_dup (get_current_regcache ());
6202 if (stop_stack_dummy == STOP_STACK_DUMMY)
6204 /* Pop the empty frame that contains the stack dummy.
6205 This also restores inferior state prior to the call
6206 (struct infcall_suspend_state). */
6207 struct frame_info *frame = get_current_frame ();
6209 gdb_assert (get_frame_type (frame) == DUMMY_FRAME);
6211 /* frame_pop() calls reinit_frame_cache as the last thing it
6212 does which means there's currently no selected frame. We
6213 don't need to re-establish a selected frame if the dummy call
6214 returns normally, that will be done by
6215 restore_infcall_control_state. However, we do have to handle
6216 the case where the dummy call is returning after being
6217 stopped (e.g. the dummy call previously hit a breakpoint).
6218 We can't know which case we have so just always re-establish
6219 a selected frame here. */
6220 select_frame (get_current_frame ());
6224 annotate_stopped ();
6226 /* Suppress the stop observer if we're in the middle of:
6228 - a step n (n > 1), as there still more steps to be done.
6230 - a "finish" command, as the observer will be called in
6231 finish_command_continuation, so it can include the inferior
6232 function's return value.
6234 - calling an inferior function, as we pretend we inferior didn't
6235 run at all. The return value of the call is handled by the
6236 expression evaluator, through call_function_by_hand. */
6238 if (!target_has_execution
6239 || last.kind == TARGET_WAITKIND_SIGNALLED
6240 || last.kind == TARGET_WAITKIND_EXITED
6241 || last.kind == TARGET_WAITKIND_NO_RESUMED
6242 || (!(inferior_thread ()->step_multi
6243 && inferior_thread ()->control.stop_step)
6244 && !(inferior_thread ()->control.stop_bpstat
6245 && inferior_thread ()->control.proceed_to_finish)
6246 && !inferior_thread ()->control.in_infcall))
6248 if (!ptid_equal (inferior_ptid, null_ptid))
6249 observer_notify_normal_stop (inferior_thread ()->control.stop_bpstat,
6252 observer_notify_normal_stop (NULL, stop_print_frame);
6255 if (target_has_execution)
6257 if (last.kind != TARGET_WAITKIND_SIGNALLED
6258 && last.kind != TARGET_WAITKIND_EXITED)
6259 /* Delete the breakpoint we stopped at, if it wants to be deleted.
6260 Delete any breakpoint that is to be deleted at the next stop. */
6261 breakpoint_auto_delete (inferior_thread ()->control.stop_bpstat);
6264 /* Try to get rid of automatically added inferiors that are no
6265 longer needed. Keeping those around slows down things linearly.
6266 Note that this never removes the current inferior. */
6271 hook_stop_stub (void *cmd)
6273 execute_cmd_pre_hook ((struct cmd_list_element *) cmd);
6278 signal_stop_state (int signo)
6280 return signal_stop[signo];
6284 signal_print_state (int signo)
6286 return signal_print[signo];
6290 signal_pass_state (int signo)
6292 return signal_program[signo];
6296 signal_cache_update (int signo)
6300 for (signo = 0; signo < (int) GDB_SIGNAL_LAST; signo++)
6301 signal_cache_update (signo);
6306 signal_pass[signo] = (signal_stop[signo] == 0
6307 && signal_print[signo] == 0
6308 && signal_program[signo] == 1
6309 && signal_catch[signo] == 0);
6313 signal_stop_update (int signo, int state)
6315 int ret = signal_stop[signo];
6317 signal_stop[signo] = state;
6318 signal_cache_update (signo);
6323 signal_print_update (int signo, int state)
6325 int ret = signal_print[signo];
6327 signal_print[signo] = state;
6328 signal_cache_update (signo);
6333 signal_pass_update (int signo, int state)
6335 int ret = signal_program[signo];
6337 signal_program[signo] = state;
6338 signal_cache_update (signo);
6342 /* Update the global 'signal_catch' from INFO and notify the
6346 signal_catch_update (const unsigned int *info)
6350 for (i = 0; i < GDB_SIGNAL_LAST; ++i)
6351 signal_catch[i] = info[i] > 0;
6352 signal_cache_update (-1);
6353 target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
6357 sig_print_header (void)
6359 printf_filtered (_("Signal Stop\tPrint\tPass "
6360 "to program\tDescription\n"));
6364 sig_print_info (enum gdb_signal oursig)
6366 const char *name = gdb_signal_to_name (oursig);
6367 int name_padding = 13 - strlen (name);
6369 if (name_padding <= 0)
6372 printf_filtered ("%s", name);
6373 printf_filtered ("%*.*s ", name_padding, name_padding, " ");
6374 printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
6375 printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
6376 printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
6377 printf_filtered ("%s\n", gdb_signal_to_string (oursig));
6380 /* Specify how various signals in the inferior should be handled. */
6383 handle_command (char *args, int from_tty)
6386 int digits, wordlen;
6387 int sigfirst, signum, siglast;
6388 enum gdb_signal oursig;
6391 unsigned char *sigs;
6392 struct cleanup *old_chain;
6396 error_no_arg (_("signal to handle"));
6399 /* Allocate and zero an array of flags for which signals to handle. */
6401 nsigs = (int) GDB_SIGNAL_LAST;
6402 sigs = (unsigned char *) alloca (nsigs);
6403 memset (sigs, 0, nsigs);
6405 /* Break the command line up into args. */
6407 argv = gdb_buildargv (args);
6408 old_chain = make_cleanup_freeargv (argv);
6410 /* Walk through the args, looking for signal oursigs, signal names, and
6411 actions. Signal numbers and signal names may be interspersed with
6412 actions, with the actions being performed for all signals cumulatively
6413 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
6415 while (*argv != NULL)
6417 wordlen = strlen (*argv);
6418 for (digits = 0; isdigit ((*argv)[digits]); digits++)
6422 sigfirst = siglast = -1;
6424 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
6426 /* Apply action to all signals except those used by the
6427 debugger. Silently skip those. */
6430 siglast = nsigs - 1;
6432 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
6434 SET_SIGS (nsigs, sigs, signal_stop);
6435 SET_SIGS (nsigs, sigs, signal_print);
6437 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
6439 UNSET_SIGS (nsigs, sigs, signal_program);
6441 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
6443 SET_SIGS (nsigs, sigs, signal_print);
6445 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
6447 SET_SIGS (nsigs, sigs, signal_program);
6449 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
6451 UNSET_SIGS (nsigs, sigs, signal_stop);
6453 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
6455 SET_SIGS (nsigs, sigs, signal_program);
6457 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
6459 UNSET_SIGS (nsigs, sigs, signal_print);
6460 UNSET_SIGS (nsigs, sigs, signal_stop);
6462 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
6464 UNSET_SIGS (nsigs, sigs, signal_program);
6466 else if (digits > 0)
6468 /* It is numeric. The numeric signal refers to our own
6469 internal signal numbering from target.h, not to host/target
6470 signal number. This is a feature; users really should be
6471 using symbolic names anyway, and the common ones like
6472 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
6474 sigfirst = siglast = (int)
6475 gdb_signal_from_command (atoi (*argv));
6476 if ((*argv)[digits] == '-')
6479 gdb_signal_from_command (atoi ((*argv) + digits + 1));
6481 if (sigfirst > siglast)
6483 /* Bet he didn't figure we'd think of this case... */
6491 oursig = gdb_signal_from_name (*argv);
6492 if (oursig != GDB_SIGNAL_UNKNOWN)
6494 sigfirst = siglast = (int) oursig;
6498 /* Not a number and not a recognized flag word => complain. */
6499 error (_("Unrecognized or ambiguous flag word: \"%s\"."), *argv);
6503 /* If any signal numbers or symbol names were found, set flags for
6504 which signals to apply actions to. */
6506 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
6508 switch ((enum gdb_signal) signum)
6510 case GDB_SIGNAL_TRAP:
6511 case GDB_SIGNAL_INT:
6512 if (!allsigs && !sigs[signum])
6514 if (query (_("%s is used by the debugger.\n\
6515 Are you sure you want to change it? "),
6516 gdb_signal_to_name ((enum gdb_signal) signum)))
6522 printf_unfiltered (_("Not confirmed, unchanged.\n"));
6523 gdb_flush (gdb_stdout);
6528 case GDB_SIGNAL_DEFAULT:
6529 case GDB_SIGNAL_UNKNOWN:
6530 /* Make sure that "all" doesn't print these. */
6541 for (signum = 0; signum < nsigs; signum++)
6544 signal_cache_update (-1);
6545 target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
6546 target_program_signals ((int) GDB_SIGNAL_LAST, signal_program);
6550 /* Show the results. */
6551 sig_print_header ();
6552 for (; signum < nsigs; signum++)
6554 sig_print_info (signum);
6560 do_cleanups (old_chain);
6563 /* Complete the "handle" command. */
6565 static VEC (char_ptr) *
6566 handle_completer (struct cmd_list_element *ignore,
6567 const char *text, const char *word)
6569 VEC (char_ptr) *vec_signals, *vec_keywords, *return_val;
6570 static const char * const keywords[] =
6584 vec_signals = signal_completer (ignore, text, word);
6585 vec_keywords = complete_on_enum (keywords, word, word);
6587 return_val = VEC_merge (char_ptr, vec_signals, vec_keywords);
6588 VEC_free (char_ptr, vec_signals);
6589 VEC_free (char_ptr, vec_keywords);
6594 xdb_handle_command (char *args, int from_tty)
6597 struct cleanup *old_chain;
6600 error_no_arg (_("xdb command"));
6602 /* Break the command line up into args. */
6604 argv = gdb_buildargv (args);
6605 old_chain = make_cleanup_freeargv (argv);
6606 if (argv[1] != (char *) NULL)
6611 bufLen = strlen (argv[0]) + 20;
6612 argBuf = (char *) xmalloc (bufLen);
6616 enum gdb_signal oursig;
6618 oursig = gdb_signal_from_name (argv[0]);
6619 memset (argBuf, 0, bufLen);
6620 if (strcmp (argv[1], "Q") == 0)
6621 sprintf (argBuf, "%s %s", argv[0], "noprint");
6624 if (strcmp (argv[1], "s") == 0)
6626 if (!signal_stop[oursig])
6627 sprintf (argBuf, "%s %s", argv[0], "stop");
6629 sprintf (argBuf, "%s %s", argv[0], "nostop");
6631 else if (strcmp (argv[1], "i") == 0)
6633 if (!signal_program[oursig])
6634 sprintf (argBuf, "%s %s", argv[0], "pass");
6636 sprintf (argBuf, "%s %s", argv[0], "nopass");
6638 else if (strcmp (argv[1], "r") == 0)
6640 if (!signal_print[oursig])
6641 sprintf (argBuf, "%s %s", argv[0], "print");
6643 sprintf (argBuf, "%s %s", argv[0], "noprint");
6649 handle_command (argBuf, from_tty);
6651 printf_filtered (_("Invalid signal handling flag.\n"));
6656 do_cleanups (old_chain);
6660 gdb_signal_from_command (int num)
6662 if (num >= 1 && num <= 15)
6663 return (enum gdb_signal) num;
6664 error (_("Only signals 1-15 are valid as numeric signals.\n\
6665 Use \"info signals\" for a list of symbolic signals."));
6668 /* Print current contents of the tables set by the handle command.
6669 It is possible we should just be printing signals actually used
6670 by the current target (but for things to work right when switching
6671 targets, all signals should be in the signal tables). */
6674 signals_info (char *signum_exp, int from_tty)
6676 enum gdb_signal oursig;
6678 sig_print_header ();
6682 /* First see if this is a symbol name. */
6683 oursig = gdb_signal_from_name (signum_exp);
6684 if (oursig == GDB_SIGNAL_UNKNOWN)
6686 /* No, try numeric. */
6688 gdb_signal_from_command (parse_and_eval_long (signum_exp));
6690 sig_print_info (oursig);
6694 printf_filtered ("\n");
6695 /* These ugly casts brought to you by the native VAX compiler. */
6696 for (oursig = GDB_SIGNAL_FIRST;
6697 (int) oursig < (int) GDB_SIGNAL_LAST;
6698 oursig = (enum gdb_signal) ((int) oursig + 1))
6702 if (oursig != GDB_SIGNAL_UNKNOWN
6703 && oursig != GDB_SIGNAL_DEFAULT && oursig != GDB_SIGNAL_0)
6704 sig_print_info (oursig);
6707 printf_filtered (_("\nUse the \"handle\" command "
6708 "to change these tables.\n"));
6711 /* Check if it makes sense to read $_siginfo from the current thread
6712 at this point. If not, throw an error. */
6715 validate_siginfo_access (void)
6717 /* No current inferior, no siginfo. */
6718 if (ptid_equal (inferior_ptid, null_ptid))
6719 error (_("No thread selected."));
6721 /* Don't try to read from a dead thread. */
6722 if (is_exited (inferior_ptid))
6723 error (_("The current thread has terminated"));
6725 /* ... or from a spinning thread. */
6726 if (is_running (inferior_ptid))
6727 error (_("Selected thread is running."));
6730 /* The $_siginfo convenience variable is a bit special. We don't know
6731 for sure the type of the value until we actually have a chance to
6732 fetch the data. The type can change depending on gdbarch, so it is
6733 also dependent on which thread you have selected.
6735 1. making $_siginfo be an internalvar that creates a new value on
6738 2. making the value of $_siginfo be an lval_computed value. */
6740 /* This function implements the lval_computed support for reading a
6744 siginfo_value_read (struct value *v)
6746 LONGEST transferred;
6748 validate_siginfo_access ();
6751 target_read (¤t_target, TARGET_OBJECT_SIGNAL_INFO,
6753 value_contents_all_raw (v),
6755 TYPE_LENGTH (value_type (v)));
6757 if (transferred != TYPE_LENGTH (value_type (v)))
6758 error (_("Unable to read siginfo"));
6761 /* This function implements the lval_computed support for writing a
6765 siginfo_value_write (struct value *v, struct value *fromval)
6767 LONGEST transferred;
6769 validate_siginfo_access ();
6771 transferred = target_write (¤t_target,
6772 TARGET_OBJECT_SIGNAL_INFO,
6774 value_contents_all_raw (fromval),
6776 TYPE_LENGTH (value_type (fromval)));
6778 if (transferred != TYPE_LENGTH (value_type (fromval)))
6779 error (_("Unable to write siginfo"));
6782 static const struct lval_funcs siginfo_value_funcs =
6788 /* Return a new value with the correct type for the siginfo object of
6789 the current thread using architecture GDBARCH. Return a void value
6790 if there's no object available. */
6792 static struct value *
6793 siginfo_make_value (struct gdbarch *gdbarch, struct internalvar *var,
6796 if (target_has_stack
6797 && !ptid_equal (inferior_ptid, null_ptid)
6798 && gdbarch_get_siginfo_type_p (gdbarch))
6800 struct type *type = gdbarch_get_siginfo_type (gdbarch);
6802 return allocate_computed_value (type, &siginfo_value_funcs, NULL);
6805 return allocate_value (builtin_type (gdbarch)->builtin_void);
6809 /* infcall_suspend_state contains state about the program itself like its
6810 registers and any signal it received when it last stopped.
6811 This state must be restored regardless of how the inferior function call
6812 ends (either successfully, or after it hits a breakpoint or signal)
6813 if the program is to properly continue where it left off. */
6815 struct infcall_suspend_state
6817 struct thread_suspend_state thread_suspend;
6818 #if 0 /* Currently unused and empty structures are not valid C. */
6819 struct inferior_suspend_state inferior_suspend;
6824 struct regcache *registers;
6826 /* Format of SIGINFO_DATA or NULL if it is not present. */
6827 struct gdbarch *siginfo_gdbarch;
6829 /* The inferior format depends on SIGINFO_GDBARCH and it has a length of
6830 TYPE_LENGTH (gdbarch_get_siginfo_type ()). For different gdbarch the
6831 content would be invalid. */
6832 gdb_byte *siginfo_data;
6835 struct infcall_suspend_state *
6836 save_infcall_suspend_state (void)
6838 struct infcall_suspend_state *inf_state;
6839 struct thread_info *tp = inferior_thread ();
6841 struct inferior *inf = current_inferior ();
6843 struct regcache *regcache = get_current_regcache ();
6844 struct gdbarch *gdbarch = get_regcache_arch (regcache);
6845 gdb_byte *siginfo_data = NULL;
6847 if (gdbarch_get_siginfo_type_p (gdbarch))
6849 struct type *type = gdbarch_get_siginfo_type (gdbarch);
6850 size_t len = TYPE_LENGTH (type);
6851 struct cleanup *back_to;
6853 siginfo_data = xmalloc (len);
6854 back_to = make_cleanup (xfree, siginfo_data);
6856 if (target_read (¤t_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
6857 siginfo_data, 0, len) == len)
6858 discard_cleanups (back_to);
6861 /* Errors ignored. */
6862 do_cleanups (back_to);
6863 siginfo_data = NULL;
6867 inf_state = XCNEW (struct infcall_suspend_state);
6871 inf_state->siginfo_gdbarch = gdbarch;
6872 inf_state->siginfo_data = siginfo_data;
6875 inf_state->thread_suspend = tp->suspend;
6876 #if 0 /* Currently unused and empty structures are not valid C. */
6877 inf_state->inferior_suspend = inf->suspend;
6880 /* run_inferior_call will not use the signal due to its `proceed' call with
6881 GDB_SIGNAL_0 anyway. */
6882 tp->suspend.stop_signal = GDB_SIGNAL_0;
6884 inf_state->stop_pc = stop_pc;
6886 inf_state->registers = regcache_dup (regcache);
6891 /* Restore inferior session state to INF_STATE. */
6894 restore_infcall_suspend_state (struct infcall_suspend_state *inf_state)
6896 struct thread_info *tp = inferior_thread ();
6898 struct inferior *inf = current_inferior ();
6900 struct regcache *regcache = get_current_regcache ();
6901 struct gdbarch *gdbarch = get_regcache_arch (regcache);
6903 tp->suspend = inf_state->thread_suspend;
6904 #if 0 /* Currently unused and empty structures are not valid C. */
6905 inf->suspend = inf_state->inferior_suspend;
6908 stop_pc = inf_state->stop_pc;
6910 if (inf_state->siginfo_gdbarch == gdbarch)
6912 struct type *type = gdbarch_get_siginfo_type (gdbarch);
6914 /* Errors ignored. */
6915 target_write (¤t_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
6916 inf_state->siginfo_data, 0, TYPE_LENGTH (type));
6919 /* The inferior can be gone if the user types "print exit(0)"
6920 (and perhaps other times). */
6921 if (target_has_execution)
6922 /* NB: The register write goes through to the target. */
6923 regcache_cpy (regcache, inf_state->registers);
6925 discard_infcall_suspend_state (inf_state);
6929 do_restore_infcall_suspend_state_cleanup (void *state)
6931 restore_infcall_suspend_state (state);
6935 make_cleanup_restore_infcall_suspend_state
6936 (struct infcall_suspend_state *inf_state)
6938 return make_cleanup (do_restore_infcall_suspend_state_cleanup, inf_state);
6942 discard_infcall_suspend_state (struct infcall_suspend_state *inf_state)
6944 regcache_xfree (inf_state->registers);
6945 xfree (inf_state->siginfo_data);
6950 get_infcall_suspend_state_regcache (struct infcall_suspend_state *inf_state)
6952 return inf_state->registers;
6955 /* infcall_control_state contains state regarding gdb's control of the
6956 inferior itself like stepping control. It also contains session state like
6957 the user's currently selected frame. */
6959 struct infcall_control_state
6961 struct thread_control_state thread_control;
6962 struct inferior_control_state inferior_control;
6965 enum stop_stack_kind stop_stack_dummy;
6966 int stopped_by_random_signal;
6967 int stop_after_trap;
6969 /* ID if the selected frame when the inferior function call was made. */
6970 struct frame_id selected_frame_id;
6973 /* Save all of the information associated with the inferior<==>gdb
6976 struct infcall_control_state *
6977 save_infcall_control_state (void)
6979 struct infcall_control_state *inf_status = xmalloc (sizeof (*inf_status));
6980 struct thread_info *tp = inferior_thread ();
6981 struct inferior *inf = current_inferior ();
6983 inf_status->thread_control = tp->control;
6984 inf_status->inferior_control = inf->control;
6986 tp->control.step_resume_breakpoint = NULL;
6987 tp->control.exception_resume_breakpoint = NULL;
6989 /* Save original bpstat chain to INF_STATUS; replace it in TP with copy of
6990 chain. If caller's caller is walking the chain, they'll be happier if we
6991 hand them back the original chain when restore_infcall_control_state is
6993 tp->control.stop_bpstat = bpstat_copy (tp->control.stop_bpstat);
6996 inf_status->stop_stack_dummy = stop_stack_dummy;
6997 inf_status->stopped_by_random_signal = stopped_by_random_signal;
6998 inf_status->stop_after_trap = stop_after_trap;
7000 inf_status->selected_frame_id = get_frame_id (get_selected_frame (NULL));
7006 restore_selected_frame (void *args)
7008 struct frame_id *fid = (struct frame_id *) args;
7009 struct frame_info *frame;
7011 frame = frame_find_by_id (*fid);
7013 /* If inf_status->selected_frame_id is NULL, there was no previously
7017 warning (_("Unable to restore previously selected frame."));
7021 select_frame (frame);
7026 /* Restore inferior session state to INF_STATUS. */
7029 restore_infcall_control_state (struct infcall_control_state *inf_status)
7031 struct thread_info *tp = inferior_thread ();
7032 struct inferior *inf = current_inferior ();
7034 if (tp->control.step_resume_breakpoint)
7035 tp->control.step_resume_breakpoint->disposition = disp_del_at_next_stop;
7037 if (tp->control.exception_resume_breakpoint)
7038 tp->control.exception_resume_breakpoint->disposition
7039 = disp_del_at_next_stop;
7041 /* Handle the bpstat_copy of the chain. */
7042 bpstat_clear (&tp->control.stop_bpstat);
7044 tp->control = inf_status->thread_control;
7045 inf->control = inf_status->inferior_control;
7048 stop_stack_dummy = inf_status->stop_stack_dummy;
7049 stopped_by_random_signal = inf_status->stopped_by_random_signal;
7050 stop_after_trap = inf_status->stop_after_trap;
7052 if (target_has_stack)
7054 /* The point of catch_errors is that if the stack is clobbered,
7055 walking the stack might encounter a garbage pointer and
7056 error() trying to dereference it. */
7058 (restore_selected_frame, &inf_status->selected_frame_id,
7059 "Unable to restore previously selected frame:\n",
7060 RETURN_MASK_ERROR) == 0)
7061 /* Error in restoring the selected frame. Select the innermost
7063 select_frame (get_current_frame ());
7070 do_restore_infcall_control_state_cleanup (void *sts)
7072 restore_infcall_control_state (sts);
7076 make_cleanup_restore_infcall_control_state
7077 (struct infcall_control_state *inf_status)
7079 return make_cleanup (do_restore_infcall_control_state_cleanup, inf_status);
7083 discard_infcall_control_state (struct infcall_control_state *inf_status)
7085 if (inf_status->thread_control.step_resume_breakpoint)
7086 inf_status->thread_control.step_resume_breakpoint->disposition
7087 = disp_del_at_next_stop;
7089 if (inf_status->thread_control.exception_resume_breakpoint)
7090 inf_status->thread_control.exception_resume_breakpoint->disposition
7091 = disp_del_at_next_stop;
7093 /* See save_infcall_control_state for info on stop_bpstat. */
7094 bpstat_clear (&inf_status->thread_control.stop_bpstat);
7099 /* restore_inferior_ptid() will be used by the cleanup machinery
7100 to restore the inferior_ptid value saved in a call to
7101 save_inferior_ptid(). */
7104 restore_inferior_ptid (void *arg)
7106 ptid_t *saved_ptid_ptr = arg;
7108 inferior_ptid = *saved_ptid_ptr;
7112 /* Save the value of inferior_ptid so that it may be restored by a
7113 later call to do_cleanups(). Returns the struct cleanup pointer
7114 needed for later doing the cleanup. */
7117 save_inferior_ptid (void)
7119 ptid_t *saved_ptid_ptr;
7121 saved_ptid_ptr = xmalloc (sizeof (ptid_t));
7122 *saved_ptid_ptr = inferior_ptid;
7123 return make_cleanup (restore_inferior_ptid, saved_ptid_ptr);
7126 /* See inferior.h. */
7129 clear_exit_convenience_vars (void)
7131 clear_internalvar (lookup_internalvar ("_exitsignal"));
7132 clear_internalvar (lookup_internalvar ("_exitcode"));
7136 /* User interface for reverse debugging:
7137 Set exec-direction / show exec-direction commands
7138 (returns error unless target implements to_set_exec_direction method). */
7140 int execution_direction = EXEC_FORWARD;
7141 static const char exec_forward[] = "forward";
7142 static const char exec_reverse[] = "reverse";
7143 static const char *exec_direction = exec_forward;
7144 static const char *const exec_direction_names[] = {
7151 set_exec_direction_func (char *args, int from_tty,
7152 struct cmd_list_element *cmd)
7154 if (target_can_execute_reverse)
7156 if (!strcmp (exec_direction, exec_forward))
7157 execution_direction = EXEC_FORWARD;
7158 else if (!strcmp (exec_direction, exec_reverse))
7159 execution_direction = EXEC_REVERSE;
7163 exec_direction = exec_forward;
7164 error (_("Target does not support this operation."));
7169 show_exec_direction_func (struct ui_file *out, int from_tty,
7170 struct cmd_list_element *cmd, const char *value)
7172 switch (execution_direction) {
7174 fprintf_filtered (out, _("Forward.\n"));
7177 fprintf_filtered (out, _("Reverse.\n"));
7180 internal_error (__FILE__, __LINE__,
7181 _("bogus execution_direction value: %d"),
7182 (int) execution_direction);
7187 show_schedule_multiple (struct ui_file *file, int from_tty,
7188 struct cmd_list_element *c, const char *value)
7190 fprintf_filtered (file, _("Resuming the execution of threads "
7191 "of all processes is %s.\n"), value);
7194 /* Implementation of `siginfo' variable. */
7196 static const struct internalvar_funcs siginfo_funcs =
7204 _initialize_infrun (void)
7208 struct cmd_list_element *c;
7210 add_info ("signals", signals_info, _("\
7211 What debugger does when program gets various signals.\n\
7212 Specify a signal as argument to print info on that signal only."));
7213 add_info_alias ("handle", "signals", 0);
7215 c = add_com ("handle", class_run, handle_command, _("\
7216 Specify how to handle signals.\n\
7217 Usage: handle SIGNAL [ACTIONS]\n\
7218 Args are signals and actions to apply to those signals.\n\
7219 If no actions are specified, the current settings for the specified signals\n\
7220 will be displayed instead.\n\
7222 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
7223 from 1-15 are allowed for compatibility with old versions of GDB.\n\
7224 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
7225 The special arg \"all\" is recognized to mean all signals except those\n\
7226 used by the debugger, typically SIGTRAP and SIGINT.\n\
7228 Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
7229 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
7230 Stop means reenter debugger if this signal happens (implies print).\n\
7231 Print means print a message if this signal happens.\n\
7232 Pass means let program see this signal; otherwise program doesn't know.\n\
7233 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
7234 Pass and Stop may be combined.\n\
7236 Multiple signals may be specified. Signal numbers and signal names\n\
7237 may be interspersed with actions, with the actions being performed for\n\
7238 all signals cumulatively specified."));
7239 set_cmd_completer (c, handle_completer);
7243 add_com ("lz", class_info, signals_info, _("\
7244 What debugger does when program gets various signals.\n\
7245 Specify a signal as argument to print info on that signal only."));
7246 add_com ("z", class_run, xdb_handle_command, _("\
7247 Specify how to handle a signal.\n\
7248 Args are signals and actions to apply to those signals.\n\
7249 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
7250 from 1-15 are allowed for compatibility with old versions of GDB.\n\
7251 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
7252 The special arg \"all\" is recognized to mean all signals except those\n\
7253 used by the debugger, typically SIGTRAP and SIGINT.\n\
7254 Recognized actions include \"s\" (toggles between stop and nostop),\n\
7255 \"r\" (toggles between print and noprint), \"i\" (toggles between pass and \
7256 nopass), \"Q\" (noprint)\n\
7257 Stop means reenter debugger if this signal happens (implies print).\n\
7258 Print means print a message if this signal happens.\n\
7259 Pass means let program see this signal; otherwise program doesn't know.\n\
7260 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
7261 Pass and Stop may be combined."));
7265 stop_command = add_cmd ("stop", class_obscure,
7266 not_just_help_class_command, _("\
7267 There is no `stop' command, but you can set a hook on `stop'.\n\
7268 This allows you to set a list of commands to be run each time execution\n\
7269 of the program stops."), &cmdlist);
7271 add_setshow_zuinteger_cmd ("infrun", class_maintenance, &debug_infrun, _("\
7272 Set inferior debugging."), _("\
7273 Show inferior debugging."), _("\
7274 When non-zero, inferior specific debugging is enabled."),
7277 &setdebuglist, &showdebuglist);
7279 add_setshow_boolean_cmd ("displaced", class_maintenance,
7280 &debug_displaced, _("\
7281 Set displaced stepping debugging."), _("\
7282 Show displaced stepping debugging."), _("\
7283 When non-zero, displaced stepping specific debugging is enabled."),
7285 show_debug_displaced,
7286 &setdebuglist, &showdebuglist);
7288 add_setshow_boolean_cmd ("non-stop", no_class,
7290 Set whether gdb controls the inferior in non-stop mode."), _("\
7291 Show whether gdb controls the inferior in non-stop mode."), _("\
7292 When debugging a multi-threaded program and this setting is\n\
7293 off (the default, also called all-stop mode), when one thread stops\n\
7294 (for a breakpoint, watchpoint, exception, or similar events), GDB stops\n\
7295 all other threads in the program while you interact with the thread of\n\
7296 interest. When you continue or step a thread, you can allow the other\n\
7297 threads to run, or have them remain stopped, but while you inspect any\n\
7298 thread's state, all threads stop.\n\
7300 In non-stop mode, when one thread stops, other threads can continue\n\
7301 to run freely. You'll be able to step each thread independently,\n\
7302 leave it stopped or free to run as needed."),
7308 numsigs = (int) GDB_SIGNAL_LAST;
7309 signal_stop = (unsigned char *) xmalloc (sizeof (signal_stop[0]) * numsigs);
7310 signal_print = (unsigned char *)
7311 xmalloc (sizeof (signal_print[0]) * numsigs);
7312 signal_program = (unsigned char *)
7313 xmalloc (sizeof (signal_program[0]) * numsigs);
7314 signal_catch = (unsigned char *)
7315 xmalloc (sizeof (signal_catch[0]) * numsigs);
7316 signal_pass = (unsigned char *)
7317 xmalloc (sizeof (signal_program[0]) * numsigs);
7318 for (i = 0; i < numsigs; i++)
7321 signal_print[i] = 1;
7322 signal_program[i] = 1;
7323 signal_catch[i] = 0;
7326 /* Signals caused by debugger's own actions
7327 should not be given to the program afterwards. */
7328 signal_program[GDB_SIGNAL_TRAP] = 0;
7329 signal_program[GDB_SIGNAL_INT] = 0;
7331 /* Signals that are not errors should not normally enter the debugger. */
7332 signal_stop[GDB_SIGNAL_ALRM] = 0;
7333 signal_print[GDB_SIGNAL_ALRM] = 0;
7334 signal_stop[GDB_SIGNAL_VTALRM] = 0;
7335 signal_print[GDB_SIGNAL_VTALRM] = 0;
7336 signal_stop[GDB_SIGNAL_PROF] = 0;
7337 signal_print[GDB_SIGNAL_PROF] = 0;
7338 signal_stop[GDB_SIGNAL_CHLD] = 0;
7339 signal_print[GDB_SIGNAL_CHLD] = 0;
7340 signal_stop[GDB_SIGNAL_IO] = 0;
7341 signal_print[GDB_SIGNAL_IO] = 0;
7342 signal_stop[GDB_SIGNAL_POLL] = 0;
7343 signal_print[GDB_SIGNAL_POLL] = 0;
7344 signal_stop[GDB_SIGNAL_URG] = 0;
7345 signal_print[GDB_SIGNAL_URG] = 0;
7346 signal_stop[GDB_SIGNAL_WINCH] = 0;
7347 signal_print[GDB_SIGNAL_WINCH] = 0;
7348 signal_stop[GDB_SIGNAL_PRIO] = 0;
7349 signal_print[GDB_SIGNAL_PRIO] = 0;
7351 /* These signals are used internally by user-level thread
7352 implementations. (See signal(5) on Solaris.) Like the above
7353 signals, a healthy program receives and handles them as part of
7354 its normal operation. */
7355 signal_stop[GDB_SIGNAL_LWP] = 0;
7356 signal_print[GDB_SIGNAL_LWP] = 0;
7357 signal_stop[GDB_SIGNAL_WAITING] = 0;
7358 signal_print[GDB_SIGNAL_WAITING] = 0;
7359 signal_stop[GDB_SIGNAL_CANCEL] = 0;
7360 signal_print[GDB_SIGNAL_CANCEL] = 0;
7362 /* Update cached state. */
7363 signal_cache_update (-1);
7365 add_setshow_zinteger_cmd ("stop-on-solib-events", class_support,
7366 &stop_on_solib_events, _("\
7367 Set stopping for shared library events."), _("\
7368 Show stopping for shared library events."), _("\
7369 If nonzero, gdb will give control to the user when the dynamic linker\n\
7370 notifies gdb of shared library events. The most common event of interest\n\
7371 to the user would be loading/unloading of a new library."),
7372 set_stop_on_solib_events,
7373 show_stop_on_solib_events,
7374 &setlist, &showlist);
7376 add_setshow_enum_cmd ("follow-fork-mode", class_run,
7377 follow_fork_mode_kind_names,
7378 &follow_fork_mode_string, _("\
7379 Set debugger response to a program call of fork or vfork."), _("\
7380 Show debugger response to a program call of fork or vfork."), _("\
7381 A fork or vfork creates a new process. follow-fork-mode can be:\n\
7382 parent - the original process is debugged after a fork\n\
7383 child - the new process is debugged after a fork\n\
7384 The unfollowed process will continue to run.\n\
7385 By default, the debugger will follow the parent process."),
7387 show_follow_fork_mode_string,
7388 &setlist, &showlist);
7390 add_setshow_enum_cmd ("follow-exec-mode", class_run,
7391 follow_exec_mode_names,
7392 &follow_exec_mode_string, _("\
7393 Set debugger response to a program call of exec."), _("\
7394 Show debugger response to a program call of exec."), _("\
7395 An exec call replaces the program image of a process.\n\
7397 follow-exec-mode can be:\n\
7399 new - the debugger creates a new inferior and rebinds the process\n\
7400 to this new inferior. The program the process was running before\n\
7401 the exec call can be restarted afterwards by restarting the original\n\
7404 same - the debugger keeps the process bound to the same inferior.\n\
7405 The new executable image replaces the previous executable loaded in\n\
7406 the inferior. Restarting the inferior after the exec call restarts\n\
7407 the executable the process was running after the exec call.\n\
7409 By default, the debugger will use the same inferior."),
7411 show_follow_exec_mode_string,
7412 &setlist, &showlist);
7414 add_setshow_enum_cmd ("scheduler-locking", class_run,
7415 scheduler_enums, &scheduler_mode, _("\
7416 Set mode for locking scheduler during execution."), _("\
7417 Show mode for locking scheduler during execution."), _("\
7418 off == no locking (threads may preempt at any time)\n\
7419 on == full locking (no thread except the current thread may run)\n\
7420 step == scheduler locked during every single-step operation.\n\
7421 In this mode, no other thread may run during a step command.\n\
7422 Other threads may run while stepping over a function call ('next')."),
7423 set_schedlock_func, /* traps on target vector */
7424 show_scheduler_mode,
7425 &setlist, &showlist);
7427 add_setshow_boolean_cmd ("schedule-multiple", class_run, &sched_multi, _("\
7428 Set mode for resuming threads of all processes."), _("\
7429 Show mode for resuming threads of all processes."), _("\
7430 When on, execution commands (such as 'continue' or 'next') resume all\n\
7431 threads of all processes. When off (which is the default), execution\n\
7432 commands only resume the threads of the current process. The set of\n\
7433 threads that are resumed is further refined by the scheduler-locking\n\
7434 mode (see help set scheduler-locking)."),
7436 show_schedule_multiple,
7437 &setlist, &showlist);
7439 add_setshow_boolean_cmd ("step-mode", class_run, &step_stop_if_no_debug, _("\
7440 Set mode of the step operation."), _("\
7441 Show mode of the step operation."), _("\
7442 When set, doing a step over a function without debug line information\n\
7443 will stop at the first instruction of that function. Otherwise, the\n\
7444 function is skipped and the step command stops at a different source line."),
7446 show_step_stop_if_no_debug,
7447 &setlist, &showlist);
7449 add_setshow_auto_boolean_cmd ("displaced-stepping", class_run,
7450 &can_use_displaced_stepping, _("\
7451 Set debugger's willingness to use displaced stepping."), _("\
7452 Show debugger's willingness to use displaced stepping."), _("\
7453 If on, gdb will use displaced stepping to step over breakpoints if it is\n\
7454 supported by the target architecture. If off, gdb will not use displaced\n\
7455 stepping to step over breakpoints, even if such is supported by the target\n\
7456 architecture. If auto (which is the default), gdb will use displaced stepping\n\
7457 if the target architecture supports it and non-stop mode is active, but will not\n\
7458 use it in all-stop mode (see help set non-stop)."),
7460 show_can_use_displaced_stepping,
7461 &setlist, &showlist);
7463 add_setshow_enum_cmd ("exec-direction", class_run, exec_direction_names,
7464 &exec_direction, _("Set direction of execution.\n\
7465 Options are 'forward' or 'reverse'."),
7466 _("Show direction of execution (forward/reverse)."),
7467 _("Tells gdb whether to execute forward or backward."),
7468 set_exec_direction_func, show_exec_direction_func,
7469 &setlist, &showlist);
7471 /* Set/show detach-on-fork: user-settable mode. */
7473 add_setshow_boolean_cmd ("detach-on-fork", class_run, &detach_fork, _("\
7474 Set whether gdb will detach the child of a fork."), _("\
7475 Show whether gdb will detach the child of a fork."), _("\
7476 Tells gdb whether to detach the child of a fork."),
7477 NULL, NULL, &setlist, &showlist);
7479 /* Set/show disable address space randomization mode. */
7481 add_setshow_boolean_cmd ("disable-randomization", class_support,
7482 &disable_randomization, _("\
7483 Set disabling of debuggee's virtual address space randomization."), _("\
7484 Show disabling of debuggee's virtual address space randomization."), _("\
7485 When this mode is on (which is the default), randomization of the virtual\n\
7486 address space is disabled. Standalone programs run with the randomization\n\
7487 enabled by default on some platforms."),
7488 &set_disable_randomization,
7489 &show_disable_randomization,
7490 &setlist, &showlist);
7492 /* ptid initializations */
7493 inferior_ptid = null_ptid;
7494 target_last_wait_ptid = minus_one_ptid;
7496 observer_attach_thread_ptid_changed (infrun_thread_ptid_changed);
7497 observer_attach_thread_stop_requested (infrun_thread_stop_requested);
7498 observer_attach_thread_exit (infrun_thread_thread_exit);
7499 observer_attach_inferior_exit (infrun_inferior_exit);
7501 /* Explicitly create without lookup, since that tries to create a
7502 value with a void typed value, and when we get here, gdbarch
7503 isn't initialized yet. At this point, we're quite sure there
7504 isn't another convenience variable of the same name. */
7505 create_internalvar_type_lazy ("_siginfo", &siginfo_funcs, NULL);
7507 add_setshow_boolean_cmd ("observer", no_class,
7508 &observer_mode_1, _("\
7509 Set whether gdb controls the inferior in observer mode."), _("\
7510 Show whether gdb controls the inferior in observer mode."), _("\
7511 In observer mode, GDB can get data from the inferior, but not\n\
7512 affect its execution. Registers and memory may not be changed,\n\
7513 breakpoints may not be set, and the program cannot be interrupted\n\