1 /* Target-struct-independent code to start (run) and stop an inferior
4 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
5 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
6 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "gdb_string.h"
29 #include "exceptions.h"
30 #include "breakpoint.h"
34 #include "cli/cli-script.h"
36 #include "gdbthread.h"
48 #include "dictionary.h"
50 #include "gdb_assert.h"
51 #include "mi/mi-common.h"
52 #include "event-top.h"
54 #include "inline-frame.h"
56 #include "tracepoint.h"
58 /* Prototypes for local functions */
60 static void signals_info (char *, int);
62 static void handle_command (char *, int);
64 static void sig_print_info (enum target_signal);
66 static void sig_print_header (void);
68 static void resume_cleanups (void *);
70 static int hook_stop_stub (void *);
72 static int restore_selected_frame (void *);
74 static int follow_fork (void);
76 static void set_schedlock_func (char *args, int from_tty,
77 struct cmd_list_element *c);
79 static int currently_stepping (struct thread_info *tp);
81 static int currently_stepping_or_nexting_callback (struct thread_info *tp,
84 static void xdb_handle_command (char *args, int from_tty);
86 static int prepare_to_proceed (int);
88 static void print_exited_reason (int exitstatus);
90 static void print_signal_exited_reason (enum target_signal siggnal);
92 static void print_no_history_reason (void);
94 static void print_signal_received_reason (enum target_signal siggnal);
96 static void print_end_stepping_range_reason (void);
98 void _initialize_infrun (void);
100 void nullify_last_target_wait_ptid (void);
102 static void insert_step_resume_breakpoint_at_frame (struct frame_info *);
104 static void insert_step_resume_breakpoint_at_caller (struct frame_info *);
106 static void insert_step_resume_breakpoint_at_sal (struct gdbarch *,
107 struct symtab_and_line ,
110 static void insert_longjmp_resume_breakpoint (struct gdbarch *, CORE_ADDR);
112 /* When set, stop the 'step' command if we enter a function which has
113 no line number information. The normal behavior is that we step
114 over such function. */
115 int step_stop_if_no_debug = 0;
117 show_step_stop_if_no_debug (struct ui_file *file, int from_tty,
118 struct cmd_list_element *c, const char *value)
120 fprintf_filtered (file, _("Mode of the step operation is %s.\n"), value);
123 /* In asynchronous mode, but simulating synchronous execution. */
125 int sync_execution = 0;
127 /* wait_for_inferior and normal_stop use this to notify the user
128 when the inferior stopped in a different thread than it had been
131 static ptid_t previous_inferior_ptid;
133 /* Default behavior is to detach newly forked processes (legacy). */
136 int debug_displaced = 0;
138 show_debug_displaced (struct ui_file *file, int from_tty,
139 struct cmd_list_element *c, const char *value)
141 fprintf_filtered (file, _("Displace stepping debugging is %s.\n"), value);
144 int debug_infrun = 0;
146 show_debug_infrun (struct ui_file *file, int from_tty,
147 struct cmd_list_element *c, const char *value)
149 fprintf_filtered (file, _("Inferior debugging is %s.\n"), value);
152 /* If the program uses ELF-style shared libraries, then calls to
153 functions in shared libraries go through stubs, which live in a
154 table called the PLT (Procedure Linkage Table). The first time the
155 function is called, the stub sends control to the dynamic linker,
156 which looks up the function's real address, patches the stub so
157 that future calls will go directly to the function, and then passes
158 control to the function.
160 If we are stepping at the source level, we don't want to see any of
161 this --- we just want to skip over the stub and the dynamic linker.
162 The simple approach is to single-step until control leaves the
165 However, on some systems (e.g., Red Hat's 5.2 distribution) the
166 dynamic linker calls functions in the shared C library, so you
167 can't tell from the PC alone whether the dynamic linker is still
168 running. In this case, we use a step-resume breakpoint to get us
169 past the dynamic linker, as if we were using "next" to step over a
172 in_solib_dynsym_resolve_code() says whether we're in the dynamic
173 linker code or not. Normally, this means we single-step. However,
174 if SKIP_SOLIB_RESOLVER then returns non-zero, then its value is an
175 address where we can place a step-resume breakpoint to get past the
176 linker's symbol resolution function.
178 in_solib_dynsym_resolve_code() can generally be implemented in a
179 pretty portable way, by comparing the PC against the address ranges
180 of the dynamic linker's sections.
182 SKIP_SOLIB_RESOLVER is generally going to be system-specific, since
183 it depends on internal details of the dynamic linker. It's usually
184 not too hard to figure out where to put a breakpoint, but it
185 certainly isn't portable. SKIP_SOLIB_RESOLVER should do plenty of
186 sanity checking. If it can't figure things out, returning zero and
187 getting the (possibly confusing) stepping behavior is better than
188 signalling an error, which will obscure the change in the
191 /* This function returns TRUE if pc is the address of an instruction
192 that lies within the dynamic linker (such as the event hook, or the
195 This function must be used only when a dynamic linker event has
196 been caught, and the inferior is being stepped out of the hook, or
197 undefined results are guaranteed. */
199 #ifndef SOLIB_IN_DYNAMIC_LINKER
200 #define SOLIB_IN_DYNAMIC_LINKER(pid,pc) 0
203 /* "Observer mode" is somewhat like a more extreme version of
204 non-stop, in which all GDB operations that might affect the
205 target's execution have been disabled. */
207 static int non_stop_1 = 0;
209 int observer_mode = 0;
210 static int observer_mode_1 = 0;
213 set_observer_mode (char *args, int from_tty,
214 struct cmd_list_element *c)
216 extern int pagination_enabled;
218 if (target_has_execution)
220 observer_mode_1 = observer_mode;
221 error (_("Cannot change this setting while the inferior is running."));
224 observer_mode = observer_mode_1;
226 may_write_registers = !observer_mode;
227 may_write_memory = !observer_mode;
228 may_insert_breakpoints = !observer_mode;
229 may_insert_tracepoints = !observer_mode;
230 /* We can insert fast tracepoints in or out of observer mode,
231 but enable them if we're going into this mode. */
233 may_insert_fast_tracepoints = 1;
234 may_stop = !observer_mode;
235 update_target_permissions ();
237 /* Going *into* observer mode we must force non-stop, then
238 going out we leave it that way. */
241 target_async_permitted = 1;
242 pagination_enabled = 0;
243 non_stop = non_stop_1 = 1;
247 printf_filtered (_("Observer mode is now %s.\n"),
248 (observer_mode ? "on" : "off"));
252 show_observer_mode (struct ui_file *file, int from_tty,
253 struct cmd_list_element *c, const char *value)
255 fprintf_filtered (file, _("Observer mode is %s.\n"), value);
258 /* This updates the value of observer mode based on changes in
259 permissions. Note that we are deliberately ignoring the values of
260 may-write-registers and may-write-memory, since the user may have
261 reason to enable these during a session, for instance to turn on a
262 debugging-related global. */
265 update_observer_mode (void)
269 newval = (!may_insert_breakpoints
270 && !may_insert_tracepoints
271 && may_insert_fast_tracepoints
275 /* Let the user know if things change. */
276 if (newval != observer_mode)
277 printf_filtered (_("Observer mode is now %s.\n"),
278 (newval ? "on" : "off"));
280 observer_mode = observer_mode_1 = newval;
283 /* Tables of how to react to signals; the user sets them. */
285 static unsigned char *signal_stop;
286 static unsigned char *signal_print;
287 static unsigned char *signal_program;
289 /* Table of signals that the target may silently handle.
290 This is automatically determined from the flags above,
291 and simply cached here. */
292 static unsigned char *signal_pass;
294 #define SET_SIGS(nsigs,sigs,flags) \
296 int signum = (nsigs); \
297 while (signum-- > 0) \
298 if ((sigs)[signum]) \
299 (flags)[signum] = 1; \
302 #define UNSET_SIGS(nsigs,sigs,flags) \
304 int signum = (nsigs); \
305 while (signum-- > 0) \
306 if ((sigs)[signum]) \
307 (flags)[signum] = 0; \
310 /* Value to pass to target_resume() to cause all threads to resume. */
312 #define RESUME_ALL minus_one_ptid
314 /* Command list pointer for the "stop" placeholder. */
316 static struct cmd_list_element *stop_command;
318 /* Function inferior was in as of last step command. */
320 static struct symbol *step_start_function;
322 /* Nonzero if we want to give control to the user when we're notified
323 of shared library events by the dynamic linker. */
324 int stop_on_solib_events;
326 show_stop_on_solib_events (struct ui_file *file, int from_tty,
327 struct cmd_list_element *c, const char *value)
329 fprintf_filtered (file, _("Stopping for shared library events is %s.\n"),
333 /* Nonzero means expecting a trace trap
334 and should stop the inferior and return silently when it happens. */
338 /* Save register contents here when executing a "finish" command or are
339 about to pop a stack dummy frame, if-and-only-if proceed_to_finish is set.
340 Thus this contains the return value from the called function (assuming
341 values are returned in a register). */
343 struct regcache *stop_registers;
345 /* Nonzero after stop if current stack frame should be printed. */
347 static int stop_print_frame;
349 /* This is a cached copy of the pid/waitstatus of the last event
350 returned by target_wait()/deprecated_target_wait_hook(). This
351 information is returned by get_last_target_status(). */
352 static ptid_t target_last_wait_ptid;
353 static struct target_waitstatus target_last_waitstatus;
355 static void context_switch (ptid_t ptid);
357 void init_thread_stepping_state (struct thread_info *tss);
359 void init_infwait_state (void);
361 static const char follow_fork_mode_child[] = "child";
362 static const char follow_fork_mode_parent[] = "parent";
364 static const char *follow_fork_mode_kind_names[] = {
365 follow_fork_mode_child,
366 follow_fork_mode_parent,
370 static const char *follow_fork_mode_string = follow_fork_mode_parent;
372 show_follow_fork_mode_string (struct ui_file *file, int from_tty,
373 struct cmd_list_element *c, const char *value)
375 fprintf_filtered (file,
376 _("Debugger response to a program "
377 "call of fork or vfork is \"%s\".\n"),
382 /* Tell the target to follow the fork we're stopped at. Returns true
383 if the inferior should be resumed; false, if the target for some
384 reason decided it's best not to resume. */
389 int follow_child = (follow_fork_mode_string == follow_fork_mode_child);
390 int should_resume = 1;
391 struct thread_info *tp;
393 /* Copy user stepping state to the new inferior thread. FIXME: the
394 followed fork child thread should have a copy of most of the
395 parent thread structure's run control related fields, not just these.
396 Initialized to avoid "may be used uninitialized" warnings from gcc. */
397 struct breakpoint *step_resume_breakpoint = NULL;
398 struct breakpoint *exception_resume_breakpoint = NULL;
399 CORE_ADDR step_range_start = 0;
400 CORE_ADDR step_range_end = 0;
401 struct frame_id step_frame_id = { 0 };
406 struct target_waitstatus wait_status;
408 /* Get the last target status returned by target_wait(). */
409 get_last_target_status (&wait_ptid, &wait_status);
411 /* If not stopped at a fork event, then there's nothing else to
413 if (wait_status.kind != TARGET_WAITKIND_FORKED
414 && wait_status.kind != TARGET_WAITKIND_VFORKED)
417 /* Check if we switched over from WAIT_PTID, since the event was
419 if (!ptid_equal (wait_ptid, minus_one_ptid)
420 && !ptid_equal (inferior_ptid, wait_ptid))
422 /* We did. Switch back to WAIT_PTID thread, to tell the
423 target to follow it (in either direction). We'll
424 afterwards refuse to resume, and inform the user what
426 switch_to_thread (wait_ptid);
431 tp = inferior_thread ();
433 /* If there were any forks/vforks that were caught and are now to be
434 followed, then do so now. */
435 switch (tp->pending_follow.kind)
437 case TARGET_WAITKIND_FORKED:
438 case TARGET_WAITKIND_VFORKED:
440 ptid_t parent, child;
442 /* If the user did a next/step, etc, over a fork call,
443 preserve the stepping state in the fork child. */
444 if (follow_child && should_resume)
446 step_resume_breakpoint = clone_momentary_breakpoint
447 (tp->control.step_resume_breakpoint);
448 step_range_start = tp->control.step_range_start;
449 step_range_end = tp->control.step_range_end;
450 step_frame_id = tp->control.step_frame_id;
451 exception_resume_breakpoint
452 = clone_momentary_breakpoint (tp->control.exception_resume_breakpoint);
454 /* For now, delete the parent's sr breakpoint, otherwise,
455 parent/child sr breakpoints are considered duplicates,
456 and the child version will not be installed. Remove
457 this when the breakpoints module becomes aware of
458 inferiors and address spaces. */
459 delete_step_resume_breakpoint (tp);
460 tp->control.step_range_start = 0;
461 tp->control.step_range_end = 0;
462 tp->control.step_frame_id = null_frame_id;
463 delete_exception_resume_breakpoint (tp);
466 parent = inferior_ptid;
467 child = tp->pending_follow.value.related_pid;
469 /* Tell the target to do whatever is necessary to follow
470 either parent or child. */
471 if (target_follow_fork (follow_child))
473 /* Target refused to follow, or there's some other reason
474 we shouldn't resume. */
479 /* This pending follow fork event is now handled, one way
480 or another. The previous selected thread may be gone
481 from the lists by now, but if it is still around, need
482 to clear the pending follow request. */
483 tp = find_thread_ptid (parent);
485 tp->pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
487 /* This makes sure we don't try to apply the "Switched
488 over from WAIT_PID" logic above. */
489 nullify_last_target_wait_ptid ();
491 /* If we followed the child, switch to it... */
494 switch_to_thread (child);
496 /* ... and preserve the stepping state, in case the
497 user was stepping over the fork call. */
500 tp = inferior_thread ();
501 tp->control.step_resume_breakpoint
502 = step_resume_breakpoint;
503 tp->control.step_range_start = step_range_start;
504 tp->control.step_range_end = step_range_end;
505 tp->control.step_frame_id = step_frame_id;
506 tp->control.exception_resume_breakpoint
507 = exception_resume_breakpoint;
511 /* If we get here, it was because we're trying to
512 resume from a fork catchpoint, but, the user
513 has switched threads away from the thread that
514 forked. In that case, the resume command
515 issued is most likely not applicable to the
516 child, so just warn, and refuse to resume. */
517 warning (_("Not resuming: switched threads "
518 "before following fork child.\n"));
521 /* Reset breakpoints in the child as appropriate. */
522 follow_inferior_reset_breakpoints ();
525 switch_to_thread (parent);
529 case TARGET_WAITKIND_SPURIOUS:
530 /* Nothing to follow. */
533 internal_error (__FILE__, __LINE__,
534 "Unexpected pending_follow.kind %d\n",
535 tp->pending_follow.kind);
539 return should_resume;
543 follow_inferior_reset_breakpoints (void)
545 struct thread_info *tp = inferior_thread ();
547 /* Was there a step_resume breakpoint? (There was if the user
548 did a "next" at the fork() call.) If so, explicitly reset its
551 step_resumes are a form of bp that are made to be per-thread.
552 Since we created the step_resume bp when the parent process
553 was being debugged, and now are switching to the child process,
554 from the breakpoint package's viewpoint, that's a switch of
555 "threads". We must update the bp's notion of which thread
556 it is for, or it'll be ignored when it triggers. */
558 if (tp->control.step_resume_breakpoint)
559 breakpoint_re_set_thread (tp->control.step_resume_breakpoint);
561 if (tp->control.exception_resume_breakpoint)
562 breakpoint_re_set_thread (tp->control.exception_resume_breakpoint);
564 /* Reinsert all breakpoints in the child. The user may have set
565 breakpoints after catching the fork, in which case those
566 were never set in the child, but only in the parent. This makes
567 sure the inserted breakpoints match the breakpoint list. */
569 breakpoint_re_set ();
570 insert_breakpoints ();
573 /* The child has exited or execed: resume threads of the parent the
574 user wanted to be executing. */
577 proceed_after_vfork_done (struct thread_info *thread,
580 int pid = * (int *) arg;
582 if (ptid_get_pid (thread->ptid) == pid
583 && is_running (thread->ptid)
584 && !is_executing (thread->ptid)
585 && !thread->stop_requested
586 && thread->suspend.stop_signal == TARGET_SIGNAL_0)
589 fprintf_unfiltered (gdb_stdlog,
590 "infrun: resuming vfork parent thread %s\n",
591 target_pid_to_str (thread->ptid));
593 switch_to_thread (thread->ptid);
594 clear_proceed_status ();
595 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
601 /* Called whenever we notice an exec or exit event, to handle
602 detaching or resuming a vfork parent. */
605 handle_vfork_child_exec_or_exit (int exec)
607 struct inferior *inf = current_inferior ();
609 if (inf->vfork_parent)
611 int resume_parent = -1;
613 /* This exec or exit marks the end of the shared memory region
614 between the parent and the child. If the user wanted to
615 detach from the parent, now is the time. */
617 if (inf->vfork_parent->pending_detach)
619 struct thread_info *tp;
620 struct cleanup *old_chain;
621 struct program_space *pspace;
622 struct address_space *aspace;
624 /* follow-fork child, detach-on-fork on. */
626 old_chain = make_cleanup_restore_current_thread ();
628 /* We're letting loose of the parent. */
629 tp = any_live_thread_of_process (inf->vfork_parent->pid);
630 switch_to_thread (tp->ptid);
632 /* We're about to detach from the parent, which implicitly
633 removes breakpoints from its address space. There's a
634 catch here: we want to reuse the spaces for the child,
635 but, parent/child are still sharing the pspace at this
636 point, although the exec in reality makes the kernel give
637 the child a fresh set of new pages. The problem here is
638 that the breakpoints module being unaware of this, would
639 likely chose the child process to write to the parent
640 address space. Swapping the child temporarily away from
641 the spaces has the desired effect. Yes, this is "sort
644 pspace = inf->pspace;
645 aspace = inf->aspace;
649 if (debug_infrun || info_verbose)
651 target_terminal_ours ();
654 fprintf_filtered (gdb_stdlog,
655 "Detaching vfork parent process "
656 "%d after child exec.\n",
657 inf->vfork_parent->pid);
659 fprintf_filtered (gdb_stdlog,
660 "Detaching vfork parent process "
661 "%d after child exit.\n",
662 inf->vfork_parent->pid);
665 target_detach (NULL, 0);
668 inf->pspace = pspace;
669 inf->aspace = aspace;
671 do_cleanups (old_chain);
675 /* We're staying attached to the parent, so, really give the
676 child a new address space. */
677 inf->pspace = add_program_space (maybe_new_address_space ());
678 inf->aspace = inf->pspace->aspace;
680 set_current_program_space (inf->pspace);
682 resume_parent = inf->vfork_parent->pid;
684 /* Break the bonds. */
685 inf->vfork_parent->vfork_child = NULL;
689 struct cleanup *old_chain;
690 struct program_space *pspace;
692 /* If this is a vfork child exiting, then the pspace and
693 aspaces were shared with the parent. Since we're
694 reporting the process exit, we'll be mourning all that is
695 found in the address space, and switching to null_ptid,
696 preparing to start a new inferior. But, since we don't
697 want to clobber the parent's address/program spaces, we
698 go ahead and create a new one for this exiting
701 /* Switch to null_ptid, so that clone_program_space doesn't want
702 to read the selected frame of a dead process. */
703 old_chain = save_inferior_ptid ();
704 inferior_ptid = null_ptid;
706 /* This inferior is dead, so avoid giving the breakpoints
707 module the option to write through to it (cloning a
708 program space resets breakpoints). */
711 pspace = add_program_space (maybe_new_address_space ());
712 set_current_program_space (pspace);
714 clone_program_space (pspace, inf->vfork_parent->pspace);
715 inf->pspace = pspace;
716 inf->aspace = pspace->aspace;
718 /* Put back inferior_ptid. We'll continue mourning this
720 do_cleanups (old_chain);
722 resume_parent = inf->vfork_parent->pid;
723 /* Break the bonds. */
724 inf->vfork_parent->vfork_child = NULL;
727 inf->vfork_parent = NULL;
729 gdb_assert (current_program_space == inf->pspace);
731 if (non_stop && resume_parent != -1)
733 /* If the user wanted the parent to be running, let it go
735 struct cleanup *old_chain = make_cleanup_restore_current_thread ();
738 fprintf_unfiltered (gdb_stdlog,
739 "infrun: resuming vfork parent process %d\n",
742 iterate_over_threads (proceed_after_vfork_done, &resume_parent);
744 do_cleanups (old_chain);
749 /* Enum strings for "set|show displaced-stepping". */
751 static const char follow_exec_mode_new[] = "new";
752 static const char follow_exec_mode_same[] = "same";
753 static const char *follow_exec_mode_names[] =
755 follow_exec_mode_new,
756 follow_exec_mode_same,
760 static const char *follow_exec_mode_string = follow_exec_mode_same;
762 show_follow_exec_mode_string (struct ui_file *file, int from_tty,
763 struct cmd_list_element *c, const char *value)
765 fprintf_filtered (file, _("Follow exec mode is \"%s\".\n"), value);
768 /* EXECD_PATHNAME is assumed to be non-NULL. */
771 follow_exec (ptid_t pid, char *execd_pathname)
773 struct thread_info *th = inferior_thread ();
774 struct inferior *inf = current_inferior ();
776 /* This is an exec event that we actually wish to pay attention to.
777 Refresh our symbol table to the newly exec'd program, remove any
780 If there are breakpoints, they aren't really inserted now,
781 since the exec() transformed our inferior into a fresh set
784 We want to preserve symbolic breakpoints on the list, since
785 we have hopes that they can be reset after the new a.out's
786 symbol table is read.
788 However, any "raw" breakpoints must be removed from the list
789 (e.g., the solib bp's), since their address is probably invalid
792 And, we DON'T want to call delete_breakpoints() here, since
793 that may write the bp's "shadow contents" (the instruction
794 value that was overwritten witha TRAP instruction). Since
795 we now have a new a.out, those shadow contents aren't valid. */
797 mark_breakpoints_out ();
799 update_breakpoints_after_exec ();
801 /* If there was one, it's gone now. We cannot truly step-to-next
802 statement through an exec(). */
803 th->control.step_resume_breakpoint = NULL;
804 th->control.exception_resume_breakpoint = NULL;
805 th->control.step_range_start = 0;
806 th->control.step_range_end = 0;
808 /* The target reports the exec event to the main thread, even if
809 some other thread does the exec, and even if the main thread was
810 already stopped --- if debugging in non-stop mode, it's possible
811 the user had the main thread held stopped in the previous image
812 --- release it now. This is the same behavior as step-over-exec
813 with scheduler-locking on in all-stop mode. */
814 th->stop_requested = 0;
816 /* What is this a.out's name? */
817 printf_unfiltered (_("%s is executing new program: %s\n"),
818 target_pid_to_str (inferior_ptid),
821 /* We've followed the inferior through an exec. Therefore, the
822 inferior has essentially been killed & reborn. */
824 gdb_flush (gdb_stdout);
826 breakpoint_init_inferior (inf_execd);
828 if (gdb_sysroot && *gdb_sysroot)
830 char *name = alloca (strlen (gdb_sysroot)
831 + strlen (execd_pathname)
834 strcpy (name, gdb_sysroot);
835 strcat (name, execd_pathname);
836 execd_pathname = name;
839 /* Reset the shared library package. This ensures that we get a
840 shlib event when the child reaches "_start", at which point the
841 dld will have had a chance to initialize the child. */
842 /* Also, loading a symbol file below may trigger symbol lookups, and
843 we don't want those to be satisfied by the libraries of the
844 previous incarnation of this process. */
845 no_shared_libraries (NULL, 0);
847 if (follow_exec_mode_string == follow_exec_mode_new)
849 struct program_space *pspace;
851 /* The user wants to keep the old inferior and program spaces
852 around. Create a new fresh one, and switch to it. */
854 inf = add_inferior (current_inferior ()->pid);
855 pspace = add_program_space (maybe_new_address_space ());
856 inf->pspace = pspace;
857 inf->aspace = pspace->aspace;
859 exit_inferior_num_silent (current_inferior ()->num);
861 set_current_inferior (inf);
862 set_current_program_space (pspace);
865 gdb_assert (current_program_space == inf->pspace);
867 /* That a.out is now the one to use. */
868 exec_file_attach (execd_pathname, 0);
870 /* SYMFILE_DEFER_BP_RESET is used as the proper displacement for PIE
871 (Position Independent Executable) main symbol file will get applied by
872 solib_create_inferior_hook below. breakpoint_re_set would fail to insert
873 the breakpoints with the zero displacement. */
875 symbol_file_add (execd_pathname, SYMFILE_MAINLINE | SYMFILE_DEFER_BP_RESET,
878 set_initial_language ();
880 #ifdef SOLIB_CREATE_INFERIOR_HOOK
881 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
883 solib_create_inferior_hook (0);
886 jit_inferior_created_hook ();
888 breakpoint_re_set ();
890 /* Reinsert all breakpoints. (Those which were symbolic have
891 been reset to the proper address in the new a.out, thanks
892 to symbol_file_command...). */
893 insert_breakpoints ();
895 /* The next resume of this inferior should bring it to the shlib
896 startup breakpoints. (If the user had also set bp's on
897 "main" from the old (parent) process, then they'll auto-
898 matically get reset there in the new process.). */
901 /* Non-zero if we just simulating a single-step. This is needed
902 because we cannot remove the breakpoints in the inferior process
903 until after the `wait' in `wait_for_inferior'. */
904 static int singlestep_breakpoints_inserted_p = 0;
906 /* The thread we inserted single-step breakpoints for. */
907 static ptid_t singlestep_ptid;
909 /* PC when we started this single-step. */
910 static CORE_ADDR singlestep_pc;
912 /* If another thread hit the singlestep breakpoint, we save the original
913 thread here so that we can resume single-stepping it later. */
914 static ptid_t saved_singlestep_ptid;
915 static int stepping_past_singlestep_breakpoint;
917 /* If not equal to null_ptid, this means that after stepping over breakpoint
918 is finished, we need to switch to deferred_step_ptid, and step it.
920 The use case is when one thread has hit a breakpoint, and then the user
921 has switched to another thread and issued 'step'. We need to step over
922 breakpoint in the thread which hit the breakpoint, but then continue
923 stepping the thread user has selected. */
924 static ptid_t deferred_step_ptid;
926 /* Displaced stepping. */
928 /* In non-stop debugging mode, we must take special care to manage
929 breakpoints properly; in particular, the traditional strategy for
930 stepping a thread past a breakpoint it has hit is unsuitable.
931 'Displaced stepping' is a tactic for stepping one thread past a
932 breakpoint it has hit while ensuring that other threads running
933 concurrently will hit the breakpoint as they should.
935 The traditional way to step a thread T off a breakpoint in a
936 multi-threaded program in all-stop mode is as follows:
938 a0) Initially, all threads are stopped, and breakpoints are not
940 a1) We single-step T, leaving breakpoints uninserted.
941 a2) We insert breakpoints, and resume all threads.
943 In non-stop debugging, however, this strategy is unsuitable: we
944 don't want to have to stop all threads in the system in order to
945 continue or step T past a breakpoint. Instead, we use displaced
948 n0) Initially, T is stopped, other threads are running, and
949 breakpoints are inserted.
950 n1) We copy the instruction "under" the breakpoint to a separate
951 location, outside the main code stream, making any adjustments
952 to the instruction, register, and memory state as directed by
954 n2) We single-step T over the instruction at its new location.
955 n3) We adjust the resulting register and memory state as directed
956 by T's architecture. This includes resetting T's PC to point
957 back into the main instruction stream.
960 This approach depends on the following gdbarch methods:
962 - gdbarch_max_insn_length and gdbarch_displaced_step_location
963 indicate where to copy the instruction, and how much space must
964 be reserved there. We use these in step n1.
966 - gdbarch_displaced_step_copy_insn copies a instruction to a new
967 address, and makes any necessary adjustments to the instruction,
968 register contents, and memory. We use this in step n1.
970 - gdbarch_displaced_step_fixup adjusts registers and memory after
971 we have successfuly single-stepped the instruction, to yield the
972 same effect the instruction would have had if we had executed it
973 at its original address. We use this in step n3.
975 - gdbarch_displaced_step_free_closure provides cleanup.
977 The gdbarch_displaced_step_copy_insn and
978 gdbarch_displaced_step_fixup functions must be written so that
979 copying an instruction with gdbarch_displaced_step_copy_insn,
980 single-stepping across the copied instruction, and then applying
981 gdbarch_displaced_insn_fixup should have the same effects on the
982 thread's memory and registers as stepping the instruction in place
983 would have. Exactly which responsibilities fall to the copy and
984 which fall to the fixup is up to the author of those functions.
986 See the comments in gdbarch.sh for details.
988 Note that displaced stepping and software single-step cannot
989 currently be used in combination, although with some care I think
990 they could be made to. Software single-step works by placing
991 breakpoints on all possible subsequent instructions; if the
992 displaced instruction is a PC-relative jump, those breakpoints
993 could fall in very strange places --- on pages that aren't
994 executable, or at addresses that are not proper instruction
995 boundaries. (We do generally let other threads run while we wait
996 to hit the software single-step breakpoint, and they might
997 encounter such a corrupted instruction.) One way to work around
998 this would be to have gdbarch_displaced_step_copy_insn fully
999 simulate the effect of PC-relative instructions (and return NULL)
1000 on architectures that use software single-stepping.
1002 In non-stop mode, we can have independent and simultaneous step
1003 requests, so more than one thread may need to simultaneously step
1004 over a breakpoint. The current implementation assumes there is
1005 only one scratch space per process. In this case, we have to
1006 serialize access to the scratch space. If thread A wants to step
1007 over a breakpoint, but we are currently waiting for some other
1008 thread to complete a displaced step, we leave thread A stopped and
1009 place it in the displaced_step_request_queue. Whenever a displaced
1010 step finishes, we pick the next thread in the queue and start a new
1011 displaced step operation on it. See displaced_step_prepare and
1012 displaced_step_fixup for details. */
1014 struct displaced_step_request
1017 struct displaced_step_request *next;
1020 /* Per-inferior displaced stepping state. */
1021 struct displaced_step_inferior_state
1023 /* Pointer to next in linked list. */
1024 struct displaced_step_inferior_state *next;
1026 /* The process this displaced step state refers to. */
1029 /* A queue of pending displaced stepping requests. One entry per
1030 thread that needs to do a displaced step. */
1031 struct displaced_step_request *step_request_queue;
1033 /* If this is not null_ptid, this is the thread carrying out a
1034 displaced single-step in process PID. This thread's state will
1035 require fixing up once it has completed its step. */
1038 /* The architecture the thread had when we stepped it. */
1039 struct gdbarch *step_gdbarch;
1041 /* The closure provided gdbarch_displaced_step_copy_insn, to be used
1042 for post-step cleanup. */
1043 struct displaced_step_closure *step_closure;
1045 /* The address of the original instruction, and the copy we
1047 CORE_ADDR step_original, step_copy;
1049 /* Saved contents of copy area. */
1050 gdb_byte *step_saved_copy;
1053 /* The list of states of processes involved in displaced stepping
1055 static struct displaced_step_inferior_state *displaced_step_inferior_states;
1057 /* Get the displaced stepping state of process PID. */
1059 static struct displaced_step_inferior_state *
1060 get_displaced_stepping_state (int pid)
1062 struct displaced_step_inferior_state *state;
1064 for (state = displaced_step_inferior_states;
1066 state = state->next)
1067 if (state->pid == pid)
1073 /* Add a new displaced stepping state for process PID to the displaced
1074 stepping state list, or return a pointer to an already existing
1075 entry, if it already exists. Never returns NULL. */
1077 static struct displaced_step_inferior_state *
1078 add_displaced_stepping_state (int pid)
1080 struct displaced_step_inferior_state *state;
1082 for (state = displaced_step_inferior_states;
1084 state = state->next)
1085 if (state->pid == pid)
1088 state = xcalloc (1, sizeof (*state));
1090 state->next = displaced_step_inferior_states;
1091 displaced_step_inferior_states = state;
1096 /* If inferior is in displaced stepping, and ADDR equals to starting address
1097 of copy area, return corresponding displaced_step_closure. Otherwise,
1100 struct displaced_step_closure*
1101 get_displaced_step_closure_by_addr (CORE_ADDR addr)
1103 struct displaced_step_inferior_state *displaced
1104 = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
1106 /* If checking the mode of displaced instruction in copy area. */
1107 if (displaced && !ptid_equal (displaced->step_ptid, null_ptid)
1108 && (displaced->step_copy == addr))
1109 return displaced->step_closure;
1114 /* Remove the displaced stepping state of process PID. */
1117 remove_displaced_stepping_state (int pid)
1119 struct displaced_step_inferior_state *it, **prev_next_p;
1121 gdb_assert (pid != 0);
1123 it = displaced_step_inferior_states;
1124 prev_next_p = &displaced_step_inferior_states;
1129 *prev_next_p = it->next;
1134 prev_next_p = &it->next;
1140 infrun_inferior_exit (struct inferior *inf)
1142 remove_displaced_stepping_state (inf->pid);
1145 /* Enum strings for "set|show displaced-stepping". */
1147 static const char can_use_displaced_stepping_auto[] = "auto";
1148 static const char can_use_displaced_stepping_on[] = "on";
1149 static const char can_use_displaced_stepping_off[] = "off";
1150 static const char *can_use_displaced_stepping_enum[] =
1152 can_use_displaced_stepping_auto,
1153 can_use_displaced_stepping_on,
1154 can_use_displaced_stepping_off,
1158 /* If ON, and the architecture supports it, GDB will use displaced
1159 stepping to step over breakpoints. If OFF, or if the architecture
1160 doesn't support it, GDB will instead use the traditional
1161 hold-and-step approach. If AUTO (which is the default), GDB will
1162 decide which technique to use to step over breakpoints depending on
1163 which of all-stop or non-stop mode is active --- displaced stepping
1164 in non-stop mode; hold-and-step in all-stop mode. */
1166 static const char *can_use_displaced_stepping =
1167 can_use_displaced_stepping_auto;
1170 show_can_use_displaced_stepping (struct ui_file *file, int from_tty,
1171 struct cmd_list_element *c,
1174 if (can_use_displaced_stepping == can_use_displaced_stepping_auto)
1175 fprintf_filtered (file,
1176 _("Debugger's willingness to use displaced stepping "
1177 "to step over breakpoints is %s (currently %s).\n"),
1178 value, non_stop ? "on" : "off");
1180 fprintf_filtered (file,
1181 _("Debugger's willingness to use displaced stepping "
1182 "to step over breakpoints is %s.\n"), value);
1185 /* Return non-zero if displaced stepping can/should be used to step
1186 over breakpoints. */
1189 use_displaced_stepping (struct gdbarch *gdbarch)
1191 return (((can_use_displaced_stepping == can_use_displaced_stepping_auto
1193 || can_use_displaced_stepping == can_use_displaced_stepping_on)
1194 && gdbarch_displaced_step_copy_insn_p (gdbarch)
1195 && !RECORD_IS_USED);
1198 /* Clean out any stray displaced stepping state. */
1200 displaced_step_clear (struct displaced_step_inferior_state *displaced)
1202 /* Indicate that there is no cleanup pending. */
1203 displaced->step_ptid = null_ptid;
1205 if (displaced->step_closure)
1207 gdbarch_displaced_step_free_closure (displaced->step_gdbarch,
1208 displaced->step_closure);
1209 displaced->step_closure = NULL;
1214 displaced_step_clear_cleanup (void *arg)
1216 struct displaced_step_inferior_state *state = arg;
1218 displaced_step_clear (state);
1221 /* Dump LEN bytes at BUF in hex to FILE, followed by a newline. */
1223 displaced_step_dump_bytes (struct ui_file *file,
1224 const gdb_byte *buf,
1229 for (i = 0; i < len; i++)
1230 fprintf_unfiltered (file, "%02x ", buf[i]);
1231 fputs_unfiltered ("\n", file);
1234 /* Prepare to single-step, using displaced stepping.
1236 Note that we cannot use displaced stepping when we have a signal to
1237 deliver. If we have a signal to deliver and an instruction to step
1238 over, then after the step, there will be no indication from the
1239 target whether the thread entered a signal handler or ignored the
1240 signal and stepped over the instruction successfully --- both cases
1241 result in a simple SIGTRAP. In the first case we mustn't do a
1242 fixup, and in the second case we must --- but we can't tell which.
1243 Comments in the code for 'random signals' in handle_inferior_event
1244 explain how we handle this case instead.
1246 Returns 1 if preparing was successful -- this thread is going to be
1247 stepped now; or 0 if displaced stepping this thread got queued. */
1249 displaced_step_prepare (ptid_t ptid)
1251 struct cleanup *old_cleanups, *ignore_cleanups;
1252 struct regcache *regcache = get_thread_regcache (ptid);
1253 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1254 CORE_ADDR original, copy;
1256 struct displaced_step_closure *closure;
1257 struct displaced_step_inferior_state *displaced;
1259 /* We should never reach this function if the architecture does not
1260 support displaced stepping. */
1261 gdb_assert (gdbarch_displaced_step_copy_insn_p (gdbarch));
1263 /* We have to displaced step one thread at a time, as we only have
1264 access to a single scratch space per inferior. */
1266 displaced = add_displaced_stepping_state (ptid_get_pid (ptid));
1268 if (!ptid_equal (displaced->step_ptid, null_ptid))
1270 /* Already waiting for a displaced step to finish. Defer this
1271 request and place in queue. */
1272 struct displaced_step_request *req, *new_req;
1274 if (debug_displaced)
1275 fprintf_unfiltered (gdb_stdlog,
1276 "displaced: defering step of %s\n",
1277 target_pid_to_str (ptid));
1279 new_req = xmalloc (sizeof (*new_req));
1280 new_req->ptid = ptid;
1281 new_req->next = NULL;
1283 if (displaced->step_request_queue)
1285 for (req = displaced->step_request_queue;
1289 req->next = new_req;
1292 displaced->step_request_queue = new_req;
1298 if (debug_displaced)
1299 fprintf_unfiltered (gdb_stdlog,
1300 "displaced: stepping %s now\n",
1301 target_pid_to_str (ptid));
1304 displaced_step_clear (displaced);
1306 old_cleanups = save_inferior_ptid ();
1307 inferior_ptid = ptid;
1309 original = regcache_read_pc (regcache);
1311 copy = gdbarch_displaced_step_location (gdbarch);
1312 len = gdbarch_max_insn_length (gdbarch);
1314 /* Save the original contents of the copy area. */
1315 displaced->step_saved_copy = xmalloc (len);
1316 ignore_cleanups = make_cleanup (free_current_contents,
1317 &displaced->step_saved_copy);
1318 read_memory (copy, displaced->step_saved_copy, len);
1319 if (debug_displaced)
1321 fprintf_unfiltered (gdb_stdlog, "displaced: saved %s: ",
1322 paddress (gdbarch, copy));
1323 displaced_step_dump_bytes (gdb_stdlog,
1324 displaced->step_saved_copy,
1328 closure = gdbarch_displaced_step_copy_insn (gdbarch,
1329 original, copy, regcache);
1331 /* We don't support the fully-simulated case at present. */
1332 gdb_assert (closure);
1334 /* Save the information we need to fix things up if the step
1336 displaced->step_ptid = ptid;
1337 displaced->step_gdbarch = gdbarch;
1338 displaced->step_closure = closure;
1339 displaced->step_original = original;
1340 displaced->step_copy = copy;
1342 make_cleanup (displaced_step_clear_cleanup, displaced);
1344 /* Resume execution at the copy. */
1345 regcache_write_pc (regcache, copy);
1347 discard_cleanups (ignore_cleanups);
1349 do_cleanups (old_cleanups);
1351 if (debug_displaced)
1352 fprintf_unfiltered (gdb_stdlog, "displaced: displaced pc to %s\n",
1353 paddress (gdbarch, copy));
1359 write_memory_ptid (ptid_t ptid, CORE_ADDR memaddr,
1360 const gdb_byte *myaddr, int len)
1362 struct cleanup *ptid_cleanup = save_inferior_ptid ();
1364 inferior_ptid = ptid;
1365 write_memory (memaddr, myaddr, len);
1366 do_cleanups (ptid_cleanup);
1370 displaced_step_fixup (ptid_t event_ptid, enum target_signal signal)
1372 struct cleanup *old_cleanups;
1373 struct displaced_step_inferior_state *displaced
1374 = get_displaced_stepping_state (ptid_get_pid (event_ptid));
1376 /* Was any thread of this process doing a displaced step? */
1377 if (displaced == NULL)
1380 /* Was this event for the pid we displaced? */
1381 if (ptid_equal (displaced->step_ptid, null_ptid)
1382 || ! ptid_equal (displaced->step_ptid, event_ptid))
1385 old_cleanups = make_cleanup (displaced_step_clear_cleanup, displaced);
1387 /* Restore the contents of the copy area. */
1389 ULONGEST len = gdbarch_max_insn_length (displaced->step_gdbarch);
1391 write_memory_ptid (displaced->step_ptid, displaced->step_copy,
1392 displaced->step_saved_copy, len);
1393 if (debug_displaced)
1394 fprintf_unfiltered (gdb_stdlog, "displaced: restored %s\n",
1395 paddress (displaced->step_gdbarch,
1396 displaced->step_copy));
1399 /* Did the instruction complete successfully? */
1400 if (signal == TARGET_SIGNAL_TRAP)
1402 /* Fix up the resulting state. */
1403 gdbarch_displaced_step_fixup (displaced->step_gdbarch,
1404 displaced->step_closure,
1405 displaced->step_original,
1406 displaced->step_copy,
1407 get_thread_regcache (displaced->step_ptid));
1411 /* Since the instruction didn't complete, all we can do is
1413 struct regcache *regcache = get_thread_regcache (event_ptid);
1414 CORE_ADDR pc = regcache_read_pc (regcache);
1416 pc = displaced->step_original + (pc - displaced->step_copy);
1417 regcache_write_pc (regcache, pc);
1420 do_cleanups (old_cleanups);
1422 displaced->step_ptid = null_ptid;
1424 /* Are there any pending displaced stepping requests? If so, run
1425 one now. Leave the state object around, since we're likely to
1426 need it again soon. */
1427 while (displaced->step_request_queue)
1429 struct displaced_step_request *head;
1431 struct regcache *regcache;
1432 struct gdbarch *gdbarch;
1433 CORE_ADDR actual_pc;
1434 struct address_space *aspace;
1436 head = displaced->step_request_queue;
1438 displaced->step_request_queue = head->next;
1441 context_switch (ptid);
1443 regcache = get_thread_regcache (ptid);
1444 actual_pc = regcache_read_pc (regcache);
1445 aspace = get_regcache_aspace (regcache);
1447 if (breakpoint_here_p (aspace, actual_pc))
1449 if (debug_displaced)
1450 fprintf_unfiltered (gdb_stdlog,
1451 "displaced: stepping queued %s now\n",
1452 target_pid_to_str (ptid));
1454 displaced_step_prepare (ptid);
1456 gdbarch = get_regcache_arch (regcache);
1458 if (debug_displaced)
1460 CORE_ADDR actual_pc = regcache_read_pc (regcache);
1463 fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
1464 paddress (gdbarch, actual_pc));
1465 read_memory (actual_pc, buf, sizeof (buf));
1466 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
1469 if (gdbarch_displaced_step_hw_singlestep (gdbarch,
1470 displaced->step_closure))
1471 target_resume (ptid, 1, TARGET_SIGNAL_0);
1473 target_resume (ptid, 0, TARGET_SIGNAL_0);
1475 /* Done, we're stepping a thread. */
1481 struct thread_info *tp = inferior_thread ();
1483 /* The breakpoint we were sitting under has since been
1485 tp->control.trap_expected = 0;
1487 /* Go back to what we were trying to do. */
1488 step = currently_stepping (tp);
1490 if (debug_displaced)
1491 fprintf_unfiltered (gdb_stdlog,
1492 "breakpoint is gone %s: step(%d)\n",
1493 target_pid_to_str (tp->ptid), step);
1495 target_resume (ptid, step, TARGET_SIGNAL_0);
1496 tp->suspend.stop_signal = TARGET_SIGNAL_0;
1498 /* This request was discarded. See if there's any other
1499 thread waiting for its turn. */
1504 /* Update global variables holding ptids to hold NEW_PTID if they were
1505 holding OLD_PTID. */
1507 infrun_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
1509 struct displaced_step_request *it;
1510 struct displaced_step_inferior_state *displaced;
1512 if (ptid_equal (inferior_ptid, old_ptid))
1513 inferior_ptid = new_ptid;
1515 if (ptid_equal (singlestep_ptid, old_ptid))
1516 singlestep_ptid = new_ptid;
1518 if (ptid_equal (deferred_step_ptid, old_ptid))
1519 deferred_step_ptid = new_ptid;
1521 for (displaced = displaced_step_inferior_states;
1523 displaced = displaced->next)
1525 if (ptid_equal (displaced->step_ptid, old_ptid))
1526 displaced->step_ptid = new_ptid;
1528 for (it = displaced->step_request_queue; it; it = it->next)
1529 if (ptid_equal (it->ptid, old_ptid))
1530 it->ptid = new_ptid;
1537 /* Things to clean up if we QUIT out of resume (). */
1539 resume_cleanups (void *ignore)
1544 static const char schedlock_off[] = "off";
1545 static const char schedlock_on[] = "on";
1546 static const char schedlock_step[] = "step";
1547 static const char *scheduler_enums[] = {
1553 static const char *scheduler_mode = schedlock_off;
1555 show_scheduler_mode (struct ui_file *file, int from_tty,
1556 struct cmd_list_element *c, const char *value)
1558 fprintf_filtered (file,
1559 _("Mode for locking scheduler "
1560 "during execution is \"%s\".\n"),
1565 set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
1567 if (!target_can_lock_scheduler)
1569 scheduler_mode = schedlock_off;
1570 error (_("Target '%s' cannot support this command."), target_shortname);
1574 /* True if execution commands resume all threads of all processes by
1575 default; otherwise, resume only threads of the current inferior
1577 int sched_multi = 0;
1579 /* Try to setup for software single stepping over the specified location.
1580 Return 1 if target_resume() should use hardware single step.
1582 GDBARCH the current gdbarch.
1583 PC the location to step over. */
1586 maybe_software_singlestep (struct gdbarch *gdbarch, CORE_ADDR pc)
1590 if (execution_direction == EXEC_FORWARD
1591 && gdbarch_software_single_step_p (gdbarch)
1592 && gdbarch_software_single_step (gdbarch, get_current_frame ()))
1595 /* Do not pull these breakpoints until after a `wait' in
1596 `wait_for_inferior'. */
1597 singlestep_breakpoints_inserted_p = 1;
1598 singlestep_ptid = inferior_ptid;
1604 /* Return a ptid representing the set of threads that we will proceed,
1605 in the perspective of the user/frontend. We may actually resume
1606 fewer threads at first, e.g., if a thread is stopped at a
1607 breakpoint that needs stepping-off, but that should not be visible
1608 to the user/frontend, and neither should the frontend/user be
1609 allowed to proceed any of the threads that happen to be stopped for
1610 internal run control handling, if a previous command wanted them
1614 user_visible_resume_ptid (int step)
1616 /* By default, resume all threads of all processes. */
1617 ptid_t resume_ptid = RESUME_ALL;
1619 /* Maybe resume only all threads of the current process. */
1620 if (!sched_multi && target_supports_multi_process ())
1622 resume_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
1625 /* Maybe resume a single thread after all. */
1628 /* With non-stop mode on, threads are always handled
1630 resume_ptid = inferior_ptid;
1632 else if ((scheduler_mode == schedlock_on)
1633 || (scheduler_mode == schedlock_step
1634 && (step || singlestep_breakpoints_inserted_p)))
1636 /* User-settable 'scheduler' mode requires solo thread resume. */
1637 resume_ptid = inferior_ptid;
1643 /* Resume the inferior, but allow a QUIT. This is useful if the user
1644 wants to interrupt some lengthy single-stepping operation
1645 (for child processes, the SIGINT goes to the inferior, and so
1646 we get a SIGINT random_signal, but for remote debugging and perhaps
1647 other targets, that's not true).
1649 STEP nonzero if we should step (zero to continue instead).
1650 SIG is the signal to give the inferior (zero for none). */
1652 resume (int step, enum target_signal sig)
1654 int should_resume = 1;
1655 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
1656 struct regcache *regcache = get_current_regcache ();
1657 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1658 struct thread_info *tp = inferior_thread ();
1659 CORE_ADDR pc = regcache_read_pc (regcache);
1660 struct address_space *aspace = get_regcache_aspace (regcache);
1664 if (current_inferior ()->waiting_for_vfork_done)
1666 /* Don't try to single-step a vfork parent that is waiting for
1667 the child to get out of the shared memory region (by exec'ing
1668 or exiting). This is particularly important on software
1669 single-step archs, as the child process would trip on the
1670 software single step breakpoint inserted for the parent
1671 process. Since the parent will not actually execute any
1672 instruction until the child is out of the shared region (such
1673 are vfork's semantics), it is safe to simply continue it.
1674 Eventually, we'll see a TARGET_WAITKIND_VFORK_DONE event for
1675 the parent, and tell it to `keep_going', which automatically
1676 re-sets it stepping. */
1678 fprintf_unfiltered (gdb_stdlog,
1679 "infrun: resume : clear step\n");
1684 fprintf_unfiltered (gdb_stdlog,
1685 "infrun: resume (step=%d, signal=%d), "
1686 "trap_expected=%d, current thread [%s] at %s\n",
1687 step, sig, tp->control.trap_expected,
1688 target_pid_to_str (inferior_ptid),
1689 paddress (gdbarch, pc));
1691 /* Normally, by the time we reach `resume', the breakpoints are either
1692 removed or inserted, as appropriate. The exception is if we're sitting
1693 at a permanent breakpoint; we need to step over it, but permanent
1694 breakpoints can't be removed. So we have to test for it here. */
1695 if (breakpoint_here_p (aspace, pc) == permanent_breakpoint_here)
1697 if (gdbarch_skip_permanent_breakpoint_p (gdbarch))
1698 gdbarch_skip_permanent_breakpoint (gdbarch, regcache);
1701 The program is stopped at a permanent breakpoint, but GDB does not know\n\
1702 how to step past a permanent breakpoint on this architecture. Try using\n\
1703 a command like `return' or `jump' to continue execution."));
1706 /* If enabled, step over breakpoints by executing a copy of the
1707 instruction at a different address.
1709 We can't use displaced stepping when we have a signal to deliver;
1710 the comments for displaced_step_prepare explain why. The
1711 comments in the handle_inferior event for dealing with 'random
1712 signals' explain what we do instead.
1714 We can't use displaced stepping when we are waiting for vfork_done
1715 event, displaced stepping breaks the vfork child similarly as single
1716 step software breakpoint. */
1717 if (use_displaced_stepping (gdbarch)
1718 && (tp->control.trap_expected
1719 || (step && gdbarch_software_single_step_p (gdbarch)))
1720 && sig == TARGET_SIGNAL_0
1721 && !current_inferior ()->waiting_for_vfork_done)
1723 struct displaced_step_inferior_state *displaced;
1725 if (!displaced_step_prepare (inferior_ptid))
1727 /* Got placed in displaced stepping queue. Will be resumed
1728 later when all the currently queued displaced stepping
1729 requests finish. The thread is not executing at this point,
1730 and the call to set_executing will be made later. But we
1731 need to call set_running here, since from frontend point of view,
1732 the thread is running. */
1733 set_running (inferior_ptid, 1);
1734 discard_cleanups (old_cleanups);
1738 displaced = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
1739 step = gdbarch_displaced_step_hw_singlestep (gdbarch,
1740 displaced->step_closure);
1743 /* Do we need to do it the hard way, w/temp breakpoints? */
1745 step = maybe_software_singlestep (gdbarch, pc);
1747 /* Currently, our software single-step implementation leads to different
1748 results than hardware single-stepping in one situation: when stepping
1749 into delivering a signal which has an associated signal handler,
1750 hardware single-step will stop at the first instruction of the handler,
1751 while software single-step will simply skip execution of the handler.
1753 For now, this difference in behavior is accepted since there is no
1754 easy way to actually implement single-stepping into a signal handler
1755 without kernel support.
1757 However, there is one scenario where this difference leads to follow-on
1758 problems: if we're stepping off a breakpoint by removing all breakpoints
1759 and then single-stepping. In this case, the software single-step
1760 behavior means that even if there is a *breakpoint* in the signal
1761 handler, GDB still would not stop.
1763 Fortunately, we can at least fix this particular issue. We detect
1764 here the case where we are about to deliver a signal while software
1765 single-stepping with breakpoints removed. In this situation, we
1766 revert the decisions to remove all breakpoints and insert single-
1767 step breakpoints, and instead we install a step-resume breakpoint
1768 at the current address, deliver the signal without stepping, and
1769 once we arrive back at the step-resume breakpoint, actually step
1770 over the breakpoint we originally wanted to step over. */
1771 if (singlestep_breakpoints_inserted_p
1772 && tp->control.trap_expected && sig != TARGET_SIGNAL_0)
1774 /* If we have nested signals or a pending signal is delivered
1775 immediately after a handler returns, might might already have
1776 a step-resume breakpoint set on the earlier handler. We cannot
1777 set another step-resume breakpoint; just continue on until the
1778 original breakpoint is hit. */
1779 if (tp->control.step_resume_breakpoint == NULL)
1781 insert_step_resume_breakpoint_at_frame (get_current_frame ());
1782 tp->step_after_step_resume_breakpoint = 1;
1785 remove_single_step_breakpoints ();
1786 singlestep_breakpoints_inserted_p = 0;
1788 insert_breakpoints ();
1789 tp->control.trap_expected = 0;
1796 /* If STEP is set, it's a request to use hardware stepping
1797 facilities. But in that case, we should never
1798 use singlestep breakpoint. */
1799 gdb_assert (!(singlestep_breakpoints_inserted_p && step));
1801 /* Decide the set of threads to ask the target to resume. Start
1802 by assuming everything will be resumed, than narrow the set
1803 by applying increasingly restricting conditions. */
1804 resume_ptid = user_visible_resume_ptid (step);
1806 /* Maybe resume a single thread after all. */
1807 if (singlestep_breakpoints_inserted_p
1808 && stepping_past_singlestep_breakpoint)
1810 /* The situation here is as follows. In thread T1 we wanted to
1811 single-step. Lacking hardware single-stepping we've
1812 set breakpoint at the PC of the next instruction -- call it
1813 P. After resuming, we've hit that breakpoint in thread T2.
1814 Now we've removed original breakpoint, inserted breakpoint
1815 at P+1, and try to step to advance T2 past breakpoint.
1816 We need to step only T2, as if T1 is allowed to freely run,
1817 it can run past P, and if other threads are allowed to run,
1818 they can hit breakpoint at P+1, and nested hits of single-step
1819 breakpoints is not something we'd want -- that's complicated
1820 to support, and has no value. */
1821 resume_ptid = inferior_ptid;
1823 else if ((step || singlestep_breakpoints_inserted_p)
1824 && tp->control.trap_expected)
1826 /* We're allowing a thread to run past a breakpoint it has
1827 hit, by single-stepping the thread with the breakpoint
1828 removed. In which case, we need to single-step only this
1829 thread, and keep others stopped, as they can miss this
1830 breakpoint if allowed to run.
1832 The current code actually removes all breakpoints when
1833 doing this, not just the one being stepped over, so if we
1834 let other threads run, we can actually miss any
1835 breakpoint, not just the one at PC. */
1836 resume_ptid = inferior_ptid;
1839 if (gdbarch_cannot_step_breakpoint (gdbarch))
1841 /* Most targets can step a breakpoint instruction, thus
1842 executing it normally. But if this one cannot, just
1843 continue and we will hit it anyway. */
1844 if (step && breakpoint_inserted_here_p (aspace, pc))
1849 && use_displaced_stepping (gdbarch)
1850 && tp->control.trap_expected)
1852 struct regcache *resume_regcache = get_thread_regcache (resume_ptid);
1853 struct gdbarch *resume_gdbarch = get_regcache_arch (resume_regcache);
1854 CORE_ADDR actual_pc = regcache_read_pc (resume_regcache);
1857 fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
1858 paddress (resume_gdbarch, actual_pc));
1859 read_memory (actual_pc, buf, sizeof (buf));
1860 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
1863 /* Install inferior's terminal modes. */
1864 target_terminal_inferior ();
1866 /* Avoid confusing the next resume, if the next stop/resume
1867 happens to apply to another thread. */
1868 tp->suspend.stop_signal = TARGET_SIGNAL_0;
1870 /* Advise target which signals may be handled silently. If we have
1871 removed breakpoints because we are stepping over one (which can
1872 happen only if we are not using displaced stepping), we need to
1873 receive all signals to avoid accidentally skipping a breakpoint
1874 during execution of a signal handler. */
1875 if ((step || singlestep_breakpoints_inserted_p)
1876 && tp->control.trap_expected
1877 && !use_displaced_stepping (gdbarch))
1878 target_pass_signals (0, NULL);
1880 target_pass_signals ((int) TARGET_SIGNAL_LAST, signal_pass);
1882 target_resume (resume_ptid, step, sig);
1885 discard_cleanups (old_cleanups);
1890 /* Clear out all variables saying what to do when inferior is continued.
1891 First do this, then set the ones you want, then call `proceed'. */
1894 clear_proceed_status_thread (struct thread_info *tp)
1897 fprintf_unfiltered (gdb_stdlog,
1898 "infrun: clear_proceed_status_thread (%s)\n",
1899 target_pid_to_str (tp->ptid));
1901 tp->control.trap_expected = 0;
1902 tp->control.step_range_start = 0;
1903 tp->control.step_range_end = 0;
1904 tp->control.step_frame_id = null_frame_id;
1905 tp->control.step_stack_frame_id = null_frame_id;
1906 tp->control.step_over_calls = STEP_OVER_UNDEBUGGABLE;
1907 tp->stop_requested = 0;
1909 tp->control.stop_step = 0;
1911 tp->control.proceed_to_finish = 0;
1913 /* Discard any remaining commands or status from previous stop. */
1914 bpstat_clear (&tp->control.stop_bpstat);
1918 clear_proceed_status_callback (struct thread_info *tp, void *data)
1920 if (is_exited (tp->ptid))
1923 clear_proceed_status_thread (tp);
1928 clear_proceed_status (void)
1932 /* In all-stop mode, delete the per-thread status of all
1933 threads, even if inferior_ptid is null_ptid, there may be
1934 threads on the list. E.g., we may be launching a new
1935 process, while selecting the executable. */
1936 iterate_over_threads (clear_proceed_status_callback, NULL);
1939 if (!ptid_equal (inferior_ptid, null_ptid))
1941 struct inferior *inferior;
1945 /* If in non-stop mode, only delete the per-thread status of
1946 the current thread. */
1947 clear_proceed_status_thread (inferior_thread ());
1950 inferior = current_inferior ();
1951 inferior->control.stop_soon = NO_STOP_QUIETLY;
1954 stop_after_trap = 0;
1956 observer_notify_about_to_proceed ();
1960 regcache_xfree (stop_registers);
1961 stop_registers = NULL;
1965 /* Check the current thread against the thread that reported the most recent
1966 event. If a step-over is required return TRUE and set the current thread
1967 to the old thread. Otherwise return FALSE.
1969 This should be suitable for any targets that support threads. */
1972 prepare_to_proceed (int step)
1975 struct target_waitstatus wait_status;
1976 int schedlock_enabled;
1978 /* With non-stop mode on, threads are always handled individually. */
1979 gdb_assert (! non_stop);
1981 /* Get the last target status returned by target_wait(). */
1982 get_last_target_status (&wait_ptid, &wait_status);
1984 /* Make sure we were stopped at a breakpoint. */
1985 if (wait_status.kind != TARGET_WAITKIND_STOPPED
1986 || (wait_status.value.sig != TARGET_SIGNAL_TRAP
1987 && wait_status.value.sig != TARGET_SIGNAL_ILL
1988 && wait_status.value.sig != TARGET_SIGNAL_SEGV
1989 && wait_status.value.sig != TARGET_SIGNAL_EMT))
1994 schedlock_enabled = (scheduler_mode == schedlock_on
1995 || (scheduler_mode == schedlock_step
1998 /* Don't switch over to WAIT_PTID if scheduler locking is on. */
1999 if (schedlock_enabled)
2002 /* Don't switch over if we're about to resume some other process
2003 other than WAIT_PTID's, and schedule-multiple is off. */
2005 && ptid_get_pid (wait_ptid) != ptid_get_pid (inferior_ptid))
2008 /* Switched over from WAIT_PID. */
2009 if (!ptid_equal (wait_ptid, minus_one_ptid)
2010 && !ptid_equal (inferior_ptid, wait_ptid))
2012 struct regcache *regcache = get_thread_regcache (wait_ptid);
2014 if (breakpoint_here_p (get_regcache_aspace (regcache),
2015 regcache_read_pc (regcache)))
2017 /* If stepping, remember current thread to switch back to. */
2019 deferred_step_ptid = inferior_ptid;
2021 /* Switch back to WAIT_PID thread. */
2022 switch_to_thread (wait_ptid);
2025 fprintf_unfiltered (gdb_stdlog,
2026 "infrun: prepare_to_proceed (step=%d), "
2027 "switched to [%s]\n",
2028 step, target_pid_to_str (inferior_ptid));
2030 /* We return 1 to indicate that there is a breakpoint here,
2031 so we need to step over it before continuing to avoid
2032 hitting it straight away. */
2040 /* Basic routine for continuing the program in various fashions.
2042 ADDR is the address to resume at, or -1 for resume where stopped.
2043 SIGGNAL is the signal to give it, or 0 for none,
2044 or -1 for act according to how it stopped.
2045 STEP is nonzero if should trap after one instruction.
2046 -1 means return after that and print nothing.
2047 You should probably set various step_... variables
2048 before calling here, if you are stepping.
2050 You should call clear_proceed_status before calling proceed. */
2053 proceed (CORE_ADDR addr, enum target_signal siggnal, int step)
2055 struct regcache *regcache;
2056 struct gdbarch *gdbarch;
2057 struct thread_info *tp;
2059 struct address_space *aspace;
2062 /* If we're stopped at a fork/vfork, follow the branch set by the
2063 "set follow-fork-mode" command; otherwise, we'll just proceed
2064 resuming the current thread. */
2065 if (!follow_fork ())
2067 /* The target for some reason decided not to resume. */
2069 if (target_can_async_p ())
2070 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
2074 /* We'll update this if & when we switch to a new thread. */
2075 previous_inferior_ptid = inferior_ptid;
2077 regcache = get_current_regcache ();
2078 gdbarch = get_regcache_arch (regcache);
2079 aspace = get_regcache_aspace (regcache);
2080 pc = regcache_read_pc (regcache);
2083 step_start_function = find_pc_function (pc);
2085 stop_after_trap = 1;
2087 if (addr == (CORE_ADDR) -1)
2089 if (pc == stop_pc && breakpoint_here_p (aspace, pc)
2090 && execution_direction != EXEC_REVERSE)
2091 /* There is a breakpoint at the address we will resume at,
2092 step one instruction before inserting breakpoints so that
2093 we do not stop right away (and report a second hit at this
2096 Note, we don't do this in reverse, because we won't
2097 actually be executing the breakpoint insn anyway.
2098 We'll be (un-)executing the previous instruction. */
2101 else if (gdbarch_single_step_through_delay_p (gdbarch)
2102 && gdbarch_single_step_through_delay (gdbarch,
2103 get_current_frame ()))
2104 /* We stepped onto an instruction that needs to be stepped
2105 again before re-inserting the breakpoint, do so. */
2110 regcache_write_pc (regcache, addr);
2114 fprintf_unfiltered (gdb_stdlog,
2115 "infrun: proceed (addr=%s, signal=%d, step=%d)\n",
2116 paddress (gdbarch, addr), siggnal, step);
2119 /* In non-stop, each thread is handled individually. The context
2120 must already be set to the right thread here. */
2124 /* In a multi-threaded task we may select another thread and
2125 then continue or step.
2127 But if the old thread was stopped at a breakpoint, it will
2128 immediately cause another breakpoint stop without any
2129 execution (i.e. it will report a breakpoint hit incorrectly).
2130 So we must step over it first.
2132 prepare_to_proceed checks the current thread against the
2133 thread that reported the most recent event. If a step-over
2134 is required it returns TRUE and sets the current thread to
2136 if (prepare_to_proceed (step))
2140 /* prepare_to_proceed may change the current thread. */
2141 tp = inferior_thread ();
2145 tp->control.trap_expected = 1;
2146 /* If displaced stepping is enabled, we can step over the
2147 breakpoint without hitting it, so leave all breakpoints
2148 inserted. Otherwise we need to disable all breakpoints, step
2149 one instruction, and then re-add them when that step is
2151 if (!use_displaced_stepping (gdbarch))
2152 remove_breakpoints ();
2155 /* We can insert breakpoints if we're not trying to step over one,
2156 or if we are stepping over one but we're using displaced stepping
2158 if (! tp->control.trap_expected || use_displaced_stepping (gdbarch))
2159 insert_breakpoints ();
2163 /* Pass the last stop signal to the thread we're resuming,
2164 irrespective of whether the current thread is the thread that
2165 got the last event or not. This was historically GDB's
2166 behaviour before keeping a stop_signal per thread. */
2168 struct thread_info *last_thread;
2170 struct target_waitstatus last_status;
2172 get_last_target_status (&last_ptid, &last_status);
2173 if (!ptid_equal (inferior_ptid, last_ptid)
2174 && !ptid_equal (last_ptid, null_ptid)
2175 && !ptid_equal (last_ptid, minus_one_ptid))
2177 last_thread = find_thread_ptid (last_ptid);
2180 tp->suspend.stop_signal = last_thread->suspend.stop_signal;
2181 last_thread->suspend.stop_signal = TARGET_SIGNAL_0;
2186 if (siggnal != TARGET_SIGNAL_DEFAULT)
2187 tp->suspend.stop_signal = siggnal;
2188 /* If this signal should not be seen by program,
2189 give it zero. Used for debugging signals. */
2190 else if (!signal_program[tp->suspend.stop_signal])
2191 tp->suspend.stop_signal = TARGET_SIGNAL_0;
2193 annotate_starting ();
2195 /* Make sure that output from GDB appears before output from the
2197 gdb_flush (gdb_stdout);
2199 /* Refresh prev_pc value just prior to resuming. This used to be
2200 done in stop_stepping, however, setting prev_pc there did not handle
2201 scenarios such as inferior function calls or returning from
2202 a function via the return command. In those cases, the prev_pc
2203 value was not set properly for subsequent commands. The prev_pc value
2204 is used to initialize the starting line number in the ecs. With an
2205 invalid value, the gdb next command ends up stopping at the position
2206 represented by the next line table entry past our start position.
2207 On platforms that generate one line table entry per line, this
2208 is not a problem. However, on the ia64, the compiler generates
2209 extraneous line table entries that do not increase the line number.
2210 When we issue the gdb next command on the ia64 after an inferior call
2211 or a return command, we often end up a few instructions forward, still
2212 within the original line we started.
2214 An attempt was made to refresh the prev_pc at the same time the
2215 execution_control_state is initialized (for instance, just before
2216 waiting for an inferior event). But this approach did not work
2217 because of platforms that use ptrace, where the pc register cannot
2218 be read unless the inferior is stopped. At that point, we are not
2219 guaranteed the inferior is stopped and so the regcache_read_pc() call
2220 can fail. Setting the prev_pc value here ensures the value is updated
2221 correctly when the inferior is stopped. */
2222 tp->prev_pc = regcache_read_pc (get_current_regcache ());
2224 /* Fill in with reasonable starting values. */
2225 init_thread_stepping_state (tp);
2227 /* Reset to normal state. */
2228 init_infwait_state ();
2230 /* Resume inferior. */
2231 resume (oneproc || step || bpstat_should_step (), tp->suspend.stop_signal);
2233 /* Wait for it to stop (if not standalone)
2234 and in any case decode why it stopped, and act accordingly. */
2235 /* Do this only if we are not using the event loop, or if the target
2236 does not support asynchronous execution. */
2237 if (!target_can_async_p ())
2239 wait_for_inferior ();
2245 /* Start remote-debugging of a machine over a serial link. */
2248 start_remote (int from_tty)
2250 struct inferior *inferior;
2252 init_wait_for_inferior ();
2253 inferior = current_inferior ();
2254 inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
2256 /* Always go on waiting for the target, regardless of the mode. */
2257 /* FIXME: cagney/1999-09-23: At present it isn't possible to
2258 indicate to wait_for_inferior that a target should timeout if
2259 nothing is returned (instead of just blocking). Because of this,
2260 targets expecting an immediate response need to, internally, set
2261 things up so that the target_wait() is forced to eventually
2263 /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
2264 differentiate to its caller what the state of the target is after
2265 the initial open has been performed. Here we're assuming that
2266 the target has stopped. It should be possible to eventually have
2267 target_open() return to the caller an indication that the target
2268 is currently running and GDB state should be set to the same as
2269 for an async run. */
2270 wait_for_inferior ();
2272 /* Now that the inferior has stopped, do any bookkeeping like
2273 loading shared libraries. We want to do this before normal_stop,
2274 so that the displayed frame is up to date. */
2275 post_create_inferior (¤t_target, from_tty);
2280 /* Initialize static vars when a new inferior begins. */
2283 init_wait_for_inferior (void)
2285 /* These are meaningless until the first time through wait_for_inferior. */
2287 breakpoint_init_inferior (inf_starting);
2289 clear_proceed_status ();
2291 stepping_past_singlestep_breakpoint = 0;
2292 deferred_step_ptid = null_ptid;
2294 target_last_wait_ptid = minus_one_ptid;
2296 previous_inferior_ptid = inferior_ptid;
2297 init_infwait_state ();
2299 /* Discard any skipped inlined frames. */
2300 clear_inline_frame_state (minus_one_ptid);
2304 /* This enum encodes possible reasons for doing a target_wait, so that
2305 wfi can call target_wait in one place. (Ultimately the call will be
2306 moved out of the infinite loop entirely.) */
2310 infwait_normal_state,
2311 infwait_thread_hop_state,
2312 infwait_step_watch_state,
2313 infwait_nonstep_watch_state
2316 /* The PTID we'll do a target_wait on.*/
2319 /* Current inferior wait state. */
2320 enum infwait_states infwait_state;
2322 /* Data to be passed around while handling an event. This data is
2323 discarded between events. */
2324 struct execution_control_state
2327 /* The thread that got the event, if this was a thread event; NULL
2329 struct thread_info *event_thread;
2331 struct target_waitstatus ws;
2333 CORE_ADDR stop_func_start;
2334 CORE_ADDR stop_func_end;
2335 char *stop_func_name;
2336 int new_thread_event;
2340 static void handle_inferior_event (struct execution_control_state *ecs);
2342 static void handle_step_into_function (struct gdbarch *gdbarch,
2343 struct execution_control_state *ecs);
2344 static void handle_step_into_function_backward (struct gdbarch *gdbarch,
2345 struct execution_control_state *ecs);
2346 static void check_exception_resume (struct execution_control_state *,
2347 struct frame_info *, struct symbol *);
2349 static void stop_stepping (struct execution_control_state *ecs);
2350 static void prepare_to_wait (struct execution_control_state *ecs);
2351 static void keep_going (struct execution_control_state *ecs);
2353 /* Callback for iterate over threads. If the thread is stopped, but
2354 the user/frontend doesn't know about that yet, go through
2355 normal_stop, as if the thread had just stopped now. ARG points at
2356 a ptid. If PTID is MINUS_ONE_PTID, applies to all threads. If
2357 ptid_is_pid(PTID) is true, applies to all threads of the process
2358 pointed at by PTID. Otherwise, apply only to the thread pointed by
2362 infrun_thread_stop_requested_callback (struct thread_info *info, void *arg)
2364 ptid_t ptid = * (ptid_t *) arg;
2366 if ((ptid_equal (info->ptid, ptid)
2367 || ptid_equal (minus_one_ptid, ptid)
2368 || (ptid_is_pid (ptid)
2369 && ptid_get_pid (ptid) == ptid_get_pid (info->ptid)))
2370 && is_running (info->ptid)
2371 && !is_executing (info->ptid))
2373 struct cleanup *old_chain;
2374 struct execution_control_state ecss;
2375 struct execution_control_state *ecs = &ecss;
2377 memset (ecs, 0, sizeof (*ecs));
2379 old_chain = make_cleanup_restore_current_thread ();
2381 switch_to_thread (info->ptid);
2383 /* Go through handle_inferior_event/normal_stop, so we always
2384 have consistent output as if the stop event had been
2386 ecs->ptid = info->ptid;
2387 ecs->event_thread = find_thread_ptid (info->ptid);
2388 ecs->ws.kind = TARGET_WAITKIND_STOPPED;
2389 ecs->ws.value.sig = TARGET_SIGNAL_0;
2391 handle_inferior_event (ecs);
2393 if (!ecs->wait_some_more)
2395 struct thread_info *tp;
2399 /* Finish off the continuations. The continations
2400 themselves are responsible for realising the thread
2401 didn't finish what it was supposed to do. */
2402 tp = inferior_thread ();
2403 do_all_intermediate_continuations_thread (tp);
2404 do_all_continuations_thread (tp);
2407 do_cleanups (old_chain);
2413 /* This function is attached as a "thread_stop_requested" observer.
2414 Cleanup local state that assumed the PTID was to be resumed, and
2415 report the stop to the frontend. */
2418 infrun_thread_stop_requested (ptid_t ptid)
2420 struct displaced_step_inferior_state *displaced;
2422 /* PTID was requested to stop. Remove it from the displaced
2423 stepping queue, so we don't try to resume it automatically. */
2425 for (displaced = displaced_step_inferior_states;
2427 displaced = displaced->next)
2429 struct displaced_step_request *it, **prev_next_p;
2431 it = displaced->step_request_queue;
2432 prev_next_p = &displaced->step_request_queue;
2435 if (ptid_match (it->ptid, ptid))
2437 *prev_next_p = it->next;
2443 prev_next_p = &it->next;
2450 iterate_over_threads (infrun_thread_stop_requested_callback, &ptid);
2454 infrun_thread_thread_exit (struct thread_info *tp, int silent)
2456 if (ptid_equal (target_last_wait_ptid, tp->ptid))
2457 nullify_last_target_wait_ptid ();
2460 /* Callback for iterate_over_threads. */
2463 delete_step_resume_breakpoint_callback (struct thread_info *info, void *data)
2465 if (is_exited (info->ptid))
2468 delete_step_resume_breakpoint (info);
2469 delete_exception_resume_breakpoint (info);
2473 /* In all-stop, delete the step resume breakpoint of any thread that
2474 had one. In non-stop, delete the step resume breakpoint of the
2475 thread that just stopped. */
2478 delete_step_thread_step_resume_breakpoint (void)
2480 if (!target_has_execution
2481 || ptid_equal (inferior_ptid, null_ptid))
2482 /* If the inferior has exited, we have already deleted the step
2483 resume breakpoints out of GDB's lists. */
2488 /* If in non-stop mode, only delete the step-resume or
2489 longjmp-resume breakpoint of the thread that just stopped
2491 struct thread_info *tp = inferior_thread ();
2493 delete_step_resume_breakpoint (tp);
2494 delete_exception_resume_breakpoint (tp);
2497 /* In all-stop mode, delete all step-resume and longjmp-resume
2498 breakpoints of any thread that had them. */
2499 iterate_over_threads (delete_step_resume_breakpoint_callback, NULL);
2502 /* A cleanup wrapper. */
2505 delete_step_thread_step_resume_breakpoint_cleanup (void *arg)
2507 delete_step_thread_step_resume_breakpoint ();
2510 /* Pretty print the results of target_wait, for debugging purposes. */
2513 print_target_wait_results (ptid_t waiton_ptid, ptid_t result_ptid,
2514 const struct target_waitstatus *ws)
2516 char *status_string = target_waitstatus_to_string (ws);
2517 struct ui_file *tmp_stream = mem_fileopen ();
2520 /* The text is split over several lines because it was getting too long.
2521 Call fprintf_unfiltered (gdb_stdlog) once so that the text is still
2522 output as a unit; we want only one timestamp printed if debug_timestamp
2525 fprintf_unfiltered (tmp_stream,
2526 "infrun: target_wait (%d", PIDGET (waiton_ptid));
2527 if (PIDGET (waiton_ptid) != -1)
2528 fprintf_unfiltered (tmp_stream,
2529 " [%s]", target_pid_to_str (waiton_ptid));
2530 fprintf_unfiltered (tmp_stream, ", status) =\n");
2531 fprintf_unfiltered (tmp_stream,
2532 "infrun: %d [%s],\n",
2533 PIDGET (result_ptid), target_pid_to_str (result_ptid));
2534 fprintf_unfiltered (tmp_stream,
2538 text = ui_file_xstrdup (tmp_stream, NULL);
2540 /* This uses %s in part to handle %'s in the text, but also to avoid
2541 a gcc error: the format attribute requires a string literal. */
2542 fprintf_unfiltered (gdb_stdlog, "%s", text);
2544 xfree (status_string);
2546 ui_file_delete (tmp_stream);
2549 /* Prepare and stabilize the inferior for detaching it. E.g.,
2550 detaching while a thread is displaced stepping is a recipe for
2551 crashing it, as nothing would readjust the PC out of the scratch
2555 prepare_for_detach (void)
2557 struct inferior *inf = current_inferior ();
2558 ptid_t pid_ptid = pid_to_ptid (inf->pid);
2559 struct cleanup *old_chain_1;
2560 struct displaced_step_inferior_state *displaced;
2562 displaced = get_displaced_stepping_state (inf->pid);
2564 /* Is any thread of this process displaced stepping? If not,
2565 there's nothing else to do. */
2566 if (displaced == NULL || ptid_equal (displaced->step_ptid, null_ptid))
2570 fprintf_unfiltered (gdb_stdlog,
2571 "displaced-stepping in-process while detaching");
2573 old_chain_1 = make_cleanup_restore_integer (&inf->detaching);
2576 while (!ptid_equal (displaced->step_ptid, null_ptid))
2578 struct cleanup *old_chain_2;
2579 struct execution_control_state ecss;
2580 struct execution_control_state *ecs;
2583 memset (ecs, 0, sizeof (*ecs));
2585 overlay_cache_invalid = 1;
2587 /* We have to invalidate the registers BEFORE calling
2588 target_wait because they can be loaded from the target while
2589 in target_wait. This makes remote debugging a bit more
2590 efficient for those targets that provide critical registers
2591 as part of their normal status mechanism. */
2593 registers_changed ();
2595 if (deprecated_target_wait_hook)
2596 ecs->ptid = deprecated_target_wait_hook (pid_ptid, &ecs->ws, 0);
2598 ecs->ptid = target_wait (pid_ptid, &ecs->ws, 0);
2601 print_target_wait_results (pid_ptid, ecs->ptid, &ecs->ws);
2603 /* If an error happens while handling the event, propagate GDB's
2604 knowledge of the executing state to the frontend/user running
2606 old_chain_2 = make_cleanup (finish_thread_state_cleanup,
2609 /* In non-stop mode, each thread is handled individually.
2610 Switch early, so the global state is set correctly for this
2613 && ecs->ws.kind != TARGET_WAITKIND_EXITED
2614 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED)
2615 context_switch (ecs->ptid);
2617 /* Now figure out what to do with the result of the result. */
2618 handle_inferior_event (ecs);
2620 /* No error, don't finish the state yet. */
2621 discard_cleanups (old_chain_2);
2623 /* Breakpoints and watchpoints are not installed on the target
2624 at this point, and signals are passed directly to the
2625 inferior, so this must mean the process is gone. */
2626 if (!ecs->wait_some_more)
2628 discard_cleanups (old_chain_1);
2629 error (_("Program exited while detaching"));
2633 discard_cleanups (old_chain_1);
2636 /* Wait for control to return from inferior to debugger.
2638 If inferior gets a signal, we may decide to start it up again
2639 instead of returning. That is why there is a loop in this function.
2640 When this function actually returns it means the inferior
2641 should be left stopped and GDB should read more commands. */
2644 wait_for_inferior (void)
2646 struct cleanup *old_cleanups;
2647 struct execution_control_state ecss;
2648 struct execution_control_state *ecs;
2652 (gdb_stdlog, "infrun: wait_for_inferior ()\n");
2655 make_cleanup (delete_step_thread_step_resume_breakpoint_cleanup, NULL);
2658 memset (ecs, 0, sizeof (*ecs));
2662 struct cleanup *old_chain;
2664 /* We have to invalidate the registers BEFORE calling target_wait
2665 because they can be loaded from the target while in target_wait.
2666 This makes remote debugging a bit more efficient for those
2667 targets that provide critical registers as part of their normal
2668 status mechanism. */
2670 overlay_cache_invalid = 1;
2671 registers_changed ();
2673 if (deprecated_target_wait_hook)
2674 ecs->ptid = deprecated_target_wait_hook (waiton_ptid, &ecs->ws, 0);
2676 ecs->ptid = target_wait (waiton_ptid, &ecs->ws, 0);
2679 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
2681 /* If an error happens while handling the event, propagate GDB's
2682 knowledge of the executing state to the frontend/user running
2684 old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
2686 if (ecs->ws.kind == TARGET_WAITKIND_SYSCALL_ENTRY
2687 || ecs->ws.kind == TARGET_WAITKIND_SYSCALL_RETURN)
2688 ecs->ws.value.syscall_number = UNKNOWN_SYSCALL;
2690 /* Now figure out what to do with the result of the result. */
2691 handle_inferior_event (ecs);
2693 /* No error, don't finish the state yet. */
2694 discard_cleanups (old_chain);
2696 if (!ecs->wait_some_more)
2700 do_cleanups (old_cleanups);
2703 /* Asynchronous version of wait_for_inferior. It is called by the
2704 event loop whenever a change of state is detected on the file
2705 descriptor corresponding to the target. It can be called more than
2706 once to complete a single execution command. In such cases we need
2707 to keep the state in a global variable ECSS. If it is the last time
2708 that this function is called for a single execution command, then
2709 report to the user that the inferior has stopped, and do the
2710 necessary cleanups. */
2713 fetch_inferior_event (void *client_data)
2715 struct execution_control_state ecss;
2716 struct execution_control_state *ecs = &ecss;
2717 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
2718 struct cleanup *ts_old_chain;
2719 int was_sync = sync_execution;
2721 memset (ecs, 0, sizeof (*ecs));
2723 /* We're handling a live event, so make sure we're doing live
2724 debugging. If we're looking at traceframes while the target is
2725 running, we're going to need to get back to that mode after
2726 handling the event. */
2729 make_cleanup_restore_current_traceframe ();
2730 set_current_traceframe (-1);
2734 /* In non-stop mode, the user/frontend should not notice a thread
2735 switch due to internal events. Make sure we reverse to the
2736 user selected thread and frame after handling the event and
2737 running any breakpoint commands. */
2738 make_cleanup_restore_current_thread ();
2740 /* We have to invalidate the registers BEFORE calling target_wait
2741 because they can be loaded from the target while in target_wait.
2742 This makes remote debugging a bit more efficient for those
2743 targets that provide critical registers as part of their normal
2744 status mechanism. */
2746 overlay_cache_invalid = 1;
2747 registers_changed ();
2749 if (deprecated_target_wait_hook)
2751 deprecated_target_wait_hook (waiton_ptid, &ecs->ws, TARGET_WNOHANG);
2753 ecs->ptid = target_wait (waiton_ptid, &ecs->ws, TARGET_WNOHANG);
2756 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
2759 && ecs->ws.kind != TARGET_WAITKIND_IGNORE
2760 && ecs->ws.kind != TARGET_WAITKIND_EXITED
2761 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED)
2762 /* In non-stop mode, each thread is handled individually. Switch
2763 early, so the global state is set correctly for this
2765 context_switch (ecs->ptid);
2767 /* If an error happens while handling the event, propagate GDB's
2768 knowledge of the executing state to the frontend/user running
2771 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
2773 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &ecs->ptid);
2775 /* Now figure out what to do with the result of the result. */
2776 handle_inferior_event (ecs);
2778 if (!ecs->wait_some_more)
2780 struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
2782 delete_step_thread_step_resume_breakpoint ();
2784 /* We may not find an inferior if this was a process exit. */
2785 if (inf == NULL || inf->control.stop_soon == NO_STOP_QUIETLY)
2788 if (target_has_execution
2789 && ecs->ws.kind != TARGET_WAITKIND_EXITED
2790 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
2791 && ecs->event_thread->step_multi
2792 && ecs->event_thread->control.stop_step)
2793 inferior_event_handler (INF_EXEC_CONTINUE, NULL);
2795 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
2798 /* No error, don't finish the thread states yet. */
2799 discard_cleanups (ts_old_chain);
2801 /* Revert thread and frame. */
2802 do_cleanups (old_chain);
2804 /* If the inferior was in sync execution mode, and now isn't,
2805 restore the prompt. */
2806 if (was_sync && !sync_execution)
2807 display_gdb_prompt (0);
2810 /* Record the frame and location we're currently stepping through. */
2812 set_step_info (struct frame_info *frame, struct symtab_and_line sal)
2814 struct thread_info *tp = inferior_thread ();
2816 tp->control.step_frame_id = get_frame_id (frame);
2817 tp->control.step_stack_frame_id = get_stack_frame_id (frame);
2819 tp->current_symtab = sal.symtab;
2820 tp->current_line = sal.line;
2823 /* Clear context switchable stepping state. */
2826 init_thread_stepping_state (struct thread_info *tss)
2828 tss->stepping_over_breakpoint = 0;
2829 tss->step_after_step_resume_breakpoint = 0;
2830 tss->stepping_through_solib_after_catch = 0;
2831 tss->stepping_through_solib_catchpoints = NULL;
2834 /* Return the cached copy of the last pid/waitstatus returned by
2835 target_wait()/deprecated_target_wait_hook(). The data is actually
2836 cached by handle_inferior_event(), which gets called immediately
2837 after target_wait()/deprecated_target_wait_hook(). */
2840 get_last_target_status (ptid_t *ptidp, struct target_waitstatus *status)
2842 *ptidp = target_last_wait_ptid;
2843 *status = target_last_waitstatus;
2847 nullify_last_target_wait_ptid (void)
2849 target_last_wait_ptid = minus_one_ptid;
2852 /* Switch thread contexts. */
2855 context_switch (ptid_t ptid)
2859 fprintf_unfiltered (gdb_stdlog, "infrun: Switching context from %s ",
2860 target_pid_to_str (inferior_ptid));
2861 fprintf_unfiltered (gdb_stdlog, "to %s\n",
2862 target_pid_to_str (ptid));
2865 switch_to_thread (ptid);
2869 adjust_pc_after_break (struct execution_control_state *ecs)
2871 struct regcache *regcache;
2872 struct gdbarch *gdbarch;
2873 struct address_space *aspace;
2874 CORE_ADDR breakpoint_pc;
2876 /* If we've hit a breakpoint, we'll normally be stopped with SIGTRAP. If
2877 we aren't, just return.
2879 We assume that waitkinds other than TARGET_WAITKIND_STOPPED are not
2880 affected by gdbarch_decr_pc_after_break. Other waitkinds which are
2881 implemented by software breakpoints should be handled through the normal
2884 NOTE drow/2004-01-31: On some targets, breakpoints may generate
2885 different signals (SIGILL or SIGEMT for instance), but it is less
2886 clear where the PC is pointing afterwards. It may not match
2887 gdbarch_decr_pc_after_break. I don't know any specific target that
2888 generates these signals at breakpoints (the code has been in GDB since at
2889 least 1992) so I can not guess how to handle them here.
2891 In earlier versions of GDB, a target with
2892 gdbarch_have_nonsteppable_watchpoint would have the PC after hitting a
2893 watchpoint affected by gdbarch_decr_pc_after_break. I haven't found any
2894 target with both of these set in GDB history, and it seems unlikely to be
2895 correct, so gdbarch_have_nonsteppable_watchpoint is not checked here. */
2897 if (ecs->ws.kind != TARGET_WAITKIND_STOPPED)
2900 if (ecs->ws.value.sig != TARGET_SIGNAL_TRAP)
2903 /* In reverse execution, when a breakpoint is hit, the instruction
2904 under it has already been de-executed. The reported PC always
2905 points at the breakpoint address, so adjusting it further would
2906 be wrong. E.g., consider this case on a decr_pc_after_break == 1
2909 B1 0x08000000 : INSN1
2910 B2 0x08000001 : INSN2
2912 PC -> 0x08000003 : INSN4
2914 Say you're stopped at 0x08000003 as above. Reverse continuing
2915 from that point should hit B2 as below. Reading the PC when the
2916 SIGTRAP is reported should read 0x08000001 and INSN2 should have
2917 been de-executed already.
2919 B1 0x08000000 : INSN1
2920 B2 PC -> 0x08000001 : INSN2
2924 We can't apply the same logic as for forward execution, because
2925 we would wrongly adjust the PC to 0x08000000, since there's a
2926 breakpoint at PC - 1. We'd then report a hit on B1, although
2927 INSN1 hadn't been de-executed yet. Doing nothing is the correct
2929 if (execution_direction == EXEC_REVERSE)
2932 /* If this target does not decrement the PC after breakpoints, then
2933 we have nothing to do. */
2934 regcache = get_thread_regcache (ecs->ptid);
2935 gdbarch = get_regcache_arch (regcache);
2936 if (gdbarch_decr_pc_after_break (gdbarch) == 0)
2939 aspace = get_regcache_aspace (regcache);
2941 /* Find the location where (if we've hit a breakpoint) the
2942 breakpoint would be. */
2943 breakpoint_pc = regcache_read_pc (regcache)
2944 - gdbarch_decr_pc_after_break (gdbarch);
2946 /* Check whether there actually is a software breakpoint inserted at
2949 If in non-stop mode, a race condition is possible where we've
2950 removed a breakpoint, but stop events for that breakpoint were
2951 already queued and arrive later. To suppress those spurious
2952 SIGTRAPs, we keep a list of such breakpoint locations for a bit,
2953 and retire them after a number of stop events are reported. */
2954 if (software_breakpoint_inserted_here_p (aspace, breakpoint_pc)
2955 || (non_stop && moribund_breakpoint_here_p (aspace, breakpoint_pc)))
2957 struct cleanup *old_cleanups = NULL;
2960 old_cleanups = record_gdb_operation_disable_set ();
2962 /* When using hardware single-step, a SIGTRAP is reported for both
2963 a completed single-step and a software breakpoint. Need to
2964 differentiate between the two, as the latter needs adjusting
2965 but the former does not.
2967 The SIGTRAP can be due to a completed hardware single-step only if
2968 - we didn't insert software single-step breakpoints
2969 - the thread to be examined is still the current thread
2970 - this thread is currently being stepped
2972 If any of these events did not occur, we must have stopped due
2973 to hitting a software breakpoint, and have to back up to the
2976 As a special case, we could have hardware single-stepped a
2977 software breakpoint. In this case (prev_pc == breakpoint_pc),
2978 we also need to back up to the breakpoint address. */
2980 if (singlestep_breakpoints_inserted_p
2981 || !ptid_equal (ecs->ptid, inferior_ptid)
2982 || !currently_stepping (ecs->event_thread)
2983 || ecs->event_thread->prev_pc == breakpoint_pc)
2984 regcache_write_pc (regcache, breakpoint_pc);
2987 do_cleanups (old_cleanups);
2992 init_infwait_state (void)
2994 waiton_ptid = pid_to_ptid (-1);
2995 infwait_state = infwait_normal_state;
2999 error_is_running (void)
3001 error (_("Cannot execute this command while "
3002 "the selected thread is running."));
3006 ensure_not_running (void)
3008 if (is_running (inferior_ptid))
3009 error_is_running ();
3013 stepped_in_from (struct frame_info *frame, struct frame_id step_frame_id)
3015 for (frame = get_prev_frame (frame);
3017 frame = get_prev_frame (frame))
3019 if (frame_id_eq (get_frame_id (frame), step_frame_id))
3021 if (get_frame_type (frame) != INLINE_FRAME)
3028 /* Auxiliary function that handles syscall entry/return events.
3029 It returns 1 if the inferior should keep going (and GDB
3030 should ignore the event), or 0 if the event deserves to be
3034 handle_syscall_event (struct execution_control_state *ecs)
3036 struct regcache *regcache;
3037 struct gdbarch *gdbarch;
3040 if (!ptid_equal (ecs->ptid, inferior_ptid))
3041 context_switch (ecs->ptid);
3043 regcache = get_thread_regcache (ecs->ptid);
3044 gdbarch = get_regcache_arch (regcache);
3045 syscall_number = gdbarch_get_syscall_number (gdbarch, ecs->ptid);
3046 stop_pc = regcache_read_pc (regcache);
3048 target_last_waitstatus.value.syscall_number = syscall_number;
3050 if (catch_syscall_enabled () > 0
3051 && catching_syscall_number (syscall_number) > 0)
3054 fprintf_unfiltered (gdb_stdlog, "infrun: syscall number = '%d'\n",
3057 ecs->event_thread->control.stop_bpstat
3058 = bpstat_stop_status (get_regcache_aspace (regcache),
3059 stop_pc, ecs->ptid);
3061 = !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat);
3063 if (!ecs->random_signal)
3065 /* Catchpoint hit. */
3066 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_TRAP;
3071 /* If no catchpoint triggered for this, then keep going. */
3072 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
3077 /* Given an execution control state that has been freshly filled in
3078 by an event from the inferior, figure out what it means and take
3079 appropriate action. */
3082 handle_inferior_event (struct execution_control_state *ecs)
3084 struct frame_info *frame;
3085 struct gdbarch *gdbarch;
3086 int sw_single_step_trap_p = 0;
3087 int stopped_by_watchpoint;
3088 int stepped_after_stopped_by_watchpoint = 0;
3089 struct symtab_and_line stop_pc_sal;
3090 enum stop_kind stop_soon;
3092 if (ecs->ws.kind == TARGET_WAITKIND_IGNORE)
3094 /* We had an event in the inferior, but we are not interested in
3095 handling it at this level. The lower layers have already
3096 done what needs to be done, if anything.
3098 One of the possible circumstances for this is when the
3099 inferior produces output for the console. The inferior has
3100 not stopped, and we are ignoring the event. Another possible
3101 circumstance is any event which the lower level knows will be
3102 reported multiple times without an intervening resume. */
3104 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_IGNORE\n");
3105 prepare_to_wait (ecs);
3109 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
3110 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED)
3112 struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
3115 stop_soon = inf->control.stop_soon;
3118 stop_soon = NO_STOP_QUIETLY;
3120 /* Cache the last pid/waitstatus. */
3121 target_last_wait_ptid = ecs->ptid;
3122 target_last_waitstatus = ecs->ws;
3124 /* Always clear state belonging to the previous time we stopped. */
3125 stop_stack_dummy = STOP_NONE;
3127 /* If it's a new process, add it to the thread database. */
3129 ecs->new_thread_event = (!ptid_equal (ecs->ptid, inferior_ptid)
3130 && !ptid_equal (ecs->ptid, minus_one_ptid)
3131 && !in_thread_list (ecs->ptid));
3133 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
3134 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED && ecs->new_thread_event)
3135 add_thread (ecs->ptid);
3137 ecs->event_thread = find_thread_ptid (ecs->ptid);
3139 /* Dependent on valid ECS->EVENT_THREAD. */
3140 adjust_pc_after_break (ecs);
3142 /* Dependent on the current PC value modified by adjust_pc_after_break. */
3143 reinit_frame_cache ();
3145 breakpoint_retire_moribund ();
3147 /* First, distinguish signals caused by the debugger from signals
3148 that have to do with the program's own actions. Note that
3149 breakpoint insns may cause SIGTRAP or SIGILL or SIGEMT, depending
3150 on the operating system version. Here we detect when a SIGILL or
3151 SIGEMT is really a breakpoint and change it to SIGTRAP. We do
3152 something similar for SIGSEGV, since a SIGSEGV will be generated
3153 when we're trying to execute a breakpoint instruction on a
3154 non-executable stack. This happens for call dummy breakpoints
3155 for architectures like SPARC that place call dummies on the
3157 if (ecs->ws.kind == TARGET_WAITKIND_STOPPED
3158 && (ecs->ws.value.sig == TARGET_SIGNAL_ILL
3159 || ecs->ws.value.sig == TARGET_SIGNAL_SEGV
3160 || ecs->ws.value.sig == TARGET_SIGNAL_EMT))
3162 struct regcache *regcache = get_thread_regcache (ecs->ptid);
3164 if (breakpoint_inserted_here_p (get_regcache_aspace (regcache),
3165 regcache_read_pc (regcache)))
3168 fprintf_unfiltered (gdb_stdlog,
3169 "infrun: Treating signal as SIGTRAP\n");
3170 ecs->ws.value.sig = TARGET_SIGNAL_TRAP;
3174 /* Mark the non-executing threads accordingly. In all-stop, all
3175 threads of all processes are stopped when we get any event
3176 reported. In non-stop mode, only the event thread stops. If
3177 we're handling a process exit in non-stop mode, there's nothing
3178 to do, as threads of the dead process are gone, and threads of
3179 any other process were left running. */
3181 set_executing (minus_one_ptid, 0);
3182 else if (ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
3183 && ecs->ws.kind != TARGET_WAITKIND_EXITED)
3184 set_executing (inferior_ptid, 0);
3186 switch (infwait_state)
3188 case infwait_thread_hop_state:
3190 fprintf_unfiltered (gdb_stdlog, "infrun: infwait_thread_hop_state\n");
3193 case infwait_normal_state:
3195 fprintf_unfiltered (gdb_stdlog, "infrun: infwait_normal_state\n");
3198 case infwait_step_watch_state:
3200 fprintf_unfiltered (gdb_stdlog,
3201 "infrun: infwait_step_watch_state\n");
3203 stepped_after_stopped_by_watchpoint = 1;
3206 case infwait_nonstep_watch_state:
3208 fprintf_unfiltered (gdb_stdlog,
3209 "infrun: infwait_nonstep_watch_state\n");
3210 insert_breakpoints ();
3212 /* FIXME-maybe: is this cleaner than setting a flag? Does it
3213 handle things like signals arriving and other things happening
3214 in combination correctly? */
3215 stepped_after_stopped_by_watchpoint = 1;
3219 internal_error (__FILE__, __LINE__, _("bad switch"));
3222 infwait_state = infwait_normal_state;
3223 waiton_ptid = pid_to_ptid (-1);
3225 switch (ecs->ws.kind)
3227 case TARGET_WAITKIND_LOADED:
3229 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_LOADED\n");
3230 /* Ignore gracefully during startup of the inferior, as it might
3231 be the shell which has just loaded some objects, otherwise
3232 add the symbols for the newly loaded objects. Also ignore at
3233 the beginning of an attach or remote session; we will query
3234 the full list of libraries once the connection is
3236 if (stop_soon == NO_STOP_QUIETLY)
3238 /* Check for any newly added shared libraries if we're
3239 supposed to be adding them automatically. Switch
3240 terminal for any messages produced by
3241 breakpoint_re_set. */
3242 target_terminal_ours_for_output ();
3243 /* NOTE: cagney/2003-11-25: Make certain that the target
3244 stack's section table is kept up-to-date. Architectures,
3245 (e.g., PPC64), use the section table to perform
3246 operations such as address => section name and hence
3247 require the table to contain all sections (including
3248 those found in shared libraries). */
3250 SOLIB_ADD (NULL, 0, ¤t_target, auto_solib_add);
3252 solib_add (NULL, 0, ¤t_target, auto_solib_add);
3254 target_terminal_inferior ();
3256 /* If requested, stop when the dynamic linker notifies
3257 gdb of events. This allows the user to get control
3258 and place breakpoints in initializer routines for
3259 dynamically loaded objects (among other things). */
3260 if (stop_on_solib_events)
3262 /* Make sure we print "Stopped due to solib-event" in
3264 stop_print_frame = 1;
3266 stop_stepping (ecs);
3270 /* NOTE drow/2007-05-11: This might be a good place to check
3271 for "catch load". */
3274 /* If we are skipping through a shell, or through shared library
3275 loading that we aren't interested in, resume the program. If
3276 we're running the program normally, also resume. But stop if
3277 we're attaching or setting up a remote connection. */
3278 if (stop_soon == STOP_QUIETLY || stop_soon == NO_STOP_QUIETLY)
3280 /* Loading of shared libraries might have changed breakpoint
3281 addresses. Make sure new breakpoints are inserted. */
3282 if (stop_soon == NO_STOP_QUIETLY
3283 && !breakpoints_always_inserted_mode ())
3284 insert_breakpoints ();
3285 resume (0, TARGET_SIGNAL_0);
3286 prepare_to_wait (ecs);
3292 case TARGET_WAITKIND_SPURIOUS:
3294 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SPURIOUS\n");
3295 resume (0, TARGET_SIGNAL_0);
3296 prepare_to_wait (ecs);
3299 case TARGET_WAITKIND_EXITED:
3301 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXITED\n");
3302 inferior_ptid = ecs->ptid;
3303 set_current_inferior (find_inferior_pid (ptid_get_pid (ecs->ptid)));
3304 set_current_program_space (current_inferior ()->pspace);
3305 handle_vfork_child_exec_or_exit (0);
3306 target_terminal_ours (); /* Must do this before mourn anyway. */
3307 print_exited_reason (ecs->ws.value.integer);
3309 /* Record the exit code in the convenience variable $_exitcode, so
3310 that the user can inspect this again later. */
3311 set_internalvar_integer (lookup_internalvar ("_exitcode"),
3312 (LONGEST) ecs->ws.value.integer);
3313 gdb_flush (gdb_stdout);
3314 target_mourn_inferior ();
3315 singlestep_breakpoints_inserted_p = 0;
3316 cancel_single_step_breakpoints ();
3317 stop_print_frame = 0;
3318 stop_stepping (ecs);
3321 case TARGET_WAITKIND_SIGNALLED:
3323 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SIGNALLED\n");
3324 inferior_ptid = ecs->ptid;
3325 set_current_inferior (find_inferior_pid (ptid_get_pid (ecs->ptid)));
3326 set_current_program_space (current_inferior ()->pspace);
3327 handle_vfork_child_exec_or_exit (0);
3328 stop_print_frame = 0;
3329 target_terminal_ours (); /* Must do this before mourn anyway. */
3331 /* Note: By definition of TARGET_WAITKIND_SIGNALLED, we shouldn't
3332 reach here unless the inferior is dead. However, for years
3333 target_kill() was called here, which hints that fatal signals aren't
3334 really fatal on some systems. If that's true, then some changes
3336 target_mourn_inferior ();
3338 print_signal_exited_reason (ecs->ws.value.sig);
3339 singlestep_breakpoints_inserted_p = 0;
3340 cancel_single_step_breakpoints ();
3341 stop_stepping (ecs);
3344 /* The following are the only cases in which we keep going;
3345 the above cases end in a continue or goto. */
3346 case TARGET_WAITKIND_FORKED:
3347 case TARGET_WAITKIND_VFORKED:
3349 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_FORKED\n");
3351 if (!ptid_equal (ecs->ptid, inferior_ptid))
3353 context_switch (ecs->ptid);
3354 reinit_frame_cache ();
3357 /* Immediately detach breakpoints from the child before there's
3358 any chance of letting the user delete breakpoints from the
3359 breakpoint lists. If we don't do this early, it's easy to
3360 leave left over traps in the child, vis: "break foo; catch
3361 fork; c; <fork>; del; c; <child calls foo>". We only follow
3362 the fork on the last `continue', and by that time the
3363 breakpoint at "foo" is long gone from the breakpoint table.
3364 If we vforked, then we don't need to unpatch here, since both
3365 parent and child are sharing the same memory pages; we'll
3366 need to unpatch at follow/detach time instead to be certain
3367 that new breakpoints added between catchpoint hit time and
3368 vfork follow are detached. */
3369 if (ecs->ws.kind != TARGET_WAITKIND_VFORKED)
3371 int child_pid = ptid_get_pid (ecs->ws.value.related_pid);
3373 /* This won't actually modify the breakpoint list, but will
3374 physically remove the breakpoints from the child. */
3375 detach_breakpoints (child_pid);
3378 if (singlestep_breakpoints_inserted_p)
3380 /* Pull the single step breakpoints out of the target. */
3381 remove_single_step_breakpoints ();
3382 singlestep_breakpoints_inserted_p = 0;
3385 /* In case the event is caught by a catchpoint, remember that
3386 the event is to be followed at the next resume of the thread,
3387 and not immediately. */
3388 ecs->event_thread->pending_follow = ecs->ws;
3390 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3392 ecs->event_thread->control.stop_bpstat
3393 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
3394 stop_pc, ecs->ptid);
3396 /* Note that we're interested in knowing the bpstat actually
3397 causes a stop, not just if it may explain the signal.
3398 Software watchpoints, for example, always appear in the
3401 = !bpstat_causes_stop (ecs->event_thread->control.stop_bpstat);
3403 /* If no catchpoint triggered for this, then keep going. */
3404 if (ecs->random_signal)
3410 = (follow_fork_mode_string == follow_fork_mode_child);
3412 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
3414 should_resume = follow_fork ();
3417 child = ecs->ws.value.related_pid;
3419 /* In non-stop mode, also resume the other branch. */
3420 if (non_stop && !detach_fork)
3423 switch_to_thread (parent);
3425 switch_to_thread (child);
3427 ecs->event_thread = inferior_thread ();
3428 ecs->ptid = inferior_ptid;
3433 switch_to_thread (child);
3435 switch_to_thread (parent);
3437 ecs->event_thread = inferior_thread ();
3438 ecs->ptid = inferior_ptid;
3443 stop_stepping (ecs);
3446 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_TRAP;
3447 goto process_event_stop_test;
3449 case TARGET_WAITKIND_VFORK_DONE:
3450 /* Done with the shared memory region. Re-insert breakpoints in
3451 the parent, and keep going. */
3454 fprintf_unfiltered (gdb_stdlog,
3455 "infrun: TARGET_WAITKIND_VFORK_DONE\n");
3457 if (!ptid_equal (ecs->ptid, inferior_ptid))
3458 context_switch (ecs->ptid);
3460 current_inferior ()->waiting_for_vfork_done = 0;
3461 current_inferior ()->pspace->breakpoints_not_allowed = 0;
3462 /* This also takes care of reinserting breakpoints in the
3463 previously locked inferior. */
3467 case TARGET_WAITKIND_EXECD:
3469 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXECD\n");
3471 if (!ptid_equal (ecs->ptid, inferior_ptid))
3473 context_switch (ecs->ptid);
3474 reinit_frame_cache ();
3477 singlestep_breakpoints_inserted_p = 0;
3478 cancel_single_step_breakpoints ();
3480 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3482 /* Do whatever is necessary to the parent branch of the vfork. */
3483 handle_vfork_child_exec_or_exit (1);
3485 /* This causes the eventpoints and symbol table to be reset.
3486 Must do this now, before trying to determine whether to
3488 follow_exec (inferior_ptid, ecs->ws.value.execd_pathname);
3490 ecs->event_thread->control.stop_bpstat
3491 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
3492 stop_pc, ecs->ptid);
3494 = !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat);
3496 /* Note that this may be referenced from inside
3497 bpstat_stop_status above, through inferior_has_execd. */
3498 xfree (ecs->ws.value.execd_pathname);
3499 ecs->ws.value.execd_pathname = NULL;
3501 /* If no catchpoint triggered for this, then keep going. */
3502 if (ecs->random_signal)
3504 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
3508 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_TRAP;
3509 goto process_event_stop_test;
3511 /* Be careful not to try to gather much state about a thread
3512 that's in a syscall. It's frequently a losing proposition. */
3513 case TARGET_WAITKIND_SYSCALL_ENTRY:
3515 fprintf_unfiltered (gdb_stdlog,
3516 "infrun: TARGET_WAITKIND_SYSCALL_ENTRY\n");
3517 /* Getting the current syscall number. */
3518 if (handle_syscall_event (ecs) != 0)
3520 goto process_event_stop_test;
3522 /* Before examining the threads further, step this thread to
3523 get it entirely out of the syscall. (We get notice of the
3524 event when the thread is just on the verge of exiting a
3525 syscall. Stepping one instruction seems to get it back
3527 case TARGET_WAITKIND_SYSCALL_RETURN:
3529 fprintf_unfiltered (gdb_stdlog,
3530 "infrun: TARGET_WAITKIND_SYSCALL_RETURN\n");
3531 if (handle_syscall_event (ecs) != 0)
3533 goto process_event_stop_test;
3535 case TARGET_WAITKIND_STOPPED:
3537 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_STOPPED\n");
3538 ecs->event_thread->suspend.stop_signal = ecs->ws.value.sig;
3541 case TARGET_WAITKIND_NO_HISTORY:
3542 /* Reverse execution: target ran out of history info. */
3543 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3544 print_no_history_reason ();
3545 stop_stepping (ecs);
3549 if (ecs->new_thread_event)
3552 /* Non-stop assumes that the target handles adding new threads
3553 to the thread list. */
3554 internal_error (__FILE__, __LINE__,
3555 "targets should add new threads to the thread "
3556 "list themselves in non-stop mode.");
3558 /* We may want to consider not doing a resume here in order to
3559 give the user a chance to play with the new thread. It might
3560 be good to make that a user-settable option. */
3562 /* At this point, all threads are stopped (happens automatically
3563 in either the OS or the native code). Therefore we need to
3564 continue all threads in order to make progress. */
3566 if (!ptid_equal (ecs->ptid, inferior_ptid))
3567 context_switch (ecs->ptid);
3568 target_resume (RESUME_ALL, 0, TARGET_SIGNAL_0);
3569 prepare_to_wait (ecs);
3573 if (ecs->ws.kind == TARGET_WAITKIND_STOPPED)
3575 /* Do we need to clean up the state of a thread that has
3576 completed a displaced single-step? (Doing so usually affects
3577 the PC, so do it here, before we set stop_pc.) */
3578 displaced_step_fixup (ecs->ptid,
3579 ecs->event_thread->suspend.stop_signal);
3581 /* If we either finished a single-step or hit a breakpoint, but
3582 the user wanted this thread to be stopped, pretend we got a
3583 SIG0 (generic unsignaled stop). */
3585 if (ecs->event_thread->stop_requested
3586 && ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP)
3587 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
3590 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3594 struct regcache *regcache = get_thread_regcache (ecs->ptid);
3595 struct gdbarch *gdbarch = get_regcache_arch (regcache);
3596 struct cleanup *old_chain = save_inferior_ptid ();
3598 inferior_ptid = ecs->ptid;
3600 fprintf_unfiltered (gdb_stdlog, "infrun: stop_pc = %s\n",
3601 paddress (gdbarch, stop_pc));
3602 if (target_stopped_by_watchpoint ())
3606 fprintf_unfiltered (gdb_stdlog, "infrun: stopped by watchpoint\n");
3608 if (target_stopped_data_address (¤t_target, &addr))
3609 fprintf_unfiltered (gdb_stdlog,
3610 "infrun: stopped data address = %s\n",
3611 paddress (gdbarch, addr));
3613 fprintf_unfiltered (gdb_stdlog,
3614 "infrun: (no data address available)\n");
3617 do_cleanups (old_chain);
3620 if (stepping_past_singlestep_breakpoint)
3622 gdb_assert (singlestep_breakpoints_inserted_p);
3623 gdb_assert (ptid_equal (singlestep_ptid, ecs->ptid));
3624 gdb_assert (!ptid_equal (singlestep_ptid, saved_singlestep_ptid));
3626 stepping_past_singlestep_breakpoint = 0;
3628 /* We've either finished single-stepping past the single-step
3629 breakpoint, or stopped for some other reason. It would be nice if
3630 we could tell, but we can't reliably. */
3631 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP)
3634 fprintf_unfiltered (gdb_stdlog,
3635 "infrun: stepping_past_"
3636 "singlestep_breakpoint\n");
3637 /* Pull the single step breakpoints out of the target. */
3638 remove_single_step_breakpoints ();
3639 singlestep_breakpoints_inserted_p = 0;
3641 ecs->random_signal = 0;
3642 ecs->event_thread->control.trap_expected = 0;
3644 context_switch (saved_singlestep_ptid);
3645 if (deprecated_context_hook)
3646 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
3648 resume (1, TARGET_SIGNAL_0);
3649 prepare_to_wait (ecs);
3654 if (!ptid_equal (deferred_step_ptid, null_ptid))
3656 /* In non-stop mode, there's never a deferred_step_ptid set. */
3657 gdb_assert (!non_stop);
3659 /* If we stopped for some other reason than single-stepping, ignore
3660 the fact that we were supposed to switch back. */
3661 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP)
3664 fprintf_unfiltered (gdb_stdlog,
3665 "infrun: handling deferred step\n");
3667 /* Pull the single step breakpoints out of the target. */
3668 if (singlestep_breakpoints_inserted_p)
3670 remove_single_step_breakpoints ();
3671 singlestep_breakpoints_inserted_p = 0;
3674 ecs->event_thread->control.trap_expected = 0;
3676 /* Note: We do not call context_switch at this point, as the
3677 context is already set up for stepping the original thread. */
3678 switch_to_thread (deferred_step_ptid);
3679 deferred_step_ptid = null_ptid;
3680 /* Suppress spurious "Switching to ..." message. */
3681 previous_inferior_ptid = inferior_ptid;
3683 resume (1, TARGET_SIGNAL_0);
3684 prepare_to_wait (ecs);
3688 deferred_step_ptid = null_ptid;
3691 /* See if a thread hit a thread-specific breakpoint that was meant for
3692 another thread. If so, then step that thread past the breakpoint,
3695 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP)
3697 int thread_hop_needed = 0;
3698 struct address_space *aspace =
3699 get_regcache_aspace (get_thread_regcache (ecs->ptid));
3701 /* Check if a regular breakpoint has been hit before checking
3702 for a potential single step breakpoint. Otherwise, GDB will
3703 not see this breakpoint hit when stepping onto breakpoints. */
3704 if (regular_breakpoint_inserted_here_p (aspace, stop_pc))
3706 ecs->random_signal = 0;
3707 if (!breakpoint_thread_match (aspace, stop_pc, ecs->ptid))
3708 thread_hop_needed = 1;
3710 else if (singlestep_breakpoints_inserted_p)
3712 /* We have not context switched yet, so this should be true
3713 no matter which thread hit the singlestep breakpoint. */
3714 gdb_assert (ptid_equal (inferior_ptid, singlestep_ptid));
3716 fprintf_unfiltered (gdb_stdlog, "infrun: software single step "
3718 target_pid_to_str (ecs->ptid));
3720 ecs->random_signal = 0;
3721 /* The call to in_thread_list is necessary because PTIDs sometimes
3722 change when we go from single-threaded to multi-threaded. If
3723 the singlestep_ptid is still in the list, assume that it is
3724 really different from ecs->ptid. */
3725 if (!ptid_equal (singlestep_ptid, ecs->ptid)
3726 && in_thread_list (singlestep_ptid))
3728 /* If the PC of the thread we were trying to single-step
3729 has changed, discard this event (which we were going
3730 to ignore anyway), and pretend we saw that thread
3731 trap. This prevents us continuously moving the
3732 single-step breakpoint forward, one instruction at a
3733 time. If the PC has changed, then the thread we were
3734 trying to single-step has trapped or been signalled,
3735 but the event has not been reported to GDB yet.
3737 There might be some cases where this loses signal
3738 information, if a signal has arrived at exactly the
3739 same time that the PC changed, but this is the best
3740 we can do with the information available. Perhaps we
3741 should arrange to report all events for all threads
3742 when they stop, or to re-poll the remote looking for
3743 this particular thread (i.e. temporarily enable
3746 CORE_ADDR new_singlestep_pc
3747 = regcache_read_pc (get_thread_regcache (singlestep_ptid));
3749 if (new_singlestep_pc != singlestep_pc)
3751 enum target_signal stop_signal;
3754 fprintf_unfiltered (gdb_stdlog, "infrun: unexpected thread,"
3755 " but expected thread advanced also\n");
3757 /* The current context still belongs to
3758 singlestep_ptid. Don't swap here, since that's
3759 the context we want to use. Just fudge our
3760 state and continue. */
3761 stop_signal = ecs->event_thread->suspend.stop_signal;
3762 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
3763 ecs->ptid = singlestep_ptid;
3764 ecs->event_thread = find_thread_ptid (ecs->ptid);
3765 ecs->event_thread->suspend.stop_signal = stop_signal;
3766 stop_pc = new_singlestep_pc;
3771 fprintf_unfiltered (gdb_stdlog,
3772 "infrun: unexpected thread\n");
3774 thread_hop_needed = 1;
3775 stepping_past_singlestep_breakpoint = 1;
3776 saved_singlestep_ptid = singlestep_ptid;
3781 if (thread_hop_needed)
3783 struct regcache *thread_regcache;
3784 int remove_status = 0;
3787 fprintf_unfiltered (gdb_stdlog, "infrun: thread_hop_needed\n");
3789 /* Switch context before touching inferior memory, the
3790 previous thread may have exited. */
3791 if (!ptid_equal (inferior_ptid, ecs->ptid))
3792 context_switch (ecs->ptid);
3794 /* Saw a breakpoint, but it was hit by the wrong thread.
3797 if (singlestep_breakpoints_inserted_p)
3799 /* Pull the single step breakpoints out of the target. */
3800 remove_single_step_breakpoints ();
3801 singlestep_breakpoints_inserted_p = 0;
3804 /* If the arch can displace step, don't remove the
3806 thread_regcache = get_thread_regcache (ecs->ptid);
3807 if (!use_displaced_stepping (get_regcache_arch (thread_regcache)))
3808 remove_status = remove_breakpoints ();
3810 /* Did we fail to remove breakpoints? If so, try
3811 to set the PC past the bp. (There's at least
3812 one situation in which we can fail to remove
3813 the bp's: On HP-UX's that use ttrace, we can't
3814 change the address space of a vforking child
3815 process until the child exits (well, okay, not
3816 then either :-) or execs. */
3817 if (remove_status != 0)
3818 error (_("Cannot step over breakpoint hit in wrong thread"));
3823 /* Only need to require the next event from this
3824 thread in all-stop mode. */
3825 waiton_ptid = ecs->ptid;
3826 infwait_state = infwait_thread_hop_state;
3829 ecs->event_thread->stepping_over_breakpoint = 1;
3834 else if (singlestep_breakpoints_inserted_p)
3836 sw_single_step_trap_p = 1;
3837 ecs->random_signal = 0;
3841 ecs->random_signal = 1;
3843 /* See if something interesting happened to the non-current thread. If
3844 so, then switch to that thread. */
3845 if (!ptid_equal (ecs->ptid, inferior_ptid))
3848 fprintf_unfiltered (gdb_stdlog, "infrun: context switch\n");
3850 context_switch (ecs->ptid);
3852 if (deprecated_context_hook)
3853 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
3856 /* At this point, get hold of the now-current thread's frame. */
3857 frame = get_current_frame ();
3858 gdbarch = get_frame_arch (frame);
3860 if (singlestep_breakpoints_inserted_p)
3862 /* Pull the single step breakpoints out of the target. */
3863 remove_single_step_breakpoints ();
3864 singlestep_breakpoints_inserted_p = 0;
3867 if (stepped_after_stopped_by_watchpoint)
3868 stopped_by_watchpoint = 0;
3870 stopped_by_watchpoint = watchpoints_triggered (&ecs->ws);
3872 /* If necessary, step over this watchpoint. We'll be back to display
3874 if (stopped_by_watchpoint
3875 && (target_have_steppable_watchpoint
3876 || gdbarch_have_nonsteppable_watchpoint (gdbarch)))
3878 /* At this point, we are stopped at an instruction which has
3879 attempted to write to a piece of memory under control of
3880 a watchpoint. The instruction hasn't actually executed
3881 yet. If we were to evaluate the watchpoint expression
3882 now, we would get the old value, and therefore no change
3883 would seem to have occurred.
3885 In order to make watchpoints work `right', we really need
3886 to complete the memory write, and then evaluate the
3887 watchpoint expression. We do this by single-stepping the
3890 It may not be necessary to disable the watchpoint to stop over
3891 it. For example, the PA can (with some kernel cooperation)
3892 single step over a watchpoint without disabling the watchpoint.
3894 It is far more common to need to disable a watchpoint to step
3895 the inferior over it. If we have non-steppable watchpoints,
3896 we must disable the current watchpoint; it's simplest to
3897 disable all watchpoints and breakpoints. */
3900 if (!target_have_steppable_watchpoint)
3902 remove_breakpoints ();
3903 /* See comment in resume why we need to stop bypassing signals
3904 while breakpoints have been removed. */
3905 target_pass_signals (0, NULL);
3908 hw_step = maybe_software_singlestep (gdbarch, stop_pc);
3909 target_resume (ecs->ptid, hw_step, TARGET_SIGNAL_0);
3910 waiton_ptid = ecs->ptid;
3911 if (target_have_steppable_watchpoint)
3912 infwait_state = infwait_step_watch_state;
3914 infwait_state = infwait_nonstep_watch_state;
3915 prepare_to_wait (ecs);
3919 ecs->stop_func_start = 0;
3920 ecs->stop_func_end = 0;
3921 ecs->stop_func_name = 0;
3922 /* Don't care about return value; stop_func_start and stop_func_name
3923 will both be 0 if it doesn't work. */
3924 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
3925 &ecs->stop_func_start, &ecs->stop_func_end);
3926 ecs->stop_func_start
3927 += gdbarch_deprecated_function_start_offset (gdbarch);
3928 ecs->event_thread->stepping_over_breakpoint = 0;
3929 bpstat_clear (&ecs->event_thread->control.stop_bpstat);
3930 ecs->event_thread->control.stop_step = 0;
3931 stop_print_frame = 1;
3932 ecs->random_signal = 0;
3933 stopped_by_random_signal = 0;
3935 /* Hide inlined functions starting here, unless we just performed stepi or
3936 nexti. After stepi and nexti, always show the innermost frame (not any
3937 inline function call sites). */
3938 if (ecs->event_thread->control.step_range_end != 1)
3939 skip_inline_frames (ecs->ptid);
3941 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP
3942 && ecs->event_thread->control.trap_expected
3943 && gdbarch_single_step_through_delay_p (gdbarch)
3944 && currently_stepping (ecs->event_thread))
3946 /* We're trying to step off a breakpoint. Turns out that we're
3947 also on an instruction that needs to be stepped multiple
3948 times before it's been fully executing. E.g., architectures
3949 with a delay slot. It needs to be stepped twice, once for
3950 the instruction and once for the delay slot. */
3951 int step_through_delay
3952 = gdbarch_single_step_through_delay (gdbarch, frame);
3954 if (debug_infrun && step_through_delay)
3955 fprintf_unfiltered (gdb_stdlog, "infrun: step through delay\n");
3956 if (ecs->event_thread->control.step_range_end == 0
3957 && step_through_delay)
3959 /* The user issued a continue when stopped at a breakpoint.
3960 Set up for another trap and get out of here. */
3961 ecs->event_thread->stepping_over_breakpoint = 1;
3965 else if (step_through_delay)
3967 /* The user issued a step when stopped at a breakpoint.
3968 Maybe we should stop, maybe we should not - the delay
3969 slot *might* correspond to a line of source. In any
3970 case, don't decide that here, just set
3971 ecs->stepping_over_breakpoint, making sure we
3972 single-step again before breakpoints are re-inserted. */
3973 ecs->event_thread->stepping_over_breakpoint = 1;
3977 /* Look at the cause of the stop, and decide what to do.
3978 The alternatives are:
3979 1) stop_stepping and return; to really stop and return to the debugger,
3980 2) keep_going and return to start up again
3981 (set ecs->event_thread->stepping_over_breakpoint to 1 to single step once)
3982 3) set ecs->random_signal to 1, and the decision between 1 and 2
3983 will be made according to the signal handling tables. */
3985 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP
3986 || stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_NO_SIGSTOP
3987 || stop_soon == STOP_QUIETLY_REMOTE)
3989 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP
3993 fprintf_unfiltered (gdb_stdlog, "infrun: stopped\n");
3994 stop_print_frame = 0;
3995 stop_stepping (ecs);
3999 /* This is originated from start_remote(), start_inferior() and
4000 shared libraries hook functions. */
4001 if (stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_REMOTE)
4004 fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
4005 stop_stepping (ecs);
4009 /* This originates from attach_command(). We need to overwrite
4010 the stop_signal here, because some kernels don't ignore a
4011 SIGSTOP in a subsequent ptrace(PTRACE_CONT,SIGSTOP) call.
4012 See more comments in inferior.h. On the other hand, if we
4013 get a non-SIGSTOP, report it to the user - assume the backend
4014 will handle the SIGSTOP if it should show up later.
4016 Also consider that the attach is complete when we see a
4017 SIGTRAP. Some systems (e.g. Windows), and stubs supporting
4018 target extended-remote report it instead of a SIGSTOP
4019 (e.g. gdbserver). We already rely on SIGTRAP being our
4020 signal, so this is no exception.
4022 Also consider that the attach is complete when we see a
4023 TARGET_SIGNAL_0. In non-stop mode, GDB will explicitly tell
4024 the target to stop all threads of the inferior, in case the
4025 low level attach operation doesn't stop them implicitly. If
4026 they weren't stopped implicitly, then the stub will report a
4027 TARGET_SIGNAL_0, meaning: stopped for no particular reason
4028 other than GDB's request. */
4029 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
4030 && (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_STOP
4031 || ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP
4032 || ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_0))
4034 stop_stepping (ecs);
4035 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
4039 /* See if there is a breakpoint at the current PC. */
4040 ecs->event_thread->control.stop_bpstat
4041 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
4042 stop_pc, ecs->ptid);
4044 /* Following in case break condition called a
4046 stop_print_frame = 1;
4048 /* This is where we handle "moribund" watchpoints. Unlike
4049 software breakpoints traps, hardware watchpoint traps are
4050 always distinguishable from random traps. If no high-level
4051 watchpoint is associated with the reported stop data address
4052 anymore, then the bpstat does not explain the signal ---
4053 simply make sure to ignore it if `stopped_by_watchpoint' is
4057 && ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP
4058 && !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat)
4059 && stopped_by_watchpoint)
4060 fprintf_unfiltered (gdb_stdlog,
4061 "infrun: no user watchpoint explains "
4062 "watchpoint SIGTRAP, ignoring\n");
4064 /* NOTE: cagney/2003-03-29: These two checks for a random signal
4065 at one stage in the past included checks for an inferior
4066 function call's call dummy's return breakpoint. The original
4067 comment, that went with the test, read:
4069 ``End of a stack dummy. Some systems (e.g. Sony news) give
4070 another signal besides SIGTRAP, so check here as well as
4073 If someone ever tries to get call dummys on a
4074 non-executable stack to work (where the target would stop
4075 with something like a SIGSEGV), then those tests might need
4076 to be re-instated. Given, however, that the tests were only
4077 enabled when momentary breakpoints were not being used, I
4078 suspect that it won't be the case.
4080 NOTE: kettenis/2004-02-05: Indeed such checks don't seem to
4081 be necessary for call dummies on a non-executable stack on
4084 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP)
4086 = !(bpstat_explains_signal (ecs->event_thread->control.stop_bpstat)
4087 || stopped_by_watchpoint
4088 || ecs->event_thread->control.trap_expected
4089 || (ecs->event_thread->control.step_range_end
4090 && (ecs->event_thread->control.step_resume_breakpoint
4094 ecs->random_signal = !bpstat_explains_signal
4095 (ecs->event_thread->control.stop_bpstat);
4096 if (!ecs->random_signal)
4097 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_TRAP;
4101 /* When we reach this point, we've pretty much decided
4102 that the reason for stopping must've been a random
4103 (unexpected) signal. */
4106 ecs->random_signal = 1;
4108 process_event_stop_test:
4110 /* Re-fetch current thread's frame in case we did a
4111 "goto process_event_stop_test" above. */
4112 frame = get_current_frame ();
4113 gdbarch = get_frame_arch (frame);
4115 /* For the program's own signals, act according to
4116 the signal handling tables. */
4118 if (ecs->random_signal)
4120 /* Signal not for debugging purposes. */
4122 struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
4125 fprintf_unfiltered (gdb_stdlog, "infrun: random signal %d\n",
4126 ecs->event_thread->suspend.stop_signal);
4128 stopped_by_random_signal = 1;
4130 if (signal_print[ecs->event_thread->suspend.stop_signal])
4133 target_terminal_ours_for_output ();
4134 print_signal_received_reason
4135 (ecs->event_thread->suspend.stop_signal);
4137 /* Always stop on signals if we're either just gaining control
4138 of the program, or the user explicitly requested this thread
4139 to remain stopped. */
4140 if (stop_soon != NO_STOP_QUIETLY
4141 || ecs->event_thread->stop_requested
4143 && signal_stop_state (ecs->event_thread->suspend.stop_signal)))
4145 stop_stepping (ecs);
4148 /* If not going to stop, give terminal back
4149 if we took it away. */
4151 target_terminal_inferior ();
4153 /* Clear the signal if it should not be passed. */
4154 if (signal_program[ecs->event_thread->suspend.stop_signal] == 0)
4155 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
4157 if (ecs->event_thread->prev_pc == stop_pc
4158 && ecs->event_thread->control.trap_expected
4159 && ecs->event_thread->control.step_resume_breakpoint == NULL)
4161 /* We were just starting a new sequence, attempting to
4162 single-step off of a breakpoint and expecting a SIGTRAP.
4163 Instead this signal arrives. This signal will take us out
4164 of the stepping range so GDB needs to remember to, when
4165 the signal handler returns, resume stepping off that
4167 /* To simplify things, "continue" is forced to use the same
4168 code paths as single-step - set a breakpoint at the
4169 signal return address and then, once hit, step off that
4172 fprintf_unfiltered (gdb_stdlog,
4173 "infrun: signal arrived while stepping over "
4176 insert_step_resume_breakpoint_at_frame (frame);
4177 ecs->event_thread->step_after_step_resume_breakpoint = 1;
4178 /* Reset trap_expected to ensure breakpoints are re-inserted. */
4179 ecs->event_thread->control.trap_expected = 0;
4184 if (ecs->event_thread->control.step_range_end != 0
4185 && ecs->event_thread->suspend.stop_signal != TARGET_SIGNAL_0
4186 && (ecs->event_thread->control.step_range_start <= stop_pc
4187 && stop_pc < ecs->event_thread->control.step_range_end)
4188 && frame_id_eq (get_stack_frame_id (frame),
4189 ecs->event_thread->control.step_stack_frame_id)
4190 && ecs->event_thread->control.step_resume_breakpoint == NULL)
4192 /* The inferior is about to take a signal that will take it
4193 out of the single step range. Set a breakpoint at the
4194 current PC (which is presumably where the signal handler
4195 will eventually return) and then allow the inferior to
4198 Note that this is only needed for a signal delivered
4199 while in the single-step range. Nested signals aren't a
4200 problem as they eventually all return. */
4202 fprintf_unfiltered (gdb_stdlog,
4203 "infrun: signal may take us out of "
4204 "single-step range\n");
4206 insert_step_resume_breakpoint_at_frame (frame);
4207 /* Reset trap_expected to ensure breakpoints are re-inserted. */
4208 ecs->event_thread->control.trap_expected = 0;
4213 /* Note: step_resume_breakpoint may be non-NULL. This occures
4214 when either there's a nested signal, or when there's a
4215 pending signal enabled just as the signal handler returns
4216 (leaving the inferior at the step-resume-breakpoint without
4217 actually executing it). Either way continue until the
4218 breakpoint is really hit. */
4223 /* Handle cases caused by hitting a breakpoint. */
4225 CORE_ADDR jmp_buf_pc;
4226 struct bpstat_what what;
4228 what = bpstat_what (ecs->event_thread->control.stop_bpstat);
4230 if (what.call_dummy)
4232 stop_stack_dummy = what.call_dummy;
4235 /* If we hit an internal event that triggers symbol changes, the
4236 current frame will be invalidated within bpstat_what (e.g., if
4237 we hit an internal solib event). Re-fetch it. */
4238 frame = get_current_frame ();
4239 gdbarch = get_frame_arch (frame);
4241 switch (what.main_action)
4243 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
4244 /* If we hit the breakpoint at longjmp while stepping, we
4245 install a momentary breakpoint at the target of the
4249 fprintf_unfiltered (gdb_stdlog,
4250 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME\n");
4252 ecs->event_thread->stepping_over_breakpoint = 1;
4254 if (what.is_longjmp)
4256 if (!gdbarch_get_longjmp_target_p (gdbarch)
4257 || !gdbarch_get_longjmp_target (gdbarch,
4258 frame, &jmp_buf_pc))
4261 fprintf_unfiltered (gdb_stdlog,
4262 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME "
4263 "(!gdbarch_get_longjmp_target)\n");
4268 /* We're going to replace the current step-resume breakpoint
4269 with a longjmp-resume breakpoint. */
4270 delete_step_resume_breakpoint (ecs->event_thread);
4272 /* Insert a breakpoint at resume address. */
4273 insert_longjmp_resume_breakpoint (gdbarch, jmp_buf_pc);
4277 struct symbol *func = get_frame_function (frame);
4280 check_exception_resume (ecs, frame, func);
4285 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
4287 fprintf_unfiltered (gdb_stdlog,
4288 "infrun: BPSTAT_WHAT_CLEAR_LONGJMP_RESUME\n");
4290 if (what.is_longjmp)
4292 gdb_assert (ecs->event_thread->control.step_resume_breakpoint
4294 delete_step_resume_breakpoint (ecs->event_thread);
4298 /* There are several cases to consider.
4300 1. The initiating frame no longer exists. In this case
4301 we must stop, because the exception has gone too far.
4303 2. The initiating frame exists, and is the same as the
4304 current frame. We stop, because the exception has been
4307 3. The initiating frame exists and is different from
4308 the current frame. This means the exception has been
4309 caught beneath the initiating frame, so keep going. */
4310 struct frame_info *init_frame
4311 = frame_find_by_id (ecs->event_thread->initiating_frame);
4313 gdb_assert (ecs->event_thread->control.exception_resume_breakpoint
4315 delete_exception_resume_breakpoint (ecs->event_thread);
4319 struct frame_id current_id
4320 = get_frame_id (get_current_frame ());
4321 if (frame_id_eq (current_id,
4322 ecs->event_thread->initiating_frame))
4324 /* Case 2. Fall through. */
4334 /* For Cases 1 and 2, remove the step-resume breakpoint,
4336 delete_step_resume_breakpoint (ecs->event_thread);
4339 ecs->event_thread->control.stop_step = 1;
4340 print_end_stepping_range_reason ();
4341 stop_stepping (ecs);
4344 case BPSTAT_WHAT_SINGLE:
4346 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_SINGLE\n");
4347 ecs->event_thread->stepping_over_breakpoint = 1;
4348 /* Still need to check other stuff, at least the case
4349 where we are stepping and step out of the right range. */
4352 case BPSTAT_WHAT_STOP_NOISY:
4354 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_NOISY\n");
4355 stop_print_frame = 1;
4357 /* We are about to nuke the step_resume_breakpointt via the
4358 cleanup chain, so no need to worry about it here. */
4360 stop_stepping (ecs);
4363 case BPSTAT_WHAT_STOP_SILENT:
4365 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_SILENT\n");
4366 stop_print_frame = 0;
4368 /* We are about to nuke the step_resume_breakpoin via the
4369 cleanup chain, so no need to worry about it here. */
4371 stop_stepping (ecs);
4374 case BPSTAT_WHAT_STEP_RESUME:
4376 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STEP_RESUME\n");
4378 delete_step_resume_breakpoint (ecs->event_thread);
4379 if (ecs->event_thread->step_after_step_resume_breakpoint)
4381 /* Back when the step-resume breakpoint was inserted, we
4382 were trying to single-step off a breakpoint. Go back
4384 ecs->event_thread->step_after_step_resume_breakpoint = 0;
4385 ecs->event_thread->stepping_over_breakpoint = 1;
4389 if (stop_pc == ecs->stop_func_start
4390 && execution_direction == EXEC_REVERSE)
4392 /* We are stepping over a function call in reverse, and
4393 just hit the step-resume breakpoint at the start
4394 address of the function. Go back to single-stepping,
4395 which should take us back to the function call. */
4396 ecs->event_thread->stepping_over_breakpoint = 1;
4402 case BPSTAT_WHAT_KEEP_CHECKING:
4407 /* We come here if we hit a breakpoint but should not
4408 stop for it. Possibly we also were stepping
4409 and should stop for that. So fall through and
4410 test for stepping. But, if not stepping,
4413 /* In all-stop mode, if we're currently stepping but have stopped in
4414 some other thread, we need to switch back to the stepped thread. */
4417 struct thread_info *tp;
4419 tp = iterate_over_threads (currently_stepping_or_nexting_callback,
4423 /* However, if the current thread is blocked on some internal
4424 breakpoint, and we simply need to step over that breakpoint
4425 to get it going again, do that first. */
4426 if ((ecs->event_thread->control.trap_expected
4427 && ecs->event_thread->suspend.stop_signal != TARGET_SIGNAL_TRAP)
4428 || ecs->event_thread->stepping_over_breakpoint)
4434 /* If the stepping thread exited, then don't try to switch
4435 back and resume it, which could fail in several different
4436 ways depending on the target. Instead, just keep going.
4438 We can find a stepping dead thread in the thread list in
4441 - The target supports thread exit events, and when the
4442 target tries to delete the thread from the thread list,
4443 inferior_ptid pointed at the exiting thread. In such
4444 case, calling delete_thread does not really remove the
4445 thread from the list; instead, the thread is left listed,
4446 with 'exited' state.
4448 - The target's debug interface does not support thread
4449 exit events, and so we have no idea whatsoever if the
4450 previously stepping thread is still alive. For that
4451 reason, we need to synchronously query the target
4453 if (is_exited (tp->ptid)
4454 || !target_thread_alive (tp->ptid))
4457 fprintf_unfiltered (gdb_stdlog,
4458 "infrun: not switching back to "
4459 "stepped thread, it has vanished\n");
4461 delete_thread (tp->ptid);
4466 /* Otherwise, we no longer expect a trap in the current thread.
4467 Clear the trap_expected flag before switching back -- this is
4468 what keep_going would do as well, if we called it. */
4469 ecs->event_thread->control.trap_expected = 0;
4472 fprintf_unfiltered (gdb_stdlog,
4473 "infrun: switching back to stepped thread\n");
4475 ecs->event_thread = tp;
4476 ecs->ptid = tp->ptid;
4477 context_switch (ecs->ptid);
4483 /* Are we stepping to get the inferior out of the dynamic linker's
4484 hook (and possibly the dld itself) after catching a shlib
4486 if (ecs->event_thread->stepping_through_solib_after_catch)
4488 #if defined(SOLIB_ADD)
4489 /* Have we reached our destination? If not, keep going. */
4490 if (SOLIB_IN_DYNAMIC_LINKER (PIDGET (ecs->ptid), stop_pc))
4493 fprintf_unfiltered (gdb_stdlog,
4494 "infrun: stepping in dynamic linker\n");
4495 ecs->event_thread->stepping_over_breakpoint = 1;
4501 fprintf_unfiltered (gdb_stdlog, "infrun: step past dynamic linker\n");
4502 /* Else, stop and report the catchpoint(s) whose triggering
4503 caused us to begin stepping. */
4504 ecs->event_thread->stepping_through_solib_after_catch = 0;
4505 bpstat_clear (&ecs->event_thread->control.stop_bpstat);
4506 ecs->event_thread->control.stop_bpstat
4507 = bpstat_copy (ecs->event_thread->stepping_through_solib_catchpoints);
4508 bpstat_clear (&ecs->event_thread->stepping_through_solib_catchpoints);
4509 stop_print_frame = 1;
4510 stop_stepping (ecs);
4514 if (ecs->event_thread->control.step_resume_breakpoint)
4517 fprintf_unfiltered (gdb_stdlog,
4518 "infrun: step-resume breakpoint is inserted\n");
4520 /* Having a step-resume breakpoint overrides anything
4521 else having to do with stepping commands until
4522 that breakpoint is reached. */
4527 if (ecs->event_thread->control.step_range_end == 0)
4530 fprintf_unfiltered (gdb_stdlog, "infrun: no stepping, continue\n");
4531 /* Likewise if we aren't even stepping. */
4536 /* Re-fetch current thread's frame in case the code above caused
4537 the frame cache to be re-initialized, making our FRAME variable
4538 a dangling pointer. */
4539 frame = get_current_frame ();
4540 gdbarch = get_frame_arch (frame);
4542 /* If stepping through a line, keep going if still within it.
4544 Note that step_range_end is the address of the first instruction
4545 beyond the step range, and NOT the address of the last instruction
4548 Note also that during reverse execution, we may be stepping
4549 through a function epilogue and therefore must detect when
4550 the current-frame changes in the middle of a line. */
4552 if (stop_pc >= ecs->event_thread->control.step_range_start
4553 && stop_pc < ecs->event_thread->control.step_range_end
4554 && (execution_direction != EXEC_REVERSE
4555 || frame_id_eq (get_frame_id (frame),
4556 ecs->event_thread->control.step_frame_id)))
4560 (gdb_stdlog, "infrun: stepping inside range [%s-%s]\n",
4561 paddress (gdbarch, ecs->event_thread->control.step_range_start),
4562 paddress (gdbarch, ecs->event_thread->control.step_range_end));
4564 /* When stepping backward, stop at beginning of line range
4565 (unless it's the function entry point, in which case
4566 keep going back to the call point). */
4567 if (stop_pc == ecs->event_thread->control.step_range_start
4568 && stop_pc != ecs->stop_func_start
4569 && execution_direction == EXEC_REVERSE)
4571 ecs->event_thread->control.stop_step = 1;
4572 print_end_stepping_range_reason ();
4573 stop_stepping (ecs);
4581 /* We stepped out of the stepping range. */
4583 /* If we are stepping at the source level and entered the runtime
4584 loader dynamic symbol resolution code...
4586 EXEC_FORWARD: we keep on single stepping until we exit the run
4587 time loader code and reach the callee's address.
4589 EXEC_REVERSE: we've already executed the callee (backward), and
4590 the runtime loader code is handled just like any other
4591 undebuggable function call. Now we need only keep stepping
4592 backward through the trampoline code, and that's handled further
4593 down, so there is nothing for us to do here. */
4595 if (execution_direction != EXEC_REVERSE
4596 && ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
4597 && in_solib_dynsym_resolve_code (stop_pc))
4599 CORE_ADDR pc_after_resolver =
4600 gdbarch_skip_solib_resolver (gdbarch, stop_pc);
4603 fprintf_unfiltered (gdb_stdlog,
4604 "infrun: stepped into dynsym resolve code\n");
4606 if (pc_after_resolver)
4608 /* Set up a step-resume breakpoint at the address
4609 indicated by SKIP_SOLIB_RESOLVER. */
4610 struct symtab_and_line sr_sal;
4613 sr_sal.pc = pc_after_resolver;
4614 sr_sal.pspace = get_frame_program_space (frame);
4616 insert_step_resume_breakpoint_at_sal (gdbarch,
4617 sr_sal, null_frame_id);
4624 if (ecs->event_thread->control.step_range_end != 1
4625 && (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
4626 || ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
4627 && get_frame_type (frame) == SIGTRAMP_FRAME)
4630 fprintf_unfiltered (gdb_stdlog,
4631 "infrun: stepped into signal trampoline\n");
4632 /* The inferior, while doing a "step" or "next", has ended up in
4633 a signal trampoline (either by a signal being delivered or by
4634 the signal handler returning). Just single-step until the
4635 inferior leaves the trampoline (either by calling the handler
4641 /* Check for subroutine calls. The check for the current frame
4642 equalling the step ID is not necessary - the check of the
4643 previous frame's ID is sufficient - but it is a common case and
4644 cheaper than checking the previous frame's ID.
4646 NOTE: frame_id_eq will never report two invalid frame IDs as
4647 being equal, so to get into this block, both the current and
4648 previous frame must have valid frame IDs. */
4649 /* The outer_frame_id check is a heuristic to detect stepping
4650 through startup code. If we step over an instruction which
4651 sets the stack pointer from an invalid value to a valid value,
4652 we may detect that as a subroutine call from the mythical
4653 "outermost" function. This could be fixed by marking
4654 outermost frames as !stack_p,code_p,special_p. Then the
4655 initial outermost frame, before sp was valid, would
4656 have code_addr == &_start. See the comment in frame_id_eq
4658 if (!frame_id_eq (get_stack_frame_id (frame),
4659 ecs->event_thread->control.step_stack_frame_id)
4660 && (frame_id_eq (frame_unwind_caller_id (get_current_frame ()),
4661 ecs->event_thread->control.step_stack_frame_id)
4662 && (!frame_id_eq (ecs->event_thread->control.step_stack_frame_id,
4664 || step_start_function != find_pc_function (stop_pc))))
4666 CORE_ADDR real_stop_pc;
4669 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into subroutine\n");
4671 if ((ecs->event_thread->control.step_over_calls == STEP_OVER_NONE)
4672 || ((ecs->event_thread->control.step_range_end == 1)
4673 && in_prologue (gdbarch, ecs->event_thread->prev_pc,
4674 ecs->stop_func_start)))
4676 /* I presume that step_over_calls is only 0 when we're
4677 supposed to be stepping at the assembly language level
4678 ("stepi"). Just stop. */
4679 /* Also, maybe we just did a "nexti" inside a prolog, so we
4680 thought it was a subroutine call but it was not. Stop as
4682 /* And this works the same backward as frontward. MVS */
4683 ecs->event_thread->control.stop_step = 1;
4684 print_end_stepping_range_reason ();
4685 stop_stepping (ecs);
4689 /* Reverse stepping through solib trampolines. */
4691 if (execution_direction == EXEC_REVERSE
4692 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE
4693 && (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
4694 || (ecs->stop_func_start == 0
4695 && in_solib_dynsym_resolve_code (stop_pc))))
4697 /* Any solib trampoline code can be handled in reverse
4698 by simply continuing to single-step. We have already
4699 executed the solib function (backwards), and a few
4700 steps will take us back through the trampoline to the
4706 if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
4708 /* We're doing a "next".
4710 Normal (forward) execution: set a breakpoint at the
4711 callee's return address (the address at which the caller
4714 Reverse (backward) execution. set the step-resume
4715 breakpoint at the start of the function that we just
4716 stepped into (backwards), and continue to there. When we
4717 get there, we'll need to single-step back to the caller. */
4719 if (execution_direction == EXEC_REVERSE)
4721 struct symtab_and_line sr_sal;
4723 /* Normal function call return (static or dynamic). */
4725 sr_sal.pc = ecs->stop_func_start;
4726 sr_sal.pspace = get_frame_program_space (frame);
4727 insert_step_resume_breakpoint_at_sal (gdbarch,
4728 sr_sal, null_frame_id);
4731 insert_step_resume_breakpoint_at_caller (frame);
4737 /* If we are in a function call trampoline (a stub between the
4738 calling routine and the real function), locate the real
4739 function. That's what tells us (a) whether we want to step
4740 into it at all, and (b) what prologue we want to run to the
4741 end of, if we do step into it. */
4742 real_stop_pc = skip_language_trampoline (frame, stop_pc);
4743 if (real_stop_pc == 0)
4744 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
4745 if (real_stop_pc != 0)
4746 ecs->stop_func_start = real_stop_pc;
4748 if (real_stop_pc != 0 && in_solib_dynsym_resolve_code (real_stop_pc))
4750 struct symtab_and_line sr_sal;
4753 sr_sal.pc = ecs->stop_func_start;
4754 sr_sal.pspace = get_frame_program_space (frame);
4756 insert_step_resume_breakpoint_at_sal (gdbarch,
4757 sr_sal, null_frame_id);
4762 /* If we have line number information for the function we are
4763 thinking of stepping into, step into it.
4765 If there are several symtabs at that PC (e.g. with include
4766 files), just want to know whether *any* of them have line
4767 numbers. find_pc_line handles this. */
4769 struct symtab_and_line tmp_sal;
4771 tmp_sal = find_pc_line (ecs->stop_func_start, 0);
4772 if (tmp_sal.line != 0)
4774 if (execution_direction == EXEC_REVERSE)
4775 handle_step_into_function_backward (gdbarch, ecs);
4777 handle_step_into_function (gdbarch, ecs);
4782 /* If we have no line number and the step-stop-if-no-debug is
4783 set, we stop the step so that the user has a chance to switch
4784 in assembly mode. */
4785 if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
4786 && step_stop_if_no_debug)
4788 ecs->event_thread->control.stop_step = 1;
4789 print_end_stepping_range_reason ();
4790 stop_stepping (ecs);
4794 if (execution_direction == EXEC_REVERSE)
4796 /* Set a breakpoint at callee's start address.
4797 From there we can step once and be back in the caller. */
4798 struct symtab_and_line sr_sal;
4801 sr_sal.pc = ecs->stop_func_start;
4802 sr_sal.pspace = get_frame_program_space (frame);
4803 insert_step_resume_breakpoint_at_sal (gdbarch,
4804 sr_sal, null_frame_id);
4807 /* Set a breakpoint at callee's return address (the address
4808 at which the caller will resume). */
4809 insert_step_resume_breakpoint_at_caller (frame);
4815 /* Reverse stepping through solib trampolines. */
4817 if (execution_direction == EXEC_REVERSE
4818 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
4820 if (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
4821 || (ecs->stop_func_start == 0
4822 && in_solib_dynsym_resolve_code (stop_pc)))
4824 /* Any solib trampoline code can be handled in reverse
4825 by simply continuing to single-step. We have already
4826 executed the solib function (backwards), and a few
4827 steps will take us back through the trampoline to the
4832 else if (in_solib_dynsym_resolve_code (stop_pc))
4834 /* Stepped backward into the solib dynsym resolver.
4835 Set a breakpoint at its start and continue, then
4836 one more step will take us out. */
4837 struct symtab_and_line sr_sal;
4840 sr_sal.pc = ecs->stop_func_start;
4841 sr_sal.pspace = get_frame_program_space (frame);
4842 insert_step_resume_breakpoint_at_sal (gdbarch,
4843 sr_sal, null_frame_id);
4849 /* If we're in the return path from a shared library trampoline,
4850 we want to proceed through the trampoline when stepping. */
4851 if (gdbarch_in_solib_return_trampoline (gdbarch,
4852 stop_pc, ecs->stop_func_name))
4854 /* Determine where this trampoline returns. */
4855 CORE_ADDR real_stop_pc;
4857 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
4860 fprintf_unfiltered (gdb_stdlog,
4861 "infrun: stepped into solib return tramp\n");
4863 /* Only proceed through if we know where it's going. */
4866 /* And put the step-breakpoint there and go until there. */
4867 struct symtab_and_line sr_sal;
4869 init_sal (&sr_sal); /* initialize to zeroes */
4870 sr_sal.pc = real_stop_pc;
4871 sr_sal.section = find_pc_overlay (sr_sal.pc);
4872 sr_sal.pspace = get_frame_program_space (frame);
4874 /* Do not specify what the fp should be when we stop since
4875 on some machines the prologue is where the new fp value
4877 insert_step_resume_breakpoint_at_sal (gdbarch,
4878 sr_sal, null_frame_id);
4880 /* Restart without fiddling with the step ranges or
4887 stop_pc_sal = find_pc_line (stop_pc, 0);
4889 /* NOTE: tausq/2004-05-24: This if block used to be done before all
4890 the trampoline processing logic, however, there are some trampolines
4891 that have no names, so we should do trampoline handling first. */
4892 if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
4893 && ecs->stop_func_name == NULL
4894 && stop_pc_sal.line == 0)
4897 fprintf_unfiltered (gdb_stdlog,
4898 "infrun: stepped into undebuggable function\n");
4900 /* The inferior just stepped into, or returned to, an
4901 undebuggable function (where there is no debugging information
4902 and no line number corresponding to the address where the
4903 inferior stopped). Since we want to skip this kind of code,
4904 we keep going until the inferior returns from this
4905 function - unless the user has asked us not to (via
4906 set step-mode) or we no longer know how to get back
4907 to the call site. */
4908 if (step_stop_if_no_debug
4909 || !frame_id_p (frame_unwind_caller_id (frame)))
4911 /* If we have no line number and the step-stop-if-no-debug
4912 is set, we stop the step so that the user has a chance to
4913 switch in assembly mode. */
4914 ecs->event_thread->control.stop_step = 1;
4915 print_end_stepping_range_reason ();
4916 stop_stepping (ecs);
4921 /* Set a breakpoint at callee's return address (the address
4922 at which the caller will resume). */
4923 insert_step_resume_breakpoint_at_caller (frame);
4929 if (ecs->event_thread->control.step_range_end == 1)
4931 /* It is stepi or nexti. We always want to stop stepping after
4934 fprintf_unfiltered (gdb_stdlog, "infrun: stepi/nexti\n");
4935 ecs->event_thread->control.stop_step = 1;
4936 print_end_stepping_range_reason ();
4937 stop_stepping (ecs);
4941 if (stop_pc_sal.line == 0)
4943 /* We have no line number information. That means to stop
4944 stepping (does this always happen right after one instruction,
4945 when we do "s" in a function with no line numbers,
4946 or can this happen as a result of a return or longjmp?). */
4948 fprintf_unfiltered (gdb_stdlog, "infrun: no line number info\n");
4949 ecs->event_thread->control.stop_step = 1;
4950 print_end_stepping_range_reason ();
4951 stop_stepping (ecs);
4955 /* Look for "calls" to inlined functions, part one. If the inline
4956 frame machinery detected some skipped call sites, we have entered
4957 a new inline function. */
4959 if (frame_id_eq (get_frame_id (get_current_frame ()),
4960 ecs->event_thread->control.step_frame_id)
4961 && inline_skipped_frames (ecs->ptid))
4963 struct symtab_and_line call_sal;
4966 fprintf_unfiltered (gdb_stdlog,
4967 "infrun: stepped into inlined function\n");
4969 find_frame_sal (get_current_frame (), &call_sal);
4971 if (ecs->event_thread->control.step_over_calls != STEP_OVER_ALL)
4973 /* For "step", we're going to stop. But if the call site
4974 for this inlined function is on the same source line as
4975 we were previously stepping, go down into the function
4976 first. Otherwise stop at the call site. */
4978 if (call_sal.line == ecs->event_thread->current_line
4979 && call_sal.symtab == ecs->event_thread->current_symtab)
4980 step_into_inline_frame (ecs->ptid);
4982 ecs->event_thread->control.stop_step = 1;
4983 print_end_stepping_range_reason ();
4984 stop_stepping (ecs);
4989 /* For "next", we should stop at the call site if it is on a
4990 different source line. Otherwise continue through the
4991 inlined function. */
4992 if (call_sal.line == ecs->event_thread->current_line
4993 && call_sal.symtab == ecs->event_thread->current_symtab)
4997 ecs->event_thread->control.stop_step = 1;
4998 print_end_stepping_range_reason ();
4999 stop_stepping (ecs);
5005 /* Look for "calls" to inlined functions, part two. If we are still
5006 in the same real function we were stepping through, but we have
5007 to go further up to find the exact frame ID, we are stepping
5008 through a more inlined call beyond its call site. */
5010 if (get_frame_type (get_current_frame ()) == INLINE_FRAME
5011 && !frame_id_eq (get_frame_id (get_current_frame ()),
5012 ecs->event_thread->control.step_frame_id)
5013 && stepped_in_from (get_current_frame (),
5014 ecs->event_thread->control.step_frame_id))
5017 fprintf_unfiltered (gdb_stdlog,
5018 "infrun: stepping through inlined function\n");
5020 if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
5024 ecs->event_thread->control.stop_step = 1;
5025 print_end_stepping_range_reason ();
5026 stop_stepping (ecs);
5031 if ((stop_pc == stop_pc_sal.pc)
5032 && (ecs->event_thread->current_line != stop_pc_sal.line
5033 || ecs->event_thread->current_symtab != stop_pc_sal.symtab))
5035 /* We are at the start of a different line. So stop. Note that
5036 we don't stop if we step into the middle of a different line.
5037 That is said to make things like for (;;) statements work
5040 fprintf_unfiltered (gdb_stdlog,
5041 "infrun: stepped to a different line\n");
5042 ecs->event_thread->control.stop_step = 1;
5043 print_end_stepping_range_reason ();
5044 stop_stepping (ecs);
5048 /* We aren't done stepping.
5050 Optimize by setting the stepping range to the line.
5051 (We might not be in the original line, but if we entered a
5052 new line in mid-statement, we continue stepping. This makes
5053 things like for(;;) statements work better.) */
5055 ecs->event_thread->control.step_range_start = stop_pc_sal.pc;
5056 ecs->event_thread->control.step_range_end = stop_pc_sal.end;
5057 set_step_info (frame, stop_pc_sal);
5060 fprintf_unfiltered (gdb_stdlog, "infrun: keep going\n");
5064 /* Is thread TP in the middle of single-stepping? */
5067 currently_stepping (struct thread_info *tp)
5069 return ((tp->control.step_range_end
5070 && tp->control.step_resume_breakpoint == NULL)
5071 || tp->control.trap_expected
5072 || tp->stepping_through_solib_after_catch
5073 || bpstat_should_step ());
5076 /* Returns true if any thread *but* the one passed in "data" is in the
5077 middle of stepping or of handling a "next". */
5080 currently_stepping_or_nexting_callback (struct thread_info *tp, void *data)
5085 return (tp->control.step_range_end
5086 || tp->control.trap_expected
5087 || tp->stepping_through_solib_after_catch);
5090 /* Inferior has stepped into a subroutine call with source code that
5091 we should not step over. Do step to the first line of code in
5095 handle_step_into_function (struct gdbarch *gdbarch,
5096 struct execution_control_state *ecs)
5099 struct symtab_and_line stop_func_sal, sr_sal;
5101 s = find_pc_symtab (stop_pc);
5102 if (s && s->language != language_asm)
5103 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
5104 ecs->stop_func_start);
5106 stop_func_sal = find_pc_line (ecs->stop_func_start, 0);
5107 /* Use the step_resume_break to step until the end of the prologue,
5108 even if that involves jumps (as it seems to on the vax under
5110 /* If the prologue ends in the middle of a source line, continue to
5111 the end of that source line (if it is still within the function).
5112 Otherwise, just go to end of prologue. */
5113 if (stop_func_sal.end
5114 && stop_func_sal.pc != ecs->stop_func_start
5115 && stop_func_sal.end < ecs->stop_func_end)
5116 ecs->stop_func_start = stop_func_sal.end;
5118 /* Architectures which require breakpoint adjustment might not be able
5119 to place a breakpoint at the computed address. If so, the test
5120 ``ecs->stop_func_start == stop_pc'' will never succeed. Adjust
5121 ecs->stop_func_start to an address at which a breakpoint may be
5122 legitimately placed.
5124 Note: kevinb/2004-01-19: On FR-V, if this adjustment is not
5125 made, GDB will enter an infinite loop when stepping through
5126 optimized code consisting of VLIW instructions which contain
5127 subinstructions corresponding to different source lines. On
5128 FR-V, it's not permitted to place a breakpoint on any but the
5129 first subinstruction of a VLIW instruction. When a breakpoint is
5130 set, GDB will adjust the breakpoint address to the beginning of
5131 the VLIW instruction. Thus, we need to make the corresponding
5132 adjustment here when computing the stop address. */
5134 if (gdbarch_adjust_breakpoint_address_p (gdbarch))
5136 ecs->stop_func_start
5137 = gdbarch_adjust_breakpoint_address (gdbarch,
5138 ecs->stop_func_start);
5141 if (ecs->stop_func_start == stop_pc)
5143 /* We are already there: stop now. */
5144 ecs->event_thread->control.stop_step = 1;
5145 print_end_stepping_range_reason ();
5146 stop_stepping (ecs);
5151 /* Put the step-breakpoint there and go until there. */
5152 init_sal (&sr_sal); /* initialize to zeroes */
5153 sr_sal.pc = ecs->stop_func_start;
5154 sr_sal.section = find_pc_overlay (ecs->stop_func_start);
5155 sr_sal.pspace = get_frame_program_space (get_current_frame ());
5157 /* Do not specify what the fp should be when we stop since on
5158 some machines the prologue is where the new fp value is
5160 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal, null_frame_id);
5162 /* And make sure stepping stops right away then. */
5163 ecs->event_thread->control.step_range_end
5164 = ecs->event_thread->control.step_range_start;
5169 /* Inferior has stepped backward into a subroutine call with source
5170 code that we should not step over. Do step to the beginning of the
5171 last line of code in it. */
5174 handle_step_into_function_backward (struct gdbarch *gdbarch,
5175 struct execution_control_state *ecs)
5178 struct symtab_and_line stop_func_sal;
5180 s = find_pc_symtab (stop_pc);
5181 if (s && s->language != language_asm)
5182 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
5183 ecs->stop_func_start);
5185 stop_func_sal = find_pc_line (stop_pc, 0);
5187 /* OK, we're just going to keep stepping here. */
5188 if (stop_func_sal.pc == stop_pc)
5190 /* We're there already. Just stop stepping now. */
5191 ecs->event_thread->control.stop_step = 1;
5192 print_end_stepping_range_reason ();
5193 stop_stepping (ecs);
5197 /* Else just reset the step range and keep going.
5198 No step-resume breakpoint, they don't work for
5199 epilogues, which can have multiple entry paths. */
5200 ecs->event_thread->control.step_range_start = stop_func_sal.pc;
5201 ecs->event_thread->control.step_range_end = stop_func_sal.end;
5207 /* Insert a "step-resume breakpoint" at SR_SAL with frame ID SR_ID.
5208 This is used to both functions and to skip over code. */
5211 insert_step_resume_breakpoint_at_sal (struct gdbarch *gdbarch,
5212 struct symtab_and_line sr_sal,
5213 struct frame_id sr_id)
5215 /* There should never be more than one step-resume or longjmp-resume
5216 breakpoint per thread, so we should never be setting a new
5217 step_resume_breakpoint when one is already active. */
5218 gdb_assert (inferior_thread ()->control.step_resume_breakpoint == NULL);
5221 fprintf_unfiltered (gdb_stdlog,
5222 "infrun: inserting step-resume breakpoint at %s\n",
5223 paddress (gdbarch, sr_sal.pc));
5225 inferior_thread ()->control.step_resume_breakpoint
5226 = set_momentary_breakpoint (gdbarch, sr_sal, sr_id, bp_step_resume);
5229 /* Insert a "step-resume breakpoint" at RETURN_FRAME.pc. This is used
5230 to skip a potential signal handler.
5232 This is called with the interrupted function's frame. The signal
5233 handler, when it returns, will resume the interrupted function at
5237 insert_step_resume_breakpoint_at_frame (struct frame_info *return_frame)
5239 struct symtab_and_line sr_sal;
5240 struct gdbarch *gdbarch;
5242 gdb_assert (return_frame != NULL);
5243 init_sal (&sr_sal); /* initialize to zeros */
5245 gdbarch = get_frame_arch (return_frame);
5246 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch, get_frame_pc (return_frame));
5247 sr_sal.section = find_pc_overlay (sr_sal.pc);
5248 sr_sal.pspace = get_frame_program_space (return_frame);
5250 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal,
5251 get_stack_frame_id (return_frame));
5254 /* Similar to insert_step_resume_breakpoint_at_frame, except
5255 but a breakpoint at the previous frame's PC. This is used to
5256 skip a function after stepping into it (for "next" or if the called
5257 function has no debugging information).
5259 The current function has almost always been reached by single
5260 stepping a call or return instruction. NEXT_FRAME belongs to the
5261 current function, and the breakpoint will be set at the caller's
5264 This is a separate function rather than reusing
5265 insert_step_resume_breakpoint_at_frame in order to avoid
5266 get_prev_frame, which may stop prematurely (see the implementation
5267 of frame_unwind_caller_id for an example). */
5270 insert_step_resume_breakpoint_at_caller (struct frame_info *next_frame)
5272 struct symtab_and_line sr_sal;
5273 struct gdbarch *gdbarch;
5275 /* We shouldn't have gotten here if we don't know where the call site
5277 gdb_assert (frame_id_p (frame_unwind_caller_id (next_frame)));
5279 init_sal (&sr_sal); /* initialize to zeros */
5281 gdbarch = frame_unwind_caller_arch (next_frame);
5282 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch,
5283 frame_unwind_caller_pc (next_frame));
5284 sr_sal.section = find_pc_overlay (sr_sal.pc);
5285 sr_sal.pspace = frame_unwind_program_space (next_frame);
5287 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal,
5288 frame_unwind_caller_id (next_frame));
5291 /* Insert a "longjmp-resume" breakpoint at PC. This is used to set a
5292 new breakpoint at the target of a jmp_buf. The handling of
5293 longjmp-resume uses the same mechanisms used for handling
5294 "step-resume" breakpoints. */
5297 insert_longjmp_resume_breakpoint (struct gdbarch *gdbarch, CORE_ADDR pc)
5299 /* There should never be more than one step-resume or longjmp-resume
5300 breakpoint per thread, so we should never be setting a new
5301 longjmp_resume_breakpoint when one is already active. */
5302 gdb_assert (inferior_thread ()->control.step_resume_breakpoint == NULL);
5305 fprintf_unfiltered (gdb_stdlog,
5306 "infrun: inserting longjmp-resume breakpoint at %s\n",
5307 paddress (gdbarch, pc));
5309 inferior_thread ()->control.step_resume_breakpoint =
5310 set_momentary_breakpoint_at_pc (gdbarch, pc, bp_longjmp_resume);
5313 /* Insert an exception resume breakpoint. TP is the thread throwing
5314 the exception. The block B is the block of the unwinder debug hook
5315 function. FRAME is the frame corresponding to the call to this
5316 function. SYM is the symbol of the function argument holding the
5317 target PC of the exception. */
5320 insert_exception_resume_breakpoint (struct thread_info *tp,
5322 struct frame_info *frame,
5325 struct gdb_exception e;
5327 /* We want to ignore errors here. */
5328 TRY_CATCH (e, RETURN_MASK_ERROR)
5330 struct symbol *vsym;
5331 struct value *value;
5333 struct breakpoint *bp;
5335 vsym = lookup_symbol (SYMBOL_LINKAGE_NAME (sym), b, VAR_DOMAIN, NULL);
5336 value = read_var_value (vsym, frame);
5337 /* If the value was optimized out, revert to the old behavior. */
5338 if (! value_optimized_out (value))
5340 handler = value_as_address (value);
5343 fprintf_unfiltered (gdb_stdlog,
5344 "infrun: exception resume at %lx\n",
5345 (unsigned long) handler);
5347 bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
5348 handler, bp_exception_resume);
5349 bp->thread = tp->num;
5350 inferior_thread ()->control.exception_resume_breakpoint = bp;
5355 /* This is called when an exception has been intercepted. Check to
5356 see whether the exception's destination is of interest, and if so,
5357 set an exception resume breakpoint there. */
5360 check_exception_resume (struct execution_control_state *ecs,
5361 struct frame_info *frame, struct symbol *func)
5363 struct gdb_exception e;
5365 TRY_CATCH (e, RETURN_MASK_ERROR)
5368 struct dict_iterator iter;
5372 /* The exception breakpoint is a thread-specific breakpoint on
5373 the unwinder's debug hook, declared as:
5375 void _Unwind_DebugHook (void *cfa, void *handler);
5377 The CFA argument indicates the frame to which control is
5378 about to be transferred. HANDLER is the destination PC.
5380 We ignore the CFA and set a temporary breakpoint at HANDLER.
5381 This is not extremely efficient but it avoids issues in gdb
5382 with computing the DWARF CFA, and it also works even in weird
5383 cases such as throwing an exception from inside a signal
5386 b = SYMBOL_BLOCK_VALUE (func);
5387 ALL_BLOCK_SYMBOLS (b, iter, sym)
5389 if (!SYMBOL_IS_ARGUMENT (sym))
5396 insert_exception_resume_breakpoint (ecs->event_thread,
5405 stop_stepping (struct execution_control_state *ecs)
5408 fprintf_unfiltered (gdb_stdlog, "infrun: stop_stepping\n");
5410 /* Let callers know we don't want to wait for the inferior anymore. */
5411 ecs->wait_some_more = 0;
5414 /* This function handles various cases where we need to continue
5415 waiting for the inferior. */
5416 /* (Used to be the keep_going: label in the old wait_for_inferior). */
5419 keep_going (struct execution_control_state *ecs)
5421 /* Make sure normal_stop is called if we get a QUIT handled before
5423 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
5425 /* Save the pc before execution, to compare with pc after stop. */
5426 ecs->event_thread->prev_pc
5427 = regcache_read_pc (get_thread_regcache (ecs->ptid));
5429 /* If we did not do break;, it means we should keep running the
5430 inferior and not return to debugger. */
5432 if (ecs->event_thread->control.trap_expected
5433 && ecs->event_thread->suspend.stop_signal != TARGET_SIGNAL_TRAP)
5435 /* We took a signal (which we are supposed to pass through to
5436 the inferior, else we'd not get here) and we haven't yet
5437 gotten our trap. Simply continue. */
5439 discard_cleanups (old_cleanups);
5440 resume (currently_stepping (ecs->event_thread),
5441 ecs->event_thread->suspend.stop_signal);
5445 /* Either the trap was not expected, but we are continuing
5446 anyway (the user asked that this signal be passed to the
5449 The signal was SIGTRAP, e.g. it was our signal, but we
5450 decided we should resume from it.
5452 We're going to run this baby now!
5454 Note that insert_breakpoints won't try to re-insert
5455 already inserted breakpoints. Therefore, we don't
5456 care if breakpoints were already inserted, or not. */
5458 if (ecs->event_thread->stepping_over_breakpoint)
5460 struct regcache *thread_regcache = get_thread_regcache (ecs->ptid);
5462 if (!use_displaced_stepping (get_regcache_arch (thread_regcache)))
5463 /* Since we can't do a displaced step, we have to remove
5464 the breakpoint while we step it. To keep things
5465 simple, we remove them all. */
5466 remove_breakpoints ();
5470 struct gdb_exception e;
5472 /* Stop stepping when inserting breakpoints
5474 TRY_CATCH (e, RETURN_MASK_ERROR)
5476 insert_breakpoints ();
5480 exception_print (gdb_stderr, e);
5481 stop_stepping (ecs);
5486 ecs->event_thread->control.trap_expected
5487 = ecs->event_thread->stepping_over_breakpoint;
5489 /* Do not deliver SIGNAL_TRAP (except when the user explicitly
5490 specifies that such a signal should be delivered to the
5493 Typically, this would occure when a user is debugging a
5494 target monitor on a simulator: the target monitor sets a
5495 breakpoint; the simulator encounters this break-point and
5496 halts the simulation handing control to GDB; GDB, noteing
5497 that the break-point isn't valid, returns control back to the
5498 simulator; the simulator then delivers the hardware
5499 equivalent of a SIGNAL_TRAP to the program being debugged. */
5501 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP
5502 && !signal_program[ecs->event_thread->suspend.stop_signal])
5503 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
5505 discard_cleanups (old_cleanups);
5506 resume (currently_stepping (ecs->event_thread),
5507 ecs->event_thread->suspend.stop_signal);
5510 prepare_to_wait (ecs);
5513 /* This function normally comes after a resume, before
5514 handle_inferior_event exits. It takes care of any last bits of
5515 housekeeping, and sets the all-important wait_some_more flag. */
5518 prepare_to_wait (struct execution_control_state *ecs)
5521 fprintf_unfiltered (gdb_stdlog, "infrun: prepare_to_wait\n");
5523 /* This is the old end of the while loop. Let everybody know we
5524 want to wait for the inferior some more and get called again
5526 ecs->wait_some_more = 1;
5529 /* Several print_*_reason functions to print why the inferior has stopped.
5530 We always print something when the inferior exits, or receives a signal.
5531 The rest of the cases are dealt with later on in normal_stop and
5532 print_it_typical. Ideally there should be a call to one of these
5533 print_*_reason functions functions from handle_inferior_event each time
5534 stop_stepping is called. */
5536 /* Print why the inferior has stopped.
5537 We are done with a step/next/si/ni command, print why the inferior has
5538 stopped. For now print nothing. Print a message only if not in the middle
5539 of doing a "step n" operation for n > 1. */
5542 print_end_stepping_range_reason (void)
5544 if ((!inferior_thread ()->step_multi
5545 || !inferior_thread ()->control.stop_step)
5546 && ui_out_is_mi_like_p (uiout))
5547 ui_out_field_string (uiout, "reason",
5548 async_reason_lookup (EXEC_ASYNC_END_STEPPING_RANGE));
5551 /* The inferior was terminated by a signal, print why it stopped. */
5554 print_signal_exited_reason (enum target_signal siggnal)
5556 annotate_signalled ();
5557 if (ui_out_is_mi_like_p (uiout))
5559 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_EXITED_SIGNALLED));
5560 ui_out_text (uiout, "\nProgram terminated with signal ");
5561 annotate_signal_name ();
5562 ui_out_field_string (uiout, "signal-name",
5563 target_signal_to_name (siggnal));
5564 annotate_signal_name_end ();
5565 ui_out_text (uiout, ", ");
5566 annotate_signal_string ();
5567 ui_out_field_string (uiout, "signal-meaning",
5568 target_signal_to_string (siggnal));
5569 annotate_signal_string_end ();
5570 ui_out_text (uiout, ".\n");
5571 ui_out_text (uiout, "The program no longer exists.\n");
5574 /* The inferior program is finished, print why it stopped. */
5577 print_exited_reason (int exitstatus)
5579 struct inferior *inf = current_inferior ();
5580 const char *pidstr = target_pid_to_str (pid_to_ptid (inf->pid));
5582 annotate_exited (exitstatus);
5585 if (ui_out_is_mi_like_p (uiout))
5586 ui_out_field_string (uiout, "reason",
5587 async_reason_lookup (EXEC_ASYNC_EXITED));
5588 ui_out_text (uiout, "[Inferior ");
5589 ui_out_text (uiout, plongest (inf->num));
5590 ui_out_text (uiout, " (");
5591 ui_out_text (uiout, pidstr);
5592 ui_out_text (uiout, ") exited with code ");
5593 ui_out_field_fmt (uiout, "exit-code", "0%o", (unsigned int) exitstatus);
5594 ui_out_text (uiout, "]\n");
5598 if (ui_out_is_mi_like_p (uiout))
5600 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_EXITED_NORMALLY));
5601 ui_out_text (uiout, "[Inferior ");
5602 ui_out_text (uiout, plongest (inf->num));
5603 ui_out_text (uiout, " (");
5604 ui_out_text (uiout, pidstr);
5605 ui_out_text (uiout, ") exited normally]\n");
5607 /* Support the --return-child-result option. */
5608 return_child_result_value = exitstatus;
5611 /* Signal received, print why the inferior has stopped. The signal table
5612 tells us to print about it. */
5615 print_signal_received_reason (enum target_signal siggnal)
5619 if (siggnal == TARGET_SIGNAL_0 && !ui_out_is_mi_like_p (uiout))
5621 struct thread_info *t = inferior_thread ();
5623 ui_out_text (uiout, "\n[");
5624 ui_out_field_string (uiout, "thread-name",
5625 target_pid_to_str (t->ptid));
5626 ui_out_field_fmt (uiout, "thread-id", "] #%d", t->num);
5627 ui_out_text (uiout, " stopped");
5631 ui_out_text (uiout, "\nProgram received signal ");
5632 annotate_signal_name ();
5633 if (ui_out_is_mi_like_p (uiout))
5635 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_SIGNAL_RECEIVED));
5636 ui_out_field_string (uiout, "signal-name",
5637 target_signal_to_name (siggnal));
5638 annotate_signal_name_end ();
5639 ui_out_text (uiout, ", ");
5640 annotate_signal_string ();
5641 ui_out_field_string (uiout, "signal-meaning",
5642 target_signal_to_string (siggnal));
5643 annotate_signal_string_end ();
5645 ui_out_text (uiout, ".\n");
5648 /* Reverse execution: target ran out of history info, print why the inferior
5652 print_no_history_reason (void)
5654 ui_out_text (uiout, "\nNo more reverse-execution history.\n");
5657 /* Here to return control to GDB when the inferior stops for real.
5658 Print appropriate messages, remove breakpoints, give terminal our modes.
5660 STOP_PRINT_FRAME nonzero means print the executing frame
5661 (pc, function, args, file, line number and line text).
5662 BREAKPOINTS_FAILED nonzero means stop was due to error
5663 attempting to insert breakpoints. */
5668 struct target_waitstatus last;
5670 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
5672 get_last_target_status (&last_ptid, &last);
5674 /* If an exception is thrown from this point on, make sure to
5675 propagate GDB's knowledge of the executing state to the
5676 frontend/user running state. A QUIT is an easy exception to see
5677 here, so do this before any filtered output. */
5679 make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
5680 else if (last.kind != TARGET_WAITKIND_SIGNALLED
5681 && last.kind != TARGET_WAITKIND_EXITED)
5682 make_cleanup (finish_thread_state_cleanup, &inferior_ptid);
5684 /* In non-stop mode, we don't want GDB to switch threads behind the
5685 user's back, to avoid races where the user is typing a command to
5686 apply to thread x, but GDB switches to thread y before the user
5687 finishes entering the command. */
5689 /* As with the notification of thread events, we want to delay
5690 notifying the user that we've switched thread context until
5691 the inferior actually stops.
5693 There's no point in saying anything if the inferior has exited.
5694 Note that SIGNALLED here means "exited with a signal", not
5695 "received a signal". */
5697 && !ptid_equal (previous_inferior_ptid, inferior_ptid)
5698 && target_has_execution
5699 && last.kind != TARGET_WAITKIND_SIGNALLED
5700 && last.kind != TARGET_WAITKIND_EXITED)
5702 target_terminal_ours_for_output ();
5703 printf_filtered (_("[Switching to %s]\n"),
5704 target_pid_to_str (inferior_ptid));
5705 annotate_thread_changed ();
5706 previous_inferior_ptid = inferior_ptid;
5709 if (!breakpoints_always_inserted_mode () && target_has_execution)
5711 if (remove_breakpoints ())
5713 target_terminal_ours_for_output ();
5714 printf_filtered (_("Cannot remove breakpoints because "
5715 "program is no longer writable.\nFurther "
5716 "execution is probably impossible.\n"));
5720 /* If an auto-display called a function and that got a signal,
5721 delete that auto-display to avoid an infinite recursion. */
5723 if (stopped_by_random_signal)
5724 disable_current_display ();
5726 /* Don't print a message if in the middle of doing a "step n"
5727 operation for n > 1 */
5728 if (target_has_execution
5729 && last.kind != TARGET_WAITKIND_SIGNALLED
5730 && last.kind != TARGET_WAITKIND_EXITED
5731 && inferior_thread ()->step_multi
5732 && inferior_thread ()->control.stop_step)
5735 target_terminal_ours ();
5737 /* Set the current source location. This will also happen if we
5738 display the frame below, but the current SAL will be incorrect
5739 during a user hook-stop function. */
5740 if (has_stack_frames () && !stop_stack_dummy)
5741 set_current_sal_from_frame (get_current_frame (), 1);
5743 /* Let the user/frontend see the threads as stopped. */
5744 do_cleanups (old_chain);
5746 /* Look up the hook_stop and run it (CLI internally handles problem
5747 of stop_command's pre-hook not existing). */
5749 catch_errors (hook_stop_stub, stop_command,
5750 "Error while running hook_stop:\n", RETURN_MASK_ALL);
5752 if (!has_stack_frames ())
5755 if (last.kind == TARGET_WAITKIND_SIGNALLED
5756 || last.kind == TARGET_WAITKIND_EXITED)
5759 /* Select innermost stack frame - i.e., current frame is frame 0,
5760 and current location is based on that.
5761 Don't do this on return from a stack dummy routine,
5762 or if the program has exited. */
5764 if (!stop_stack_dummy)
5766 select_frame (get_current_frame ());
5768 /* Print current location without a level number, if
5769 we have changed functions or hit a breakpoint.
5770 Print source line if we have one.
5771 bpstat_print() contains the logic deciding in detail
5772 what to print, based on the event(s) that just occurred. */
5774 /* If --batch-silent is enabled then there's no need to print the current
5775 source location, and to try risks causing an error message about
5776 missing source files. */
5777 if (stop_print_frame && !batch_silent)
5781 int do_frame_printing = 1;
5782 struct thread_info *tp = inferior_thread ();
5784 bpstat_ret = bpstat_print (tp->control.stop_bpstat);
5788 /* If we had hit a shared library event breakpoint,
5789 bpstat_print would print out this message. If we hit
5790 an OS-level shared library event, do the same
5792 if (last.kind == TARGET_WAITKIND_LOADED)
5794 printf_filtered (_("Stopped due to shared library event\n"));
5795 source_flag = SRC_LINE; /* something bogus */
5796 do_frame_printing = 0;
5800 /* FIXME: cagney/2002-12-01: Given that a frame ID does
5801 (or should) carry around the function and does (or
5802 should) use that when doing a frame comparison. */
5803 if (tp->control.stop_step
5804 && frame_id_eq (tp->control.step_frame_id,
5805 get_frame_id (get_current_frame ()))
5806 && step_start_function == find_pc_function (stop_pc))
5807 source_flag = SRC_LINE; /* Finished step, just
5808 print source line. */
5810 source_flag = SRC_AND_LOC; /* Print location and
5813 case PRINT_SRC_AND_LOC:
5814 source_flag = SRC_AND_LOC; /* Print location and
5817 case PRINT_SRC_ONLY:
5818 source_flag = SRC_LINE;
5821 source_flag = SRC_LINE; /* something bogus */
5822 do_frame_printing = 0;
5825 internal_error (__FILE__, __LINE__, _("Unknown value."));
5828 /* The behavior of this routine with respect to the source
5830 SRC_LINE: Print only source line
5831 LOCATION: Print only location
5832 SRC_AND_LOC: Print location and source line. */
5833 if (do_frame_printing)
5834 print_stack_frame (get_selected_frame (NULL), 0, source_flag);
5836 /* Display the auto-display expressions. */
5841 /* Save the function value return registers, if we care.
5842 We might be about to restore their previous contents. */
5843 if (inferior_thread ()->control.proceed_to_finish)
5845 /* This should not be necessary. */
5847 regcache_xfree (stop_registers);
5849 /* NB: The copy goes through to the target picking up the value of
5850 all the registers. */
5851 stop_registers = regcache_dup (get_current_regcache ());
5854 if (stop_stack_dummy == STOP_STACK_DUMMY)
5856 /* Pop the empty frame that contains the stack dummy.
5857 This also restores inferior state prior to the call
5858 (struct infcall_suspend_state). */
5859 struct frame_info *frame = get_current_frame ();
5861 gdb_assert (get_frame_type (frame) == DUMMY_FRAME);
5863 /* frame_pop() calls reinit_frame_cache as the last thing it
5864 does which means there's currently no selected frame. We
5865 don't need to re-establish a selected frame if the dummy call
5866 returns normally, that will be done by
5867 restore_infcall_control_state. However, we do have to handle
5868 the case where the dummy call is returning after being
5869 stopped (e.g. the dummy call previously hit a breakpoint).
5870 We can't know which case we have so just always re-establish
5871 a selected frame here. */
5872 select_frame (get_current_frame ());
5876 annotate_stopped ();
5878 /* Suppress the stop observer if we're in the middle of:
5880 - a step n (n > 1), as there still more steps to be done.
5882 - a "finish" command, as the observer will be called in
5883 finish_command_continuation, so it can include the inferior
5884 function's return value.
5886 - calling an inferior function, as we pretend we inferior didn't
5887 run at all. The return value of the call is handled by the
5888 expression evaluator, through call_function_by_hand. */
5890 if (!target_has_execution
5891 || last.kind == TARGET_WAITKIND_SIGNALLED
5892 || last.kind == TARGET_WAITKIND_EXITED
5893 || (!inferior_thread ()->step_multi
5894 && !(inferior_thread ()->control.stop_bpstat
5895 && inferior_thread ()->control.proceed_to_finish)
5896 && !inferior_thread ()->control.in_infcall))
5898 if (!ptid_equal (inferior_ptid, null_ptid))
5899 observer_notify_normal_stop (inferior_thread ()->control.stop_bpstat,
5902 observer_notify_normal_stop (NULL, stop_print_frame);
5905 if (target_has_execution)
5907 if (last.kind != TARGET_WAITKIND_SIGNALLED
5908 && last.kind != TARGET_WAITKIND_EXITED)
5909 /* Delete the breakpoint we stopped at, if it wants to be deleted.
5910 Delete any breakpoint that is to be deleted at the next stop. */
5911 breakpoint_auto_delete (inferior_thread ()->control.stop_bpstat);
5914 /* Try to get rid of automatically added inferiors that are no
5915 longer needed. Keeping those around slows down things linearly.
5916 Note that this never removes the current inferior. */
5921 hook_stop_stub (void *cmd)
5923 execute_cmd_pre_hook ((struct cmd_list_element *) cmd);
5928 signal_stop_state (int signo)
5930 return signal_stop[signo];
5934 signal_print_state (int signo)
5936 return signal_print[signo];
5940 signal_pass_state (int signo)
5942 return signal_program[signo];
5946 signal_cache_update (int signo)
5950 for (signo = 0; signo < (int) TARGET_SIGNAL_LAST; signo++)
5951 signal_cache_update (signo);
5956 signal_pass[signo] = (signal_stop[signo] == 0
5957 && signal_print[signo] == 0
5958 && signal_program[signo] == 1);
5962 signal_stop_update (int signo, int state)
5964 int ret = signal_stop[signo];
5966 signal_stop[signo] = state;
5967 signal_cache_update (signo);
5972 signal_print_update (int signo, int state)
5974 int ret = signal_print[signo];
5976 signal_print[signo] = state;
5977 signal_cache_update (signo);
5982 signal_pass_update (int signo, int state)
5984 int ret = signal_program[signo];
5986 signal_program[signo] = state;
5987 signal_cache_update (signo);
5992 sig_print_header (void)
5994 printf_filtered (_("Signal Stop\tPrint\tPass "
5995 "to program\tDescription\n"));
5999 sig_print_info (enum target_signal oursig)
6001 const char *name = target_signal_to_name (oursig);
6002 int name_padding = 13 - strlen (name);
6004 if (name_padding <= 0)
6007 printf_filtered ("%s", name);
6008 printf_filtered ("%*.*s ", name_padding, name_padding, " ");
6009 printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
6010 printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
6011 printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
6012 printf_filtered ("%s\n", target_signal_to_string (oursig));
6015 /* Specify how various signals in the inferior should be handled. */
6018 handle_command (char *args, int from_tty)
6021 int digits, wordlen;
6022 int sigfirst, signum, siglast;
6023 enum target_signal oursig;
6026 unsigned char *sigs;
6027 struct cleanup *old_chain;
6031 error_no_arg (_("signal to handle"));
6034 /* Allocate and zero an array of flags for which signals to handle. */
6036 nsigs = (int) TARGET_SIGNAL_LAST;
6037 sigs = (unsigned char *) alloca (nsigs);
6038 memset (sigs, 0, nsigs);
6040 /* Break the command line up into args. */
6042 argv = gdb_buildargv (args);
6043 old_chain = make_cleanup_freeargv (argv);
6045 /* Walk through the args, looking for signal oursigs, signal names, and
6046 actions. Signal numbers and signal names may be interspersed with
6047 actions, with the actions being performed for all signals cumulatively
6048 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
6050 while (*argv != NULL)
6052 wordlen = strlen (*argv);
6053 for (digits = 0; isdigit ((*argv)[digits]); digits++)
6057 sigfirst = siglast = -1;
6059 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
6061 /* Apply action to all signals except those used by the
6062 debugger. Silently skip those. */
6065 siglast = nsigs - 1;
6067 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
6069 SET_SIGS (nsigs, sigs, signal_stop);
6070 SET_SIGS (nsigs, sigs, signal_print);
6072 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
6074 UNSET_SIGS (nsigs, sigs, signal_program);
6076 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
6078 SET_SIGS (nsigs, sigs, signal_print);
6080 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
6082 SET_SIGS (nsigs, sigs, signal_program);
6084 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
6086 UNSET_SIGS (nsigs, sigs, signal_stop);
6088 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
6090 SET_SIGS (nsigs, sigs, signal_program);
6092 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
6094 UNSET_SIGS (nsigs, sigs, signal_print);
6095 UNSET_SIGS (nsigs, sigs, signal_stop);
6097 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
6099 UNSET_SIGS (nsigs, sigs, signal_program);
6101 else if (digits > 0)
6103 /* It is numeric. The numeric signal refers to our own
6104 internal signal numbering from target.h, not to host/target
6105 signal number. This is a feature; users really should be
6106 using symbolic names anyway, and the common ones like
6107 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
6109 sigfirst = siglast = (int)
6110 target_signal_from_command (atoi (*argv));
6111 if ((*argv)[digits] == '-')
6114 target_signal_from_command (atoi ((*argv) + digits + 1));
6116 if (sigfirst > siglast)
6118 /* Bet he didn't figure we'd think of this case... */
6126 oursig = target_signal_from_name (*argv);
6127 if (oursig != TARGET_SIGNAL_UNKNOWN)
6129 sigfirst = siglast = (int) oursig;
6133 /* Not a number and not a recognized flag word => complain. */
6134 error (_("Unrecognized or ambiguous flag word: \"%s\"."), *argv);
6138 /* If any signal numbers or symbol names were found, set flags for
6139 which signals to apply actions to. */
6141 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
6143 switch ((enum target_signal) signum)
6145 case TARGET_SIGNAL_TRAP:
6146 case TARGET_SIGNAL_INT:
6147 if (!allsigs && !sigs[signum])
6149 if (query (_("%s is used by the debugger.\n\
6150 Are you sure you want to change it? "),
6151 target_signal_to_name ((enum target_signal) signum)))
6157 printf_unfiltered (_("Not confirmed, unchanged.\n"));
6158 gdb_flush (gdb_stdout);
6162 case TARGET_SIGNAL_0:
6163 case TARGET_SIGNAL_DEFAULT:
6164 case TARGET_SIGNAL_UNKNOWN:
6165 /* Make sure that "all" doesn't print these. */
6176 for (signum = 0; signum < nsigs; signum++)
6179 signal_cache_update (-1);
6180 target_pass_signals ((int) TARGET_SIGNAL_LAST, signal_pass);
6184 /* Show the results. */
6185 sig_print_header ();
6186 for (; signum < nsigs; signum++)
6188 sig_print_info (signum);
6194 do_cleanups (old_chain);
6198 xdb_handle_command (char *args, int from_tty)
6201 struct cleanup *old_chain;
6204 error_no_arg (_("xdb command"));
6206 /* Break the command line up into args. */
6208 argv = gdb_buildargv (args);
6209 old_chain = make_cleanup_freeargv (argv);
6210 if (argv[1] != (char *) NULL)
6215 bufLen = strlen (argv[0]) + 20;
6216 argBuf = (char *) xmalloc (bufLen);
6220 enum target_signal oursig;
6222 oursig = target_signal_from_name (argv[0]);
6223 memset (argBuf, 0, bufLen);
6224 if (strcmp (argv[1], "Q") == 0)
6225 sprintf (argBuf, "%s %s", argv[0], "noprint");
6228 if (strcmp (argv[1], "s") == 0)
6230 if (!signal_stop[oursig])
6231 sprintf (argBuf, "%s %s", argv[0], "stop");
6233 sprintf (argBuf, "%s %s", argv[0], "nostop");
6235 else if (strcmp (argv[1], "i") == 0)
6237 if (!signal_program[oursig])
6238 sprintf (argBuf, "%s %s", argv[0], "pass");
6240 sprintf (argBuf, "%s %s", argv[0], "nopass");
6242 else if (strcmp (argv[1], "r") == 0)
6244 if (!signal_print[oursig])
6245 sprintf (argBuf, "%s %s", argv[0], "print");
6247 sprintf (argBuf, "%s %s", argv[0], "noprint");
6253 handle_command (argBuf, from_tty);
6255 printf_filtered (_("Invalid signal handling flag.\n"));
6260 do_cleanups (old_chain);
6263 /* Print current contents of the tables set by the handle command.
6264 It is possible we should just be printing signals actually used
6265 by the current target (but for things to work right when switching
6266 targets, all signals should be in the signal tables). */
6269 signals_info (char *signum_exp, int from_tty)
6271 enum target_signal oursig;
6273 sig_print_header ();
6277 /* First see if this is a symbol name. */
6278 oursig = target_signal_from_name (signum_exp);
6279 if (oursig == TARGET_SIGNAL_UNKNOWN)
6281 /* No, try numeric. */
6283 target_signal_from_command (parse_and_eval_long (signum_exp));
6285 sig_print_info (oursig);
6289 printf_filtered ("\n");
6290 /* These ugly casts brought to you by the native VAX compiler. */
6291 for (oursig = TARGET_SIGNAL_FIRST;
6292 (int) oursig < (int) TARGET_SIGNAL_LAST;
6293 oursig = (enum target_signal) ((int) oursig + 1))
6297 if (oursig != TARGET_SIGNAL_UNKNOWN
6298 && oursig != TARGET_SIGNAL_DEFAULT && oursig != TARGET_SIGNAL_0)
6299 sig_print_info (oursig);
6302 printf_filtered (_("\nUse the \"handle\" command "
6303 "to change these tables.\n"));
6306 /* The $_siginfo convenience variable is a bit special. We don't know
6307 for sure the type of the value until we actually have a chance to
6308 fetch the data. The type can change depending on gdbarch, so it is
6309 also dependent on which thread you have selected.
6311 1. making $_siginfo be an internalvar that creates a new value on
6314 2. making the value of $_siginfo be an lval_computed value. */
6316 /* This function implements the lval_computed support for reading a
6320 siginfo_value_read (struct value *v)
6322 LONGEST transferred;
6325 target_read (¤t_target, TARGET_OBJECT_SIGNAL_INFO,
6327 value_contents_all_raw (v),
6329 TYPE_LENGTH (value_type (v)));
6331 if (transferred != TYPE_LENGTH (value_type (v)))
6332 error (_("Unable to read siginfo"));
6335 /* This function implements the lval_computed support for writing a
6339 siginfo_value_write (struct value *v, struct value *fromval)
6341 LONGEST transferred;
6343 transferred = target_write (¤t_target,
6344 TARGET_OBJECT_SIGNAL_INFO,
6346 value_contents_all_raw (fromval),
6348 TYPE_LENGTH (value_type (fromval)));
6350 if (transferred != TYPE_LENGTH (value_type (fromval)))
6351 error (_("Unable to write siginfo"));
6354 static struct lval_funcs siginfo_value_funcs =
6360 /* Return a new value with the correct type for the siginfo object of
6361 the current thread using architecture GDBARCH. Return a void value
6362 if there's no object available. */
6364 static struct value *
6365 siginfo_make_value (struct gdbarch *gdbarch, struct internalvar *var)
6367 if (target_has_stack
6368 && !ptid_equal (inferior_ptid, null_ptid)
6369 && gdbarch_get_siginfo_type_p (gdbarch))
6371 struct type *type = gdbarch_get_siginfo_type (gdbarch);
6373 return allocate_computed_value (type, &siginfo_value_funcs, NULL);
6376 return allocate_value (builtin_type (gdbarch)->builtin_void);
6380 /* infcall_suspend_state contains state about the program itself like its
6381 registers and any signal it received when it last stopped.
6382 This state must be restored regardless of how the inferior function call
6383 ends (either successfully, or after it hits a breakpoint or signal)
6384 if the program is to properly continue where it left off. */
6386 struct infcall_suspend_state
6388 struct thread_suspend_state thread_suspend;
6389 struct inferior_suspend_state inferior_suspend;
6393 struct regcache *registers;
6395 /* Format of SIGINFO_DATA or NULL if it is not present. */
6396 struct gdbarch *siginfo_gdbarch;
6398 /* The inferior format depends on SIGINFO_GDBARCH and it has a length of
6399 TYPE_LENGTH (gdbarch_get_siginfo_type ()). For different gdbarch the
6400 content would be invalid. */
6401 gdb_byte *siginfo_data;
6404 struct infcall_suspend_state *
6405 save_infcall_suspend_state (void)
6407 struct infcall_suspend_state *inf_state;
6408 struct thread_info *tp = inferior_thread ();
6409 struct inferior *inf = current_inferior ();
6410 struct regcache *regcache = get_current_regcache ();
6411 struct gdbarch *gdbarch = get_regcache_arch (regcache);
6412 gdb_byte *siginfo_data = NULL;
6414 if (gdbarch_get_siginfo_type_p (gdbarch))
6416 struct type *type = gdbarch_get_siginfo_type (gdbarch);
6417 size_t len = TYPE_LENGTH (type);
6418 struct cleanup *back_to;
6420 siginfo_data = xmalloc (len);
6421 back_to = make_cleanup (xfree, siginfo_data);
6423 if (target_read (¤t_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
6424 siginfo_data, 0, len) == len)
6425 discard_cleanups (back_to);
6428 /* Errors ignored. */
6429 do_cleanups (back_to);
6430 siginfo_data = NULL;
6434 inf_state = XZALLOC (struct infcall_suspend_state);
6438 inf_state->siginfo_gdbarch = gdbarch;
6439 inf_state->siginfo_data = siginfo_data;
6442 inf_state->thread_suspend = tp->suspend;
6443 inf_state->inferior_suspend = inf->suspend;
6445 /* run_inferior_call will not use the signal due to its `proceed' call with
6446 TARGET_SIGNAL_0 anyway. */
6447 tp->suspend.stop_signal = TARGET_SIGNAL_0;
6449 inf_state->stop_pc = stop_pc;
6451 inf_state->registers = regcache_dup (regcache);
6456 /* Restore inferior session state to INF_STATE. */
6459 restore_infcall_suspend_state (struct infcall_suspend_state *inf_state)
6461 struct thread_info *tp = inferior_thread ();
6462 struct inferior *inf = current_inferior ();
6463 struct regcache *regcache = get_current_regcache ();
6464 struct gdbarch *gdbarch = get_regcache_arch (regcache);
6466 tp->suspend = inf_state->thread_suspend;
6467 inf->suspend = inf_state->inferior_suspend;
6469 stop_pc = inf_state->stop_pc;
6471 if (inf_state->siginfo_gdbarch == gdbarch)
6473 struct type *type = gdbarch_get_siginfo_type (gdbarch);
6474 size_t len = TYPE_LENGTH (type);
6476 /* Errors ignored. */
6477 target_write (¤t_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
6478 inf_state->siginfo_data, 0, len);
6481 /* The inferior can be gone if the user types "print exit(0)"
6482 (and perhaps other times). */
6483 if (target_has_execution)
6484 /* NB: The register write goes through to the target. */
6485 regcache_cpy (regcache, inf_state->registers);
6487 discard_infcall_suspend_state (inf_state);
6491 do_restore_infcall_suspend_state_cleanup (void *state)
6493 restore_infcall_suspend_state (state);
6497 make_cleanup_restore_infcall_suspend_state
6498 (struct infcall_suspend_state *inf_state)
6500 return make_cleanup (do_restore_infcall_suspend_state_cleanup, inf_state);
6504 discard_infcall_suspend_state (struct infcall_suspend_state *inf_state)
6506 regcache_xfree (inf_state->registers);
6507 xfree (inf_state->siginfo_data);
6512 get_infcall_suspend_state_regcache (struct infcall_suspend_state *inf_state)
6514 return inf_state->registers;
6517 /* infcall_control_state contains state regarding gdb's control of the
6518 inferior itself like stepping control. It also contains session state like
6519 the user's currently selected frame. */
6521 struct infcall_control_state
6523 struct thread_control_state thread_control;
6524 struct inferior_control_state inferior_control;
6527 enum stop_stack_kind stop_stack_dummy;
6528 int stopped_by_random_signal;
6529 int stop_after_trap;
6531 /* ID if the selected frame when the inferior function call was made. */
6532 struct frame_id selected_frame_id;
6535 /* Save all of the information associated with the inferior<==>gdb
6538 struct infcall_control_state *
6539 save_infcall_control_state (void)
6541 struct infcall_control_state *inf_status = xmalloc (sizeof (*inf_status));
6542 struct thread_info *tp = inferior_thread ();
6543 struct inferior *inf = current_inferior ();
6545 inf_status->thread_control = tp->control;
6546 inf_status->inferior_control = inf->control;
6548 tp->control.step_resume_breakpoint = NULL;
6549 tp->control.exception_resume_breakpoint = NULL;
6551 /* Save original bpstat chain to INF_STATUS; replace it in TP with copy of
6552 chain. If caller's caller is walking the chain, they'll be happier if we
6553 hand them back the original chain when restore_infcall_control_state is
6555 tp->control.stop_bpstat = bpstat_copy (tp->control.stop_bpstat);
6558 inf_status->stop_stack_dummy = stop_stack_dummy;
6559 inf_status->stopped_by_random_signal = stopped_by_random_signal;
6560 inf_status->stop_after_trap = stop_after_trap;
6562 inf_status->selected_frame_id = get_frame_id (get_selected_frame (NULL));
6568 restore_selected_frame (void *args)
6570 struct frame_id *fid = (struct frame_id *) args;
6571 struct frame_info *frame;
6573 frame = frame_find_by_id (*fid);
6575 /* If inf_status->selected_frame_id is NULL, there was no previously
6579 warning (_("Unable to restore previously selected frame."));
6583 select_frame (frame);
6588 /* Restore inferior session state to INF_STATUS. */
6591 restore_infcall_control_state (struct infcall_control_state *inf_status)
6593 struct thread_info *tp = inferior_thread ();
6594 struct inferior *inf = current_inferior ();
6596 if (tp->control.step_resume_breakpoint)
6597 tp->control.step_resume_breakpoint->disposition = disp_del_at_next_stop;
6599 if (tp->control.exception_resume_breakpoint)
6600 tp->control.exception_resume_breakpoint->disposition
6601 = disp_del_at_next_stop;
6603 /* Handle the bpstat_copy of the chain. */
6604 bpstat_clear (&tp->control.stop_bpstat);
6606 tp->control = inf_status->thread_control;
6607 inf->control = inf_status->inferior_control;
6610 stop_stack_dummy = inf_status->stop_stack_dummy;
6611 stopped_by_random_signal = inf_status->stopped_by_random_signal;
6612 stop_after_trap = inf_status->stop_after_trap;
6614 if (target_has_stack)
6616 /* The point of catch_errors is that if the stack is clobbered,
6617 walking the stack might encounter a garbage pointer and
6618 error() trying to dereference it. */
6620 (restore_selected_frame, &inf_status->selected_frame_id,
6621 "Unable to restore previously selected frame:\n",
6622 RETURN_MASK_ERROR) == 0)
6623 /* Error in restoring the selected frame. Select the innermost
6625 select_frame (get_current_frame ());
6632 do_restore_infcall_control_state_cleanup (void *sts)
6634 restore_infcall_control_state (sts);
6638 make_cleanup_restore_infcall_control_state
6639 (struct infcall_control_state *inf_status)
6641 return make_cleanup (do_restore_infcall_control_state_cleanup, inf_status);
6645 discard_infcall_control_state (struct infcall_control_state *inf_status)
6647 if (inf_status->thread_control.step_resume_breakpoint)
6648 inf_status->thread_control.step_resume_breakpoint->disposition
6649 = disp_del_at_next_stop;
6651 if (inf_status->thread_control.exception_resume_breakpoint)
6652 inf_status->thread_control.exception_resume_breakpoint->disposition
6653 = disp_del_at_next_stop;
6655 /* See save_infcall_control_state for info on stop_bpstat. */
6656 bpstat_clear (&inf_status->thread_control.stop_bpstat);
6662 inferior_has_forked (ptid_t pid, ptid_t *child_pid)
6664 struct target_waitstatus last;
6667 get_last_target_status (&last_ptid, &last);
6669 if (last.kind != TARGET_WAITKIND_FORKED)
6672 if (!ptid_equal (last_ptid, pid))
6675 *child_pid = last.value.related_pid;
6680 inferior_has_vforked (ptid_t pid, ptid_t *child_pid)
6682 struct target_waitstatus last;
6685 get_last_target_status (&last_ptid, &last);
6687 if (last.kind != TARGET_WAITKIND_VFORKED)
6690 if (!ptid_equal (last_ptid, pid))
6693 *child_pid = last.value.related_pid;
6698 inferior_has_execd (ptid_t pid, char **execd_pathname)
6700 struct target_waitstatus last;
6703 get_last_target_status (&last_ptid, &last);
6705 if (last.kind != TARGET_WAITKIND_EXECD)
6708 if (!ptid_equal (last_ptid, pid))
6711 *execd_pathname = xstrdup (last.value.execd_pathname);
6716 inferior_has_called_syscall (ptid_t pid, int *syscall_number)
6718 struct target_waitstatus last;
6721 get_last_target_status (&last_ptid, &last);
6723 if (last.kind != TARGET_WAITKIND_SYSCALL_ENTRY &&
6724 last.kind != TARGET_WAITKIND_SYSCALL_RETURN)
6727 if (!ptid_equal (last_ptid, pid))
6730 *syscall_number = last.value.syscall_number;
6734 /* Oft used ptids */
6736 ptid_t minus_one_ptid;
6738 /* Create a ptid given the necessary PID, LWP, and TID components. */
6741 ptid_build (int pid, long lwp, long tid)
6751 /* Create a ptid from just a pid. */
6754 pid_to_ptid (int pid)
6756 return ptid_build (pid, 0, 0);
6759 /* Fetch the pid (process id) component from a ptid. */
6762 ptid_get_pid (ptid_t ptid)
6767 /* Fetch the lwp (lightweight process) component from a ptid. */
6770 ptid_get_lwp (ptid_t ptid)
6775 /* Fetch the tid (thread id) component from a ptid. */
6778 ptid_get_tid (ptid_t ptid)
6783 /* ptid_equal() is used to test equality of two ptids. */
6786 ptid_equal (ptid_t ptid1, ptid_t ptid2)
6788 return (ptid1.pid == ptid2.pid && ptid1.lwp == ptid2.lwp
6789 && ptid1.tid == ptid2.tid);
6792 /* Returns true if PTID represents a process. */
6795 ptid_is_pid (ptid_t ptid)
6797 if (ptid_equal (minus_one_ptid, ptid))
6799 if (ptid_equal (null_ptid, ptid))
6802 return (ptid_get_lwp (ptid) == 0 && ptid_get_tid (ptid) == 0);
6806 ptid_match (ptid_t ptid, ptid_t filter)
6808 if (ptid_equal (filter, minus_one_ptid))
6810 if (ptid_is_pid (filter)
6811 && ptid_get_pid (ptid) == ptid_get_pid (filter))
6813 else if (ptid_equal (ptid, filter))
6819 /* restore_inferior_ptid() will be used by the cleanup machinery
6820 to restore the inferior_ptid value saved in a call to
6821 save_inferior_ptid(). */
6824 restore_inferior_ptid (void *arg)
6826 ptid_t *saved_ptid_ptr = arg;
6828 inferior_ptid = *saved_ptid_ptr;
6832 /* Save the value of inferior_ptid so that it may be restored by a
6833 later call to do_cleanups(). Returns the struct cleanup pointer
6834 needed for later doing the cleanup. */
6837 save_inferior_ptid (void)
6839 ptid_t *saved_ptid_ptr;
6841 saved_ptid_ptr = xmalloc (sizeof (ptid_t));
6842 *saved_ptid_ptr = inferior_ptid;
6843 return make_cleanup (restore_inferior_ptid, saved_ptid_ptr);
6847 /* User interface for reverse debugging:
6848 Set exec-direction / show exec-direction commands
6849 (returns error unless target implements to_set_exec_direction method). */
6851 enum exec_direction_kind execution_direction = EXEC_FORWARD;
6852 static const char exec_forward[] = "forward";
6853 static const char exec_reverse[] = "reverse";
6854 static const char *exec_direction = exec_forward;
6855 static const char *exec_direction_names[] = {
6862 set_exec_direction_func (char *args, int from_tty,
6863 struct cmd_list_element *cmd)
6865 if (target_can_execute_reverse)
6867 if (!strcmp (exec_direction, exec_forward))
6868 execution_direction = EXEC_FORWARD;
6869 else if (!strcmp (exec_direction, exec_reverse))
6870 execution_direction = EXEC_REVERSE;
6874 exec_direction = exec_forward;
6875 error (_("Target does not support this operation."));
6880 show_exec_direction_func (struct ui_file *out, int from_tty,
6881 struct cmd_list_element *cmd, const char *value)
6883 switch (execution_direction) {
6885 fprintf_filtered (out, _("Forward.\n"));
6888 fprintf_filtered (out, _("Reverse.\n"));
6892 fprintf_filtered (out, _("Forward (target `%s' does not "
6893 "support exec-direction).\n"),
6899 /* User interface for non-stop mode. */
6904 set_non_stop (char *args, int from_tty,
6905 struct cmd_list_element *c)
6907 if (target_has_execution)
6909 non_stop_1 = non_stop;
6910 error (_("Cannot change this setting while the inferior is running."));
6913 non_stop = non_stop_1;
6917 show_non_stop (struct ui_file *file, int from_tty,
6918 struct cmd_list_element *c, const char *value)
6920 fprintf_filtered (file,
6921 _("Controlling the inferior in non-stop mode is %s.\n"),
6926 show_schedule_multiple (struct ui_file *file, int from_tty,
6927 struct cmd_list_element *c, const char *value)
6929 fprintf_filtered (file, _("Resuming the execution of threads "
6930 "of all processes is %s.\n"), value);
6934 _initialize_infrun (void)
6939 add_info ("signals", signals_info, _("\
6940 What debugger does when program gets various signals.\n\
6941 Specify a signal as argument to print info on that signal only."));
6942 add_info_alias ("handle", "signals", 0);
6944 add_com ("handle", class_run, handle_command, _("\
6945 Specify how to handle a signal.\n\
6946 Args are signals and actions to apply to those signals.\n\
6947 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
6948 from 1-15 are allowed for compatibility with old versions of GDB.\n\
6949 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
6950 The special arg \"all\" is recognized to mean all signals except those\n\
6951 used by the debugger, typically SIGTRAP and SIGINT.\n\
6952 Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
6953 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
6954 Stop means reenter debugger if this signal happens (implies print).\n\
6955 Print means print a message if this signal happens.\n\
6956 Pass means let program see this signal; otherwise program doesn't know.\n\
6957 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
6958 Pass and Stop may be combined."));
6961 add_com ("lz", class_info, signals_info, _("\
6962 What debugger does when program gets various signals.\n\
6963 Specify a signal as argument to print info on that signal only."));
6964 add_com ("z", class_run, xdb_handle_command, _("\
6965 Specify how to handle a signal.\n\
6966 Args are signals and actions to apply to those signals.\n\
6967 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
6968 from 1-15 are allowed for compatibility with old versions of GDB.\n\
6969 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
6970 The special arg \"all\" is recognized to mean all signals except those\n\
6971 used by the debugger, typically SIGTRAP and SIGINT.\n\
6972 Recognized actions include \"s\" (toggles between stop and nostop),\n\
6973 \"r\" (toggles between print and noprint), \"i\" (toggles between pass and \
6974 nopass), \"Q\" (noprint)\n\
6975 Stop means reenter debugger if this signal happens (implies print).\n\
6976 Print means print a message if this signal happens.\n\
6977 Pass means let program see this signal; otherwise program doesn't know.\n\
6978 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
6979 Pass and Stop may be combined."));
6983 stop_command = add_cmd ("stop", class_obscure,
6984 not_just_help_class_command, _("\
6985 There is no `stop' command, but you can set a hook on `stop'.\n\
6986 This allows you to set a list of commands to be run each time execution\n\
6987 of the program stops."), &cmdlist);
6989 add_setshow_zinteger_cmd ("infrun", class_maintenance, &debug_infrun, _("\
6990 Set inferior debugging."), _("\
6991 Show inferior debugging."), _("\
6992 When non-zero, inferior specific debugging is enabled."),
6995 &setdebuglist, &showdebuglist);
6997 add_setshow_boolean_cmd ("displaced", class_maintenance,
6998 &debug_displaced, _("\
6999 Set displaced stepping debugging."), _("\
7000 Show displaced stepping debugging."), _("\
7001 When non-zero, displaced stepping specific debugging is enabled."),
7003 show_debug_displaced,
7004 &setdebuglist, &showdebuglist);
7006 add_setshow_boolean_cmd ("non-stop", no_class,
7008 Set whether gdb controls the inferior in non-stop mode."), _("\
7009 Show whether gdb controls the inferior in non-stop mode."), _("\
7010 When debugging a multi-threaded program and this setting is\n\
7011 off (the default, also called all-stop mode), when one thread stops\n\
7012 (for a breakpoint, watchpoint, exception, or similar events), GDB stops\n\
7013 all other threads in the program while you interact with the thread of\n\
7014 interest. When you continue or step a thread, you can allow the other\n\
7015 threads to run, or have them remain stopped, but while you inspect any\n\
7016 thread's state, all threads stop.\n\
7018 In non-stop mode, when one thread stops, other threads can continue\n\
7019 to run freely. You'll be able to step each thread independently,\n\
7020 leave it stopped or free to run as needed."),
7026 numsigs = (int) TARGET_SIGNAL_LAST;
7027 signal_stop = (unsigned char *) xmalloc (sizeof (signal_stop[0]) * numsigs);
7028 signal_print = (unsigned char *)
7029 xmalloc (sizeof (signal_print[0]) * numsigs);
7030 signal_program = (unsigned char *)
7031 xmalloc (sizeof (signal_program[0]) * numsigs);
7032 signal_pass = (unsigned char *)
7033 xmalloc (sizeof (signal_program[0]) * numsigs);
7034 for (i = 0; i < numsigs; i++)
7037 signal_print[i] = 1;
7038 signal_program[i] = 1;
7041 /* Signals caused by debugger's own actions
7042 should not be given to the program afterwards. */
7043 signal_program[TARGET_SIGNAL_TRAP] = 0;
7044 signal_program[TARGET_SIGNAL_INT] = 0;
7046 /* Signals that are not errors should not normally enter the debugger. */
7047 signal_stop[TARGET_SIGNAL_ALRM] = 0;
7048 signal_print[TARGET_SIGNAL_ALRM] = 0;
7049 signal_stop[TARGET_SIGNAL_VTALRM] = 0;
7050 signal_print[TARGET_SIGNAL_VTALRM] = 0;
7051 signal_stop[TARGET_SIGNAL_PROF] = 0;
7052 signal_print[TARGET_SIGNAL_PROF] = 0;
7053 signal_stop[TARGET_SIGNAL_CHLD] = 0;
7054 signal_print[TARGET_SIGNAL_CHLD] = 0;
7055 signal_stop[TARGET_SIGNAL_IO] = 0;
7056 signal_print[TARGET_SIGNAL_IO] = 0;
7057 signal_stop[TARGET_SIGNAL_POLL] = 0;
7058 signal_print[TARGET_SIGNAL_POLL] = 0;
7059 signal_stop[TARGET_SIGNAL_URG] = 0;
7060 signal_print[TARGET_SIGNAL_URG] = 0;
7061 signal_stop[TARGET_SIGNAL_WINCH] = 0;
7062 signal_print[TARGET_SIGNAL_WINCH] = 0;
7063 signal_stop[TARGET_SIGNAL_PRIO] = 0;
7064 signal_print[TARGET_SIGNAL_PRIO] = 0;
7066 /* These signals are used internally by user-level thread
7067 implementations. (See signal(5) on Solaris.) Like the above
7068 signals, a healthy program receives and handles them as part of
7069 its normal operation. */
7070 signal_stop[TARGET_SIGNAL_LWP] = 0;
7071 signal_print[TARGET_SIGNAL_LWP] = 0;
7072 signal_stop[TARGET_SIGNAL_WAITING] = 0;
7073 signal_print[TARGET_SIGNAL_WAITING] = 0;
7074 signal_stop[TARGET_SIGNAL_CANCEL] = 0;
7075 signal_print[TARGET_SIGNAL_CANCEL] = 0;
7077 /* Update cached state. */
7078 signal_cache_update (-1);
7080 add_setshow_zinteger_cmd ("stop-on-solib-events", class_support,
7081 &stop_on_solib_events, _("\
7082 Set stopping for shared library events."), _("\
7083 Show stopping for shared library events."), _("\
7084 If nonzero, gdb will give control to the user when the dynamic linker\n\
7085 notifies gdb of shared library events. The most common event of interest\n\
7086 to the user would be loading/unloading of a new library."),
7088 show_stop_on_solib_events,
7089 &setlist, &showlist);
7091 add_setshow_enum_cmd ("follow-fork-mode", class_run,
7092 follow_fork_mode_kind_names,
7093 &follow_fork_mode_string, _("\
7094 Set debugger response to a program call of fork or vfork."), _("\
7095 Show debugger response to a program call of fork or vfork."), _("\
7096 A fork or vfork creates a new process. follow-fork-mode can be:\n\
7097 parent - the original process is debugged after a fork\n\
7098 child - the new process is debugged after a fork\n\
7099 The unfollowed process will continue to run.\n\
7100 By default, the debugger will follow the parent process."),
7102 show_follow_fork_mode_string,
7103 &setlist, &showlist);
7105 add_setshow_enum_cmd ("follow-exec-mode", class_run,
7106 follow_exec_mode_names,
7107 &follow_exec_mode_string, _("\
7108 Set debugger response to a program call of exec."), _("\
7109 Show debugger response to a program call of exec."), _("\
7110 An exec call replaces the program image of a process.\n\
7112 follow-exec-mode can be:\n\
7114 new - the debugger creates a new inferior and rebinds the process\n\
7115 to this new inferior. The program the process was running before\n\
7116 the exec call can be restarted afterwards by restarting the original\n\
7119 same - the debugger keeps the process bound to the same inferior.\n\
7120 The new executable image replaces the previous executable loaded in\n\
7121 the inferior. Restarting the inferior after the exec call restarts\n\
7122 the executable the process was running after the exec call.\n\
7124 By default, the debugger will use the same inferior."),
7126 show_follow_exec_mode_string,
7127 &setlist, &showlist);
7129 add_setshow_enum_cmd ("scheduler-locking", class_run,
7130 scheduler_enums, &scheduler_mode, _("\
7131 Set mode for locking scheduler during execution."), _("\
7132 Show mode for locking scheduler during execution."), _("\
7133 off == no locking (threads may preempt at any time)\n\
7134 on == full locking (no thread except the current thread may run)\n\
7135 step == scheduler locked during every single-step operation.\n\
7136 In this mode, no other thread may run during a step command.\n\
7137 Other threads may run while stepping over a function call ('next')."),
7138 set_schedlock_func, /* traps on target vector */
7139 show_scheduler_mode,
7140 &setlist, &showlist);
7142 add_setshow_boolean_cmd ("schedule-multiple", class_run, &sched_multi, _("\
7143 Set mode for resuming threads of all processes."), _("\
7144 Show mode for resuming threads of all processes."), _("\
7145 When on, execution commands (such as 'continue' or 'next') resume all\n\
7146 threads of all processes. When off (which is the default), execution\n\
7147 commands only resume the threads of the current process. The set of\n\
7148 threads that are resumed is further refined by the scheduler-locking\n\
7149 mode (see help set scheduler-locking)."),
7151 show_schedule_multiple,
7152 &setlist, &showlist);
7154 add_setshow_boolean_cmd ("step-mode", class_run, &step_stop_if_no_debug, _("\
7155 Set mode of the step operation."), _("\
7156 Show mode of the step operation."), _("\
7157 When set, doing a step over a function without debug line information\n\
7158 will stop at the first instruction of that function. Otherwise, the\n\
7159 function is skipped and the step command stops at a different source line."),
7161 show_step_stop_if_no_debug,
7162 &setlist, &showlist);
7164 add_setshow_enum_cmd ("displaced-stepping", class_run,
7165 can_use_displaced_stepping_enum,
7166 &can_use_displaced_stepping, _("\
7167 Set debugger's willingness to use displaced stepping."), _("\
7168 Show debugger's willingness to use displaced stepping."), _("\
7169 If on, gdb will use displaced stepping to step over breakpoints if it is\n\
7170 supported by the target architecture. If off, gdb will not use displaced\n\
7171 stepping to step over breakpoints, even if such is supported by the target\n\
7172 architecture. If auto (which is the default), gdb will use displaced stepping\n\
7173 if the target architecture supports it and non-stop mode is active, but will not\n\
7174 use it in all-stop mode (see help set non-stop)."),
7176 show_can_use_displaced_stepping,
7177 &setlist, &showlist);
7179 add_setshow_enum_cmd ("exec-direction", class_run, exec_direction_names,
7180 &exec_direction, _("Set direction of execution.\n\
7181 Options are 'forward' or 'reverse'."),
7182 _("Show direction of execution (forward/reverse)."),
7183 _("Tells gdb whether to execute forward or backward."),
7184 set_exec_direction_func, show_exec_direction_func,
7185 &setlist, &showlist);
7187 /* Set/show detach-on-fork: user-settable mode. */
7189 add_setshow_boolean_cmd ("detach-on-fork", class_run, &detach_fork, _("\
7190 Set whether gdb will detach the child of a fork."), _("\
7191 Show whether gdb will detach the child of a fork."), _("\
7192 Tells gdb whether to detach the child of a fork."),
7193 NULL, NULL, &setlist, &showlist);
7195 /* ptid initializations */
7196 null_ptid = ptid_build (0, 0, 0);
7197 minus_one_ptid = ptid_build (-1, 0, 0);
7198 inferior_ptid = null_ptid;
7199 target_last_wait_ptid = minus_one_ptid;
7201 observer_attach_thread_ptid_changed (infrun_thread_ptid_changed);
7202 observer_attach_thread_stop_requested (infrun_thread_stop_requested);
7203 observer_attach_thread_exit (infrun_thread_thread_exit);
7204 observer_attach_inferior_exit (infrun_inferior_exit);
7206 /* Explicitly create without lookup, since that tries to create a
7207 value with a void typed value, and when we get here, gdbarch
7208 isn't initialized yet. At this point, we're quite sure there
7209 isn't another convenience variable of the same name. */
7210 create_internalvar_type_lazy ("_siginfo", siginfo_make_value);
7212 add_setshow_boolean_cmd ("observer", no_class,
7213 &observer_mode_1, _("\
7214 Set whether gdb controls the inferior in observer mode."), _("\
7215 Show whether gdb controls the inferior in observer mode."), _("\
7216 In observer mode, GDB can get data from the inferior, but not\n\
7217 affect its execution. Registers and memory may not be changed,\n\
7218 breakpoints may not be set, and the program cannot be interrupted\n\