1 /* Target-struct-independent code to start (run) and stop an inferior
4 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
5 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004 Free
6 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 2 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, write to the Free Software
22 Foundation, Inc., 59 Temple Place - Suite 330,
23 Boston, MA 02111-1307, USA. */
26 #include "gdb_string.h"
31 #include "breakpoint.h"
35 #include "cli/cli-script.h"
37 #include "gdbthread.h"
47 #include "gdb_assert.h"
49 /* Prototypes for local functions */
51 static void signals_info (char *, int);
53 static void handle_command (char *, int);
55 static void sig_print_info (enum target_signal);
57 static void sig_print_header (void);
59 static void resume_cleanups (void *);
61 static int hook_stop_stub (void *);
63 static int restore_selected_frame (void *);
65 static void build_infrun (void);
67 static int follow_fork (void);
69 static void set_schedlock_func (char *args, int from_tty,
70 struct cmd_list_element *c);
72 struct execution_control_state;
74 static int currently_stepping (struct execution_control_state *ecs);
76 static void xdb_handle_command (char *args, int from_tty);
78 static int prepare_to_proceed (void);
80 void _initialize_infrun (void);
82 int inferior_ignoring_startup_exec_events = 0;
83 int inferior_ignoring_leading_exec_events = 0;
85 /* When set, stop the 'step' command if we enter a function which has
86 no line number information. The normal behavior is that we step
87 over such function. */
88 int step_stop_if_no_debug = 0;
90 /* In asynchronous mode, but simulating synchronous execution. */
92 int sync_execution = 0;
94 /* wait_for_inferior and normal_stop use this to notify the user
95 when the inferior stopped in a different thread than it had been
98 static ptid_t previous_inferior_ptid;
100 /* This is true for configurations that may follow through execl() and
101 similar functions. At present this is only true for HP-UX native. */
103 #ifndef MAY_FOLLOW_EXEC
104 #define MAY_FOLLOW_EXEC (0)
107 static int may_follow_exec = MAY_FOLLOW_EXEC;
109 static int debug_infrun = 0;
111 /* If the program uses ELF-style shared libraries, then calls to
112 functions in shared libraries go through stubs, which live in a
113 table called the PLT (Procedure Linkage Table). The first time the
114 function is called, the stub sends control to the dynamic linker,
115 which looks up the function's real address, patches the stub so
116 that future calls will go directly to the function, and then passes
117 control to the function.
119 If we are stepping at the source level, we don't want to see any of
120 this --- we just want to skip over the stub and the dynamic linker.
121 The simple approach is to single-step until control leaves the
124 However, on some systems (e.g., Red Hat's 5.2 distribution) the
125 dynamic linker calls functions in the shared C library, so you
126 can't tell from the PC alone whether the dynamic linker is still
127 running. In this case, we use a step-resume breakpoint to get us
128 past the dynamic linker, as if we were using "next" to step over a
131 IN_SOLIB_DYNSYM_RESOLVE_CODE says whether we're in the dynamic
132 linker code or not. Normally, this means we single-step. However,
133 if SKIP_SOLIB_RESOLVER then returns non-zero, then its value is an
134 address where we can place a step-resume breakpoint to get past the
135 linker's symbol resolution function.
137 IN_SOLIB_DYNSYM_RESOLVE_CODE can generally be implemented in a
138 pretty portable way, by comparing the PC against the address ranges
139 of the dynamic linker's sections.
141 SKIP_SOLIB_RESOLVER is generally going to be system-specific, since
142 it depends on internal details of the dynamic linker. It's usually
143 not too hard to figure out where to put a breakpoint, but it
144 certainly isn't portable. SKIP_SOLIB_RESOLVER should do plenty of
145 sanity checking. If it can't figure things out, returning zero and
146 getting the (possibly confusing) stepping behavior is better than
147 signalling an error, which will obscure the change in the
150 #ifndef IN_SOLIB_DYNSYM_RESOLVE_CODE
151 #define IN_SOLIB_DYNSYM_RESOLVE_CODE(pc) 0
154 /* This function returns TRUE if pc is the address of an instruction
155 that lies within the dynamic linker (such as the event hook, or the
158 This function must be used only when a dynamic linker event has
159 been caught, and the inferior is being stepped out of the hook, or
160 undefined results are guaranteed. */
162 #ifndef SOLIB_IN_DYNAMIC_LINKER
163 #define SOLIB_IN_DYNAMIC_LINKER(pid,pc) 0
166 /* We can't step off a permanent breakpoint in the ordinary way, because we
167 can't remove it. Instead, we have to advance the PC to the next
168 instruction. This macro should expand to a pointer to a function that
169 does that, or zero if we have no such function. If we don't have a
170 definition for it, we have to report an error. */
171 #ifndef SKIP_PERMANENT_BREAKPOINT
172 #define SKIP_PERMANENT_BREAKPOINT (default_skip_permanent_breakpoint)
174 default_skip_permanent_breakpoint (void)
177 The program is stopped at a permanent breakpoint, but GDB does not know\n\
178 how to step past a permanent breakpoint on this architecture. Try using\n\
179 a command like `return' or `jump' to continue execution.");
184 /* Convert the #defines into values. This is temporary until wfi control
185 flow is completely sorted out. */
187 #ifndef HAVE_STEPPABLE_WATCHPOINT
188 #define HAVE_STEPPABLE_WATCHPOINT 0
190 #undef HAVE_STEPPABLE_WATCHPOINT
191 #define HAVE_STEPPABLE_WATCHPOINT 1
194 #ifndef CANNOT_STEP_HW_WATCHPOINTS
195 #define CANNOT_STEP_HW_WATCHPOINTS 0
197 #undef CANNOT_STEP_HW_WATCHPOINTS
198 #define CANNOT_STEP_HW_WATCHPOINTS 1
201 /* Tables of how to react to signals; the user sets them. */
203 static unsigned char *signal_stop;
204 static unsigned char *signal_print;
205 static unsigned char *signal_program;
207 #define SET_SIGS(nsigs,sigs,flags) \
209 int signum = (nsigs); \
210 while (signum-- > 0) \
211 if ((sigs)[signum]) \
212 (flags)[signum] = 1; \
215 #define UNSET_SIGS(nsigs,sigs,flags) \
217 int signum = (nsigs); \
218 while (signum-- > 0) \
219 if ((sigs)[signum]) \
220 (flags)[signum] = 0; \
223 /* Value to pass to target_resume() to cause all threads to resume */
225 #define RESUME_ALL (pid_to_ptid (-1))
227 /* Command list pointer for the "stop" placeholder. */
229 static struct cmd_list_element *stop_command;
231 /* Nonzero if breakpoints are now inserted in the inferior. */
233 static int breakpoints_inserted;
235 /* Function inferior was in as of last step command. */
237 static struct symbol *step_start_function;
239 /* Nonzero if we are expecting a trace trap and should proceed from it. */
241 static int trap_expected;
244 /* Nonzero if we want to give control to the user when we're notified
245 of shared library events by the dynamic linker. */
246 static int stop_on_solib_events;
249 /* Nonzero means expecting a trace trap
250 and should stop the inferior and return silently when it happens. */
254 /* Nonzero means expecting a trap and caller will handle it themselves.
255 It is used after attach, due to attaching to a process;
256 when running in the shell before the child program has been exec'd;
257 and when running some kinds of remote stuff (FIXME?). */
259 enum stop_kind stop_soon;
261 /* Nonzero if proceed is being used for a "finish" command or a similar
262 situation when stop_registers should be saved. */
264 int proceed_to_finish;
266 /* Save register contents here when about to pop a stack dummy frame,
267 if-and-only-if proceed_to_finish is set.
268 Thus this contains the return value from the called function (assuming
269 values are returned in a register). */
271 struct regcache *stop_registers;
273 /* Nonzero if program stopped due to error trying to insert breakpoints. */
275 static int breakpoints_failed;
277 /* Nonzero after stop if current stack frame should be printed. */
279 static int stop_print_frame;
281 static struct breakpoint *step_resume_breakpoint = NULL;
283 /* On some platforms (e.g., HP-UX), hardware watchpoints have bad
284 interactions with an inferior that is running a kernel function
285 (aka, a system call or "syscall"). wait_for_inferior therefore
286 may have a need to know when the inferior is in a syscall. This
287 is a count of the number of inferior threads which are known to
288 currently be running in a syscall. */
289 static int number_of_threads_in_syscalls;
291 /* This is a cached copy of the pid/waitstatus of the last event
292 returned by target_wait()/deprecated_target_wait_hook(). This
293 information is returned by get_last_target_status(). */
294 static ptid_t target_last_wait_ptid;
295 static struct target_waitstatus target_last_waitstatus;
297 /* This is used to remember when a fork, vfork or exec event
298 was caught by a catchpoint, and thus the event is to be
299 followed at the next resume of the inferior, and not
303 enum target_waitkind kind;
310 char *execd_pathname;
314 static const char follow_fork_mode_child[] = "child";
315 static const char follow_fork_mode_parent[] = "parent";
317 static const char *follow_fork_mode_kind_names[] = {
318 follow_fork_mode_child,
319 follow_fork_mode_parent,
323 static const char *follow_fork_mode_string = follow_fork_mode_parent;
329 int follow_child = (follow_fork_mode_string == follow_fork_mode_child);
331 return target_follow_fork (follow_child);
335 follow_inferior_reset_breakpoints (void)
337 /* Was there a step_resume breakpoint? (There was if the user
338 did a "next" at the fork() call.) If so, explicitly reset its
341 step_resumes are a form of bp that are made to be per-thread.
342 Since we created the step_resume bp when the parent process
343 was being debugged, and now are switching to the child process,
344 from the breakpoint package's viewpoint, that's a switch of
345 "threads". We must update the bp's notion of which thread
346 it is for, or it'll be ignored when it triggers. */
348 if (step_resume_breakpoint)
349 breakpoint_re_set_thread (step_resume_breakpoint);
351 /* Reinsert all breakpoints in the child. The user may have set
352 breakpoints after catching the fork, in which case those
353 were never set in the child, but only in the parent. This makes
354 sure the inserted breakpoints match the breakpoint list. */
356 breakpoint_re_set ();
357 insert_breakpoints ();
360 /* EXECD_PATHNAME is assumed to be non-NULL. */
363 follow_exec (int pid, char *execd_pathname)
366 struct target_ops *tgt;
368 if (!may_follow_exec)
371 /* This is an exec event that we actually wish to pay attention to.
372 Refresh our symbol table to the newly exec'd program, remove any
375 If there are breakpoints, they aren't really inserted now,
376 since the exec() transformed our inferior into a fresh set
379 We want to preserve symbolic breakpoints on the list, since
380 we have hopes that they can be reset after the new a.out's
381 symbol table is read.
383 However, any "raw" breakpoints must be removed from the list
384 (e.g., the solib bp's), since their address is probably invalid
387 And, we DON'T want to call delete_breakpoints() here, since
388 that may write the bp's "shadow contents" (the instruction
389 value that was overwritten witha TRAP instruction). Since
390 we now have a new a.out, those shadow contents aren't valid. */
391 update_breakpoints_after_exec ();
393 /* If there was one, it's gone now. We cannot truly step-to-next
394 statement through an exec(). */
395 step_resume_breakpoint = NULL;
396 step_range_start = 0;
399 /* What is this a.out's name? */
400 printf_unfiltered ("Executing new program: %s\n", execd_pathname);
402 /* We've followed the inferior through an exec. Therefore, the
403 inferior has essentially been killed & reborn. */
405 /* First collect the run target in effect. */
406 tgt = find_run_target ();
407 /* If we can't find one, things are in a very strange state... */
409 error ("Could find run target to save before following exec");
411 gdb_flush (gdb_stdout);
412 target_mourn_inferior ();
413 inferior_ptid = pid_to_ptid (saved_pid);
414 /* Because mourn_inferior resets inferior_ptid. */
417 /* That a.out is now the one to use. */
418 exec_file_attach (execd_pathname, 0);
420 /* And also is where symbols can be found. */
421 symbol_file_add_main (execd_pathname, 0);
423 /* Reset the shared library package. This ensures that we get
424 a shlib event when the child reaches "_start", at which point
425 the dld will have had a chance to initialize the child. */
426 #if defined(SOLIB_RESTART)
429 #ifdef SOLIB_CREATE_INFERIOR_HOOK
430 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
433 /* Reinsert all breakpoints. (Those which were symbolic have
434 been reset to the proper address in the new a.out, thanks
435 to symbol_file_command...) */
436 insert_breakpoints ();
438 /* The next resume of this inferior should bring it to the shlib
439 startup breakpoints. (If the user had also set bp's on
440 "main" from the old (parent) process, then they'll auto-
441 matically get reset there in the new process.) */
444 /* Non-zero if we just simulating a single-step. This is needed
445 because we cannot remove the breakpoints in the inferior process
446 until after the `wait' in `wait_for_inferior'. */
447 static int singlestep_breakpoints_inserted_p = 0;
449 /* The thread we inserted single-step breakpoints for. */
450 static ptid_t singlestep_ptid;
452 /* If another thread hit the singlestep breakpoint, we save the original
453 thread here so that we can resume single-stepping it later. */
454 static ptid_t saved_singlestep_ptid;
455 static int stepping_past_singlestep_breakpoint;
458 /* Things to clean up if we QUIT out of resume (). */
460 resume_cleanups (void *ignore)
465 static const char schedlock_off[] = "off";
466 static const char schedlock_on[] = "on";
467 static const char schedlock_step[] = "step";
468 static const char *scheduler_mode = schedlock_off;
469 static const char *scheduler_enums[] = {
477 set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
479 /* NOTE: cagney/2002-03-17: The deprecated_add_show_from_set()
480 function clones the set command passed as a parameter. The clone
481 operation will include (BUG?) any ``set'' command callback, if
482 present. Commands like ``info set'' call all the ``show''
483 command callbacks. Unfortunately, for ``show'' commands cloned
484 from ``set'', this includes callbacks belonging to ``set''
485 commands. Making this worse, this only occures if
486 deprecated_add_show_from_set() is called after add_cmd_sfunc()
488 if (cmd_type (c) == set_cmd)
489 if (!target_can_lock_scheduler)
491 scheduler_mode = schedlock_off;
492 error ("Target '%s' cannot support this command.", target_shortname);
497 /* Resume the inferior, but allow a QUIT. This is useful if the user
498 wants to interrupt some lengthy single-stepping operation
499 (for child processes, the SIGINT goes to the inferior, and so
500 we get a SIGINT random_signal, but for remote debugging and perhaps
501 other targets, that's not true).
503 STEP nonzero if we should step (zero to continue instead).
504 SIG is the signal to give the inferior (zero for none). */
506 resume (int step, enum target_signal sig)
508 int should_resume = 1;
509 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
513 printf_unfiltered ("infrun: resume (step=%d, signal=%d)\n", step, sig);
515 /* FIXME: calling breakpoint_here_p (read_pc ()) three times! */
518 /* Some targets (e.g. Solaris x86) have a kernel bug when stepping
519 over an instruction that causes a page fault without triggering
520 a hardware watchpoint. The kernel properly notices that it shouldn't
521 stop, because the hardware watchpoint is not triggered, but it forgets
522 the step request and continues the program normally.
523 Work around the problem by removing hardware watchpoints if a step is
524 requested, GDB will check for a hardware watchpoint trigger after the
526 if (CANNOT_STEP_HW_WATCHPOINTS && step && breakpoints_inserted)
527 remove_hw_watchpoints ();
530 /* Normally, by the time we reach `resume', the breakpoints are either
531 removed or inserted, as appropriate. The exception is if we're sitting
532 at a permanent breakpoint; we need to step over it, but permanent
533 breakpoints can't be removed. So we have to test for it here. */
534 if (breakpoint_here_p (read_pc ()) == permanent_breakpoint_here)
535 SKIP_PERMANENT_BREAKPOINT ();
537 if (SOFTWARE_SINGLE_STEP_P () && step)
539 /* Do it the hard way, w/temp breakpoints */
540 SOFTWARE_SINGLE_STEP (sig, 1 /*insert-breakpoints */ );
541 /* ...and don't ask hardware to do it. */
543 /* and do not pull these breakpoints until after a `wait' in
544 `wait_for_inferior' */
545 singlestep_breakpoints_inserted_p = 1;
546 singlestep_ptid = inferior_ptid;
549 /* If there were any forks/vforks/execs that were caught and are
550 now to be followed, then do so. */
551 switch (pending_follow.kind)
553 case TARGET_WAITKIND_FORKED:
554 case TARGET_WAITKIND_VFORKED:
555 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
560 case TARGET_WAITKIND_EXECD:
561 /* follow_exec is called as soon as the exec event is seen. */
562 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
569 /* Install inferior's terminal modes. */
570 target_terminal_inferior ();
576 resume_ptid = RESUME_ALL; /* Default */
578 if ((step || singlestep_breakpoints_inserted_p)
579 && (stepping_past_singlestep_breakpoint
580 || (!breakpoints_inserted && breakpoint_here_p (read_pc ()))))
582 /* Stepping past a breakpoint without inserting breakpoints.
583 Make sure only the current thread gets to step, so that
584 other threads don't sneak past breakpoints while they are
587 resume_ptid = inferior_ptid;
590 if ((scheduler_mode == schedlock_on)
591 || (scheduler_mode == schedlock_step
592 && (step || singlestep_breakpoints_inserted_p)))
594 /* User-settable 'scheduler' mode requires solo thread resume. */
595 resume_ptid = inferior_ptid;
598 if (CANNOT_STEP_BREAKPOINT)
600 /* Most targets can step a breakpoint instruction, thus
601 executing it normally. But if this one cannot, just
602 continue and we will hit it anyway. */
603 if (step && breakpoints_inserted && breakpoint_here_p (read_pc ()))
606 target_resume (resume_ptid, step, sig);
609 discard_cleanups (old_cleanups);
613 /* Clear out all variables saying what to do when inferior is continued.
614 First do this, then set the ones you want, then call `proceed'. */
617 clear_proceed_status (void)
620 step_range_start = 0;
622 step_frame_id = null_frame_id;
623 step_over_calls = STEP_OVER_UNDEBUGGABLE;
625 stop_soon = NO_STOP_QUIETLY;
626 proceed_to_finish = 0;
627 breakpoint_proceeded = 1; /* We're about to proceed... */
629 /* Discard any remaining commands or status from previous stop. */
630 bpstat_clear (&stop_bpstat);
633 /* This should be suitable for any targets that support threads. */
636 prepare_to_proceed (void)
639 struct target_waitstatus wait_status;
641 /* Get the last target status returned by target_wait(). */
642 get_last_target_status (&wait_ptid, &wait_status);
644 /* Make sure we were stopped either at a breakpoint, or because
646 if (wait_status.kind != TARGET_WAITKIND_STOPPED
647 || (wait_status.value.sig != TARGET_SIGNAL_TRAP
648 && wait_status.value.sig != TARGET_SIGNAL_INT))
653 if (!ptid_equal (wait_ptid, minus_one_ptid)
654 && !ptid_equal (inferior_ptid, wait_ptid))
656 /* Switched over from WAIT_PID. */
657 CORE_ADDR wait_pc = read_pc_pid (wait_ptid);
659 if (wait_pc != read_pc ())
661 /* Switch back to WAIT_PID thread. */
662 inferior_ptid = wait_ptid;
664 /* FIXME: This stuff came from switch_to_thread() in
665 thread.c (which should probably be a public function). */
666 flush_cached_frames ();
667 registers_changed ();
669 select_frame (get_current_frame ());
672 /* We return 1 to indicate that there is a breakpoint here,
673 so we need to step over it before continuing to avoid
674 hitting it straight away. */
675 if (breakpoint_here_p (wait_pc))
683 /* Record the pc of the program the last time it stopped. This is
684 just used internally by wait_for_inferior, but need to be preserved
685 over calls to it and cleared when the inferior is started. */
686 static CORE_ADDR prev_pc;
688 /* Basic routine for continuing the program in various fashions.
690 ADDR is the address to resume at, or -1 for resume where stopped.
691 SIGGNAL is the signal to give it, or 0 for none,
692 or -1 for act according to how it stopped.
693 STEP is nonzero if should trap after one instruction.
694 -1 means return after that and print nothing.
695 You should probably set various step_... variables
696 before calling here, if you are stepping.
698 You should call clear_proceed_status before calling proceed. */
701 proceed (CORE_ADDR addr, enum target_signal siggnal, int step)
706 step_start_function = find_pc_function (read_pc ());
710 if (addr == (CORE_ADDR) -1)
712 if (read_pc () == stop_pc && breakpoint_here_p (read_pc ()))
713 /* There is a breakpoint at the address we will resume at,
714 step one instruction before inserting breakpoints so that
715 we do not stop right away (and report a second hit at this
718 else if (gdbarch_single_step_through_delay_p (current_gdbarch)
719 && gdbarch_single_step_through_delay (current_gdbarch,
720 get_current_frame ()))
721 /* We stepped onto an instruction that needs to be stepped
722 again before re-inserting the breakpoint, do so. */
731 printf_unfiltered ("infrun: proceed (addr=0x%s, signal=%d, step=%d)\n",
732 paddr_nz (addr), siggnal, step);
734 /* In a multi-threaded task we may select another thread
735 and then continue or step.
737 But if the old thread was stopped at a breakpoint, it
738 will immediately cause another breakpoint stop without
739 any execution (i.e. it will report a breakpoint hit
740 incorrectly). So we must step over it first.
742 prepare_to_proceed checks the current thread against the thread
743 that reported the most recent event. If a step-over is required
744 it returns TRUE and sets the current thread to the old thread. */
745 if (prepare_to_proceed () && breakpoint_here_p (read_pc ()))
749 /* We will get a trace trap after one instruction.
750 Continue it automatically and insert breakpoints then. */
754 insert_breakpoints ();
755 /* If we get here there was no call to error() in
756 insert breakpoints -- so they were inserted. */
757 breakpoints_inserted = 1;
760 if (siggnal != TARGET_SIGNAL_DEFAULT)
761 stop_signal = siggnal;
762 /* If this signal should not be seen by program,
763 give it zero. Used for debugging signals. */
764 else if (!signal_program[stop_signal])
765 stop_signal = TARGET_SIGNAL_0;
767 annotate_starting ();
769 /* Make sure that output from GDB appears before output from the
771 gdb_flush (gdb_stdout);
773 /* Refresh prev_pc value just prior to resuming. This used to be
774 done in stop_stepping, however, setting prev_pc there did not handle
775 scenarios such as inferior function calls or returning from
776 a function via the return command. In those cases, the prev_pc
777 value was not set properly for subsequent commands. The prev_pc value
778 is used to initialize the starting line number in the ecs. With an
779 invalid value, the gdb next command ends up stopping at the position
780 represented by the next line table entry past our start position.
781 On platforms that generate one line table entry per line, this
782 is not a problem. However, on the ia64, the compiler generates
783 extraneous line table entries that do not increase the line number.
784 When we issue the gdb next command on the ia64 after an inferior call
785 or a return command, we often end up a few instructions forward, still
786 within the original line we started.
788 An attempt was made to have init_execution_control_state () refresh
789 the prev_pc value before calculating the line number. This approach
790 did not work because on platforms that use ptrace, the pc register
791 cannot be read unless the inferior is stopped. At that point, we
792 are not guaranteed the inferior is stopped and so the read_pc ()
793 call can fail. Setting the prev_pc value here ensures the value is
794 updated correctly when the inferior is stopped. */
795 prev_pc = read_pc ();
797 /* Resume inferior. */
798 resume (oneproc || step || bpstat_should_step (), stop_signal);
800 /* Wait for it to stop (if not standalone)
801 and in any case decode why it stopped, and act accordingly. */
802 /* Do this only if we are not using the event loop, or if the target
803 does not support asynchronous execution. */
804 if (!target_can_async_p ())
806 wait_for_inferior ();
812 /* Start remote-debugging of a machine over a serial link. */
818 init_wait_for_inferior ();
819 stop_soon = STOP_QUIETLY;
822 /* Always go on waiting for the target, regardless of the mode. */
823 /* FIXME: cagney/1999-09-23: At present it isn't possible to
824 indicate to wait_for_inferior that a target should timeout if
825 nothing is returned (instead of just blocking). Because of this,
826 targets expecting an immediate response need to, internally, set
827 things up so that the target_wait() is forced to eventually
829 /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
830 differentiate to its caller what the state of the target is after
831 the initial open has been performed. Here we're assuming that
832 the target has stopped. It should be possible to eventually have
833 target_open() return to the caller an indication that the target
834 is currently running and GDB state should be set to the same as
836 wait_for_inferior ();
840 /* Initialize static vars when a new inferior begins. */
843 init_wait_for_inferior (void)
845 /* These are meaningless until the first time through wait_for_inferior. */
848 breakpoints_inserted = 0;
849 breakpoint_init_inferior (inf_starting);
851 /* Don't confuse first call to proceed(). */
852 stop_signal = TARGET_SIGNAL_0;
854 /* The first resume is not following a fork/vfork/exec. */
855 pending_follow.kind = TARGET_WAITKIND_SPURIOUS; /* I.e., none. */
857 /* See wait_for_inferior's handling of SYSCALL_ENTRY/RETURN events. */
858 number_of_threads_in_syscalls = 0;
860 clear_proceed_status ();
862 stepping_past_singlestep_breakpoint = 0;
865 /* This enum encodes possible reasons for doing a target_wait, so that
866 wfi can call target_wait in one place. (Ultimately the call will be
867 moved out of the infinite loop entirely.) */
871 infwait_normal_state,
872 infwait_thread_hop_state,
873 infwait_nullified_state,
874 infwait_nonstep_watch_state
877 /* Why did the inferior stop? Used to print the appropriate messages
878 to the interface from within handle_inferior_event(). */
879 enum inferior_stop_reason
881 /* We don't know why. */
883 /* Step, next, nexti, stepi finished. */
885 /* Found breakpoint. */
887 /* Inferior terminated by signal. */
889 /* Inferior exited. */
891 /* Inferior received signal, and user asked to be notified. */
895 /* This structure contains what used to be local variables in
896 wait_for_inferior. Probably many of them can return to being
897 locals in handle_inferior_event. */
899 struct execution_control_state
901 struct target_waitstatus ws;
902 struct target_waitstatus *wp;
905 CORE_ADDR stop_func_start;
906 CORE_ADDR stop_func_end;
907 char *stop_func_name;
908 struct symtab_and_line sal;
910 struct symtab *current_symtab;
911 int handling_longjmp; /* FIXME */
913 ptid_t saved_inferior_ptid;
914 int step_after_step_resume_breakpoint;
915 int stepping_through_solib_after_catch;
916 bpstat stepping_through_solib_catchpoints;
917 int enable_hw_watchpoints_after_wait;
918 int new_thread_event;
919 struct target_waitstatus tmpstatus;
920 enum infwait_states infwait_state;
925 void init_execution_control_state (struct execution_control_state *ecs);
927 void handle_inferior_event (struct execution_control_state *ecs);
929 static void step_into_function (struct execution_control_state *ecs);
930 static void insert_step_resume_breakpoint_at_frame (struct frame_info *step_frame);
931 static void insert_step_resume_breakpoint_at_sal (struct symtab_and_line sr_sal,
932 struct frame_id sr_id);
933 static void stop_stepping (struct execution_control_state *ecs);
934 static void prepare_to_wait (struct execution_control_state *ecs);
935 static void keep_going (struct execution_control_state *ecs);
936 static void print_stop_reason (enum inferior_stop_reason stop_reason,
939 /* Wait for control to return from inferior to debugger.
940 If inferior gets a signal, we may decide to start it up again
941 instead of returning. That is why there is a loop in this function.
942 When this function actually returns it means the inferior
943 should be left stopped and GDB should read more commands. */
946 wait_for_inferior (void)
948 struct cleanup *old_cleanups;
949 struct execution_control_state ecss;
950 struct execution_control_state *ecs;
953 printf_unfiltered ("infrun: wait_for_inferior\n");
955 old_cleanups = make_cleanup (delete_step_resume_breakpoint,
956 &step_resume_breakpoint);
958 /* wfi still stays in a loop, so it's OK just to take the address of
959 a local to get the ecs pointer. */
962 /* Fill in with reasonable starting values. */
963 init_execution_control_state (ecs);
965 /* We'll update this if & when we switch to a new thread. */
966 previous_inferior_ptid = inferior_ptid;
968 overlay_cache_invalid = 1;
970 /* We have to invalidate the registers BEFORE calling target_wait
971 because they can be loaded from the target while in target_wait.
972 This makes remote debugging a bit more efficient for those
973 targets that provide critical registers as part of their normal
976 registers_changed ();
980 if (deprecated_target_wait_hook)
981 ecs->ptid = deprecated_target_wait_hook (ecs->waiton_ptid, ecs->wp);
983 ecs->ptid = target_wait (ecs->waiton_ptid, ecs->wp);
985 /* Now figure out what to do with the result of the result. */
986 handle_inferior_event (ecs);
988 if (!ecs->wait_some_more)
991 do_cleanups (old_cleanups);
994 /* Asynchronous version of wait_for_inferior. It is called by the
995 event loop whenever a change of state is detected on the file
996 descriptor corresponding to the target. It can be called more than
997 once to complete a single execution command. In such cases we need
998 to keep the state in a global variable ASYNC_ECSS. If it is the
999 last time that this function is called for a single execution
1000 command, then report to the user that the inferior has stopped, and
1001 do the necessary cleanups. */
1003 struct execution_control_state async_ecss;
1004 struct execution_control_state *async_ecs;
1007 fetch_inferior_event (void *client_data)
1009 static struct cleanup *old_cleanups;
1011 async_ecs = &async_ecss;
1013 if (!async_ecs->wait_some_more)
1015 old_cleanups = make_exec_cleanup (delete_step_resume_breakpoint,
1016 &step_resume_breakpoint);
1018 /* Fill in with reasonable starting values. */
1019 init_execution_control_state (async_ecs);
1021 /* We'll update this if & when we switch to a new thread. */
1022 previous_inferior_ptid = inferior_ptid;
1024 overlay_cache_invalid = 1;
1026 /* We have to invalidate the registers BEFORE calling target_wait
1027 because they can be loaded from the target while in target_wait.
1028 This makes remote debugging a bit more efficient for those
1029 targets that provide critical registers as part of their normal
1030 status mechanism. */
1032 registers_changed ();
1035 if (deprecated_target_wait_hook)
1037 deprecated_target_wait_hook (async_ecs->waiton_ptid, async_ecs->wp);
1039 async_ecs->ptid = target_wait (async_ecs->waiton_ptid, async_ecs->wp);
1041 /* Now figure out what to do with the result of the result. */
1042 handle_inferior_event (async_ecs);
1044 if (!async_ecs->wait_some_more)
1046 /* Do only the cleanups that have been added by this
1047 function. Let the continuations for the commands do the rest,
1048 if there are any. */
1049 do_exec_cleanups (old_cleanups);
1051 if (step_multi && stop_step)
1052 inferior_event_handler (INF_EXEC_CONTINUE, NULL);
1054 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
1058 /* Prepare an execution control state for looping through a
1059 wait_for_inferior-type loop. */
1062 init_execution_control_state (struct execution_control_state *ecs)
1064 /* ecs->another_trap? */
1065 ecs->random_signal = 0;
1066 ecs->step_after_step_resume_breakpoint = 0;
1067 ecs->handling_longjmp = 0; /* FIXME */
1068 ecs->stepping_through_solib_after_catch = 0;
1069 ecs->stepping_through_solib_catchpoints = NULL;
1070 ecs->enable_hw_watchpoints_after_wait = 0;
1071 ecs->sal = find_pc_line (prev_pc, 0);
1072 ecs->current_line = ecs->sal.line;
1073 ecs->current_symtab = ecs->sal.symtab;
1074 ecs->infwait_state = infwait_normal_state;
1075 ecs->waiton_ptid = pid_to_ptid (-1);
1076 ecs->wp = &(ecs->ws);
1079 /* Return the cached copy of the last pid/waitstatus returned by
1080 target_wait()/deprecated_target_wait_hook(). The data is actually
1081 cached by handle_inferior_event(), which gets called immediately
1082 after target_wait()/deprecated_target_wait_hook(). */
1085 get_last_target_status (ptid_t *ptidp, struct target_waitstatus *status)
1087 *ptidp = target_last_wait_ptid;
1088 *status = target_last_waitstatus;
1091 /* Switch thread contexts, maintaining "infrun state". */
1094 context_switch (struct execution_control_state *ecs)
1096 /* Caution: it may happen that the new thread (or the old one!)
1097 is not in the thread list. In this case we must not attempt
1098 to "switch context", or we run the risk that our context may
1099 be lost. This may happen as a result of the target module
1100 mishandling thread creation. */
1102 if (in_thread_list (inferior_ptid) && in_thread_list (ecs->ptid))
1103 { /* Perform infrun state context switch: */
1104 /* Save infrun state for the old thread. */
1105 save_infrun_state (inferior_ptid, prev_pc,
1106 trap_expected, step_resume_breakpoint,
1108 step_range_end, &step_frame_id,
1109 ecs->handling_longjmp, ecs->another_trap,
1110 ecs->stepping_through_solib_after_catch,
1111 ecs->stepping_through_solib_catchpoints,
1112 ecs->current_line, ecs->current_symtab);
1114 /* Load infrun state for the new thread. */
1115 load_infrun_state (ecs->ptid, &prev_pc,
1116 &trap_expected, &step_resume_breakpoint,
1118 &step_range_end, &step_frame_id,
1119 &ecs->handling_longjmp, &ecs->another_trap,
1120 &ecs->stepping_through_solib_after_catch,
1121 &ecs->stepping_through_solib_catchpoints,
1122 &ecs->current_line, &ecs->current_symtab);
1124 inferior_ptid = ecs->ptid;
1128 adjust_pc_after_break (struct execution_control_state *ecs)
1130 CORE_ADDR breakpoint_pc;
1132 /* If this target does not decrement the PC after breakpoints, then
1133 we have nothing to do. */
1134 if (DECR_PC_AFTER_BREAK == 0)
1137 /* If we've hit a breakpoint, we'll normally be stopped with SIGTRAP. If
1138 we aren't, just return.
1140 We assume that waitkinds other than TARGET_WAITKIND_STOPPED are not
1141 affected by DECR_PC_AFTER_BREAK. Other waitkinds which are implemented
1142 by software breakpoints should be handled through the normal breakpoint
1145 NOTE drow/2004-01-31: On some targets, breakpoints may generate
1146 different signals (SIGILL or SIGEMT for instance), but it is less
1147 clear where the PC is pointing afterwards. It may not match
1148 DECR_PC_AFTER_BREAK. I don't know any specific target that generates
1149 these signals at breakpoints (the code has been in GDB since at least
1150 1992) so I can not guess how to handle them here.
1152 In earlier versions of GDB, a target with HAVE_NONSTEPPABLE_WATCHPOINTS
1153 would have the PC after hitting a watchpoint affected by
1154 DECR_PC_AFTER_BREAK. I haven't found any target with both of these set
1155 in GDB history, and it seems unlikely to be correct, so
1156 HAVE_NONSTEPPABLE_WATCHPOINTS is not checked here. */
1158 if (ecs->ws.kind != TARGET_WAITKIND_STOPPED)
1161 if (ecs->ws.value.sig != TARGET_SIGNAL_TRAP)
1164 /* Find the location where (if we've hit a breakpoint) the
1165 breakpoint would be. */
1166 breakpoint_pc = read_pc_pid (ecs->ptid) - DECR_PC_AFTER_BREAK;
1168 if (SOFTWARE_SINGLE_STEP_P ())
1170 /* When using software single-step, a SIGTRAP can only indicate
1171 an inserted breakpoint. This actually makes things
1173 if (singlestep_breakpoints_inserted_p)
1174 /* When software single stepping, the instruction at [prev_pc]
1175 is never a breakpoint, but the instruction following
1176 [prev_pc] (in program execution order) always is. Assume
1177 that following instruction was reached and hence a software
1178 breakpoint was hit. */
1179 write_pc_pid (breakpoint_pc, ecs->ptid);
1180 else if (software_breakpoint_inserted_here_p (breakpoint_pc))
1181 /* The inferior was free running (i.e., no single-step
1182 breakpoints inserted) and it hit a software breakpoint. */
1183 write_pc_pid (breakpoint_pc, ecs->ptid);
1187 /* When using hardware single-step, a SIGTRAP is reported for
1188 both a completed single-step and a software breakpoint. Need
1189 to differentiate between the two as the latter needs
1190 adjusting but the former does not. */
1191 if (currently_stepping (ecs))
1193 if (prev_pc == breakpoint_pc
1194 && software_breakpoint_inserted_here_p (breakpoint_pc))
1195 /* Hardware single-stepped a software breakpoint (as
1196 occures when the inferior is resumed with PC pointing
1197 at not-yet-hit software breakpoint). Since the
1198 breakpoint really is executed, the inferior needs to be
1199 backed up to the breakpoint address. */
1200 write_pc_pid (breakpoint_pc, ecs->ptid);
1204 if (software_breakpoint_inserted_here_p (breakpoint_pc))
1205 /* The inferior was free running (i.e., no hardware
1206 single-step and no possibility of a false SIGTRAP) and
1207 hit a software breakpoint. */
1208 write_pc_pid (breakpoint_pc, ecs->ptid);
1213 /* Given an execution control state that has been freshly filled in
1214 by an event from the inferior, figure out what it means and take
1215 appropriate action. */
1217 int stepped_after_stopped_by_watchpoint;
1220 handle_inferior_event (struct execution_control_state *ecs)
1222 /* NOTE: cagney/2003-03-28: If you're looking at this code and
1223 thinking that the variable stepped_after_stopped_by_watchpoint
1224 isn't used, then you're wrong! The macro STOPPED_BY_WATCHPOINT,
1225 defined in the file "config/pa/nm-hppah.h", accesses the variable
1226 indirectly. Mutter something rude about the HP merge. */
1227 int sw_single_step_trap_p = 0;
1228 int stopped_by_watchpoint = -1; /* Mark as unknown. */
1230 /* Cache the last pid/waitstatus. */
1231 target_last_wait_ptid = ecs->ptid;
1232 target_last_waitstatus = *ecs->wp;
1234 adjust_pc_after_break (ecs);
1236 switch (ecs->infwait_state)
1238 case infwait_thread_hop_state:
1240 printf_unfiltered ("infrun: infwait_thread_hop_state\n");
1241 /* Cancel the waiton_ptid. */
1242 ecs->waiton_ptid = pid_to_ptid (-1);
1243 /* See comments where a TARGET_WAITKIND_SYSCALL_RETURN event
1244 is serviced in this loop, below. */
1245 if (ecs->enable_hw_watchpoints_after_wait)
1247 TARGET_ENABLE_HW_WATCHPOINTS (PIDGET (inferior_ptid));
1248 ecs->enable_hw_watchpoints_after_wait = 0;
1250 stepped_after_stopped_by_watchpoint = 0;
1253 case infwait_normal_state:
1255 printf_unfiltered ("infrun: infwait_normal_state\n");
1256 /* See comments where a TARGET_WAITKIND_SYSCALL_RETURN event
1257 is serviced in this loop, below. */
1258 if (ecs->enable_hw_watchpoints_after_wait)
1260 TARGET_ENABLE_HW_WATCHPOINTS (PIDGET (inferior_ptid));
1261 ecs->enable_hw_watchpoints_after_wait = 0;
1263 stepped_after_stopped_by_watchpoint = 0;
1266 case infwait_nullified_state:
1268 printf_unfiltered ("infrun: infwait_nullified_state\n");
1269 stepped_after_stopped_by_watchpoint = 0;
1272 case infwait_nonstep_watch_state:
1274 printf_unfiltered ("infrun: infwait_nonstep_watch_state\n");
1275 insert_breakpoints ();
1277 /* FIXME-maybe: is this cleaner than setting a flag? Does it
1278 handle things like signals arriving and other things happening
1279 in combination correctly? */
1280 stepped_after_stopped_by_watchpoint = 1;
1284 internal_error (__FILE__, __LINE__, "bad switch");
1286 ecs->infwait_state = infwait_normal_state;
1288 flush_cached_frames ();
1290 /* If it's a new process, add it to the thread database */
1292 ecs->new_thread_event = (!ptid_equal (ecs->ptid, inferior_ptid)
1293 && !ptid_equal (ecs->ptid, minus_one_ptid)
1294 && !in_thread_list (ecs->ptid));
1296 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
1297 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED && ecs->new_thread_event)
1299 add_thread (ecs->ptid);
1301 ui_out_text (uiout, "[New ");
1302 ui_out_text (uiout, target_pid_or_tid_to_str (ecs->ptid));
1303 ui_out_text (uiout, "]\n");
1306 switch (ecs->ws.kind)
1308 case TARGET_WAITKIND_LOADED:
1310 printf_unfiltered ("infrun: TARGET_WAITKIND_LOADED\n");
1311 /* Ignore gracefully during startup of the inferior, as it
1312 might be the shell which has just loaded some objects,
1313 otherwise add the symbols for the newly loaded objects. */
1315 if (stop_soon == NO_STOP_QUIETLY)
1317 /* Remove breakpoints, SOLIB_ADD might adjust
1318 breakpoint addresses via breakpoint_re_set. */
1319 if (breakpoints_inserted)
1320 remove_breakpoints ();
1322 /* Check for any newly added shared libraries if we're
1323 supposed to be adding them automatically. Switch
1324 terminal for any messages produced by
1325 breakpoint_re_set. */
1326 target_terminal_ours_for_output ();
1327 /* NOTE: cagney/2003-11-25: Make certain that the target
1328 stack's section table is kept up-to-date. Architectures,
1329 (e.g., PPC64), use the section table to perform
1330 operations such as address => section name and hence
1331 require the table to contain all sections (including
1332 those found in shared libraries). */
1333 /* NOTE: cagney/2003-11-25: Pass current_target and not
1334 exec_ops to SOLIB_ADD. This is because current GDB is
1335 only tooled to propagate section_table changes out from
1336 the "current_target" (see target_resize_to_sections), and
1337 not up from the exec stratum. This, of course, isn't
1338 right. "infrun.c" should only interact with the
1339 exec/process stratum, instead relying on the target stack
1340 to propagate relevant changes (stop, section table
1341 changed, ...) up to other layers. */
1342 SOLIB_ADD (NULL, 0, ¤t_target, auto_solib_add);
1343 target_terminal_inferior ();
1345 /* Reinsert breakpoints and continue. */
1346 if (breakpoints_inserted)
1347 insert_breakpoints ();
1350 resume (0, TARGET_SIGNAL_0);
1351 prepare_to_wait (ecs);
1354 case TARGET_WAITKIND_SPURIOUS:
1356 printf_unfiltered ("infrun: TARGET_WAITKIND_SPURIOUS\n");
1357 resume (0, TARGET_SIGNAL_0);
1358 prepare_to_wait (ecs);
1361 case TARGET_WAITKIND_EXITED:
1363 printf_unfiltered ("infrun: TARGET_WAITKIND_EXITED\n");
1364 target_terminal_ours (); /* Must do this before mourn anyway */
1365 print_stop_reason (EXITED, ecs->ws.value.integer);
1367 /* Record the exit code in the convenience variable $_exitcode, so
1368 that the user can inspect this again later. */
1369 set_internalvar (lookup_internalvar ("_exitcode"),
1370 value_from_longest (builtin_type_int,
1371 (LONGEST) ecs->ws.value.integer));
1372 gdb_flush (gdb_stdout);
1373 target_mourn_inferior ();
1374 singlestep_breakpoints_inserted_p = 0; /*SOFTWARE_SINGLE_STEP_P() */
1375 stop_print_frame = 0;
1376 stop_stepping (ecs);
1379 case TARGET_WAITKIND_SIGNALLED:
1381 printf_unfiltered ("infrun: TARGET_WAITKIND_SIGNALLED\n");
1382 stop_print_frame = 0;
1383 stop_signal = ecs->ws.value.sig;
1384 target_terminal_ours (); /* Must do this before mourn anyway */
1386 /* Note: By definition of TARGET_WAITKIND_SIGNALLED, we shouldn't
1387 reach here unless the inferior is dead. However, for years
1388 target_kill() was called here, which hints that fatal signals aren't
1389 really fatal on some systems. If that's true, then some changes
1391 target_mourn_inferior ();
1393 print_stop_reason (SIGNAL_EXITED, stop_signal);
1394 singlestep_breakpoints_inserted_p = 0; /*SOFTWARE_SINGLE_STEP_P() */
1395 stop_stepping (ecs);
1398 /* The following are the only cases in which we keep going;
1399 the above cases end in a continue or goto. */
1400 case TARGET_WAITKIND_FORKED:
1401 case TARGET_WAITKIND_VFORKED:
1403 printf_unfiltered ("infrun: TARGET_WAITKIND_FORKED\n");
1404 stop_signal = TARGET_SIGNAL_TRAP;
1405 pending_follow.kind = ecs->ws.kind;
1407 pending_follow.fork_event.parent_pid = PIDGET (ecs->ptid);
1408 pending_follow.fork_event.child_pid = ecs->ws.value.related_pid;
1410 stop_pc = read_pc ();
1412 stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid, 0);
1414 ecs->random_signal = !bpstat_explains_signal (stop_bpstat);
1416 /* If no catchpoint triggered for this, then keep going. */
1417 if (ecs->random_signal)
1419 stop_signal = TARGET_SIGNAL_0;
1423 goto process_event_stop_test;
1425 case TARGET_WAITKIND_EXECD:
1427 printf_unfiltered ("infrun: TARGET_WAITKIND_EXECED\n");
1428 stop_signal = TARGET_SIGNAL_TRAP;
1430 /* NOTE drow/2002-12-05: This code should be pushed down into the
1431 target_wait function. Until then following vfork on HP/UX 10.20
1432 is probably broken by this. Of course, it's broken anyway. */
1433 /* Is this a target which reports multiple exec events per actual
1434 call to exec()? (HP-UX using ptrace does, for example.) If so,
1435 ignore all but the last one. Just resume the exec'r, and wait
1436 for the next exec event. */
1437 if (inferior_ignoring_leading_exec_events)
1439 inferior_ignoring_leading_exec_events--;
1440 if (pending_follow.kind == TARGET_WAITKIND_VFORKED)
1441 ENSURE_VFORKING_PARENT_REMAINS_STOPPED (pending_follow.fork_event.
1443 target_resume (ecs->ptid, 0, TARGET_SIGNAL_0);
1444 prepare_to_wait (ecs);
1447 inferior_ignoring_leading_exec_events =
1448 target_reported_exec_events_per_exec_call () - 1;
1450 pending_follow.execd_pathname =
1451 savestring (ecs->ws.value.execd_pathname,
1452 strlen (ecs->ws.value.execd_pathname));
1454 /* This causes the eventpoints and symbol table to be reset. Must
1455 do this now, before trying to determine whether to stop. */
1456 follow_exec (PIDGET (inferior_ptid), pending_follow.execd_pathname);
1457 xfree (pending_follow.execd_pathname);
1459 stop_pc = read_pc_pid (ecs->ptid);
1460 ecs->saved_inferior_ptid = inferior_ptid;
1461 inferior_ptid = ecs->ptid;
1463 stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid, 0);
1465 ecs->random_signal = !bpstat_explains_signal (stop_bpstat);
1466 inferior_ptid = ecs->saved_inferior_ptid;
1468 /* If no catchpoint triggered for this, then keep going. */
1469 if (ecs->random_signal)
1471 stop_signal = TARGET_SIGNAL_0;
1475 goto process_event_stop_test;
1477 /* These syscall events are returned on HP-UX, as part of its
1478 implementation of page-protection-based "hardware" watchpoints.
1479 HP-UX has unfortunate interactions between page-protections and
1480 some system calls. Our solution is to disable hardware watches
1481 when a system call is entered, and reenable them when the syscall
1482 completes. The downside of this is that we may miss the precise
1483 point at which a watched piece of memory is modified. "Oh well."
1485 Note that we may have multiple threads running, which may each
1486 enter syscalls at roughly the same time. Since we don't have a
1487 good notion currently of whether a watched piece of memory is
1488 thread-private, we'd best not have any page-protections active
1489 when any thread is in a syscall. Thus, we only want to reenable
1490 hardware watches when no threads are in a syscall.
1492 Also, be careful not to try to gather much state about a thread
1493 that's in a syscall. It's frequently a losing proposition. */
1494 case TARGET_WAITKIND_SYSCALL_ENTRY:
1496 printf_unfiltered ("infrun: TARGET_WAITKIND_SYSCALL_ENTRY\n");
1497 number_of_threads_in_syscalls++;
1498 if (number_of_threads_in_syscalls == 1)
1500 TARGET_DISABLE_HW_WATCHPOINTS (PIDGET (inferior_ptid));
1502 resume (0, TARGET_SIGNAL_0);
1503 prepare_to_wait (ecs);
1506 /* Before examining the threads further, step this thread to
1507 get it entirely out of the syscall. (We get notice of the
1508 event when the thread is just on the verge of exiting a
1509 syscall. Stepping one instruction seems to get it back
1512 Note that although the logical place to reenable h/w watches
1513 is here, we cannot. We cannot reenable them before stepping
1514 the thread (this causes the next wait on the thread to hang).
1516 Nor can we enable them after stepping until we've done a wait.
1517 Thus, we simply set the flag ecs->enable_hw_watchpoints_after_wait
1518 here, which will be serviced immediately after the target
1520 case TARGET_WAITKIND_SYSCALL_RETURN:
1522 printf_unfiltered ("infrun: TARGET_WAITKIND_SYSCALL_RETURN\n");
1523 target_resume (ecs->ptid, 1, TARGET_SIGNAL_0);
1525 if (number_of_threads_in_syscalls > 0)
1527 number_of_threads_in_syscalls--;
1528 ecs->enable_hw_watchpoints_after_wait =
1529 (number_of_threads_in_syscalls == 0);
1531 prepare_to_wait (ecs);
1534 case TARGET_WAITKIND_STOPPED:
1536 printf_unfiltered ("infrun: TARGET_WAITKIND_STOPPED\n");
1537 stop_signal = ecs->ws.value.sig;
1540 /* We had an event in the inferior, but we are not interested
1541 in handling it at this level. The lower layers have already
1542 done what needs to be done, if anything.
1544 One of the possible circumstances for this is when the
1545 inferior produces output for the console. The inferior has
1546 not stopped, and we are ignoring the event. Another possible
1547 circumstance is any event which the lower level knows will be
1548 reported multiple times without an intervening resume. */
1549 case TARGET_WAITKIND_IGNORE:
1551 printf_unfiltered ("infrun: TARGET_WAITKIND_IGNORE\n");
1552 prepare_to_wait (ecs);
1556 /* We may want to consider not doing a resume here in order to give
1557 the user a chance to play with the new thread. It might be good
1558 to make that a user-settable option. */
1560 /* At this point, all threads are stopped (happens automatically in
1561 either the OS or the native code). Therefore we need to continue
1562 all threads in order to make progress. */
1563 if (ecs->new_thread_event)
1565 target_resume (RESUME_ALL, 0, TARGET_SIGNAL_0);
1566 prepare_to_wait (ecs);
1570 stop_pc = read_pc_pid (ecs->ptid);
1573 printf_unfiltered ("infrun: stop_pc = 0x%s\n", paddr_nz (stop_pc));
1575 if (stepping_past_singlestep_breakpoint)
1577 gdb_assert (SOFTWARE_SINGLE_STEP_P ()
1578 && singlestep_breakpoints_inserted_p);
1579 gdb_assert (ptid_equal (singlestep_ptid, ecs->ptid));
1580 gdb_assert (!ptid_equal (singlestep_ptid, saved_singlestep_ptid));
1582 stepping_past_singlestep_breakpoint = 0;
1584 /* We've either finished single-stepping past the single-step
1585 breakpoint, or stopped for some other reason. It would be nice if
1586 we could tell, but we can't reliably. */
1587 if (stop_signal == TARGET_SIGNAL_TRAP)
1590 printf_unfiltered ("infrun: stepping_past_singlestep_breakpoint\n");
1591 /* Pull the single step breakpoints out of the target. */
1592 SOFTWARE_SINGLE_STEP (0, 0);
1593 singlestep_breakpoints_inserted_p = 0;
1595 ecs->random_signal = 0;
1597 ecs->ptid = saved_singlestep_ptid;
1598 context_switch (ecs);
1599 if (deprecated_context_hook)
1600 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
1602 resume (1, TARGET_SIGNAL_0);
1603 prepare_to_wait (ecs);
1608 stepping_past_singlestep_breakpoint = 0;
1610 /* See if a thread hit a thread-specific breakpoint that was meant for
1611 another thread. If so, then step that thread past the breakpoint,
1614 if (stop_signal == TARGET_SIGNAL_TRAP)
1616 int thread_hop_needed = 0;
1618 /* Check if a regular breakpoint has been hit before checking
1619 for a potential single step breakpoint. Otherwise, GDB will
1620 not see this breakpoint hit when stepping onto breakpoints. */
1621 if (breakpoints_inserted && breakpoint_here_p (stop_pc))
1623 ecs->random_signal = 0;
1624 if (!breakpoint_thread_match (stop_pc, ecs->ptid))
1625 thread_hop_needed = 1;
1627 else if (SOFTWARE_SINGLE_STEP_P () && singlestep_breakpoints_inserted_p)
1629 ecs->random_signal = 0;
1630 /* The call to in_thread_list is necessary because PTIDs sometimes
1631 change when we go from single-threaded to multi-threaded. If
1632 the singlestep_ptid is still in the list, assume that it is
1633 really different from ecs->ptid. */
1634 if (!ptid_equal (singlestep_ptid, ecs->ptid)
1635 && in_thread_list (singlestep_ptid))
1637 thread_hop_needed = 1;
1638 stepping_past_singlestep_breakpoint = 1;
1639 saved_singlestep_ptid = singlestep_ptid;
1643 if (thread_hop_needed)
1648 printf_unfiltered ("infrun: thread_hop_needed\n");
1650 /* Saw a breakpoint, but it was hit by the wrong thread.
1653 if (SOFTWARE_SINGLE_STEP_P () && singlestep_breakpoints_inserted_p)
1655 /* Pull the single step breakpoints out of the target. */
1656 SOFTWARE_SINGLE_STEP (0, 0);
1657 singlestep_breakpoints_inserted_p = 0;
1660 remove_status = remove_breakpoints ();
1661 /* Did we fail to remove breakpoints? If so, try
1662 to set the PC past the bp. (There's at least
1663 one situation in which we can fail to remove
1664 the bp's: On HP-UX's that use ttrace, we can't
1665 change the address space of a vforking child
1666 process until the child exits (well, okay, not
1667 then either :-) or execs. */
1668 if (remove_status != 0)
1670 /* FIXME! This is obviously non-portable! */
1671 write_pc_pid (stop_pc + 4, ecs->ptid);
1672 /* We need to restart all the threads now,
1673 * unles we're running in scheduler-locked mode.
1674 * Use currently_stepping to determine whether to
1677 /* FIXME MVS: is there any reason not to call resume()? */
1678 if (scheduler_mode == schedlock_on)
1679 target_resume (ecs->ptid,
1680 currently_stepping (ecs), TARGET_SIGNAL_0);
1682 target_resume (RESUME_ALL,
1683 currently_stepping (ecs), TARGET_SIGNAL_0);
1684 prepare_to_wait (ecs);
1689 breakpoints_inserted = 0;
1690 if (!ptid_equal (inferior_ptid, ecs->ptid))
1691 context_switch (ecs);
1692 ecs->waiton_ptid = ecs->ptid;
1693 ecs->wp = &(ecs->ws);
1694 ecs->another_trap = 1;
1696 ecs->infwait_state = infwait_thread_hop_state;
1698 registers_changed ();
1702 else if (SOFTWARE_SINGLE_STEP_P () && singlestep_breakpoints_inserted_p)
1704 sw_single_step_trap_p = 1;
1705 ecs->random_signal = 0;
1709 ecs->random_signal = 1;
1711 /* See if something interesting happened to the non-current thread. If
1712 so, then switch to that thread. */
1713 if (!ptid_equal (ecs->ptid, inferior_ptid))
1716 printf_unfiltered ("infrun: context switch\n");
1718 context_switch (ecs);
1720 if (deprecated_context_hook)
1721 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
1723 flush_cached_frames ();
1726 if (SOFTWARE_SINGLE_STEP_P () && singlestep_breakpoints_inserted_p)
1728 /* Pull the single step breakpoints out of the target. */
1729 SOFTWARE_SINGLE_STEP (0, 0);
1730 singlestep_breakpoints_inserted_p = 0;
1733 /* If PC is pointing at a nullified instruction, then step beyond
1734 it before deciding what to do. This is required when we are stepping
1735 through a function where the last instruction is a branch with a
1736 nullified instruction in the delay slot that belongs to the next
1737 line (which may be in a different function altogether). */
1739 if (gdbarch_instruction_nullified (current_gdbarch, current_regcache))
1742 printf_unfiltered ("infrun: instruction nullified\n");
1743 registers_changed ();
1744 target_resume (ecs->ptid, 1, TARGET_SIGNAL_0);
1746 /* We may have received a signal that we want to pass to
1747 the inferior; therefore, we must not clobber the waitstatus
1750 ecs->infwait_state = infwait_nullified_state;
1751 ecs->waiton_ptid = ecs->ptid;
1752 ecs->wp = &(ecs->tmpstatus);
1753 prepare_to_wait (ecs);
1757 /* It may not be necessary to disable the watchpoint to stop over
1758 it. For example, the PA can (with some kernel cooperation)
1759 single step over a watchpoint without disabling the watchpoint. */
1760 if (HAVE_STEPPABLE_WATCHPOINT && STOPPED_BY_WATCHPOINT (ecs->ws))
1763 printf_unfiltered ("infrun: STOPPED_BY_WATCHPOINT\n");
1765 prepare_to_wait (ecs);
1769 /* It is far more common to need to disable a watchpoint to step
1770 the inferior over it. FIXME. What else might a debug
1771 register or page protection watchpoint scheme need here? */
1772 if (HAVE_NONSTEPPABLE_WATCHPOINT && STOPPED_BY_WATCHPOINT (ecs->ws))
1774 /* At this point, we are stopped at an instruction which has
1775 attempted to write to a piece of memory under control of
1776 a watchpoint. The instruction hasn't actually executed
1777 yet. If we were to evaluate the watchpoint expression
1778 now, we would get the old value, and therefore no change
1779 would seem to have occurred.
1781 In order to make watchpoints work `right', we really need
1782 to complete the memory write, and then evaluate the
1783 watchpoint expression. The following code does that by
1784 removing the watchpoint (actually, all watchpoints and
1785 breakpoints), single-stepping the target, re-inserting
1786 watchpoints, and then falling through to let normal
1787 single-step processing handle proceed. Since this
1788 includes evaluating watchpoints, things will come to a
1789 stop in the correct manner. */
1792 printf_unfiltered ("infrun: STOPPED_BY_WATCHPOINT\n");
1793 remove_breakpoints ();
1794 registers_changed ();
1795 target_resume (ecs->ptid, 1, TARGET_SIGNAL_0); /* Single step */
1797 ecs->waiton_ptid = ecs->ptid;
1798 ecs->wp = &(ecs->ws);
1799 ecs->infwait_state = infwait_nonstep_watch_state;
1800 prepare_to_wait (ecs);
1804 /* It may be possible to simply continue after a watchpoint. */
1805 if (HAVE_CONTINUABLE_WATCHPOINT)
1806 stopped_by_watchpoint = STOPPED_BY_WATCHPOINT (ecs->ws);
1808 ecs->stop_func_start = 0;
1809 ecs->stop_func_end = 0;
1810 ecs->stop_func_name = 0;
1811 /* Don't care about return value; stop_func_start and stop_func_name
1812 will both be 0 if it doesn't work. */
1813 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
1814 &ecs->stop_func_start, &ecs->stop_func_end);
1815 ecs->stop_func_start += DEPRECATED_FUNCTION_START_OFFSET;
1816 ecs->another_trap = 0;
1817 bpstat_clear (&stop_bpstat);
1819 stop_stack_dummy = 0;
1820 stop_print_frame = 1;
1821 ecs->random_signal = 0;
1822 stopped_by_random_signal = 0;
1823 breakpoints_failed = 0;
1825 if (stop_signal == TARGET_SIGNAL_TRAP
1827 && gdbarch_single_step_through_delay_p (current_gdbarch)
1828 && currently_stepping (ecs))
1830 /* We're trying to step of a breakpoint. Turns out that we're
1831 also on an instruction that needs to be stepped multiple
1832 times before it's been fully executing. E.g., architectures
1833 with a delay slot. It needs to be stepped twice, once for
1834 the instruction and once for the delay slot. */
1835 int step_through_delay
1836 = gdbarch_single_step_through_delay (current_gdbarch,
1837 get_current_frame ());
1838 if (debug_infrun && step_through_delay)
1839 printf_unfiltered ("infrun: step through delay\n");
1840 if (step_range_end == 0 && step_through_delay)
1842 /* The user issued a continue when stopped at a breakpoint.
1843 Set up for another trap and get out of here. */
1844 ecs->another_trap = 1;
1848 else if (step_through_delay)
1850 /* The user issued a step when stopped at a breakpoint.
1851 Maybe we should stop, maybe we should not - the delay
1852 slot *might* correspond to a line of source. In any
1853 case, don't decide that here, just set ecs->another_trap,
1854 making sure we single-step again before breakpoints are
1856 ecs->another_trap = 1;
1860 /* Look at the cause of the stop, and decide what to do.
1861 The alternatives are:
1862 1) break; to really stop and return to the debugger,
1863 2) drop through to start up again
1864 (set ecs->another_trap to 1 to single step once)
1865 3) set ecs->random_signal to 1, and the decision between 1 and 2
1866 will be made according to the signal handling tables. */
1868 /* First, distinguish signals caused by the debugger from signals
1869 that have to do with the program's own actions. Note that
1870 breakpoint insns may cause SIGTRAP or SIGILL or SIGEMT, depending
1871 on the operating system version. Here we detect when a SIGILL or
1872 SIGEMT is really a breakpoint and change it to SIGTRAP. We do
1873 something similar for SIGSEGV, since a SIGSEGV will be generated
1874 when we're trying to execute a breakpoint instruction on a
1875 non-executable stack. This happens for call dummy breakpoints
1876 for architectures like SPARC that place call dummies on the
1879 if (stop_signal == TARGET_SIGNAL_TRAP
1880 || (breakpoints_inserted
1881 && (stop_signal == TARGET_SIGNAL_ILL
1882 || stop_signal == TARGET_SIGNAL_SEGV
1883 || stop_signal == TARGET_SIGNAL_EMT))
1884 || stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_NO_SIGSTOP)
1886 if (stop_signal == TARGET_SIGNAL_TRAP && stop_after_trap)
1889 printf_unfiltered ("infrun: stopped\n");
1890 stop_print_frame = 0;
1891 stop_stepping (ecs);
1895 /* This is originated from start_remote(), start_inferior() and
1896 shared libraries hook functions. */
1897 if (stop_soon == STOP_QUIETLY)
1900 printf_unfiltered ("infrun: quietly stopped\n");
1901 stop_stepping (ecs);
1905 /* This originates from attach_command(). We need to overwrite
1906 the stop_signal here, because some kernels don't ignore a
1907 SIGSTOP in a subsequent ptrace(PTRACE_SONT,SOGSTOP) call.
1908 See more comments in inferior.h. */
1909 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP)
1911 stop_stepping (ecs);
1912 if (stop_signal == TARGET_SIGNAL_STOP)
1913 stop_signal = TARGET_SIGNAL_0;
1917 /* Don't even think about breakpoints if just proceeded over a
1919 if (stop_signal == TARGET_SIGNAL_TRAP && trap_expected)
1922 printf_unfiltered ("infrun: trap expected\n");
1923 bpstat_clear (&stop_bpstat);
1927 /* See if there is a breakpoint at the current PC. */
1928 stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid,
1929 stopped_by_watchpoint);
1931 /* Following in case break condition called a
1933 stop_print_frame = 1;
1936 /* NOTE: cagney/2003-03-29: These two checks for a random signal
1937 at one stage in the past included checks for an inferior
1938 function call's call dummy's return breakpoint. The original
1939 comment, that went with the test, read:
1941 ``End of a stack dummy. Some systems (e.g. Sony news) give
1942 another signal besides SIGTRAP, so check here as well as
1945 If someone ever tries to get get call dummys on a
1946 non-executable stack to work (where the target would stop
1947 with something like a SIGSEGV), then those tests might need
1948 to be re-instated. Given, however, that the tests were only
1949 enabled when momentary breakpoints were not being used, I
1950 suspect that it won't be the case.
1952 NOTE: kettenis/2004-02-05: Indeed such checks don't seem to
1953 be necessary for call dummies on a non-executable stack on
1956 if (stop_signal == TARGET_SIGNAL_TRAP)
1958 = !(bpstat_explains_signal (stop_bpstat)
1960 || (step_range_end && step_resume_breakpoint == NULL));
1963 ecs->random_signal = !bpstat_explains_signal (stop_bpstat);
1964 if (!ecs->random_signal)
1965 stop_signal = TARGET_SIGNAL_TRAP;
1969 /* When we reach this point, we've pretty much decided
1970 that the reason for stopping must've been a random
1971 (unexpected) signal. */
1974 ecs->random_signal = 1;
1976 process_event_stop_test:
1977 /* For the program's own signals, act according to
1978 the signal handling tables. */
1980 if (ecs->random_signal)
1982 /* Signal not for debugging purposes. */
1986 printf_unfiltered ("infrun: random signal %d\n", stop_signal);
1988 stopped_by_random_signal = 1;
1990 if (signal_print[stop_signal])
1993 target_terminal_ours_for_output ();
1994 print_stop_reason (SIGNAL_RECEIVED, stop_signal);
1996 if (signal_stop[stop_signal])
1998 stop_stepping (ecs);
2001 /* If not going to stop, give terminal back
2002 if we took it away. */
2004 target_terminal_inferior ();
2006 /* Clear the signal if it should not be passed. */
2007 if (signal_program[stop_signal] == 0)
2008 stop_signal = TARGET_SIGNAL_0;
2010 if (prev_pc == read_pc ()
2011 && !breakpoints_inserted
2012 && breakpoint_here_p (read_pc ())
2013 && step_resume_breakpoint == NULL)
2015 /* We were just starting a new sequence, attempting to
2016 single-step off of a breakpoint and expecting a SIGTRAP.
2017 Intead this signal arrives. This signal will take us out
2018 of the stepping range so GDB needs to remember to, when
2019 the signal handler returns, resume stepping off that
2021 /* To simplify things, "continue" is forced to use the same
2022 code paths as single-step - set a breakpoint at the
2023 signal return address and then, once hit, step off that
2025 insert_step_resume_breakpoint_at_frame (get_current_frame ());
2026 ecs->step_after_step_resume_breakpoint = 1;
2028 else if (step_range_end != 0
2029 && stop_signal != TARGET_SIGNAL_0
2030 && stop_pc >= step_range_start && stop_pc < step_range_end
2031 && frame_id_eq (get_frame_id (get_current_frame ()),
2034 /* The inferior is about to take a signal that will take it
2035 out of the single step range. Set a breakpoint at the
2036 current PC (which is presumably where the signal handler
2037 will eventually return) and then allow the inferior to
2040 Note that this is only needed for a signal delivered
2041 while in the single-step range. Nested signals aren't a
2042 problem as they eventually all return. */
2043 insert_step_resume_breakpoint_at_frame (get_current_frame ());
2049 /* Handle cases caused by hitting a breakpoint. */
2051 CORE_ADDR jmp_buf_pc;
2052 struct bpstat_what what;
2054 what = bpstat_what (stop_bpstat);
2056 if (what.call_dummy)
2058 stop_stack_dummy = 1;
2061 switch (what.main_action)
2063 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
2064 /* If we hit the breakpoint at longjmp, disable it for the
2065 duration of this command. Then, install a temporary
2066 breakpoint at the target of the jmp_buf. */
2068 printf_unfiltered ("infrun: BPSTATE_WHAT_SET_LONGJMP_RESUME\n");
2069 disable_longjmp_breakpoint ();
2070 remove_breakpoints ();
2071 breakpoints_inserted = 0;
2072 if (!GET_LONGJMP_TARGET_P () || !GET_LONGJMP_TARGET (&jmp_buf_pc))
2078 /* Need to blow away step-resume breakpoint, as it
2079 interferes with us */
2080 if (step_resume_breakpoint != NULL)
2082 delete_step_resume_breakpoint (&step_resume_breakpoint);
2085 set_longjmp_resume_breakpoint (jmp_buf_pc, null_frame_id);
2086 ecs->handling_longjmp = 1; /* FIXME */
2090 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
2091 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE:
2093 printf_unfiltered ("infrun: BPSTATE_WHAT_CLEAR_LONGJMP_RESUME\n");
2094 remove_breakpoints ();
2095 breakpoints_inserted = 0;
2096 disable_longjmp_breakpoint ();
2097 ecs->handling_longjmp = 0; /* FIXME */
2098 if (what.main_action == BPSTAT_WHAT_CLEAR_LONGJMP_RESUME)
2100 /* else fallthrough */
2102 case BPSTAT_WHAT_SINGLE:
2104 printf_unfiltered ("infrun: BPSTATE_WHAT_SINGLE\n");
2105 if (breakpoints_inserted)
2107 remove_breakpoints ();
2109 breakpoints_inserted = 0;
2110 ecs->another_trap = 1;
2111 /* Still need to check other stuff, at least the case
2112 where we are stepping and step out of the right range. */
2115 case BPSTAT_WHAT_STOP_NOISY:
2117 printf_unfiltered ("infrun: BPSTATE_WHAT_STOP_NOISY\n");
2118 stop_print_frame = 1;
2120 /* We are about to nuke the step_resume_breakpointt via the
2121 cleanup chain, so no need to worry about it here. */
2123 stop_stepping (ecs);
2126 case BPSTAT_WHAT_STOP_SILENT:
2128 printf_unfiltered ("infrun: BPSTATE_WHAT_STOP_SILENT\n");
2129 stop_print_frame = 0;
2131 /* We are about to nuke the step_resume_breakpoin via the
2132 cleanup chain, so no need to worry about it here. */
2134 stop_stepping (ecs);
2137 case BPSTAT_WHAT_STEP_RESUME:
2138 /* This proably demands a more elegant solution, but, yeah
2141 This function's use of the simple variable
2142 step_resume_breakpoint doesn't seem to accomodate
2143 simultaneously active step-resume bp's, although the
2144 breakpoint list certainly can.
2146 If we reach here and step_resume_breakpoint is already
2147 NULL, then apparently we have multiple active
2148 step-resume bp's. We'll just delete the breakpoint we
2149 stopped at, and carry on.
2151 Correction: what the code currently does is delete a
2152 step-resume bp, but it makes no effort to ensure that
2153 the one deleted is the one currently stopped at. MVS */
2156 printf_unfiltered ("infrun: BPSTATE_WHAT_STEP_RESUME\n");
2158 if (step_resume_breakpoint == NULL)
2160 step_resume_breakpoint =
2161 bpstat_find_step_resume_breakpoint (stop_bpstat);
2163 delete_step_resume_breakpoint (&step_resume_breakpoint);
2164 if (ecs->step_after_step_resume_breakpoint)
2166 /* Back when the step-resume breakpoint was inserted, we
2167 were trying to single-step off a breakpoint. Go back
2169 ecs->step_after_step_resume_breakpoint = 0;
2170 remove_breakpoints ();
2171 breakpoints_inserted = 0;
2172 ecs->another_trap = 1;
2178 case BPSTAT_WHAT_THROUGH_SIGTRAMP:
2180 printf_unfiltered ("infrun: BPSTATE_WHAT_THROUGH_SIGTRAMP\n");
2181 /* If were waiting for a trap, hitting the step_resume_break
2182 doesn't count as getting it. */
2184 ecs->another_trap = 1;
2187 case BPSTAT_WHAT_CHECK_SHLIBS:
2188 case BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK:
2192 printf_unfiltered ("infrun: BPSTATE_WHAT_CHECK_SHLIBS\n");
2193 /* Remove breakpoints, we eventually want to step over the
2194 shlib event breakpoint, and SOLIB_ADD might adjust
2195 breakpoint addresses via breakpoint_re_set. */
2196 if (breakpoints_inserted)
2197 remove_breakpoints ();
2198 breakpoints_inserted = 0;
2200 /* Check for any newly added shared libraries if we're
2201 supposed to be adding them automatically. Switch
2202 terminal for any messages produced by
2203 breakpoint_re_set. */
2204 target_terminal_ours_for_output ();
2205 /* NOTE: cagney/2003-11-25: Make certain that the target
2206 stack's section table is kept up-to-date. Architectures,
2207 (e.g., PPC64), use the section table to perform
2208 operations such as address => section name and hence
2209 require the table to contain all sections (including
2210 those found in shared libraries). */
2211 /* NOTE: cagney/2003-11-25: Pass current_target and not
2212 exec_ops to SOLIB_ADD. This is because current GDB is
2213 only tooled to propagate section_table changes out from
2214 the "current_target" (see target_resize_to_sections), and
2215 not up from the exec stratum. This, of course, isn't
2216 right. "infrun.c" should only interact with the
2217 exec/process stratum, instead relying on the target stack
2218 to propagate relevant changes (stop, section table
2219 changed, ...) up to other layers. */
2220 SOLIB_ADD (NULL, 0, ¤t_target, auto_solib_add);
2221 target_terminal_inferior ();
2223 /* Try to reenable shared library breakpoints, additional
2224 code segments in shared libraries might be mapped in now. */
2225 re_enable_breakpoints_in_shlibs ();
2227 /* If requested, stop when the dynamic linker notifies
2228 gdb of events. This allows the user to get control
2229 and place breakpoints in initializer routines for
2230 dynamically loaded objects (among other things). */
2231 if (stop_on_solib_events || stop_stack_dummy)
2233 stop_stepping (ecs);
2237 /* If we stopped due to an explicit catchpoint, then the
2238 (see above) call to SOLIB_ADD pulled in any symbols
2239 from a newly-loaded library, if appropriate.
2241 We do want the inferior to stop, but not where it is
2242 now, which is in the dynamic linker callback. Rather,
2243 we would like it stop in the user's program, just after
2244 the call that caused this catchpoint to trigger. That
2245 gives the user a more useful vantage from which to
2246 examine their program's state. */
2247 else if (what.main_action
2248 == BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK)
2250 /* ??rehrauer: If I could figure out how to get the
2251 right return PC from here, we could just set a temp
2252 breakpoint and resume. I'm not sure we can without
2253 cracking open the dld's shared libraries and sniffing
2254 their unwind tables and text/data ranges, and that's
2255 not a terribly portable notion.
2257 Until that time, we must step the inferior out of the
2258 dld callback, and also out of the dld itself (and any
2259 code or stubs in libdld.sl, such as "shl_load" and
2260 friends) until we reach non-dld code. At that point,
2261 we can stop stepping. */
2262 bpstat_get_triggered_catchpoints (stop_bpstat,
2264 stepping_through_solib_catchpoints);
2265 ecs->stepping_through_solib_after_catch = 1;
2267 /* Be sure to lift all breakpoints, so the inferior does
2268 actually step past this point... */
2269 ecs->another_trap = 1;
2274 /* We want to step over this breakpoint, then keep going. */
2275 ecs->another_trap = 1;
2282 case BPSTAT_WHAT_LAST:
2283 /* Not a real code, but listed here to shut up gcc -Wall. */
2285 case BPSTAT_WHAT_KEEP_CHECKING:
2290 /* We come here if we hit a breakpoint but should not
2291 stop for it. Possibly we also were stepping
2292 and should stop for that. So fall through and
2293 test for stepping. But, if not stepping,
2296 /* Are we stepping to get the inferior out of the dynamic
2297 linker's hook (and possibly the dld itself) after catching
2299 if (ecs->stepping_through_solib_after_catch)
2301 #if defined(SOLIB_ADD)
2302 /* Have we reached our destination? If not, keep going. */
2303 if (SOLIB_IN_DYNAMIC_LINKER (PIDGET (ecs->ptid), stop_pc))
2306 printf_unfiltered ("infrun: stepping in dynamic linker\n");
2307 ecs->another_trap = 1;
2313 printf_unfiltered ("infrun: step past dynamic linker\n");
2314 /* Else, stop and report the catchpoint(s) whose triggering
2315 caused us to begin stepping. */
2316 ecs->stepping_through_solib_after_catch = 0;
2317 bpstat_clear (&stop_bpstat);
2318 stop_bpstat = bpstat_copy (ecs->stepping_through_solib_catchpoints);
2319 bpstat_clear (&ecs->stepping_through_solib_catchpoints);
2320 stop_print_frame = 1;
2321 stop_stepping (ecs);
2325 if (step_resume_breakpoint)
2328 printf_unfiltered ("infrun: step-resume breakpoint\n");
2330 /* Having a step-resume breakpoint overrides anything
2331 else having to do with stepping commands until
2332 that breakpoint is reached. */
2337 if (step_range_end == 0)
2340 printf_unfiltered ("infrun: no stepping, continue\n");
2341 /* Likewise if we aren't even stepping. */
2346 /* If stepping through a line, keep going if still within it.
2348 Note that step_range_end is the address of the first instruction
2349 beyond the step range, and NOT the address of the last instruction
2351 if (stop_pc >= step_range_start && stop_pc < step_range_end)
2354 printf_unfiltered ("infrun: stepping inside range [0x%s-0x%s]\n",
2355 paddr_nz (step_range_start),
2356 paddr_nz (step_range_end));
2361 /* We stepped out of the stepping range. */
2363 /* If we are stepping at the source level and entered the runtime
2364 loader dynamic symbol resolution code, we keep on single stepping
2365 until we exit the run time loader code and reach the callee's
2367 if (step_over_calls == STEP_OVER_UNDEBUGGABLE
2368 && IN_SOLIB_DYNSYM_RESOLVE_CODE (stop_pc))
2370 CORE_ADDR pc_after_resolver =
2371 gdbarch_skip_solib_resolver (current_gdbarch, stop_pc);
2374 printf_unfiltered ("infrun: stepped into dynsym resolve code\n");
2376 if (pc_after_resolver)
2378 /* Set up a step-resume breakpoint at the address
2379 indicated by SKIP_SOLIB_RESOLVER. */
2380 struct symtab_and_line sr_sal;
2382 sr_sal.pc = pc_after_resolver;
2384 insert_step_resume_breakpoint_at_sal (sr_sal, null_frame_id);
2391 if (step_range_end != 1
2392 && (step_over_calls == STEP_OVER_UNDEBUGGABLE
2393 || step_over_calls == STEP_OVER_ALL)
2394 && get_frame_type (get_current_frame ()) == SIGTRAMP_FRAME)
2397 printf_unfiltered ("infrun: stepped into signal trampoline\n");
2398 /* The inferior, while doing a "step" or "next", has ended up in
2399 a signal trampoline (either by a signal being delivered or by
2400 the signal handler returning). Just single-step until the
2401 inferior leaves the trampoline (either by calling the handler
2407 if (frame_id_eq (frame_unwind_id (get_current_frame ()), step_frame_id))
2409 /* It's a subroutine call. */
2410 CORE_ADDR real_stop_pc;
2413 printf_unfiltered ("infrun: stepped into subroutine\n");
2415 if ((step_over_calls == STEP_OVER_NONE)
2416 || ((step_range_end == 1)
2417 && in_prologue (prev_pc, ecs->stop_func_start)))
2419 /* I presume that step_over_calls is only 0 when we're
2420 supposed to be stepping at the assembly language level
2421 ("stepi"). Just stop. */
2422 /* Also, maybe we just did a "nexti" inside a prolog, so we
2423 thought it was a subroutine call but it was not. Stop as
2426 print_stop_reason (END_STEPPING_RANGE, 0);
2427 stop_stepping (ecs);
2431 if (step_over_calls == STEP_OVER_ALL)
2433 /* We're doing a "next", set a breakpoint at callee's return
2434 address (the address at which the caller will
2436 insert_step_resume_breakpoint_at_frame (get_prev_frame (get_current_frame ()));
2441 /* If we are in a function call trampoline (a stub between the
2442 calling routine and the real function), locate the real
2443 function. That's what tells us (a) whether we want to step
2444 into it at all, and (b) what prologue we want to run to the
2445 end of, if we do step into it. */
2446 real_stop_pc = skip_language_trampoline (stop_pc);
2447 if (real_stop_pc == 0)
2448 real_stop_pc = SKIP_TRAMPOLINE_CODE (stop_pc);
2449 if (real_stop_pc != 0)
2450 ecs->stop_func_start = real_stop_pc;
2452 if (IN_SOLIB_DYNSYM_RESOLVE_CODE (ecs->stop_func_start))
2454 struct symtab_and_line sr_sal;
2456 sr_sal.pc = ecs->stop_func_start;
2458 insert_step_resume_breakpoint_at_sal (sr_sal, null_frame_id);
2463 /* If we have line number information for the function we are
2464 thinking of stepping into, step into it.
2466 If there are several symtabs at that PC (e.g. with include
2467 files), just want to know whether *any* of them have line
2468 numbers. find_pc_line handles this. */
2470 struct symtab_and_line tmp_sal;
2472 tmp_sal = find_pc_line (ecs->stop_func_start, 0);
2473 if (tmp_sal.line != 0)
2475 step_into_function (ecs);
2480 /* If we have no line number and the step-stop-if-no-debug is
2481 set, we stop the step so that the user has a chance to switch
2482 in assembly mode. */
2483 if (step_over_calls == STEP_OVER_UNDEBUGGABLE && step_stop_if_no_debug)
2486 print_stop_reason (END_STEPPING_RANGE, 0);
2487 stop_stepping (ecs);
2491 /* Set a breakpoint at callee's return address (the address at
2492 which the caller will resume). */
2493 insert_step_resume_breakpoint_at_frame (get_prev_frame (get_current_frame ()));
2498 /* If we're in the return path from a shared library trampoline,
2499 we want to proceed through the trampoline when stepping. */
2500 if (IN_SOLIB_RETURN_TRAMPOLINE (stop_pc, ecs->stop_func_name))
2502 /* Determine where this trampoline returns. */
2503 CORE_ADDR real_stop_pc = SKIP_TRAMPOLINE_CODE (stop_pc);
2506 printf_unfiltered ("infrun: stepped into solib return tramp\n");
2508 /* Only proceed through if we know where it's going. */
2511 /* And put the step-breakpoint there and go until there. */
2512 struct symtab_and_line sr_sal;
2514 init_sal (&sr_sal); /* initialize to zeroes */
2515 sr_sal.pc = real_stop_pc;
2516 sr_sal.section = find_pc_overlay (sr_sal.pc);
2518 /* Do not specify what the fp should be when we stop since
2519 on some machines the prologue is where the new fp value
2521 insert_step_resume_breakpoint_at_sal (sr_sal, null_frame_id);
2523 /* Restart without fiddling with the step ranges or
2530 /* NOTE: tausq/2004-05-24: This if block used to be done before all
2531 the trampoline processing logic, however, there are some trampolines
2532 that have no names, so we should do trampoline handling first. */
2533 if (step_over_calls == STEP_OVER_UNDEBUGGABLE
2534 && ecs->stop_func_name == NULL)
2537 printf_unfiltered ("infrun: stepped into undebuggable function\n");
2539 /* The inferior just stepped into, or returned to, an
2540 undebuggable function (where there is no symbol, not even a
2541 minimal symbol, corresponding to the address where the
2542 inferior stopped). Since we want to skip this kind of code,
2543 we keep going until the inferior returns from this
2545 if (step_stop_if_no_debug)
2547 /* If we have no line number and the step-stop-if-no-debug
2548 is set, we stop the step so that the user has a chance to
2549 switch in assembly mode. */
2551 print_stop_reason (END_STEPPING_RANGE, 0);
2552 stop_stepping (ecs);
2557 /* Set a breakpoint at callee's return address (the address
2558 at which the caller will resume). */
2559 insert_step_resume_breakpoint_at_frame (get_prev_frame (get_current_frame ()));
2565 if (step_range_end == 1)
2567 /* It is stepi or nexti. We always want to stop stepping after
2570 printf_unfiltered ("infrun: stepi/nexti\n");
2572 print_stop_reason (END_STEPPING_RANGE, 0);
2573 stop_stepping (ecs);
2577 ecs->sal = find_pc_line (stop_pc, 0);
2579 if (ecs->sal.line == 0)
2581 /* We have no line number information. That means to stop
2582 stepping (does this always happen right after one instruction,
2583 when we do "s" in a function with no line numbers,
2584 or can this happen as a result of a return or longjmp?). */
2586 printf_unfiltered ("infrun: no line number info\n");
2588 print_stop_reason (END_STEPPING_RANGE, 0);
2589 stop_stepping (ecs);
2593 if ((stop_pc == ecs->sal.pc)
2594 && (ecs->current_line != ecs->sal.line
2595 || ecs->current_symtab != ecs->sal.symtab))
2597 /* We are at the start of a different line. So stop. Note that
2598 we don't stop if we step into the middle of a different line.
2599 That is said to make things like for (;;) statements work
2602 printf_unfiltered ("infrun: stepped to a different line\n");
2604 print_stop_reason (END_STEPPING_RANGE, 0);
2605 stop_stepping (ecs);
2609 /* We aren't done stepping.
2611 Optimize by setting the stepping range to the line.
2612 (We might not be in the original line, but if we entered a
2613 new line in mid-statement, we continue stepping. This makes
2614 things like for(;;) statements work better.) */
2616 if (ecs->stop_func_end && ecs->sal.end >= ecs->stop_func_end)
2618 /* If this is the last line of the function, don't keep stepping
2619 (it would probably step us out of the function).
2620 This is particularly necessary for a one-line function,
2621 in which after skipping the prologue we better stop even though
2622 we will be in mid-line. */
2624 printf_unfiltered ("infrun: stepped to a different function\n");
2626 print_stop_reason (END_STEPPING_RANGE, 0);
2627 stop_stepping (ecs);
2630 step_range_start = ecs->sal.pc;
2631 step_range_end = ecs->sal.end;
2632 step_frame_id = get_frame_id (get_current_frame ());
2633 ecs->current_line = ecs->sal.line;
2634 ecs->current_symtab = ecs->sal.symtab;
2636 /* In the case where we just stepped out of a function into the
2637 middle of a line of the caller, continue stepping, but
2638 step_frame_id must be modified to current frame */
2640 /* NOTE: cagney/2003-10-16: I think this frame ID inner test is too
2641 generous. It will trigger on things like a step into a frameless
2642 stackless leaf function. I think the logic should instead look
2643 at the unwound frame ID has that should give a more robust
2644 indication of what happened. */
2645 if (step - ID == current - ID)
2646 still stepping in same function;
2647 else if (step - ID == unwind (current - ID))
2648 stepped into a function;
2650 stepped out of a function;
2651 /* Of course this assumes that the frame ID unwind code is robust
2652 and we're willing to introduce frame unwind logic into this
2653 function. Fortunately, those days are nearly upon us. */
2656 struct frame_id current_frame = get_frame_id (get_current_frame ());
2657 if (!(frame_id_inner (current_frame, step_frame_id)))
2658 step_frame_id = current_frame;
2662 printf_unfiltered ("infrun: keep going\n");
2666 /* Are we in the middle of stepping? */
2669 currently_stepping (struct execution_control_state *ecs)
2671 return ((!ecs->handling_longjmp
2672 && ((step_range_end && step_resume_breakpoint == NULL)
2674 || ecs->stepping_through_solib_after_catch
2675 || bpstat_should_step ());
2678 /* Subroutine call with source code we should not step over. Do step
2679 to the first line of code in it. */
2682 step_into_function (struct execution_control_state *ecs)
2685 struct symtab_and_line sr_sal;
2687 s = find_pc_symtab (stop_pc);
2688 if (s && s->language != language_asm)
2689 ecs->stop_func_start = SKIP_PROLOGUE (ecs->stop_func_start);
2691 ecs->sal = find_pc_line (ecs->stop_func_start, 0);
2692 /* Use the step_resume_break to step until the end of the prologue,
2693 even if that involves jumps (as it seems to on the vax under
2695 /* If the prologue ends in the middle of a source line, continue to
2696 the end of that source line (if it is still within the function).
2697 Otherwise, just go to end of prologue. */
2699 && ecs->sal.pc != ecs->stop_func_start
2700 && ecs->sal.end < ecs->stop_func_end)
2701 ecs->stop_func_start = ecs->sal.end;
2703 /* Architectures which require breakpoint adjustment might not be able
2704 to place a breakpoint at the computed address. If so, the test
2705 ``ecs->stop_func_start == stop_pc'' will never succeed. Adjust
2706 ecs->stop_func_start to an address at which a breakpoint may be
2707 legitimately placed.
2709 Note: kevinb/2004-01-19: On FR-V, if this adjustment is not
2710 made, GDB will enter an infinite loop when stepping through
2711 optimized code consisting of VLIW instructions which contain
2712 subinstructions corresponding to different source lines. On
2713 FR-V, it's not permitted to place a breakpoint on any but the
2714 first subinstruction of a VLIW instruction. When a breakpoint is
2715 set, GDB will adjust the breakpoint address to the beginning of
2716 the VLIW instruction. Thus, we need to make the corresponding
2717 adjustment here when computing the stop address. */
2719 if (gdbarch_adjust_breakpoint_address_p (current_gdbarch))
2721 ecs->stop_func_start
2722 = gdbarch_adjust_breakpoint_address (current_gdbarch,
2723 ecs->stop_func_start);
2726 if (ecs->stop_func_start == stop_pc)
2728 /* We are already there: stop now. */
2730 print_stop_reason (END_STEPPING_RANGE, 0);
2731 stop_stepping (ecs);
2736 /* Put the step-breakpoint there and go until there. */
2737 init_sal (&sr_sal); /* initialize to zeroes */
2738 sr_sal.pc = ecs->stop_func_start;
2739 sr_sal.section = find_pc_overlay (ecs->stop_func_start);
2741 /* Do not specify what the fp should be when we stop since on
2742 some machines the prologue is where the new fp value is
2744 insert_step_resume_breakpoint_at_sal (sr_sal, null_frame_id);
2746 /* And make sure stepping stops right away then. */
2747 step_range_end = step_range_start;
2752 /* Insert a "step resume breakpoint" at SR_SAL with frame ID SR_ID.
2753 This is used to both functions and to skip over code. */
2756 insert_step_resume_breakpoint_at_sal (struct symtab_and_line sr_sal,
2757 struct frame_id sr_id)
2759 /* There should never be more than one step-resume breakpoint per
2760 thread, so we should never be setting a new
2761 step_resume_breakpoint when one is already active. */
2762 gdb_assert (step_resume_breakpoint == NULL);
2763 step_resume_breakpoint = set_momentary_breakpoint (sr_sal, sr_id,
2765 if (breakpoints_inserted)
2766 insert_breakpoints ();
2769 /* Insert a "step resume breakpoint" at RETURN_FRAME.pc. This is used
2770 to skip a function (next, skip-no-debug) or signal. It's assumed
2771 that the function/signal handler being skipped eventually returns
2772 to the breakpoint inserted at RETURN_FRAME.pc.
2774 For the skip-function case, the function may have been reached by
2775 either single stepping a call / return / signal-return instruction,
2776 or by hitting a breakpoint. In all cases, the RETURN_FRAME belongs
2777 to the skip-function's caller.
2779 For the signals case, this is called with the interrupted
2780 function's frame. The signal handler, when it returns, will resume
2781 the interrupted function at RETURN_FRAME.pc. */
2784 insert_step_resume_breakpoint_at_frame (struct frame_info *return_frame)
2786 struct symtab_and_line sr_sal;
2788 init_sal (&sr_sal); /* initialize to zeros */
2790 sr_sal.pc = ADDR_BITS_REMOVE (get_frame_pc (return_frame));
2791 sr_sal.section = find_pc_overlay (sr_sal.pc);
2793 insert_step_resume_breakpoint_at_sal (sr_sal, get_frame_id (return_frame));
2797 stop_stepping (struct execution_control_state *ecs)
2800 printf_unfiltered ("infrun: stop_stepping\n");
2802 /* Let callers know we don't want to wait for the inferior anymore. */
2803 ecs->wait_some_more = 0;
2806 /* This function handles various cases where we need to continue
2807 waiting for the inferior. */
2808 /* (Used to be the keep_going: label in the old wait_for_inferior) */
2811 keep_going (struct execution_control_state *ecs)
2813 /* Save the pc before execution, to compare with pc after stop. */
2814 prev_pc = read_pc (); /* Might have been DECR_AFTER_BREAK */
2816 /* If we did not do break;, it means we should keep running the
2817 inferior and not return to debugger. */
2819 if (trap_expected && stop_signal != TARGET_SIGNAL_TRAP)
2821 /* We took a signal (which we are supposed to pass through to
2822 the inferior, else we'd have done a break above) and we
2823 haven't yet gotten our trap. Simply continue. */
2824 resume (currently_stepping (ecs), stop_signal);
2828 /* Either the trap was not expected, but we are continuing
2829 anyway (the user asked that this signal be passed to the
2832 The signal was SIGTRAP, e.g. it was our signal, but we
2833 decided we should resume from it.
2835 We're going to run this baby now! */
2837 if (!breakpoints_inserted && !ecs->another_trap)
2839 breakpoints_failed = insert_breakpoints ();
2840 if (breakpoints_failed)
2842 stop_stepping (ecs);
2845 breakpoints_inserted = 1;
2848 trap_expected = ecs->another_trap;
2850 /* Do not deliver SIGNAL_TRAP (except when the user explicitly
2851 specifies that such a signal should be delivered to the
2854 Typically, this would occure when a user is debugging a
2855 target monitor on a simulator: the target monitor sets a
2856 breakpoint; the simulator encounters this break-point and
2857 halts the simulation handing control to GDB; GDB, noteing
2858 that the break-point isn't valid, returns control back to the
2859 simulator; the simulator then delivers the hardware
2860 equivalent of a SIGNAL_TRAP to the program being debugged. */
2862 if (stop_signal == TARGET_SIGNAL_TRAP && !signal_program[stop_signal])
2863 stop_signal = TARGET_SIGNAL_0;
2866 resume (currently_stepping (ecs), stop_signal);
2869 prepare_to_wait (ecs);
2872 /* This function normally comes after a resume, before
2873 handle_inferior_event exits. It takes care of any last bits of
2874 housekeeping, and sets the all-important wait_some_more flag. */
2877 prepare_to_wait (struct execution_control_state *ecs)
2880 printf_unfiltered ("infrun: prepare_to_wait\n");
2881 if (ecs->infwait_state == infwait_normal_state)
2883 overlay_cache_invalid = 1;
2885 /* We have to invalidate the registers BEFORE calling
2886 target_wait because they can be loaded from the target while
2887 in target_wait. This makes remote debugging a bit more
2888 efficient for those targets that provide critical registers
2889 as part of their normal status mechanism. */
2891 registers_changed ();
2892 ecs->waiton_ptid = pid_to_ptid (-1);
2893 ecs->wp = &(ecs->ws);
2895 /* This is the old end of the while loop. Let everybody know we
2896 want to wait for the inferior some more and get called again
2898 ecs->wait_some_more = 1;
2901 /* Print why the inferior has stopped. We always print something when
2902 the inferior exits, or receives a signal. The rest of the cases are
2903 dealt with later on in normal_stop() and print_it_typical(). Ideally
2904 there should be a call to this function from handle_inferior_event()
2905 each time stop_stepping() is called.*/
2907 print_stop_reason (enum inferior_stop_reason stop_reason, int stop_info)
2909 switch (stop_reason)
2912 /* We don't deal with these cases from handle_inferior_event()
2915 case END_STEPPING_RANGE:
2916 /* We are done with a step/next/si/ni command. */
2917 /* For now print nothing. */
2918 /* Print a message only if not in the middle of doing a "step n"
2919 operation for n > 1 */
2920 if (!step_multi || !stop_step)
2921 if (ui_out_is_mi_like_p (uiout))
2922 ui_out_field_string (uiout, "reason", "end-stepping-range");
2924 case BREAKPOINT_HIT:
2925 /* We found a breakpoint. */
2926 /* For now print nothing. */
2929 /* The inferior was terminated by a signal. */
2930 annotate_signalled ();
2931 if (ui_out_is_mi_like_p (uiout))
2932 ui_out_field_string (uiout, "reason", "exited-signalled");
2933 ui_out_text (uiout, "\nProgram terminated with signal ");
2934 annotate_signal_name ();
2935 ui_out_field_string (uiout, "signal-name",
2936 target_signal_to_name (stop_info));
2937 annotate_signal_name_end ();
2938 ui_out_text (uiout, ", ");
2939 annotate_signal_string ();
2940 ui_out_field_string (uiout, "signal-meaning",
2941 target_signal_to_string (stop_info));
2942 annotate_signal_string_end ();
2943 ui_out_text (uiout, ".\n");
2944 ui_out_text (uiout, "The program no longer exists.\n");
2947 /* The inferior program is finished. */
2948 annotate_exited (stop_info);
2951 if (ui_out_is_mi_like_p (uiout))
2952 ui_out_field_string (uiout, "reason", "exited");
2953 ui_out_text (uiout, "\nProgram exited with code ");
2954 ui_out_field_fmt (uiout, "exit-code", "0%o",
2955 (unsigned int) stop_info);
2956 ui_out_text (uiout, ".\n");
2960 if (ui_out_is_mi_like_p (uiout))
2961 ui_out_field_string (uiout, "reason", "exited-normally");
2962 ui_out_text (uiout, "\nProgram exited normally.\n");
2965 case SIGNAL_RECEIVED:
2966 /* Signal received. The signal table tells us to print about
2969 ui_out_text (uiout, "\nProgram received signal ");
2970 annotate_signal_name ();
2971 if (ui_out_is_mi_like_p (uiout))
2972 ui_out_field_string (uiout, "reason", "signal-received");
2973 ui_out_field_string (uiout, "signal-name",
2974 target_signal_to_name (stop_info));
2975 annotate_signal_name_end ();
2976 ui_out_text (uiout, ", ");
2977 annotate_signal_string ();
2978 ui_out_field_string (uiout, "signal-meaning",
2979 target_signal_to_string (stop_info));
2980 annotate_signal_string_end ();
2981 ui_out_text (uiout, ".\n");
2984 internal_error (__FILE__, __LINE__,
2985 "print_stop_reason: unrecognized enum value");
2991 /* Here to return control to GDB when the inferior stops for real.
2992 Print appropriate messages, remove breakpoints, give terminal our modes.
2994 STOP_PRINT_FRAME nonzero means print the executing frame
2995 (pc, function, args, file, line number and line text).
2996 BREAKPOINTS_FAILED nonzero means stop was due to error
2997 attempting to insert breakpoints. */
3002 struct target_waitstatus last;
3005 get_last_target_status (&last_ptid, &last);
3007 /* As with the notification of thread events, we want to delay
3008 notifying the user that we've switched thread context until
3009 the inferior actually stops.
3011 There's no point in saying anything if the inferior has exited.
3012 Note that SIGNALLED here means "exited with a signal", not
3013 "received a signal". */
3014 if (!ptid_equal (previous_inferior_ptid, inferior_ptid)
3015 && target_has_execution
3016 && last.kind != TARGET_WAITKIND_SIGNALLED
3017 && last.kind != TARGET_WAITKIND_EXITED)
3019 target_terminal_ours_for_output ();
3020 printf_filtered ("[Switching to %s]\n",
3021 target_pid_or_tid_to_str (inferior_ptid));
3022 previous_inferior_ptid = inferior_ptid;
3025 /* NOTE drow/2004-01-17: Is this still necessary? */
3026 /* Make sure that the current_frame's pc is correct. This
3027 is a correction for setting up the frame info before doing
3028 DECR_PC_AFTER_BREAK */
3029 if (target_has_execution)
3030 /* FIXME: cagney/2002-12-06: Has the PC changed? Thanks to
3031 DECR_PC_AFTER_BREAK, the program counter can change. Ask the
3032 frame code to check for this and sort out any resultant mess.
3033 DECR_PC_AFTER_BREAK needs to just go away. */
3034 deprecated_update_frame_pc_hack (get_current_frame (), read_pc ());
3036 if (target_has_execution && breakpoints_inserted)
3038 if (remove_breakpoints ())
3040 target_terminal_ours_for_output ();
3041 printf_filtered ("Cannot remove breakpoints because ");
3042 printf_filtered ("program is no longer writable.\n");
3043 printf_filtered ("It might be running in another process.\n");
3044 printf_filtered ("Further execution is probably impossible.\n");
3047 breakpoints_inserted = 0;
3049 /* Delete the breakpoint we stopped at, if it wants to be deleted.
3050 Delete any breakpoint that is to be deleted at the next stop. */
3052 breakpoint_auto_delete (stop_bpstat);
3054 /* If an auto-display called a function and that got a signal,
3055 delete that auto-display to avoid an infinite recursion. */
3057 if (stopped_by_random_signal)
3058 disable_current_display ();
3060 /* Don't print a message if in the middle of doing a "step n"
3061 operation for n > 1 */
3062 if (step_multi && stop_step)
3065 target_terminal_ours ();
3067 /* Look up the hook_stop and run it (CLI internally handles problem
3068 of stop_command's pre-hook not existing). */
3070 catch_errors (hook_stop_stub, stop_command,
3071 "Error while running hook_stop:\n", RETURN_MASK_ALL);
3073 if (!target_has_stack)
3079 /* Select innermost stack frame - i.e., current frame is frame 0,
3080 and current location is based on that.
3081 Don't do this on return from a stack dummy routine,
3082 or if the program has exited. */
3084 if (!stop_stack_dummy)
3086 select_frame (get_current_frame ());
3088 /* Print current location without a level number, if
3089 we have changed functions or hit a breakpoint.
3090 Print source line if we have one.
3091 bpstat_print() contains the logic deciding in detail
3092 what to print, based on the event(s) that just occurred. */
3094 if (stop_print_frame && deprecated_selected_frame)
3098 int do_frame_printing = 1;
3100 bpstat_ret = bpstat_print (stop_bpstat);
3104 /* FIXME: cagney/2002-12-01: Given that a frame ID does
3105 (or should) carry around the function and does (or
3106 should) use that when doing a frame comparison. */
3108 && frame_id_eq (step_frame_id,
3109 get_frame_id (get_current_frame ()))
3110 && step_start_function == find_pc_function (stop_pc))
3111 source_flag = SRC_LINE; /* finished step, just print source line */
3113 source_flag = SRC_AND_LOC; /* print location and source line */
3115 case PRINT_SRC_AND_LOC:
3116 source_flag = SRC_AND_LOC; /* print location and source line */
3118 case PRINT_SRC_ONLY:
3119 source_flag = SRC_LINE;
3122 source_flag = SRC_LINE; /* something bogus */
3123 do_frame_printing = 0;
3126 internal_error (__FILE__, __LINE__, "Unknown value.");
3128 /* For mi, have the same behavior every time we stop:
3129 print everything but the source line. */
3130 if (ui_out_is_mi_like_p (uiout))
3131 source_flag = LOC_AND_ADDRESS;
3133 if (ui_out_is_mi_like_p (uiout))
3134 ui_out_field_int (uiout, "thread-id",
3135 pid_to_thread_id (inferior_ptid));
3136 /* The behavior of this routine with respect to the source
3138 SRC_LINE: Print only source line
3139 LOCATION: Print only location
3140 SRC_AND_LOC: Print location and source line */
3141 if (do_frame_printing)
3142 print_stack_frame (get_selected_frame (NULL), 0, source_flag);
3144 /* Display the auto-display expressions. */
3149 /* Save the function value return registers, if we care.
3150 We might be about to restore their previous contents. */
3151 if (proceed_to_finish)
3152 /* NB: The copy goes through to the target picking up the value of
3153 all the registers. */
3154 regcache_cpy (stop_registers, current_regcache);
3156 if (stop_stack_dummy)
3158 /* Pop the empty frame that contains the stack dummy. POP_FRAME
3159 ends with a setting of the current frame, so we can use that
3161 frame_pop (get_current_frame ());
3162 /* Set stop_pc to what it was before we called the function.
3163 Can't rely on restore_inferior_status because that only gets
3164 called if we don't stop in the called function. */
3165 stop_pc = read_pc ();
3166 select_frame (get_current_frame ());
3170 annotate_stopped ();
3171 observer_notify_normal_stop (stop_bpstat);
3175 hook_stop_stub (void *cmd)
3177 execute_cmd_pre_hook ((struct cmd_list_element *) cmd);
3182 signal_stop_state (int signo)
3184 return signal_stop[signo];
3188 signal_print_state (int signo)
3190 return signal_print[signo];
3194 signal_pass_state (int signo)
3196 return signal_program[signo];
3200 signal_stop_update (int signo, int state)
3202 int ret = signal_stop[signo];
3203 signal_stop[signo] = state;
3208 signal_print_update (int signo, int state)
3210 int ret = signal_print[signo];
3211 signal_print[signo] = state;
3216 signal_pass_update (int signo, int state)
3218 int ret = signal_program[signo];
3219 signal_program[signo] = state;
3224 sig_print_header (void)
3227 Signal Stop\tPrint\tPass to program\tDescription\n");
3231 sig_print_info (enum target_signal oursig)
3233 char *name = target_signal_to_name (oursig);
3234 int name_padding = 13 - strlen (name);
3236 if (name_padding <= 0)
3239 printf_filtered ("%s", name);
3240 printf_filtered ("%*.*s ", name_padding, name_padding, " ");
3241 printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
3242 printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
3243 printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
3244 printf_filtered ("%s\n", target_signal_to_string (oursig));
3247 /* Specify how various signals in the inferior should be handled. */
3250 handle_command (char *args, int from_tty)
3253 int digits, wordlen;
3254 int sigfirst, signum, siglast;
3255 enum target_signal oursig;
3258 unsigned char *sigs;
3259 struct cleanup *old_chain;
3263 error_no_arg ("signal to handle");
3266 /* Allocate and zero an array of flags for which signals to handle. */
3268 nsigs = (int) TARGET_SIGNAL_LAST;
3269 sigs = (unsigned char *) alloca (nsigs);
3270 memset (sigs, 0, nsigs);
3272 /* Break the command line up into args. */
3274 argv = buildargv (args);
3279 old_chain = make_cleanup_freeargv (argv);
3281 /* Walk through the args, looking for signal oursigs, signal names, and
3282 actions. Signal numbers and signal names may be interspersed with
3283 actions, with the actions being performed for all signals cumulatively
3284 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
3286 while (*argv != NULL)
3288 wordlen = strlen (*argv);
3289 for (digits = 0; isdigit ((*argv)[digits]); digits++)
3293 sigfirst = siglast = -1;
3295 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
3297 /* Apply action to all signals except those used by the
3298 debugger. Silently skip those. */
3301 siglast = nsigs - 1;
3303 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
3305 SET_SIGS (nsigs, sigs, signal_stop);
3306 SET_SIGS (nsigs, sigs, signal_print);
3308 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
3310 UNSET_SIGS (nsigs, sigs, signal_program);
3312 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
3314 SET_SIGS (nsigs, sigs, signal_print);
3316 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
3318 SET_SIGS (nsigs, sigs, signal_program);
3320 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
3322 UNSET_SIGS (nsigs, sigs, signal_stop);
3324 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
3326 SET_SIGS (nsigs, sigs, signal_program);
3328 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
3330 UNSET_SIGS (nsigs, sigs, signal_print);
3331 UNSET_SIGS (nsigs, sigs, signal_stop);
3333 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
3335 UNSET_SIGS (nsigs, sigs, signal_program);
3337 else if (digits > 0)
3339 /* It is numeric. The numeric signal refers to our own
3340 internal signal numbering from target.h, not to host/target
3341 signal number. This is a feature; users really should be
3342 using symbolic names anyway, and the common ones like
3343 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
3345 sigfirst = siglast = (int)
3346 target_signal_from_command (atoi (*argv));
3347 if ((*argv)[digits] == '-')
3350 target_signal_from_command (atoi ((*argv) + digits + 1));
3352 if (sigfirst > siglast)
3354 /* Bet he didn't figure we'd think of this case... */
3362 oursig = target_signal_from_name (*argv);
3363 if (oursig != TARGET_SIGNAL_UNKNOWN)
3365 sigfirst = siglast = (int) oursig;
3369 /* Not a number and not a recognized flag word => complain. */
3370 error ("Unrecognized or ambiguous flag word: \"%s\".", *argv);
3374 /* If any signal numbers or symbol names were found, set flags for
3375 which signals to apply actions to. */
3377 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
3379 switch ((enum target_signal) signum)
3381 case TARGET_SIGNAL_TRAP:
3382 case TARGET_SIGNAL_INT:
3383 if (!allsigs && !sigs[signum])
3385 if (query ("%s is used by the debugger.\n\
3386 Are you sure you want to change it? ", target_signal_to_name ((enum target_signal) signum)))
3392 printf_unfiltered ("Not confirmed, unchanged.\n");
3393 gdb_flush (gdb_stdout);
3397 case TARGET_SIGNAL_0:
3398 case TARGET_SIGNAL_DEFAULT:
3399 case TARGET_SIGNAL_UNKNOWN:
3400 /* Make sure that "all" doesn't print these. */
3411 target_notice_signals (inferior_ptid);
3415 /* Show the results. */
3416 sig_print_header ();
3417 for (signum = 0; signum < nsigs; signum++)
3421 sig_print_info (signum);
3426 do_cleanups (old_chain);
3430 xdb_handle_command (char *args, int from_tty)
3433 struct cleanup *old_chain;
3435 /* Break the command line up into args. */
3437 argv = buildargv (args);
3442 old_chain = make_cleanup_freeargv (argv);
3443 if (argv[1] != (char *) NULL)
3448 bufLen = strlen (argv[0]) + 20;
3449 argBuf = (char *) xmalloc (bufLen);
3453 enum target_signal oursig;
3455 oursig = target_signal_from_name (argv[0]);
3456 memset (argBuf, 0, bufLen);
3457 if (strcmp (argv[1], "Q") == 0)
3458 sprintf (argBuf, "%s %s", argv[0], "noprint");
3461 if (strcmp (argv[1], "s") == 0)
3463 if (!signal_stop[oursig])
3464 sprintf (argBuf, "%s %s", argv[0], "stop");
3466 sprintf (argBuf, "%s %s", argv[0], "nostop");
3468 else if (strcmp (argv[1], "i") == 0)
3470 if (!signal_program[oursig])
3471 sprintf (argBuf, "%s %s", argv[0], "pass");
3473 sprintf (argBuf, "%s %s", argv[0], "nopass");
3475 else if (strcmp (argv[1], "r") == 0)
3477 if (!signal_print[oursig])
3478 sprintf (argBuf, "%s %s", argv[0], "print");
3480 sprintf (argBuf, "%s %s", argv[0], "noprint");
3486 handle_command (argBuf, from_tty);
3488 printf_filtered ("Invalid signal handling flag.\n");
3493 do_cleanups (old_chain);
3496 /* Print current contents of the tables set by the handle command.
3497 It is possible we should just be printing signals actually used
3498 by the current target (but for things to work right when switching
3499 targets, all signals should be in the signal tables). */
3502 signals_info (char *signum_exp, int from_tty)
3504 enum target_signal oursig;
3505 sig_print_header ();
3509 /* First see if this is a symbol name. */
3510 oursig = target_signal_from_name (signum_exp);
3511 if (oursig == TARGET_SIGNAL_UNKNOWN)
3513 /* No, try numeric. */
3515 target_signal_from_command (parse_and_eval_long (signum_exp));
3517 sig_print_info (oursig);
3521 printf_filtered ("\n");
3522 /* These ugly casts brought to you by the native VAX compiler. */
3523 for (oursig = TARGET_SIGNAL_FIRST;
3524 (int) oursig < (int) TARGET_SIGNAL_LAST;
3525 oursig = (enum target_signal) ((int) oursig + 1))
3529 if (oursig != TARGET_SIGNAL_UNKNOWN
3530 && oursig != TARGET_SIGNAL_DEFAULT && oursig != TARGET_SIGNAL_0)
3531 sig_print_info (oursig);
3534 printf_filtered ("\nUse the \"handle\" command to change these tables.\n");
3537 struct inferior_status
3539 enum target_signal stop_signal;
3543 int stop_stack_dummy;
3544 int stopped_by_random_signal;
3546 CORE_ADDR step_range_start;
3547 CORE_ADDR step_range_end;
3548 struct frame_id step_frame_id;
3549 enum step_over_calls_kind step_over_calls;
3550 CORE_ADDR step_resume_break_address;
3551 int stop_after_trap;
3553 struct regcache *stop_registers;
3555 /* These are here because if call_function_by_hand has written some
3556 registers and then decides to call error(), we better not have changed
3558 struct regcache *registers;
3560 /* A frame unique identifier. */
3561 struct frame_id selected_frame_id;
3563 int breakpoint_proceeded;
3564 int restore_stack_info;
3565 int proceed_to_finish;
3569 write_inferior_status_register (struct inferior_status *inf_status, int regno,
3572 int size = register_size (current_gdbarch, regno);
3573 void *buf = alloca (size);
3574 store_signed_integer (buf, size, val);
3575 regcache_raw_write (inf_status->registers, regno, buf);
3578 /* Save all of the information associated with the inferior<==>gdb
3579 connection. INF_STATUS is a pointer to a "struct inferior_status"
3580 (defined in inferior.h). */
3582 struct inferior_status *
3583 save_inferior_status (int restore_stack_info)
3585 struct inferior_status *inf_status = XMALLOC (struct inferior_status);
3587 inf_status->stop_signal = stop_signal;
3588 inf_status->stop_pc = stop_pc;
3589 inf_status->stop_step = stop_step;
3590 inf_status->stop_stack_dummy = stop_stack_dummy;
3591 inf_status->stopped_by_random_signal = stopped_by_random_signal;
3592 inf_status->trap_expected = trap_expected;
3593 inf_status->step_range_start = step_range_start;
3594 inf_status->step_range_end = step_range_end;
3595 inf_status->step_frame_id = step_frame_id;
3596 inf_status->step_over_calls = step_over_calls;
3597 inf_status->stop_after_trap = stop_after_trap;
3598 inf_status->stop_soon = stop_soon;
3599 /* Save original bpstat chain here; replace it with copy of chain.
3600 If caller's caller is walking the chain, they'll be happier if we
3601 hand them back the original chain when restore_inferior_status is
3603 inf_status->stop_bpstat = stop_bpstat;
3604 stop_bpstat = bpstat_copy (stop_bpstat);
3605 inf_status->breakpoint_proceeded = breakpoint_proceeded;
3606 inf_status->restore_stack_info = restore_stack_info;
3607 inf_status->proceed_to_finish = proceed_to_finish;
3609 inf_status->stop_registers = regcache_dup_no_passthrough (stop_registers);
3611 inf_status->registers = regcache_dup (current_regcache);
3613 inf_status->selected_frame_id = get_frame_id (deprecated_selected_frame);
3618 restore_selected_frame (void *args)
3620 struct frame_id *fid = (struct frame_id *) args;
3621 struct frame_info *frame;
3623 frame = frame_find_by_id (*fid);
3625 /* If inf_status->selected_frame_id is NULL, there was no previously
3629 warning ("Unable to restore previously selected frame.\n");
3633 select_frame (frame);
3639 restore_inferior_status (struct inferior_status *inf_status)
3641 stop_signal = inf_status->stop_signal;
3642 stop_pc = inf_status->stop_pc;
3643 stop_step = inf_status->stop_step;
3644 stop_stack_dummy = inf_status->stop_stack_dummy;
3645 stopped_by_random_signal = inf_status->stopped_by_random_signal;
3646 trap_expected = inf_status->trap_expected;
3647 step_range_start = inf_status->step_range_start;
3648 step_range_end = inf_status->step_range_end;
3649 step_frame_id = inf_status->step_frame_id;
3650 step_over_calls = inf_status->step_over_calls;
3651 stop_after_trap = inf_status->stop_after_trap;
3652 stop_soon = inf_status->stop_soon;
3653 bpstat_clear (&stop_bpstat);
3654 stop_bpstat = inf_status->stop_bpstat;
3655 breakpoint_proceeded = inf_status->breakpoint_proceeded;
3656 proceed_to_finish = inf_status->proceed_to_finish;
3658 /* FIXME: Is the restore of stop_registers always needed. */
3659 regcache_xfree (stop_registers);
3660 stop_registers = inf_status->stop_registers;
3662 /* The inferior can be gone if the user types "print exit(0)"
3663 (and perhaps other times). */
3664 if (target_has_execution)
3665 /* NB: The register write goes through to the target. */
3666 regcache_cpy (current_regcache, inf_status->registers);
3667 regcache_xfree (inf_status->registers);
3669 /* FIXME: If we are being called after stopping in a function which
3670 is called from gdb, we should not be trying to restore the
3671 selected frame; it just prints a spurious error message (The
3672 message is useful, however, in detecting bugs in gdb (like if gdb
3673 clobbers the stack)). In fact, should we be restoring the
3674 inferior status at all in that case? . */
3676 if (target_has_stack && inf_status->restore_stack_info)
3678 /* The point of catch_errors is that if the stack is clobbered,
3679 walking the stack might encounter a garbage pointer and
3680 error() trying to dereference it. */
3682 (restore_selected_frame, &inf_status->selected_frame_id,
3683 "Unable to restore previously selected frame:\n",
3684 RETURN_MASK_ERROR) == 0)
3685 /* Error in restoring the selected frame. Select the innermost
3687 select_frame (get_current_frame ());
3695 do_restore_inferior_status_cleanup (void *sts)
3697 restore_inferior_status (sts);
3701 make_cleanup_restore_inferior_status (struct inferior_status *inf_status)
3703 return make_cleanup (do_restore_inferior_status_cleanup, inf_status);
3707 discard_inferior_status (struct inferior_status *inf_status)
3709 /* See save_inferior_status for info on stop_bpstat. */
3710 bpstat_clear (&inf_status->stop_bpstat);
3711 regcache_xfree (inf_status->registers);
3712 regcache_xfree (inf_status->stop_registers);
3717 inferior_has_forked (int pid, int *child_pid)
3719 struct target_waitstatus last;
3722 get_last_target_status (&last_ptid, &last);
3724 if (last.kind != TARGET_WAITKIND_FORKED)
3727 if (ptid_get_pid (last_ptid) != pid)
3730 *child_pid = last.value.related_pid;
3735 inferior_has_vforked (int pid, int *child_pid)
3737 struct target_waitstatus last;
3740 get_last_target_status (&last_ptid, &last);
3742 if (last.kind != TARGET_WAITKIND_VFORKED)
3745 if (ptid_get_pid (last_ptid) != pid)
3748 *child_pid = last.value.related_pid;
3753 inferior_has_execd (int pid, char **execd_pathname)
3755 struct target_waitstatus last;
3758 get_last_target_status (&last_ptid, &last);
3760 if (last.kind != TARGET_WAITKIND_EXECD)
3763 if (ptid_get_pid (last_ptid) != pid)
3766 *execd_pathname = xstrdup (last.value.execd_pathname);
3770 /* Oft used ptids */
3772 ptid_t minus_one_ptid;
3774 /* Create a ptid given the necessary PID, LWP, and TID components. */
3777 ptid_build (int pid, long lwp, long tid)
3787 /* Create a ptid from just a pid. */
3790 pid_to_ptid (int pid)
3792 return ptid_build (pid, 0, 0);
3795 /* Fetch the pid (process id) component from a ptid. */
3798 ptid_get_pid (ptid_t ptid)
3803 /* Fetch the lwp (lightweight process) component from a ptid. */
3806 ptid_get_lwp (ptid_t ptid)
3811 /* Fetch the tid (thread id) component from a ptid. */
3814 ptid_get_tid (ptid_t ptid)
3819 /* ptid_equal() is used to test equality of two ptids. */
3822 ptid_equal (ptid_t ptid1, ptid_t ptid2)
3824 return (ptid1.pid == ptid2.pid && ptid1.lwp == ptid2.lwp
3825 && ptid1.tid == ptid2.tid);
3828 /* restore_inferior_ptid() will be used by the cleanup machinery
3829 to restore the inferior_ptid value saved in a call to
3830 save_inferior_ptid(). */
3833 restore_inferior_ptid (void *arg)
3835 ptid_t *saved_ptid_ptr = arg;
3836 inferior_ptid = *saved_ptid_ptr;
3840 /* Save the value of inferior_ptid so that it may be restored by a
3841 later call to do_cleanups(). Returns the struct cleanup pointer
3842 needed for later doing the cleanup. */
3845 save_inferior_ptid (void)
3847 ptid_t *saved_ptid_ptr;
3849 saved_ptid_ptr = xmalloc (sizeof (ptid_t));
3850 *saved_ptid_ptr = inferior_ptid;
3851 return make_cleanup (restore_inferior_ptid, saved_ptid_ptr);
3858 stop_registers = regcache_xmalloc (current_gdbarch);
3862 _initialize_infrun (void)
3866 struct cmd_list_element *c;
3868 DEPRECATED_REGISTER_GDBARCH_SWAP (stop_registers);
3869 deprecated_register_gdbarch_swap (NULL, 0, build_infrun);
3871 add_info ("signals", signals_info,
3872 "What debugger does when program gets various signals.\n\
3873 Specify a signal as argument to print info on that signal only.");
3874 add_info_alias ("handle", "signals", 0);
3876 add_com ("handle", class_run, handle_command,
3877 concat ("Specify how to handle a signal.\n\
3878 Args are signals and actions to apply to those signals.\n\
3879 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
3880 from 1-15 are allowed for compatibility with old versions of GDB.\n\
3881 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
3882 The special arg \"all\" is recognized to mean all signals except those\n\
3883 used by the debugger, typically SIGTRAP and SIGINT.\n", "Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
3884 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
3885 Stop means reenter debugger if this signal happens (implies print).\n\
3886 Print means print a message if this signal happens.\n\
3887 Pass means let program see this signal; otherwise program doesn't know.\n\
3888 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
3889 Pass and Stop may be combined.", NULL));
3892 add_com ("lz", class_info, signals_info,
3893 "What debugger does when program gets various signals.\n\
3894 Specify a signal as argument to print info on that signal only.");
3895 add_com ("z", class_run, xdb_handle_command,
3896 concat ("Specify how to handle a signal.\n\
3897 Args are signals and actions to apply to those signals.\n\
3898 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
3899 from 1-15 are allowed for compatibility with old versions of GDB.\n\
3900 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
3901 The special arg \"all\" is recognized to mean all signals except those\n\
3902 used by the debugger, typically SIGTRAP and SIGINT.\n", "Recognized actions include \"s\" (toggles between stop and nostop), \n\
3903 \"r\" (toggles between print and noprint), \"i\" (toggles between pass and \
3904 nopass), \"Q\" (noprint)\n\
3905 Stop means reenter debugger if this signal happens (implies print).\n\
3906 Print means print a message if this signal happens.\n\
3907 Pass means let program see this signal; otherwise program doesn't know.\n\
3908 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
3909 Pass and Stop may be combined.", NULL));
3914 add_cmd ("stop", class_obscure, not_just_help_class_command, "There is no `stop' command, but you can set a hook on `stop'.\n\
3915 This allows you to set a list of commands to be run each time execution\n\
3916 of the program stops.", &cmdlist);
3918 add_set_cmd ("infrun", class_maintenance, var_zinteger,
3919 &debug_infrun, "Set inferior debugging.\n\
3920 When non-zero, inferior specific debugging is enabled.", &setdebuglist);
3922 numsigs = (int) TARGET_SIGNAL_LAST;
3923 signal_stop = (unsigned char *) xmalloc (sizeof (signal_stop[0]) * numsigs);
3924 signal_print = (unsigned char *)
3925 xmalloc (sizeof (signal_print[0]) * numsigs);
3926 signal_program = (unsigned char *)
3927 xmalloc (sizeof (signal_program[0]) * numsigs);
3928 for (i = 0; i < numsigs; i++)
3931 signal_print[i] = 1;
3932 signal_program[i] = 1;
3935 /* Signals caused by debugger's own actions
3936 should not be given to the program afterwards. */
3937 signal_program[TARGET_SIGNAL_TRAP] = 0;
3938 signal_program[TARGET_SIGNAL_INT] = 0;
3940 /* Signals that are not errors should not normally enter the debugger. */
3941 signal_stop[TARGET_SIGNAL_ALRM] = 0;
3942 signal_print[TARGET_SIGNAL_ALRM] = 0;
3943 signal_stop[TARGET_SIGNAL_VTALRM] = 0;
3944 signal_print[TARGET_SIGNAL_VTALRM] = 0;
3945 signal_stop[TARGET_SIGNAL_PROF] = 0;
3946 signal_print[TARGET_SIGNAL_PROF] = 0;
3947 signal_stop[TARGET_SIGNAL_CHLD] = 0;
3948 signal_print[TARGET_SIGNAL_CHLD] = 0;
3949 signal_stop[TARGET_SIGNAL_IO] = 0;
3950 signal_print[TARGET_SIGNAL_IO] = 0;
3951 signal_stop[TARGET_SIGNAL_POLL] = 0;
3952 signal_print[TARGET_SIGNAL_POLL] = 0;
3953 signal_stop[TARGET_SIGNAL_URG] = 0;
3954 signal_print[TARGET_SIGNAL_URG] = 0;
3955 signal_stop[TARGET_SIGNAL_WINCH] = 0;
3956 signal_print[TARGET_SIGNAL_WINCH] = 0;
3958 /* These signals are used internally by user-level thread
3959 implementations. (See signal(5) on Solaris.) Like the above
3960 signals, a healthy program receives and handles them as part of
3961 its normal operation. */
3962 signal_stop[TARGET_SIGNAL_LWP] = 0;
3963 signal_print[TARGET_SIGNAL_LWP] = 0;
3964 signal_stop[TARGET_SIGNAL_WAITING] = 0;
3965 signal_print[TARGET_SIGNAL_WAITING] = 0;
3966 signal_stop[TARGET_SIGNAL_CANCEL] = 0;
3967 signal_print[TARGET_SIGNAL_CANCEL] = 0;
3970 deprecated_add_show_from_set
3971 (add_set_cmd ("stop-on-solib-events", class_support, var_zinteger,
3972 (char *) &stop_on_solib_events,
3973 "Set stopping for shared library events.\n\
3974 If nonzero, gdb will give control to the user when the dynamic linker\n\
3975 notifies gdb of shared library events. The most common event of interest\n\
3976 to the user would be loading/unloading of a new library.\n", &setlist), &showlist);
3979 c = add_set_enum_cmd ("follow-fork-mode",
3981 follow_fork_mode_kind_names, &follow_fork_mode_string,
3982 "Set debugger response to a program call of fork \
3984 A fork or vfork creates a new process. follow-fork-mode can be:\n\
3985 parent - the original process is debugged after a fork\n\
3986 child - the new process is debugged after a fork\n\
3987 The unfollowed process will continue to run.\n\
3988 By default, the debugger will follow the parent process.", &setlist);
3989 deprecated_add_show_from_set (c, &showlist);
3991 c = add_set_enum_cmd ("scheduler-locking", class_run, scheduler_enums, /* array of string names */
3992 &scheduler_mode, /* current mode */
3993 "Set mode for locking scheduler during execution.\n\
3994 off == no locking (threads may preempt at any time)\n\
3995 on == full locking (no thread except the current thread may run)\n\
3996 step == scheduler locked during every single-step operation.\n\
3997 In this mode, no other thread may run during a step command.\n\
3998 Other threads may run while stepping over a function call ('next').", &setlist);
4000 set_cmd_sfunc (c, set_schedlock_func); /* traps on target vector */
4001 deprecated_add_show_from_set (c, &showlist);
4003 c = add_set_cmd ("step-mode", class_run,
4004 var_boolean, (char *) &step_stop_if_no_debug,
4005 "Set mode of the step operation. When set, doing a step over a\n\
4006 function without debug line information will stop at the first\n\
4007 instruction of that function. Otherwise, the function is skipped and\n\
4008 the step command stops at a different source line.", &setlist);
4009 deprecated_add_show_from_set (c, &showlist);
4011 /* ptid initializations */
4012 null_ptid = ptid_build (0, 0, 0);
4013 minus_one_ptid = ptid_build (-1, 0, 0);
4014 inferior_ptid = null_ptid;
4015 target_last_wait_ptid = minus_one_ptid;