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 void delete_breakpoint_current_contents (void *);
65 static int restore_selected_frame (void *);
67 static void build_infrun (void);
69 static int follow_fork (void);
71 static void set_schedlock_func (char *args, int from_tty,
72 struct cmd_list_element *c);
74 struct execution_control_state;
76 static int currently_stepping (struct execution_control_state *ecs);
78 static void xdb_handle_command (char *args, int from_tty);
80 static int prepare_to_proceed (void);
82 void _initialize_infrun (void);
84 int inferior_ignoring_startup_exec_events = 0;
85 int inferior_ignoring_leading_exec_events = 0;
87 /* When set, stop the 'step' command if we enter a function which has
88 no line number information. The normal behavior is that we step
89 over such function. */
90 int step_stop_if_no_debug = 0;
92 /* In asynchronous mode, but simulating synchronous execution. */
94 int sync_execution = 0;
96 /* wait_for_inferior and normal_stop use this to notify the user
97 when the inferior stopped in a different thread than it had been
100 static ptid_t previous_inferior_ptid;
102 /* This is true for configurations that may follow through execl() and
103 similar functions. At present this is only true for HP-UX native. */
105 #ifndef MAY_FOLLOW_EXEC
106 #define MAY_FOLLOW_EXEC (0)
109 static int may_follow_exec = MAY_FOLLOW_EXEC;
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 /* On MIPS16, a function that returns a floating point value may call
167 a library helper function to copy the return value to a floating point
168 register. The IGNORE_HELPER_CALL macro returns non-zero if we
169 should ignore (i.e. step over) this function call. */
170 #ifndef IGNORE_HELPER_CALL
171 #define IGNORE_HELPER_CALL(pc) 0
174 /* On some systems, the PC may be left pointing at an instruction that won't
175 actually be executed. This is usually indicated by a bit in the PSW. If
176 we find ourselves in such a state, then we step the target beyond the
177 nullified instruction before returning control to the user so as to avoid
180 #ifndef INSTRUCTION_NULLIFIED
181 #define INSTRUCTION_NULLIFIED 0
184 /* We can't step off a permanent breakpoint in the ordinary way, because we
185 can't remove it. Instead, we have to advance the PC to the next
186 instruction. This macro should expand to a pointer to a function that
187 does that, or zero if we have no such function. If we don't have a
188 definition for it, we have to report an error. */
189 #ifndef SKIP_PERMANENT_BREAKPOINT
190 #define SKIP_PERMANENT_BREAKPOINT (default_skip_permanent_breakpoint)
192 default_skip_permanent_breakpoint (void)
195 The program is stopped at a permanent breakpoint, but GDB does not know\n\
196 how to step past a permanent breakpoint on this architecture. Try using\n\
197 a command like `return' or `jump' to continue execution.");
202 /* Convert the #defines into values. This is temporary until wfi control
203 flow is completely sorted out. */
205 #ifndef HAVE_STEPPABLE_WATCHPOINT
206 #define HAVE_STEPPABLE_WATCHPOINT 0
208 #undef HAVE_STEPPABLE_WATCHPOINT
209 #define HAVE_STEPPABLE_WATCHPOINT 1
212 #ifndef CANNOT_STEP_HW_WATCHPOINTS
213 #define CANNOT_STEP_HW_WATCHPOINTS 0
215 #undef CANNOT_STEP_HW_WATCHPOINTS
216 #define CANNOT_STEP_HW_WATCHPOINTS 1
219 /* Tables of how to react to signals; the user sets them. */
221 static unsigned char *signal_stop;
222 static unsigned char *signal_print;
223 static unsigned char *signal_program;
225 #define SET_SIGS(nsigs,sigs,flags) \
227 int signum = (nsigs); \
228 while (signum-- > 0) \
229 if ((sigs)[signum]) \
230 (flags)[signum] = 1; \
233 #define UNSET_SIGS(nsigs,sigs,flags) \
235 int signum = (nsigs); \
236 while (signum-- > 0) \
237 if ((sigs)[signum]) \
238 (flags)[signum] = 0; \
241 /* Value to pass to target_resume() to cause all threads to resume */
243 #define RESUME_ALL (pid_to_ptid (-1))
245 /* Command list pointer for the "stop" placeholder. */
247 static struct cmd_list_element *stop_command;
249 /* Nonzero if breakpoints are now inserted in the inferior. */
251 static int breakpoints_inserted;
253 /* Function inferior was in as of last step command. */
255 static struct symbol *step_start_function;
257 /* Nonzero if we are expecting a trace trap and should proceed from it. */
259 static int trap_expected;
262 /* Nonzero if we want to give control to the user when we're notified
263 of shared library events by the dynamic linker. */
264 static int stop_on_solib_events;
268 /* Nonzero if the next time we try to continue the inferior, it will
269 step one instruction and generate a spurious trace trap.
270 This is used to compensate for a bug in HP-UX. */
272 static int trap_expected_after_continue;
275 /* Nonzero means expecting a trace trap
276 and should stop the inferior and return silently when it happens. */
280 /* Nonzero means expecting a trap and caller will handle it themselves.
281 It is used after attach, due to attaching to a process;
282 when running in the shell before the child program has been exec'd;
283 and when running some kinds of remote stuff (FIXME?). */
285 enum stop_kind stop_soon;
287 /* Nonzero if proceed is being used for a "finish" command or a similar
288 situation when stop_registers should be saved. */
290 int proceed_to_finish;
292 /* Save register contents here when about to pop a stack dummy frame,
293 if-and-only-if proceed_to_finish is set.
294 Thus this contains the return value from the called function (assuming
295 values are returned in a register). */
297 struct regcache *stop_registers;
299 /* Nonzero if program stopped due to error trying to insert breakpoints. */
301 static int breakpoints_failed;
303 /* Nonzero after stop if current stack frame should be printed. */
305 static int stop_print_frame;
307 static struct breakpoint *step_resume_breakpoint = NULL;
308 static struct breakpoint *through_sigtramp_breakpoint = NULL;
310 /* On some platforms (e.g., HP-UX), hardware watchpoints have bad
311 interactions with an inferior that is running a kernel function
312 (aka, a system call or "syscall"). wait_for_inferior therefore
313 may have a need to know when the inferior is in a syscall. This
314 is a count of the number of inferior threads which are known to
315 currently be running in a syscall. */
316 static int number_of_threads_in_syscalls;
318 /* This is a cached copy of the pid/waitstatus of the last event
319 returned by target_wait()/target_wait_hook(). This information is
320 returned by get_last_target_status(). */
321 static ptid_t target_last_wait_ptid;
322 static struct target_waitstatus target_last_waitstatus;
324 /* This is used to remember when a fork, vfork or exec event
325 was caught by a catchpoint, and thus the event is to be
326 followed at the next resume of the inferior, and not
330 enum target_waitkind kind;
337 char *execd_pathname;
341 static const char follow_fork_mode_child[] = "child";
342 static const char follow_fork_mode_parent[] = "parent";
344 static const char *follow_fork_mode_kind_names[] = {
345 follow_fork_mode_child,
346 follow_fork_mode_parent,
350 static const char *follow_fork_mode_string = follow_fork_mode_parent;
356 int follow_child = (follow_fork_mode_string == follow_fork_mode_child);
358 return target_follow_fork (follow_child);
362 follow_inferior_reset_breakpoints (void)
364 /* Was there a step_resume breakpoint? (There was if the user
365 did a "next" at the fork() call.) If so, explicitly reset its
368 step_resumes are a form of bp that are made to be per-thread.
369 Since we created the step_resume bp when the parent process
370 was being debugged, and now are switching to the child process,
371 from the breakpoint package's viewpoint, that's a switch of
372 "threads". We must update the bp's notion of which thread
373 it is for, or it'll be ignored when it triggers. */
375 if (step_resume_breakpoint)
376 breakpoint_re_set_thread (step_resume_breakpoint);
378 /* Reinsert all breakpoints in the child. The user may have set
379 breakpoints after catching the fork, in which case those
380 were never set in the child, but only in the parent. This makes
381 sure the inserted breakpoints match the breakpoint list. */
383 breakpoint_re_set ();
384 insert_breakpoints ();
387 /* EXECD_PATHNAME is assumed to be non-NULL. */
390 follow_exec (int pid, char *execd_pathname)
393 struct target_ops *tgt;
395 if (!may_follow_exec)
398 /* This is an exec event that we actually wish to pay attention to.
399 Refresh our symbol table to the newly exec'd program, remove any
402 If there are breakpoints, they aren't really inserted now,
403 since the exec() transformed our inferior into a fresh set
406 We want to preserve symbolic breakpoints on the list, since
407 we have hopes that they can be reset after the new a.out's
408 symbol table is read.
410 However, any "raw" breakpoints must be removed from the list
411 (e.g., the solib bp's), since their address is probably invalid
414 And, we DON'T want to call delete_breakpoints() here, since
415 that may write the bp's "shadow contents" (the instruction
416 value that was overwritten witha TRAP instruction). Since
417 we now have a new a.out, those shadow contents aren't valid. */
418 update_breakpoints_after_exec ();
420 /* If there was one, it's gone now. We cannot truly step-to-next
421 statement through an exec(). */
422 step_resume_breakpoint = NULL;
423 step_range_start = 0;
426 /* If there was one, it's gone now. */
427 through_sigtramp_breakpoint = NULL;
429 /* What is this a.out's name? */
430 printf_unfiltered ("Executing new program: %s\n", execd_pathname);
432 /* We've followed the inferior through an exec. Therefore, the
433 inferior has essentially been killed & reborn. */
435 /* First collect the run target in effect. */
436 tgt = find_run_target ();
437 /* If we can't find one, things are in a very strange state... */
439 error ("Could find run target to save before following exec");
441 gdb_flush (gdb_stdout);
442 target_mourn_inferior ();
443 inferior_ptid = pid_to_ptid (saved_pid);
444 /* Because mourn_inferior resets inferior_ptid. */
447 /* That a.out is now the one to use. */
448 exec_file_attach (execd_pathname, 0);
450 /* And also is where symbols can be found. */
451 symbol_file_add_main (execd_pathname, 0);
453 /* Reset the shared library package. This ensures that we get
454 a shlib event when the child reaches "_start", at which point
455 the dld will have had a chance to initialize the child. */
456 #if defined(SOLIB_RESTART)
459 #ifdef SOLIB_CREATE_INFERIOR_HOOK
460 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
463 /* Reinsert all breakpoints. (Those which were symbolic have
464 been reset to the proper address in the new a.out, thanks
465 to symbol_file_command...) */
466 insert_breakpoints ();
468 /* The next resume of this inferior should bring it to the shlib
469 startup breakpoints. (If the user had also set bp's on
470 "main" from the old (parent) process, then they'll auto-
471 matically get reset there in the new process.) */
474 /* Non-zero if we just simulating a single-step. This is needed
475 because we cannot remove the breakpoints in the inferior process
476 until after the `wait' in `wait_for_inferior'. */
477 static int singlestep_breakpoints_inserted_p = 0;
479 /* The thread we inserted single-step breakpoints for. */
480 static ptid_t singlestep_ptid;
482 /* If another thread hit the singlestep breakpoint, we save the original
483 thread here so that we can resume single-stepping it later. */
484 static ptid_t saved_singlestep_ptid;
485 static int stepping_past_singlestep_breakpoint;
488 /* Things to clean up if we QUIT out of resume (). */
490 resume_cleanups (void *ignore)
495 static const char schedlock_off[] = "off";
496 static const char schedlock_on[] = "on";
497 static const char schedlock_step[] = "step";
498 static const char *scheduler_mode = schedlock_off;
499 static const char *scheduler_enums[] = {
507 set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
509 /* NOTE: cagney/2002-03-17: The add_show_from_set() function clones
510 the set command passed as a parameter. The clone operation will
511 include (BUG?) any ``set'' command callback, if present.
512 Commands like ``info set'' call all the ``show'' command
513 callbacks. Unfortunately, for ``show'' commands cloned from
514 ``set'', this includes callbacks belonging to ``set'' commands.
515 Making this worse, this only occures if add_show_from_set() is
516 called after add_cmd_sfunc() (BUG?). */
517 if (cmd_type (c) == set_cmd)
518 if (!target_can_lock_scheduler)
520 scheduler_mode = schedlock_off;
521 error ("Target '%s' cannot support this command.", target_shortname);
526 /* Resume the inferior, but allow a QUIT. This is useful if the user
527 wants to interrupt some lengthy single-stepping operation
528 (for child processes, the SIGINT goes to the inferior, and so
529 we get a SIGINT random_signal, but for remote debugging and perhaps
530 other targets, that's not true).
532 STEP nonzero if we should step (zero to continue instead).
533 SIG is the signal to give the inferior (zero for none). */
535 resume (int step, enum target_signal sig)
537 int should_resume = 1;
538 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
541 /* FIXME: calling breakpoint_here_p (read_pc ()) three times! */
544 /* Some targets (e.g. Solaris x86) have a kernel bug when stepping
545 over an instruction that causes a page fault without triggering
546 a hardware watchpoint. The kernel properly notices that it shouldn't
547 stop, because the hardware watchpoint is not triggered, but it forgets
548 the step request and continues the program normally.
549 Work around the problem by removing hardware watchpoints if a step is
550 requested, GDB will check for a hardware watchpoint trigger after the
552 if (CANNOT_STEP_HW_WATCHPOINTS && step && breakpoints_inserted)
553 remove_hw_watchpoints ();
556 /* Normally, by the time we reach `resume', the breakpoints are either
557 removed or inserted, as appropriate. The exception is if we're sitting
558 at a permanent breakpoint; we need to step over it, but permanent
559 breakpoints can't be removed. So we have to test for it here. */
560 if (breakpoint_here_p (read_pc ()) == permanent_breakpoint_here)
561 SKIP_PERMANENT_BREAKPOINT ();
563 if (SOFTWARE_SINGLE_STEP_P () && step)
565 /* Do it the hard way, w/temp breakpoints */
566 SOFTWARE_SINGLE_STEP (sig, 1 /*insert-breakpoints */ );
567 /* ...and don't ask hardware to do it. */
569 /* and do not pull these breakpoints until after a `wait' in
570 `wait_for_inferior' */
571 singlestep_breakpoints_inserted_p = 1;
572 singlestep_ptid = inferior_ptid;
575 /* Handle any optimized stores to the inferior NOW... */
576 #ifdef DO_DEFERRED_STORES
580 /* If there were any forks/vforks/execs that were caught and are
581 now to be followed, then do so. */
582 switch (pending_follow.kind)
584 case TARGET_WAITKIND_FORKED:
585 case TARGET_WAITKIND_VFORKED:
586 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
591 case TARGET_WAITKIND_EXECD:
592 /* follow_exec is called as soon as the exec event is seen. */
593 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
600 /* Install inferior's terminal modes. */
601 target_terminal_inferior ();
607 resume_ptid = RESUME_ALL; /* Default */
609 if ((step || singlestep_breakpoints_inserted_p) &&
610 (stepping_past_singlestep_breakpoint
611 || (!breakpoints_inserted && breakpoint_here_p (read_pc ()))))
613 /* Stepping past a breakpoint without inserting breakpoints.
614 Make sure only the current thread gets to step, so that
615 other threads don't sneak past breakpoints while they are
618 resume_ptid = inferior_ptid;
621 if ((scheduler_mode == schedlock_on) ||
622 (scheduler_mode == schedlock_step &&
623 (step || singlestep_breakpoints_inserted_p)))
625 /* User-settable 'scheduler' mode requires solo thread resume. */
626 resume_ptid = inferior_ptid;
629 if (CANNOT_STEP_BREAKPOINT)
631 /* Most targets can step a breakpoint instruction, thus
632 executing it normally. But if this one cannot, just
633 continue and we will hit it anyway. */
634 if (step && breakpoints_inserted && breakpoint_here_p (read_pc ()))
637 target_resume (resume_ptid, step, sig);
640 discard_cleanups (old_cleanups);
644 /* Clear out all variables saying what to do when inferior is continued.
645 First do this, then set the ones you want, then call `proceed'. */
648 clear_proceed_status (void)
651 step_range_start = 0;
653 step_frame_id = null_frame_id;
654 step_over_calls = STEP_OVER_UNDEBUGGABLE;
656 stop_soon = NO_STOP_QUIETLY;
657 proceed_to_finish = 0;
658 breakpoint_proceeded = 1; /* We're about to proceed... */
660 /* Discard any remaining commands or status from previous stop. */
661 bpstat_clear (&stop_bpstat);
664 /* This should be suitable for any targets that support threads. */
667 prepare_to_proceed (void)
670 struct target_waitstatus wait_status;
672 /* Get the last target status returned by target_wait(). */
673 get_last_target_status (&wait_ptid, &wait_status);
675 /* Make sure we were stopped either at a breakpoint, or because
677 if (wait_status.kind != TARGET_WAITKIND_STOPPED
678 || (wait_status.value.sig != TARGET_SIGNAL_TRAP &&
679 wait_status.value.sig != TARGET_SIGNAL_INT))
684 if (!ptid_equal (wait_ptid, minus_one_ptid)
685 && !ptid_equal (inferior_ptid, wait_ptid))
687 /* Switched over from WAIT_PID. */
688 CORE_ADDR wait_pc = read_pc_pid (wait_ptid);
690 if (wait_pc != read_pc ())
692 /* Switch back to WAIT_PID thread. */
693 inferior_ptid = wait_ptid;
695 /* FIXME: This stuff came from switch_to_thread() in
696 thread.c (which should probably be a public function). */
697 flush_cached_frames ();
698 registers_changed ();
700 select_frame (get_current_frame ());
703 /* We return 1 to indicate that there is a breakpoint here,
704 so we need to step over it before continuing to avoid
705 hitting it straight away. */
706 if (breakpoint_here_p (wait_pc))
714 /* Record the pc of the program the last time it stopped. This is
715 just used internally by wait_for_inferior, but need to be preserved
716 over calls to it and cleared when the inferior is started. */
717 static CORE_ADDR prev_pc;
719 /* Basic routine for continuing the program in various fashions.
721 ADDR is the address to resume at, or -1 for resume where stopped.
722 SIGGNAL is the signal to give it, or 0 for none,
723 or -1 for act according to how it stopped.
724 STEP is nonzero if should trap after one instruction.
725 -1 means return after that and print nothing.
726 You should probably set various step_... variables
727 before calling here, if you are stepping.
729 You should call clear_proceed_status before calling proceed. */
732 proceed (CORE_ADDR addr, enum target_signal siggnal, int step)
737 step_start_function = find_pc_function (read_pc ());
741 if (addr == (CORE_ADDR) -1)
743 /* If there is a breakpoint at the address we will resume at,
744 step one instruction before inserting breakpoints
745 so that we do not stop right away (and report a second
746 hit at this breakpoint). */
748 if (read_pc () == stop_pc && breakpoint_here_p (read_pc ()))
751 #ifndef STEP_SKIPS_DELAY
752 #define STEP_SKIPS_DELAY(pc) (0)
753 #define STEP_SKIPS_DELAY_P (0)
755 /* Check breakpoint_here_p first, because breakpoint_here_p is fast
756 (it just checks internal GDB data structures) and STEP_SKIPS_DELAY
757 is slow (it needs to read memory from the target). */
758 if (STEP_SKIPS_DELAY_P
759 && breakpoint_here_p (read_pc () + 4)
760 && STEP_SKIPS_DELAY (read_pc ()))
768 /* In a multi-threaded task we may select another thread
769 and then continue or step.
771 But if the old thread was stopped at a breakpoint, it
772 will immediately cause another breakpoint stop without
773 any execution (i.e. it will report a breakpoint hit
774 incorrectly). So we must step over it first.
776 prepare_to_proceed checks the current thread against the thread
777 that reported the most recent event. If a step-over is required
778 it returns TRUE and sets the current thread to the old thread. */
779 if (prepare_to_proceed () && breakpoint_here_p (read_pc ()))
783 if (trap_expected_after_continue)
785 /* If (step == 0), a trap will be automatically generated after
786 the first instruction is executed. Force step one
787 instruction to clear this condition. This should not occur
788 if step is nonzero, but it is harmless in that case. */
790 trap_expected_after_continue = 0;
792 #endif /* HP_OS_BUG */
795 /* We will get a trace trap after one instruction.
796 Continue it automatically and insert breakpoints then. */
800 insert_breakpoints ();
801 /* If we get here there was no call to error() in
802 insert breakpoints -- so they were inserted. */
803 breakpoints_inserted = 1;
806 if (siggnal != TARGET_SIGNAL_DEFAULT)
807 stop_signal = siggnal;
808 /* If this signal should not be seen by program,
809 give it zero. Used for debugging signals. */
810 else if (!signal_program[stop_signal])
811 stop_signal = TARGET_SIGNAL_0;
813 annotate_starting ();
815 /* Make sure that output from GDB appears before output from the
817 gdb_flush (gdb_stdout);
819 /* Refresh prev_pc value just prior to resuming. This used to be
820 done in stop_stepping, however, setting prev_pc there did not handle
821 scenarios such as inferior function calls or returning from
822 a function via the return command. In those cases, the prev_pc
823 value was not set properly for subsequent commands. The prev_pc value
824 is used to initialize the starting line number in the ecs. With an
825 invalid value, the gdb next command ends up stopping at the position
826 represented by the next line table entry past our start position.
827 On platforms that generate one line table entry per line, this
828 is not a problem. However, on the ia64, the compiler generates
829 extraneous line table entries that do not increase the line number.
830 When we issue the gdb next command on the ia64 after an inferior call
831 or a return command, we often end up a few instructions forward, still
832 within the original line we started.
834 An attempt was made to have init_execution_control_state () refresh
835 the prev_pc value before calculating the line number. This approach
836 did not work because on platforms that use ptrace, the pc register
837 cannot be read unless the inferior is stopped. At that point, we
838 are not guaranteed the inferior is stopped and so the read_pc ()
839 call can fail. Setting the prev_pc value here ensures the value is
840 updated correctly when the inferior is stopped. */
841 prev_pc = read_pc ();
843 /* Resume inferior. */
844 resume (oneproc || step || bpstat_should_step (), stop_signal);
846 /* Wait for it to stop (if not standalone)
847 and in any case decode why it stopped, and act accordingly. */
848 /* Do this only if we are not using the event loop, or if the target
849 does not support asynchronous execution. */
850 if (!event_loop_p || !target_can_async_p ())
852 wait_for_inferior ();
858 /* Start remote-debugging of a machine over a serial link. */
864 init_wait_for_inferior ();
865 stop_soon = STOP_QUIETLY;
868 /* Always go on waiting for the target, regardless of the mode. */
869 /* FIXME: cagney/1999-09-23: At present it isn't possible to
870 indicate to wait_for_inferior that a target should timeout if
871 nothing is returned (instead of just blocking). Because of this,
872 targets expecting an immediate response need to, internally, set
873 things up so that the target_wait() is forced to eventually
875 /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
876 differentiate to its caller what the state of the target is after
877 the initial open has been performed. Here we're assuming that
878 the target has stopped. It should be possible to eventually have
879 target_open() return to the caller an indication that the target
880 is currently running and GDB state should be set to the same as
882 wait_for_inferior ();
886 /* Initialize static vars when a new inferior begins. */
889 init_wait_for_inferior (void)
891 /* These are meaningless until the first time through wait_for_inferior. */
895 trap_expected_after_continue = 0;
897 breakpoints_inserted = 0;
898 breakpoint_init_inferior (inf_starting);
900 /* Don't confuse first call to proceed(). */
901 stop_signal = TARGET_SIGNAL_0;
903 /* The first resume is not following a fork/vfork/exec. */
904 pending_follow.kind = TARGET_WAITKIND_SPURIOUS; /* I.e., none. */
906 /* See wait_for_inferior's handling of SYSCALL_ENTRY/RETURN events. */
907 number_of_threads_in_syscalls = 0;
909 clear_proceed_status ();
911 stepping_past_singlestep_breakpoint = 0;
915 delete_breakpoint_current_contents (void *arg)
917 struct breakpoint **breakpointp = (struct breakpoint **) arg;
918 if (*breakpointp != NULL)
920 delete_breakpoint (*breakpointp);
925 /* This enum encodes possible reasons for doing a target_wait, so that
926 wfi can call target_wait in one place. (Ultimately the call will be
927 moved out of the infinite loop entirely.) */
931 infwait_normal_state,
932 infwait_thread_hop_state,
933 infwait_nullified_state,
934 infwait_nonstep_watch_state
937 /* Why did the inferior stop? Used to print the appropriate messages
938 to the interface from within handle_inferior_event(). */
939 enum inferior_stop_reason
941 /* We don't know why. */
943 /* Step, next, nexti, stepi finished. */
945 /* Found breakpoint. */
947 /* Inferior terminated by signal. */
949 /* Inferior exited. */
951 /* Inferior received signal, and user asked to be notified. */
955 /* This structure contains what used to be local variables in
956 wait_for_inferior. Probably many of them can return to being
957 locals in handle_inferior_event. */
959 struct execution_control_state
961 struct target_waitstatus ws;
962 struct target_waitstatus *wp;
965 CORE_ADDR stop_func_start;
966 CORE_ADDR stop_func_end;
967 char *stop_func_name;
968 struct symtab_and_line sal;
969 int remove_breakpoints_on_following_step;
971 struct symtab *current_symtab;
972 int handling_longjmp; /* FIXME */
974 ptid_t saved_inferior_ptid;
976 int stepping_through_solib_after_catch;
977 bpstat stepping_through_solib_catchpoints;
978 int enable_hw_watchpoints_after_wait;
979 int stepping_through_sigtramp;
980 int new_thread_event;
981 struct target_waitstatus tmpstatus;
982 enum infwait_states infwait_state;
987 void init_execution_control_state (struct execution_control_state *ecs);
989 static void handle_step_into_function (struct execution_control_state *ecs);
990 void handle_inferior_event (struct execution_control_state *ecs);
992 static void check_sigtramp2 (struct execution_control_state *ecs);
993 static void step_into_function (struct execution_control_state *ecs);
994 static void step_over_function (struct execution_control_state *ecs);
995 static void stop_stepping (struct execution_control_state *ecs);
996 static void prepare_to_wait (struct execution_control_state *ecs);
997 static void keep_going (struct execution_control_state *ecs);
998 static void print_stop_reason (enum inferior_stop_reason stop_reason,
1001 /* Wait for control to return from inferior to debugger.
1002 If inferior gets a signal, we may decide to start it up again
1003 instead of returning. That is why there is a loop in this function.
1004 When this function actually returns it means the inferior
1005 should be left stopped and GDB should read more commands. */
1008 wait_for_inferior (void)
1010 struct cleanup *old_cleanups;
1011 struct execution_control_state ecss;
1012 struct execution_control_state *ecs;
1014 old_cleanups = make_cleanup (delete_step_resume_breakpoint,
1015 &step_resume_breakpoint);
1016 make_cleanup (delete_breakpoint_current_contents,
1017 &through_sigtramp_breakpoint);
1019 /* wfi still stays in a loop, so it's OK just to take the address of
1020 a local to get the ecs pointer. */
1023 /* Fill in with reasonable starting values. */
1024 init_execution_control_state (ecs);
1026 /* We'll update this if & when we switch to a new thread. */
1027 previous_inferior_ptid = inferior_ptid;
1029 overlay_cache_invalid = 1;
1031 /* We have to invalidate the registers BEFORE calling target_wait
1032 because they can be loaded from the target while in target_wait.
1033 This makes remote debugging a bit more efficient for those
1034 targets that provide critical registers as part of their normal
1035 status mechanism. */
1037 registers_changed ();
1041 if (target_wait_hook)
1042 ecs->ptid = target_wait_hook (ecs->waiton_ptid, ecs->wp);
1044 ecs->ptid = target_wait (ecs->waiton_ptid, ecs->wp);
1046 /* Now figure out what to do with the result of the result. */
1047 handle_inferior_event (ecs);
1049 if (!ecs->wait_some_more)
1052 do_cleanups (old_cleanups);
1055 /* Asynchronous version of wait_for_inferior. It is called by the
1056 event loop whenever a change of state is detected on the file
1057 descriptor corresponding to the target. It can be called more than
1058 once to complete a single execution command. In such cases we need
1059 to keep the state in a global variable ASYNC_ECSS. If it is the
1060 last time that this function is called for a single execution
1061 command, then report to the user that the inferior has stopped, and
1062 do the necessary cleanups. */
1064 struct execution_control_state async_ecss;
1065 struct execution_control_state *async_ecs;
1068 fetch_inferior_event (void *client_data)
1070 static struct cleanup *old_cleanups;
1072 async_ecs = &async_ecss;
1074 if (!async_ecs->wait_some_more)
1076 old_cleanups = make_exec_cleanup (delete_step_resume_breakpoint,
1077 &step_resume_breakpoint);
1078 make_exec_cleanup (delete_breakpoint_current_contents,
1079 &through_sigtramp_breakpoint);
1081 /* Fill in with reasonable starting values. */
1082 init_execution_control_state (async_ecs);
1084 /* We'll update this if & when we switch to a new thread. */
1085 previous_inferior_ptid = inferior_ptid;
1087 overlay_cache_invalid = 1;
1089 /* We have to invalidate the registers BEFORE calling target_wait
1090 because they can be loaded from the target while in target_wait.
1091 This makes remote debugging a bit more efficient for those
1092 targets that provide critical registers as part of their normal
1093 status mechanism. */
1095 registers_changed ();
1098 if (target_wait_hook)
1100 target_wait_hook (async_ecs->waiton_ptid, async_ecs->wp);
1102 async_ecs->ptid = target_wait (async_ecs->waiton_ptid, async_ecs->wp);
1104 /* Now figure out what to do with the result of the result. */
1105 handle_inferior_event (async_ecs);
1107 if (!async_ecs->wait_some_more)
1109 /* Do only the cleanups that have been added by this
1110 function. Let the continuations for the commands do the rest,
1111 if there are any. */
1112 do_exec_cleanups (old_cleanups);
1114 if (step_multi && stop_step)
1115 inferior_event_handler (INF_EXEC_CONTINUE, NULL);
1117 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
1121 /* Prepare an execution control state for looping through a
1122 wait_for_inferior-type loop. */
1125 init_execution_control_state (struct execution_control_state *ecs)
1127 /* ecs->another_trap? */
1128 ecs->random_signal = 0;
1129 ecs->remove_breakpoints_on_following_step = 0;
1130 ecs->handling_longjmp = 0; /* FIXME */
1131 ecs->update_step_sp = 0;
1132 ecs->stepping_through_solib_after_catch = 0;
1133 ecs->stepping_through_solib_catchpoints = NULL;
1134 ecs->enable_hw_watchpoints_after_wait = 0;
1135 ecs->stepping_through_sigtramp = 0;
1136 ecs->sal = find_pc_line (prev_pc, 0);
1137 ecs->current_line = ecs->sal.line;
1138 ecs->current_symtab = ecs->sal.symtab;
1139 ecs->infwait_state = infwait_normal_state;
1140 ecs->waiton_ptid = pid_to_ptid (-1);
1141 ecs->wp = &(ecs->ws);
1144 /* Call this function before setting step_resume_breakpoint, as a
1145 sanity check. There should never be more than one step-resume
1146 breakpoint per thread, so we should never be setting a new
1147 step_resume_breakpoint when one is already active. */
1149 check_for_old_step_resume_breakpoint (void)
1151 if (step_resume_breakpoint)
1153 ("GDB bug: infrun.c (wait_for_inferior): dropping old step_resume breakpoint");
1156 /* Return the cached copy of the last pid/waitstatus returned by
1157 target_wait()/target_wait_hook(). The data is actually cached by
1158 handle_inferior_event(), which gets called immediately after
1159 target_wait()/target_wait_hook(). */
1162 get_last_target_status (ptid_t *ptidp, struct target_waitstatus *status)
1164 *ptidp = target_last_wait_ptid;
1165 *status = target_last_waitstatus;
1168 /* Switch thread contexts, maintaining "infrun state". */
1171 context_switch (struct execution_control_state *ecs)
1173 /* Caution: it may happen that the new thread (or the old one!)
1174 is not in the thread list. In this case we must not attempt
1175 to "switch context", or we run the risk that our context may
1176 be lost. This may happen as a result of the target module
1177 mishandling thread creation. */
1179 if (in_thread_list (inferior_ptid) && in_thread_list (ecs->ptid))
1180 { /* Perform infrun state context switch: */
1181 /* Save infrun state for the old thread. */
1182 save_infrun_state (inferior_ptid, prev_pc,
1183 trap_expected, step_resume_breakpoint,
1184 through_sigtramp_breakpoint, step_range_start,
1185 step_range_end, &step_frame_id,
1186 ecs->handling_longjmp, ecs->another_trap,
1187 ecs->stepping_through_solib_after_catch,
1188 ecs->stepping_through_solib_catchpoints,
1189 ecs->stepping_through_sigtramp,
1190 ecs->current_line, ecs->current_symtab, step_sp);
1192 /* Load infrun state for the new thread. */
1193 load_infrun_state (ecs->ptid, &prev_pc,
1194 &trap_expected, &step_resume_breakpoint,
1195 &through_sigtramp_breakpoint, &step_range_start,
1196 &step_range_end, &step_frame_id,
1197 &ecs->handling_longjmp, &ecs->another_trap,
1198 &ecs->stepping_through_solib_after_catch,
1199 &ecs->stepping_through_solib_catchpoints,
1200 &ecs->stepping_through_sigtramp,
1201 &ecs->current_line, &ecs->current_symtab, &step_sp);
1203 inferior_ptid = ecs->ptid;
1206 /* Wrapper for PC_IN_SIGTRAMP that takes care of the need to find the
1209 In a classic example of "left hand VS right hand", "infrun.c" was
1210 trying to improve GDB's performance by caching the result of calls
1211 to calls to find_pc_partial_funtion, while at the same time
1212 find_pc_partial_function was also trying to ramp up performance by
1213 caching its most recent return value. The below makes the the
1214 function find_pc_partial_function solely responsibile for
1215 performance issues (the local cache that relied on a global
1216 variable - arrrggg - deleted).
1218 Using the testsuite and gcov, it was found that dropping the local
1219 "infrun.c" cache and instead relying on find_pc_partial_function
1220 increased the number of calls to 12000 (from 10000), but the number
1221 of times find_pc_partial_function's cache missed (this is what
1222 matters) was only increased by only 4 (to 3569). (A quick back of
1223 envelope caculation suggests that the extra 2000 function calls
1224 @1000 extra instructions per call make the 1 MIP VAX testsuite run
1225 take two extra seconds, oops :-)
1227 Long term, this function can be eliminated, replaced by the code:
1228 get_frame_type(current_frame()) == SIGTRAMP_FRAME (for new
1229 architectures this is very cheap). */
1232 pc_in_sigtramp (CORE_ADDR pc)
1235 find_pc_partial_function (pc, &name, NULL, NULL);
1236 return PC_IN_SIGTRAMP (pc, name);
1239 /* Handle the inferior event in the cases when we just stepped
1243 handle_step_into_function (struct execution_control_state *ecs)
1245 CORE_ADDR real_stop_pc;
1247 if ((step_over_calls == STEP_OVER_NONE)
1248 || ((step_range_end == 1)
1249 && in_prologue (prev_pc, ecs->stop_func_start)))
1251 /* I presume that step_over_calls is only 0 when we're
1252 supposed to be stepping at the assembly language level
1253 ("stepi"). Just stop. */
1254 /* Also, maybe we just did a "nexti" inside a prolog,
1255 so we thought it was a subroutine call but it was not.
1256 Stop as well. FENN */
1258 print_stop_reason (END_STEPPING_RANGE, 0);
1259 stop_stepping (ecs);
1263 if (step_over_calls == STEP_OVER_ALL || IGNORE_HELPER_CALL (stop_pc))
1265 /* We're doing a "next". */
1267 if (pc_in_sigtramp (stop_pc)
1268 && frame_id_inner (step_frame_id,
1269 frame_id_build (read_sp (), 0)))
1270 /* We stepped out of a signal handler, and into its
1271 calling trampoline. This is misdetected as a
1272 subroutine call, but stepping over the signal
1273 trampoline isn't such a bad idea. In order to do that,
1274 we have to ignore the value in step_frame_id, since
1275 that doesn't represent the frame that'll reach when we
1276 return from the signal trampoline. Otherwise we'll
1277 probably continue to the end of the program. */
1278 step_frame_id = null_frame_id;
1280 step_over_function (ecs);
1285 /* If we are in a function call trampoline (a stub between
1286 the calling routine and the real function), locate the real
1287 function. That's what tells us (a) whether we want to step
1288 into it at all, and (b) what prologue we want to run to
1289 the end of, if we do step into it. */
1290 real_stop_pc = skip_language_trampoline (stop_pc);
1291 if (real_stop_pc == 0)
1292 real_stop_pc = SKIP_TRAMPOLINE_CODE (stop_pc);
1293 if (real_stop_pc != 0)
1294 ecs->stop_func_start = real_stop_pc;
1296 /* If we have line number information for the function we
1297 are thinking of stepping into, step into it.
1299 If there are several symtabs at that PC (e.g. with include
1300 files), just want to know whether *any* of them have line
1301 numbers. find_pc_line handles this. */
1303 struct symtab_and_line tmp_sal;
1305 tmp_sal = find_pc_line (ecs->stop_func_start, 0);
1306 if (tmp_sal.line != 0)
1308 step_into_function (ecs);
1313 /* If we have no line number and the step-stop-if-no-debug
1314 is set, we stop the step so that the user has a chance to
1315 switch in assembly mode. */
1316 if (step_over_calls == STEP_OVER_UNDEBUGGABLE && step_stop_if_no_debug)
1319 print_stop_reason (END_STEPPING_RANGE, 0);
1320 stop_stepping (ecs);
1324 step_over_function (ecs);
1330 adjust_pc_after_break (struct execution_control_state *ecs)
1334 /* If this target does not decrement the PC after breakpoints, then
1335 we have nothing to do. */
1336 if (DECR_PC_AFTER_BREAK == 0)
1339 /* If we've hit a breakpoint, we'll normally be stopped with SIGTRAP. If
1340 we aren't, just return.
1342 We assume that waitkinds other than TARGET_WAITKIND_STOPPED are not
1343 affected by DECR_PC_AFTER_BREAK. Other waitkinds which are implemented
1344 by software breakpoints should be handled through the normal breakpoint
1347 NOTE drow/2004-01-31: On some targets, breakpoints may generate
1348 different signals (SIGILL or SIGEMT for instance), but it is less
1349 clear where the PC is pointing afterwards. It may not match
1350 DECR_PC_AFTER_BREAK. I don't know any specific target that generates
1351 these signals at breakpoints (the code has been in GDB since at least
1352 1992) so I can not guess how to handle them here.
1354 In earlier versions of GDB, a target with HAVE_NONSTEPPABLE_WATCHPOINTS
1355 would have the PC after hitting a watchpoint affected by
1356 DECR_PC_AFTER_BREAK. I haven't found any target with both of these set
1357 in GDB history, and it seems unlikely to be correct, so
1358 HAVE_NONSTEPPABLE_WATCHPOINTS is not checked here. */
1360 if (ecs->ws.kind != TARGET_WAITKIND_STOPPED)
1363 if (ecs->ws.value.sig != TARGET_SIGNAL_TRAP)
1366 /* Find the location where (if we've hit a breakpoint) the breakpoint would
1368 stop_pc = read_pc_pid (ecs->ptid) - DECR_PC_AFTER_BREAK;
1370 /* If we're software-single-stepping, then assume this is a breakpoint.
1371 NOTE drow/2004-01-17: This doesn't check that the PC matches, or that
1372 we're even in the right thread. The software-single-step code needs
1375 If we're not software-single-stepping, then we first check that there
1376 is an enabled software breakpoint at this address. If there is, and
1377 we weren't using hardware-single-step, then we've hit the breakpoint.
1379 If we were using hardware-single-step, we check prev_pc; if we just
1380 stepped over an inserted software breakpoint, then we should decrement
1381 the PC and eventually report hitting the breakpoint. The prev_pc check
1382 prevents us from decrementing the PC if we just stepped over a jump
1383 instruction and landed on the instruction after a breakpoint.
1385 The last bit checks that we didn't hit a breakpoint in a signal handler
1386 without an intervening stop in sigtramp, which is detected by a new
1387 stack pointer value below any usual function calling stack adjustments.
1389 NOTE drow/2004-01-17: I'm not sure that this is necessary. The check
1390 predates checking for software single step at the same time. Also,
1391 if we've moved into a signal handler we should have seen the
1394 if ((SOFTWARE_SINGLE_STEP_P () && singlestep_breakpoints_inserted_p)
1395 || (software_breakpoint_inserted_here_p (stop_pc)
1396 && !(currently_stepping (ecs)
1397 && prev_pc != stop_pc
1398 && !(step_range_end && INNER_THAN (read_sp (), (step_sp - 16))))))
1399 write_pc_pid (stop_pc, ecs->ptid);
1402 /* Given an execution control state that has been freshly filled in
1403 by an event from the inferior, figure out what it means and take
1404 appropriate action. */
1407 handle_inferior_event (struct execution_control_state *ecs)
1409 /* NOTE: cagney/2003-03-28: If you're looking at this code and
1410 thinking that the variable stepped_after_stopped_by_watchpoint
1411 isn't used, then you're wrong! The macro STOPPED_BY_WATCHPOINT,
1412 defined in the file "config/pa/nm-hppah.h", accesses the variable
1413 indirectly. Mutter something rude about the HP merge. */
1414 int stepped_after_stopped_by_watchpoint;
1415 int sw_single_step_trap_p = 0;
1417 /* Cache the last pid/waitstatus. */
1418 target_last_wait_ptid = ecs->ptid;
1419 target_last_waitstatus = *ecs->wp;
1421 adjust_pc_after_break (ecs);
1423 switch (ecs->infwait_state)
1425 case infwait_thread_hop_state:
1426 /* Cancel the waiton_ptid. */
1427 ecs->waiton_ptid = pid_to_ptid (-1);
1428 /* See comments where a TARGET_WAITKIND_SYSCALL_RETURN event
1429 is serviced in this loop, below. */
1430 if (ecs->enable_hw_watchpoints_after_wait)
1432 TARGET_ENABLE_HW_WATCHPOINTS (PIDGET (inferior_ptid));
1433 ecs->enable_hw_watchpoints_after_wait = 0;
1435 stepped_after_stopped_by_watchpoint = 0;
1438 case infwait_normal_state:
1439 /* See comments where a TARGET_WAITKIND_SYSCALL_RETURN event
1440 is serviced in this loop, below. */
1441 if (ecs->enable_hw_watchpoints_after_wait)
1443 TARGET_ENABLE_HW_WATCHPOINTS (PIDGET (inferior_ptid));
1444 ecs->enable_hw_watchpoints_after_wait = 0;
1446 stepped_after_stopped_by_watchpoint = 0;
1449 case infwait_nullified_state:
1450 stepped_after_stopped_by_watchpoint = 0;
1453 case infwait_nonstep_watch_state:
1454 insert_breakpoints ();
1456 /* FIXME-maybe: is this cleaner than setting a flag? Does it
1457 handle things like signals arriving and other things happening
1458 in combination correctly? */
1459 stepped_after_stopped_by_watchpoint = 1;
1463 internal_error (__FILE__, __LINE__, "bad switch");
1465 ecs->infwait_state = infwait_normal_state;
1467 flush_cached_frames ();
1469 /* If it's a new process, add it to the thread database */
1471 ecs->new_thread_event = (!ptid_equal (ecs->ptid, inferior_ptid)
1472 && !in_thread_list (ecs->ptid));
1474 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
1475 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED && ecs->new_thread_event)
1477 add_thread (ecs->ptid);
1479 ui_out_text (uiout, "[New ");
1480 ui_out_text (uiout, target_pid_or_tid_to_str (ecs->ptid));
1481 ui_out_text (uiout, "]\n");
1484 /* NOTE: This block is ONLY meant to be invoked in case of a
1485 "thread creation event"! If it is invoked for any other
1486 sort of event (such as a new thread landing on a breakpoint),
1487 the event will be discarded, which is almost certainly
1490 To avoid this, the low-level module (eg. target_wait)
1491 should call in_thread_list and add_thread, so that the
1492 new thread is known by the time we get here. */
1494 /* We may want to consider not doing a resume here in order
1495 to give the user a chance to play with the new thread.
1496 It might be good to make that a user-settable option. */
1498 /* At this point, all threads are stopped (happens
1499 automatically in either the OS or the native code).
1500 Therefore we need to continue all threads in order to
1503 target_resume (RESUME_ALL, 0, TARGET_SIGNAL_0);
1504 prepare_to_wait (ecs);
1509 switch (ecs->ws.kind)
1511 case TARGET_WAITKIND_LOADED:
1512 /* Ignore gracefully during startup of the inferior, as it
1513 might be the shell which has just loaded some objects,
1514 otherwise add the symbols for the newly loaded objects. */
1516 if (stop_soon == NO_STOP_QUIETLY)
1518 /* Remove breakpoints, SOLIB_ADD might adjust
1519 breakpoint addresses via breakpoint_re_set. */
1520 if (breakpoints_inserted)
1521 remove_breakpoints ();
1523 /* Check for any newly added shared libraries if we're
1524 supposed to be adding them automatically. Switch
1525 terminal for any messages produced by
1526 breakpoint_re_set. */
1527 target_terminal_ours_for_output ();
1528 /* NOTE: cagney/2003-11-25: Make certain that the target
1529 stack's section table is kept up-to-date. Architectures,
1530 (e.g., PPC64), use the section table to perform
1531 operations such as address => section name and hence
1532 require the table to contain all sections (including
1533 those found in shared libraries). */
1534 /* NOTE: cagney/2003-11-25: Pass current_target and not
1535 exec_ops to SOLIB_ADD. This is because current GDB is
1536 only tooled to propagate section_table changes out from
1537 the "current_target" (see target_resize_to_sections), and
1538 not up from the exec stratum. This, of course, isn't
1539 right. "infrun.c" should only interact with the
1540 exec/process stratum, instead relying on the target stack
1541 to propagate relevant changes (stop, section table
1542 changed, ...) up to other layers. */
1543 SOLIB_ADD (NULL, 0, ¤t_target, auto_solib_add);
1544 target_terminal_inferior ();
1546 /* Reinsert breakpoints and continue. */
1547 if (breakpoints_inserted)
1548 insert_breakpoints ();
1551 resume (0, TARGET_SIGNAL_0);
1552 prepare_to_wait (ecs);
1555 case TARGET_WAITKIND_SPURIOUS:
1556 resume (0, TARGET_SIGNAL_0);
1557 prepare_to_wait (ecs);
1560 case TARGET_WAITKIND_EXITED:
1561 target_terminal_ours (); /* Must do this before mourn anyway */
1562 print_stop_reason (EXITED, ecs->ws.value.integer);
1564 /* Record the exit code in the convenience variable $_exitcode, so
1565 that the user can inspect this again later. */
1566 set_internalvar (lookup_internalvar ("_exitcode"),
1567 value_from_longest (builtin_type_int,
1568 (LONGEST) ecs->ws.value.integer));
1569 gdb_flush (gdb_stdout);
1570 target_mourn_inferior ();
1571 singlestep_breakpoints_inserted_p = 0; /*SOFTWARE_SINGLE_STEP_P() */
1572 stop_print_frame = 0;
1573 stop_stepping (ecs);
1576 case TARGET_WAITKIND_SIGNALLED:
1577 stop_print_frame = 0;
1578 stop_signal = ecs->ws.value.sig;
1579 target_terminal_ours (); /* Must do this before mourn anyway */
1581 /* Note: By definition of TARGET_WAITKIND_SIGNALLED, we shouldn't
1582 reach here unless the inferior is dead. However, for years
1583 target_kill() was called here, which hints that fatal signals aren't
1584 really fatal on some systems. If that's true, then some changes
1586 target_mourn_inferior ();
1588 print_stop_reason (SIGNAL_EXITED, stop_signal);
1589 singlestep_breakpoints_inserted_p = 0; /*SOFTWARE_SINGLE_STEP_P() */
1590 stop_stepping (ecs);
1593 /* The following are the only cases in which we keep going;
1594 the above cases end in a continue or goto. */
1595 case TARGET_WAITKIND_FORKED:
1596 case TARGET_WAITKIND_VFORKED:
1597 stop_signal = TARGET_SIGNAL_TRAP;
1598 pending_follow.kind = ecs->ws.kind;
1600 pending_follow.fork_event.parent_pid = PIDGET (ecs->ptid);
1601 pending_follow.fork_event.child_pid = ecs->ws.value.related_pid;
1603 stop_pc = read_pc ();
1605 stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid);
1607 ecs->random_signal = !bpstat_explains_signal (stop_bpstat);
1609 /* If no catchpoint triggered for this, then keep going. */
1610 if (ecs->random_signal)
1612 stop_signal = TARGET_SIGNAL_0;
1616 goto process_event_stop_test;
1618 case TARGET_WAITKIND_EXECD:
1619 stop_signal = TARGET_SIGNAL_TRAP;
1621 /* NOTE drow/2002-12-05: This code should be pushed down into the
1622 target_wait function. Until then following vfork on HP/UX 10.20
1623 is probably broken by this. Of course, it's broken anyway. */
1624 /* Is this a target which reports multiple exec events per actual
1625 call to exec()? (HP-UX using ptrace does, for example.) If so,
1626 ignore all but the last one. Just resume the exec'r, and wait
1627 for the next exec event. */
1628 if (inferior_ignoring_leading_exec_events)
1630 inferior_ignoring_leading_exec_events--;
1631 if (pending_follow.kind == TARGET_WAITKIND_VFORKED)
1632 ENSURE_VFORKING_PARENT_REMAINS_STOPPED (pending_follow.fork_event.
1634 target_resume (ecs->ptid, 0, TARGET_SIGNAL_0);
1635 prepare_to_wait (ecs);
1638 inferior_ignoring_leading_exec_events =
1639 target_reported_exec_events_per_exec_call () - 1;
1641 pending_follow.execd_pathname =
1642 savestring (ecs->ws.value.execd_pathname,
1643 strlen (ecs->ws.value.execd_pathname));
1645 /* This causes the eventpoints and symbol table to be reset. Must
1646 do this now, before trying to determine whether to stop. */
1647 follow_exec (PIDGET (inferior_ptid), pending_follow.execd_pathname);
1648 xfree (pending_follow.execd_pathname);
1650 stop_pc = read_pc_pid (ecs->ptid);
1651 ecs->saved_inferior_ptid = inferior_ptid;
1652 inferior_ptid = ecs->ptid;
1654 stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid);
1656 ecs->random_signal = !bpstat_explains_signal (stop_bpstat);
1657 inferior_ptid = ecs->saved_inferior_ptid;
1659 /* If no catchpoint triggered for this, then keep going. */
1660 if (ecs->random_signal)
1662 stop_signal = TARGET_SIGNAL_0;
1666 goto process_event_stop_test;
1668 /* These syscall events are returned on HP-UX, as part of its
1669 implementation of page-protection-based "hardware" watchpoints.
1670 HP-UX has unfortunate interactions between page-protections and
1671 some system calls. Our solution is to disable hardware watches
1672 when a system call is entered, and reenable them when the syscall
1673 completes. The downside of this is that we may miss the precise
1674 point at which a watched piece of memory is modified. "Oh well."
1676 Note that we may have multiple threads running, which may each
1677 enter syscalls at roughly the same time. Since we don't have a
1678 good notion currently of whether a watched piece of memory is
1679 thread-private, we'd best not have any page-protections active
1680 when any thread is in a syscall. Thus, we only want to reenable
1681 hardware watches when no threads are in a syscall.
1683 Also, be careful not to try to gather much state about a thread
1684 that's in a syscall. It's frequently a losing proposition. */
1685 case TARGET_WAITKIND_SYSCALL_ENTRY:
1686 number_of_threads_in_syscalls++;
1687 if (number_of_threads_in_syscalls == 1)
1689 TARGET_DISABLE_HW_WATCHPOINTS (PIDGET (inferior_ptid));
1691 resume (0, TARGET_SIGNAL_0);
1692 prepare_to_wait (ecs);
1695 /* Before examining the threads further, step this thread to
1696 get it entirely out of the syscall. (We get notice of the
1697 event when the thread is just on the verge of exiting a
1698 syscall. Stepping one instruction seems to get it back
1701 Note that although the logical place to reenable h/w watches
1702 is here, we cannot. We cannot reenable them before stepping
1703 the thread (this causes the next wait on the thread to hang).
1705 Nor can we enable them after stepping until we've done a wait.
1706 Thus, we simply set the flag ecs->enable_hw_watchpoints_after_wait
1707 here, which will be serviced immediately after the target
1709 case TARGET_WAITKIND_SYSCALL_RETURN:
1710 target_resume (ecs->ptid, 1, TARGET_SIGNAL_0);
1712 if (number_of_threads_in_syscalls > 0)
1714 number_of_threads_in_syscalls--;
1715 ecs->enable_hw_watchpoints_after_wait =
1716 (number_of_threads_in_syscalls == 0);
1718 prepare_to_wait (ecs);
1721 case TARGET_WAITKIND_STOPPED:
1722 stop_signal = ecs->ws.value.sig;
1725 /* We had an event in the inferior, but we are not interested
1726 in handling it at this level. The lower layers have already
1727 done what needs to be done, if anything.
1729 One of the possible circumstances for this is when the
1730 inferior produces output for the console. The inferior has
1731 not stopped, and we are ignoring the event. Another possible
1732 circumstance is any event which the lower level knows will be
1733 reported multiple times without an intervening resume. */
1734 case TARGET_WAITKIND_IGNORE:
1735 prepare_to_wait (ecs);
1739 /* We may want to consider not doing a resume here in order to give
1740 the user a chance to play with the new thread. It might be good
1741 to make that a user-settable option. */
1743 /* At this point, all threads are stopped (happens automatically in
1744 either the OS or the native code). Therefore we need to continue
1745 all threads in order to make progress. */
1746 if (ecs->new_thread_event)
1748 target_resume (RESUME_ALL, 0, TARGET_SIGNAL_0);
1749 prepare_to_wait (ecs);
1753 stop_pc = read_pc_pid (ecs->ptid);
1755 if (stepping_past_singlestep_breakpoint)
1757 gdb_assert (SOFTWARE_SINGLE_STEP_P () && singlestep_breakpoints_inserted_p);
1758 gdb_assert (ptid_equal (singlestep_ptid, ecs->ptid));
1759 gdb_assert (!ptid_equal (singlestep_ptid, saved_singlestep_ptid));
1761 stepping_past_singlestep_breakpoint = 0;
1763 /* We've either finished single-stepping past the single-step
1764 breakpoint, or stopped for some other reason. It would be nice if
1765 we could tell, but we can't reliably. */
1766 if (stop_signal == TARGET_SIGNAL_TRAP)
1768 /* Pull the single step breakpoints out of the target. */
1769 SOFTWARE_SINGLE_STEP (0, 0);
1770 singlestep_breakpoints_inserted_p = 0;
1772 ecs->random_signal = 0;
1774 ecs->ptid = saved_singlestep_ptid;
1775 context_switch (ecs);
1777 context_hook (pid_to_thread_id (ecs->ptid));
1779 resume (1, TARGET_SIGNAL_0);
1780 prepare_to_wait (ecs);
1785 stepping_past_singlestep_breakpoint = 0;
1787 /* See if a thread hit a thread-specific breakpoint that was meant for
1788 another thread. If so, then step that thread past the breakpoint,
1791 if (stop_signal == TARGET_SIGNAL_TRAP)
1793 int thread_hop_needed = 0;
1795 /* Check if a regular breakpoint has been hit before checking
1796 for a potential single step breakpoint. Otherwise, GDB will
1797 not see this breakpoint hit when stepping onto breakpoints. */
1798 if (breakpoints_inserted && breakpoint_here_p (stop_pc))
1800 ecs->random_signal = 0;
1801 if (!breakpoint_thread_match (stop_pc, ecs->ptid))
1802 thread_hop_needed = 1;
1804 else if (SOFTWARE_SINGLE_STEP_P () && singlestep_breakpoints_inserted_p)
1806 ecs->random_signal = 0;
1807 /* The call to in_thread_list is necessary because PTIDs sometimes
1808 change when we go from single-threaded to multi-threaded. If
1809 the singlestep_ptid is still in the list, assume that it is
1810 really different from ecs->ptid. */
1811 if (!ptid_equal (singlestep_ptid, ecs->ptid)
1812 && in_thread_list (singlestep_ptid))
1814 thread_hop_needed = 1;
1815 stepping_past_singlestep_breakpoint = 1;
1816 saved_singlestep_ptid = singlestep_ptid;
1820 if (thread_hop_needed)
1824 /* Saw a breakpoint, but it was hit by the wrong thread.
1827 if (SOFTWARE_SINGLE_STEP_P () && singlestep_breakpoints_inserted_p)
1829 /* Pull the single step breakpoints out of the target. */
1830 SOFTWARE_SINGLE_STEP (0, 0);
1831 singlestep_breakpoints_inserted_p = 0;
1834 remove_status = remove_breakpoints ();
1835 /* Did we fail to remove breakpoints? If so, try
1836 to set the PC past the bp. (There's at least
1837 one situation in which we can fail to remove
1838 the bp's: On HP-UX's that use ttrace, we can't
1839 change the address space of a vforking child
1840 process until the child exits (well, okay, not
1841 then either :-) or execs. */
1842 if (remove_status != 0)
1844 /* FIXME! This is obviously non-portable! */
1845 write_pc_pid (stop_pc + 4, ecs->ptid);
1846 /* We need to restart all the threads now,
1847 * unles we're running in scheduler-locked mode.
1848 * Use currently_stepping to determine whether to
1851 /* FIXME MVS: is there any reason not to call resume()? */
1852 if (scheduler_mode == schedlock_on)
1853 target_resume (ecs->ptid,
1854 currently_stepping (ecs), TARGET_SIGNAL_0);
1856 target_resume (RESUME_ALL,
1857 currently_stepping (ecs), TARGET_SIGNAL_0);
1858 prepare_to_wait (ecs);
1863 breakpoints_inserted = 0;
1864 if (!ptid_equal (inferior_ptid, ecs->ptid))
1865 context_switch (ecs);
1866 ecs->waiton_ptid = ecs->ptid;
1867 ecs->wp = &(ecs->ws);
1868 ecs->another_trap = 1;
1870 ecs->infwait_state = infwait_thread_hop_state;
1872 registers_changed ();
1876 else if (SOFTWARE_SINGLE_STEP_P () && singlestep_breakpoints_inserted_p)
1878 sw_single_step_trap_p = 1;
1879 ecs->random_signal = 0;
1883 ecs->random_signal = 1;
1885 /* See if something interesting happened to the non-current thread. If
1886 so, then switch to that thread, and eventually give control back to
1889 Note that if there's any kind of pending follow (i.e., of a fork,
1890 vfork or exec), we don't want to do this now. Rather, we'll let
1891 the next resume handle it. */
1892 if (!ptid_equal (ecs->ptid, inferior_ptid) &&
1893 (pending_follow.kind == TARGET_WAITKIND_SPURIOUS))
1897 /* If it's a random signal for a non-current thread, notify user
1898 if he's expressed an interest. */
1899 if (ecs->random_signal && signal_print[stop_signal])
1901 /* ??rehrauer: I don't understand the rationale for this code. If the
1902 inferior will stop as a result of this signal, then the act of handling
1903 the stop ought to print a message that's couches the stoppage in user
1904 terms, e.g., "Stopped for breakpoint/watchpoint". If the inferior
1905 won't stop as a result of the signal -- i.e., if the signal is merely
1906 a side-effect of something GDB's doing "under the covers" for the
1907 user, such as stepping threads over a breakpoint they shouldn't stop
1908 for -- then the message seems to be a serious annoyance at best.
1910 For now, remove the message altogether. */
1913 target_terminal_ours_for_output ();
1914 printf_filtered ("\nProgram received signal %s, %s.\n",
1915 target_signal_to_name (stop_signal),
1916 target_signal_to_string (stop_signal));
1917 gdb_flush (gdb_stdout);
1921 /* If it's not SIGTRAP and not a signal we want to stop for, then
1922 continue the thread. */
1924 if (stop_signal != TARGET_SIGNAL_TRAP && !signal_stop[stop_signal])
1927 target_terminal_inferior ();
1929 /* Clear the signal if it should not be passed. */
1930 if (signal_program[stop_signal] == 0)
1931 stop_signal = TARGET_SIGNAL_0;
1933 target_resume (ecs->ptid, 0, stop_signal);
1934 prepare_to_wait (ecs);
1938 /* It's a SIGTRAP or a signal we're interested in. Switch threads,
1939 and fall into the rest of wait_for_inferior(). */
1941 context_switch (ecs);
1944 context_hook (pid_to_thread_id (ecs->ptid));
1946 flush_cached_frames ();
1949 if (SOFTWARE_SINGLE_STEP_P () && singlestep_breakpoints_inserted_p)
1951 /* Pull the single step breakpoints out of the target. */
1952 SOFTWARE_SINGLE_STEP (0, 0);
1953 singlestep_breakpoints_inserted_p = 0;
1956 /* If PC is pointing at a nullified instruction, then step beyond
1957 it so that the user won't be confused when GDB appears to be ready
1960 /* if (INSTRUCTION_NULLIFIED && currently_stepping (ecs)) */
1961 if (INSTRUCTION_NULLIFIED)
1963 registers_changed ();
1964 target_resume (ecs->ptid, 1, TARGET_SIGNAL_0);
1966 /* We may have received a signal that we want to pass to
1967 the inferior; therefore, we must not clobber the waitstatus
1970 ecs->infwait_state = infwait_nullified_state;
1971 ecs->waiton_ptid = ecs->ptid;
1972 ecs->wp = &(ecs->tmpstatus);
1973 prepare_to_wait (ecs);
1977 /* It may not be necessary to disable the watchpoint to stop over
1978 it. For example, the PA can (with some kernel cooperation)
1979 single step over a watchpoint without disabling the watchpoint. */
1980 if (HAVE_STEPPABLE_WATCHPOINT && STOPPED_BY_WATCHPOINT (ecs->ws))
1983 prepare_to_wait (ecs);
1987 /* It is far more common to need to disable a watchpoint to step
1988 the inferior over it. FIXME. What else might a debug
1989 register or page protection watchpoint scheme need here? */
1990 if (HAVE_NONSTEPPABLE_WATCHPOINT && STOPPED_BY_WATCHPOINT (ecs->ws))
1992 /* At this point, we are stopped at an instruction which has
1993 attempted to write to a piece of memory under control of
1994 a watchpoint. The instruction hasn't actually executed
1995 yet. If we were to evaluate the watchpoint expression
1996 now, we would get the old value, and therefore no change
1997 would seem to have occurred.
1999 In order to make watchpoints work `right', we really need
2000 to complete the memory write, and then evaluate the
2001 watchpoint expression. The following code does that by
2002 removing the watchpoint (actually, all watchpoints and
2003 breakpoints), single-stepping the target, re-inserting
2004 watchpoints, and then falling through to let normal
2005 single-step processing handle proceed. Since this
2006 includes evaluating watchpoints, things will come to a
2007 stop in the correct manner. */
2009 remove_breakpoints ();
2010 registers_changed ();
2011 target_resume (ecs->ptid, 1, TARGET_SIGNAL_0); /* Single step */
2013 ecs->waiton_ptid = ecs->ptid;
2014 ecs->wp = &(ecs->ws);
2015 ecs->infwait_state = infwait_nonstep_watch_state;
2016 prepare_to_wait (ecs);
2020 /* It may be possible to simply continue after a watchpoint. */
2021 if (HAVE_CONTINUABLE_WATCHPOINT)
2022 STOPPED_BY_WATCHPOINT (ecs->ws);
2024 ecs->stop_func_start = 0;
2025 ecs->stop_func_end = 0;
2026 ecs->stop_func_name = 0;
2027 /* Don't care about return value; stop_func_start and stop_func_name
2028 will both be 0 if it doesn't work. */
2029 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
2030 &ecs->stop_func_start, &ecs->stop_func_end);
2031 ecs->stop_func_start += FUNCTION_START_OFFSET;
2032 ecs->another_trap = 0;
2033 bpstat_clear (&stop_bpstat);
2035 stop_stack_dummy = 0;
2036 stop_print_frame = 1;
2037 ecs->random_signal = 0;
2038 stopped_by_random_signal = 0;
2039 breakpoints_failed = 0;
2041 /* Look at the cause of the stop, and decide what to do.
2042 The alternatives are:
2043 1) break; to really stop and return to the debugger,
2044 2) drop through to start up again
2045 (set ecs->another_trap to 1 to single step once)
2046 3) set ecs->random_signal to 1, and the decision between 1 and 2
2047 will be made according to the signal handling tables. */
2049 /* First, distinguish signals caused by the debugger from signals
2050 that have to do with the program's own actions. Note that
2051 breakpoint insns may cause SIGTRAP or SIGILL or SIGEMT, depending
2052 on the operating system version. Here we detect when a SIGILL or
2053 SIGEMT is really a breakpoint and change it to SIGTRAP. We do
2054 something similar for SIGSEGV, since a SIGSEGV will be generated
2055 when we're trying to execute a breakpoint instruction on a
2056 non-executable stack. This happens for call dummy breakpoints
2057 for architectures like SPARC that place call dummies on the
2060 if (stop_signal == TARGET_SIGNAL_TRAP
2061 || (breakpoints_inserted &&
2062 (stop_signal == TARGET_SIGNAL_ILL
2063 || stop_signal == TARGET_SIGNAL_SEGV
2064 || stop_signal == TARGET_SIGNAL_EMT))
2065 || stop_soon == STOP_QUIETLY
2066 || stop_soon == STOP_QUIETLY_NO_SIGSTOP)
2068 if (stop_signal == TARGET_SIGNAL_TRAP && stop_after_trap)
2070 stop_print_frame = 0;
2071 stop_stepping (ecs);
2075 /* This is originated from start_remote(), start_inferior() and
2076 shared libraries hook functions. */
2077 if (stop_soon == STOP_QUIETLY)
2079 stop_stepping (ecs);
2083 /* This originates from attach_command(). We need to overwrite
2084 the stop_signal here, because some kernels don't ignore a
2085 SIGSTOP in a subsequent ptrace(PTRACE_SONT,SOGSTOP) call.
2086 See more comments in inferior.h. */
2087 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP)
2089 stop_stepping (ecs);
2090 if (stop_signal == TARGET_SIGNAL_STOP)
2091 stop_signal = TARGET_SIGNAL_0;
2095 /* Don't even think about breakpoints
2096 if just proceeded over a breakpoint.
2098 However, if we are trying to proceed over a breakpoint
2099 and end up in sigtramp, then through_sigtramp_breakpoint
2100 will be set and we should check whether we've hit the
2102 if (stop_signal == TARGET_SIGNAL_TRAP && trap_expected
2103 && through_sigtramp_breakpoint == NULL)
2104 bpstat_clear (&stop_bpstat);
2107 /* See if there is a breakpoint at the current PC. */
2108 stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid);
2110 /* Following in case break condition called a
2112 stop_print_frame = 1;
2115 /* NOTE: cagney/2003-03-29: These two checks for a random signal
2116 at one stage in the past included checks for an inferior
2117 function call's call dummy's return breakpoint. The original
2118 comment, that went with the test, read:
2120 ``End of a stack dummy. Some systems (e.g. Sony news) give
2121 another signal besides SIGTRAP, so check here as well as
2124 If someone ever tries to get get call dummys on a
2125 non-executable stack to work (where the target would stop
2126 with something like a SIGSEGV), then those tests might need
2127 to be re-instated. Given, however, that the tests were only
2128 enabled when momentary breakpoints were not being used, I
2129 suspect that it won't be the case.
2131 NOTE: kettenis/2004-02-05: Indeed such checks don't seem to
2132 be necessary for call dummies on a non-executable stack on
2135 if (stop_signal == TARGET_SIGNAL_TRAP)
2137 = !(bpstat_explains_signal (stop_bpstat)
2139 || (step_range_end && step_resume_breakpoint == NULL));
2142 ecs->random_signal = !bpstat_explains_signal (stop_bpstat);
2143 if (!ecs->random_signal)
2144 stop_signal = TARGET_SIGNAL_TRAP;
2148 /* When we reach this point, we've pretty much decided
2149 that the reason for stopping must've been a random
2150 (unexpected) signal. */
2153 ecs->random_signal = 1;
2155 process_event_stop_test:
2156 /* For the program's own signals, act according to
2157 the signal handling tables. */
2159 if (ecs->random_signal)
2161 /* Signal not for debugging purposes. */
2164 stopped_by_random_signal = 1;
2166 if (signal_print[stop_signal])
2169 target_terminal_ours_for_output ();
2170 print_stop_reason (SIGNAL_RECEIVED, stop_signal);
2172 if (signal_stop[stop_signal])
2174 stop_stepping (ecs);
2177 /* If not going to stop, give terminal back
2178 if we took it away. */
2180 target_terminal_inferior ();
2182 /* Clear the signal if it should not be passed. */
2183 if (signal_program[stop_signal] == 0)
2184 stop_signal = TARGET_SIGNAL_0;
2186 /* I'm not sure whether this needs to be check_sigtramp2 or
2187 whether it could/should be keep_going.
2189 This used to jump to step_over_function if we are stepping,
2192 Suppose the user does a `next' over a function call, and while
2193 that call is in progress, the inferior receives a signal for
2194 which GDB does not stop (i.e., signal_stop[SIG] is false). In
2195 that case, when we reach this point, there is already a
2196 step-resume breakpoint established, right where it should be:
2197 immediately after the function call the user is "next"-ing
2198 over. If we call step_over_function now, two bad things
2201 - we'll create a new breakpoint, at wherever the current
2202 frame's return address happens to be. That could be
2203 anywhere, depending on what function call happens to be on
2204 the top of the stack at that point. Point is, it's probably
2205 not where we need it.
2207 - the existing step-resume breakpoint (which is at the correct
2208 address) will get orphaned: step_resume_breakpoint will point
2209 to the new breakpoint, and the old step-resume breakpoint
2210 will never be cleaned up.
2212 The old behavior was meant to help HP-UX single-step out of
2213 sigtramps. It would place the new breakpoint at prev_pc, which
2214 was certainly wrong. I don't know the details there, so fixing
2215 this probably breaks that. As with anything else, it's up to
2216 the HP-UX maintainer to furnish a fix that doesn't break other
2217 platforms. --JimB, 20 May 1999 */
2218 check_sigtramp2 (ecs);
2223 /* Handle cases caused by hitting a breakpoint. */
2225 CORE_ADDR jmp_buf_pc;
2226 struct bpstat_what what;
2228 what = bpstat_what (stop_bpstat);
2230 if (what.call_dummy)
2232 stop_stack_dummy = 1;
2234 trap_expected_after_continue = 1;
2238 switch (what.main_action)
2240 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
2241 /* If we hit the breakpoint at longjmp, disable it for the
2242 duration of this command. Then, install a temporary
2243 breakpoint at the target of the jmp_buf. */
2244 disable_longjmp_breakpoint ();
2245 remove_breakpoints ();
2246 breakpoints_inserted = 0;
2247 if (!GET_LONGJMP_TARGET_P () || !GET_LONGJMP_TARGET (&jmp_buf_pc))
2253 /* Need to blow away step-resume breakpoint, as it
2254 interferes with us */
2255 if (step_resume_breakpoint != NULL)
2257 delete_step_resume_breakpoint (&step_resume_breakpoint);
2259 /* Not sure whether we need to blow this away too, but probably
2260 it is like the step-resume breakpoint. */
2261 if (through_sigtramp_breakpoint != NULL)
2263 delete_breakpoint (through_sigtramp_breakpoint);
2264 through_sigtramp_breakpoint = NULL;
2268 /* FIXME - Need to implement nested temporary breakpoints */
2269 if (step_over_calls > 0)
2270 set_longjmp_resume_breakpoint (jmp_buf_pc, get_current_frame ());
2273 set_longjmp_resume_breakpoint (jmp_buf_pc, null_frame_id);
2274 ecs->handling_longjmp = 1; /* FIXME */
2278 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
2279 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE:
2280 remove_breakpoints ();
2281 breakpoints_inserted = 0;
2283 /* FIXME - Need to implement nested temporary breakpoints */
2285 && (frame_id_inner (get_frame_id (get_current_frame ()),
2288 ecs->another_trap = 1;
2293 disable_longjmp_breakpoint ();
2294 ecs->handling_longjmp = 0; /* FIXME */
2295 if (what.main_action == BPSTAT_WHAT_CLEAR_LONGJMP_RESUME)
2297 /* else fallthrough */
2299 case BPSTAT_WHAT_SINGLE:
2300 if (breakpoints_inserted)
2302 remove_breakpoints ();
2304 breakpoints_inserted = 0;
2305 ecs->another_trap = 1;
2306 /* Still need to check other stuff, at least the case
2307 where we are stepping and step out of the right range. */
2310 case BPSTAT_WHAT_STOP_NOISY:
2311 stop_print_frame = 1;
2313 /* We are about to nuke the step_resume_breakpoint and
2314 through_sigtramp_breakpoint via the cleanup chain, so
2315 no need to worry about it here. */
2317 stop_stepping (ecs);
2320 case BPSTAT_WHAT_STOP_SILENT:
2321 stop_print_frame = 0;
2323 /* We are about to nuke the step_resume_breakpoint and
2324 through_sigtramp_breakpoint via the cleanup chain, so
2325 no need to worry about it here. */
2327 stop_stepping (ecs);
2330 case BPSTAT_WHAT_STEP_RESUME:
2331 /* This proably demands a more elegant solution, but, yeah
2334 This function's use of the simple variable
2335 step_resume_breakpoint doesn't seem to accomodate
2336 simultaneously active step-resume bp's, although the
2337 breakpoint list certainly can.
2339 If we reach here and step_resume_breakpoint is already
2340 NULL, then apparently we have multiple active
2341 step-resume bp's. We'll just delete the breakpoint we
2342 stopped at, and carry on.
2344 Correction: what the code currently does is delete a
2345 step-resume bp, but it makes no effort to ensure that
2346 the one deleted is the one currently stopped at. MVS */
2348 if (step_resume_breakpoint == NULL)
2350 step_resume_breakpoint =
2351 bpstat_find_step_resume_breakpoint (stop_bpstat);
2353 delete_step_resume_breakpoint (&step_resume_breakpoint);
2356 case BPSTAT_WHAT_THROUGH_SIGTRAMP:
2357 if (through_sigtramp_breakpoint)
2358 delete_breakpoint (through_sigtramp_breakpoint);
2359 through_sigtramp_breakpoint = NULL;
2361 /* If were waiting for a trap, hitting the step_resume_break
2362 doesn't count as getting it. */
2364 ecs->another_trap = 1;
2367 case BPSTAT_WHAT_CHECK_SHLIBS:
2368 case BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK:
2371 /* Remove breakpoints, we eventually want to step over the
2372 shlib event breakpoint, and SOLIB_ADD might adjust
2373 breakpoint addresses via breakpoint_re_set. */
2374 if (breakpoints_inserted)
2375 remove_breakpoints ();
2376 breakpoints_inserted = 0;
2378 /* Check for any newly added shared libraries if we're
2379 supposed to be adding them automatically. Switch
2380 terminal for any messages produced by
2381 breakpoint_re_set. */
2382 target_terminal_ours_for_output ();
2383 /* NOTE: cagney/2003-11-25: Make certain that the target
2384 stack's section table is kept up-to-date. Architectures,
2385 (e.g., PPC64), use the section table to perform
2386 operations such as address => section name and hence
2387 require the table to contain all sections (including
2388 those found in shared libraries). */
2389 /* NOTE: cagney/2003-11-25: Pass current_target and not
2390 exec_ops to SOLIB_ADD. This is because current GDB is
2391 only tooled to propagate section_table changes out from
2392 the "current_target" (see target_resize_to_sections), and
2393 not up from the exec stratum. This, of course, isn't
2394 right. "infrun.c" should only interact with the
2395 exec/process stratum, instead relying on the target stack
2396 to propagate relevant changes (stop, section table
2397 changed, ...) up to other layers. */
2398 SOLIB_ADD (NULL, 0, ¤t_target, auto_solib_add);
2399 target_terminal_inferior ();
2401 /* Try to reenable shared library breakpoints, additional
2402 code segments in shared libraries might be mapped in now. */
2403 re_enable_breakpoints_in_shlibs ();
2405 /* If requested, stop when the dynamic linker notifies
2406 gdb of events. This allows the user to get control
2407 and place breakpoints in initializer routines for
2408 dynamically loaded objects (among other things). */
2409 if (stop_on_solib_events || stop_stack_dummy)
2411 stop_stepping (ecs);
2415 /* If we stopped due to an explicit catchpoint, then the
2416 (see above) call to SOLIB_ADD pulled in any symbols
2417 from a newly-loaded library, if appropriate.
2419 We do want the inferior to stop, but not where it is
2420 now, which is in the dynamic linker callback. Rather,
2421 we would like it stop in the user's program, just after
2422 the call that caused this catchpoint to trigger. That
2423 gives the user a more useful vantage from which to
2424 examine their program's state. */
2425 else if (what.main_action ==
2426 BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK)
2428 /* ??rehrauer: If I could figure out how to get the
2429 right return PC from here, we could just set a temp
2430 breakpoint and resume. I'm not sure we can without
2431 cracking open the dld's shared libraries and sniffing
2432 their unwind tables and text/data ranges, and that's
2433 not a terribly portable notion.
2435 Until that time, we must step the inferior out of the
2436 dld callback, and also out of the dld itself (and any
2437 code or stubs in libdld.sl, such as "shl_load" and
2438 friends) until we reach non-dld code. At that point,
2439 we can stop stepping. */
2440 bpstat_get_triggered_catchpoints (stop_bpstat,
2442 stepping_through_solib_catchpoints);
2443 ecs->stepping_through_solib_after_catch = 1;
2445 /* Be sure to lift all breakpoints, so the inferior does
2446 actually step past this point... */
2447 ecs->another_trap = 1;
2452 /* We want to step over this breakpoint, then keep going. */
2453 ecs->another_trap = 1;
2460 case BPSTAT_WHAT_LAST:
2461 /* Not a real code, but listed here to shut up gcc -Wall. */
2463 case BPSTAT_WHAT_KEEP_CHECKING:
2468 /* We come here if we hit a breakpoint but should not
2469 stop for it. Possibly we also were stepping
2470 and should stop for that. So fall through and
2471 test for stepping. But, if not stepping,
2474 /* Are we stepping to get the inferior out of the dynamic
2475 linker's hook (and possibly the dld itself) after catching
2477 if (ecs->stepping_through_solib_after_catch)
2479 #if defined(SOLIB_ADD)
2480 /* Have we reached our destination? If not, keep going. */
2481 if (SOLIB_IN_DYNAMIC_LINKER (PIDGET (ecs->ptid), stop_pc))
2483 ecs->another_trap = 1;
2488 /* Else, stop and report the catchpoint(s) whose triggering
2489 caused us to begin stepping. */
2490 ecs->stepping_through_solib_after_catch = 0;
2491 bpstat_clear (&stop_bpstat);
2492 stop_bpstat = bpstat_copy (ecs->stepping_through_solib_catchpoints);
2493 bpstat_clear (&ecs->stepping_through_solib_catchpoints);
2494 stop_print_frame = 1;
2495 stop_stepping (ecs);
2499 if (step_resume_breakpoint)
2501 /* Having a step-resume breakpoint overrides anything
2502 else having to do with stepping commands until
2503 that breakpoint is reached. */
2504 /* I'm not sure whether this needs to be check_sigtramp2 or
2505 whether it could/should be keep_going. */
2506 check_sigtramp2 (ecs);
2511 if (step_range_end == 0)
2513 /* Likewise if we aren't even stepping. */
2514 /* I'm not sure whether this needs to be check_sigtramp2 or
2515 whether it could/should be keep_going. */
2516 check_sigtramp2 (ecs);
2521 /* If stepping through a line, keep going if still within it.
2523 Note that step_range_end is the address of the first instruction
2524 beyond the step range, and NOT the address of the last instruction
2526 if (stop_pc >= step_range_start && stop_pc < step_range_end)
2528 /* We might be doing a BPSTAT_WHAT_SINGLE and getting a signal.
2529 So definately need to check for sigtramp here. */
2530 check_sigtramp2 (ecs);
2535 /* We stepped out of the stepping range. */
2537 /* If we are stepping at the source level and entered the runtime
2538 loader dynamic symbol resolution code, we keep on single stepping
2539 until we exit the run time loader code and reach the callee's
2541 if (step_over_calls == STEP_OVER_UNDEBUGGABLE
2542 && IN_SOLIB_DYNSYM_RESOLVE_CODE (stop_pc))
2544 CORE_ADDR pc_after_resolver =
2545 gdbarch_skip_solib_resolver (current_gdbarch, stop_pc);
2547 if (pc_after_resolver)
2549 /* Set up a step-resume breakpoint at the address
2550 indicated by SKIP_SOLIB_RESOLVER. */
2551 struct symtab_and_line sr_sal;
2553 sr_sal.pc = pc_after_resolver;
2555 check_for_old_step_resume_breakpoint ();
2556 step_resume_breakpoint =
2557 set_momentary_breakpoint (sr_sal, null_frame_id, bp_step_resume);
2558 if (breakpoints_inserted)
2559 insert_breakpoints ();
2566 /* We can't update step_sp every time through the loop, because
2567 reading the stack pointer would slow down stepping too much.
2568 But we can update it every time we leave the step range. */
2569 ecs->update_step_sp = 1;
2571 /* Did we just take a signal? */
2572 if (pc_in_sigtramp (stop_pc)
2573 && !pc_in_sigtramp (prev_pc)
2574 && INNER_THAN (read_sp (), step_sp))
2576 /* We've just taken a signal; go until we are back to
2577 the point where we took it and one more. */
2579 /* Note: The test above succeeds not only when we stepped
2580 into a signal handler, but also when we step past the last
2581 statement of a signal handler and end up in the return stub
2582 of the signal handler trampoline. To distinguish between
2583 these two cases, check that the frame is INNER_THAN the
2584 previous one below. pai/1997-09-11 */
2588 struct frame_id current_frame = get_frame_id (get_current_frame ());
2590 if (frame_id_inner (current_frame, step_frame_id))
2592 /* We have just taken a signal; go until we are back to
2593 the point where we took it and one more. */
2595 /* This code is needed at least in the following case:
2596 The user types "next" and then a signal arrives (before
2597 the "next" is done). */
2599 /* Note that if we are stopped at a breakpoint, then we need
2600 the step_resume breakpoint to override any breakpoints at
2601 the same location, so that we will still step over the
2602 breakpoint even though the signal happened. */
2603 struct symtab_and_line sr_sal;
2606 sr_sal.symtab = NULL;
2608 sr_sal.pc = prev_pc;
2609 /* We could probably be setting the frame to
2610 step_frame_id; I don't think anyone thought to try it. */
2611 check_for_old_step_resume_breakpoint ();
2612 step_resume_breakpoint =
2613 set_momentary_breakpoint (sr_sal, null_frame_id, bp_step_resume);
2614 if (breakpoints_inserted)
2615 insert_breakpoints ();
2619 /* We just stepped out of a signal handler and into
2620 its calling trampoline.
2622 Normally, we'd call step_over_function from
2623 here, but for some reason GDB can't unwind the
2624 stack correctly to find the real PC for the point
2625 user code where the signal trampoline will return
2626 -- FRAME_SAVED_PC fails, at least on HP-UX 10.20.
2627 But signal trampolines are pretty small stubs of
2628 code, anyway, so it's OK instead to just
2629 single-step out. Note: assuming such trampolines
2630 don't exhibit recursion on any platform... */
2631 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
2632 &ecs->stop_func_start,
2633 &ecs->stop_func_end);
2634 /* Readjust stepping range */
2635 step_range_start = ecs->stop_func_start;
2636 step_range_end = ecs->stop_func_end;
2637 ecs->stepping_through_sigtramp = 1;
2642 /* If this is stepi or nexti, make sure that the stepping range
2643 gets us past that instruction. */
2644 if (step_range_end == 1)
2645 /* FIXME: Does this run afoul of the code below which, if
2646 we step into the middle of a line, resets the stepping
2648 step_range_end = (step_range_start = prev_pc) + 1;
2650 ecs->remove_breakpoints_on_following_step = 1;
2655 if (((stop_pc == ecs->stop_func_start /* Quick test */
2656 || in_prologue (stop_pc, ecs->stop_func_start))
2657 && !IN_SOLIB_RETURN_TRAMPOLINE (stop_pc, ecs->stop_func_name))
2658 || IN_SOLIB_CALL_TRAMPOLINE (stop_pc, ecs->stop_func_name)
2659 || ecs->stop_func_name == 0)
2661 /* It's a subroutine call. */
2662 handle_step_into_function (ecs);
2666 /* We've wandered out of the step range. */
2668 ecs->sal = find_pc_line (stop_pc, 0);
2670 if (step_range_end == 1)
2672 /* It is stepi or nexti. We always want to stop stepping after
2675 print_stop_reason (END_STEPPING_RANGE, 0);
2676 stop_stepping (ecs);
2680 /* If we're in the return path from a shared library trampoline,
2681 we want to proceed through the trampoline when stepping. */
2682 if (IN_SOLIB_RETURN_TRAMPOLINE (stop_pc, ecs->stop_func_name))
2684 /* Determine where this trampoline returns. */
2685 CORE_ADDR real_stop_pc = SKIP_TRAMPOLINE_CODE (stop_pc);
2687 /* Only proceed through if we know where it's going. */
2690 /* And put the step-breakpoint there and go until there. */
2691 struct symtab_and_line sr_sal;
2693 init_sal (&sr_sal); /* initialize to zeroes */
2694 sr_sal.pc = real_stop_pc;
2695 sr_sal.section = find_pc_overlay (sr_sal.pc);
2696 /* Do not specify what the fp should be when we stop
2697 since on some machines the prologue
2698 is where the new fp value is established. */
2699 check_for_old_step_resume_breakpoint ();
2700 step_resume_breakpoint =
2701 set_momentary_breakpoint (sr_sal, null_frame_id, bp_step_resume);
2702 if (breakpoints_inserted)
2703 insert_breakpoints ();
2705 /* Restart without fiddling with the step ranges or
2712 if (ecs->sal.line == 0)
2714 /* We have no line number information. That means to stop
2715 stepping (does this always happen right after one instruction,
2716 when we do "s" in a function with no line numbers,
2717 or can this happen as a result of a return or longjmp?). */
2719 print_stop_reason (END_STEPPING_RANGE, 0);
2720 stop_stepping (ecs);
2724 if ((stop_pc == ecs->sal.pc)
2725 && (ecs->current_line != ecs->sal.line
2726 || ecs->current_symtab != ecs->sal.symtab))
2728 /* We are at the start of a different line. So stop. Note that
2729 we don't stop if we step into the middle of a different line.
2730 That is said to make things like for (;;) statements work
2733 print_stop_reason (END_STEPPING_RANGE, 0);
2734 stop_stepping (ecs);
2738 /* We aren't done stepping.
2740 Optimize by setting the stepping range to the line.
2741 (We might not be in the original line, but if we entered a
2742 new line in mid-statement, we continue stepping. This makes
2743 things like for(;;) statements work better.) */
2745 if (ecs->stop_func_end && ecs->sal.end >= ecs->stop_func_end)
2747 /* If this is the last line of the function, don't keep stepping
2748 (it would probably step us out of the function).
2749 This is particularly necessary for a one-line function,
2750 in which after skipping the prologue we better stop even though
2751 we will be in mid-line. */
2753 print_stop_reason (END_STEPPING_RANGE, 0);
2754 stop_stepping (ecs);
2757 step_range_start = ecs->sal.pc;
2758 step_range_end = ecs->sal.end;
2759 step_frame_id = get_frame_id (get_current_frame ());
2760 ecs->current_line = ecs->sal.line;
2761 ecs->current_symtab = ecs->sal.symtab;
2763 /* In the case where we just stepped out of a function into the
2764 middle of a line of the caller, continue stepping, but
2765 step_frame_id must be modified to current frame */
2767 /* NOTE: cagney/2003-10-16: I think this frame ID inner test is too
2768 generous. It will trigger on things like a step into a frameless
2769 stackless leaf function. I think the logic should instead look
2770 at the unwound frame ID has that should give a more robust
2771 indication of what happened. */
2772 if (step-ID == current-ID)
2773 still stepping in same function;
2774 else if (step-ID == unwind (current-ID))
2775 stepped into a function;
2777 stepped out of a function;
2778 /* Of course this assumes that the frame ID unwind code is robust
2779 and we're willing to introduce frame unwind logic into this
2780 function. Fortunately, those days are nearly upon us. */
2783 struct frame_id current_frame = get_frame_id (get_current_frame ());
2784 if (!(frame_id_inner (current_frame, step_frame_id)))
2785 step_frame_id = current_frame;
2791 /* Are we in the middle of stepping? */
2794 currently_stepping (struct execution_control_state *ecs)
2796 return ((through_sigtramp_breakpoint == NULL
2797 && !ecs->handling_longjmp
2798 && ((step_range_end && step_resume_breakpoint == NULL)
2800 || ecs->stepping_through_solib_after_catch
2801 || bpstat_should_step ());
2805 check_sigtramp2 (struct execution_control_state *ecs)
2808 && pc_in_sigtramp (stop_pc)
2809 && !pc_in_sigtramp (prev_pc)
2810 && INNER_THAN (read_sp (), step_sp))
2812 /* What has happened here is that we have just stepped the
2813 inferior with a signal (because it is a signal which
2814 shouldn't make us stop), thus stepping into sigtramp.
2816 So we need to set a step_resume_break_address breakpoint and
2817 continue until we hit it, and then step. FIXME: This should
2818 be more enduring than a step_resume breakpoint; we should
2819 know that we will later need to keep going rather than
2820 re-hitting the breakpoint here (see the testsuite,
2821 gdb.base/signals.exp where it says "exceedingly difficult"). */
2823 struct symtab_and_line sr_sal;
2825 init_sal (&sr_sal); /* initialize to zeroes */
2826 sr_sal.pc = prev_pc;
2827 sr_sal.section = find_pc_overlay (sr_sal.pc);
2828 /* We perhaps could set the frame if we kept track of what the
2829 frame corresponding to prev_pc was. But we don't, so don't. */
2830 through_sigtramp_breakpoint =
2831 set_momentary_breakpoint (sr_sal, null_frame_id, bp_through_sigtramp);
2832 if (breakpoints_inserted)
2833 insert_breakpoints ();
2835 ecs->remove_breakpoints_on_following_step = 1;
2836 ecs->another_trap = 1;
2840 /* Subroutine call with source code we should not step over. Do step
2841 to the first line of code in it. */
2844 step_into_function (struct execution_control_state *ecs)
2847 struct symtab_and_line sr_sal;
2849 s = find_pc_symtab (stop_pc);
2850 if (s && s->language != language_asm)
2851 ecs->stop_func_start = SKIP_PROLOGUE (ecs->stop_func_start);
2853 ecs->sal = find_pc_line (ecs->stop_func_start, 0);
2854 /* Use the step_resume_break to step until the end of the prologue,
2855 even if that involves jumps (as it seems to on the vax under
2857 /* If the prologue ends in the middle of a source line, continue to
2858 the end of that source line (if it is still within the function).
2859 Otherwise, just go to end of prologue. */
2861 && ecs->sal.pc != ecs->stop_func_start
2862 && ecs->sal.end < ecs->stop_func_end)
2863 ecs->stop_func_start = ecs->sal.end;
2865 /* Architectures which require breakpoint adjustment might not be able
2866 to place a breakpoint at the computed address. If so, the test
2867 ``ecs->stop_func_start == stop_pc'' will never succeed. Adjust
2868 ecs->stop_func_start to an address at which a breakpoint may be
2869 legitimately placed.
2871 Note: kevinb/2004-01-19: On FR-V, if this adjustment is not
2872 made, GDB will enter an infinite loop when stepping through
2873 optimized code consisting of VLIW instructions which contain
2874 subinstructions corresponding to different source lines. On
2875 FR-V, it's not permitted to place a breakpoint on any but the
2876 first subinstruction of a VLIW instruction. When a breakpoint is
2877 set, GDB will adjust the breakpoint address to the beginning of
2878 the VLIW instruction. Thus, we need to make the corresponding
2879 adjustment here when computing the stop address. */
2881 if (gdbarch_adjust_breakpoint_address_p (current_gdbarch))
2883 ecs->stop_func_start
2884 = gdbarch_adjust_breakpoint_address (current_gdbarch,
2885 ecs->stop_func_start);
2888 if (ecs->stop_func_start == stop_pc)
2890 /* We are already there: stop now. */
2892 print_stop_reason (END_STEPPING_RANGE, 0);
2893 stop_stepping (ecs);
2898 /* Put the step-breakpoint there and go until there. */
2899 init_sal (&sr_sal); /* initialize to zeroes */
2900 sr_sal.pc = ecs->stop_func_start;
2901 sr_sal.section = find_pc_overlay (ecs->stop_func_start);
2902 /* Do not specify what the fp should be when we stop since on
2903 some machines the prologue is where the new fp value is
2905 check_for_old_step_resume_breakpoint ();
2906 step_resume_breakpoint =
2907 set_momentary_breakpoint (sr_sal, null_frame_id, bp_step_resume);
2908 if (breakpoints_inserted)
2909 insert_breakpoints ();
2911 /* And make sure stepping stops right away then. */
2912 step_range_end = step_range_start;
2917 /* We've just entered a callee, and we wish to resume until it returns
2918 to the caller. Setting a step_resume breakpoint on the return
2919 address will catch a return from the callee.
2921 However, if the callee is recursing, we want to be careful not to
2922 catch returns of those recursive calls, but only of THIS instance
2925 To do this, we set the step_resume bp's frame to our current
2926 caller's frame (step_frame_id, which is set by the "next" or
2927 "until" command, before execution begins). */
2930 step_over_function (struct execution_control_state *ecs)
2932 struct symtab_and_line sr_sal;
2933 struct frame_id sr_id;
2935 init_sal (&sr_sal); /* initialize to zeros */
2937 /* NOTE: cagney/2003-04-06:
2939 At this point the equality get_frame_pc() == get_frame_func()
2940 should hold. This may make it possible for this code to tell the
2941 frame where it's function is, instead of the reverse. This would
2942 avoid the need to search for the frame's function, which can get
2943 very messy when there is no debug info available (look at the
2944 heuristic find pc start code found in targets like the MIPS). */
2946 /* NOTE: cagney/2003-04-06:
2948 The intent of DEPRECATED_SAVED_PC_AFTER_CALL was to:
2950 - provide a very light weight equivalent to frame_unwind_pc()
2951 (nee FRAME_SAVED_PC) that avoids the prologue analyzer
2953 - avoid handling the case where the PC hasn't been saved in the
2956 Unfortunately, not five lines further down, is a call to
2957 get_frame_id() and that is guarenteed to trigger the prologue
2960 The `correct fix' is for the prologe analyzer to handle the case
2961 where the prologue is incomplete (PC in prologue) and,
2962 consequently, the return pc has not yet been saved. It should be
2963 noted that the prologue analyzer needs to handle this case
2964 anyway: frameless leaf functions that don't save the return PC;
2965 single stepping through a prologue.
2967 The d10v handles all this by bailing out of the prologue analsis
2968 when it reaches the current instruction. */
2970 if (DEPRECATED_SAVED_PC_AFTER_CALL_P ())
2971 sr_sal.pc = ADDR_BITS_REMOVE (DEPRECATED_SAVED_PC_AFTER_CALL (get_current_frame ()));
2973 sr_sal.pc = ADDR_BITS_REMOVE (frame_pc_unwind (get_current_frame ()));
2974 sr_sal.section = find_pc_overlay (sr_sal.pc);
2976 check_for_old_step_resume_breakpoint ();
2978 if (frame_id_p (step_frame_id)
2979 && !IN_SOLIB_DYNSYM_RESOLVE_CODE (sr_sal.pc))
2980 /* NOTE: cagney/2004-02-27: Use the global state's idea of the
2981 stepping frame ID. I suspect this is done as it is lighter
2982 weight than a call to get_prev_frame. */
2983 sr_id = step_frame_id;
2984 else if (legacy_frame_p (current_gdbarch))
2985 /* NOTE: cagney/2004-02-27: This is the way it was 'cos this is
2986 the way it always was. It should be using the unwound (or
2987 caller's) ID, and not this (or the callee's) ID. It appeared
2988 to work because: legacy architectures used the wrong end of the
2989 frame for the ID.stack (inner-most rather than outer-most) so
2990 that the callee's id.stack (un adjusted) matched the caller's
2991 id.stack giving the "correct" id; more often than not
2992 !IN_SOLIB_DYNSYM_RESOLVE_CODE and hence the code above (it was
2993 originally later in the function) fixed the ID by using global
2995 sr_id = get_frame_id (get_current_frame ());
2997 sr_id = get_frame_id (get_prev_frame (get_current_frame ()));
2999 step_resume_breakpoint = set_momentary_breakpoint (sr_sal, sr_id, bp_step_resume);
3001 if (breakpoints_inserted)
3002 insert_breakpoints ();
3006 stop_stepping (struct execution_control_state *ecs)
3008 /* Let callers know we don't want to wait for the inferior anymore. */
3009 ecs->wait_some_more = 0;
3012 /* This function handles various cases where we need to continue
3013 waiting for the inferior. */
3014 /* (Used to be the keep_going: label in the old wait_for_inferior) */
3017 keep_going (struct execution_control_state *ecs)
3019 /* Save the pc before execution, to compare with pc after stop. */
3020 prev_pc = read_pc (); /* Might have been DECR_AFTER_BREAK */
3022 if (ecs->update_step_sp)
3023 step_sp = read_sp ();
3024 ecs->update_step_sp = 0;
3026 /* If we did not do break;, it means we should keep running the
3027 inferior and not return to debugger. */
3029 if (trap_expected && stop_signal != TARGET_SIGNAL_TRAP)
3031 /* We took a signal (which we are supposed to pass through to
3032 the inferior, else we'd have done a break above) and we
3033 haven't yet gotten our trap. Simply continue. */
3034 resume (currently_stepping (ecs), stop_signal);
3038 /* Either the trap was not expected, but we are continuing
3039 anyway (the user asked that this signal be passed to the
3042 The signal was SIGTRAP, e.g. it was our signal, but we
3043 decided we should resume from it.
3045 We're going to run this baby now!
3047 Insert breakpoints now, unless we are trying to one-proceed
3048 past a breakpoint. */
3049 /* If we've just finished a special step resume and we don't
3050 want to hit a breakpoint, pull em out. */
3051 if (step_resume_breakpoint == NULL
3052 && through_sigtramp_breakpoint == NULL
3053 && ecs->remove_breakpoints_on_following_step)
3055 ecs->remove_breakpoints_on_following_step = 0;
3056 remove_breakpoints ();
3057 breakpoints_inserted = 0;
3059 else if (!breakpoints_inserted &&
3060 (through_sigtramp_breakpoint != NULL || !ecs->another_trap))
3062 breakpoints_failed = insert_breakpoints ();
3063 if (breakpoints_failed)
3065 stop_stepping (ecs);
3068 breakpoints_inserted = 1;
3071 trap_expected = ecs->another_trap;
3073 /* Do not deliver SIGNAL_TRAP (except when the user explicitly
3074 specifies that such a signal should be delivered to the
3077 Typically, this would occure when a user is debugging a
3078 target monitor on a simulator: the target monitor sets a
3079 breakpoint; the simulator encounters this break-point and
3080 halts the simulation handing control to GDB; GDB, noteing
3081 that the break-point isn't valid, returns control back to the
3082 simulator; the simulator then delivers the hardware
3083 equivalent of a SIGNAL_TRAP to the program being debugged. */
3085 if (stop_signal == TARGET_SIGNAL_TRAP && !signal_program[stop_signal])
3086 stop_signal = TARGET_SIGNAL_0;
3089 resume (currently_stepping (ecs), stop_signal);
3092 prepare_to_wait (ecs);
3095 /* This function normally comes after a resume, before
3096 handle_inferior_event exits. It takes care of any last bits of
3097 housekeeping, and sets the all-important wait_some_more flag. */
3100 prepare_to_wait (struct execution_control_state *ecs)
3102 if (ecs->infwait_state == infwait_normal_state)
3104 overlay_cache_invalid = 1;
3106 /* We have to invalidate the registers BEFORE calling
3107 target_wait because they can be loaded from the target while
3108 in target_wait. This makes remote debugging a bit more
3109 efficient for those targets that provide critical registers
3110 as part of their normal status mechanism. */
3112 registers_changed ();
3113 ecs->waiton_ptid = pid_to_ptid (-1);
3114 ecs->wp = &(ecs->ws);
3116 /* This is the old end of the while loop. Let everybody know we
3117 want to wait for the inferior some more and get called again
3119 ecs->wait_some_more = 1;
3122 /* Print why the inferior has stopped. We always print something when
3123 the inferior exits, or receives a signal. The rest of the cases are
3124 dealt with later on in normal_stop() and print_it_typical(). Ideally
3125 there should be a call to this function from handle_inferior_event()
3126 each time stop_stepping() is called.*/
3128 print_stop_reason (enum inferior_stop_reason stop_reason, int stop_info)
3130 switch (stop_reason)
3133 /* We don't deal with these cases from handle_inferior_event()
3136 case END_STEPPING_RANGE:
3137 /* We are done with a step/next/si/ni command. */
3138 /* For now print nothing. */
3139 /* Print a message only if not in the middle of doing a "step n"
3140 operation for n > 1 */
3141 if (!step_multi || !stop_step)
3142 if (ui_out_is_mi_like_p (uiout))
3143 ui_out_field_string (uiout, "reason", "end-stepping-range");
3145 case BREAKPOINT_HIT:
3146 /* We found a breakpoint. */
3147 /* For now print nothing. */
3150 /* The inferior was terminated by a signal. */
3151 annotate_signalled ();
3152 if (ui_out_is_mi_like_p (uiout))
3153 ui_out_field_string (uiout, "reason", "exited-signalled");
3154 ui_out_text (uiout, "\nProgram terminated with signal ");
3155 annotate_signal_name ();
3156 ui_out_field_string (uiout, "signal-name",
3157 target_signal_to_name (stop_info));
3158 annotate_signal_name_end ();
3159 ui_out_text (uiout, ", ");
3160 annotate_signal_string ();
3161 ui_out_field_string (uiout, "signal-meaning",
3162 target_signal_to_string (stop_info));
3163 annotate_signal_string_end ();
3164 ui_out_text (uiout, ".\n");
3165 ui_out_text (uiout, "The program no longer exists.\n");
3168 /* The inferior program is finished. */
3169 annotate_exited (stop_info);
3172 if (ui_out_is_mi_like_p (uiout))
3173 ui_out_field_string (uiout, "reason", "exited");
3174 ui_out_text (uiout, "\nProgram exited with code ");
3175 ui_out_field_fmt (uiout, "exit-code", "0%o",
3176 (unsigned int) stop_info);
3177 ui_out_text (uiout, ".\n");
3181 if (ui_out_is_mi_like_p (uiout))
3182 ui_out_field_string (uiout, "reason", "exited-normally");
3183 ui_out_text (uiout, "\nProgram exited normally.\n");
3186 case SIGNAL_RECEIVED:
3187 /* Signal received. The signal table tells us to print about
3190 ui_out_text (uiout, "\nProgram received signal ");
3191 annotate_signal_name ();
3192 if (ui_out_is_mi_like_p (uiout))
3193 ui_out_field_string (uiout, "reason", "signal-received");
3194 ui_out_field_string (uiout, "signal-name",
3195 target_signal_to_name (stop_info));
3196 annotate_signal_name_end ();
3197 ui_out_text (uiout, ", ");
3198 annotate_signal_string ();
3199 ui_out_field_string (uiout, "signal-meaning",
3200 target_signal_to_string (stop_info));
3201 annotate_signal_string_end ();
3202 ui_out_text (uiout, ".\n");
3205 internal_error (__FILE__, __LINE__,
3206 "print_stop_reason: unrecognized enum value");
3212 /* Here to return control to GDB when the inferior stops for real.
3213 Print appropriate messages, remove breakpoints, give terminal our modes.
3215 STOP_PRINT_FRAME nonzero means print the executing frame
3216 (pc, function, args, file, line number and line text).
3217 BREAKPOINTS_FAILED nonzero means stop was due to error
3218 attempting to insert breakpoints. */
3223 struct target_waitstatus last;
3226 get_last_target_status (&last_ptid, &last);
3228 /* As with the notification of thread events, we want to delay
3229 notifying the user that we've switched thread context until
3230 the inferior actually stops.
3232 There's no point in saying anything if the inferior has exited.
3233 Note that SIGNALLED here means "exited with a signal", not
3234 "received a signal". */
3235 if (!ptid_equal (previous_inferior_ptid, inferior_ptid)
3236 && target_has_execution
3237 && last.kind != TARGET_WAITKIND_SIGNALLED
3238 && last.kind != TARGET_WAITKIND_EXITED)
3240 target_terminal_ours_for_output ();
3241 printf_filtered ("[Switching to %s]\n",
3242 target_pid_or_tid_to_str (inferior_ptid));
3243 previous_inferior_ptid = inferior_ptid;
3246 /* NOTE drow/2004-01-17: Is this still necessary? */
3247 /* Make sure that the current_frame's pc is correct. This
3248 is a correction for setting up the frame info before doing
3249 DECR_PC_AFTER_BREAK */
3250 if (target_has_execution)
3251 /* FIXME: cagney/2002-12-06: Has the PC changed? Thanks to
3252 DECR_PC_AFTER_BREAK, the program counter can change. Ask the
3253 frame code to check for this and sort out any resultant mess.
3254 DECR_PC_AFTER_BREAK needs to just go away. */
3255 deprecated_update_frame_pc_hack (get_current_frame (), read_pc ());
3257 if (target_has_execution && breakpoints_inserted)
3259 if (remove_breakpoints ())
3261 target_terminal_ours_for_output ();
3262 printf_filtered ("Cannot remove breakpoints because ");
3263 printf_filtered ("program is no longer writable.\n");
3264 printf_filtered ("It might be running in another process.\n");
3265 printf_filtered ("Further execution is probably impossible.\n");
3268 breakpoints_inserted = 0;
3270 /* Delete the breakpoint we stopped at, if it wants to be deleted.
3271 Delete any breakpoint that is to be deleted at the next stop. */
3273 breakpoint_auto_delete (stop_bpstat);
3275 /* If an auto-display called a function and that got a signal,
3276 delete that auto-display to avoid an infinite recursion. */
3278 if (stopped_by_random_signal)
3279 disable_current_display ();
3281 /* Don't print a message if in the middle of doing a "step n"
3282 operation for n > 1 */
3283 if (step_multi && stop_step)
3286 target_terminal_ours ();
3288 /* Look up the hook_stop and run it (CLI internally handles problem
3289 of stop_command's pre-hook not existing). */
3291 catch_errors (hook_stop_stub, stop_command,
3292 "Error while running hook_stop:\n", RETURN_MASK_ALL);
3294 if (!target_has_stack)
3300 /* Select innermost stack frame - i.e., current frame is frame 0,
3301 and current location is based on that.
3302 Don't do this on return from a stack dummy routine,
3303 or if the program has exited. */
3305 if (!stop_stack_dummy)
3307 select_frame (get_current_frame ());
3309 /* Print current location without a level number, if
3310 we have changed functions or hit a breakpoint.
3311 Print source line if we have one.
3312 bpstat_print() contains the logic deciding in detail
3313 what to print, based on the event(s) that just occurred. */
3315 if (stop_print_frame && deprecated_selected_frame)
3319 int do_frame_printing = 1;
3321 bpstat_ret = bpstat_print (stop_bpstat);
3325 /* FIXME: cagney/2002-12-01: Given that a frame ID does
3326 (or should) carry around the function and does (or
3327 should) use that when doing a frame comparison. */
3329 && frame_id_eq (step_frame_id,
3330 get_frame_id (get_current_frame ()))
3331 && step_start_function == find_pc_function (stop_pc))
3332 source_flag = SRC_LINE; /* finished step, just print source line */
3334 source_flag = SRC_AND_LOC; /* print location and source line */
3336 case PRINT_SRC_AND_LOC:
3337 source_flag = SRC_AND_LOC; /* print location and source line */
3339 case PRINT_SRC_ONLY:
3340 source_flag = SRC_LINE;
3343 source_flag = SRC_LINE; /* something bogus */
3344 do_frame_printing = 0;
3347 internal_error (__FILE__, __LINE__, "Unknown value.");
3349 /* For mi, have the same behavior every time we stop:
3350 print everything but the source line. */
3351 if (ui_out_is_mi_like_p (uiout))
3352 source_flag = LOC_AND_ADDRESS;
3354 if (ui_out_is_mi_like_p (uiout))
3355 ui_out_field_int (uiout, "thread-id",
3356 pid_to_thread_id (inferior_ptid));
3357 /* The behavior of this routine with respect to the source
3359 SRC_LINE: Print only source line
3360 LOCATION: Print only location
3361 SRC_AND_LOC: Print location and source line */
3362 if (do_frame_printing)
3363 print_stack_frame (deprecated_selected_frame, -1, source_flag);
3365 /* Display the auto-display expressions. */
3370 /* Save the function value return registers, if we care.
3371 We might be about to restore their previous contents. */
3372 if (proceed_to_finish)
3373 /* NB: The copy goes through to the target picking up the value of
3374 all the registers. */
3375 regcache_cpy (stop_registers, current_regcache);
3377 if (stop_stack_dummy)
3379 /* Pop the empty frame that contains the stack dummy. POP_FRAME
3380 ends with a setting of the current frame, so we can use that
3382 frame_pop (get_current_frame ());
3383 /* Set stop_pc to what it was before we called the function.
3384 Can't rely on restore_inferior_status because that only gets
3385 called if we don't stop in the called function. */
3386 stop_pc = read_pc ();
3387 select_frame (get_current_frame ());
3391 annotate_stopped ();
3392 observer_notify_normal_stop ();
3396 hook_stop_stub (void *cmd)
3398 execute_cmd_pre_hook ((struct cmd_list_element *) cmd);
3403 signal_stop_state (int signo)
3405 return signal_stop[signo];
3409 signal_print_state (int signo)
3411 return signal_print[signo];
3415 signal_pass_state (int signo)
3417 return signal_program[signo];
3421 signal_stop_update (int signo, int state)
3423 int ret = signal_stop[signo];
3424 signal_stop[signo] = state;
3429 signal_print_update (int signo, int state)
3431 int ret = signal_print[signo];
3432 signal_print[signo] = state;
3437 signal_pass_update (int signo, int state)
3439 int ret = signal_program[signo];
3440 signal_program[signo] = state;
3445 sig_print_header (void)
3448 Signal Stop\tPrint\tPass to program\tDescription\n");
3452 sig_print_info (enum target_signal oursig)
3454 char *name = target_signal_to_name (oursig);
3455 int name_padding = 13 - strlen (name);
3457 if (name_padding <= 0)
3460 printf_filtered ("%s", name);
3461 printf_filtered ("%*.*s ", name_padding, name_padding, " ");
3462 printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
3463 printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
3464 printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
3465 printf_filtered ("%s\n", target_signal_to_string (oursig));
3468 /* Specify how various signals in the inferior should be handled. */
3471 handle_command (char *args, int from_tty)
3474 int digits, wordlen;
3475 int sigfirst, signum, siglast;
3476 enum target_signal oursig;
3479 unsigned char *sigs;
3480 struct cleanup *old_chain;
3484 error_no_arg ("signal to handle");
3487 /* Allocate and zero an array of flags for which signals to handle. */
3489 nsigs = (int) TARGET_SIGNAL_LAST;
3490 sigs = (unsigned char *) alloca (nsigs);
3491 memset (sigs, 0, nsigs);
3493 /* Break the command line up into args. */
3495 argv = buildargv (args);
3500 old_chain = make_cleanup_freeargv (argv);
3502 /* Walk through the args, looking for signal oursigs, signal names, and
3503 actions. Signal numbers and signal names may be interspersed with
3504 actions, with the actions being performed for all signals cumulatively
3505 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
3507 while (*argv != NULL)
3509 wordlen = strlen (*argv);
3510 for (digits = 0; isdigit ((*argv)[digits]); digits++)
3514 sigfirst = siglast = -1;
3516 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
3518 /* Apply action to all signals except those used by the
3519 debugger. Silently skip those. */
3522 siglast = nsigs - 1;
3524 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
3526 SET_SIGS (nsigs, sigs, signal_stop);
3527 SET_SIGS (nsigs, sigs, signal_print);
3529 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
3531 UNSET_SIGS (nsigs, sigs, signal_program);
3533 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
3535 SET_SIGS (nsigs, sigs, signal_print);
3537 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
3539 SET_SIGS (nsigs, sigs, signal_program);
3541 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
3543 UNSET_SIGS (nsigs, sigs, signal_stop);
3545 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
3547 SET_SIGS (nsigs, sigs, signal_program);
3549 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
3551 UNSET_SIGS (nsigs, sigs, signal_print);
3552 UNSET_SIGS (nsigs, sigs, signal_stop);
3554 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
3556 UNSET_SIGS (nsigs, sigs, signal_program);
3558 else if (digits > 0)
3560 /* It is numeric. The numeric signal refers to our own
3561 internal signal numbering from target.h, not to host/target
3562 signal number. This is a feature; users really should be
3563 using symbolic names anyway, and the common ones like
3564 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
3566 sigfirst = siglast = (int)
3567 target_signal_from_command (atoi (*argv));
3568 if ((*argv)[digits] == '-')
3571 target_signal_from_command (atoi ((*argv) + digits + 1));
3573 if (sigfirst > siglast)
3575 /* Bet he didn't figure we'd think of this case... */
3583 oursig = target_signal_from_name (*argv);
3584 if (oursig != TARGET_SIGNAL_UNKNOWN)
3586 sigfirst = siglast = (int) oursig;
3590 /* Not a number and not a recognized flag word => complain. */
3591 error ("Unrecognized or ambiguous flag word: \"%s\".", *argv);
3595 /* If any signal numbers or symbol names were found, set flags for
3596 which signals to apply actions to. */
3598 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
3600 switch ((enum target_signal) signum)
3602 case TARGET_SIGNAL_TRAP:
3603 case TARGET_SIGNAL_INT:
3604 if (!allsigs && !sigs[signum])
3606 if (query ("%s is used by the debugger.\n\
3607 Are you sure you want to change it? ", target_signal_to_name ((enum target_signal) signum)))
3613 printf_unfiltered ("Not confirmed, unchanged.\n");
3614 gdb_flush (gdb_stdout);
3618 case TARGET_SIGNAL_0:
3619 case TARGET_SIGNAL_DEFAULT:
3620 case TARGET_SIGNAL_UNKNOWN:
3621 /* Make sure that "all" doesn't print these. */
3632 target_notice_signals (inferior_ptid);
3636 /* Show the results. */
3637 sig_print_header ();
3638 for (signum = 0; signum < nsigs; signum++)
3642 sig_print_info (signum);
3647 do_cleanups (old_chain);
3651 xdb_handle_command (char *args, int from_tty)
3654 struct cleanup *old_chain;
3656 /* Break the command line up into args. */
3658 argv = buildargv (args);
3663 old_chain = make_cleanup_freeargv (argv);
3664 if (argv[1] != (char *) NULL)
3669 bufLen = strlen (argv[0]) + 20;
3670 argBuf = (char *) xmalloc (bufLen);
3674 enum target_signal oursig;
3676 oursig = target_signal_from_name (argv[0]);
3677 memset (argBuf, 0, bufLen);
3678 if (strcmp (argv[1], "Q") == 0)
3679 sprintf (argBuf, "%s %s", argv[0], "noprint");
3682 if (strcmp (argv[1], "s") == 0)
3684 if (!signal_stop[oursig])
3685 sprintf (argBuf, "%s %s", argv[0], "stop");
3687 sprintf (argBuf, "%s %s", argv[0], "nostop");
3689 else if (strcmp (argv[1], "i") == 0)
3691 if (!signal_program[oursig])
3692 sprintf (argBuf, "%s %s", argv[0], "pass");
3694 sprintf (argBuf, "%s %s", argv[0], "nopass");
3696 else if (strcmp (argv[1], "r") == 0)
3698 if (!signal_print[oursig])
3699 sprintf (argBuf, "%s %s", argv[0], "print");
3701 sprintf (argBuf, "%s %s", argv[0], "noprint");
3707 handle_command (argBuf, from_tty);
3709 printf_filtered ("Invalid signal handling flag.\n");
3714 do_cleanups (old_chain);
3717 /* Print current contents of the tables set by the handle command.
3718 It is possible we should just be printing signals actually used
3719 by the current target (but for things to work right when switching
3720 targets, all signals should be in the signal tables). */
3723 signals_info (char *signum_exp, int from_tty)
3725 enum target_signal oursig;
3726 sig_print_header ();
3730 /* First see if this is a symbol name. */
3731 oursig = target_signal_from_name (signum_exp);
3732 if (oursig == TARGET_SIGNAL_UNKNOWN)
3734 /* No, try numeric. */
3736 target_signal_from_command (parse_and_eval_long (signum_exp));
3738 sig_print_info (oursig);
3742 printf_filtered ("\n");
3743 /* These ugly casts brought to you by the native VAX compiler. */
3744 for (oursig = TARGET_SIGNAL_FIRST;
3745 (int) oursig < (int) TARGET_SIGNAL_LAST;
3746 oursig = (enum target_signal) ((int) oursig + 1))
3750 if (oursig != TARGET_SIGNAL_UNKNOWN
3751 && oursig != TARGET_SIGNAL_DEFAULT && oursig != TARGET_SIGNAL_0)
3752 sig_print_info (oursig);
3755 printf_filtered ("\nUse the \"handle\" command to change these tables.\n");
3758 struct inferior_status
3760 enum target_signal stop_signal;
3764 int stop_stack_dummy;
3765 int stopped_by_random_signal;
3767 CORE_ADDR step_range_start;
3768 CORE_ADDR step_range_end;
3769 struct frame_id step_frame_id;
3770 enum step_over_calls_kind step_over_calls;
3771 CORE_ADDR step_resume_break_address;
3772 int stop_after_trap;
3774 struct regcache *stop_registers;
3776 /* These are here because if call_function_by_hand has written some
3777 registers and then decides to call error(), we better not have changed
3779 struct regcache *registers;
3781 /* A frame unique identifier. */
3782 struct frame_id selected_frame_id;
3784 int breakpoint_proceeded;
3785 int restore_stack_info;
3786 int proceed_to_finish;
3790 write_inferior_status_register (struct inferior_status *inf_status, int regno,
3793 int size = DEPRECATED_REGISTER_RAW_SIZE (regno);
3794 void *buf = alloca (size);
3795 store_signed_integer (buf, size, val);
3796 regcache_raw_write (inf_status->registers, regno, buf);
3799 /* Save all of the information associated with the inferior<==>gdb
3800 connection. INF_STATUS is a pointer to a "struct inferior_status"
3801 (defined in inferior.h). */
3803 struct inferior_status *
3804 save_inferior_status (int restore_stack_info)
3806 struct inferior_status *inf_status = XMALLOC (struct inferior_status);
3808 inf_status->stop_signal = stop_signal;
3809 inf_status->stop_pc = stop_pc;
3810 inf_status->stop_step = stop_step;
3811 inf_status->stop_stack_dummy = stop_stack_dummy;
3812 inf_status->stopped_by_random_signal = stopped_by_random_signal;
3813 inf_status->trap_expected = trap_expected;
3814 inf_status->step_range_start = step_range_start;
3815 inf_status->step_range_end = step_range_end;
3816 inf_status->step_frame_id = step_frame_id;
3817 inf_status->step_over_calls = step_over_calls;
3818 inf_status->stop_after_trap = stop_after_trap;
3819 inf_status->stop_soon = stop_soon;
3820 /* Save original bpstat chain here; replace it with copy of chain.
3821 If caller's caller is walking the chain, they'll be happier if we
3822 hand them back the original chain when restore_inferior_status is
3824 inf_status->stop_bpstat = stop_bpstat;
3825 stop_bpstat = bpstat_copy (stop_bpstat);
3826 inf_status->breakpoint_proceeded = breakpoint_proceeded;
3827 inf_status->restore_stack_info = restore_stack_info;
3828 inf_status->proceed_to_finish = proceed_to_finish;
3830 inf_status->stop_registers = regcache_dup_no_passthrough (stop_registers);
3832 inf_status->registers = regcache_dup (current_regcache);
3834 inf_status->selected_frame_id = get_frame_id (deprecated_selected_frame);
3839 restore_selected_frame (void *args)
3841 struct frame_id *fid = (struct frame_id *) args;
3842 struct frame_info *frame;
3844 frame = frame_find_by_id (*fid);
3846 /* If inf_status->selected_frame_id is NULL, there was no previously
3850 warning ("Unable to restore previously selected frame.\n");
3854 select_frame (frame);
3860 restore_inferior_status (struct inferior_status *inf_status)
3862 stop_signal = inf_status->stop_signal;
3863 stop_pc = inf_status->stop_pc;
3864 stop_step = inf_status->stop_step;
3865 stop_stack_dummy = inf_status->stop_stack_dummy;
3866 stopped_by_random_signal = inf_status->stopped_by_random_signal;
3867 trap_expected = inf_status->trap_expected;
3868 step_range_start = inf_status->step_range_start;
3869 step_range_end = inf_status->step_range_end;
3870 step_frame_id = inf_status->step_frame_id;
3871 step_over_calls = inf_status->step_over_calls;
3872 stop_after_trap = inf_status->stop_after_trap;
3873 stop_soon = inf_status->stop_soon;
3874 bpstat_clear (&stop_bpstat);
3875 stop_bpstat = inf_status->stop_bpstat;
3876 breakpoint_proceeded = inf_status->breakpoint_proceeded;
3877 proceed_to_finish = inf_status->proceed_to_finish;
3879 /* FIXME: Is the restore of stop_registers always needed. */
3880 regcache_xfree (stop_registers);
3881 stop_registers = inf_status->stop_registers;
3883 /* The inferior can be gone if the user types "print exit(0)"
3884 (and perhaps other times). */
3885 if (target_has_execution)
3886 /* NB: The register write goes through to the target. */
3887 regcache_cpy (current_regcache, inf_status->registers);
3888 regcache_xfree (inf_status->registers);
3890 /* FIXME: If we are being called after stopping in a function which
3891 is called from gdb, we should not be trying to restore the
3892 selected frame; it just prints a spurious error message (The
3893 message is useful, however, in detecting bugs in gdb (like if gdb
3894 clobbers the stack)). In fact, should we be restoring the
3895 inferior status at all in that case? . */
3897 if (target_has_stack && inf_status->restore_stack_info)
3899 /* The point of catch_errors is that if the stack is clobbered,
3900 walking the stack might encounter a garbage pointer and
3901 error() trying to dereference it. */
3903 (restore_selected_frame, &inf_status->selected_frame_id,
3904 "Unable to restore previously selected frame:\n",
3905 RETURN_MASK_ERROR) == 0)
3906 /* Error in restoring the selected frame. Select the innermost
3908 select_frame (get_current_frame ());
3916 do_restore_inferior_status_cleanup (void *sts)
3918 restore_inferior_status (sts);
3922 make_cleanup_restore_inferior_status (struct inferior_status *inf_status)
3924 return make_cleanup (do_restore_inferior_status_cleanup, inf_status);
3928 discard_inferior_status (struct inferior_status *inf_status)
3930 /* See save_inferior_status for info on stop_bpstat. */
3931 bpstat_clear (&inf_status->stop_bpstat);
3932 regcache_xfree (inf_status->registers);
3933 regcache_xfree (inf_status->stop_registers);
3938 inferior_has_forked (int pid, int *child_pid)
3940 struct target_waitstatus last;
3943 get_last_target_status (&last_ptid, &last);
3945 if (last.kind != TARGET_WAITKIND_FORKED)
3948 if (ptid_get_pid (last_ptid) != pid)
3951 *child_pid = last.value.related_pid;
3956 inferior_has_vforked (int pid, int *child_pid)
3958 struct target_waitstatus last;
3961 get_last_target_status (&last_ptid, &last);
3963 if (last.kind != TARGET_WAITKIND_VFORKED)
3966 if (ptid_get_pid (last_ptid) != pid)
3969 *child_pid = last.value.related_pid;
3974 inferior_has_execd (int pid, char **execd_pathname)
3976 struct target_waitstatus last;
3979 get_last_target_status (&last_ptid, &last);
3981 if (last.kind != TARGET_WAITKIND_EXECD)
3984 if (ptid_get_pid (last_ptid) != pid)
3987 *execd_pathname = xstrdup (last.value.execd_pathname);
3991 /* Oft used ptids */
3993 ptid_t minus_one_ptid;
3995 /* Create a ptid given the necessary PID, LWP, and TID components. */
3998 ptid_build (int pid, long lwp, long tid)
4008 /* Create a ptid from just a pid. */
4011 pid_to_ptid (int pid)
4013 return ptid_build (pid, 0, 0);
4016 /* Fetch the pid (process id) component from a ptid. */
4019 ptid_get_pid (ptid_t ptid)
4024 /* Fetch the lwp (lightweight process) component from a ptid. */
4027 ptid_get_lwp (ptid_t ptid)
4032 /* Fetch the tid (thread id) component from a ptid. */
4035 ptid_get_tid (ptid_t ptid)
4040 /* ptid_equal() is used to test equality of two ptids. */
4043 ptid_equal (ptid_t ptid1, ptid_t ptid2)
4045 return (ptid1.pid == ptid2.pid && ptid1.lwp == ptid2.lwp
4046 && ptid1.tid == ptid2.tid);
4049 /* restore_inferior_ptid() will be used by the cleanup machinery
4050 to restore the inferior_ptid value saved in a call to
4051 save_inferior_ptid(). */
4054 restore_inferior_ptid (void *arg)
4056 ptid_t *saved_ptid_ptr = arg;
4057 inferior_ptid = *saved_ptid_ptr;
4061 /* Save the value of inferior_ptid so that it may be restored by a
4062 later call to do_cleanups(). Returns the struct cleanup pointer
4063 needed for later doing the cleanup. */
4066 save_inferior_ptid (void)
4068 ptid_t *saved_ptid_ptr;
4070 saved_ptid_ptr = xmalloc (sizeof (ptid_t));
4071 *saved_ptid_ptr = inferior_ptid;
4072 return make_cleanup (restore_inferior_ptid, saved_ptid_ptr);
4079 stop_registers = regcache_xmalloc (current_gdbarch);
4083 _initialize_infrun (void)
4087 struct cmd_list_element *c;
4089 DEPRECATED_REGISTER_GDBARCH_SWAP (stop_registers);
4090 deprecated_register_gdbarch_swap (NULL, 0, build_infrun);
4092 add_info ("signals", signals_info,
4093 "What debugger does when program gets various signals.\n\
4094 Specify a signal as argument to print info on that signal only.");
4095 add_info_alias ("handle", "signals", 0);
4097 add_com ("handle", class_run, handle_command,
4098 concat ("Specify how to handle a signal.\n\
4099 Args are signals and actions to apply to those signals.\n\
4100 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
4101 from 1-15 are allowed for compatibility with old versions of GDB.\n\
4102 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
4103 The special arg \"all\" is recognized to mean all signals except those\n\
4104 used by the debugger, typically SIGTRAP and SIGINT.\n", "Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
4105 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
4106 Stop means reenter debugger if this signal happens (implies print).\n\
4107 Print means print a message if this signal happens.\n\
4108 Pass means let program see this signal; otherwise program doesn't know.\n\
4109 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
4110 Pass and Stop may be combined.", NULL));
4113 add_com ("lz", class_info, signals_info,
4114 "What debugger does when program gets various signals.\n\
4115 Specify a signal as argument to print info on that signal only.");
4116 add_com ("z", class_run, xdb_handle_command,
4117 concat ("Specify how to handle a signal.\n\
4118 Args are signals and actions to apply to those signals.\n\
4119 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
4120 from 1-15 are allowed for compatibility with old versions of GDB.\n\
4121 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
4122 The special arg \"all\" is recognized to mean all signals except those\n\
4123 used by the debugger, typically SIGTRAP and SIGINT.\n", "Recognized actions include \"s\" (toggles between stop and nostop), \n\
4124 \"r\" (toggles between print and noprint), \"i\" (toggles between pass and \
4125 nopass), \"Q\" (noprint)\n\
4126 Stop means reenter debugger if this signal happens (implies print).\n\
4127 Print means print a message if this signal happens.\n\
4128 Pass means let program see this signal; otherwise program doesn't know.\n\
4129 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
4130 Pass and Stop may be combined.", NULL));
4135 add_cmd ("stop", class_obscure, not_just_help_class_command, "There is no `stop' command, but you can set a hook on `stop'.\n\
4136 This allows you to set a list of commands to be run each time execution\n\
4137 of the program stops.", &cmdlist);
4139 numsigs = (int) TARGET_SIGNAL_LAST;
4140 signal_stop = (unsigned char *) xmalloc (sizeof (signal_stop[0]) * numsigs);
4141 signal_print = (unsigned char *)
4142 xmalloc (sizeof (signal_print[0]) * numsigs);
4143 signal_program = (unsigned char *)
4144 xmalloc (sizeof (signal_program[0]) * numsigs);
4145 for (i = 0; i < numsigs; i++)
4148 signal_print[i] = 1;
4149 signal_program[i] = 1;
4152 /* Signals caused by debugger's own actions
4153 should not be given to the program afterwards. */
4154 signal_program[TARGET_SIGNAL_TRAP] = 0;
4155 signal_program[TARGET_SIGNAL_INT] = 0;
4157 /* Signals that are not errors should not normally enter the debugger. */
4158 signal_stop[TARGET_SIGNAL_ALRM] = 0;
4159 signal_print[TARGET_SIGNAL_ALRM] = 0;
4160 signal_stop[TARGET_SIGNAL_VTALRM] = 0;
4161 signal_print[TARGET_SIGNAL_VTALRM] = 0;
4162 signal_stop[TARGET_SIGNAL_PROF] = 0;
4163 signal_print[TARGET_SIGNAL_PROF] = 0;
4164 signal_stop[TARGET_SIGNAL_CHLD] = 0;
4165 signal_print[TARGET_SIGNAL_CHLD] = 0;
4166 signal_stop[TARGET_SIGNAL_IO] = 0;
4167 signal_print[TARGET_SIGNAL_IO] = 0;
4168 signal_stop[TARGET_SIGNAL_POLL] = 0;
4169 signal_print[TARGET_SIGNAL_POLL] = 0;
4170 signal_stop[TARGET_SIGNAL_URG] = 0;
4171 signal_print[TARGET_SIGNAL_URG] = 0;
4172 signal_stop[TARGET_SIGNAL_WINCH] = 0;
4173 signal_print[TARGET_SIGNAL_WINCH] = 0;
4175 /* These signals are used internally by user-level thread
4176 implementations. (See signal(5) on Solaris.) Like the above
4177 signals, a healthy program receives and handles them as part of
4178 its normal operation. */
4179 signal_stop[TARGET_SIGNAL_LWP] = 0;
4180 signal_print[TARGET_SIGNAL_LWP] = 0;
4181 signal_stop[TARGET_SIGNAL_WAITING] = 0;
4182 signal_print[TARGET_SIGNAL_WAITING] = 0;
4183 signal_stop[TARGET_SIGNAL_CANCEL] = 0;
4184 signal_print[TARGET_SIGNAL_CANCEL] = 0;
4188 (add_set_cmd ("stop-on-solib-events", class_support, var_zinteger,
4189 (char *) &stop_on_solib_events,
4190 "Set stopping for shared library events.\n\
4191 If nonzero, gdb will give control to the user when the dynamic linker\n\
4192 notifies gdb of shared library events. The most common event of interest\n\
4193 to the user would be loading/unloading of a new library.\n", &setlist), &showlist);
4196 c = add_set_enum_cmd ("follow-fork-mode",
4198 follow_fork_mode_kind_names, &follow_fork_mode_string,
4199 "Set debugger response to a program call of fork \
4201 A fork or vfork creates a new process. follow-fork-mode can be:\n\
4202 parent - the original process is debugged after a fork\n\
4203 child - the new process is debugged after a fork\n\
4204 The unfollowed process will continue to run.\n\
4205 By default, the debugger will follow the parent process.", &setlist);
4206 add_show_from_set (c, &showlist);
4208 c = add_set_enum_cmd ("scheduler-locking", class_run, scheduler_enums, /* array of string names */
4209 &scheduler_mode, /* current mode */
4210 "Set mode for locking scheduler during execution.\n\
4211 off == no locking (threads may preempt at any time)\n\
4212 on == full locking (no thread except the current thread may run)\n\
4213 step == scheduler locked during every single-step operation.\n\
4214 In this mode, no other thread may run during a step command.\n\
4215 Other threads may run while stepping over a function call ('next').", &setlist);
4217 set_cmd_sfunc (c, set_schedlock_func); /* traps on target vector */
4218 add_show_from_set (c, &showlist);
4220 c = add_set_cmd ("step-mode", class_run,
4221 var_boolean, (char *) &step_stop_if_no_debug,
4222 "Set mode of the step operation. When set, doing a step over a\n\
4223 function without debug line information will stop at the first\n\
4224 instruction of that function. Otherwise, the function is skipped and\n\
4225 the step command stops at a different source line.", &setlist);
4226 add_show_from_set (c, &showlist);
4228 /* ptid initializations */
4229 null_ptid = ptid_build (0, 0, 0);
4230 minus_one_ptid = ptid_build (-1, 0, 0);
4231 inferior_ptid = null_ptid;
4232 target_last_wait_ptid = minus_one_ptid;