1 /* Target-struct-independent code to start (run) and stop an inferior
4 Copyright (C) 1986-2013 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #include "gdb_string.h"
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"
64 /* Prototypes for local functions */
66 static void signals_info (char *, int);
68 static void handle_command (char *, int);
70 static void sig_print_info (enum gdb_signal);
72 static void sig_print_header (void);
74 static void resume_cleanups (void *);
76 static int hook_stop_stub (void *);
78 static int restore_selected_frame (void *);
80 static int follow_fork (void);
82 static void set_schedlock_func (char *args, int from_tty,
83 struct cmd_list_element *c);
85 static int currently_stepping (struct thread_info *tp);
87 static int currently_stepping_or_nexting_callback (struct thread_info *tp,
90 static void xdb_handle_command (char *args, int from_tty);
92 static int prepare_to_proceed (int);
94 static void print_exited_reason (int exitstatus);
96 static void print_signal_exited_reason (enum gdb_signal siggnal);
98 static void print_no_history_reason (void);
100 static void print_signal_received_reason (enum gdb_signal siggnal);
102 static void print_end_stepping_range_reason (void);
104 void _initialize_infrun (void);
106 void nullify_last_target_wait_ptid (void);
108 static void insert_hp_step_resume_breakpoint_at_frame (struct frame_info *);
110 static void insert_step_resume_breakpoint_at_caller (struct frame_info *);
112 static void insert_longjmp_resume_breakpoint (struct gdbarch *, CORE_ADDR);
114 /* When set, stop the 'step' command if we enter a function which has
115 no line number information. The normal behavior is that we step
116 over such function. */
117 int step_stop_if_no_debug = 0;
119 show_step_stop_if_no_debug (struct ui_file *file, int from_tty,
120 struct cmd_list_element *c, const char *value)
122 fprintf_filtered (file, _("Mode of the step operation is %s.\n"), value);
125 /* In asynchronous mode, but simulating synchronous execution. */
127 int sync_execution = 0;
129 /* wait_for_inferior and normal_stop use this to notify the user
130 when the inferior stopped in a different thread than it had been
133 static ptid_t previous_inferior_ptid;
135 /* Default behavior is to detach newly forked processes (legacy). */
138 int debug_displaced = 0;
140 show_debug_displaced (struct ui_file *file, int from_tty,
141 struct cmd_list_element *c, const char *value)
143 fprintf_filtered (file, _("Displace stepping debugging is %s.\n"), value);
146 unsigned int debug_infrun = 0;
148 show_debug_infrun (struct ui_file *file, int from_tty,
149 struct cmd_list_element *c, const char *value)
151 fprintf_filtered (file, _("Inferior debugging is %s.\n"), value);
155 /* Support for disabling address space randomization. */
157 int disable_randomization = 1;
160 show_disable_randomization (struct ui_file *file, int from_tty,
161 struct cmd_list_element *c, const char *value)
163 if (target_supports_disable_randomization ())
164 fprintf_filtered (file,
165 _("Disabling randomization of debuggee's "
166 "virtual address space is %s.\n"),
169 fputs_filtered (_("Disabling randomization of debuggee's "
170 "virtual address space is unsupported on\n"
171 "this platform.\n"), file);
175 set_disable_randomization (char *args, int from_tty,
176 struct cmd_list_element *c)
178 if (!target_supports_disable_randomization ())
179 error (_("Disabling randomization of debuggee's "
180 "virtual address space is unsupported on\n"
185 /* If the program uses ELF-style shared libraries, then calls to
186 functions in shared libraries go through stubs, which live in a
187 table called the PLT (Procedure Linkage Table). The first time the
188 function is called, the stub sends control to the dynamic linker,
189 which looks up the function's real address, patches the stub so
190 that future calls will go directly to the function, and then passes
191 control to the function.
193 If we are stepping at the source level, we don't want to see any of
194 this --- we just want to skip over the stub and the dynamic linker.
195 The simple approach is to single-step until control leaves the
198 However, on some systems (e.g., Red Hat's 5.2 distribution) the
199 dynamic linker calls functions in the shared C library, so you
200 can't tell from the PC alone whether the dynamic linker is still
201 running. In this case, we use a step-resume breakpoint to get us
202 past the dynamic linker, as if we were using "next" to step over a
205 in_solib_dynsym_resolve_code() says whether we're in the dynamic
206 linker code or not. Normally, this means we single-step. However,
207 if SKIP_SOLIB_RESOLVER then returns non-zero, then its value is an
208 address where we can place a step-resume breakpoint to get past the
209 linker's symbol resolution function.
211 in_solib_dynsym_resolve_code() can generally be implemented in a
212 pretty portable way, by comparing the PC against the address ranges
213 of the dynamic linker's sections.
215 SKIP_SOLIB_RESOLVER is generally going to be system-specific, since
216 it depends on internal details of the dynamic linker. It's usually
217 not too hard to figure out where to put a breakpoint, but it
218 certainly isn't portable. SKIP_SOLIB_RESOLVER should do plenty of
219 sanity checking. If it can't figure things out, returning zero and
220 getting the (possibly confusing) stepping behavior is better than
221 signalling an error, which will obscure the change in the
224 /* This function returns TRUE if pc is the address of an instruction
225 that lies within the dynamic linker (such as the event hook, or the
228 This function must be used only when a dynamic linker event has
229 been caught, and the inferior is being stepped out of the hook, or
230 undefined results are guaranteed. */
232 #ifndef SOLIB_IN_DYNAMIC_LINKER
233 #define SOLIB_IN_DYNAMIC_LINKER(pid,pc) 0
236 /* "Observer mode" is somewhat like a more extreme version of
237 non-stop, in which all GDB operations that might affect the
238 target's execution have been disabled. */
240 static int non_stop_1 = 0;
242 int observer_mode = 0;
243 static int observer_mode_1 = 0;
246 set_observer_mode (char *args, int from_tty,
247 struct cmd_list_element *c)
249 extern int pagination_enabled;
251 if (target_has_execution)
253 observer_mode_1 = observer_mode;
254 error (_("Cannot change this setting while the inferior is running."));
257 observer_mode = observer_mode_1;
259 may_write_registers = !observer_mode;
260 may_write_memory = !observer_mode;
261 may_insert_breakpoints = !observer_mode;
262 may_insert_tracepoints = !observer_mode;
263 /* We can insert fast tracepoints in or out of observer mode,
264 but enable them if we're going into this mode. */
266 may_insert_fast_tracepoints = 1;
267 may_stop = !observer_mode;
268 update_target_permissions ();
270 /* Going *into* observer mode we must force non-stop, then
271 going out we leave it that way. */
274 target_async_permitted = 1;
275 pagination_enabled = 0;
276 non_stop = non_stop_1 = 1;
280 printf_filtered (_("Observer mode is now %s.\n"),
281 (observer_mode ? "on" : "off"));
285 show_observer_mode (struct ui_file *file, int from_tty,
286 struct cmd_list_element *c, const char *value)
288 fprintf_filtered (file, _("Observer mode is %s.\n"), value);
291 /* This updates the value of observer mode based on changes in
292 permissions. Note that we are deliberately ignoring the values of
293 may-write-registers and may-write-memory, since the user may have
294 reason to enable these during a session, for instance to turn on a
295 debugging-related global. */
298 update_observer_mode (void)
302 newval = (!may_insert_breakpoints
303 && !may_insert_tracepoints
304 && may_insert_fast_tracepoints
308 /* Let the user know if things change. */
309 if (newval != observer_mode)
310 printf_filtered (_("Observer mode is now %s.\n"),
311 (newval ? "on" : "off"));
313 observer_mode = observer_mode_1 = newval;
316 /* Tables of how to react to signals; the user sets them. */
318 static unsigned char *signal_stop;
319 static unsigned char *signal_print;
320 static unsigned char *signal_program;
322 /* Table of signals that are registered with "catch signal". A
323 non-zero entry indicates that the signal is caught by some "catch
324 signal" command. This has size GDB_SIGNAL_LAST, to accommodate all
326 static unsigned char *signal_catch;
328 /* Table of signals that the target may silently handle.
329 This is automatically determined from the flags above,
330 and simply cached here. */
331 static unsigned char *signal_pass;
333 #define SET_SIGS(nsigs,sigs,flags) \
335 int signum = (nsigs); \
336 while (signum-- > 0) \
337 if ((sigs)[signum]) \
338 (flags)[signum] = 1; \
341 #define UNSET_SIGS(nsigs,sigs,flags) \
343 int signum = (nsigs); \
344 while (signum-- > 0) \
345 if ((sigs)[signum]) \
346 (flags)[signum] = 0; \
349 /* Update the target's copy of SIGNAL_PROGRAM. The sole purpose of
350 this function is to avoid exporting `signal_program'. */
353 update_signals_program_target (void)
355 target_program_signals ((int) GDB_SIGNAL_LAST, signal_program);
358 /* Value to pass to target_resume() to cause all threads to resume. */
360 #define RESUME_ALL minus_one_ptid
362 /* Command list pointer for the "stop" placeholder. */
364 static struct cmd_list_element *stop_command;
366 /* Function inferior was in as of last step command. */
368 static struct symbol *step_start_function;
370 /* Nonzero if we want to give control to the user when we're notified
371 of shared library events by the dynamic linker. */
372 int stop_on_solib_events;
374 show_stop_on_solib_events (struct ui_file *file, int from_tty,
375 struct cmd_list_element *c, const char *value)
377 fprintf_filtered (file, _("Stopping for shared library events is %s.\n"),
381 /* Nonzero means expecting a trace trap
382 and should stop the inferior and return silently when it happens. */
386 /* Save register contents here when executing a "finish" command or are
387 about to pop a stack dummy frame, if-and-only-if proceed_to_finish is set.
388 Thus this contains the return value from the called function (assuming
389 values are returned in a register). */
391 struct regcache *stop_registers;
393 /* Nonzero after stop if current stack frame should be printed. */
395 static int stop_print_frame;
397 /* This is a cached copy of the pid/waitstatus of the last event
398 returned by target_wait()/deprecated_target_wait_hook(). This
399 information is returned by get_last_target_status(). */
400 static ptid_t target_last_wait_ptid;
401 static struct target_waitstatus target_last_waitstatus;
403 static void context_switch (ptid_t ptid);
405 void init_thread_stepping_state (struct thread_info *tss);
407 static void init_infwait_state (void);
409 static const char follow_fork_mode_child[] = "child";
410 static const char follow_fork_mode_parent[] = "parent";
412 static const char *const follow_fork_mode_kind_names[] = {
413 follow_fork_mode_child,
414 follow_fork_mode_parent,
418 static const char *follow_fork_mode_string = follow_fork_mode_parent;
420 show_follow_fork_mode_string (struct ui_file *file, int from_tty,
421 struct cmd_list_element *c, const char *value)
423 fprintf_filtered (file,
424 _("Debugger response to a program "
425 "call of fork or vfork is \"%s\".\n"),
430 /* Tell the target to follow the fork we're stopped at. Returns true
431 if the inferior should be resumed; false, if the target for some
432 reason decided it's best not to resume. */
437 int follow_child = (follow_fork_mode_string == follow_fork_mode_child);
438 int should_resume = 1;
439 struct thread_info *tp;
441 /* Copy user stepping state to the new inferior thread. FIXME: the
442 followed fork child thread should have a copy of most of the
443 parent thread structure's run control related fields, not just these.
444 Initialized to avoid "may be used uninitialized" warnings from gcc. */
445 struct breakpoint *step_resume_breakpoint = NULL;
446 struct breakpoint *exception_resume_breakpoint = NULL;
447 CORE_ADDR step_range_start = 0;
448 CORE_ADDR step_range_end = 0;
449 struct frame_id step_frame_id = { 0 };
454 struct target_waitstatus wait_status;
456 /* Get the last target status returned by target_wait(). */
457 get_last_target_status (&wait_ptid, &wait_status);
459 /* If not stopped at a fork event, then there's nothing else to
461 if (wait_status.kind != TARGET_WAITKIND_FORKED
462 && wait_status.kind != TARGET_WAITKIND_VFORKED)
465 /* Check if we switched over from WAIT_PTID, since the event was
467 if (!ptid_equal (wait_ptid, minus_one_ptid)
468 && !ptid_equal (inferior_ptid, wait_ptid))
470 /* We did. Switch back to WAIT_PTID thread, to tell the
471 target to follow it (in either direction). We'll
472 afterwards refuse to resume, and inform the user what
474 switch_to_thread (wait_ptid);
479 tp = inferior_thread ();
481 /* If there were any forks/vforks that were caught and are now to be
482 followed, then do so now. */
483 switch (tp->pending_follow.kind)
485 case TARGET_WAITKIND_FORKED:
486 case TARGET_WAITKIND_VFORKED:
488 ptid_t parent, child;
490 /* If the user did a next/step, etc, over a fork call,
491 preserve the stepping state in the fork child. */
492 if (follow_child && should_resume)
494 step_resume_breakpoint = clone_momentary_breakpoint
495 (tp->control.step_resume_breakpoint);
496 step_range_start = tp->control.step_range_start;
497 step_range_end = tp->control.step_range_end;
498 step_frame_id = tp->control.step_frame_id;
499 exception_resume_breakpoint
500 = clone_momentary_breakpoint (tp->control.exception_resume_breakpoint);
502 /* For now, delete the parent's sr breakpoint, otherwise,
503 parent/child sr breakpoints are considered duplicates,
504 and the child version will not be installed. Remove
505 this when the breakpoints module becomes aware of
506 inferiors and address spaces. */
507 delete_step_resume_breakpoint (tp);
508 tp->control.step_range_start = 0;
509 tp->control.step_range_end = 0;
510 tp->control.step_frame_id = null_frame_id;
511 delete_exception_resume_breakpoint (tp);
514 parent = inferior_ptid;
515 child = tp->pending_follow.value.related_pid;
517 /* Tell the target to do whatever is necessary to follow
518 either parent or child. */
519 if (target_follow_fork (follow_child))
521 /* Target refused to follow, or there's some other reason
522 we shouldn't resume. */
527 /* This pending follow fork event is now handled, one way
528 or another. The previous selected thread may be gone
529 from the lists by now, but if it is still around, need
530 to clear the pending follow request. */
531 tp = find_thread_ptid (parent);
533 tp->pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
535 /* This makes sure we don't try to apply the "Switched
536 over from WAIT_PID" logic above. */
537 nullify_last_target_wait_ptid ();
539 /* If we followed the child, switch to it... */
542 switch_to_thread (child);
544 /* ... and preserve the stepping state, in case the
545 user was stepping over the fork call. */
548 tp = inferior_thread ();
549 tp->control.step_resume_breakpoint
550 = step_resume_breakpoint;
551 tp->control.step_range_start = step_range_start;
552 tp->control.step_range_end = step_range_end;
553 tp->control.step_frame_id = step_frame_id;
554 tp->control.exception_resume_breakpoint
555 = exception_resume_breakpoint;
559 /* If we get here, it was because we're trying to
560 resume from a fork catchpoint, but, the user
561 has switched threads away from the thread that
562 forked. In that case, the resume command
563 issued is most likely not applicable to the
564 child, so just warn, and refuse to resume. */
565 warning (_("Not resuming: switched threads "
566 "before following fork child.\n"));
569 /* Reset breakpoints in the child as appropriate. */
570 follow_inferior_reset_breakpoints ();
573 switch_to_thread (parent);
577 case TARGET_WAITKIND_SPURIOUS:
578 /* Nothing to follow. */
581 internal_error (__FILE__, __LINE__,
582 "Unexpected pending_follow.kind %d\n",
583 tp->pending_follow.kind);
587 return should_resume;
591 follow_inferior_reset_breakpoints (void)
593 struct thread_info *tp = inferior_thread ();
595 /* Was there a step_resume breakpoint? (There was if the user
596 did a "next" at the fork() call.) If so, explicitly reset its
599 step_resumes are a form of bp that are made to be per-thread.
600 Since we created the step_resume bp when the parent process
601 was being debugged, and now are switching to the child process,
602 from the breakpoint package's viewpoint, that's a switch of
603 "threads". We must update the bp's notion of which thread
604 it is for, or it'll be ignored when it triggers. */
606 if (tp->control.step_resume_breakpoint)
607 breakpoint_re_set_thread (tp->control.step_resume_breakpoint);
609 if (tp->control.exception_resume_breakpoint)
610 breakpoint_re_set_thread (tp->control.exception_resume_breakpoint);
612 /* Reinsert all breakpoints in the child. The user may have set
613 breakpoints after catching the fork, in which case those
614 were never set in the child, but only in the parent. This makes
615 sure the inserted breakpoints match the breakpoint list. */
617 breakpoint_re_set ();
618 insert_breakpoints ();
621 /* The child has exited or execed: resume threads of the parent the
622 user wanted to be executing. */
625 proceed_after_vfork_done (struct thread_info *thread,
628 int pid = * (int *) arg;
630 if (ptid_get_pid (thread->ptid) == pid
631 && is_running (thread->ptid)
632 && !is_executing (thread->ptid)
633 && !thread->stop_requested
634 && thread->suspend.stop_signal == GDB_SIGNAL_0)
637 fprintf_unfiltered (gdb_stdlog,
638 "infrun: resuming vfork parent thread %s\n",
639 target_pid_to_str (thread->ptid));
641 switch_to_thread (thread->ptid);
642 clear_proceed_status ();
643 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
649 /* Called whenever we notice an exec or exit event, to handle
650 detaching or resuming a vfork parent. */
653 handle_vfork_child_exec_or_exit (int exec)
655 struct inferior *inf = current_inferior ();
657 if (inf->vfork_parent)
659 int resume_parent = -1;
661 /* This exec or exit marks the end of the shared memory region
662 between the parent and the child. If the user wanted to
663 detach from the parent, now is the time. */
665 if (inf->vfork_parent->pending_detach)
667 struct thread_info *tp;
668 struct cleanup *old_chain;
669 struct program_space *pspace;
670 struct address_space *aspace;
672 /* follow-fork child, detach-on-fork on. */
674 inf->vfork_parent->pending_detach = 0;
678 /* If we're handling a child exit, then inferior_ptid
679 points at the inferior's pid, not to a thread. */
680 old_chain = save_inferior_ptid ();
681 save_current_program_space ();
682 save_current_inferior ();
685 old_chain = save_current_space_and_thread ();
687 /* We're letting loose of the parent. */
688 tp = any_live_thread_of_process (inf->vfork_parent->pid);
689 switch_to_thread (tp->ptid);
691 /* We're about to detach from the parent, which implicitly
692 removes breakpoints from its address space. There's a
693 catch here: we want to reuse the spaces for the child,
694 but, parent/child are still sharing the pspace at this
695 point, although the exec in reality makes the kernel give
696 the child a fresh set of new pages. The problem here is
697 that the breakpoints module being unaware of this, would
698 likely chose the child process to write to the parent
699 address space. Swapping the child temporarily away from
700 the spaces has the desired effect. Yes, this is "sort
703 pspace = inf->pspace;
704 aspace = inf->aspace;
708 if (debug_infrun || info_verbose)
710 target_terminal_ours ();
713 fprintf_filtered (gdb_stdlog,
714 "Detaching vfork parent process "
715 "%d after child exec.\n",
716 inf->vfork_parent->pid);
718 fprintf_filtered (gdb_stdlog,
719 "Detaching vfork parent process "
720 "%d after child exit.\n",
721 inf->vfork_parent->pid);
724 target_detach (NULL, 0);
727 inf->pspace = pspace;
728 inf->aspace = aspace;
730 do_cleanups (old_chain);
734 /* We're staying attached to the parent, so, really give the
735 child a new address space. */
736 inf->pspace = add_program_space (maybe_new_address_space ());
737 inf->aspace = inf->pspace->aspace;
739 set_current_program_space (inf->pspace);
741 resume_parent = inf->vfork_parent->pid;
743 /* Break the bonds. */
744 inf->vfork_parent->vfork_child = NULL;
748 struct cleanup *old_chain;
749 struct program_space *pspace;
751 /* If this is a vfork child exiting, then the pspace and
752 aspaces were shared with the parent. Since we're
753 reporting the process exit, we'll be mourning all that is
754 found in the address space, and switching to null_ptid,
755 preparing to start a new inferior. But, since we don't
756 want to clobber the parent's address/program spaces, we
757 go ahead and create a new one for this exiting
760 /* Switch to null_ptid, so that clone_program_space doesn't want
761 to read the selected frame of a dead process. */
762 old_chain = save_inferior_ptid ();
763 inferior_ptid = null_ptid;
765 /* This inferior is dead, so avoid giving the breakpoints
766 module the option to write through to it (cloning a
767 program space resets breakpoints). */
770 pspace = add_program_space (maybe_new_address_space ());
771 set_current_program_space (pspace);
773 inf->symfile_flags = SYMFILE_NO_READ;
774 clone_program_space (pspace, inf->vfork_parent->pspace);
775 inf->pspace = pspace;
776 inf->aspace = pspace->aspace;
778 /* Put back inferior_ptid. We'll continue mourning this
780 do_cleanups (old_chain);
782 resume_parent = inf->vfork_parent->pid;
783 /* Break the bonds. */
784 inf->vfork_parent->vfork_child = NULL;
787 inf->vfork_parent = NULL;
789 gdb_assert (current_program_space == inf->pspace);
791 if (non_stop && resume_parent != -1)
793 /* If the user wanted the parent to be running, let it go
795 struct cleanup *old_chain = make_cleanup_restore_current_thread ();
798 fprintf_unfiltered (gdb_stdlog,
799 "infrun: resuming vfork parent process %d\n",
802 iterate_over_threads (proceed_after_vfork_done, &resume_parent);
804 do_cleanups (old_chain);
809 /* Enum strings for "set|show follow-exec-mode". */
811 static const char follow_exec_mode_new[] = "new";
812 static const char follow_exec_mode_same[] = "same";
813 static const char *const follow_exec_mode_names[] =
815 follow_exec_mode_new,
816 follow_exec_mode_same,
820 static const char *follow_exec_mode_string = follow_exec_mode_same;
822 show_follow_exec_mode_string (struct ui_file *file, int from_tty,
823 struct cmd_list_element *c, const char *value)
825 fprintf_filtered (file, _("Follow exec mode is \"%s\".\n"), value);
828 /* EXECD_PATHNAME is assumed to be non-NULL. */
831 follow_exec (ptid_t pid, char *execd_pathname)
833 struct thread_info *th = inferior_thread ();
834 struct inferior *inf = current_inferior ();
836 /* This is an exec event that we actually wish to pay attention to.
837 Refresh our symbol table to the newly exec'd program, remove any
840 If there are breakpoints, they aren't really inserted now,
841 since the exec() transformed our inferior into a fresh set
844 We want to preserve symbolic breakpoints on the list, since
845 we have hopes that they can be reset after the new a.out's
846 symbol table is read.
848 However, any "raw" breakpoints must be removed from the list
849 (e.g., the solib bp's), since their address is probably invalid
852 And, we DON'T want to call delete_breakpoints() here, since
853 that may write the bp's "shadow contents" (the instruction
854 value that was overwritten witha TRAP instruction). Since
855 we now have a new a.out, those shadow contents aren't valid. */
857 mark_breakpoints_out ();
859 update_breakpoints_after_exec ();
861 /* If there was one, it's gone now. We cannot truly step-to-next
862 statement through an exec(). */
863 th->control.step_resume_breakpoint = NULL;
864 th->control.exception_resume_breakpoint = NULL;
865 th->control.step_range_start = 0;
866 th->control.step_range_end = 0;
868 /* The target reports the exec event to the main thread, even if
869 some other thread does the exec, and even if the main thread was
870 already stopped --- if debugging in non-stop mode, it's possible
871 the user had the main thread held stopped in the previous image
872 --- release it now. This is the same behavior as step-over-exec
873 with scheduler-locking on in all-stop mode. */
874 th->stop_requested = 0;
876 /* What is this a.out's name? */
877 printf_unfiltered (_("%s is executing new program: %s\n"),
878 target_pid_to_str (inferior_ptid),
881 /* We've followed the inferior through an exec. Therefore, the
882 inferior has essentially been killed & reborn. */
884 gdb_flush (gdb_stdout);
886 breakpoint_init_inferior (inf_execd);
888 if (gdb_sysroot && *gdb_sysroot)
890 char *name = alloca (strlen (gdb_sysroot)
891 + strlen (execd_pathname)
894 strcpy (name, gdb_sysroot);
895 strcat (name, execd_pathname);
896 execd_pathname = name;
899 /* Reset the shared library package. This ensures that we get a
900 shlib event when the child reaches "_start", at which point the
901 dld will have had a chance to initialize the child. */
902 /* Also, loading a symbol file below may trigger symbol lookups, and
903 we don't want those to be satisfied by the libraries of the
904 previous incarnation of this process. */
905 no_shared_libraries (NULL, 0);
907 if (follow_exec_mode_string == follow_exec_mode_new)
909 struct program_space *pspace;
911 /* The user wants to keep the old inferior and program spaces
912 around. Create a new fresh one, and switch to it. */
914 inf = add_inferior (current_inferior ()->pid);
915 pspace = add_program_space (maybe_new_address_space ());
916 inf->pspace = pspace;
917 inf->aspace = pspace->aspace;
919 exit_inferior_num_silent (current_inferior ()->num);
921 set_current_inferior (inf);
922 set_current_program_space (pspace);
926 /* The old description may no longer be fit for the new image.
927 E.g, a 64-bit process exec'ed a 32-bit process. Clear the
928 old description; we'll read a new one below. No need to do
929 this on "follow-exec-mode new", as the old inferior stays
930 around (its description is later cleared/refetched on
932 target_clear_description ();
935 gdb_assert (current_program_space == inf->pspace);
937 /* That a.out is now the one to use. */
938 exec_file_attach (execd_pathname, 0);
940 /* SYMFILE_DEFER_BP_RESET is used as the proper displacement for PIE
941 (Position Independent Executable) main symbol file will get applied by
942 solib_create_inferior_hook below. breakpoint_re_set would fail to insert
943 the breakpoints with the zero displacement. */
945 symbol_file_add (execd_pathname,
947 | SYMFILE_MAINLINE | SYMFILE_DEFER_BP_RESET),
950 if ((inf->symfile_flags & SYMFILE_NO_READ) == 0)
951 set_initial_language ();
953 /* If the target can specify a description, read it. Must do this
954 after flipping to the new executable (because the target supplied
955 description must be compatible with the executable's
956 architecture, and the old executable may e.g., be 32-bit, while
957 the new one 64-bit), and before anything involving memory or
959 target_find_description ();
961 solib_create_inferior_hook (0);
963 jit_inferior_created_hook ();
965 breakpoint_re_set ();
967 /* Reinsert all breakpoints. (Those which were symbolic have
968 been reset to the proper address in the new a.out, thanks
969 to symbol_file_command...). */
970 insert_breakpoints ();
972 /* The next resume of this inferior should bring it to the shlib
973 startup breakpoints. (If the user had also set bp's on
974 "main" from the old (parent) process, then they'll auto-
975 matically get reset there in the new process.). */
978 /* Non-zero if we just simulating a single-step. This is needed
979 because we cannot remove the breakpoints in the inferior process
980 until after the `wait' in `wait_for_inferior'. */
981 static int singlestep_breakpoints_inserted_p = 0;
983 /* The thread we inserted single-step breakpoints for. */
984 static ptid_t singlestep_ptid;
986 /* PC when we started this single-step. */
987 static CORE_ADDR singlestep_pc;
989 /* If another thread hit the singlestep breakpoint, we save the original
990 thread here so that we can resume single-stepping it later. */
991 static ptid_t saved_singlestep_ptid;
992 static int stepping_past_singlestep_breakpoint;
994 /* If not equal to null_ptid, this means that after stepping over breakpoint
995 is finished, we need to switch to deferred_step_ptid, and step it.
997 The use case is when one thread has hit a breakpoint, and then the user
998 has switched to another thread and issued 'step'. We need to step over
999 breakpoint in the thread which hit the breakpoint, but then continue
1000 stepping the thread user has selected. */
1001 static ptid_t deferred_step_ptid;
1003 /* Displaced stepping. */
1005 /* In non-stop debugging mode, we must take special care to manage
1006 breakpoints properly; in particular, the traditional strategy for
1007 stepping a thread past a breakpoint it has hit is unsuitable.
1008 'Displaced stepping' is a tactic for stepping one thread past a
1009 breakpoint it has hit while ensuring that other threads running
1010 concurrently will hit the breakpoint as they should.
1012 The traditional way to step a thread T off a breakpoint in a
1013 multi-threaded program in all-stop mode is as follows:
1015 a0) Initially, all threads are stopped, and breakpoints are not
1017 a1) We single-step T, leaving breakpoints uninserted.
1018 a2) We insert breakpoints, and resume all threads.
1020 In non-stop debugging, however, this strategy is unsuitable: we
1021 don't want to have to stop all threads in the system in order to
1022 continue or step T past a breakpoint. Instead, we use displaced
1025 n0) Initially, T is stopped, other threads are running, and
1026 breakpoints are inserted.
1027 n1) We copy the instruction "under" the breakpoint to a separate
1028 location, outside the main code stream, making any adjustments
1029 to the instruction, register, and memory state as directed by
1031 n2) We single-step T over the instruction at its new location.
1032 n3) We adjust the resulting register and memory state as directed
1033 by T's architecture. This includes resetting T's PC to point
1034 back into the main instruction stream.
1037 This approach depends on the following gdbarch methods:
1039 - gdbarch_max_insn_length and gdbarch_displaced_step_location
1040 indicate where to copy the instruction, and how much space must
1041 be reserved there. We use these in step n1.
1043 - gdbarch_displaced_step_copy_insn copies a instruction to a new
1044 address, and makes any necessary adjustments to the instruction,
1045 register contents, and memory. We use this in step n1.
1047 - gdbarch_displaced_step_fixup adjusts registers and memory after
1048 we have successfuly single-stepped the instruction, to yield the
1049 same effect the instruction would have had if we had executed it
1050 at its original address. We use this in step n3.
1052 - gdbarch_displaced_step_free_closure provides cleanup.
1054 The gdbarch_displaced_step_copy_insn and
1055 gdbarch_displaced_step_fixup functions must be written so that
1056 copying an instruction with gdbarch_displaced_step_copy_insn,
1057 single-stepping across the copied instruction, and then applying
1058 gdbarch_displaced_insn_fixup should have the same effects on the
1059 thread's memory and registers as stepping the instruction in place
1060 would have. Exactly which responsibilities fall to the copy and
1061 which fall to the fixup is up to the author of those functions.
1063 See the comments in gdbarch.sh for details.
1065 Note that displaced stepping and software single-step cannot
1066 currently be used in combination, although with some care I think
1067 they could be made to. Software single-step works by placing
1068 breakpoints on all possible subsequent instructions; if the
1069 displaced instruction is a PC-relative jump, those breakpoints
1070 could fall in very strange places --- on pages that aren't
1071 executable, or at addresses that are not proper instruction
1072 boundaries. (We do generally let other threads run while we wait
1073 to hit the software single-step breakpoint, and they might
1074 encounter such a corrupted instruction.) One way to work around
1075 this would be to have gdbarch_displaced_step_copy_insn fully
1076 simulate the effect of PC-relative instructions (and return NULL)
1077 on architectures that use software single-stepping.
1079 In non-stop mode, we can have independent and simultaneous step
1080 requests, so more than one thread may need to simultaneously step
1081 over a breakpoint. The current implementation assumes there is
1082 only one scratch space per process. In this case, we have to
1083 serialize access to the scratch space. If thread A wants to step
1084 over a breakpoint, but we are currently waiting for some other
1085 thread to complete a displaced step, we leave thread A stopped and
1086 place it in the displaced_step_request_queue. Whenever a displaced
1087 step finishes, we pick the next thread in the queue and start a new
1088 displaced step operation on it. See displaced_step_prepare and
1089 displaced_step_fixup for details. */
1091 struct displaced_step_request
1094 struct displaced_step_request *next;
1097 /* Per-inferior displaced stepping state. */
1098 struct displaced_step_inferior_state
1100 /* Pointer to next in linked list. */
1101 struct displaced_step_inferior_state *next;
1103 /* The process this displaced step state refers to. */
1106 /* A queue of pending displaced stepping requests. One entry per
1107 thread that needs to do a displaced step. */
1108 struct displaced_step_request *step_request_queue;
1110 /* If this is not null_ptid, this is the thread carrying out a
1111 displaced single-step in process PID. This thread's state will
1112 require fixing up once it has completed its step. */
1115 /* The architecture the thread had when we stepped it. */
1116 struct gdbarch *step_gdbarch;
1118 /* The closure provided gdbarch_displaced_step_copy_insn, to be used
1119 for post-step cleanup. */
1120 struct displaced_step_closure *step_closure;
1122 /* The address of the original instruction, and the copy we
1124 CORE_ADDR step_original, step_copy;
1126 /* Saved contents of copy area. */
1127 gdb_byte *step_saved_copy;
1130 /* The list of states of processes involved in displaced stepping
1132 static struct displaced_step_inferior_state *displaced_step_inferior_states;
1134 /* Get the displaced stepping state of process PID. */
1136 static struct displaced_step_inferior_state *
1137 get_displaced_stepping_state (int pid)
1139 struct displaced_step_inferior_state *state;
1141 for (state = displaced_step_inferior_states;
1143 state = state->next)
1144 if (state->pid == pid)
1150 /* Add a new displaced stepping state for process PID to the displaced
1151 stepping state list, or return a pointer to an already existing
1152 entry, if it already exists. Never returns NULL. */
1154 static struct displaced_step_inferior_state *
1155 add_displaced_stepping_state (int pid)
1157 struct displaced_step_inferior_state *state;
1159 for (state = displaced_step_inferior_states;
1161 state = state->next)
1162 if (state->pid == pid)
1165 state = xcalloc (1, sizeof (*state));
1167 state->next = displaced_step_inferior_states;
1168 displaced_step_inferior_states = state;
1173 /* If inferior is in displaced stepping, and ADDR equals to starting address
1174 of copy area, return corresponding displaced_step_closure. Otherwise,
1177 struct displaced_step_closure*
1178 get_displaced_step_closure_by_addr (CORE_ADDR addr)
1180 struct displaced_step_inferior_state *displaced
1181 = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
1183 /* If checking the mode of displaced instruction in copy area. */
1184 if (displaced && !ptid_equal (displaced->step_ptid, null_ptid)
1185 && (displaced->step_copy == addr))
1186 return displaced->step_closure;
1191 /* Remove the displaced stepping state of process PID. */
1194 remove_displaced_stepping_state (int pid)
1196 struct displaced_step_inferior_state *it, **prev_next_p;
1198 gdb_assert (pid != 0);
1200 it = displaced_step_inferior_states;
1201 prev_next_p = &displaced_step_inferior_states;
1206 *prev_next_p = it->next;
1211 prev_next_p = &it->next;
1217 infrun_inferior_exit (struct inferior *inf)
1219 remove_displaced_stepping_state (inf->pid);
1222 /* If ON, and the architecture supports it, GDB will use displaced
1223 stepping to step over breakpoints. If OFF, or if the architecture
1224 doesn't support it, GDB will instead use the traditional
1225 hold-and-step approach. If AUTO (which is the default), GDB will
1226 decide which technique to use to step over breakpoints depending on
1227 which of all-stop or non-stop mode is active --- displaced stepping
1228 in non-stop mode; hold-and-step in all-stop mode. */
1230 static enum auto_boolean can_use_displaced_stepping = AUTO_BOOLEAN_AUTO;
1233 show_can_use_displaced_stepping (struct ui_file *file, int from_tty,
1234 struct cmd_list_element *c,
1237 if (can_use_displaced_stepping == AUTO_BOOLEAN_AUTO)
1238 fprintf_filtered (file,
1239 _("Debugger's willingness to use displaced stepping "
1240 "to step over breakpoints is %s (currently %s).\n"),
1241 value, non_stop ? "on" : "off");
1243 fprintf_filtered (file,
1244 _("Debugger's willingness to use displaced stepping "
1245 "to step over breakpoints is %s.\n"), value);
1248 /* Return non-zero if displaced stepping can/should be used to step
1249 over breakpoints. */
1252 use_displaced_stepping (struct gdbarch *gdbarch)
1254 return (((can_use_displaced_stepping == AUTO_BOOLEAN_AUTO && non_stop)
1255 || can_use_displaced_stepping == AUTO_BOOLEAN_TRUE)
1256 && gdbarch_displaced_step_copy_insn_p (gdbarch)
1257 && !RECORD_IS_USED);
1260 /* Clean out any stray displaced stepping state. */
1262 displaced_step_clear (struct displaced_step_inferior_state *displaced)
1264 /* Indicate that there is no cleanup pending. */
1265 displaced->step_ptid = null_ptid;
1267 if (displaced->step_closure)
1269 gdbarch_displaced_step_free_closure (displaced->step_gdbarch,
1270 displaced->step_closure);
1271 displaced->step_closure = NULL;
1276 displaced_step_clear_cleanup (void *arg)
1278 struct displaced_step_inferior_state *state = arg;
1280 displaced_step_clear (state);
1283 /* Dump LEN bytes at BUF in hex to FILE, followed by a newline. */
1285 displaced_step_dump_bytes (struct ui_file *file,
1286 const gdb_byte *buf,
1291 for (i = 0; i < len; i++)
1292 fprintf_unfiltered (file, "%02x ", buf[i]);
1293 fputs_unfiltered ("\n", file);
1296 /* Prepare to single-step, using displaced stepping.
1298 Note that we cannot use displaced stepping when we have a signal to
1299 deliver. If we have a signal to deliver and an instruction to step
1300 over, then after the step, there will be no indication from the
1301 target whether the thread entered a signal handler or ignored the
1302 signal and stepped over the instruction successfully --- both cases
1303 result in a simple SIGTRAP. In the first case we mustn't do a
1304 fixup, and in the second case we must --- but we can't tell which.
1305 Comments in the code for 'random signals' in handle_inferior_event
1306 explain how we handle this case instead.
1308 Returns 1 if preparing was successful -- this thread is going to be
1309 stepped now; or 0 if displaced stepping this thread got queued. */
1311 displaced_step_prepare (ptid_t ptid)
1313 struct cleanup *old_cleanups, *ignore_cleanups;
1314 struct thread_info *tp = find_thread_ptid (ptid);
1315 struct regcache *regcache = get_thread_regcache (ptid);
1316 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1317 CORE_ADDR original, copy;
1319 struct displaced_step_closure *closure;
1320 struct displaced_step_inferior_state *displaced;
1323 /* We should never reach this function if the architecture does not
1324 support displaced stepping. */
1325 gdb_assert (gdbarch_displaced_step_copy_insn_p (gdbarch));
1327 /* Disable range stepping while executing in the scratch pad. We
1328 want a single-step even if executing the displaced instruction in
1329 the scratch buffer lands within the stepping range (e.g., a
1331 tp->control.may_range_step = 0;
1333 /* We have to displaced step one thread at a time, as we only have
1334 access to a single scratch space per inferior. */
1336 displaced = add_displaced_stepping_state (ptid_get_pid (ptid));
1338 if (!ptid_equal (displaced->step_ptid, null_ptid))
1340 /* Already waiting for a displaced step to finish. Defer this
1341 request and place in queue. */
1342 struct displaced_step_request *req, *new_req;
1344 if (debug_displaced)
1345 fprintf_unfiltered (gdb_stdlog,
1346 "displaced: defering step of %s\n",
1347 target_pid_to_str (ptid));
1349 new_req = xmalloc (sizeof (*new_req));
1350 new_req->ptid = ptid;
1351 new_req->next = NULL;
1353 if (displaced->step_request_queue)
1355 for (req = displaced->step_request_queue;
1359 req->next = new_req;
1362 displaced->step_request_queue = new_req;
1368 if (debug_displaced)
1369 fprintf_unfiltered (gdb_stdlog,
1370 "displaced: stepping %s now\n",
1371 target_pid_to_str (ptid));
1374 displaced_step_clear (displaced);
1376 old_cleanups = save_inferior_ptid ();
1377 inferior_ptid = ptid;
1379 original = regcache_read_pc (regcache);
1381 copy = gdbarch_displaced_step_location (gdbarch);
1382 len = gdbarch_max_insn_length (gdbarch);
1384 /* Save the original contents of the copy area. */
1385 displaced->step_saved_copy = xmalloc (len);
1386 ignore_cleanups = make_cleanup (free_current_contents,
1387 &displaced->step_saved_copy);
1388 status = target_read_memory (copy, displaced->step_saved_copy, len);
1390 throw_error (MEMORY_ERROR,
1391 _("Error accessing memory address %s (%s) for "
1392 "displaced-stepping scratch space."),
1393 paddress (gdbarch, copy), safe_strerror (status));
1394 if (debug_displaced)
1396 fprintf_unfiltered (gdb_stdlog, "displaced: saved %s: ",
1397 paddress (gdbarch, copy));
1398 displaced_step_dump_bytes (gdb_stdlog,
1399 displaced->step_saved_copy,
1403 closure = gdbarch_displaced_step_copy_insn (gdbarch,
1404 original, copy, regcache);
1406 /* We don't support the fully-simulated case at present. */
1407 gdb_assert (closure);
1409 /* Save the information we need to fix things up if the step
1411 displaced->step_ptid = ptid;
1412 displaced->step_gdbarch = gdbarch;
1413 displaced->step_closure = closure;
1414 displaced->step_original = original;
1415 displaced->step_copy = copy;
1417 make_cleanup (displaced_step_clear_cleanup, displaced);
1419 /* Resume execution at the copy. */
1420 regcache_write_pc (regcache, copy);
1422 discard_cleanups (ignore_cleanups);
1424 do_cleanups (old_cleanups);
1426 if (debug_displaced)
1427 fprintf_unfiltered (gdb_stdlog, "displaced: displaced pc to %s\n",
1428 paddress (gdbarch, copy));
1434 write_memory_ptid (ptid_t ptid, CORE_ADDR memaddr,
1435 const gdb_byte *myaddr, int len)
1437 struct cleanup *ptid_cleanup = save_inferior_ptid ();
1439 inferior_ptid = ptid;
1440 write_memory (memaddr, myaddr, len);
1441 do_cleanups (ptid_cleanup);
1444 /* Restore the contents of the copy area for thread PTID. */
1447 displaced_step_restore (struct displaced_step_inferior_state *displaced,
1450 ULONGEST len = gdbarch_max_insn_length (displaced->step_gdbarch);
1452 write_memory_ptid (ptid, displaced->step_copy,
1453 displaced->step_saved_copy, len);
1454 if (debug_displaced)
1455 fprintf_unfiltered (gdb_stdlog, "displaced: restored %s %s\n",
1456 target_pid_to_str (ptid),
1457 paddress (displaced->step_gdbarch,
1458 displaced->step_copy));
1462 displaced_step_fixup (ptid_t event_ptid, enum gdb_signal signal)
1464 struct cleanup *old_cleanups;
1465 struct displaced_step_inferior_state *displaced
1466 = get_displaced_stepping_state (ptid_get_pid (event_ptid));
1468 /* Was any thread of this process doing a displaced step? */
1469 if (displaced == NULL)
1472 /* Was this event for the pid we displaced? */
1473 if (ptid_equal (displaced->step_ptid, null_ptid)
1474 || ! ptid_equal (displaced->step_ptid, event_ptid))
1477 old_cleanups = make_cleanup (displaced_step_clear_cleanup, displaced);
1479 displaced_step_restore (displaced, displaced->step_ptid);
1481 /* Did the instruction complete successfully? */
1482 if (signal == GDB_SIGNAL_TRAP)
1484 /* Fix up the resulting state. */
1485 gdbarch_displaced_step_fixup (displaced->step_gdbarch,
1486 displaced->step_closure,
1487 displaced->step_original,
1488 displaced->step_copy,
1489 get_thread_regcache (displaced->step_ptid));
1493 /* Since the instruction didn't complete, all we can do is
1495 struct regcache *regcache = get_thread_regcache (event_ptid);
1496 CORE_ADDR pc = regcache_read_pc (regcache);
1498 pc = displaced->step_original + (pc - displaced->step_copy);
1499 regcache_write_pc (regcache, pc);
1502 do_cleanups (old_cleanups);
1504 displaced->step_ptid = null_ptid;
1506 /* Are there any pending displaced stepping requests? If so, run
1507 one now. Leave the state object around, since we're likely to
1508 need it again soon. */
1509 while (displaced->step_request_queue)
1511 struct displaced_step_request *head;
1513 struct regcache *regcache;
1514 struct gdbarch *gdbarch;
1515 CORE_ADDR actual_pc;
1516 struct address_space *aspace;
1518 head = displaced->step_request_queue;
1520 displaced->step_request_queue = head->next;
1523 context_switch (ptid);
1525 regcache = get_thread_regcache (ptid);
1526 actual_pc = regcache_read_pc (regcache);
1527 aspace = get_regcache_aspace (regcache);
1529 if (breakpoint_here_p (aspace, actual_pc))
1531 if (debug_displaced)
1532 fprintf_unfiltered (gdb_stdlog,
1533 "displaced: stepping queued %s now\n",
1534 target_pid_to_str (ptid));
1536 displaced_step_prepare (ptid);
1538 gdbarch = get_regcache_arch (regcache);
1540 if (debug_displaced)
1542 CORE_ADDR actual_pc = regcache_read_pc (regcache);
1545 fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
1546 paddress (gdbarch, actual_pc));
1547 read_memory (actual_pc, buf, sizeof (buf));
1548 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
1551 if (gdbarch_displaced_step_hw_singlestep (gdbarch,
1552 displaced->step_closure))
1553 target_resume (ptid, 1, GDB_SIGNAL_0);
1555 target_resume (ptid, 0, GDB_SIGNAL_0);
1557 /* Done, we're stepping a thread. */
1563 struct thread_info *tp = inferior_thread ();
1565 /* The breakpoint we were sitting under has since been
1567 tp->control.trap_expected = 0;
1569 /* Go back to what we were trying to do. */
1570 step = currently_stepping (tp);
1572 if (debug_displaced)
1573 fprintf_unfiltered (gdb_stdlog,
1574 "displaced: breakpoint is gone: %s, step(%d)\n",
1575 target_pid_to_str (tp->ptid), step);
1577 target_resume (ptid, step, GDB_SIGNAL_0);
1578 tp->suspend.stop_signal = GDB_SIGNAL_0;
1580 /* This request was discarded. See if there's any other
1581 thread waiting for its turn. */
1586 /* Update global variables holding ptids to hold NEW_PTID if they were
1587 holding OLD_PTID. */
1589 infrun_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
1591 struct displaced_step_request *it;
1592 struct displaced_step_inferior_state *displaced;
1594 if (ptid_equal (inferior_ptid, old_ptid))
1595 inferior_ptid = new_ptid;
1597 if (ptid_equal (singlestep_ptid, old_ptid))
1598 singlestep_ptid = new_ptid;
1600 if (ptid_equal (deferred_step_ptid, old_ptid))
1601 deferred_step_ptid = new_ptid;
1603 for (displaced = displaced_step_inferior_states;
1605 displaced = displaced->next)
1607 if (ptid_equal (displaced->step_ptid, old_ptid))
1608 displaced->step_ptid = new_ptid;
1610 for (it = displaced->step_request_queue; it; it = it->next)
1611 if (ptid_equal (it->ptid, old_ptid))
1612 it->ptid = new_ptid;
1619 /* Things to clean up if we QUIT out of resume (). */
1621 resume_cleanups (void *ignore)
1626 static const char schedlock_off[] = "off";
1627 static const char schedlock_on[] = "on";
1628 static const char schedlock_step[] = "step";
1629 static const char *const scheduler_enums[] = {
1635 static const char *scheduler_mode = schedlock_off;
1637 show_scheduler_mode (struct ui_file *file, int from_tty,
1638 struct cmd_list_element *c, const char *value)
1640 fprintf_filtered (file,
1641 _("Mode for locking scheduler "
1642 "during execution is \"%s\".\n"),
1647 set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
1649 if (!target_can_lock_scheduler)
1651 scheduler_mode = schedlock_off;
1652 error (_("Target '%s' cannot support this command."), target_shortname);
1656 /* True if execution commands resume all threads of all processes by
1657 default; otherwise, resume only threads of the current inferior
1659 int sched_multi = 0;
1661 /* Try to setup for software single stepping over the specified location.
1662 Return 1 if target_resume() should use hardware single step.
1664 GDBARCH the current gdbarch.
1665 PC the location to step over. */
1668 maybe_software_singlestep (struct gdbarch *gdbarch, CORE_ADDR pc)
1672 if (execution_direction == EXEC_FORWARD
1673 && gdbarch_software_single_step_p (gdbarch)
1674 && gdbarch_software_single_step (gdbarch, get_current_frame ()))
1677 /* Do not pull these breakpoints until after a `wait' in
1678 `wait_for_inferior'. */
1679 singlestep_breakpoints_inserted_p = 1;
1680 singlestep_ptid = inferior_ptid;
1686 /* Return a ptid representing the set of threads that we will proceed,
1687 in the perspective of the user/frontend. We may actually resume
1688 fewer threads at first, e.g., if a thread is stopped at a
1689 breakpoint that needs stepping-off, but that should not be visible
1690 to the user/frontend, and neither should the frontend/user be
1691 allowed to proceed any of the threads that happen to be stopped for
1692 internal run control handling, if a previous command wanted them
1696 user_visible_resume_ptid (int step)
1698 /* By default, resume all threads of all processes. */
1699 ptid_t resume_ptid = RESUME_ALL;
1701 /* Maybe resume only all threads of the current process. */
1702 if (!sched_multi && target_supports_multi_process ())
1704 resume_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
1707 /* Maybe resume a single thread after all. */
1710 /* With non-stop mode on, threads are always handled
1712 resume_ptid = inferior_ptid;
1714 else if ((scheduler_mode == schedlock_on)
1715 || (scheduler_mode == schedlock_step
1716 && (step || singlestep_breakpoints_inserted_p)))
1718 /* User-settable 'scheduler' mode requires solo thread resume. */
1719 resume_ptid = inferior_ptid;
1725 /* Resume the inferior, but allow a QUIT. This is useful if the user
1726 wants to interrupt some lengthy single-stepping operation
1727 (for child processes, the SIGINT goes to the inferior, and so
1728 we get a SIGINT random_signal, but for remote debugging and perhaps
1729 other targets, that's not true).
1731 STEP nonzero if we should step (zero to continue instead).
1732 SIG is the signal to give the inferior (zero for none). */
1734 resume (int step, enum gdb_signal sig)
1736 int should_resume = 1;
1737 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
1738 struct regcache *regcache = get_current_regcache ();
1739 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1740 struct thread_info *tp = inferior_thread ();
1741 CORE_ADDR pc = regcache_read_pc (regcache);
1742 struct address_space *aspace = get_regcache_aspace (regcache);
1746 if (current_inferior ()->waiting_for_vfork_done)
1748 /* Don't try to single-step a vfork parent that is waiting for
1749 the child to get out of the shared memory region (by exec'ing
1750 or exiting). This is particularly important on software
1751 single-step archs, as the child process would trip on the
1752 software single step breakpoint inserted for the parent
1753 process. Since the parent will not actually execute any
1754 instruction until the child is out of the shared region (such
1755 are vfork's semantics), it is safe to simply continue it.
1756 Eventually, we'll see a TARGET_WAITKIND_VFORK_DONE event for
1757 the parent, and tell it to `keep_going', which automatically
1758 re-sets it stepping. */
1760 fprintf_unfiltered (gdb_stdlog,
1761 "infrun: resume : clear step\n");
1766 fprintf_unfiltered (gdb_stdlog,
1767 "infrun: resume (step=%d, signal=%d), "
1768 "trap_expected=%d, current thread [%s] at %s\n",
1769 step, sig, tp->control.trap_expected,
1770 target_pid_to_str (inferior_ptid),
1771 paddress (gdbarch, pc));
1773 /* Normally, by the time we reach `resume', the breakpoints are either
1774 removed or inserted, as appropriate. The exception is if we're sitting
1775 at a permanent breakpoint; we need to step over it, but permanent
1776 breakpoints can't be removed. So we have to test for it here. */
1777 if (breakpoint_here_p (aspace, pc) == permanent_breakpoint_here)
1779 if (gdbarch_skip_permanent_breakpoint_p (gdbarch))
1780 gdbarch_skip_permanent_breakpoint (gdbarch, regcache);
1783 The program is stopped at a permanent breakpoint, but GDB does not know\n\
1784 how to step past a permanent breakpoint on this architecture. Try using\n\
1785 a command like `return' or `jump' to continue execution."));
1788 /* If we have a breakpoint to step over, make sure to do a single
1789 step only. Same if we have software watchpoints. */
1790 if (tp->control.trap_expected || bpstat_should_step ())
1791 tp->control.may_range_step = 0;
1793 /* If enabled, step over breakpoints by executing a copy of the
1794 instruction at a different address.
1796 We can't use displaced stepping when we have a signal to deliver;
1797 the comments for displaced_step_prepare explain why. The
1798 comments in the handle_inferior event for dealing with 'random
1799 signals' explain what we do instead.
1801 We can't use displaced stepping when we are waiting for vfork_done
1802 event, displaced stepping breaks the vfork child similarly as single
1803 step software breakpoint. */
1804 if (use_displaced_stepping (gdbarch)
1805 && (tp->control.trap_expected
1806 || (step && gdbarch_software_single_step_p (gdbarch)))
1807 && sig == GDB_SIGNAL_0
1808 && !current_inferior ()->waiting_for_vfork_done)
1810 struct displaced_step_inferior_state *displaced;
1812 if (!displaced_step_prepare (inferior_ptid))
1814 /* Got placed in displaced stepping queue. Will be resumed
1815 later when all the currently queued displaced stepping
1816 requests finish. The thread is not executing at this point,
1817 and the call to set_executing will be made later. But we
1818 need to call set_running here, since from frontend point of view,
1819 the thread is running. */
1820 set_running (inferior_ptid, 1);
1821 discard_cleanups (old_cleanups);
1825 /* Update pc to reflect the new address from which we will execute
1826 instructions due to displaced stepping. */
1827 pc = regcache_read_pc (get_thread_regcache (inferior_ptid));
1829 displaced = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
1830 step = gdbarch_displaced_step_hw_singlestep (gdbarch,
1831 displaced->step_closure);
1834 /* Do we need to do it the hard way, w/temp breakpoints? */
1836 step = maybe_software_singlestep (gdbarch, pc);
1838 /* Currently, our software single-step implementation leads to different
1839 results than hardware single-stepping in one situation: when stepping
1840 into delivering a signal which has an associated signal handler,
1841 hardware single-step will stop at the first instruction of the handler,
1842 while software single-step will simply skip execution of the handler.
1844 For now, this difference in behavior is accepted since there is no
1845 easy way to actually implement single-stepping into a signal handler
1846 without kernel support.
1848 However, there is one scenario where this difference leads to follow-on
1849 problems: if we're stepping off a breakpoint by removing all breakpoints
1850 and then single-stepping. In this case, the software single-step
1851 behavior means that even if there is a *breakpoint* in the signal
1852 handler, GDB still would not stop.
1854 Fortunately, we can at least fix this particular issue. We detect
1855 here the case where we are about to deliver a signal while software
1856 single-stepping with breakpoints removed. In this situation, we
1857 revert the decisions to remove all breakpoints and insert single-
1858 step breakpoints, and instead we install a step-resume breakpoint
1859 at the current address, deliver the signal without stepping, and
1860 once we arrive back at the step-resume breakpoint, actually step
1861 over the breakpoint we originally wanted to step over. */
1862 if (singlestep_breakpoints_inserted_p
1863 && tp->control.trap_expected && sig != GDB_SIGNAL_0)
1865 /* If we have nested signals or a pending signal is delivered
1866 immediately after a handler returns, might might already have
1867 a step-resume breakpoint set on the earlier handler. We cannot
1868 set another step-resume breakpoint; just continue on until the
1869 original breakpoint is hit. */
1870 if (tp->control.step_resume_breakpoint == NULL)
1872 insert_hp_step_resume_breakpoint_at_frame (get_current_frame ());
1873 tp->step_after_step_resume_breakpoint = 1;
1876 remove_single_step_breakpoints ();
1877 singlestep_breakpoints_inserted_p = 0;
1879 insert_breakpoints ();
1880 tp->control.trap_expected = 0;
1887 /* If STEP is set, it's a request to use hardware stepping
1888 facilities. But in that case, we should never
1889 use singlestep breakpoint. */
1890 gdb_assert (!(singlestep_breakpoints_inserted_p && step));
1892 /* Decide the set of threads to ask the target to resume. Start
1893 by assuming everything will be resumed, than narrow the set
1894 by applying increasingly restricting conditions. */
1895 resume_ptid = user_visible_resume_ptid (step);
1897 /* Maybe resume a single thread after all. */
1898 if (singlestep_breakpoints_inserted_p
1899 && stepping_past_singlestep_breakpoint)
1901 /* The situation here is as follows. In thread T1 we wanted to
1902 single-step. Lacking hardware single-stepping we've
1903 set breakpoint at the PC of the next instruction -- call it
1904 P. After resuming, we've hit that breakpoint in thread T2.
1905 Now we've removed original breakpoint, inserted breakpoint
1906 at P+1, and try to step to advance T2 past breakpoint.
1907 We need to step only T2, as if T1 is allowed to freely run,
1908 it can run past P, and if other threads are allowed to run,
1909 they can hit breakpoint at P+1, and nested hits of single-step
1910 breakpoints is not something we'd want -- that's complicated
1911 to support, and has no value. */
1912 resume_ptid = inferior_ptid;
1914 else if ((step || singlestep_breakpoints_inserted_p)
1915 && tp->control.trap_expected)
1917 /* We're allowing a thread to run past a breakpoint it has
1918 hit, by single-stepping the thread with the breakpoint
1919 removed. In which case, we need to single-step only this
1920 thread, and keep others stopped, as they can miss this
1921 breakpoint if allowed to run.
1923 The current code actually removes all breakpoints when
1924 doing this, not just the one being stepped over, so if we
1925 let other threads run, we can actually miss any
1926 breakpoint, not just the one at PC. */
1927 resume_ptid = inferior_ptid;
1930 if (gdbarch_cannot_step_breakpoint (gdbarch))
1932 /* Most targets can step a breakpoint instruction, thus
1933 executing it normally. But if this one cannot, just
1934 continue and we will hit it anyway. */
1935 if (step && breakpoint_inserted_here_p (aspace, pc))
1940 && use_displaced_stepping (gdbarch)
1941 && tp->control.trap_expected)
1943 struct regcache *resume_regcache = get_thread_regcache (resume_ptid);
1944 struct gdbarch *resume_gdbarch = get_regcache_arch (resume_regcache);
1945 CORE_ADDR actual_pc = regcache_read_pc (resume_regcache);
1948 fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
1949 paddress (resume_gdbarch, actual_pc));
1950 read_memory (actual_pc, buf, sizeof (buf));
1951 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
1954 if (tp->control.may_range_step)
1956 /* If we're resuming a thread with the PC out of the step
1957 range, then we're doing some nested/finer run control
1958 operation, like stepping the thread out of the dynamic
1959 linker or the displaced stepping scratch pad. We
1960 shouldn't have allowed a range step then. */
1961 gdb_assert (pc_in_thread_step_range (pc, tp));
1964 /* Install inferior's terminal modes. */
1965 target_terminal_inferior ();
1967 /* Avoid confusing the next resume, if the next stop/resume
1968 happens to apply to another thread. */
1969 tp->suspend.stop_signal = GDB_SIGNAL_0;
1971 /* Advise target which signals may be handled silently. If we have
1972 removed breakpoints because we are stepping over one (which can
1973 happen only if we are not using displaced stepping), we need to
1974 receive all signals to avoid accidentally skipping a breakpoint
1975 during execution of a signal handler. */
1976 if ((step || singlestep_breakpoints_inserted_p)
1977 && tp->control.trap_expected
1978 && !use_displaced_stepping (gdbarch))
1979 target_pass_signals (0, NULL);
1981 target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
1983 target_resume (resume_ptid, step, sig);
1986 discard_cleanups (old_cleanups);
1991 /* Clear out all variables saying what to do when inferior is continued.
1992 First do this, then set the ones you want, then call `proceed'. */
1995 clear_proceed_status_thread (struct thread_info *tp)
1998 fprintf_unfiltered (gdb_stdlog,
1999 "infrun: clear_proceed_status_thread (%s)\n",
2000 target_pid_to_str (tp->ptid));
2002 tp->control.trap_expected = 0;
2003 tp->control.step_range_start = 0;
2004 tp->control.step_range_end = 0;
2005 tp->control.may_range_step = 0;
2006 tp->control.step_frame_id = null_frame_id;
2007 tp->control.step_stack_frame_id = null_frame_id;
2008 tp->control.step_over_calls = STEP_OVER_UNDEBUGGABLE;
2009 tp->stop_requested = 0;
2011 tp->control.stop_step = 0;
2013 tp->control.proceed_to_finish = 0;
2015 /* Discard any remaining commands or status from previous stop. */
2016 bpstat_clear (&tp->control.stop_bpstat);
2020 clear_proceed_status_callback (struct thread_info *tp, void *data)
2022 if (is_exited (tp->ptid))
2025 clear_proceed_status_thread (tp);
2030 clear_proceed_status (void)
2034 /* In all-stop mode, delete the per-thread status of all
2035 threads, even if inferior_ptid is null_ptid, there may be
2036 threads on the list. E.g., we may be launching a new
2037 process, while selecting the executable. */
2038 iterate_over_threads (clear_proceed_status_callback, NULL);
2041 if (!ptid_equal (inferior_ptid, null_ptid))
2043 struct inferior *inferior;
2047 /* If in non-stop mode, only delete the per-thread status of
2048 the current thread. */
2049 clear_proceed_status_thread (inferior_thread ());
2052 inferior = current_inferior ();
2053 inferior->control.stop_soon = NO_STOP_QUIETLY;
2056 stop_after_trap = 0;
2058 observer_notify_about_to_proceed ();
2062 regcache_xfree (stop_registers);
2063 stop_registers = NULL;
2067 /* Check the current thread against the thread that reported the most recent
2068 event. If a step-over is required return TRUE and set the current thread
2069 to the old thread. Otherwise return FALSE.
2071 This should be suitable for any targets that support threads. */
2074 prepare_to_proceed (int step)
2077 struct target_waitstatus wait_status;
2078 int schedlock_enabled;
2080 /* With non-stop mode on, threads are always handled individually. */
2081 gdb_assert (! non_stop);
2083 /* Get the last target status returned by target_wait(). */
2084 get_last_target_status (&wait_ptid, &wait_status);
2086 /* Make sure we were stopped at a breakpoint. */
2087 if (wait_status.kind != TARGET_WAITKIND_STOPPED
2088 || (wait_status.value.sig != GDB_SIGNAL_TRAP
2089 && wait_status.value.sig != GDB_SIGNAL_ILL
2090 && wait_status.value.sig != GDB_SIGNAL_SEGV
2091 && wait_status.value.sig != GDB_SIGNAL_EMT))
2096 schedlock_enabled = (scheduler_mode == schedlock_on
2097 || (scheduler_mode == schedlock_step
2100 /* Don't switch over to WAIT_PTID if scheduler locking is on. */
2101 if (schedlock_enabled)
2104 /* Don't switch over if we're about to resume some other process
2105 other than WAIT_PTID's, and schedule-multiple is off. */
2107 && ptid_get_pid (wait_ptid) != ptid_get_pid (inferior_ptid))
2110 /* Switched over from WAIT_PID. */
2111 if (!ptid_equal (wait_ptid, minus_one_ptid)
2112 && !ptid_equal (inferior_ptid, wait_ptid))
2114 struct regcache *regcache = get_thread_regcache (wait_ptid);
2116 if (breakpoint_here_p (get_regcache_aspace (regcache),
2117 regcache_read_pc (regcache)))
2119 /* If stepping, remember current thread to switch back to. */
2121 deferred_step_ptid = inferior_ptid;
2123 /* Switch back to WAIT_PID thread. */
2124 switch_to_thread (wait_ptid);
2127 fprintf_unfiltered (gdb_stdlog,
2128 "infrun: prepare_to_proceed (step=%d), "
2129 "switched to [%s]\n",
2130 step, target_pid_to_str (inferior_ptid));
2132 /* We return 1 to indicate that there is a breakpoint here,
2133 so we need to step over it before continuing to avoid
2134 hitting it straight away. */
2142 /* Basic routine for continuing the program in various fashions.
2144 ADDR is the address to resume at, or -1 for resume where stopped.
2145 SIGGNAL is the signal to give it, or 0 for none,
2146 or -1 for act according to how it stopped.
2147 STEP is nonzero if should trap after one instruction.
2148 -1 means return after that and print nothing.
2149 You should probably set various step_... variables
2150 before calling here, if you are stepping.
2152 You should call clear_proceed_status before calling proceed. */
2155 proceed (CORE_ADDR addr, enum gdb_signal siggnal, int step)
2157 struct regcache *regcache;
2158 struct gdbarch *gdbarch;
2159 struct thread_info *tp;
2161 struct address_space *aspace;
2162 /* GDB may force the inferior to step due to various reasons. */
2165 /* If we're stopped at a fork/vfork, follow the branch set by the
2166 "set follow-fork-mode" command; otherwise, we'll just proceed
2167 resuming the current thread. */
2168 if (!follow_fork ())
2170 /* The target for some reason decided not to resume. */
2172 if (target_can_async_p ())
2173 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
2177 /* We'll update this if & when we switch to a new thread. */
2178 previous_inferior_ptid = inferior_ptid;
2180 regcache = get_current_regcache ();
2181 gdbarch = get_regcache_arch (regcache);
2182 aspace = get_regcache_aspace (regcache);
2183 pc = regcache_read_pc (regcache);
2186 step_start_function = find_pc_function (pc);
2188 stop_after_trap = 1;
2190 if (addr == (CORE_ADDR) -1)
2192 if (pc == stop_pc && breakpoint_here_p (aspace, pc)
2193 && execution_direction != EXEC_REVERSE)
2194 /* There is a breakpoint at the address we will resume at,
2195 step one instruction before inserting breakpoints so that
2196 we do not stop right away (and report a second hit at this
2199 Note, we don't do this in reverse, because we won't
2200 actually be executing the breakpoint insn anyway.
2201 We'll be (un-)executing the previous instruction. */
2204 else if (gdbarch_single_step_through_delay_p (gdbarch)
2205 && gdbarch_single_step_through_delay (gdbarch,
2206 get_current_frame ()))
2207 /* We stepped onto an instruction that needs to be stepped
2208 again before re-inserting the breakpoint, do so. */
2213 regcache_write_pc (regcache, addr);
2217 fprintf_unfiltered (gdb_stdlog,
2218 "infrun: proceed (addr=%s, signal=%d, step=%d)\n",
2219 paddress (gdbarch, addr), siggnal, step);
2222 /* In non-stop, each thread is handled individually. The context
2223 must already be set to the right thread here. */
2227 /* In a multi-threaded task we may select another thread and
2228 then continue or step.
2230 But if the old thread was stopped at a breakpoint, it will
2231 immediately cause another breakpoint stop without any
2232 execution (i.e. it will report a breakpoint hit incorrectly).
2233 So we must step over it first.
2235 prepare_to_proceed checks the current thread against the
2236 thread that reported the most recent event. If a step-over
2237 is required it returns TRUE and sets the current thread to
2239 if (prepare_to_proceed (step))
2243 /* prepare_to_proceed may change the current thread. */
2244 tp = inferior_thread ();
2248 tp->control.trap_expected = 1;
2249 /* If displaced stepping is enabled, we can step over the
2250 breakpoint without hitting it, so leave all breakpoints
2251 inserted. Otherwise we need to disable all breakpoints, step
2252 one instruction, and then re-add them when that step is
2254 if (!use_displaced_stepping (gdbarch))
2255 remove_breakpoints ();
2258 /* We can insert breakpoints if we're not trying to step over one,
2259 or if we are stepping over one but we're using displaced stepping
2261 if (! tp->control.trap_expected || use_displaced_stepping (gdbarch))
2262 insert_breakpoints ();
2266 /* Pass the last stop signal to the thread we're resuming,
2267 irrespective of whether the current thread is the thread that
2268 got the last event or not. This was historically GDB's
2269 behaviour before keeping a stop_signal per thread. */
2271 struct thread_info *last_thread;
2273 struct target_waitstatus last_status;
2275 get_last_target_status (&last_ptid, &last_status);
2276 if (!ptid_equal (inferior_ptid, last_ptid)
2277 && !ptid_equal (last_ptid, null_ptid)
2278 && !ptid_equal (last_ptid, minus_one_ptid))
2280 last_thread = find_thread_ptid (last_ptid);
2283 tp->suspend.stop_signal = last_thread->suspend.stop_signal;
2284 last_thread->suspend.stop_signal = GDB_SIGNAL_0;
2289 if (siggnal != GDB_SIGNAL_DEFAULT)
2290 tp->suspend.stop_signal = siggnal;
2291 /* If this signal should not be seen by program,
2292 give it zero. Used for debugging signals. */
2293 else if (!signal_program[tp->suspend.stop_signal])
2294 tp->suspend.stop_signal = GDB_SIGNAL_0;
2296 annotate_starting ();
2298 /* Make sure that output from GDB appears before output from the
2300 gdb_flush (gdb_stdout);
2302 /* Refresh prev_pc value just prior to resuming. This used to be
2303 done in stop_stepping, however, setting prev_pc there did not handle
2304 scenarios such as inferior function calls or returning from
2305 a function via the return command. In those cases, the prev_pc
2306 value was not set properly for subsequent commands. The prev_pc value
2307 is used to initialize the starting line number in the ecs. With an
2308 invalid value, the gdb next command ends up stopping at the position
2309 represented by the next line table entry past our start position.
2310 On platforms that generate one line table entry per line, this
2311 is not a problem. However, on the ia64, the compiler generates
2312 extraneous line table entries that do not increase the line number.
2313 When we issue the gdb next command on the ia64 after an inferior call
2314 or a return command, we often end up a few instructions forward, still
2315 within the original line we started.
2317 An attempt was made to refresh the prev_pc at the same time the
2318 execution_control_state is initialized (for instance, just before
2319 waiting for an inferior event). But this approach did not work
2320 because of platforms that use ptrace, where the pc register cannot
2321 be read unless the inferior is stopped. At that point, we are not
2322 guaranteed the inferior is stopped and so the regcache_read_pc() call
2323 can fail. Setting the prev_pc value here ensures the value is updated
2324 correctly when the inferior is stopped. */
2325 tp->prev_pc = regcache_read_pc (get_current_regcache ());
2327 /* Fill in with reasonable starting values. */
2328 init_thread_stepping_state (tp);
2330 /* Reset to normal state. */
2331 init_infwait_state ();
2333 /* Resume inferior. */
2334 resume (force_step || step || bpstat_should_step (),
2335 tp->suspend.stop_signal);
2337 /* Wait for it to stop (if not standalone)
2338 and in any case decode why it stopped, and act accordingly. */
2339 /* Do this only if we are not using the event loop, or if the target
2340 does not support asynchronous execution. */
2341 if (!target_can_async_p ())
2343 wait_for_inferior ();
2349 /* Start remote-debugging of a machine over a serial link. */
2352 start_remote (int from_tty)
2354 struct inferior *inferior;
2356 inferior = current_inferior ();
2357 inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
2359 /* Always go on waiting for the target, regardless of the mode. */
2360 /* FIXME: cagney/1999-09-23: At present it isn't possible to
2361 indicate to wait_for_inferior that a target should timeout if
2362 nothing is returned (instead of just blocking). Because of this,
2363 targets expecting an immediate response need to, internally, set
2364 things up so that the target_wait() is forced to eventually
2366 /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
2367 differentiate to its caller what the state of the target is after
2368 the initial open has been performed. Here we're assuming that
2369 the target has stopped. It should be possible to eventually have
2370 target_open() return to the caller an indication that the target
2371 is currently running and GDB state should be set to the same as
2372 for an async run. */
2373 wait_for_inferior ();
2375 /* Now that the inferior has stopped, do any bookkeeping like
2376 loading shared libraries. We want to do this before normal_stop,
2377 so that the displayed frame is up to date. */
2378 post_create_inferior (¤t_target, from_tty);
2383 /* Initialize static vars when a new inferior begins. */
2386 init_wait_for_inferior (void)
2388 /* These are meaningless until the first time through wait_for_inferior. */
2390 breakpoint_init_inferior (inf_starting);
2392 clear_proceed_status ();
2394 stepping_past_singlestep_breakpoint = 0;
2395 deferred_step_ptid = null_ptid;
2397 target_last_wait_ptid = minus_one_ptid;
2399 previous_inferior_ptid = inferior_ptid;
2400 init_infwait_state ();
2402 /* Discard any skipped inlined frames. */
2403 clear_inline_frame_state (minus_one_ptid);
2407 /* This enum encodes possible reasons for doing a target_wait, so that
2408 wfi can call target_wait in one place. (Ultimately the call will be
2409 moved out of the infinite loop entirely.) */
2413 infwait_normal_state,
2414 infwait_thread_hop_state,
2415 infwait_step_watch_state,
2416 infwait_nonstep_watch_state
2419 /* The PTID we'll do a target_wait on.*/
2422 /* Current inferior wait state. */
2423 static enum infwait_states infwait_state;
2425 /* Data to be passed around while handling an event. This data is
2426 discarded between events. */
2427 struct execution_control_state
2430 /* The thread that got the event, if this was a thread event; NULL
2432 struct thread_info *event_thread;
2434 struct target_waitstatus ws;
2436 int stop_func_filled_in;
2437 CORE_ADDR stop_func_start;
2438 CORE_ADDR stop_func_end;
2439 const char *stop_func_name;
2443 static void handle_inferior_event (struct execution_control_state *ecs);
2445 static void handle_step_into_function (struct gdbarch *gdbarch,
2446 struct execution_control_state *ecs);
2447 static void handle_step_into_function_backward (struct gdbarch *gdbarch,
2448 struct execution_control_state *ecs);
2449 static void check_exception_resume (struct execution_control_state *,
2450 struct frame_info *);
2452 static void stop_stepping (struct execution_control_state *ecs);
2453 static void prepare_to_wait (struct execution_control_state *ecs);
2454 static void keep_going (struct execution_control_state *ecs);
2456 /* Callback for iterate over threads. If the thread is stopped, but
2457 the user/frontend doesn't know about that yet, go through
2458 normal_stop, as if the thread had just stopped now. ARG points at
2459 a ptid. If PTID is MINUS_ONE_PTID, applies to all threads. If
2460 ptid_is_pid(PTID) is true, applies to all threads of the process
2461 pointed at by PTID. Otherwise, apply only to the thread pointed by
2465 infrun_thread_stop_requested_callback (struct thread_info *info, void *arg)
2467 ptid_t ptid = * (ptid_t *) arg;
2469 if ((ptid_equal (info->ptid, ptid)
2470 || ptid_equal (minus_one_ptid, ptid)
2471 || (ptid_is_pid (ptid)
2472 && ptid_get_pid (ptid) == ptid_get_pid (info->ptid)))
2473 && is_running (info->ptid)
2474 && !is_executing (info->ptid))
2476 struct cleanup *old_chain;
2477 struct execution_control_state ecss;
2478 struct execution_control_state *ecs = &ecss;
2480 memset (ecs, 0, sizeof (*ecs));
2482 old_chain = make_cleanup_restore_current_thread ();
2484 /* Go through handle_inferior_event/normal_stop, so we always
2485 have consistent output as if the stop event had been
2487 ecs->ptid = info->ptid;
2488 ecs->event_thread = find_thread_ptid (info->ptid);
2489 ecs->ws.kind = TARGET_WAITKIND_STOPPED;
2490 ecs->ws.value.sig = GDB_SIGNAL_0;
2492 handle_inferior_event (ecs);
2494 if (!ecs->wait_some_more)
2496 struct thread_info *tp;
2500 /* Finish off the continuations. */
2501 tp = inferior_thread ();
2502 do_all_intermediate_continuations_thread (tp, 1);
2503 do_all_continuations_thread (tp, 1);
2506 do_cleanups (old_chain);
2512 /* This function is attached as a "thread_stop_requested" observer.
2513 Cleanup local state that assumed the PTID was to be resumed, and
2514 report the stop to the frontend. */
2517 infrun_thread_stop_requested (ptid_t ptid)
2519 struct displaced_step_inferior_state *displaced;
2521 /* PTID was requested to stop. Remove it from the displaced
2522 stepping queue, so we don't try to resume it automatically. */
2524 for (displaced = displaced_step_inferior_states;
2526 displaced = displaced->next)
2528 struct displaced_step_request *it, **prev_next_p;
2530 it = displaced->step_request_queue;
2531 prev_next_p = &displaced->step_request_queue;
2534 if (ptid_match (it->ptid, ptid))
2536 *prev_next_p = it->next;
2542 prev_next_p = &it->next;
2549 iterate_over_threads (infrun_thread_stop_requested_callback, &ptid);
2553 infrun_thread_thread_exit (struct thread_info *tp, int silent)
2555 if (ptid_equal (target_last_wait_ptid, tp->ptid))
2556 nullify_last_target_wait_ptid ();
2559 /* Callback for iterate_over_threads. */
2562 delete_step_resume_breakpoint_callback (struct thread_info *info, void *data)
2564 if (is_exited (info->ptid))
2567 delete_step_resume_breakpoint (info);
2568 delete_exception_resume_breakpoint (info);
2572 /* In all-stop, delete the step resume breakpoint of any thread that
2573 had one. In non-stop, delete the step resume breakpoint of the
2574 thread that just stopped. */
2577 delete_step_thread_step_resume_breakpoint (void)
2579 if (!target_has_execution
2580 || ptid_equal (inferior_ptid, null_ptid))
2581 /* If the inferior has exited, we have already deleted the step
2582 resume breakpoints out of GDB's lists. */
2587 /* If in non-stop mode, only delete the step-resume or
2588 longjmp-resume breakpoint of the thread that just stopped
2590 struct thread_info *tp = inferior_thread ();
2592 delete_step_resume_breakpoint (tp);
2593 delete_exception_resume_breakpoint (tp);
2596 /* In all-stop mode, delete all step-resume and longjmp-resume
2597 breakpoints of any thread that had them. */
2598 iterate_over_threads (delete_step_resume_breakpoint_callback, NULL);
2601 /* A cleanup wrapper. */
2604 delete_step_thread_step_resume_breakpoint_cleanup (void *arg)
2606 delete_step_thread_step_resume_breakpoint ();
2609 /* Pretty print the results of target_wait, for debugging purposes. */
2612 print_target_wait_results (ptid_t waiton_ptid, ptid_t result_ptid,
2613 const struct target_waitstatus *ws)
2615 char *status_string = target_waitstatus_to_string (ws);
2616 struct ui_file *tmp_stream = mem_fileopen ();
2619 /* The text is split over several lines because it was getting too long.
2620 Call fprintf_unfiltered (gdb_stdlog) once so that the text is still
2621 output as a unit; we want only one timestamp printed if debug_timestamp
2624 fprintf_unfiltered (tmp_stream,
2625 "infrun: target_wait (%d", PIDGET (waiton_ptid));
2626 if (PIDGET (waiton_ptid) != -1)
2627 fprintf_unfiltered (tmp_stream,
2628 " [%s]", target_pid_to_str (waiton_ptid));
2629 fprintf_unfiltered (tmp_stream, ", status) =\n");
2630 fprintf_unfiltered (tmp_stream,
2631 "infrun: %d [%s],\n",
2632 PIDGET (result_ptid), target_pid_to_str (result_ptid));
2633 fprintf_unfiltered (tmp_stream,
2637 text = ui_file_xstrdup (tmp_stream, NULL);
2639 /* This uses %s in part to handle %'s in the text, but also to avoid
2640 a gcc error: the format attribute requires a string literal. */
2641 fprintf_unfiltered (gdb_stdlog, "%s", text);
2643 xfree (status_string);
2645 ui_file_delete (tmp_stream);
2648 /* Prepare and stabilize the inferior for detaching it. E.g.,
2649 detaching while a thread is displaced stepping is a recipe for
2650 crashing it, as nothing would readjust the PC out of the scratch
2654 prepare_for_detach (void)
2656 struct inferior *inf = current_inferior ();
2657 ptid_t pid_ptid = pid_to_ptid (inf->pid);
2658 struct cleanup *old_chain_1;
2659 struct displaced_step_inferior_state *displaced;
2661 displaced = get_displaced_stepping_state (inf->pid);
2663 /* Is any thread of this process displaced stepping? If not,
2664 there's nothing else to do. */
2665 if (displaced == NULL || ptid_equal (displaced->step_ptid, null_ptid))
2669 fprintf_unfiltered (gdb_stdlog,
2670 "displaced-stepping in-process while detaching");
2672 old_chain_1 = make_cleanup_restore_integer (&inf->detaching);
2675 while (!ptid_equal (displaced->step_ptid, null_ptid))
2677 struct cleanup *old_chain_2;
2678 struct execution_control_state ecss;
2679 struct execution_control_state *ecs;
2682 memset (ecs, 0, sizeof (*ecs));
2684 overlay_cache_invalid = 1;
2686 if (deprecated_target_wait_hook)
2687 ecs->ptid = deprecated_target_wait_hook (pid_ptid, &ecs->ws, 0);
2689 ecs->ptid = target_wait (pid_ptid, &ecs->ws, 0);
2692 print_target_wait_results (pid_ptid, ecs->ptid, &ecs->ws);
2694 /* If an error happens while handling the event, propagate GDB's
2695 knowledge of the executing state to the frontend/user running
2697 old_chain_2 = make_cleanup (finish_thread_state_cleanup,
2700 /* Now figure out what to do with the result of the result. */
2701 handle_inferior_event (ecs);
2703 /* No error, don't finish the state yet. */
2704 discard_cleanups (old_chain_2);
2706 /* Breakpoints and watchpoints are not installed on the target
2707 at this point, and signals are passed directly to the
2708 inferior, so this must mean the process is gone. */
2709 if (!ecs->wait_some_more)
2711 discard_cleanups (old_chain_1);
2712 error (_("Program exited while detaching"));
2716 discard_cleanups (old_chain_1);
2719 /* Wait for control to return from inferior to debugger.
2721 If inferior gets a signal, we may decide to start it up again
2722 instead of returning. That is why there is a loop in this function.
2723 When this function actually returns it means the inferior
2724 should be left stopped and GDB should read more commands. */
2727 wait_for_inferior (void)
2729 struct cleanup *old_cleanups;
2733 (gdb_stdlog, "infrun: wait_for_inferior ()\n");
2736 make_cleanup (delete_step_thread_step_resume_breakpoint_cleanup, NULL);
2740 struct execution_control_state ecss;
2741 struct execution_control_state *ecs = &ecss;
2742 struct cleanup *old_chain;
2744 memset (ecs, 0, sizeof (*ecs));
2746 overlay_cache_invalid = 1;
2748 if (deprecated_target_wait_hook)
2749 ecs->ptid = deprecated_target_wait_hook (waiton_ptid, &ecs->ws, 0);
2751 ecs->ptid = target_wait (waiton_ptid, &ecs->ws, 0);
2754 print_target_wait_results (waiton_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 = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
2761 /* Now figure out what to do with the result of the result. */
2762 handle_inferior_event (ecs);
2764 /* No error, don't finish the state yet. */
2765 discard_cleanups (old_chain);
2767 if (!ecs->wait_some_more)
2771 do_cleanups (old_cleanups);
2774 /* Asynchronous version of wait_for_inferior. It is called by the
2775 event loop whenever a change of state is detected on the file
2776 descriptor corresponding to the target. It can be called more than
2777 once to complete a single execution command. In such cases we need
2778 to keep the state in a global variable ECSS. If it is the last time
2779 that this function is called for a single execution command, then
2780 report to the user that the inferior has stopped, and do the
2781 necessary cleanups. */
2784 fetch_inferior_event (void *client_data)
2786 struct execution_control_state ecss;
2787 struct execution_control_state *ecs = &ecss;
2788 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
2789 struct cleanup *ts_old_chain;
2790 int was_sync = sync_execution;
2793 memset (ecs, 0, sizeof (*ecs));
2795 /* We're handling a live event, so make sure we're doing live
2796 debugging. If we're looking at traceframes while the target is
2797 running, we're going to need to get back to that mode after
2798 handling the event. */
2801 make_cleanup_restore_current_traceframe ();
2802 set_current_traceframe (-1);
2806 /* In non-stop mode, the user/frontend should not notice a thread
2807 switch due to internal events. Make sure we reverse to the
2808 user selected thread and frame after handling the event and
2809 running any breakpoint commands. */
2810 make_cleanup_restore_current_thread ();
2812 overlay_cache_invalid = 1;
2814 make_cleanup_restore_integer (&execution_direction);
2815 execution_direction = target_execution_direction ();
2817 if (deprecated_target_wait_hook)
2819 deprecated_target_wait_hook (waiton_ptid, &ecs->ws, TARGET_WNOHANG);
2821 ecs->ptid = target_wait (waiton_ptid, &ecs->ws, TARGET_WNOHANG);
2824 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
2826 /* If an error happens while handling the event, propagate GDB's
2827 knowledge of the executing state to the frontend/user running
2830 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
2832 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &ecs->ptid);
2834 /* Get executed before make_cleanup_restore_current_thread above to apply
2835 still for the thread which has thrown the exception. */
2836 make_bpstat_clear_actions_cleanup ();
2838 /* Now figure out what to do with the result of the result. */
2839 handle_inferior_event (ecs);
2841 if (!ecs->wait_some_more)
2843 struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
2845 delete_step_thread_step_resume_breakpoint ();
2847 /* We may not find an inferior if this was a process exit. */
2848 if (inf == NULL || inf->control.stop_soon == NO_STOP_QUIETLY)
2851 if (target_has_execution
2852 && ecs->ws.kind != TARGET_WAITKIND_NO_RESUMED
2853 && ecs->ws.kind != TARGET_WAITKIND_EXITED
2854 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
2855 && ecs->event_thread->step_multi
2856 && ecs->event_thread->control.stop_step)
2857 inferior_event_handler (INF_EXEC_CONTINUE, NULL);
2860 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
2865 /* No error, don't finish the thread states yet. */
2866 discard_cleanups (ts_old_chain);
2868 /* Revert thread and frame. */
2869 do_cleanups (old_chain);
2871 /* If the inferior was in sync execution mode, and now isn't,
2872 restore the prompt (a synchronous execution command has finished,
2873 and we're ready for input). */
2874 if (interpreter_async && was_sync && !sync_execution)
2875 display_gdb_prompt (0);
2879 && exec_done_display_p
2880 && (ptid_equal (inferior_ptid, null_ptid)
2881 || !is_running (inferior_ptid)))
2882 printf_unfiltered (_("completed.\n"));
2885 /* Record the frame and location we're currently stepping through. */
2887 set_step_info (struct frame_info *frame, struct symtab_and_line sal)
2889 struct thread_info *tp = inferior_thread ();
2891 tp->control.step_frame_id = get_frame_id (frame);
2892 tp->control.step_stack_frame_id = get_stack_frame_id (frame);
2894 tp->current_symtab = sal.symtab;
2895 tp->current_line = sal.line;
2898 /* Clear context switchable stepping state. */
2901 init_thread_stepping_state (struct thread_info *tss)
2903 tss->stepping_over_breakpoint = 0;
2904 tss->step_after_step_resume_breakpoint = 0;
2907 /* Return the cached copy of the last pid/waitstatus returned by
2908 target_wait()/deprecated_target_wait_hook(). The data is actually
2909 cached by handle_inferior_event(), which gets called immediately
2910 after target_wait()/deprecated_target_wait_hook(). */
2913 get_last_target_status (ptid_t *ptidp, struct target_waitstatus *status)
2915 *ptidp = target_last_wait_ptid;
2916 *status = target_last_waitstatus;
2920 nullify_last_target_wait_ptid (void)
2922 target_last_wait_ptid = minus_one_ptid;
2925 /* Switch thread contexts. */
2928 context_switch (ptid_t ptid)
2930 if (debug_infrun && !ptid_equal (ptid, inferior_ptid))
2932 fprintf_unfiltered (gdb_stdlog, "infrun: Switching context from %s ",
2933 target_pid_to_str (inferior_ptid));
2934 fprintf_unfiltered (gdb_stdlog, "to %s\n",
2935 target_pid_to_str (ptid));
2938 switch_to_thread (ptid);
2942 adjust_pc_after_break (struct execution_control_state *ecs)
2944 struct regcache *regcache;
2945 struct gdbarch *gdbarch;
2946 struct address_space *aspace;
2947 CORE_ADDR breakpoint_pc;
2949 /* If we've hit a breakpoint, we'll normally be stopped with SIGTRAP. If
2950 we aren't, just return.
2952 We assume that waitkinds other than TARGET_WAITKIND_STOPPED are not
2953 affected by gdbarch_decr_pc_after_break. Other waitkinds which are
2954 implemented by software breakpoints should be handled through the normal
2957 NOTE drow/2004-01-31: On some targets, breakpoints may generate
2958 different signals (SIGILL or SIGEMT for instance), but it is less
2959 clear where the PC is pointing afterwards. It may not match
2960 gdbarch_decr_pc_after_break. I don't know any specific target that
2961 generates these signals at breakpoints (the code has been in GDB since at
2962 least 1992) so I can not guess how to handle them here.
2964 In earlier versions of GDB, a target with
2965 gdbarch_have_nonsteppable_watchpoint would have the PC after hitting a
2966 watchpoint affected by gdbarch_decr_pc_after_break. I haven't found any
2967 target with both of these set in GDB history, and it seems unlikely to be
2968 correct, so gdbarch_have_nonsteppable_watchpoint is not checked here. */
2970 if (ecs->ws.kind != TARGET_WAITKIND_STOPPED)
2973 if (ecs->ws.value.sig != GDB_SIGNAL_TRAP)
2976 /* In reverse execution, when a breakpoint is hit, the instruction
2977 under it has already been de-executed. The reported PC always
2978 points at the breakpoint address, so adjusting it further would
2979 be wrong. E.g., consider this case on a decr_pc_after_break == 1
2982 B1 0x08000000 : INSN1
2983 B2 0x08000001 : INSN2
2985 PC -> 0x08000003 : INSN4
2987 Say you're stopped at 0x08000003 as above. Reverse continuing
2988 from that point should hit B2 as below. Reading the PC when the
2989 SIGTRAP is reported should read 0x08000001 and INSN2 should have
2990 been de-executed already.
2992 B1 0x08000000 : INSN1
2993 B2 PC -> 0x08000001 : INSN2
2997 We can't apply the same logic as for forward execution, because
2998 we would wrongly adjust the PC to 0x08000000, since there's a
2999 breakpoint at PC - 1. We'd then report a hit on B1, although
3000 INSN1 hadn't been de-executed yet. Doing nothing is the correct
3002 if (execution_direction == EXEC_REVERSE)
3005 /* If this target does not decrement the PC after breakpoints, then
3006 we have nothing to do. */
3007 regcache = get_thread_regcache (ecs->ptid);
3008 gdbarch = get_regcache_arch (regcache);
3009 if (gdbarch_decr_pc_after_break (gdbarch) == 0)
3012 aspace = get_regcache_aspace (regcache);
3014 /* Find the location where (if we've hit a breakpoint) the
3015 breakpoint would be. */
3016 breakpoint_pc = regcache_read_pc (regcache)
3017 - gdbarch_decr_pc_after_break (gdbarch);
3019 /* Check whether there actually is a software breakpoint inserted at
3022 If in non-stop mode, a race condition is possible where we've
3023 removed a breakpoint, but stop events for that breakpoint were
3024 already queued and arrive later. To suppress those spurious
3025 SIGTRAPs, we keep a list of such breakpoint locations for a bit,
3026 and retire them after a number of stop events are reported. */
3027 if (software_breakpoint_inserted_here_p (aspace, breakpoint_pc)
3028 || (non_stop && moribund_breakpoint_here_p (aspace, breakpoint_pc)))
3030 struct cleanup *old_cleanups = NULL;
3033 old_cleanups = record_full_gdb_operation_disable_set ();
3035 /* When using hardware single-step, a SIGTRAP is reported for both
3036 a completed single-step and a software breakpoint. Need to
3037 differentiate between the two, as the latter needs adjusting
3038 but the former does not.
3040 The SIGTRAP can be due to a completed hardware single-step only if
3041 - we didn't insert software single-step breakpoints
3042 - the thread to be examined is still the current thread
3043 - this thread is currently being stepped
3045 If any of these events did not occur, we must have stopped due
3046 to hitting a software breakpoint, and have to back up to the
3049 As a special case, we could have hardware single-stepped a
3050 software breakpoint. In this case (prev_pc == breakpoint_pc),
3051 we also need to back up to the breakpoint address. */
3053 if (singlestep_breakpoints_inserted_p
3054 || !ptid_equal (ecs->ptid, inferior_ptid)
3055 || !currently_stepping (ecs->event_thread)
3056 || ecs->event_thread->prev_pc == breakpoint_pc)
3057 regcache_write_pc (regcache, breakpoint_pc);
3060 do_cleanups (old_cleanups);
3065 init_infwait_state (void)
3067 waiton_ptid = pid_to_ptid (-1);
3068 infwait_state = infwait_normal_state;
3072 stepped_in_from (struct frame_info *frame, struct frame_id step_frame_id)
3074 for (frame = get_prev_frame (frame);
3076 frame = get_prev_frame (frame))
3078 if (frame_id_eq (get_frame_id (frame), step_frame_id))
3080 if (get_frame_type (frame) != INLINE_FRAME)
3087 /* Auxiliary function that handles syscall entry/return events.
3088 It returns 1 if the inferior should keep going (and GDB
3089 should ignore the event), or 0 if the event deserves to be
3093 handle_syscall_event (struct execution_control_state *ecs)
3095 struct regcache *regcache;
3098 if (!ptid_equal (ecs->ptid, inferior_ptid))
3099 context_switch (ecs->ptid);
3101 regcache = get_thread_regcache (ecs->ptid);
3102 syscall_number = ecs->ws.value.syscall_number;
3103 stop_pc = regcache_read_pc (regcache);
3105 if (catch_syscall_enabled () > 0
3106 && catching_syscall_number (syscall_number) > 0)
3108 enum bpstat_signal_value sval;
3111 fprintf_unfiltered (gdb_stdlog, "infrun: syscall number = '%d'\n",
3114 ecs->event_thread->control.stop_bpstat
3115 = bpstat_stop_status (get_regcache_aspace (regcache),
3116 stop_pc, ecs->ptid, &ecs->ws);
3118 sval = bpstat_explains_signal (ecs->event_thread->control.stop_bpstat);
3119 ecs->random_signal = sval == BPSTAT_SIGNAL_NO;
3121 if (!ecs->random_signal)
3123 /* Catchpoint hit. */
3124 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_TRAP;
3129 /* If no catchpoint triggered for this, then keep going. */
3130 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3135 /* Clear the supplied execution_control_state's stop_func_* fields. */
3138 clear_stop_func (struct execution_control_state *ecs)
3140 ecs->stop_func_filled_in = 0;
3141 ecs->stop_func_start = 0;
3142 ecs->stop_func_end = 0;
3143 ecs->stop_func_name = NULL;
3146 /* Lazily fill in the execution_control_state's stop_func_* fields. */
3149 fill_in_stop_func (struct gdbarch *gdbarch,
3150 struct execution_control_state *ecs)
3152 if (!ecs->stop_func_filled_in)
3154 /* Don't care about return value; stop_func_start and stop_func_name
3155 will both be 0 if it doesn't work. */
3156 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
3157 &ecs->stop_func_start, &ecs->stop_func_end);
3158 ecs->stop_func_start
3159 += gdbarch_deprecated_function_start_offset (gdbarch);
3161 ecs->stop_func_filled_in = 1;
3165 /* Given an execution control state that has been freshly filled in
3166 by an event from the inferior, figure out what it means and take
3167 appropriate action. */
3170 handle_inferior_event (struct execution_control_state *ecs)
3172 struct frame_info *frame;
3173 struct gdbarch *gdbarch;
3174 int stopped_by_watchpoint;
3175 int stepped_after_stopped_by_watchpoint = 0;
3176 struct symtab_and_line stop_pc_sal;
3177 enum stop_kind stop_soon;
3179 if (ecs->ws.kind == TARGET_WAITKIND_IGNORE)
3181 /* We had an event in the inferior, but we are not interested in
3182 handling it at this level. The lower layers have already
3183 done what needs to be done, if anything.
3185 One of the possible circumstances for this is when the
3186 inferior produces output for the console. The inferior has
3187 not stopped, and we are ignoring the event. Another possible
3188 circumstance is any event which the lower level knows will be
3189 reported multiple times without an intervening resume. */
3191 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_IGNORE\n");
3192 prepare_to_wait (ecs);
3196 if (ecs->ws.kind == TARGET_WAITKIND_NO_RESUMED
3197 && target_can_async_p () && !sync_execution)
3199 /* There were no unwaited-for children left in the target, but,
3200 we're not synchronously waiting for events either. Just
3201 ignore. Otherwise, if we were running a synchronous
3202 execution command, we need to cancel it and give the user
3203 back the terminal. */
3205 fprintf_unfiltered (gdb_stdlog,
3206 "infrun: TARGET_WAITKIND_NO_RESUMED (ignoring)\n");
3207 prepare_to_wait (ecs);
3211 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
3212 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
3213 && ecs->ws.kind != TARGET_WAITKIND_NO_RESUMED)
3215 struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
3218 stop_soon = inf->control.stop_soon;
3221 stop_soon = NO_STOP_QUIETLY;
3223 /* Cache the last pid/waitstatus. */
3224 target_last_wait_ptid = ecs->ptid;
3225 target_last_waitstatus = ecs->ws;
3227 /* Always clear state belonging to the previous time we stopped. */
3228 stop_stack_dummy = STOP_NONE;
3230 if (ecs->ws.kind == TARGET_WAITKIND_NO_RESUMED)
3232 /* No unwaited-for children left. IOW, all resumed children
3235 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_NO_RESUMED\n");
3237 stop_print_frame = 0;
3238 stop_stepping (ecs);
3242 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
3243 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED)
3245 ecs->event_thread = find_thread_ptid (ecs->ptid);
3246 /* If it's a new thread, add it to the thread database. */
3247 if (ecs->event_thread == NULL)
3248 ecs->event_thread = add_thread (ecs->ptid);
3250 /* Disable range stepping. If the next step request could use a
3251 range, this will be end up re-enabled then. */
3252 ecs->event_thread->control.may_range_step = 0;
3255 /* Dependent on valid ECS->EVENT_THREAD. */
3256 adjust_pc_after_break (ecs);
3258 /* Dependent on the current PC value modified by adjust_pc_after_break. */
3259 reinit_frame_cache ();
3261 breakpoint_retire_moribund ();
3263 /* First, distinguish signals caused by the debugger from signals
3264 that have to do with the program's own actions. Note that
3265 breakpoint insns may cause SIGTRAP or SIGILL or SIGEMT, depending
3266 on the operating system version. Here we detect when a SIGILL or
3267 SIGEMT is really a breakpoint and change it to SIGTRAP. We do
3268 something similar for SIGSEGV, since a SIGSEGV will be generated
3269 when we're trying to execute a breakpoint instruction on a
3270 non-executable stack. This happens for call dummy breakpoints
3271 for architectures like SPARC that place call dummies on the
3273 if (ecs->ws.kind == TARGET_WAITKIND_STOPPED
3274 && (ecs->ws.value.sig == GDB_SIGNAL_ILL
3275 || ecs->ws.value.sig == GDB_SIGNAL_SEGV
3276 || ecs->ws.value.sig == GDB_SIGNAL_EMT))
3278 struct regcache *regcache = get_thread_regcache (ecs->ptid);
3280 if (breakpoint_inserted_here_p (get_regcache_aspace (regcache),
3281 regcache_read_pc (regcache)))
3284 fprintf_unfiltered (gdb_stdlog,
3285 "infrun: Treating signal as SIGTRAP\n");
3286 ecs->ws.value.sig = GDB_SIGNAL_TRAP;
3290 /* Mark the non-executing threads accordingly. In all-stop, all
3291 threads of all processes are stopped when we get any event
3292 reported. In non-stop mode, only the event thread stops. If
3293 we're handling a process exit in non-stop mode, there's nothing
3294 to do, as threads of the dead process are gone, and threads of
3295 any other process were left running. */
3297 set_executing (minus_one_ptid, 0);
3298 else if (ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
3299 && ecs->ws.kind != TARGET_WAITKIND_EXITED)
3300 set_executing (ecs->ptid, 0);
3302 switch (infwait_state)
3304 case infwait_thread_hop_state:
3306 fprintf_unfiltered (gdb_stdlog, "infrun: infwait_thread_hop_state\n");
3309 case infwait_normal_state:
3311 fprintf_unfiltered (gdb_stdlog, "infrun: infwait_normal_state\n");
3314 case infwait_step_watch_state:
3316 fprintf_unfiltered (gdb_stdlog,
3317 "infrun: infwait_step_watch_state\n");
3319 stepped_after_stopped_by_watchpoint = 1;
3322 case infwait_nonstep_watch_state:
3324 fprintf_unfiltered (gdb_stdlog,
3325 "infrun: infwait_nonstep_watch_state\n");
3326 insert_breakpoints ();
3328 /* FIXME-maybe: is this cleaner than setting a flag? Does it
3329 handle things like signals arriving and other things happening
3330 in combination correctly? */
3331 stepped_after_stopped_by_watchpoint = 1;
3335 internal_error (__FILE__, __LINE__, _("bad switch"));
3338 infwait_state = infwait_normal_state;
3339 waiton_ptid = pid_to_ptid (-1);
3341 switch (ecs->ws.kind)
3343 case TARGET_WAITKIND_LOADED:
3345 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_LOADED\n");
3346 /* Ignore gracefully during startup of the inferior, as it might
3347 be the shell which has just loaded some objects, otherwise
3348 add the symbols for the newly loaded objects. Also ignore at
3349 the beginning of an attach or remote session; we will query
3350 the full list of libraries once the connection is
3352 if (stop_soon == NO_STOP_QUIETLY)
3354 struct regcache *regcache;
3355 enum bpstat_signal_value sval;
3357 if (!ptid_equal (ecs->ptid, inferior_ptid))
3358 context_switch (ecs->ptid);
3359 regcache = get_thread_regcache (ecs->ptid);
3361 handle_solib_event ();
3363 ecs->event_thread->control.stop_bpstat
3364 = bpstat_stop_status (get_regcache_aspace (regcache),
3365 stop_pc, ecs->ptid, &ecs->ws);
3368 = bpstat_explains_signal (ecs->event_thread->control.stop_bpstat);
3369 ecs->random_signal = sval == BPSTAT_SIGNAL_NO;
3371 if (!ecs->random_signal)
3373 /* A catchpoint triggered. */
3374 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_TRAP;
3375 goto process_event_stop_test;
3378 /* If requested, stop when the dynamic linker notifies
3379 gdb of events. This allows the user to get control
3380 and place breakpoints in initializer routines for
3381 dynamically loaded objects (among other things). */
3382 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3383 if (stop_on_solib_events)
3385 /* Make sure we print "Stopped due to solib-event" in
3387 stop_print_frame = 1;
3389 stop_stepping (ecs);
3394 /* If we are skipping through a shell, or through shared library
3395 loading that we aren't interested in, resume the program. If
3396 we're running the program normally, also resume. But stop if
3397 we're attaching or setting up a remote connection. */
3398 if (stop_soon == STOP_QUIETLY || stop_soon == NO_STOP_QUIETLY)
3400 if (!ptid_equal (ecs->ptid, inferior_ptid))
3401 context_switch (ecs->ptid);
3403 /* Loading of shared libraries might have changed breakpoint
3404 addresses. Make sure new breakpoints are inserted. */
3405 if (stop_soon == NO_STOP_QUIETLY
3406 && !breakpoints_always_inserted_mode ())
3407 insert_breakpoints ();
3408 resume (0, GDB_SIGNAL_0);
3409 prepare_to_wait (ecs);
3415 case TARGET_WAITKIND_SPURIOUS:
3417 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SPURIOUS\n");
3418 if (!ptid_equal (ecs->ptid, inferior_ptid))
3419 context_switch (ecs->ptid);
3420 resume (0, GDB_SIGNAL_0);
3421 prepare_to_wait (ecs);
3424 case TARGET_WAITKIND_EXITED:
3425 case TARGET_WAITKIND_SIGNALLED:
3428 if (ecs->ws.kind == TARGET_WAITKIND_EXITED)
3429 fprintf_unfiltered (gdb_stdlog,
3430 "infrun: TARGET_WAITKIND_EXITED\n");
3432 fprintf_unfiltered (gdb_stdlog,
3433 "infrun: TARGET_WAITKIND_SIGNALLED\n");
3436 inferior_ptid = ecs->ptid;
3437 set_current_inferior (find_inferior_pid (ptid_get_pid (ecs->ptid)));
3438 set_current_program_space (current_inferior ()->pspace);
3439 handle_vfork_child_exec_or_exit (0);
3440 target_terminal_ours (); /* Must do this before mourn anyway. */
3442 if (ecs->ws.kind == TARGET_WAITKIND_EXITED)
3444 /* Record the exit code in the convenience variable $_exitcode, so
3445 that the user can inspect this again later. */
3446 set_internalvar_integer (lookup_internalvar ("_exitcode"),
3447 (LONGEST) ecs->ws.value.integer);
3449 /* Also record this in the inferior itself. */
3450 current_inferior ()->has_exit_code = 1;
3451 current_inferior ()->exit_code = (LONGEST) ecs->ws.value.integer;
3453 print_exited_reason (ecs->ws.value.integer);
3456 print_signal_exited_reason (ecs->ws.value.sig);
3458 gdb_flush (gdb_stdout);
3459 target_mourn_inferior ();
3460 singlestep_breakpoints_inserted_p = 0;
3461 cancel_single_step_breakpoints ();
3462 stop_print_frame = 0;
3463 stop_stepping (ecs);
3466 /* The following are the only cases in which we keep going;
3467 the above cases end in a continue or goto. */
3468 case TARGET_WAITKIND_FORKED:
3469 case TARGET_WAITKIND_VFORKED:
3472 if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
3473 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_FORKED\n");
3475 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_VFORKED\n");
3478 /* Check whether the inferior is displaced stepping. */
3480 struct regcache *regcache = get_thread_regcache (ecs->ptid);
3481 struct gdbarch *gdbarch = get_regcache_arch (regcache);
3482 struct displaced_step_inferior_state *displaced
3483 = get_displaced_stepping_state (ptid_get_pid (ecs->ptid));
3485 /* If checking displaced stepping is supported, and thread
3486 ecs->ptid is displaced stepping. */
3487 if (displaced && ptid_equal (displaced->step_ptid, ecs->ptid))
3489 struct inferior *parent_inf
3490 = find_inferior_pid (ptid_get_pid (ecs->ptid));
3491 struct regcache *child_regcache;
3492 CORE_ADDR parent_pc;
3494 /* GDB has got TARGET_WAITKIND_FORKED or TARGET_WAITKIND_VFORKED,
3495 indicating that the displaced stepping of syscall instruction
3496 has been done. Perform cleanup for parent process here. Note
3497 that this operation also cleans up the child process for vfork,
3498 because their pages are shared. */
3499 displaced_step_fixup (ecs->ptid, GDB_SIGNAL_TRAP);
3501 if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
3503 /* Restore scratch pad for child process. */
3504 displaced_step_restore (displaced, ecs->ws.value.related_pid);
3507 /* Since the vfork/fork syscall instruction was executed in the scratchpad,
3508 the child's PC is also within the scratchpad. Set the child's PC
3509 to the parent's PC value, which has already been fixed up.
3510 FIXME: we use the parent's aspace here, although we're touching
3511 the child, because the child hasn't been added to the inferior
3512 list yet at this point. */
3515 = get_thread_arch_aspace_regcache (ecs->ws.value.related_pid,
3517 parent_inf->aspace);
3518 /* Read PC value of parent process. */
3519 parent_pc = regcache_read_pc (regcache);
3521 if (debug_displaced)
3522 fprintf_unfiltered (gdb_stdlog,
3523 "displaced: write child pc from %s to %s\n",
3525 regcache_read_pc (child_regcache)),
3526 paddress (gdbarch, parent_pc));
3528 regcache_write_pc (child_regcache, parent_pc);
3532 if (!ptid_equal (ecs->ptid, inferior_ptid))
3533 context_switch (ecs->ptid);
3535 /* Immediately detach breakpoints from the child before there's
3536 any chance of letting the user delete breakpoints from the
3537 breakpoint lists. If we don't do this early, it's easy to
3538 leave left over traps in the child, vis: "break foo; catch
3539 fork; c; <fork>; del; c; <child calls foo>". We only follow
3540 the fork on the last `continue', and by that time the
3541 breakpoint at "foo" is long gone from the breakpoint table.
3542 If we vforked, then we don't need to unpatch here, since both
3543 parent and child are sharing the same memory pages; we'll
3544 need to unpatch at follow/detach time instead to be certain
3545 that new breakpoints added between catchpoint hit time and
3546 vfork follow are detached. */
3547 if (ecs->ws.kind != TARGET_WAITKIND_VFORKED)
3549 /* This won't actually modify the breakpoint list, but will
3550 physically remove the breakpoints from the child. */
3551 detach_breakpoints (ecs->ws.value.related_pid);
3554 if (singlestep_breakpoints_inserted_p)
3556 /* Pull the single step breakpoints out of the target. */
3557 remove_single_step_breakpoints ();
3558 singlestep_breakpoints_inserted_p = 0;
3561 /* In case the event is caught by a catchpoint, remember that
3562 the event is to be followed at the next resume of the thread,
3563 and not immediately. */
3564 ecs->event_thread->pending_follow = ecs->ws;
3566 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3568 ecs->event_thread->control.stop_bpstat
3569 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
3570 stop_pc, ecs->ptid, &ecs->ws);
3572 /* Note that we're interested in knowing the bpstat actually
3573 causes a stop, not just if it may explain the signal.
3574 Software watchpoints, for example, always appear in the
3577 = !bpstat_causes_stop (ecs->event_thread->control.stop_bpstat);
3579 /* If no catchpoint triggered for this, then keep going. */
3580 if (ecs->random_signal)
3586 = (follow_fork_mode_string == follow_fork_mode_child);
3588 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3590 should_resume = follow_fork ();
3593 child = ecs->ws.value.related_pid;
3595 /* In non-stop mode, also resume the other branch. */
3596 if (non_stop && !detach_fork)
3599 switch_to_thread (parent);
3601 switch_to_thread (child);
3603 ecs->event_thread = inferior_thread ();
3604 ecs->ptid = inferior_ptid;
3609 switch_to_thread (child);
3611 switch_to_thread (parent);
3613 ecs->event_thread = inferior_thread ();
3614 ecs->ptid = inferior_ptid;
3619 stop_stepping (ecs);
3622 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_TRAP;
3623 goto process_event_stop_test;
3625 case TARGET_WAITKIND_VFORK_DONE:
3626 /* Done with the shared memory region. Re-insert breakpoints in
3627 the parent, and keep going. */
3630 fprintf_unfiltered (gdb_stdlog,
3631 "infrun: TARGET_WAITKIND_VFORK_DONE\n");
3633 if (!ptid_equal (ecs->ptid, inferior_ptid))
3634 context_switch (ecs->ptid);
3636 current_inferior ()->waiting_for_vfork_done = 0;
3637 current_inferior ()->pspace->breakpoints_not_allowed = 0;
3638 /* This also takes care of reinserting breakpoints in the
3639 previously locked inferior. */
3643 case TARGET_WAITKIND_EXECD:
3645 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXECD\n");
3647 if (!ptid_equal (ecs->ptid, inferior_ptid))
3648 context_switch (ecs->ptid);
3650 singlestep_breakpoints_inserted_p = 0;
3651 cancel_single_step_breakpoints ();
3653 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3655 /* Do whatever is necessary to the parent branch of the vfork. */
3656 handle_vfork_child_exec_or_exit (1);
3658 /* This causes the eventpoints and symbol table to be reset.
3659 Must do this now, before trying to determine whether to
3661 follow_exec (inferior_ptid, ecs->ws.value.execd_pathname);
3663 ecs->event_thread->control.stop_bpstat
3664 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
3665 stop_pc, ecs->ptid, &ecs->ws);
3667 = (bpstat_explains_signal (ecs->event_thread->control.stop_bpstat)
3668 == BPSTAT_SIGNAL_NO);
3670 /* Note that this may be referenced from inside
3671 bpstat_stop_status above, through inferior_has_execd. */
3672 xfree (ecs->ws.value.execd_pathname);
3673 ecs->ws.value.execd_pathname = NULL;
3675 /* If no catchpoint triggered for this, then keep going. */
3676 if (ecs->random_signal)
3678 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3682 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_TRAP;
3683 goto process_event_stop_test;
3685 /* Be careful not to try to gather much state about a thread
3686 that's in a syscall. It's frequently a losing proposition. */
3687 case TARGET_WAITKIND_SYSCALL_ENTRY:
3689 fprintf_unfiltered (gdb_stdlog,
3690 "infrun: TARGET_WAITKIND_SYSCALL_ENTRY\n");
3691 /* Getting the current syscall number. */
3692 if (handle_syscall_event (ecs) != 0)
3694 goto process_event_stop_test;
3696 /* Before examining the threads further, step this thread to
3697 get it entirely out of the syscall. (We get notice of the
3698 event when the thread is just on the verge of exiting a
3699 syscall. Stepping one instruction seems to get it back
3701 case TARGET_WAITKIND_SYSCALL_RETURN:
3703 fprintf_unfiltered (gdb_stdlog,
3704 "infrun: TARGET_WAITKIND_SYSCALL_RETURN\n");
3705 if (handle_syscall_event (ecs) != 0)
3707 goto process_event_stop_test;
3709 case TARGET_WAITKIND_STOPPED:
3711 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_STOPPED\n");
3712 ecs->event_thread->suspend.stop_signal = ecs->ws.value.sig;
3715 case TARGET_WAITKIND_NO_HISTORY:
3717 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_NO_HISTORY\n");
3718 /* Reverse execution: target ran out of history info. */
3720 /* Pull the single step breakpoints out of the target. */
3721 if (singlestep_breakpoints_inserted_p)
3723 if (!ptid_equal (ecs->ptid, inferior_ptid))
3724 context_switch (ecs->ptid);
3725 remove_single_step_breakpoints ();
3726 singlestep_breakpoints_inserted_p = 0;
3728 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3729 print_no_history_reason ();
3730 stop_stepping (ecs);
3734 if (ecs->ws.kind == TARGET_WAITKIND_STOPPED)
3736 /* Do we need to clean up the state of a thread that has
3737 completed a displaced single-step? (Doing so usually affects
3738 the PC, so do it here, before we set stop_pc.) */
3739 displaced_step_fixup (ecs->ptid,
3740 ecs->event_thread->suspend.stop_signal);
3742 /* If we either finished a single-step or hit a breakpoint, but
3743 the user wanted this thread to be stopped, pretend we got a
3744 SIG0 (generic unsignaled stop). */
3746 if (ecs->event_thread->stop_requested
3747 && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
3748 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3751 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3755 struct regcache *regcache = get_thread_regcache (ecs->ptid);
3756 struct gdbarch *gdbarch = get_regcache_arch (regcache);
3757 struct cleanup *old_chain = save_inferior_ptid ();
3759 inferior_ptid = ecs->ptid;
3761 fprintf_unfiltered (gdb_stdlog, "infrun: stop_pc = %s\n",
3762 paddress (gdbarch, stop_pc));
3763 if (target_stopped_by_watchpoint ())
3767 fprintf_unfiltered (gdb_stdlog, "infrun: stopped by watchpoint\n");
3769 if (target_stopped_data_address (¤t_target, &addr))
3770 fprintf_unfiltered (gdb_stdlog,
3771 "infrun: stopped data address = %s\n",
3772 paddress (gdbarch, addr));
3774 fprintf_unfiltered (gdb_stdlog,
3775 "infrun: (no data address available)\n");
3778 do_cleanups (old_chain);
3781 if (stepping_past_singlestep_breakpoint)
3783 gdb_assert (singlestep_breakpoints_inserted_p);
3784 gdb_assert (ptid_equal (singlestep_ptid, ecs->ptid));
3785 gdb_assert (!ptid_equal (singlestep_ptid, saved_singlestep_ptid));
3787 stepping_past_singlestep_breakpoint = 0;
3789 /* We've either finished single-stepping past the single-step
3790 breakpoint, or stopped for some other reason. It would be nice if
3791 we could tell, but we can't reliably. */
3792 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
3795 fprintf_unfiltered (gdb_stdlog,
3796 "infrun: stepping_past_"
3797 "singlestep_breakpoint\n");
3798 /* Pull the single step breakpoints out of the target. */
3799 if (!ptid_equal (ecs->ptid, inferior_ptid))
3800 context_switch (ecs->ptid);
3801 remove_single_step_breakpoints ();
3802 singlestep_breakpoints_inserted_p = 0;
3804 ecs->random_signal = 0;
3805 ecs->event_thread->control.trap_expected = 0;
3807 context_switch (saved_singlestep_ptid);
3808 if (deprecated_context_hook)
3809 deprecated_context_hook (pid_to_thread_id (saved_singlestep_ptid));
3811 resume (1, GDB_SIGNAL_0);
3812 prepare_to_wait (ecs);
3817 if (!ptid_equal (deferred_step_ptid, null_ptid))
3819 /* In non-stop mode, there's never a deferred_step_ptid set. */
3820 gdb_assert (!non_stop);
3822 /* If we stopped for some other reason than single-stepping, ignore
3823 the fact that we were supposed to switch back. */
3824 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
3827 fprintf_unfiltered (gdb_stdlog,
3828 "infrun: handling deferred step\n");
3830 /* Pull the single step breakpoints out of the target. */
3831 if (singlestep_breakpoints_inserted_p)
3833 if (!ptid_equal (ecs->ptid, inferior_ptid))
3834 context_switch (ecs->ptid);
3835 remove_single_step_breakpoints ();
3836 singlestep_breakpoints_inserted_p = 0;
3839 ecs->event_thread->control.trap_expected = 0;
3841 context_switch (deferred_step_ptid);
3842 deferred_step_ptid = null_ptid;
3843 /* Suppress spurious "Switching to ..." message. */
3844 previous_inferior_ptid = inferior_ptid;
3846 resume (1, GDB_SIGNAL_0);
3847 prepare_to_wait (ecs);
3851 deferred_step_ptid = null_ptid;
3854 /* See if a thread hit a thread-specific breakpoint that was meant for
3855 another thread. If so, then step that thread past the breakpoint,
3858 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
3860 int thread_hop_needed = 0;
3861 struct address_space *aspace =
3862 get_regcache_aspace (get_thread_regcache (ecs->ptid));
3864 /* Check if a regular breakpoint has been hit before checking
3865 for a potential single step breakpoint. Otherwise, GDB will
3866 not see this breakpoint hit when stepping onto breakpoints. */
3867 if (regular_breakpoint_inserted_here_p (aspace, stop_pc))
3869 ecs->random_signal = 0;
3870 if (!breakpoint_thread_match (aspace, stop_pc, ecs->ptid))
3871 thread_hop_needed = 1;
3873 else if (singlestep_breakpoints_inserted_p)
3875 /* We have not context switched yet, so this should be true
3876 no matter which thread hit the singlestep breakpoint. */
3877 gdb_assert (ptid_equal (inferior_ptid, singlestep_ptid));
3879 fprintf_unfiltered (gdb_stdlog, "infrun: software single step "
3881 target_pid_to_str (ecs->ptid));
3883 ecs->random_signal = 0;
3884 /* The call to in_thread_list is necessary because PTIDs sometimes
3885 change when we go from single-threaded to multi-threaded. If
3886 the singlestep_ptid is still in the list, assume that it is
3887 really different from ecs->ptid. */
3888 if (!ptid_equal (singlestep_ptid, ecs->ptid)
3889 && in_thread_list (singlestep_ptid))
3891 /* If the PC of the thread we were trying to single-step
3892 has changed, discard this event (which we were going
3893 to ignore anyway), and pretend we saw that thread
3894 trap. This prevents us continuously moving the
3895 single-step breakpoint forward, one instruction at a
3896 time. If the PC has changed, then the thread we were
3897 trying to single-step has trapped or been signalled,
3898 but the event has not been reported to GDB yet.
3900 There might be some cases where this loses signal
3901 information, if a signal has arrived at exactly the
3902 same time that the PC changed, but this is the best
3903 we can do with the information available. Perhaps we
3904 should arrange to report all events for all threads
3905 when they stop, or to re-poll the remote looking for
3906 this particular thread (i.e. temporarily enable
3909 CORE_ADDR new_singlestep_pc
3910 = regcache_read_pc (get_thread_regcache (singlestep_ptid));
3912 if (new_singlestep_pc != singlestep_pc)
3914 enum gdb_signal stop_signal;
3917 fprintf_unfiltered (gdb_stdlog, "infrun: unexpected thread,"
3918 " but expected thread advanced also\n");
3920 /* The current context still belongs to
3921 singlestep_ptid. Don't swap here, since that's
3922 the context we want to use. Just fudge our
3923 state and continue. */
3924 stop_signal = ecs->event_thread->suspend.stop_signal;
3925 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3926 ecs->ptid = singlestep_ptid;
3927 ecs->event_thread = find_thread_ptid (ecs->ptid);
3928 ecs->event_thread->suspend.stop_signal = stop_signal;
3929 stop_pc = new_singlestep_pc;
3934 fprintf_unfiltered (gdb_stdlog,
3935 "infrun: unexpected thread\n");
3937 thread_hop_needed = 1;
3938 stepping_past_singlestep_breakpoint = 1;
3939 saved_singlestep_ptid = singlestep_ptid;
3944 if (thread_hop_needed)
3946 struct regcache *thread_regcache;
3947 int remove_status = 0;
3950 fprintf_unfiltered (gdb_stdlog, "infrun: thread_hop_needed\n");
3952 /* Switch context before touching inferior memory, the
3953 previous thread may have exited. */
3954 if (!ptid_equal (inferior_ptid, ecs->ptid))
3955 context_switch (ecs->ptid);
3957 /* Saw a breakpoint, but it was hit by the wrong thread.
3960 if (singlestep_breakpoints_inserted_p)
3962 /* Pull the single step breakpoints out of the target. */
3963 remove_single_step_breakpoints ();
3964 singlestep_breakpoints_inserted_p = 0;
3967 /* If the arch can displace step, don't remove the
3969 thread_regcache = get_thread_regcache (ecs->ptid);
3970 if (!use_displaced_stepping (get_regcache_arch (thread_regcache)))
3971 remove_status = remove_breakpoints ();
3973 /* Did we fail to remove breakpoints? If so, try
3974 to set the PC past the bp. (There's at least
3975 one situation in which we can fail to remove
3976 the bp's: On HP-UX's that use ttrace, we can't
3977 change the address space of a vforking child
3978 process until the child exits (well, okay, not
3979 then either :-) or execs. */
3980 if (remove_status != 0)
3981 error (_("Cannot step over breakpoint hit in wrong thread"));
3986 /* Only need to require the next event from this
3987 thread in all-stop mode. */
3988 waiton_ptid = ecs->ptid;
3989 infwait_state = infwait_thread_hop_state;
3992 ecs->event_thread->stepping_over_breakpoint = 1;
3997 else if (singlestep_breakpoints_inserted_p)
3999 ecs->random_signal = 0;
4003 ecs->random_signal = 1;
4005 /* See if something interesting happened to the non-current thread. If
4006 so, then switch to that thread. */
4007 if (!ptid_equal (ecs->ptid, inferior_ptid))
4010 fprintf_unfiltered (gdb_stdlog, "infrun: context switch\n");
4012 context_switch (ecs->ptid);
4014 if (deprecated_context_hook)
4015 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
4018 /* At this point, get hold of the now-current thread's frame. */
4019 frame = get_current_frame ();
4020 gdbarch = get_frame_arch (frame);
4022 if (singlestep_breakpoints_inserted_p)
4024 /* Pull the single step breakpoints out of the target. */
4025 remove_single_step_breakpoints ();
4026 singlestep_breakpoints_inserted_p = 0;
4029 if (stepped_after_stopped_by_watchpoint)
4030 stopped_by_watchpoint = 0;
4032 stopped_by_watchpoint = watchpoints_triggered (&ecs->ws);
4034 /* If necessary, step over this watchpoint. We'll be back to display
4036 if (stopped_by_watchpoint
4037 && (target_have_steppable_watchpoint
4038 || gdbarch_have_nonsteppable_watchpoint (gdbarch)))
4040 /* At this point, we are stopped at an instruction which has
4041 attempted to write to a piece of memory under control of
4042 a watchpoint. The instruction hasn't actually executed
4043 yet. If we were to evaluate the watchpoint expression
4044 now, we would get the old value, and therefore no change
4045 would seem to have occurred.
4047 In order to make watchpoints work `right', we really need
4048 to complete the memory write, and then evaluate the
4049 watchpoint expression. We do this by single-stepping the
4052 It may not be necessary to disable the watchpoint to stop over
4053 it. For example, the PA can (with some kernel cooperation)
4054 single step over a watchpoint without disabling the watchpoint.
4056 It is far more common to need to disable a watchpoint to step
4057 the inferior over it. If we have non-steppable watchpoints,
4058 we must disable the current watchpoint; it's simplest to
4059 disable all watchpoints and breakpoints. */
4062 if (!target_have_steppable_watchpoint)
4064 remove_breakpoints ();
4065 /* See comment in resume why we need to stop bypassing signals
4066 while breakpoints have been removed. */
4067 target_pass_signals (0, NULL);
4070 hw_step = maybe_software_singlestep (gdbarch, stop_pc);
4071 target_resume (ecs->ptid, hw_step, GDB_SIGNAL_0);
4072 waiton_ptid = ecs->ptid;
4073 if (target_have_steppable_watchpoint)
4074 infwait_state = infwait_step_watch_state;
4076 infwait_state = infwait_nonstep_watch_state;
4077 prepare_to_wait (ecs);
4081 clear_stop_func (ecs);
4082 ecs->event_thread->stepping_over_breakpoint = 0;
4083 bpstat_clear (&ecs->event_thread->control.stop_bpstat);
4084 ecs->event_thread->control.stop_step = 0;
4085 stop_print_frame = 1;
4086 ecs->random_signal = 0;
4087 stopped_by_random_signal = 0;
4089 /* Hide inlined functions starting here, unless we just performed stepi or
4090 nexti. After stepi and nexti, always show the innermost frame (not any
4091 inline function call sites). */
4092 if (ecs->event_thread->control.step_range_end != 1)
4094 struct address_space *aspace =
4095 get_regcache_aspace (get_thread_regcache (ecs->ptid));
4097 /* skip_inline_frames is expensive, so we avoid it if we can
4098 determine that the address is one where functions cannot have
4099 been inlined. This improves performance with inferiors that
4100 load a lot of shared libraries, because the solib event
4101 breakpoint is defined as the address of a function (i.e. not
4102 inline). Note that we have to check the previous PC as well
4103 as the current one to catch cases when we have just
4104 single-stepped off a breakpoint prior to reinstating it.
4105 Note that we're assuming that the code we single-step to is
4106 not inline, but that's not definitive: there's nothing
4107 preventing the event breakpoint function from containing
4108 inlined code, and the single-step ending up there. If the
4109 user had set a breakpoint on that inlined code, the missing
4110 skip_inline_frames call would break things. Fortunately
4111 that's an extremely unlikely scenario. */
4112 if (!pc_at_non_inline_function (aspace, stop_pc, &ecs->ws)
4113 && !(ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4114 && ecs->event_thread->control.trap_expected
4115 && pc_at_non_inline_function (aspace,
4116 ecs->event_thread->prev_pc,
4119 skip_inline_frames (ecs->ptid);
4121 /* Re-fetch current thread's frame in case that invalidated
4123 frame = get_current_frame ();
4124 gdbarch = get_frame_arch (frame);
4128 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4129 && ecs->event_thread->control.trap_expected
4130 && gdbarch_single_step_through_delay_p (gdbarch)
4131 && currently_stepping (ecs->event_thread))
4133 /* We're trying to step off a breakpoint. Turns out that we're
4134 also on an instruction that needs to be stepped multiple
4135 times before it's been fully executing. E.g., architectures
4136 with a delay slot. It needs to be stepped twice, once for
4137 the instruction and once for the delay slot. */
4138 int step_through_delay
4139 = gdbarch_single_step_through_delay (gdbarch, frame);
4141 if (debug_infrun && step_through_delay)
4142 fprintf_unfiltered (gdb_stdlog, "infrun: step through delay\n");
4143 if (ecs->event_thread->control.step_range_end == 0
4144 && step_through_delay)
4146 /* The user issued a continue when stopped at a breakpoint.
4147 Set up for another trap and get out of here. */
4148 ecs->event_thread->stepping_over_breakpoint = 1;
4152 else if (step_through_delay)
4154 /* The user issued a step when stopped at a breakpoint.
4155 Maybe we should stop, maybe we should not - the delay
4156 slot *might* correspond to a line of source. In any
4157 case, don't decide that here, just set
4158 ecs->stepping_over_breakpoint, making sure we
4159 single-step again before breakpoints are re-inserted. */
4160 ecs->event_thread->stepping_over_breakpoint = 1;
4164 /* Look at the cause of the stop, and decide what to do.
4165 The alternatives are:
4166 1) stop_stepping and return; to really stop and return to the debugger,
4167 2) keep_going and return to start up again
4168 (set ecs->event_thread->stepping_over_breakpoint to 1 to single step once)
4169 3) set ecs->random_signal to 1, and the decision between 1 and 2
4170 will be made according to the signal handling tables. */
4172 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4176 fprintf_unfiltered (gdb_stdlog, "infrun: stopped\n");
4177 stop_print_frame = 0;
4178 stop_stepping (ecs);
4182 /* This is originated from start_remote(), start_inferior() and
4183 shared libraries hook functions. */
4184 if (stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_REMOTE)
4187 fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
4188 stop_stepping (ecs);
4192 /* This originates from attach_command(). We need to overwrite
4193 the stop_signal here, because some kernels don't ignore a
4194 SIGSTOP in a subsequent ptrace(PTRACE_CONT,SIGSTOP) call.
4195 See more comments in inferior.h. On the other hand, if we
4196 get a non-SIGSTOP, report it to the user - assume the backend
4197 will handle the SIGSTOP if it should show up later.
4199 Also consider that the attach is complete when we see a
4200 SIGTRAP. Some systems (e.g. Windows), and stubs supporting
4201 target extended-remote report it instead of a SIGSTOP
4202 (e.g. gdbserver). We already rely on SIGTRAP being our
4203 signal, so this is no exception.
4205 Also consider that the attach is complete when we see a
4206 GDB_SIGNAL_0. In non-stop mode, GDB will explicitly tell
4207 the target to stop all threads of the inferior, in case the
4208 low level attach operation doesn't stop them implicitly. If
4209 they weren't stopped implicitly, then the stub will report a
4210 GDB_SIGNAL_0, meaning: stopped for no particular reason
4211 other than GDB's request. */
4212 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
4213 && (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_STOP
4214 || ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4215 || ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_0))
4217 stop_stepping (ecs);
4218 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
4222 /* See if there is a breakpoint/watchpoint/catchpoint/etc. that
4223 handles this event. */
4224 ecs->event_thread->control.stop_bpstat
4225 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
4226 stop_pc, ecs->ptid, &ecs->ws);
4228 /* Following in case break condition called a
4230 stop_print_frame = 1;
4232 /* This is where we handle "moribund" watchpoints. Unlike
4233 software breakpoints traps, hardware watchpoint traps are
4234 always distinguishable from random traps. If no high-level
4235 watchpoint is associated with the reported stop data address
4236 anymore, then the bpstat does not explain the signal ---
4237 simply make sure to ignore it if `stopped_by_watchpoint' is
4241 && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4242 && (bpstat_explains_signal (ecs->event_thread->control.stop_bpstat)
4243 == BPSTAT_SIGNAL_NO)
4244 && stopped_by_watchpoint)
4245 fprintf_unfiltered (gdb_stdlog,
4246 "infrun: no user watchpoint explains "
4247 "watchpoint SIGTRAP, ignoring\n");
4249 /* NOTE: cagney/2003-03-29: These two checks for a random signal
4250 at one stage in the past included checks for an inferior
4251 function call's call dummy's return breakpoint. The original
4252 comment, that went with the test, read:
4254 ``End of a stack dummy. Some systems (e.g. Sony news) give
4255 another signal besides SIGTRAP, so check here as well as
4258 If someone ever tries to get call dummys on a
4259 non-executable stack to work (where the target would stop
4260 with something like a SIGSEGV), then those tests might need
4261 to be re-instated. Given, however, that the tests were only
4262 enabled when momentary breakpoints were not being used, I
4263 suspect that it won't be the case.
4265 NOTE: kettenis/2004-02-05: Indeed such checks don't seem to
4266 be necessary for call dummies on a non-executable stack on
4269 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
4271 = !((bpstat_explains_signal (ecs->event_thread->control.stop_bpstat)
4272 != BPSTAT_SIGNAL_NO)
4273 || stopped_by_watchpoint
4274 || ecs->event_thread->control.trap_expected
4275 || (ecs->event_thread->control.step_range_end
4276 && (ecs->event_thread->control.step_resume_breakpoint
4280 enum bpstat_signal_value sval;
4282 sval = bpstat_explains_signal (ecs->event_thread->control.stop_bpstat);
4283 ecs->random_signal = (sval == BPSTAT_SIGNAL_NO);
4285 if (sval == BPSTAT_SIGNAL_HIDE)
4286 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_TRAP;
4289 process_event_stop_test:
4291 /* Re-fetch current thread's frame in case we did a
4292 "goto process_event_stop_test" above. */
4293 frame = get_current_frame ();
4294 gdbarch = get_frame_arch (frame);
4296 /* For the program's own signals, act according to
4297 the signal handling tables. */
4299 if (ecs->random_signal)
4301 /* Signal not for debugging purposes. */
4303 struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
4306 fprintf_unfiltered (gdb_stdlog, "infrun: random signal %d\n",
4307 ecs->event_thread->suspend.stop_signal);
4309 stopped_by_random_signal = 1;
4311 if (signal_print[ecs->event_thread->suspend.stop_signal])
4314 target_terminal_ours_for_output ();
4315 print_signal_received_reason
4316 (ecs->event_thread->suspend.stop_signal);
4318 /* Always stop on signals if we're either just gaining control
4319 of the program, or the user explicitly requested this thread
4320 to remain stopped. */
4321 if (stop_soon != NO_STOP_QUIETLY
4322 || ecs->event_thread->stop_requested
4324 && signal_stop_state (ecs->event_thread->suspend.stop_signal)))
4326 stop_stepping (ecs);
4329 /* If not going to stop, give terminal back
4330 if we took it away. */
4332 target_terminal_inferior ();
4334 /* Clear the signal if it should not be passed. */
4335 if (signal_program[ecs->event_thread->suspend.stop_signal] == 0)
4336 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
4338 if (ecs->event_thread->prev_pc == stop_pc
4339 && ecs->event_thread->control.trap_expected
4340 && ecs->event_thread->control.step_resume_breakpoint == NULL)
4342 /* We were just starting a new sequence, attempting to
4343 single-step off of a breakpoint and expecting a SIGTRAP.
4344 Instead this signal arrives. This signal will take us out
4345 of the stepping range so GDB needs to remember to, when
4346 the signal handler returns, resume stepping off that
4348 /* To simplify things, "continue" is forced to use the same
4349 code paths as single-step - set a breakpoint at the
4350 signal return address and then, once hit, step off that
4353 fprintf_unfiltered (gdb_stdlog,
4354 "infrun: signal arrived while stepping over "
4357 insert_hp_step_resume_breakpoint_at_frame (frame);
4358 ecs->event_thread->step_after_step_resume_breakpoint = 1;
4359 /* Reset trap_expected to ensure breakpoints are re-inserted. */
4360 ecs->event_thread->control.trap_expected = 0;
4365 if (ecs->event_thread->control.step_range_end != 0
4366 && ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_0
4367 && pc_in_thread_step_range (stop_pc, ecs->event_thread)
4368 && frame_id_eq (get_stack_frame_id (frame),
4369 ecs->event_thread->control.step_stack_frame_id)
4370 && ecs->event_thread->control.step_resume_breakpoint == NULL)
4372 /* The inferior is about to take a signal that will take it
4373 out of the single step range. Set a breakpoint at the
4374 current PC (which is presumably where the signal handler
4375 will eventually return) and then allow the inferior to
4378 Note that this is only needed for a signal delivered
4379 while in the single-step range. Nested signals aren't a
4380 problem as they eventually all return. */
4382 fprintf_unfiltered (gdb_stdlog,
4383 "infrun: signal may take us out of "
4384 "single-step range\n");
4386 insert_hp_step_resume_breakpoint_at_frame (frame);
4387 /* Reset trap_expected to ensure breakpoints are re-inserted. */
4388 ecs->event_thread->control.trap_expected = 0;
4393 /* Note: step_resume_breakpoint may be non-NULL. This occures
4394 when either there's a nested signal, or when there's a
4395 pending signal enabled just as the signal handler returns
4396 (leaving the inferior at the step-resume-breakpoint without
4397 actually executing it). Either way continue until the
4398 breakpoint is really hit. */
4402 /* Handle cases caused by hitting a breakpoint. */
4404 CORE_ADDR jmp_buf_pc;
4405 struct bpstat_what what;
4407 what = bpstat_what (ecs->event_thread->control.stop_bpstat);
4409 if (what.call_dummy)
4411 stop_stack_dummy = what.call_dummy;
4414 /* If we hit an internal event that triggers symbol changes, the
4415 current frame will be invalidated within bpstat_what (e.g.,
4416 if we hit an internal solib event). Re-fetch it. */
4417 frame = get_current_frame ();
4418 gdbarch = get_frame_arch (frame);
4420 switch (what.main_action)
4422 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
4423 /* If we hit the breakpoint at longjmp while stepping, we
4424 install a momentary breakpoint at the target of the
4428 fprintf_unfiltered (gdb_stdlog,
4429 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME\n");
4431 ecs->event_thread->stepping_over_breakpoint = 1;
4433 if (what.is_longjmp)
4435 struct value *arg_value;
4437 /* If we set the longjmp breakpoint via a SystemTap
4438 probe, then use it to extract the arguments. The
4439 destination PC is the third argument to the
4441 arg_value = probe_safe_evaluate_at_pc (frame, 2);
4443 jmp_buf_pc = value_as_address (arg_value);
4444 else if (!gdbarch_get_longjmp_target_p (gdbarch)
4445 || !gdbarch_get_longjmp_target (gdbarch,
4446 frame, &jmp_buf_pc))
4449 fprintf_unfiltered (gdb_stdlog,
4450 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME "
4451 "(!gdbarch_get_longjmp_target)\n");
4456 /* Insert a breakpoint at resume address. */
4457 insert_longjmp_resume_breakpoint (gdbarch, jmp_buf_pc);
4460 check_exception_resume (ecs, frame);
4464 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
4466 struct frame_info *init_frame;
4468 /* There are several cases to consider.
4470 1. The initiating frame no longer exists. In this case
4471 we must stop, because the exception or longjmp has gone
4474 2. The initiating frame exists, and is the same as the
4475 current frame. We stop, because the exception or
4476 longjmp has been caught.
4478 3. The initiating frame exists and is different from
4479 the current frame. This means the exception or longjmp
4480 has been caught beneath the initiating frame, so keep
4483 4. longjmp breakpoint has been placed just to protect
4484 against stale dummy frames and user is not interested
4485 in stopping around longjmps. */
4488 fprintf_unfiltered (gdb_stdlog,
4489 "infrun: BPSTAT_WHAT_CLEAR_LONGJMP_RESUME\n");
4491 gdb_assert (ecs->event_thread->control.exception_resume_breakpoint
4493 delete_exception_resume_breakpoint (ecs->event_thread);
4495 if (what.is_longjmp)
4497 check_longjmp_breakpoint_for_call_dummy (ecs->event_thread->num);
4499 if (!frame_id_p (ecs->event_thread->initiating_frame))
4507 init_frame = frame_find_by_id (ecs->event_thread->initiating_frame);
4511 struct frame_id current_id
4512 = get_frame_id (get_current_frame ());
4513 if (frame_id_eq (current_id,
4514 ecs->event_thread->initiating_frame))
4516 /* Case 2. Fall through. */
4526 /* For Cases 1 and 2, remove the step-resume breakpoint,
4528 delete_step_resume_breakpoint (ecs->event_thread);
4530 ecs->event_thread->control.stop_step = 1;
4531 print_end_stepping_range_reason ();
4532 stop_stepping (ecs);
4536 case BPSTAT_WHAT_SINGLE:
4538 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_SINGLE\n");
4539 ecs->event_thread->stepping_over_breakpoint = 1;
4540 /* Still need to check other stuff, at least the case where
4541 we are stepping and step out of the right range. */
4544 case BPSTAT_WHAT_STEP_RESUME:
4546 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STEP_RESUME\n");
4548 delete_step_resume_breakpoint (ecs->event_thread);
4549 if (ecs->event_thread->control.proceed_to_finish
4550 && execution_direction == EXEC_REVERSE)
4552 struct thread_info *tp = ecs->event_thread;
4554 /* We are finishing a function in reverse, and just hit
4555 the step-resume breakpoint at the start address of
4556 the function, and we're almost there -- just need to
4557 back up by one more single-step, which should take us
4558 back to the function call. */
4559 tp->control.step_range_start = tp->control.step_range_end = 1;
4563 fill_in_stop_func (gdbarch, ecs);
4564 if (stop_pc == ecs->stop_func_start
4565 && execution_direction == EXEC_REVERSE)
4567 /* We are stepping over a function call in reverse, and
4568 just hit the step-resume breakpoint at the start
4569 address of the function. Go back to single-stepping,
4570 which should take us back to the function call. */
4571 ecs->event_thread->stepping_over_breakpoint = 1;
4577 case BPSTAT_WHAT_STOP_NOISY:
4579 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_NOISY\n");
4580 stop_print_frame = 1;
4582 /* We are about to nuke the step_resume_breakpointt via the
4583 cleanup chain, so no need to worry about it here. */
4585 stop_stepping (ecs);
4588 case BPSTAT_WHAT_STOP_SILENT:
4590 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_SILENT\n");
4591 stop_print_frame = 0;
4593 /* We are about to nuke the step_resume_breakpoin via the
4594 cleanup chain, so no need to worry about it here. */
4596 stop_stepping (ecs);
4599 case BPSTAT_WHAT_HP_STEP_RESUME:
4601 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_HP_STEP_RESUME\n");
4603 delete_step_resume_breakpoint (ecs->event_thread);
4604 if (ecs->event_thread->step_after_step_resume_breakpoint)
4606 /* Back when the step-resume breakpoint was inserted, we
4607 were trying to single-step off a breakpoint. Go back
4609 ecs->event_thread->step_after_step_resume_breakpoint = 0;
4610 ecs->event_thread->stepping_over_breakpoint = 1;
4616 case BPSTAT_WHAT_KEEP_CHECKING:
4621 /* We come here if we hit a breakpoint but should not
4622 stop for it. Possibly we also were stepping
4623 and should stop for that. So fall through and
4624 test for stepping. But, if not stepping,
4627 /* In all-stop mode, if we're currently stepping but have stopped in
4628 some other thread, we need to switch back to the stepped thread. */
4631 struct thread_info *tp;
4633 tp = iterate_over_threads (currently_stepping_or_nexting_callback,
4637 /* However, if the current thread is blocked on some internal
4638 breakpoint, and we simply need to step over that breakpoint
4639 to get it going again, do that first. */
4640 if ((ecs->event_thread->control.trap_expected
4641 && ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_TRAP)
4642 || ecs->event_thread->stepping_over_breakpoint)
4648 /* If the stepping thread exited, then don't try to switch
4649 back and resume it, which could fail in several different
4650 ways depending on the target. Instead, just keep going.
4652 We can find a stepping dead thread in the thread list in
4655 - The target supports thread exit events, and when the
4656 target tries to delete the thread from the thread list,
4657 inferior_ptid pointed at the exiting thread. In such
4658 case, calling delete_thread does not really remove the
4659 thread from the list; instead, the thread is left listed,
4660 with 'exited' state.
4662 - The target's debug interface does not support thread
4663 exit events, and so we have no idea whatsoever if the
4664 previously stepping thread is still alive. For that
4665 reason, we need to synchronously query the target
4667 if (is_exited (tp->ptid)
4668 || !target_thread_alive (tp->ptid))
4671 fprintf_unfiltered (gdb_stdlog,
4672 "infrun: not switching back to "
4673 "stepped thread, it has vanished\n");
4675 delete_thread (tp->ptid);
4680 /* Otherwise, we no longer expect a trap in the current thread.
4681 Clear the trap_expected flag before switching back -- this is
4682 what keep_going would do as well, if we called it. */
4683 ecs->event_thread->control.trap_expected = 0;
4686 fprintf_unfiltered (gdb_stdlog,
4687 "infrun: switching back to stepped thread\n");
4689 ecs->event_thread = tp;
4690 ecs->ptid = tp->ptid;
4691 context_switch (ecs->ptid);
4697 if (ecs->event_thread->control.step_resume_breakpoint)
4700 fprintf_unfiltered (gdb_stdlog,
4701 "infrun: step-resume breakpoint is inserted\n");
4703 /* Having a step-resume breakpoint overrides anything
4704 else having to do with stepping commands until
4705 that breakpoint is reached. */
4710 if (ecs->event_thread->control.step_range_end == 0)
4713 fprintf_unfiltered (gdb_stdlog, "infrun: no stepping, continue\n");
4714 /* Likewise if we aren't even stepping. */
4719 /* Re-fetch current thread's frame in case the code above caused
4720 the frame cache to be re-initialized, making our FRAME variable
4721 a dangling pointer. */
4722 frame = get_current_frame ();
4723 gdbarch = get_frame_arch (frame);
4724 fill_in_stop_func (gdbarch, ecs);
4726 /* If stepping through a line, keep going if still within it.
4728 Note that step_range_end is the address of the first instruction
4729 beyond the step range, and NOT the address of the last instruction
4732 Note also that during reverse execution, we may be stepping
4733 through a function epilogue and therefore must detect when
4734 the current-frame changes in the middle of a line. */
4736 if (pc_in_thread_step_range (stop_pc, ecs->event_thread)
4737 && (execution_direction != EXEC_REVERSE
4738 || frame_id_eq (get_frame_id (frame),
4739 ecs->event_thread->control.step_frame_id)))
4743 (gdb_stdlog, "infrun: stepping inside range [%s-%s]\n",
4744 paddress (gdbarch, ecs->event_thread->control.step_range_start),
4745 paddress (gdbarch, ecs->event_thread->control.step_range_end));
4747 /* Tentatively re-enable range stepping; `resume' disables it if
4748 necessary (e.g., if we're stepping over a breakpoint or we
4749 have software watchpoints). */
4750 ecs->event_thread->control.may_range_step = 1;
4752 /* When stepping backward, stop at beginning of line range
4753 (unless it's the function entry point, in which case
4754 keep going back to the call point). */
4755 if (stop_pc == ecs->event_thread->control.step_range_start
4756 && stop_pc != ecs->stop_func_start
4757 && execution_direction == EXEC_REVERSE)
4759 ecs->event_thread->control.stop_step = 1;
4760 print_end_stepping_range_reason ();
4761 stop_stepping (ecs);
4769 /* We stepped out of the stepping range. */
4771 /* If we are stepping at the source level and entered the runtime
4772 loader dynamic symbol resolution code...
4774 EXEC_FORWARD: we keep on single stepping until we exit the run
4775 time loader code and reach the callee's address.
4777 EXEC_REVERSE: we've already executed the callee (backward), and
4778 the runtime loader code is handled just like any other
4779 undebuggable function call. Now we need only keep stepping
4780 backward through the trampoline code, and that's handled further
4781 down, so there is nothing for us to do here. */
4783 if (execution_direction != EXEC_REVERSE
4784 && ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
4785 && in_solib_dynsym_resolve_code (stop_pc))
4787 CORE_ADDR pc_after_resolver =
4788 gdbarch_skip_solib_resolver (gdbarch, stop_pc);
4791 fprintf_unfiltered (gdb_stdlog,
4792 "infrun: stepped into dynsym resolve code\n");
4794 if (pc_after_resolver)
4796 /* Set up a step-resume breakpoint at the address
4797 indicated by SKIP_SOLIB_RESOLVER. */
4798 struct symtab_and_line sr_sal;
4801 sr_sal.pc = pc_after_resolver;
4802 sr_sal.pspace = get_frame_program_space (frame);
4804 insert_step_resume_breakpoint_at_sal (gdbarch,
4805 sr_sal, null_frame_id);
4812 if (ecs->event_thread->control.step_range_end != 1
4813 && (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
4814 || ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
4815 && get_frame_type (frame) == SIGTRAMP_FRAME)
4818 fprintf_unfiltered (gdb_stdlog,
4819 "infrun: stepped into signal trampoline\n");
4820 /* The inferior, while doing a "step" or "next", has ended up in
4821 a signal trampoline (either by a signal being delivered or by
4822 the signal handler returning). Just single-step until the
4823 inferior leaves the trampoline (either by calling the handler
4829 /* If we're in the return path from a shared library trampoline,
4830 we want to proceed through the trampoline when stepping. */
4831 /* macro/2012-04-25: This needs to come before the subroutine
4832 call check below as on some targets return trampolines look
4833 like subroutine calls (MIPS16 return thunks). */
4834 if (gdbarch_in_solib_return_trampoline (gdbarch,
4835 stop_pc, ecs->stop_func_name)
4836 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
4838 /* Determine where this trampoline returns. */
4839 CORE_ADDR real_stop_pc;
4841 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
4844 fprintf_unfiltered (gdb_stdlog,
4845 "infrun: stepped into solib return tramp\n");
4847 /* Only proceed through if we know where it's going. */
4850 /* And put the step-breakpoint there and go until there. */
4851 struct symtab_and_line sr_sal;
4853 init_sal (&sr_sal); /* initialize to zeroes */
4854 sr_sal.pc = real_stop_pc;
4855 sr_sal.section = find_pc_overlay (sr_sal.pc);
4856 sr_sal.pspace = get_frame_program_space (frame);
4858 /* Do not specify what the fp should be when we stop since
4859 on some machines the prologue is where the new fp value
4861 insert_step_resume_breakpoint_at_sal (gdbarch,
4862 sr_sal, null_frame_id);
4864 /* Restart without fiddling with the step ranges or
4871 /* Check for subroutine calls. The check for the current frame
4872 equalling the step ID is not necessary - the check of the
4873 previous frame's ID is sufficient - but it is a common case and
4874 cheaper than checking the previous frame's ID.
4876 NOTE: frame_id_eq will never report two invalid frame IDs as
4877 being equal, so to get into this block, both the current and
4878 previous frame must have valid frame IDs. */
4879 /* The outer_frame_id check is a heuristic to detect stepping
4880 through startup code. If we step over an instruction which
4881 sets the stack pointer from an invalid value to a valid value,
4882 we may detect that as a subroutine call from the mythical
4883 "outermost" function. This could be fixed by marking
4884 outermost frames as !stack_p,code_p,special_p. Then the
4885 initial outermost frame, before sp was valid, would
4886 have code_addr == &_start. See the comment in frame_id_eq
4888 if (!frame_id_eq (get_stack_frame_id (frame),
4889 ecs->event_thread->control.step_stack_frame_id)
4890 && (frame_id_eq (frame_unwind_caller_id (get_current_frame ()),
4891 ecs->event_thread->control.step_stack_frame_id)
4892 && (!frame_id_eq (ecs->event_thread->control.step_stack_frame_id,
4894 || step_start_function != find_pc_function (stop_pc))))
4896 CORE_ADDR real_stop_pc;
4899 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into subroutine\n");
4901 if ((ecs->event_thread->control.step_over_calls == STEP_OVER_NONE)
4902 || ((ecs->event_thread->control.step_range_end == 1)
4903 && in_prologue (gdbarch, ecs->event_thread->prev_pc,
4904 ecs->stop_func_start)))
4906 /* I presume that step_over_calls is only 0 when we're
4907 supposed to be stepping at the assembly language level
4908 ("stepi"). Just stop. */
4909 /* Also, maybe we just did a "nexti" inside a prolog, so we
4910 thought it was a subroutine call but it was not. Stop as
4912 /* And this works the same backward as frontward. MVS */
4913 ecs->event_thread->control.stop_step = 1;
4914 print_end_stepping_range_reason ();
4915 stop_stepping (ecs);
4919 /* Reverse stepping through solib trampolines. */
4921 if (execution_direction == EXEC_REVERSE
4922 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE
4923 && (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
4924 || (ecs->stop_func_start == 0
4925 && in_solib_dynsym_resolve_code (stop_pc))))
4927 /* Any solib trampoline code can be handled in reverse
4928 by simply continuing to single-step. We have already
4929 executed the solib function (backwards), and a few
4930 steps will take us back through the trampoline to the
4936 if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
4938 /* We're doing a "next".
4940 Normal (forward) execution: set a breakpoint at the
4941 callee's return address (the address at which the caller
4944 Reverse (backward) execution. set the step-resume
4945 breakpoint at the start of the function that we just
4946 stepped into (backwards), and continue to there. When we
4947 get there, we'll need to single-step back to the caller. */
4949 if (execution_direction == EXEC_REVERSE)
4951 /* If we're already at the start of the function, we've either
4952 just stepped backward into a single instruction function,
4953 or stepped back out of a signal handler to the first instruction
4954 of the function. Just keep going, which will single-step back
4956 if (ecs->stop_func_start != stop_pc)
4958 struct symtab_and_line sr_sal;
4960 /* Normal function call return (static or dynamic). */
4962 sr_sal.pc = ecs->stop_func_start;
4963 sr_sal.pspace = get_frame_program_space (frame);
4964 insert_step_resume_breakpoint_at_sal (gdbarch,
4965 sr_sal, null_frame_id);
4969 insert_step_resume_breakpoint_at_caller (frame);
4975 /* If we are in a function call trampoline (a stub between the
4976 calling routine and the real function), locate the real
4977 function. That's what tells us (a) whether we want to step
4978 into it at all, and (b) what prologue we want to run to the
4979 end of, if we do step into it. */
4980 real_stop_pc = skip_language_trampoline (frame, stop_pc);
4981 if (real_stop_pc == 0)
4982 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
4983 if (real_stop_pc != 0)
4984 ecs->stop_func_start = real_stop_pc;
4986 if (real_stop_pc != 0 && in_solib_dynsym_resolve_code (real_stop_pc))
4988 struct symtab_and_line sr_sal;
4991 sr_sal.pc = ecs->stop_func_start;
4992 sr_sal.pspace = get_frame_program_space (frame);
4994 insert_step_resume_breakpoint_at_sal (gdbarch,
4995 sr_sal, null_frame_id);
5000 /* If we have line number information for the function we are
5001 thinking of stepping into and the function isn't on the skip
5004 If there are several symtabs at that PC (e.g. with include
5005 files), just want to know whether *any* of them have line
5006 numbers. find_pc_line handles this. */
5008 struct symtab_and_line tmp_sal;
5010 tmp_sal = find_pc_line (ecs->stop_func_start, 0);
5011 if (tmp_sal.line != 0
5012 && !function_name_is_marked_for_skip (ecs->stop_func_name,
5015 if (execution_direction == EXEC_REVERSE)
5016 handle_step_into_function_backward (gdbarch, ecs);
5018 handle_step_into_function (gdbarch, ecs);
5023 /* If we have no line number and the step-stop-if-no-debug is
5024 set, we stop the step so that the user has a chance to switch
5025 in assembly mode. */
5026 if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
5027 && step_stop_if_no_debug)
5029 ecs->event_thread->control.stop_step = 1;
5030 print_end_stepping_range_reason ();
5031 stop_stepping (ecs);
5035 if (execution_direction == EXEC_REVERSE)
5037 /* If we're already at the start of the function, we've either just
5038 stepped backward into a single instruction function without line
5039 number info, or stepped back out of a signal handler to the first
5040 instruction of the function without line number info. Just keep
5041 going, which will single-step back to the caller. */
5042 if (ecs->stop_func_start != stop_pc)
5044 /* Set a breakpoint at callee's start address.
5045 From there we can step once and be back in the caller. */
5046 struct symtab_and_line sr_sal;
5049 sr_sal.pc = ecs->stop_func_start;
5050 sr_sal.pspace = get_frame_program_space (frame);
5051 insert_step_resume_breakpoint_at_sal (gdbarch,
5052 sr_sal, null_frame_id);
5056 /* Set a breakpoint at callee's return address (the address
5057 at which the caller will resume). */
5058 insert_step_resume_breakpoint_at_caller (frame);
5064 /* Reverse stepping through solib trampolines. */
5066 if (execution_direction == EXEC_REVERSE
5067 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
5069 if (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
5070 || (ecs->stop_func_start == 0
5071 && in_solib_dynsym_resolve_code (stop_pc)))
5073 /* Any solib trampoline code can be handled in reverse
5074 by simply continuing to single-step. We have already
5075 executed the solib function (backwards), and a few
5076 steps will take us back through the trampoline to the
5081 else if (in_solib_dynsym_resolve_code (stop_pc))
5083 /* Stepped backward into the solib dynsym resolver.
5084 Set a breakpoint at its start and continue, then
5085 one more step will take us out. */
5086 struct symtab_and_line sr_sal;
5089 sr_sal.pc = ecs->stop_func_start;
5090 sr_sal.pspace = get_frame_program_space (frame);
5091 insert_step_resume_breakpoint_at_sal (gdbarch,
5092 sr_sal, null_frame_id);
5098 stop_pc_sal = find_pc_line (stop_pc, 0);
5100 /* NOTE: tausq/2004-05-24: This if block used to be done before all
5101 the trampoline processing logic, however, there are some trampolines
5102 that have no names, so we should do trampoline handling first. */
5103 if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
5104 && ecs->stop_func_name == NULL
5105 && stop_pc_sal.line == 0)
5108 fprintf_unfiltered (gdb_stdlog,
5109 "infrun: stepped into undebuggable function\n");
5111 /* The inferior just stepped into, or returned to, an
5112 undebuggable function (where there is no debugging information
5113 and no line number corresponding to the address where the
5114 inferior stopped). Since we want to skip this kind of code,
5115 we keep going until the inferior returns from this
5116 function - unless the user has asked us not to (via
5117 set step-mode) or we no longer know how to get back
5118 to the call site. */
5119 if (step_stop_if_no_debug
5120 || !frame_id_p (frame_unwind_caller_id (frame)))
5122 /* If we have no line number and the step-stop-if-no-debug
5123 is set, we stop the step so that the user has a chance to
5124 switch in assembly mode. */
5125 ecs->event_thread->control.stop_step = 1;
5126 print_end_stepping_range_reason ();
5127 stop_stepping (ecs);
5132 /* Set a breakpoint at callee's return address (the address
5133 at which the caller will resume). */
5134 insert_step_resume_breakpoint_at_caller (frame);
5140 if (ecs->event_thread->control.step_range_end == 1)
5142 /* It is stepi or nexti. We always want to stop stepping after
5145 fprintf_unfiltered (gdb_stdlog, "infrun: stepi/nexti\n");
5146 ecs->event_thread->control.stop_step = 1;
5147 print_end_stepping_range_reason ();
5148 stop_stepping (ecs);
5152 if (stop_pc_sal.line == 0)
5154 /* We have no line number information. That means to stop
5155 stepping (does this always happen right after one instruction,
5156 when we do "s" in a function with no line numbers,
5157 or can this happen as a result of a return or longjmp?). */
5159 fprintf_unfiltered (gdb_stdlog, "infrun: no line number info\n");
5160 ecs->event_thread->control.stop_step = 1;
5161 print_end_stepping_range_reason ();
5162 stop_stepping (ecs);
5166 /* Look for "calls" to inlined functions, part one. If the inline
5167 frame machinery detected some skipped call sites, we have entered
5168 a new inline function. */
5170 if (frame_id_eq (get_frame_id (get_current_frame ()),
5171 ecs->event_thread->control.step_frame_id)
5172 && inline_skipped_frames (ecs->ptid))
5174 struct symtab_and_line call_sal;
5177 fprintf_unfiltered (gdb_stdlog,
5178 "infrun: stepped into inlined function\n");
5180 find_frame_sal (get_current_frame (), &call_sal);
5182 if (ecs->event_thread->control.step_over_calls != STEP_OVER_ALL)
5184 /* For "step", we're going to stop. But if the call site
5185 for this inlined function is on the same source line as
5186 we were previously stepping, go down into the function
5187 first. Otherwise stop at the call site. */
5189 if (call_sal.line == ecs->event_thread->current_line
5190 && call_sal.symtab == ecs->event_thread->current_symtab)
5191 step_into_inline_frame (ecs->ptid);
5193 ecs->event_thread->control.stop_step = 1;
5194 print_end_stepping_range_reason ();
5195 stop_stepping (ecs);
5200 /* For "next", we should stop at the call site if it is on a
5201 different source line. Otherwise continue through the
5202 inlined function. */
5203 if (call_sal.line == ecs->event_thread->current_line
5204 && call_sal.symtab == ecs->event_thread->current_symtab)
5208 ecs->event_thread->control.stop_step = 1;
5209 print_end_stepping_range_reason ();
5210 stop_stepping (ecs);
5216 /* Look for "calls" to inlined functions, part two. If we are still
5217 in the same real function we were stepping through, but we have
5218 to go further up to find the exact frame ID, we are stepping
5219 through a more inlined call beyond its call site. */
5221 if (get_frame_type (get_current_frame ()) == INLINE_FRAME
5222 && !frame_id_eq (get_frame_id (get_current_frame ()),
5223 ecs->event_thread->control.step_frame_id)
5224 && stepped_in_from (get_current_frame (),
5225 ecs->event_thread->control.step_frame_id))
5228 fprintf_unfiltered (gdb_stdlog,
5229 "infrun: stepping through inlined function\n");
5231 if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
5235 ecs->event_thread->control.stop_step = 1;
5236 print_end_stepping_range_reason ();
5237 stop_stepping (ecs);
5242 if ((stop_pc == stop_pc_sal.pc)
5243 && (ecs->event_thread->current_line != stop_pc_sal.line
5244 || ecs->event_thread->current_symtab != stop_pc_sal.symtab))
5246 /* We are at the start of a different line. So stop. Note that
5247 we don't stop if we step into the middle of a different line.
5248 That is said to make things like for (;;) statements work
5251 fprintf_unfiltered (gdb_stdlog,
5252 "infrun: stepped to a different line\n");
5253 ecs->event_thread->control.stop_step = 1;
5254 print_end_stepping_range_reason ();
5255 stop_stepping (ecs);
5259 /* We aren't done stepping.
5261 Optimize by setting the stepping range to the line.
5262 (We might not be in the original line, but if we entered a
5263 new line in mid-statement, we continue stepping. This makes
5264 things like for(;;) statements work better.) */
5266 ecs->event_thread->control.step_range_start = stop_pc_sal.pc;
5267 ecs->event_thread->control.step_range_end = stop_pc_sal.end;
5268 ecs->event_thread->control.may_range_step = 1;
5269 set_step_info (frame, stop_pc_sal);
5272 fprintf_unfiltered (gdb_stdlog, "infrun: keep going\n");
5276 /* Is thread TP in the middle of single-stepping? */
5279 currently_stepping (struct thread_info *tp)
5281 return ((tp->control.step_range_end
5282 && tp->control.step_resume_breakpoint == NULL)
5283 || tp->control.trap_expected
5284 || bpstat_should_step ());
5287 /* Returns true if any thread *but* the one passed in "data" is in the
5288 middle of stepping or of handling a "next". */
5291 currently_stepping_or_nexting_callback (struct thread_info *tp, void *data)
5296 return (tp->control.step_range_end
5297 || tp->control.trap_expected);
5300 /* Inferior has stepped into a subroutine call with source code that
5301 we should not step over. Do step to the first line of code in
5305 handle_step_into_function (struct gdbarch *gdbarch,
5306 struct execution_control_state *ecs)
5309 struct symtab_and_line stop_func_sal, sr_sal;
5311 fill_in_stop_func (gdbarch, ecs);
5313 s = find_pc_symtab (stop_pc);
5314 if (s && s->language != language_asm)
5315 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
5316 ecs->stop_func_start);
5318 stop_func_sal = find_pc_line (ecs->stop_func_start, 0);
5319 /* Use the step_resume_break to step until the end of the prologue,
5320 even if that involves jumps (as it seems to on the vax under
5322 /* If the prologue ends in the middle of a source line, continue to
5323 the end of that source line (if it is still within the function).
5324 Otherwise, just go to end of prologue. */
5325 if (stop_func_sal.end
5326 && stop_func_sal.pc != ecs->stop_func_start
5327 && stop_func_sal.end < ecs->stop_func_end)
5328 ecs->stop_func_start = stop_func_sal.end;
5330 /* Architectures which require breakpoint adjustment might not be able
5331 to place a breakpoint at the computed address. If so, the test
5332 ``ecs->stop_func_start == stop_pc'' will never succeed. Adjust
5333 ecs->stop_func_start to an address at which a breakpoint may be
5334 legitimately placed.
5336 Note: kevinb/2004-01-19: On FR-V, if this adjustment is not
5337 made, GDB will enter an infinite loop when stepping through
5338 optimized code consisting of VLIW instructions which contain
5339 subinstructions corresponding to different source lines. On
5340 FR-V, it's not permitted to place a breakpoint on any but the
5341 first subinstruction of a VLIW instruction. When a breakpoint is
5342 set, GDB will adjust the breakpoint address to the beginning of
5343 the VLIW instruction. Thus, we need to make the corresponding
5344 adjustment here when computing the stop address. */
5346 if (gdbarch_adjust_breakpoint_address_p (gdbarch))
5348 ecs->stop_func_start
5349 = gdbarch_adjust_breakpoint_address (gdbarch,
5350 ecs->stop_func_start);
5353 if (ecs->stop_func_start == stop_pc)
5355 /* We are already there: stop now. */
5356 ecs->event_thread->control.stop_step = 1;
5357 print_end_stepping_range_reason ();
5358 stop_stepping (ecs);
5363 /* Put the step-breakpoint there and go until there. */
5364 init_sal (&sr_sal); /* initialize to zeroes */
5365 sr_sal.pc = ecs->stop_func_start;
5366 sr_sal.section = find_pc_overlay (ecs->stop_func_start);
5367 sr_sal.pspace = get_frame_program_space (get_current_frame ());
5369 /* Do not specify what the fp should be when we stop since on
5370 some machines the prologue is where the new fp value is
5372 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal, null_frame_id);
5374 /* And make sure stepping stops right away then. */
5375 ecs->event_thread->control.step_range_end
5376 = ecs->event_thread->control.step_range_start;
5381 /* Inferior has stepped backward into a subroutine call with source
5382 code that we should not step over. Do step to the beginning of the
5383 last line of code in it. */
5386 handle_step_into_function_backward (struct gdbarch *gdbarch,
5387 struct execution_control_state *ecs)
5390 struct symtab_and_line stop_func_sal;
5392 fill_in_stop_func (gdbarch, ecs);
5394 s = find_pc_symtab (stop_pc);
5395 if (s && s->language != language_asm)
5396 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
5397 ecs->stop_func_start);
5399 stop_func_sal = find_pc_line (stop_pc, 0);
5401 /* OK, we're just going to keep stepping here. */
5402 if (stop_func_sal.pc == stop_pc)
5404 /* We're there already. Just stop stepping now. */
5405 ecs->event_thread->control.stop_step = 1;
5406 print_end_stepping_range_reason ();
5407 stop_stepping (ecs);
5411 /* Else just reset the step range and keep going.
5412 No step-resume breakpoint, they don't work for
5413 epilogues, which can have multiple entry paths. */
5414 ecs->event_thread->control.step_range_start = stop_func_sal.pc;
5415 ecs->event_thread->control.step_range_end = stop_func_sal.end;
5421 /* Insert a "step-resume breakpoint" at SR_SAL with frame ID SR_ID.
5422 This is used to both functions and to skip over code. */
5425 insert_step_resume_breakpoint_at_sal_1 (struct gdbarch *gdbarch,
5426 struct symtab_and_line sr_sal,
5427 struct frame_id sr_id,
5428 enum bptype sr_type)
5430 /* There should never be more than one step-resume or longjmp-resume
5431 breakpoint per thread, so we should never be setting a new
5432 step_resume_breakpoint when one is already active. */
5433 gdb_assert (inferior_thread ()->control.step_resume_breakpoint == NULL);
5434 gdb_assert (sr_type == bp_step_resume || sr_type == bp_hp_step_resume);
5437 fprintf_unfiltered (gdb_stdlog,
5438 "infrun: inserting step-resume breakpoint at %s\n",
5439 paddress (gdbarch, sr_sal.pc));
5441 inferior_thread ()->control.step_resume_breakpoint
5442 = set_momentary_breakpoint (gdbarch, sr_sal, sr_id, sr_type);
5446 insert_step_resume_breakpoint_at_sal (struct gdbarch *gdbarch,
5447 struct symtab_and_line sr_sal,
5448 struct frame_id sr_id)
5450 insert_step_resume_breakpoint_at_sal_1 (gdbarch,
5455 /* Insert a "high-priority step-resume breakpoint" at RETURN_FRAME.pc.
5456 This is used to skip a potential signal handler.
5458 This is called with the interrupted function's frame. The signal
5459 handler, when it returns, will resume the interrupted function at
5463 insert_hp_step_resume_breakpoint_at_frame (struct frame_info *return_frame)
5465 struct symtab_and_line sr_sal;
5466 struct gdbarch *gdbarch;
5468 gdb_assert (return_frame != NULL);
5469 init_sal (&sr_sal); /* initialize to zeros */
5471 gdbarch = get_frame_arch (return_frame);
5472 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch, get_frame_pc (return_frame));
5473 sr_sal.section = find_pc_overlay (sr_sal.pc);
5474 sr_sal.pspace = get_frame_program_space (return_frame);
5476 insert_step_resume_breakpoint_at_sal_1 (gdbarch, sr_sal,
5477 get_stack_frame_id (return_frame),
5481 /* Insert a "step-resume breakpoint" at the previous frame's PC. This
5482 is used to skip a function after stepping into it (for "next" or if
5483 the called function has no debugging information).
5485 The current function has almost always been reached by single
5486 stepping a call or return instruction. NEXT_FRAME belongs to the
5487 current function, and the breakpoint will be set at the caller's
5490 This is a separate function rather than reusing
5491 insert_hp_step_resume_breakpoint_at_frame in order to avoid
5492 get_prev_frame, which may stop prematurely (see the implementation
5493 of frame_unwind_caller_id for an example). */
5496 insert_step_resume_breakpoint_at_caller (struct frame_info *next_frame)
5498 struct symtab_and_line sr_sal;
5499 struct gdbarch *gdbarch;
5501 /* We shouldn't have gotten here if we don't know where the call site
5503 gdb_assert (frame_id_p (frame_unwind_caller_id (next_frame)));
5505 init_sal (&sr_sal); /* initialize to zeros */
5507 gdbarch = frame_unwind_caller_arch (next_frame);
5508 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch,
5509 frame_unwind_caller_pc (next_frame));
5510 sr_sal.section = find_pc_overlay (sr_sal.pc);
5511 sr_sal.pspace = frame_unwind_program_space (next_frame);
5513 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal,
5514 frame_unwind_caller_id (next_frame));
5517 /* Insert a "longjmp-resume" breakpoint at PC. This is used to set a
5518 new breakpoint at the target of a jmp_buf. The handling of
5519 longjmp-resume uses the same mechanisms used for handling
5520 "step-resume" breakpoints. */
5523 insert_longjmp_resume_breakpoint (struct gdbarch *gdbarch, CORE_ADDR pc)
5525 /* There should never be more than one longjmp-resume breakpoint per
5526 thread, so we should never be setting a new
5527 longjmp_resume_breakpoint when one is already active. */
5528 gdb_assert (inferior_thread ()->control.exception_resume_breakpoint == NULL);
5531 fprintf_unfiltered (gdb_stdlog,
5532 "infrun: inserting longjmp-resume breakpoint at %s\n",
5533 paddress (gdbarch, pc));
5535 inferior_thread ()->control.exception_resume_breakpoint =
5536 set_momentary_breakpoint_at_pc (gdbarch, pc, bp_longjmp_resume);
5539 /* Insert an exception resume breakpoint. TP is the thread throwing
5540 the exception. The block B is the block of the unwinder debug hook
5541 function. FRAME is the frame corresponding to the call to this
5542 function. SYM is the symbol of the function argument holding the
5543 target PC of the exception. */
5546 insert_exception_resume_breakpoint (struct thread_info *tp,
5548 struct frame_info *frame,
5551 volatile struct gdb_exception e;
5553 /* We want to ignore errors here. */
5554 TRY_CATCH (e, RETURN_MASK_ERROR)
5556 struct symbol *vsym;
5557 struct value *value;
5559 struct breakpoint *bp;
5561 vsym = lookup_symbol (SYMBOL_LINKAGE_NAME (sym), b, VAR_DOMAIN, NULL);
5562 value = read_var_value (vsym, frame);
5563 /* If the value was optimized out, revert to the old behavior. */
5564 if (! value_optimized_out (value))
5566 handler = value_as_address (value);
5569 fprintf_unfiltered (gdb_stdlog,
5570 "infrun: exception resume at %lx\n",
5571 (unsigned long) handler);
5573 bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
5574 handler, bp_exception_resume);
5576 /* set_momentary_breakpoint_at_pc invalidates FRAME. */
5579 bp->thread = tp->num;
5580 inferior_thread ()->control.exception_resume_breakpoint = bp;
5585 /* A helper for check_exception_resume that sets an
5586 exception-breakpoint based on a SystemTap probe. */
5589 insert_exception_resume_from_probe (struct thread_info *tp,
5590 const struct probe *probe,
5591 struct frame_info *frame)
5593 struct value *arg_value;
5595 struct breakpoint *bp;
5597 arg_value = probe_safe_evaluate_at_pc (frame, 1);
5601 handler = value_as_address (arg_value);
5604 fprintf_unfiltered (gdb_stdlog,
5605 "infrun: exception resume at %s\n",
5606 paddress (get_objfile_arch (probe->objfile),
5609 bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
5610 handler, bp_exception_resume);
5611 bp->thread = tp->num;
5612 inferior_thread ()->control.exception_resume_breakpoint = bp;
5615 /* This is called when an exception has been intercepted. Check to
5616 see whether the exception's destination is of interest, and if so,
5617 set an exception resume breakpoint there. */
5620 check_exception_resume (struct execution_control_state *ecs,
5621 struct frame_info *frame)
5623 volatile struct gdb_exception e;
5624 const struct probe *probe;
5625 struct symbol *func;
5627 /* First see if this exception unwinding breakpoint was set via a
5628 SystemTap probe point. If so, the probe has two arguments: the
5629 CFA and the HANDLER. We ignore the CFA, extract the handler, and
5630 set a breakpoint there. */
5631 probe = find_probe_by_pc (get_frame_pc (frame));
5634 insert_exception_resume_from_probe (ecs->event_thread, probe, frame);
5638 func = get_frame_function (frame);
5642 TRY_CATCH (e, RETURN_MASK_ERROR)
5645 struct block_iterator iter;
5649 /* The exception breakpoint is a thread-specific breakpoint on
5650 the unwinder's debug hook, declared as:
5652 void _Unwind_DebugHook (void *cfa, void *handler);
5654 The CFA argument indicates the frame to which control is
5655 about to be transferred. HANDLER is the destination PC.
5657 We ignore the CFA and set a temporary breakpoint at HANDLER.
5658 This is not extremely efficient but it avoids issues in gdb
5659 with computing the DWARF CFA, and it also works even in weird
5660 cases such as throwing an exception from inside a signal
5663 b = SYMBOL_BLOCK_VALUE (func);
5664 ALL_BLOCK_SYMBOLS (b, iter, sym)
5666 if (!SYMBOL_IS_ARGUMENT (sym))
5673 insert_exception_resume_breakpoint (ecs->event_thread,
5682 stop_stepping (struct execution_control_state *ecs)
5685 fprintf_unfiltered (gdb_stdlog, "infrun: stop_stepping\n");
5687 /* Let callers know we don't want to wait for the inferior anymore. */
5688 ecs->wait_some_more = 0;
5691 /* This function handles various cases where we need to continue
5692 waiting for the inferior. */
5693 /* (Used to be the keep_going: label in the old wait_for_inferior). */
5696 keep_going (struct execution_control_state *ecs)
5698 /* Make sure normal_stop is called if we get a QUIT handled before
5700 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
5702 /* Save the pc before execution, to compare with pc after stop. */
5703 ecs->event_thread->prev_pc
5704 = regcache_read_pc (get_thread_regcache (ecs->ptid));
5706 /* If we did not do break;, it means we should keep running the
5707 inferior and not return to debugger. */
5709 if (ecs->event_thread->control.trap_expected
5710 && ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_TRAP)
5712 /* We took a signal (which we are supposed to pass through to
5713 the inferior, else we'd not get here) and we haven't yet
5714 gotten our trap. Simply continue. */
5716 discard_cleanups (old_cleanups);
5717 resume (currently_stepping (ecs->event_thread),
5718 ecs->event_thread->suspend.stop_signal);
5722 /* Either the trap was not expected, but we are continuing
5723 anyway (the user asked that this signal be passed to the
5726 The signal was SIGTRAP, e.g. it was our signal, but we
5727 decided we should resume from it.
5729 We're going to run this baby now!
5731 Note that insert_breakpoints won't try to re-insert
5732 already inserted breakpoints. Therefore, we don't
5733 care if breakpoints were already inserted, or not. */
5735 if (ecs->event_thread->stepping_over_breakpoint)
5737 struct regcache *thread_regcache = get_thread_regcache (ecs->ptid);
5739 if (!use_displaced_stepping (get_regcache_arch (thread_regcache)))
5740 /* Since we can't do a displaced step, we have to remove
5741 the breakpoint while we step it. To keep things
5742 simple, we remove them all. */
5743 remove_breakpoints ();
5747 volatile struct gdb_exception e;
5749 /* Stop stepping when inserting breakpoints
5751 TRY_CATCH (e, RETURN_MASK_ERROR)
5753 insert_breakpoints ();
5757 exception_print (gdb_stderr, e);
5758 stop_stepping (ecs);
5763 ecs->event_thread->control.trap_expected
5764 = ecs->event_thread->stepping_over_breakpoint;
5766 /* Do not deliver SIGNAL_TRAP (except when the user explicitly
5767 specifies that such a signal should be delivered to the
5770 Typically, this would occure when a user is debugging a
5771 target monitor on a simulator: the target monitor sets a
5772 breakpoint; the simulator encounters this break-point and
5773 halts the simulation handing control to GDB; GDB, noteing
5774 that the break-point isn't valid, returns control back to the
5775 simulator; the simulator then delivers the hardware
5776 equivalent of a SIGNAL_TRAP to the program being debugged. */
5778 if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5779 && !signal_program[ecs->event_thread->suspend.stop_signal])
5780 ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5782 discard_cleanups (old_cleanups);
5783 resume (currently_stepping (ecs->event_thread),
5784 ecs->event_thread->suspend.stop_signal);
5787 prepare_to_wait (ecs);
5790 /* This function normally comes after a resume, before
5791 handle_inferior_event exits. It takes care of any last bits of
5792 housekeeping, and sets the all-important wait_some_more flag. */
5795 prepare_to_wait (struct execution_control_state *ecs)
5798 fprintf_unfiltered (gdb_stdlog, "infrun: prepare_to_wait\n");
5800 /* This is the old end of the while loop. Let everybody know we
5801 want to wait for the inferior some more and get called again
5803 ecs->wait_some_more = 1;
5806 /* Several print_*_reason functions to print why the inferior has stopped.
5807 We always print something when the inferior exits, or receives a signal.
5808 The rest of the cases are dealt with later on in normal_stop and
5809 print_it_typical. Ideally there should be a call to one of these
5810 print_*_reason functions functions from handle_inferior_event each time
5811 stop_stepping is called. */
5813 /* Print why the inferior has stopped.
5814 We are done with a step/next/si/ni command, print why the inferior has
5815 stopped. For now print nothing. Print a message only if not in the middle
5816 of doing a "step n" operation for n > 1. */
5819 print_end_stepping_range_reason (void)
5821 if ((!inferior_thread ()->step_multi
5822 || !inferior_thread ()->control.stop_step)
5823 && ui_out_is_mi_like_p (current_uiout))
5824 ui_out_field_string (current_uiout, "reason",
5825 async_reason_lookup (EXEC_ASYNC_END_STEPPING_RANGE));
5828 /* The inferior was terminated by a signal, print why it stopped. */
5831 print_signal_exited_reason (enum gdb_signal siggnal)
5833 struct ui_out *uiout = current_uiout;
5835 annotate_signalled ();
5836 if (ui_out_is_mi_like_p (uiout))
5838 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_EXITED_SIGNALLED));
5839 ui_out_text (uiout, "\nProgram terminated with signal ");
5840 annotate_signal_name ();
5841 ui_out_field_string (uiout, "signal-name",
5842 gdb_signal_to_name (siggnal));
5843 annotate_signal_name_end ();
5844 ui_out_text (uiout, ", ");
5845 annotate_signal_string ();
5846 ui_out_field_string (uiout, "signal-meaning",
5847 gdb_signal_to_string (siggnal));
5848 annotate_signal_string_end ();
5849 ui_out_text (uiout, ".\n");
5850 ui_out_text (uiout, "The program no longer exists.\n");
5853 /* The inferior program is finished, print why it stopped. */
5856 print_exited_reason (int exitstatus)
5858 struct inferior *inf = current_inferior ();
5859 const char *pidstr = target_pid_to_str (pid_to_ptid (inf->pid));
5860 struct ui_out *uiout = current_uiout;
5862 annotate_exited (exitstatus);
5865 if (ui_out_is_mi_like_p (uiout))
5866 ui_out_field_string (uiout, "reason",
5867 async_reason_lookup (EXEC_ASYNC_EXITED));
5868 ui_out_text (uiout, "[Inferior ");
5869 ui_out_text (uiout, plongest (inf->num));
5870 ui_out_text (uiout, " (");
5871 ui_out_text (uiout, pidstr);
5872 ui_out_text (uiout, ") exited with code ");
5873 ui_out_field_fmt (uiout, "exit-code", "0%o", (unsigned int) exitstatus);
5874 ui_out_text (uiout, "]\n");
5878 if (ui_out_is_mi_like_p (uiout))
5880 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_EXITED_NORMALLY));
5881 ui_out_text (uiout, "[Inferior ");
5882 ui_out_text (uiout, plongest (inf->num));
5883 ui_out_text (uiout, " (");
5884 ui_out_text (uiout, pidstr);
5885 ui_out_text (uiout, ") exited normally]\n");
5887 /* Support the --return-child-result option. */
5888 return_child_result_value = exitstatus;
5891 /* Signal received, print why the inferior has stopped. The signal table
5892 tells us to print about it. */
5895 print_signal_received_reason (enum gdb_signal siggnal)
5897 struct ui_out *uiout = current_uiout;
5901 if (siggnal == GDB_SIGNAL_0 && !ui_out_is_mi_like_p (uiout))
5903 struct thread_info *t = inferior_thread ();
5905 ui_out_text (uiout, "\n[");
5906 ui_out_field_string (uiout, "thread-name",
5907 target_pid_to_str (t->ptid));
5908 ui_out_field_fmt (uiout, "thread-id", "] #%d", t->num);
5909 ui_out_text (uiout, " stopped");
5913 ui_out_text (uiout, "\nProgram received signal ");
5914 annotate_signal_name ();
5915 if (ui_out_is_mi_like_p (uiout))
5917 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_SIGNAL_RECEIVED));
5918 ui_out_field_string (uiout, "signal-name",
5919 gdb_signal_to_name (siggnal));
5920 annotate_signal_name_end ();
5921 ui_out_text (uiout, ", ");
5922 annotate_signal_string ();
5923 ui_out_field_string (uiout, "signal-meaning",
5924 gdb_signal_to_string (siggnal));
5925 annotate_signal_string_end ();
5927 ui_out_text (uiout, ".\n");
5930 /* Reverse execution: target ran out of history info, print why the inferior
5934 print_no_history_reason (void)
5936 ui_out_text (current_uiout, "\nNo more reverse-execution history.\n");
5939 /* Here to return control to GDB when the inferior stops for real.
5940 Print appropriate messages, remove breakpoints, give terminal our modes.
5942 STOP_PRINT_FRAME nonzero means print the executing frame
5943 (pc, function, args, file, line number and line text).
5944 BREAKPOINTS_FAILED nonzero means stop was due to error
5945 attempting to insert breakpoints. */
5950 struct target_waitstatus last;
5952 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
5954 get_last_target_status (&last_ptid, &last);
5956 /* If an exception is thrown from this point on, make sure to
5957 propagate GDB's knowledge of the executing state to the
5958 frontend/user running state. A QUIT is an easy exception to see
5959 here, so do this before any filtered output. */
5961 make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
5962 else if (last.kind != TARGET_WAITKIND_SIGNALLED
5963 && last.kind != TARGET_WAITKIND_EXITED
5964 && last.kind != TARGET_WAITKIND_NO_RESUMED)
5965 make_cleanup (finish_thread_state_cleanup, &inferior_ptid);
5967 /* In non-stop mode, we don't want GDB to switch threads behind the
5968 user's back, to avoid races where the user is typing a command to
5969 apply to thread x, but GDB switches to thread y before the user
5970 finishes entering the command. */
5972 /* As with the notification of thread events, we want to delay
5973 notifying the user that we've switched thread context until
5974 the inferior actually stops.
5976 There's no point in saying anything if the inferior has exited.
5977 Note that SIGNALLED here means "exited with a signal", not
5978 "received a signal". */
5980 && !ptid_equal (previous_inferior_ptid, inferior_ptid)
5981 && target_has_execution
5982 && last.kind != TARGET_WAITKIND_SIGNALLED
5983 && last.kind != TARGET_WAITKIND_EXITED
5984 && last.kind != TARGET_WAITKIND_NO_RESUMED)
5986 target_terminal_ours_for_output ();
5987 printf_filtered (_("[Switching to %s]\n"),
5988 target_pid_to_str (inferior_ptid));
5989 annotate_thread_changed ();
5990 previous_inferior_ptid = inferior_ptid;
5993 if (last.kind == TARGET_WAITKIND_NO_RESUMED)
5995 gdb_assert (sync_execution || !target_can_async_p ());
5997 target_terminal_ours_for_output ();
5998 printf_filtered (_("No unwaited-for children left.\n"));
6001 if (!breakpoints_always_inserted_mode () && target_has_execution)
6003 if (remove_breakpoints ())
6005 target_terminal_ours_for_output ();
6006 printf_filtered (_("Cannot remove breakpoints because "
6007 "program is no longer writable.\nFurther "
6008 "execution is probably impossible.\n"));
6012 /* If an auto-display called a function and that got a signal,
6013 delete that auto-display to avoid an infinite recursion. */
6015 if (stopped_by_random_signal)
6016 disable_current_display ();
6018 /* Don't print a message if in the middle of doing a "step n"
6019 operation for n > 1 */
6020 if (target_has_execution
6021 && last.kind != TARGET_WAITKIND_SIGNALLED
6022 && last.kind != TARGET_WAITKIND_EXITED
6023 && inferior_thread ()->step_multi
6024 && inferior_thread ()->control.stop_step)
6027 target_terminal_ours ();
6028 async_enable_stdin ();
6030 /* Set the current source location. This will also happen if we
6031 display the frame below, but the current SAL will be incorrect
6032 during a user hook-stop function. */
6033 if (has_stack_frames () && !stop_stack_dummy)
6034 set_current_sal_from_frame (get_current_frame (), 1);
6036 /* Let the user/frontend see the threads as stopped. */
6037 do_cleanups (old_chain);
6039 /* Look up the hook_stop and run it (CLI internally handles problem
6040 of stop_command's pre-hook not existing). */
6042 catch_errors (hook_stop_stub, stop_command,
6043 "Error while running hook_stop:\n", RETURN_MASK_ALL);
6045 if (!has_stack_frames ())
6048 if (last.kind == TARGET_WAITKIND_SIGNALLED
6049 || last.kind == TARGET_WAITKIND_EXITED)
6052 /* Select innermost stack frame - i.e., current frame is frame 0,
6053 and current location is based on that.
6054 Don't do this on return from a stack dummy routine,
6055 or if the program has exited. */
6057 if (!stop_stack_dummy)
6059 select_frame (get_current_frame ());
6061 /* Print current location without a level number, if
6062 we have changed functions or hit a breakpoint.
6063 Print source line if we have one.
6064 bpstat_print() contains the logic deciding in detail
6065 what to print, based on the event(s) that just occurred. */
6067 /* If --batch-silent is enabled then there's no need to print the current
6068 source location, and to try risks causing an error message about
6069 missing source files. */
6070 if (stop_print_frame && !batch_silent)
6074 int do_frame_printing = 1;
6075 struct thread_info *tp = inferior_thread ();
6077 bpstat_ret = bpstat_print (tp->control.stop_bpstat, last.kind);
6081 /* FIXME: cagney/2002-12-01: Given that a frame ID does
6082 (or should) carry around the function and does (or
6083 should) use that when doing a frame comparison. */
6084 if (tp->control.stop_step
6085 && frame_id_eq (tp->control.step_frame_id,
6086 get_frame_id (get_current_frame ()))
6087 && step_start_function == find_pc_function (stop_pc))
6088 source_flag = SRC_LINE; /* Finished step, just
6089 print source line. */
6091 source_flag = SRC_AND_LOC; /* Print location and
6094 case PRINT_SRC_AND_LOC:
6095 source_flag = SRC_AND_LOC; /* Print location and
6098 case PRINT_SRC_ONLY:
6099 source_flag = SRC_LINE;
6102 source_flag = SRC_LINE; /* something bogus */
6103 do_frame_printing = 0;
6106 internal_error (__FILE__, __LINE__, _("Unknown value."));
6109 /* The behavior of this routine with respect to the source
6111 SRC_LINE: Print only source line
6112 LOCATION: Print only location
6113 SRC_AND_LOC: Print location and source line. */
6114 if (do_frame_printing)
6115 print_stack_frame (get_selected_frame (NULL), 0, source_flag);
6117 /* Display the auto-display expressions. */
6122 /* Save the function value return registers, if we care.
6123 We might be about to restore their previous contents. */
6124 if (inferior_thread ()->control.proceed_to_finish
6125 && execution_direction != EXEC_REVERSE)
6127 /* This should not be necessary. */
6129 regcache_xfree (stop_registers);
6131 /* NB: The copy goes through to the target picking up the value of
6132 all the registers. */
6133 stop_registers = regcache_dup (get_current_regcache ());
6136 if (stop_stack_dummy == STOP_STACK_DUMMY)
6138 /* Pop the empty frame that contains the stack dummy.
6139 This also restores inferior state prior to the call
6140 (struct infcall_suspend_state). */
6141 struct frame_info *frame = get_current_frame ();
6143 gdb_assert (get_frame_type (frame) == DUMMY_FRAME);
6145 /* frame_pop() calls reinit_frame_cache as the last thing it
6146 does which means there's currently no selected frame. We
6147 don't need to re-establish a selected frame if the dummy call
6148 returns normally, that will be done by
6149 restore_infcall_control_state. However, we do have to handle
6150 the case where the dummy call is returning after being
6151 stopped (e.g. the dummy call previously hit a breakpoint).
6152 We can't know which case we have so just always re-establish
6153 a selected frame here. */
6154 select_frame (get_current_frame ());
6158 annotate_stopped ();
6160 /* Suppress the stop observer if we're in the middle of:
6162 - a step n (n > 1), as there still more steps to be done.
6164 - a "finish" command, as the observer will be called in
6165 finish_command_continuation, so it can include the inferior
6166 function's return value.
6168 - calling an inferior function, as we pretend we inferior didn't
6169 run at all. The return value of the call is handled by the
6170 expression evaluator, through call_function_by_hand. */
6172 if (!target_has_execution
6173 || last.kind == TARGET_WAITKIND_SIGNALLED
6174 || last.kind == TARGET_WAITKIND_EXITED
6175 || last.kind == TARGET_WAITKIND_NO_RESUMED
6176 || (!(inferior_thread ()->step_multi
6177 && inferior_thread ()->control.stop_step)
6178 && !(inferior_thread ()->control.stop_bpstat
6179 && inferior_thread ()->control.proceed_to_finish)
6180 && !inferior_thread ()->control.in_infcall))
6182 if (!ptid_equal (inferior_ptid, null_ptid))
6183 observer_notify_normal_stop (inferior_thread ()->control.stop_bpstat,
6186 observer_notify_normal_stop (NULL, stop_print_frame);
6189 if (target_has_execution)
6191 if (last.kind != TARGET_WAITKIND_SIGNALLED
6192 && last.kind != TARGET_WAITKIND_EXITED)
6193 /* Delete the breakpoint we stopped at, if it wants to be deleted.
6194 Delete any breakpoint that is to be deleted at the next stop. */
6195 breakpoint_auto_delete (inferior_thread ()->control.stop_bpstat);
6198 /* Try to get rid of automatically added inferiors that are no
6199 longer needed. Keeping those around slows down things linearly.
6200 Note that this never removes the current inferior. */
6205 hook_stop_stub (void *cmd)
6207 execute_cmd_pre_hook ((struct cmd_list_element *) cmd);
6212 signal_stop_state (int signo)
6214 return signal_stop[signo];
6218 signal_print_state (int signo)
6220 return signal_print[signo];
6224 signal_pass_state (int signo)
6226 return signal_program[signo];
6230 signal_cache_update (int signo)
6234 for (signo = 0; signo < (int) GDB_SIGNAL_LAST; signo++)
6235 signal_cache_update (signo);
6240 signal_pass[signo] = (signal_stop[signo] == 0
6241 && signal_print[signo] == 0
6242 && signal_program[signo] == 1
6243 && signal_catch[signo] == 0);
6247 signal_stop_update (int signo, int state)
6249 int ret = signal_stop[signo];
6251 signal_stop[signo] = state;
6252 signal_cache_update (signo);
6257 signal_print_update (int signo, int state)
6259 int ret = signal_print[signo];
6261 signal_print[signo] = state;
6262 signal_cache_update (signo);
6267 signal_pass_update (int signo, int state)
6269 int ret = signal_program[signo];
6271 signal_program[signo] = state;
6272 signal_cache_update (signo);
6276 /* Update the global 'signal_catch' from INFO and notify the
6280 signal_catch_update (const unsigned int *info)
6284 for (i = 0; i < GDB_SIGNAL_LAST; ++i)
6285 signal_catch[i] = info[i] > 0;
6286 signal_cache_update (-1);
6287 target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
6291 sig_print_header (void)
6293 printf_filtered (_("Signal Stop\tPrint\tPass "
6294 "to program\tDescription\n"));
6298 sig_print_info (enum gdb_signal oursig)
6300 const char *name = gdb_signal_to_name (oursig);
6301 int name_padding = 13 - strlen (name);
6303 if (name_padding <= 0)
6306 printf_filtered ("%s", name);
6307 printf_filtered ("%*.*s ", name_padding, name_padding, " ");
6308 printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
6309 printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
6310 printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
6311 printf_filtered ("%s\n", gdb_signal_to_string (oursig));
6314 /* Specify how various signals in the inferior should be handled. */
6317 handle_command (char *args, int from_tty)
6320 int digits, wordlen;
6321 int sigfirst, signum, siglast;
6322 enum gdb_signal oursig;
6325 unsigned char *sigs;
6326 struct cleanup *old_chain;
6330 error_no_arg (_("signal to handle"));
6333 /* Allocate and zero an array of flags for which signals to handle. */
6335 nsigs = (int) GDB_SIGNAL_LAST;
6336 sigs = (unsigned char *) alloca (nsigs);
6337 memset (sigs, 0, nsigs);
6339 /* Break the command line up into args. */
6341 argv = gdb_buildargv (args);
6342 old_chain = make_cleanup_freeargv (argv);
6344 /* Walk through the args, looking for signal oursigs, signal names, and
6345 actions. Signal numbers and signal names may be interspersed with
6346 actions, with the actions being performed for all signals cumulatively
6347 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
6349 while (*argv != NULL)
6351 wordlen = strlen (*argv);
6352 for (digits = 0; isdigit ((*argv)[digits]); digits++)
6356 sigfirst = siglast = -1;
6358 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
6360 /* Apply action to all signals except those used by the
6361 debugger. Silently skip those. */
6364 siglast = nsigs - 1;
6366 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
6368 SET_SIGS (nsigs, sigs, signal_stop);
6369 SET_SIGS (nsigs, sigs, signal_print);
6371 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
6373 UNSET_SIGS (nsigs, sigs, signal_program);
6375 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
6377 SET_SIGS (nsigs, sigs, signal_print);
6379 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
6381 SET_SIGS (nsigs, sigs, signal_program);
6383 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
6385 UNSET_SIGS (nsigs, sigs, signal_stop);
6387 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
6389 SET_SIGS (nsigs, sigs, signal_program);
6391 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
6393 UNSET_SIGS (nsigs, sigs, signal_print);
6394 UNSET_SIGS (nsigs, sigs, signal_stop);
6396 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
6398 UNSET_SIGS (nsigs, sigs, signal_program);
6400 else if (digits > 0)
6402 /* It is numeric. The numeric signal refers to our own
6403 internal signal numbering from target.h, not to host/target
6404 signal number. This is a feature; users really should be
6405 using symbolic names anyway, and the common ones like
6406 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
6408 sigfirst = siglast = (int)
6409 gdb_signal_from_command (atoi (*argv));
6410 if ((*argv)[digits] == '-')
6413 gdb_signal_from_command (atoi ((*argv) + digits + 1));
6415 if (sigfirst > siglast)
6417 /* Bet he didn't figure we'd think of this case... */
6425 oursig = gdb_signal_from_name (*argv);
6426 if (oursig != GDB_SIGNAL_UNKNOWN)
6428 sigfirst = siglast = (int) oursig;
6432 /* Not a number and not a recognized flag word => complain. */
6433 error (_("Unrecognized or ambiguous flag word: \"%s\"."), *argv);
6437 /* If any signal numbers or symbol names were found, set flags for
6438 which signals to apply actions to. */
6440 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
6442 switch ((enum gdb_signal) signum)
6444 case GDB_SIGNAL_TRAP:
6445 case GDB_SIGNAL_INT:
6446 if (!allsigs && !sigs[signum])
6448 if (query (_("%s is used by the debugger.\n\
6449 Are you sure you want to change it? "),
6450 gdb_signal_to_name ((enum gdb_signal) signum)))
6456 printf_unfiltered (_("Not confirmed, unchanged.\n"));
6457 gdb_flush (gdb_stdout);
6462 case GDB_SIGNAL_DEFAULT:
6463 case GDB_SIGNAL_UNKNOWN:
6464 /* Make sure that "all" doesn't print these. */
6475 for (signum = 0; signum < nsigs; signum++)
6478 signal_cache_update (-1);
6479 target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
6480 target_program_signals ((int) GDB_SIGNAL_LAST, signal_program);
6484 /* Show the results. */
6485 sig_print_header ();
6486 for (; signum < nsigs; signum++)
6488 sig_print_info (signum);
6494 do_cleanups (old_chain);
6497 /* Complete the "handle" command. */
6499 static VEC (char_ptr) *
6500 handle_completer (struct cmd_list_element *ignore,
6501 const char *text, const char *word)
6503 VEC (char_ptr) *vec_signals, *vec_keywords, *return_val;
6504 static const char * const keywords[] =
6518 vec_signals = signal_completer (ignore, text, word);
6519 vec_keywords = complete_on_enum (keywords, word, word);
6521 return_val = VEC_merge (char_ptr, vec_signals, vec_keywords);
6522 VEC_free (char_ptr, vec_signals);
6523 VEC_free (char_ptr, vec_keywords);
6528 xdb_handle_command (char *args, int from_tty)
6531 struct cleanup *old_chain;
6534 error_no_arg (_("xdb command"));
6536 /* Break the command line up into args. */
6538 argv = gdb_buildargv (args);
6539 old_chain = make_cleanup_freeargv (argv);
6540 if (argv[1] != (char *) NULL)
6545 bufLen = strlen (argv[0]) + 20;
6546 argBuf = (char *) xmalloc (bufLen);
6550 enum gdb_signal oursig;
6552 oursig = gdb_signal_from_name (argv[0]);
6553 memset (argBuf, 0, bufLen);
6554 if (strcmp (argv[1], "Q") == 0)
6555 sprintf (argBuf, "%s %s", argv[0], "noprint");
6558 if (strcmp (argv[1], "s") == 0)
6560 if (!signal_stop[oursig])
6561 sprintf (argBuf, "%s %s", argv[0], "stop");
6563 sprintf (argBuf, "%s %s", argv[0], "nostop");
6565 else if (strcmp (argv[1], "i") == 0)
6567 if (!signal_program[oursig])
6568 sprintf (argBuf, "%s %s", argv[0], "pass");
6570 sprintf (argBuf, "%s %s", argv[0], "nopass");
6572 else if (strcmp (argv[1], "r") == 0)
6574 if (!signal_print[oursig])
6575 sprintf (argBuf, "%s %s", argv[0], "print");
6577 sprintf (argBuf, "%s %s", argv[0], "noprint");
6583 handle_command (argBuf, from_tty);
6585 printf_filtered (_("Invalid signal handling flag.\n"));
6590 do_cleanups (old_chain);
6594 gdb_signal_from_command (int num)
6596 if (num >= 1 && num <= 15)
6597 return (enum gdb_signal) num;
6598 error (_("Only signals 1-15 are valid as numeric signals.\n\
6599 Use \"info signals\" for a list of symbolic signals."));
6602 /* Print current contents of the tables set by the handle command.
6603 It is possible we should just be printing signals actually used
6604 by the current target (but for things to work right when switching
6605 targets, all signals should be in the signal tables). */
6608 signals_info (char *signum_exp, int from_tty)
6610 enum gdb_signal oursig;
6612 sig_print_header ();
6616 /* First see if this is a symbol name. */
6617 oursig = gdb_signal_from_name (signum_exp);
6618 if (oursig == GDB_SIGNAL_UNKNOWN)
6620 /* No, try numeric. */
6622 gdb_signal_from_command (parse_and_eval_long (signum_exp));
6624 sig_print_info (oursig);
6628 printf_filtered ("\n");
6629 /* These ugly casts brought to you by the native VAX compiler. */
6630 for (oursig = GDB_SIGNAL_FIRST;
6631 (int) oursig < (int) GDB_SIGNAL_LAST;
6632 oursig = (enum gdb_signal) ((int) oursig + 1))
6636 if (oursig != GDB_SIGNAL_UNKNOWN
6637 && oursig != GDB_SIGNAL_DEFAULT && oursig != GDB_SIGNAL_0)
6638 sig_print_info (oursig);
6641 printf_filtered (_("\nUse the \"handle\" command "
6642 "to change these tables.\n"));
6645 /* Check if it makes sense to read $_siginfo from the current thread
6646 at this point. If not, throw an error. */
6649 validate_siginfo_access (void)
6651 /* No current inferior, no siginfo. */
6652 if (ptid_equal (inferior_ptid, null_ptid))
6653 error (_("No thread selected."));
6655 /* Don't try to read from a dead thread. */
6656 if (is_exited (inferior_ptid))
6657 error (_("The current thread has terminated"));
6659 /* ... or from a spinning thread. */
6660 if (is_running (inferior_ptid))
6661 error (_("Selected thread is running."));
6664 /* The $_siginfo convenience variable is a bit special. We don't know
6665 for sure the type of the value until we actually have a chance to
6666 fetch the data. The type can change depending on gdbarch, so it is
6667 also dependent on which thread you have selected.
6669 1. making $_siginfo be an internalvar that creates a new value on
6672 2. making the value of $_siginfo be an lval_computed value. */
6674 /* This function implements the lval_computed support for reading a
6678 siginfo_value_read (struct value *v)
6680 LONGEST transferred;
6682 validate_siginfo_access ();
6685 target_read (¤t_target, TARGET_OBJECT_SIGNAL_INFO,
6687 value_contents_all_raw (v),
6689 TYPE_LENGTH (value_type (v)));
6691 if (transferred != TYPE_LENGTH (value_type (v)))
6692 error (_("Unable to read siginfo"));
6695 /* This function implements the lval_computed support for writing a
6699 siginfo_value_write (struct value *v, struct value *fromval)
6701 LONGEST transferred;
6703 validate_siginfo_access ();
6705 transferred = target_write (¤t_target,
6706 TARGET_OBJECT_SIGNAL_INFO,
6708 value_contents_all_raw (fromval),
6710 TYPE_LENGTH (value_type (fromval)));
6712 if (transferred != TYPE_LENGTH (value_type (fromval)))
6713 error (_("Unable to write siginfo"));
6716 static const struct lval_funcs siginfo_value_funcs =
6722 /* Return a new value with the correct type for the siginfo object of
6723 the current thread using architecture GDBARCH. Return a void value
6724 if there's no object available. */
6726 static struct value *
6727 siginfo_make_value (struct gdbarch *gdbarch, struct internalvar *var,
6730 if (target_has_stack
6731 && !ptid_equal (inferior_ptid, null_ptid)
6732 && gdbarch_get_siginfo_type_p (gdbarch))
6734 struct type *type = gdbarch_get_siginfo_type (gdbarch);
6736 return allocate_computed_value (type, &siginfo_value_funcs, NULL);
6739 return allocate_value (builtin_type (gdbarch)->builtin_void);
6743 /* infcall_suspend_state contains state about the program itself like its
6744 registers and any signal it received when it last stopped.
6745 This state must be restored regardless of how the inferior function call
6746 ends (either successfully, or after it hits a breakpoint or signal)
6747 if the program is to properly continue where it left off. */
6749 struct infcall_suspend_state
6751 struct thread_suspend_state thread_suspend;
6752 #if 0 /* Currently unused and empty structures are not valid C. */
6753 struct inferior_suspend_state inferior_suspend;
6758 struct regcache *registers;
6760 /* Format of SIGINFO_DATA or NULL if it is not present. */
6761 struct gdbarch *siginfo_gdbarch;
6763 /* The inferior format depends on SIGINFO_GDBARCH and it has a length of
6764 TYPE_LENGTH (gdbarch_get_siginfo_type ()). For different gdbarch the
6765 content would be invalid. */
6766 gdb_byte *siginfo_data;
6769 struct infcall_suspend_state *
6770 save_infcall_suspend_state (void)
6772 struct infcall_suspend_state *inf_state;
6773 struct thread_info *tp = inferior_thread ();
6775 struct inferior *inf = current_inferior ();
6777 struct regcache *regcache = get_current_regcache ();
6778 struct gdbarch *gdbarch = get_regcache_arch (regcache);
6779 gdb_byte *siginfo_data = NULL;
6781 if (gdbarch_get_siginfo_type_p (gdbarch))
6783 struct type *type = gdbarch_get_siginfo_type (gdbarch);
6784 size_t len = TYPE_LENGTH (type);
6785 struct cleanup *back_to;
6787 siginfo_data = xmalloc (len);
6788 back_to = make_cleanup (xfree, siginfo_data);
6790 if (target_read (¤t_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
6791 siginfo_data, 0, len) == len)
6792 discard_cleanups (back_to);
6795 /* Errors ignored. */
6796 do_cleanups (back_to);
6797 siginfo_data = NULL;
6801 inf_state = XZALLOC (struct infcall_suspend_state);
6805 inf_state->siginfo_gdbarch = gdbarch;
6806 inf_state->siginfo_data = siginfo_data;
6809 inf_state->thread_suspend = tp->suspend;
6810 #if 0 /* Currently unused and empty structures are not valid C. */
6811 inf_state->inferior_suspend = inf->suspend;
6814 /* run_inferior_call will not use the signal due to its `proceed' call with
6815 GDB_SIGNAL_0 anyway. */
6816 tp->suspend.stop_signal = GDB_SIGNAL_0;
6818 inf_state->stop_pc = stop_pc;
6820 inf_state->registers = regcache_dup (regcache);
6825 /* Restore inferior session state to INF_STATE. */
6828 restore_infcall_suspend_state (struct infcall_suspend_state *inf_state)
6830 struct thread_info *tp = inferior_thread ();
6832 struct inferior *inf = current_inferior ();
6834 struct regcache *regcache = get_current_regcache ();
6835 struct gdbarch *gdbarch = get_regcache_arch (regcache);
6837 tp->suspend = inf_state->thread_suspend;
6838 #if 0 /* Currently unused and empty structures are not valid C. */
6839 inf->suspend = inf_state->inferior_suspend;
6842 stop_pc = inf_state->stop_pc;
6844 if (inf_state->siginfo_gdbarch == gdbarch)
6846 struct type *type = gdbarch_get_siginfo_type (gdbarch);
6848 /* Errors ignored. */
6849 target_write (¤t_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
6850 inf_state->siginfo_data, 0, TYPE_LENGTH (type));
6853 /* The inferior can be gone if the user types "print exit(0)"
6854 (and perhaps other times). */
6855 if (target_has_execution)
6856 /* NB: The register write goes through to the target. */
6857 regcache_cpy (regcache, inf_state->registers);
6859 discard_infcall_suspend_state (inf_state);
6863 do_restore_infcall_suspend_state_cleanup (void *state)
6865 restore_infcall_suspend_state (state);
6869 make_cleanup_restore_infcall_suspend_state
6870 (struct infcall_suspend_state *inf_state)
6872 return make_cleanup (do_restore_infcall_suspend_state_cleanup, inf_state);
6876 discard_infcall_suspend_state (struct infcall_suspend_state *inf_state)
6878 regcache_xfree (inf_state->registers);
6879 xfree (inf_state->siginfo_data);
6884 get_infcall_suspend_state_regcache (struct infcall_suspend_state *inf_state)
6886 return inf_state->registers;
6889 /* infcall_control_state contains state regarding gdb's control of the
6890 inferior itself like stepping control. It also contains session state like
6891 the user's currently selected frame. */
6893 struct infcall_control_state
6895 struct thread_control_state thread_control;
6896 struct inferior_control_state inferior_control;
6899 enum stop_stack_kind stop_stack_dummy;
6900 int stopped_by_random_signal;
6901 int stop_after_trap;
6903 /* ID if the selected frame when the inferior function call was made. */
6904 struct frame_id selected_frame_id;
6907 /* Save all of the information associated with the inferior<==>gdb
6910 struct infcall_control_state *
6911 save_infcall_control_state (void)
6913 struct infcall_control_state *inf_status = xmalloc (sizeof (*inf_status));
6914 struct thread_info *tp = inferior_thread ();
6915 struct inferior *inf = current_inferior ();
6917 inf_status->thread_control = tp->control;
6918 inf_status->inferior_control = inf->control;
6920 tp->control.step_resume_breakpoint = NULL;
6921 tp->control.exception_resume_breakpoint = NULL;
6923 /* Save original bpstat chain to INF_STATUS; replace it in TP with copy of
6924 chain. If caller's caller is walking the chain, they'll be happier if we
6925 hand them back the original chain when restore_infcall_control_state is
6927 tp->control.stop_bpstat = bpstat_copy (tp->control.stop_bpstat);
6930 inf_status->stop_stack_dummy = stop_stack_dummy;
6931 inf_status->stopped_by_random_signal = stopped_by_random_signal;
6932 inf_status->stop_after_trap = stop_after_trap;
6934 inf_status->selected_frame_id = get_frame_id (get_selected_frame (NULL));
6940 restore_selected_frame (void *args)
6942 struct frame_id *fid = (struct frame_id *) args;
6943 struct frame_info *frame;
6945 frame = frame_find_by_id (*fid);
6947 /* If inf_status->selected_frame_id is NULL, there was no previously
6951 warning (_("Unable to restore previously selected frame."));
6955 select_frame (frame);
6960 /* Restore inferior session state to INF_STATUS. */
6963 restore_infcall_control_state (struct infcall_control_state *inf_status)
6965 struct thread_info *tp = inferior_thread ();
6966 struct inferior *inf = current_inferior ();
6968 if (tp->control.step_resume_breakpoint)
6969 tp->control.step_resume_breakpoint->disposition = disp_del_at_next_stop;
6971 if (tp->control.exception_resume_breakpoint)
6972 tp->control.exception_resume_breakpoint->disposition
6973 = disp_del_at_next_stop;
6975 /* Handle the bpstat_copy of the chain. */
6976 bpstat_clear (&tp->control.stop_bpstat);
6978 tp->control = inf_status->thread_control;
6979 inf->control = inf_status->inferior_control;
6982 stop_stack_dummy = inf_status->stop_stack_dummy;
6983 stopped_by_random_signal = inf_status->stopped_by_random_signal;
6984 stop_after_trap = inf_status->stop_after_trap;
6986 if (target_has_stack)
6988 /* The point of catch_errors is that if the stack is clobbered,
6989 walking the stack might encounter a garbage pointer and
6990 error() trying to dereference it. */
6992 (restore_selected_frame, &inf_status->selected_frame_id,
6993 "Unable to restore previously selected frame:\n",
6994 RETURN_MASK_ERROR) == 0)
6995 /* Error in restoring the selected frame. Select the innermost
6997 select_frame (get_current_frame ());
7004 do_restore_infcall_control_state_cleanup (void *sts)
7006 restore_infcall_control_state (sts);
7010 make_cleanup_restore_infcall_control_state
7011 (struct infcall_control_state *inf_status)
7013 return make_cleanup (do_restore_infcall_control_state_cleanup, inf_status);
7017 discard_infcall_control_state (struct infcall_control_state *inf_status)
7019 if (inf_status->thread_control.step_resume_breakpoint)
7020 inf_status->thread_control.step_resume_breakpoint->disposition
7021 = disp_del_at_next_stop;
7023 if (inf_status->thread_control.exception_resume_breakpoint)
7024 inf_status->thread_control.exception_resume_breakpoint->disposition
7025 = disp_del_at_next_stop;
7027 /* See save_infcall_control_state for info on stop_bpstat. */
7028 bpstat_clear (&inf_status->thread_control.stop_bpstat);
7034 ptid_match (ptid_t ptid, ptid_t filter)
7036 if (ptid_equal (filter, minus_one_ptid))
7038 if (ptid_is_pid (filter)
7039 && ptid_get_pid (ptid) == ptid_get_pid (filter))
7041 else if (ptid_equal (ptid, filter))
7047 /* restore_inferior_ptid() will be used by the cleanup machinery
7048 to restore the inferior_ptid value saved in a call to
7049 save_inferior_ptid(). */
7052 restore_inferior_ptid (void *arg)
7054 ptid_t *saved_ptid_ptr = arg;
7056 inferior_ptid = *saved_ptid_ptr;
7060 /* Save the value of inferior_ptid so that it may be restored by a
7061 later call to do_cleanups(). Returns the struct cleanup pointer
7062 needed for later doing the cleanup. */
7065 save_inferior_ptid (void)
7067 ptid_t *saved_ptid_ptr;
7069 saved_ptid_ptr = xmalloc (sizeof (ptid_t));
7070 *saved_ptid_ptr = inferior_ptid;
7071 return make_cleanup (restore_inferior_ptid, saved_ptid_ptr);
7075 /* User interface for reverse debugging:
7076 Set exec-direction / show exec-direction commands
7077 (returns error unless target implements to_set_exec_direction method). */
7079 int execution_direction = EXEC_FORWARD;
7080 static const char exec_forward[] = "forward";
7081 static const char exec_reverse[] = "reverse";
7082 static const char *exec_direction = exec_forward;
7083 static const char *const exec_direction_names[] = {
7090 set_exec_direction_func (char *args, int from_tty,
7091 struct cmd_list_element *cmd)
7093 if (target_can_execute_reverse)
7095 if (!strcmp (exec_direction, exec_forward))
7096 execution_direction = EXEC_FORWARD;
7097 else if (!strcmp (exec_direction, exec_reverse))
7098 execution_direction = EXEC_REVERSE;
7102 exec_direction = exec_forward;
7103 error (_("Target does not support this operation."));
7108 show_exec_direction_func (struct ui_file *out, int from_tty,
7109 struct cmd_list_element *cmd, const char *value)
7111 switch (execution_direction) {
7113 fprintf_filtered (out, _("Forward.\n"));
7116 fprintf_filtered (out, _("Reverse.\n"));
7119 internal_error (__FILE__, __LINE__,
7120 _("bogus execution_direction value: %d"),
7121 (int) execution_direction);
7125 /* User interface for non-stop mode. */
7130 set_non_stop (char *args, int from_tty,
7131 struct cmd_list_element *c)
7133 if (target_has_execution)
7135 non_stop_1 = non_stop;
7136 error (_("Cannot change this setting while the inferior is running."));
7139 non_stop = non_stop_1;
7143 show_non_stop (struct ui_file *file, int from_tty,
7144 struct cmd_list_element *c, const char *value)
7146 fprintf_filtered (file,
7147 _("Controlling the inferior in non-stop mode is %s.\n"),
7152 show_schedule_multiple (struct ui_file *file, int from_tty,
7153 struct cmd_list_element *c, const char *value)
7155 fprintf_filtered (file, _("Resuming the execution of threads "
7156 "of all processes is %s.\n"), value);
7159 /* Implementation of `siginfo' variable. */
7161 static const struct internalvar_funcs siginfo_funcs =
7169 _initialize_infrun (void)
7173 struct cmd_list_element *c;
7175 add_info ("signals", signals_info, _("\
7176 What debugger does when program gets various signals.\n\
7177 Specify a signal as argument to print info on that signal only."));
7178 add_info_alias ("handle", "signals", 0);
7180 c = add_com ("handle", class_run, handle_command, _("\
7181 Specify how to handle signals.\n\
7182 Usage: handle SIGNAL [ACTIONS]\n\
7183 Args are signals and actions to apply to those signals.\n\
7184 If no actions are specified, the current settings for the specified signals\n\
7185 will be displayed instead.\n\
7187 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
7188 from 1-15 are allowed for compatibility with old versions of GDB.\n\
7189 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
7190 The special arg \"all\" is recognized to mean all signals except those\n\
7191 used by the debugger, typically SIGTRAP and SIGINT.\n\
7193 Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
7194 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
7195 Stop means reenter debugger if this signal happens (implies print).\n\
7196 Print means print a message if this signal happens.\n\
7197 Pass means let program see this signal; otherwise program doesn't know.\n\
7198 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
7199 Pass and Stop may be combined.\n\
7201 Multiple signals may be specified. Signal numbers and signal names\n\
7202 may be interspersed with actions, with the actions being performed for\n\
7203 all signals cumulatively specified."));
7204 set_cmd_completer (c, handle_completer);
7208 add_com ("lz", class_info, signals_info, _("\
7209 What debugger does when program gets various signals.\n\
7210 Specify a signal as argument to print info on that signal only."));
7211 add_com ("z", class_run, xdb_handle_command, _("\
7212 Specify how to handle a signal.\n\
7213 Args are signals and actions to apply to those signals.\n\
7214 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
7215 from 1-15 are allowed for compatibility with old versions of GDB.\n\
7216 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
7217 The special arg \"all\" is recognized to mean all signals except those\n\
7218 used by the debugger, typically SIGTRAP and SIGINT.\n\
7219 Recognized actions include \"s\" (toggles between stop and nostop),\n\
7220 \"r\" (toggles between print and noprint), \"i\" (toggles between pass and \
7221 nopass), \"Q\" (noprint)\n\
7222 Stop means reenter debugger if this signal happens (implies print).\n\
7223 Print means print a message if this signal happens.\n\
7224 Pass means let program see this signal; otherwise program doesn't know.\n\
7225 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
7226 Pass and Stop may be combined."));
7230 stop_command = add_cmd ("stop", class_obscure,
7231 not_just_help_class_command, _("\
7232 There is no `stop' command, but you can set a hook on `stop'.\n\
7233 This allows you to set a list of commands to be run each time execution\n\
7234 of the program stops."), &cmdlist);
7236 add_setshow_zuinteger_cmd ("infrun", class_maintenance, &debug_infrun, _("\
7237 Set inferior debugging."), _("\
7238 Show inferior debugging."), _("\
7239 When non-zero, inferior specific debugging is enabled."),
7242 &setdebuglist, &showdebuglist);
7244 add_setshow_boolean_cmd ("displaced", class_maintenance,
7245 &debug_displaced, _("\
7246 Set displaced stepping debugging."), _("\
7247 Show displaced stepping debugging."), _("\
7248 When non-zero, displaced stepping specific debugging is enabled."),
7250 show_debug_displaced,
7251 &setdebuglist, &showdebuglist);
7253 add_setshow_boolean_cmd ("non-stop", no_class,
7255 Set whether gdb controls the inferior in non-stop mode."), _("\
7256 Show whether gdb controls the inferior in non-stop mode."), _("\
7257 When debugging a multi-threaded program and this setting is\n\
7258 off (the default, also called all-stop mode), when one thread stops\n\
7259 (for a breakpoint, watchpoint, exception, or similar events), GDB stops\n\
7260 all other threads in the program while you interact with the thread of\n\
7261 interest. When you continue or step a thread, you can allow the other\n\
7262 threads to run, or have them remain stopped, but while you inspect any\n\
7263 thread's state, all threads stop.\n\
7265 In non-stop mode, when one thread stops, other threads can continue\n\
7266 to run freely. You'll be able to step each thread independently,\n\
7267 leave it stopped or free to run as needed."),
7273 numsigs = (int) GDB_SIGNAL_LAST;
7274 signal_stop = (unsigned char *) xmalloc (sizeof (signal_stop[0]) * numsigs);
7275 signal_print = (unsigned char *)
7276 xmalloc (sizeof (signal_print[0]) * numsigs);
7277 signal_program = (unsigned char *)
7278 xmalloc (sizeof (signal_program[0]) * numsigs);
7279 signal_catch = (unsigned char *)
7280 xmalloc (sizeof (signal_catch[0]) * numsigs);
7281 signal_pass = (unsigned char *)
7282 xmalloc (sizeof (signal_program[0]) * numsigs);
7283 for (i = 0; i < numsigs; i++)
7286 signal_print[i] = 1;
7287 signal_program[i] = 1;
7288 signal_catch[i] = 0;
7291 /* Signals caused by debugger's own actions
7292 should not be given to the program afterwards. */
7293 signal_program[GDB_SIGNAL_TRAP] = 0;
7294 signal_program[GDB_SIGNAL_INT] = 0;
7296 /* Signals that are not errors should not normally enter the debugger. */
7297 signal_stop[GDB_SIGNAL_ALRM] = 0;
7298 signal_print[GDB_SIGNAL_ALRM] = 0;
7299 signal_stop[GDB_SIGNAL_VTALRM] = 0;
7300 signal_print[GDB_SIGNAL_VTALRM] = 0;
7301 signal_stop[GDB_SIGNAL_PROF] = 0;
7302 signal_print[GDB_SIGNAL_PROF] = 0;
7303 signal_stop[GDB_SIGNAL_CHLD] = 0;
7304 signal_print[GDB_SIGNAL_CHLD] = 0;
7305 signal_stop[GDB_SIGNAL_IO] = 0;
7306 signal_print[GDB_SIGNAL_IO] = 0;
7307 signal_stop[GDB_SIGNAL_POLL] = 0;
7308 signal_print[GDB_SIGNAL_POLL] = 0;
7309 signal_stop[GDB_SIGNAL_URG] = 0;
7310 signal_print[GDB_SIGNAL_URG] = 0;
7311 signal_stop[GDB_SIGNAL_WINCH] = 0;
7312 signal_print[GDB_SIGNAL_WINCH] = 0;
7313 signal_stop[GDB_SIGNAL_PRIO] = 0;
7314 signal_print[GDB_SIGNAL_PRIO] = 0;
7316 /* These signals are used internally by user-level thread
7317 implementations. (See signal(5) on Solaris.) Like the above
7318 signals, a healthy program receives and handles them as part of
7319 its normal operation. */
7320 signal_stop[GDB_SIGNAL_LWP] = 0;
7321 signal_print[GDB_SIGNAL_LWP] = 0;
7322 signal_stop[GDB_SIGNAL_WAITING] = 0;
7323 signal_print[GDB_SIGNAL_WAITING] = 0;
7324 signal_stop[GDB_SIGNAL_CANCEL] = 0;
7325 signal_print[GDB_SIGNAL_CANCEL] = 0;
7327 /* Update cached state. */
7328 signal_cache_update (-1);
7330 add_setshow_zinteger_cmd ("stop-on-solib-events", class_support,
7331 &stop_on_solib_events, _("\
7332 Set stopping for shared library events."), _("\
7333 Show stopping for shared library events."), _("\
7334 If nonzero, gdb will give control to the user when the dynamic linker\n\
7335 notifies gdb of shared library events. The most common event of interest\n\
7336 to the user would be loading/unloading of a new library."),
7338 show_stop_on_solib_events,
7339 &setlist, &showlist);
7341 add_setshow_enum_cmd ("follow-fork-mode", class_run,
7342 follow_fork_mode_kind_names,
7343 &follow_fork_mode_string, _("\
7344 Set debugger response to a program call of fork or vfork."), _("\
7345 Show debugger response to a program call of fork or vfork."), _("\
7346 A fork or vfork creates a new process. follow-fork-mode can be:\n\
7347 parent - the original process is debugged after a fork\n\
7348 child - the new process is debugged after a fork\n\
7349 The unfollowed process will continue to run.\n\
7350 By default, the debugger will follow the parent process."),
7352 show_follow_fork_mode_string,
7353 &setlist, &showlist);
7355 add_setshow_enum_cmd ("follow-exec-mode", class_run,
7356 follow_exec_mode_names,
7357 &follow_exec_mode_string, _("\
7358 Set debugger response to a program call of exec."), _("\
7359 Show debugger response to a program call of exec."), _("\
7360 An exec call replaces the program image of a process.\n\
7362 follow-exec-mode can be:\n\
7364 new - the debugger creates a new inferior and rebinds the process\n\
7365 to this new inferior. The program the process was running before\n\
7366 the exec call can be restarted afterwards by restarting the original\n\
7369 same - the debugger keeps the process bound to the same inferior.\n\
7370 The new executable image replaces the previous executable loaded in\n\
7371 the inferior. Restarting the inferior after the exec call restarts\n\
7372 the executable the process was running after the exec call.\n\
7374 By default, the debugger will use the same inferior."),
7376 show_follow_exec_mode_string,
7377 &setlist, &showlist);
7379 add_setshow_enum_cmd ("scheduler-locking", class_run,
7380 scheduler_enums, &scheduler_mode, _("\
7381 Set mode for locking scheduler during execution."), _("\
7382 Show mode for locking scheduler during execution."), _("\
7383 off == no locking (threads may preempt at any time)\n\
7384 on == full locking (no thread except the current thread may run)\n\
7385 step == scheduler locked during every single-step operation.\n\
7386 In this mode, no other thread may run during a step command.\n\
7387 Other threads may run while stepping over a function call ('next')."),
7388 set_schedlock_func, /* traps on target vector */
7389 show_scheduler_mode,
7390 &setlist, &showlist);
7392 add_setshow_boolean_cmd ("schedule-multiple", class_run, &sched_multi, _("\
7393 Set mode for resuming threads of all processes."), _("\
7394 Show mode for resuming threads of all processes."), _("\
7395 When on, execution commands (such as 'continue' or 'next') resume all\n\
7396 threads of all processes. When off (which is the default), execution\n\
7397 commands only resume the threads of the current process. The set of\n\
7398 threads that are resumed is further refined by the scheduler-locking\n\
7399 mode (see help set scheduler-locking)."),
7401 show_schedule_multiple,
7402 &setlist, &showlist);
7404 add_setshow_boolean_cmd ("step-mode", class_run, &step_stop_if_no_debug, _("\
7405 Set mode of the step operation."), _("\
7406 Show mode of the step operation."), _("\
7407 When set, doing a step over a function without debug line information\n\
7408 will stop at the first instruction of that function. Otherwise, the\n\
7409 function is skipped and the step command stops at a different source line."),
7411 show_step_stop_if_no_debug,
7412 &setlist, &showlist);
7414 add_setshow_auto_boolean_cmd ("displaced-stepping", class_run,
7415 &can_use_displaced_stepping, _("\
7416 Set debugger's willingness to use displaced stepping."), _("\
7417 Show debugger's willingness to use displaced stepping."), _("\
7418 If on, gdb will use displaced stepping to step over breakpoints if it is\n\
7419 supported by the target architecture. If off, gdb will not use displaced\n\
7420 stepping to step over breakpoints, even if such is supported by the target\n\
7421 architecture. If auto (which is the default), gdb will use displaced stepping\n\
7422 if the target architecture supports it and non-stop mode is active, but will not\n\
7423 use it in all-stop mode (see help set non-stop)."),
7425 show_can_use_displaced_stepping,
7426 &setlist, &showlist);
7428 add_setshow_enum_cmd ("exec-direction", class_run, exec_direction_names,
7429 &exec_direction, _("Set direction of execution.\n\
7430 Options are 'forward' or 'reverse'."),
7431 _("Show direction of execution (forward/reverse)."),
7432 _("Tells gdb whether to execute forward or backward."),
7433 set_exec_direction_func, show_exec_direction_func,
7434 &setlist, &showlist);
7436 /* Set/show detach-on-fork: user-settable mode. */
7438 add_setshow_boolean_cmd ("detach-on-fork", class_run, &detach_fork, _("\
7439 Set whether gdb will detach the child of a fork."), _("\
7440 Show whether gdb will detach the child of a fork."), _("\
7441 Tells gdb whether to detach the child of a fork."),
7442 NULL, NULL, &setlist, &showlist);
7444 /* Set/show disable address space randomization mode. */
7446 add_setshow_boolean_cmd ("disable-randomization", class_support,
7447 &disable_randomization, _("\
7448 Set disabling of debuggee's virtual address space randomization."), _("\
7449 Show disabling of debuggee's virtual address space randomization."), _("\
7450 When this mode is on (which is the default), randomization of the virtual\n\
7451 address space is disabled. Standalone programs run with the randomization\n\
7452 enabled by default on some platforms."),
7453 &set_disable_randomization,
7454 &show_disable_randomization,
7455 &setlist, &showlist);
7457 /* ptid initializations */
7458 inferior_ptid = null_ptid;
7459 target_last_wait_ptid = minus_one_ptid;
7461 observer_attach_thread_ptid_changed (infrun_thread_ptid_changed);
7462 observer_attach_thread_stop_requested (infrun_thread_stop_requested);
7463 observer_attach_thread_exit (infrun_thread_thread_exit);
7464 observer_attach_inferior_exit (infrun_inferior_exit);
7466 /* Explicitly create without lookup, since that tries to create a
7467 value with a void typed value, and when we get here, gdbarch
7468 isn't initialized yet. At this point, we're quite sure there
7469 isn't another convenience variable of the same name. */
7470 create_internalvar_type_lazy ("_siginfo", &siginfo_funcs, NULL);
7472 add_setshow_boolean_cmd ("observer", no_class,
7473 &observer_mode_1, _("\
7474 Set whether gdb controls the inferior in observer mode."), _("\
7475 Show whether gdb controls the inferior in observer mode."), _("\
7476 In observer mode, GDB can get data from the inferior, but not\n\
7477 affect its execution. Registers and memory may not be changed,\n\
7478 breakpoints may not be set, and the program cannot be interrupted\n\