1 /* Target-struct-independent code to start (run) and stop an inferior process.
2 Copyright 1986-1989, 1991-2000 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
22 #include "gdb_string.h"
27 #include "breakpoint.h"
32 #include "gdbthread.h"
34 #include "symfile.h" /* for overlay functions */
39 /* Prototypes for local functions */
41 static void signals_info (char *, int);
43 static void handle_command (char *, int);
45 static void sig_print_info (enum target_signal);
47 static void sig_print_header (void);
49 static void resume_cleanups (int);
51 static int hook_stop_stub (void *);
53 static void delete_breakpoint_current_contents (void *);
55 static void set_follow_fork_mode_command (char *arg, int from_tty,
56 struct cmd_list_element * c);
58 static struct inferior_status *xmalloc_inferior_status (void);
60 static void free_inferior_status (struct inferior_status *);
62 static int restore_selected_frame (void *);
64 static void build_infrun (void);
66 static void follow_inferior_fork (int parent_pid, int child_pid,
67 int has_forked, int has_vforked);
69 static void follow_fork (int parent_pid, int child_pid);
71 static void follow_vfork (int parent_pid, int child_pid);
73 static void set_schedlock_func (char *args, int from_tty,
74 struct cmd_list_element * c);
76 struct execution_control_state;
78 static int currently_stepping (struct execution_control_state *ecs);
80 static void xdb_handle_command (char *args, int from_tty);
82 void _initialize_infrun (void);
84 int inferior_ignoring_startup_exec_events = 0;
85 int inferior_ignoring_leading_exec_events = 0;
87 /* In asynchronous mode, but simulating synchronous execution. */
89 int sync_execution = 0;
91 /* wait_for_inferior and normal_stop use this to notify the user
92 when the inferior stopped in a different thread than it had been
95 static int previous_inferior_pid;
97 /* This is true for configurations that may follow through execl() and
98 similar functions. At present this is only true for HP-UX native. */
100 #ifndef MAY_FOLLOW_EXEC
101 #define MAY_FOLLOW_EXEC (0)
104 static int may_follow_exec = MAY_FOLLOW_EXEC;
106 /* resume and wait_for_inferior use this to ensure that when
107 stepping over a hit breakpoint in a threaded application
108 only the thread that hit the breakpoint is stepped and the
109 other threads don't continue. This prevents having another
110 thread run past the breakpoint while it is temporarily
113 This is not thread-specific, so it isn't saved as part of
116 Versions of gdb which don't use the "step == this thread steps
117 and others continue" model but instead use the "step == this
118 thread steps and others wait" shouldn't do this. */
120 static int thread_step_needed = 0;
122 /* This is true if thread_step_needed should actually be used. At
123 present this is only true for HP-UX native. */
125 #ifndef USE_THREAD_STEP_NEEDED
126 #define USE_THREAD_STEP_NEEDED (0)
129 static int use_thread_step_needed = USE_THREAD_STEP_NEEDED;
131 /* GET_LONGJMP_TARGET returns the PC at which longjmp() will resume the
132 program. It needs to examine the jmp_buf argument and extract the PC
133 from it. The return value is non-zero on success, zero otherwise. */
135 #ifndef GET_LONGJMP_TARGET
136 #define GET_LONGJMP_TARGET(PC_ADDR) 0
140 /* Some machines have trampoline code that sits between function callers
141 and the actual functions themselves. If this machine doesn't have
142 such things, disable their processing. */
144 #ifndef SKIP_TRAMPOLINE_CODE
145 #define SKIP_TRAMPOLINE_CODE(pc) 0
148 /* Dynamic function trampolines are similar to solib trampolines in that they
149 are between the caller and the callee. The difference is that when you
150 enter a dynamic trampoline, you can't determine the callee's address. Some
151 (usually complex) code needs to run in the dynamic trampoline to figure out
152 the callee's address. This macro is usually called twice. First, when we
153 enter the trampoline (looks like a normal function call at that point). It
154 should return the PC of a point within the trampoline where the callee's
155 address is known. Second, when we hit the breakpoint, this routine returns
156 the callee's address. At that point, things proceed as per a step resume
159 #ifndef DYNAMIC_TRAMPOLINE_NEXTPC
160 #define DYNAMIC_TRAMPOLINE_NEXTPC(pc) 0
163 /* If the program uses ELF-style shared libraries, then calls to
164 functions in shared libraries go through stubs, which live in a
165 table called the PLT (Procedure Linkage Table). The first time the
166 function is called, the stub sends control to the dynamic linker,
167 which looks up the function's real address, patches the stub so
168 that future calls will go directly to the function, and then passes
169 control to the function.
171 If we are stepping at the source level, we don't want to see any of
172 this --- we just want to skip over the stub and the dynamic linker.
173 The simple approach is to single-step until control leaves the
176 However, on some systems (e.g., Red Hat Linux 5.2) the dynamic
177 linker calls functions in the shared C library, so you can't tell
178 from the PC alone whether the dynamic linker is still running. In
179 this case, we use a step-resume breakpoint to get us past the
180 dynamic linker, as if we were using "next" to step over a function
183 IN_SOLIB_DYNSYM_RESOLVE_CODE says whether we're in the dynamic
184 linker code or not. Normally, this means we single-step. However,
185 if SKIP_SOLIB_RESOLVER then returns non-zero, then its value is an
186 address where we can place a step-resume breakpoint to get past the
187 linker's symbol resolution function.
189 IN_SOLIB_DYNSYM_RESOLVE_CODE can generally be implemented in a
190 pretty portable way, by comparing the PC against the address ranges
191 of the dynamic linker's sections.
193 SKIP_SOLIB_RESOLVER is generally going to be system-specific, since
194 it depends on internal details of the dynamic linker. It's usually
195 not too hard to figure out where to put a breakpoint, but it
196 certainly isn't portable. SKIP_SOLIB_RESOLVER should do plenty of
197 sanity checking. If it can't figure things out, returning zero and
198 getting the (possibly confusing) stepping behavior is better than
199 signalling an error, which will obscure the change in the
202 #ifndef IN_SOLIB_DYNSYM_RESOLVE_CODE
203 #define IN_SOLIB_DYNSYM_RESOLVE_CODE(pc) 0
206 #ifndef SKIP_SOLIB_RESOLVER
207 #define SKIP_SOLIB_RESOLVER(pc) 0
210 /* For SVR4 shared libraries, each call goes through a small piece of
211 trampoline code in the ".plt" section. IN_SOLIB_CALL_TRAMPOLINE evaluates
212 to nonzero if we are current stopped in one of these. */
214 #ifndef IN_SOLIB_CALL_TRAMPOLINE
215 #define IN_SOLIB_CALL_TRAMPOLINE(pc,name) 0
218 /* In some shared library schemes, the return path from a shared library
219 call may need to go through a trampoline too. */
221 #ifndef IN_SOLIB_RETURN_TRAMPOLINE
222 #define IN_SOLIB_RETURN_TRAMPOLINE(pc,name) 0
225 /* This function returns TRUE if pc is the address of an instruction
226 that lies within the dynamic linker (such as the event hook, or the
229 This function must be used only when a dynamic linker event has
230 been caught, and the inferior is being stepped out of the hook, or
231 undefined results are guaranteed. */
233 #ifndef SOLIB_IN_DYNAMIC_LINKER
234 #define SOLIB_IN_DYNAMIC_LINKER(pid,pc) 0
237 /* On MIPS16, a function that returns a floating point value may call
238 a library helper function to copy the return value to a floating point
239 register. The IGNORE_HELPER_CALL macro returns non-zero if we
240 should ignore (i.e. step over) this function call. */
241 #ifndef IGNORE_HELPER_CALL
242 #define IGNORE_HELPER_CALL(pc) 0
245 /* On some systems, the PC may be left pointing at an instruction that won't
246 actually be executed. This is usually indicated by a bit in the PSW. If
247 we find ourselves in such a state, then we step the target beyond the
248 nullified instruction before returning control to the user so as to avoid
251 #ifndef INSTRUCTION_NULLIFIED
252 #define INSTRUCTION_NULLIFIED 0
255 /* We can't step off a permanent breakpoint in the ordinary way, because we
256 can't remove it. Instead, we have to advance the PC to the next
257 instruction. This macro should expand to a pointer to a function that
258 does that, or zero if we have no such function. If we don't have a
259 definition for it, we have to report an error. */
260 #ifndef SKIP_PERMANENT_BREAKPOINT
261 #define SKIP_PERMANENT_BREAKPOINT (default_skip_permanent_breakpoint)
263 default_skip_permanent_breakpoint (void)
266 fprintf_filtered (gdb_stderr, "\
267 The program is stopped at a permanent breakpoint, but GDB does not know\n\
268 how to step past a permanent breakpoint on this architecture. Try using\n\
269 a command like `return' or `jump' to continue execution.\n");
270 return_to_top_level (RETURN_ERROR);
275 /* Convert the #defines into values. This is temporary until wfi control
276 flow is completely sorted out. */
278 #ifndef HAVE_STEPPABLE_WATCHPOINT
279 #define HAVE_STEPPABLE_WATCHPOINT 0
281 #undef HAVE_STEPPABLE_WATCHPOINT
282 #define HAVE_STEPPABLE_WATCHPOINT 1
285 #ifndef HAVE_NONSTEPPABLE_WATCHPOINT
286 #define HAVE_NONSTEPPABLE_WATCHPOINT 0
288 #undef HAVE_NONSTEPPABLE_WATCHPOINT
289 #define HAVE_NONSTEPPABLE_WATCHPOINT 1
292 #ifndef HAVE_CONTINUABLE_WATCHPOINT
293 #define HAVE_CONTINUABLE_WATCHPOINT 0
295 #undef HAVE_CONTINUABLE_WATCHPOINT
296 #define HAVE_CONTINUABLE_WATCHPOINT 1
299 /* Tables of how to react to signals; the user sets them. */
301 static unsigned char *signal_stop;
302 static unsigned char *signal_print;
303 static unsigned char *signal_program;
305 #define SET_SIGS(nsigs,sigs,flags) \
307 int signum = (nsigs); \
308 while (signum-- > 0) \
309 if ((sigs)[signum]) \
310 (flags)[signum] = 1; \
313 #define UNSET_SIGS(nsigs,sigs,flags) \
315 int signum = (nsigs); \
316 while (signum-- > 0) \
317 if ((sigs)[signum]) \
318 (flags)[signum] = 0; \
322 /* Command list pointer for the "stop" placeholder. */
324 static struct cmd_list_element *stop_command;
326 /* Nonzero if breakpoints are now inserted in the inferior. */
328 static int breakpoints_inserted;
330 /* Function inferior was in as of last step command. */
332 static struct symbol *step_start_function;
334 /* Nonzero if we are expecting a trace trap and should proceed from it. */
336 static int trap_expected;
339 /* Nonzero if we want to give control to the user when we're notified
340 of shared library events by the dynamic linker. */
341 static int stop_on_solib_events;
345 /* Nonzero if the next time we try to continue the inferior, it will
346 step one instruction and generate a spurious trace trap.
347 This is used to compensate for a bug in HP-UX. */
349 static int trap_expected_after_continue;
352 /* Nonzero means expecting a trace trap
353 and should stop the inferior and return silently when it happens. */
357 /* Nonzero means expecting a trap and caller will handle it themselves.
358 It is used after attach, due to attaching to a process;
359 when running in the shell before the child program has been exec'd;
360 and when running some kinds of remote stuff (FIXME?). */
362 int stop_soon_quietly;
364 /* Nonzero if proceed is being used for a "finish" command or a similar
365 situation when stop_registers should be saved. */
367 int proceed_to_finish;
369 /* Save register contents here when about to pop a stack dummy frame,
370 if-and-only-if proceed_to_finish is set.
371 Thus this contains the return value from the called function (assuming
372 values are returned in a register). */
374 char *stop_registers;
376 /* Nonzero if program stopped due to error trying to insert breakpoints. */
378 static int breakpoints_failed;
380 /* Nonzero after stop if current stack frame should be printed. */
382 static int stop_print_frame;
384 static struct breakpoint *step_resume_breakpoint = NULL;
385 static struct breakpoint *through_sigtramp_breakpoint = NULL;
387 /* On some platforms (e.g., HP-UX), hardware watchpoints have bad
388 interactions with an inferior that is running a kernel function
389 (aka, a system call or "syscall"). wait_for_inferior therefore
390 may have a need to know when the inferior is in a syscall. This
391 is a count of the number of inferior threads which are known to
392 currently be running in a syscall. */
393 static int number_of_threads_in_syscalls;
395 /* This is used to remember when a fork, vfork or exec event
396 was caught by a catchpoint, and thus the event is to be
397 followed at the next resume of the inferior, and not
401 enum target_waitkind kind;
411 char *execd_pathname;
415 /* Some platforms don't allow us to do anything meaningful with a
416 vforked child until it has exec'd. Vforked processes on such
417 platforms can only be followed after they've exec'd.
419 When this is set to 0, a vfork can be immediately followed,
420 and an exec can be followed merely as an exec. When this is
421 set to 1, a vfork event has been seen, but cannot be followed
422 until the exec is seen.
424 (In the latter case, inferior_pid is still the parent of the
425 vfork, and pending_follow.fork_event.child_pid is the child. The
426 appropriate process is followed, according to the setting of
427 follow-fork-mode.) */
428 static int follow_vfork_when_exec;
430 static char *follow_fork_mode_kind_names[] =
432 /* ??rehrauer: The "both" option is broken, by what may be a 10.20
433 kernel problem. It's also not terribly useful without a GUI to
434 help the user drive two debuggers. So for now, I'm disabling
436 "parent", "child", "both", "ask" };
438 "parent", "child", "ask"};
440 static char *follow_fork_mode_string = NULL;
444 follow_inferior_fork (int parent_pid, int child_pid, int has_forked,
447 int followed_parent = 0;
448 int followed_child = 0;
450 /* Which process did the user want us to follow? */
452 savestring (follow_fork_mode_string, strlen (follow_fork_mode_string));
454 /* Or, did the user not know, and want us to ask? */
455 if (STREQ (follow_fork_mode_string, "ask"))
457 char requested_mode[100];
460 error ("\"ask\" mode NYI");
461 follow_mode = savestring (requested_mode, strlen (requested_mode));
464 /* If we're to be following the parent, then detach from child_pid.
465 We're already following the parent, so need do nothing explicit
467 if (STREQ (follow_mode, "parent"))
471 /* We're already attached to the parent, by default. */
473 /* Before detaching from the child, remove all breakpoints from
474 it. (This won't actually modify the breakpoint list, but will
475 physically remove the breakpoints from the child.) */
476 if (!has_vforked || !follow_vfork_when_exec)
478 detach_breakpoints (child_pid);
479 #ifdef SOLIB_REMOVE_INFERIOR_HOOK
480 SOLIB_REMOVE_INFERIOR_HOOK (child_pid);
484 /* Detach from the child. */
487 target_require_detach (child_pid, "", 1);
490 /* If we're to be following the child, then attach to it, detach
491 from inferior_pid, and set inferior_pid to child_pid. */
492 else if (STREQ (follow_mode, "child"))
494 char child_pid_spelling[100]; /* Arbitrary length. */
498 /* Before detaching from the parent, detach all breakpoints from
499 the child. But only if we're forking, or if we follow vforks
500 as soon as they happen. (If we're following vforks only when
501 the child has exec'd, then it's very wrong to try to write
502 back the "shadow contents" of inserted breakpoints now -- they
503 belong to the child's pre-exec'd a.out.) */
504 if (!has_vforked || !follow_vfork_when_exec)
506 detach_breakpoints (child_pid);
509 /* Before detaching from the parent, remove all breakpoints from it. */
510 remove_breakpoints ();
512 /* Also reset the solib inferior hook from the parent. */
513 #ifdef SOLIB_REMOVE_INFERIOR_HOOK
514 SOLIB_REMOVE_INFERIOR_HOOK (inferior_pid);
517 /* Detach from the parent. */
519 target_detach (NULL, 1);
521 /* Attach to the child. */
522 inferior_pid = child_pid;
523 sprintf (child_pid_spelling, "%d", child_pid);
526 target_require_attach (child_pid_spelling, 1);
528 /* Was there a step_resume breakpoint? (There was if the user
529 did a "next" at the fork() call.) If so, explicitly reset its
532 step_resumes are a form of bp that are made to be per-thread.
533 Since we created the step_resume bp when the parent process
534 was being debugged, and now are switching to the child process,
535 from the breakpoint package's viewpoint, that's a switch of
536 "threads". We must update the bp's notion of which thread
537 it is for, or it'll be ignored when it triggers... */
538 if (step_resume_breakpoint &&
539 (!has_vforked || !follow_vfork_when_exec))
540 breakpoint_re_set_thread (step_resume_breakpoint);
542 /* Reinsert all breakpoints in the child. (The user may've set
543 breakpoints after catching the fork, in which case those
544 actually didn't get set in the child, but only in the parent.) */
545 if (!has_vforked || !follow_vfork_when_exec)
547 breakpoint_re_set ();
548 insert_breakpoints ();
552 /* If we're to be following both parent and child, then fork ourselves,
553 and attach the debugger clone to the child. */
554 else if (STREQ (follow_mode, "both"))
556 char pid_suffix[100]; /* Arbitrary length. */
558 /* Clone ourselves to follow the child. This is the end of our
559 involvement with child_pid; our clone will take it from here... */
561 target_clone_and_follow_inferior (child_pid, &followed_child);
562 followed_parent = !followed_child;
564 /* We continue to follow the parent. To help distinguish the two
565 debuggers, though, both we and our clone will reset our prompts. */
566 sprintf (pid_suffix, "[%d] ", inferior_pid);
567 set_prompt (strcat (get_prompt (), pid_suffix));
570 /* The parent and child of a vfork share the same address space.
571 Also, on some targets the order in which vfork and exec events
572 are received for parent in child requires some delicate handling
575 For instance, on ptrace-based HPUX we receive the child's vfork
576 event first, at which time the parent has been suspended by the
577 OS and is essentially untouchable until the child's exit or second
578 exec event arrives. At that time, the parent's vfork event is
579 delivered to us, and that's when we see and decide how to follow
580 the vfork. But to get to that point, we must continue the child
581 until it execs or exits. To do that smoothly, all breakpoints
582 must be removed from the child, in case there are any set between
583 the vfork() and exec() calls. But removing them from the child
584 also removes them from the parent, due to the shared-address-space
585 nature of a vfork'd parent and child. On HPUX, therefore, we must
586 take care to restore the bp's to the parent before we continue it.
587 Else, it's likely that we may not stop in the expected place. (The
588 worst scenario is when the user tries to step over a vfork() call;
589 the step-resume bp must be restored for the step to properly stop
590 in the parent after the call completes!)
592 Sequence of events, as reported to gdb from HPUX:
594 Parent Child Action for gdb to take
595 -------------------------------------------------------
596 1 VFORK Continue child
602 target_post_follow_vfork (parent_pid,
608 pending_follow.fork_event.saw_parent_fork = 0;
609 pending_follow.fork_event.saw_child_fork = 0;
615 follow_fork (int parent_pid, int child_pid)
617 follow_inferior_fork (parent_pid, child_pid, 1, 0);
621 /* Forward declaration. */
622 static void follow_exec (int, char *);
625 follow_vfork (int parent_pid, int child_pid)
627 follow_inferior_fork (parent_pid, child_pid, 0, 1);
629 /* Did we follow the child? Had it exec'd before we saw the parent vfork? */
630 if (pending_follow.fork_event.saw_child_exec && (inferior_pid == child_pid))
632 pending_follow.fork_event.saw_child_exec = 0;
633 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
634 follow_exec (inferior_pid, pending_follow.execd_pathname);
635 free (pending_follow.execd_pathname);
640 follow_exec (int pid, char *execd_pathname)
643 struct target_ops *tgt;
645 if (!may_follow_exec)
648 /* Did this exec() follow a vfork()? If so, we must follow the
649 vfork now too. Do it before following the exec. */
650 if (follow_vfork_when_exec &&
651 (pending_follow.kind == TARGET_WAITKIND_VFORKED))
653 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
654 follow_vfork (inferior_pid, pending_follow.fork_event.child_pid);
655 follow_vfork_when_exec = 0;
656 saved_pid = inferior_pid;
658 /* Did we follow the parent? If so, we're done. If we followed
659 the child then we must also follow its exec(). */
660 if (inferior_pid == pending_follow.fork_event.parent_pid)
664 /* This is an exec event that we actually wish to pay attention to.
665 Refresh our symbol table to the newly exec'd program, remove any
668 If there are breakpoints, they aren't really inserted now,
669 since the exec() transformed our inferior into a fresh set
672 We want to preserve symbolic breakpoints on the list, since
673 we have hopes that they can be reset after the new a.out's
674 symbol table is read.
676 However, any "raw" breakpoints must be removed from the list
677 (e.g., the solib bp's), since their address is probably invalid
680 And, we DON'T want to call delete_breakpoints() here, since
681 that may write the bp's "shadow contents" (the instruction
682 value that was overwritten witha TRAP instruction). Since
683 we now have a new a.out, those shadow contents aren't valid. */
684 update_breakpoints_after_exec ();
686 /* If there was one, it's gone now. We cannot truly step-to-next
687 statement through an exec(). */
688 step_resume_breakpoint = NULL;
689 step_range_start = 0;
692 /* If there was one, it's gone now. */
693 through_sigtramp_breakpoint = NULL;
695 /* What is this a.out's name? */
696 printf_unfiltered ("Executing new program: %s\n", execd_pathname);
698 /* We've followed the inferior through an exec. Therefore, the
699 inferior has essentially been killed & reborn. */
701 /* First collect the run target in effect. */
702 tgt = find_run_target ();
703 /* If we can't find one, things are in a very strange state... */
705 error ("Could find run target to save before following exec");
707 gdb_flush (gdb_stdout);
708 target_mourn_inferior ();
709 inferior_pid = saved_pid; /* Because mourn_inferior resets inferior_pid. */
712 /* That a.out is now the one to use. */
713 exec_file_attach (execd_pathname, 0);
715 /* And also is where symbols can be found. */
716 symbol_file_command (execd_pathname, 0);
718 /* Reset the shared library package. This ensures that we get
719 a shlib event when the child reaches "_start", at which point
720 the dld will have had a chance to initialize the child. */
721 #if defined(SOLIB_RESTART)
724 #ifdef SOLIB_CREATE_INFERIOR_HOOK
725 SOLIB_CREATE_INFERIOR_HOOK (inferior_pid);
728 /* Reinsert all breakpoints. (Those which were symbolic have
729 been reset to the proper address in the new a.out, thanks
730 to symbol_file_command...) */
731 insert_breakpoints ();
733 /* The next resume of this inferior should bring it to the shlib
734 startup breakpoints. (If the user had also set bp's on
735 "main" from the old (parent) process, then they'll auto-
736 matically get reset there in the new process.) */
739 /* Non-zero if we just simulating a single-step. This is needed
740 because we cannot remove the breakpoints in the inferior process
741 until after the `wait' in `wait_for_inferior'. */
742 static int singlestep_breakpoints_inserted_p = 0;
745 /* Things to clean up if we QUIT out of resume (). */
748 resume_cleanups (int arg)
753 static char schedlock_off[] = "off";
754 static char schedlock_on[] = "on";
755 static char schedlock_step[] = "step";
756 static char *scheduler_mode = schedlock_off;
757 static char *scheduler_enums[] =
758 {schedlock_off, schedlock_on, schedlock_step};
761 set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
763 if (c->type == set_cmd)
764 if (!target_can_lock_scheduler)
766 scheduler_mode = schedlock_off;
767 error ("Target '%s' cannot support this command.",
775 /* Resume the inferior, but allow a QUIT. This is useful if the user
776 wants to interrupt some lengthy single-stepping operation
777 (for child processes, the SIGINT goes to the inferior, and so
778 we get a SIGINT random_signal, but for remote debugging and perhaps
779 other targets, that's not true).
781 STEP nonzero if we should step (zero to continue instead).
782 SIG is the signal to give the inferior (zero for none). */
784 resume (int step, enum target_signal sig)
786 int should_resume = 1;
787 struct cleanup *old_cleanups = make_cleanup ((make_cleanup_func)
791 #ifdef CANNOT_STEP_BREAKPOINT
792 /* Most targets can step a breakpoint instruction, thus executing it
793 normally. But if this one cannot, just continue and we will hit
795 if (step && breakpoints_inserted && breakpoint_here_p (read_pc ()))
799 /* Normally, by the time we reach `resume', the breakpoints are either
800 removed or inserted, as appropriate. The exception is if we're sitting
801 at a permanent breakpoint; we need to step over it, but permanent
802 breakpoints can't be removed. So we have to test for it here. */
803 if (breakpoint_here_p (read_pc ()) == permanent_breakpoint_here)
804 SKIP_PERMANENT_BREAKPOINT ();
806 if (SOFTWARE_SINGLE_STEP_P && step)
808 /* Do it the hard way, w/temp breakpoints */
809 SOFTWARE_SINGLE_STEP (sig, 1 /*insert-breakpoints */ );
810 /* ...and don't ask hardware to do it. */
812 /* and do not pull these breakpoints until after a `wait' in
813 `wait_for_inferior' */
814 singlestep_breakpoints_inserted_p = 1;
817 /* Handle any optimized stores to the inferior NOW... */
818 #ifdef DO_DEFERRED_STORES
822 /* If there were any forks/vforks/execs that were caught and are
823 now to be followed, then do so. */
824 switch (pending_follow.kind)
826 case (TARGET_WAITKIND_FORKED):
827 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
828 follow_fork (inferior_pid, pending_follow.fork_event.child_pid);
831 case (TARGET_WAITKIND_VFORKED):
833 int saw_child_exec = pending_follow.fork_event.saw_child_exec;
835 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
836 follow_vfork (inferior_pid, pending_follow.fork_event.child_pid);
838 /* Did we follow the child, but not yet see the child's exec event?
839 If so, then it actually ought to be waiting for us; we respond to
840 parent vfork events. We don't actually want to resume the child
841 in this situation; we want to just get its exec event. */
842 if (!saw_child_exec &&
843 (inferior_pid == pending_follow.fork_event.child_pid))
848 case (TARGET_WAITKIND_EXECD):
849 /* If we saw a vfork event but couldn't follow it until we saw
850 an exec, then now might be the time! */
851 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
852 /* follow_exec is called as soon as the exec event is seen. */
859 /* Install inferior's terminal modes. */
860 target_terminal_inferior ();
866 if (use_thread_step_needed && thread_step_needed)
868 /* We stopped on a BPT instruction;
869 don't continue other threads and
870 just step this thread. */
871 thread_step_needed = 0;
873 if (!breakpoint_here_p (read_pc ()))
875 /* Breakpoint deleted: ok to do regular resume
876 where all the threads either step or continue. */
883 warning ("Internal error, changing continue to step.");
884 remove_breakpoints ();
885 breakpoints_inserted = 0;
889 resume_pid = inferior_pid;
894 /* Vanilla resume. */
895 if ((scheduler_mode == schedlock_on) ||
896 (scheduler_mode == schedlock_step && step != 0))
897 resume_pid = inferior_pid;
901 target_resume (resume_pid, step, sig);
904 discard_cleanups (old_cleanups);
908 /* Clear out all variables saying what to do when inferior is continued.
909 First do this, then set the ones you want, then call `proceed'. */
912 clear_proceed_status (void)
915 step_range_start = 0;
917 step_frame_address = 0;
918 step_over_calls = -1;
920 stop_soon_quietly = 0;
921 proceed_to_finish = 0;
922 breakpoint_proceeded = 1; /* We're about to proceed... */
924 /* Discard any remaining commands or status from previous stop. */
925 bpstat_clear (&stop_bpstat);
928 /* Basic routine for continuing the program in various fashions.
930 ADDR is the address to resume at, or -1 for resume where stopped.
931 SIGGNAL is the signal to give it, or 0 for none,
932 or -1 for act according to how it stopped.
933 STEP is nonzero if should trap after one instruction.
934 -1 means return after that and print nothing.
935 You should probably set various step_... variables
936 before calling here, if you are stepping.
938 You should call clear_proceed_status before calling proceed. */
941 proceed (CORE_ADDR addr, enum target_signal siggnal, int step)
946 step_start_function = find_pc_function (read_pc ());
950 if (addr == (CORE_ADDR) -1)
952 /* If there is a breakpoint at the address we will resume at,
953 step one instruction before inserting breakpoints
954 so that we do not stop right away (and report a second
955 hit at this breakpoint). */
957 if (read_pc () == stop_pc && breakpoint_here_p (read_pc ()))
960 #ifndef STEP_SKIPS_DELAY
961 #define STEP_SKIPS_DELAY(pc) (0)
962 #define STEP_SKIPS_DELAY_P (0)
964 /* Check breakpoint_here_p first, because breakpoint_here_p is fast
965 (it just checks internal GDB data structures) and STEP_SKIPS_DELAY
966 is slow (it needs to read memory from the target). */
967 if (STEP_SKIPS_DELAY_P
968 && breakpoint_here_p (read_pc () + 4)
969 && STEP_SKIPS_DELAY (read_pc ()))
976 /* New address; we don't need to single-step a thread
977 over a breakpoint we just hit, 'cause we aren't
978 continuing from there.
980 It's not worth worrying about the case where a user
981 asks for a "jump" at the current PC--if they get the
982 hiccup of re-hiting a hit breakpoint, what else do
984 thread_step_needed = 0;
987 #ifdef PREPARE_TO_PROCEED
988 /* In a multi-threaded task we may select another thread
989 and then continue or step.
991 But if the old thread was stopped at a breakpoint, it
992 will immediately cause another breakpoint stop without
993 any execution (i.e. it will report a breakpoint hit
994 incorrectly). So we must step over it first.
996 PREPARE_TO_PROCEED checks the current thread against the thread
997 that reported the most recent event. If a step-over is required
998 it returns TRUE and sets the current thread to the old thread. */
999 if (PREPARE_TO_PROCEED (1) && breakpoint_here_p (read_pc ()))
1002 thread_step_needed = 1;
1005 #endif /* PREPARE_TO_PROCEED */
1008 if (trap_expected_after_continue)
1010 /* If (step == 0), a trap will be automatically generated after
1011 the first instruction is executed. Force step one
1012 instruction to clear this condition. This should not occur
1013 if step is nonzero, but it is harmless in that case. */
1015 trap_expected_after_continue = 0;
1017 #endif /* HP_OS_BUG */
1020 /* We will get a trace trap after one instruction.
1021 Continue it automatically and insert breakpoints then. */
1025 int temp = insert_breakpoints ();
1028 print_sys_errmsg ("ptrace", temp);
1029 error ("Cannot insert breakpoints.\n\
1030 The same program may be running in another process.");
1033 breakpoints_inserted = 1;
1036 if (siggnal != TARGET_SIGNAL_DEFAULT)
1037 stop_signal = siggnal;
1038 /* If this signal should not be seen by program,
1039 give it zero. Used for debugging signals. */
1040 else if (!signal_program[stop_signal])
1041 stop_signal = TARGET_SIGNAL_0;
1043 annotate_starting ();
1045 /* Make sure that output from GDB appears before output from the
1047 gdb_flush (gdb_stdout);
1049 /* Resume inferior. */
1050 resume (oneproc || step || bpstat_should_step (), stop_signal);
1052 /* Wait for it to stop (if not standalone)
1053 and in any case decode why it stopped, and act accordingly. */
1054 /* Do this only if we are not using the event loop, or if the target
1055 does not support asynchronous execution. */
1056 if (!event_loop_p || !target_can_async_p ())
1058 wait_for_inferior ();
1063 /* Record the pc and sp of the program the last time it stopped.
1064 These are just used internally by wait_for_inferior, but need
1065 to be preserved over calls to it and cleared when the inferior
1067 static CORE_ADDR prev_pc;
1068 static CORE_ADDR prev_func_start;
1069 static char *prev_func_name;
1072 /* Start remote-debugging of a machine over a serial link. */
1077 init_thread_list ();
1078 init_wait_for_inferior ();
1079 stop_soon_quietly = 1;
1082 /* Always go on waiting for the target, regardless of the mode. */
1083 /* FIXME: cagney/1999-09-23: At present it isn't possible to
1084 indicate th wait_for_inferior that a target should timeout if
1085 nothing is returned (instead of just blocking). Because of this,
1086 targets expecting an immediate response need to, internally, set
1087 things up so that the target_wait() is forced to eventually
1089 /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
1090 differentiate to its caller what the state of the target is after
1091 the initial open has been performed. Here we're assuming that
1092 the target has stopped. It should be possible to eventually have
1093 target_open() return to the caller an indication that the target
1094 is currently running and GDB state should be set to the same as
1095 for an async run. */
1096 wait_for_inferior ();
1100 /* Initialize static vars when a new inferior begins. */
1103 init_wait_for_inferior (void)
1105 /* These are meaningless until the first time through wait_for_inferior. */
1107 prev_func_start = 0;
1108 prev_func_name = NULL;
1111 trap_expected_after_continue = 0;
1113 breakpoints_inserted = 0;
1114 breakpoint_init_inferior (inf_starting);
1116 /* Don't confuse first call to proceed(). */
1117 stop_signal = TARGET_SIGNAL_0;
1119 /* The first resume is not following a fork/vfork/exec. */
1120 pending_follow.kind = TARGET_WAITKIND_SPURIOUS; /* I.e., none. */
1121 pending_follow.fork_event.saw_parent_fork = 0;
1122 pending_follow.fork_event.saw_child_fork = 0;
1123 pending_follow.fork_event.saw_child_exec = 0;
1125 /* See wait_for_inferior's handling of SYSCALL_ENTRY/RETURN events. */
1126 number_of_threads_in_syscalls = 0;
1128 clear_proceed_status ();
1132 delete_breakpoint_current_contents (void *arg)
1134 struct breakpoint **breakpointp = (struct breakpoint **) arg;
1135 if (*breakpointp != NULL)
1137 delete_breakpoint (*breakpointp);
1138 *breakpointp = NULL;
1142 /* This enum encodes possible reasons for doing a target_wait, so that
1143 wfi can call target_wait in one place. (Ultimately the call will be
1144 moved out of the infinite loop entirely.) */
1148 infwait_normal_state,
1149 infwait_thread_hop_state,
1150 infwait_nullified_state,
1151 infwait_nonstep_watch_state
1154 /* Why did the inferior stop? Used to print the appropriate messages
1155 to the interface from within handle_inferior_event(). */
1156 enum inferior_stop_reason
1158 /* We don't know why. */
1160 /* Step, next, nexti, stepi finished. */
1162 /* Found breakpoint. */
1164 /* Inferior terminated by signal. */
1166 /* Inferior exited. */
1168 /* Inferior received signal, and user asked to be notified. */
1172 /* This structure contains what used to be local variables in
1173 wait_for_inferior. Probably many of them can return to being
1174 locals in handle_inferior_event. */
1176 struct execution_control_state
1178 struct target_waitstatus ws;
1179 struct target_waitstatus *wp;
1182 CORE_ADDR stop_func_start;
1183 CORE_ADDR stop_func_end;
1184 char *stop_func_name;
1185 struct symtab_and_line sal;
1186 int remove_breakpoints_on_following_step;
1188 struct symtab *current_symtab;
1189 int handling_longjmp; /* FIXME */
1191 int saved_inferior_pid;
1193 int stepping_through_solib_after_catch;
1194 bpstat stepping_through_solib_catchpoints;
1195 int enable_hw_watchpoints_after_wait;
1196 int stepping_through_sigtramp;
1197 int new_thread_event;
1198 struct target_waitstatus tmpstatus;
1199 enum infwait_states infwait_state;
1204 void init_execution_control_state (struct execution_control_state * ecs);
1206 void handle_inferior_event (struct execution_control_state * ecs);
1208 static void check_sigtramp2 (struct execution_control_state *ecs);
1209 static void step_into_function (struct execution_control_state *ecs);
1210 static void step_over_function (struct execution_control_state *ecs);
1211 static void stop_stepping (struct execution_control_state *ecs);
1212 static void prepare_to_wait (struct execution_control_state *ecs);
1213 static void keep_going (struct execution_control_state *ecs);
1214 static void print_stop_reason (enum inferior_stop_reason stop_reason, int stop_info);
1216 /* Wait for control to return from inferior to debugger.
1217 If inferior gets a signal, we may decide to start it up again
1218 instead of returning. That is why there is a loop in this function.
1219 When this function actually returns it means the inferior
1220 should be left stopped and GDB should read more commands. */
1223 wait_for_inferior (void)
1225 struct cleanup *old_cleanups;
1226 struct execution_control_state ecss;
1227 struct execution_control_state *ecs;
1229 old_cleanups = make_cleanup (delete_breakpoint_current_contents,
1230 &step_resume_breakpoint);
1231 make_cleanup (delete_breakpoint_current_contents,
1232 &through_sigtramp_breakpoint);
1234 /* wfi still stays in a loop, so it's OK just to take the address of
1235 a local to get the ecs pointer. */
1238 /* Fill in with reasonable starting values. */
1239 init_execution_control_state (ecs);
1241 thread_step_needed = 0;
1243 /* We'll update this if & when we switch to a new thread. */
1244 previous_inferior_pid = inferior_pid;
1246 overlay_cache_invalid = 1;
1248 /* We have to invalidate the registers BEFORE calling target_wait
1249 because they can be loaded from the target while in target_wait.
1250 This makes remote debugging a bit more efficient for those
1251 targets that provide critical registers as part of their normal
1252 status mechanism. */
1254 registers_changed ();
1258 if (target_wait_hook)
1259 ecs->pid = target_wait_hook (ecs->waiton_pid, ecs->wp);
1261 ecs->pid = target_wait (ecs->waiton_pid, ecs->wp);
1263 /* Now figure out what to do with the result of the result. */
1264 handle_inferior_event (ecs);
1266 if (!ecs->wait_some_more)
1269 do_cleanups (old_cleanups);
1272 /* Asynchronous version of wait_for_inferior. It is called by the
1273 event loop whenever a change of state is detected on the file
1274 descriptor corresponding to the target. It can be called more than
1275 once to complete a single execution command. In such cases we need
1276 to keep the state in a global variable ASYNC_ECSS. If it is the
1277 last time that this function is called for a single execution
1278 command, then report to the user that the inferior has stopped, and
1279 do the necessary cleanups. */
1281 struct execution_control_state async_ecss;
1282 struct execution_control_state *async_ecs;
1285 fetch_inferior_event (client_data)
1288 static struct cleanup *old_cleanups;
1290 async_ecs = &async_ecss;
1292 if (!async_ecs->wait_some_more)
1294 old_cleanups = make_exec_cleanup (delete_breakpoint_current_contents,
1295 &step_resume_breakpoint);
1296 make_exec_cleanup (delete_breakpoint_current_contents,
1297 &through_sigtramp_breakpoint);
1299 /* Fill in with reasonable starting values. */
1300 init_execution_control_state (async_ecs);
1302 thread_step_needed = 0;
1304 /* We'll update this if & when we switch to a new thread. */
1305 previous_inferior_pid = inferior_pid;
1307 overlay_cache_invalid = 1;
1309 /* We have to invalidate the registers BEFORE calling target_wait
1310 because they can be loaded from the target while in target_wait.
1311 This makes remote debugging a bit more efficient for those
1312 targets that provide critical registers as part of their normal
1313 status mechanism. */
1315 registers_changed ();
1318 if (target_wait_hook)
1319 async_ecs->pid = target_wait_hook (async_ecs->waiton_pid, async_ecs->wp);
1321 async_ecs->pid = target_wait (async_ecs->waiton_pid, async_ecs->wp);
1323 /* Now figure out what to do with the result of the result. */
1324 handle_inferior_event (async_ecs);
1326 if (!async_ecs->wait_some_more)
1328 /* Do only the cleanups that have been added by this
1329 function. Let the continuations for the commands do the rest,
1330 if there are any. */
1331 do_exec_cleanups (old_cleanups);
1333 if (step_multi && stop_step)
1334 inferior_event_handler (INF_EXEC_CONTINUE, NULL);
1336 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
1340 /* Prepare an execution control state for looping through a
1341 wait_for_inferior-type loop. */
1344 init_execution_control_state (struct execution_control_state *ecs)
1346 /* ecs->another_trap? */
1347 ecs->random_signal = 0;
1348 ecs->remove_breakpoints_on_following_step = 0;
1349 ecs->handling_longjmp = 0; /* FIXME */
1350 ecs->update_step_sp = 0;
1351 ecs->stepping_through_solib_after_catch = 0;
1352 ecs->stepping_through_solib_catchpoints = NULL;
1353 ecs->enable_hw_watchpoints_after_wait = 0;
1354 ecs->stepping_through_sigtramp = 0;
1355 ecs->sal = find_pc_line (prev_pc, 0);
1356 ecs->current_line = ecs->sal.line;
1357 ecs->current_symtab = ecs->sal.symtab;
1358 ecs->infwait_state = infwait_normal_state;
1359 ecs->waiton_pid = -1;
1360 ecs->wp = &(ecs->ws);
1363 /* Call this function before setting step_resume_breakpoint, as a
1364 sanity check. There should never be more than one step-resume
1365 breakpoint per thread, so we should never be setting a new
1366 step_resume_breakpoint when one is already active. */
1368 check_for_old_step_resume_breakpoint (void)
1370 if (step_resume_breakpoint)
1371 warning ("GDB bug: infrun.c (wait_for_inferior): dropping old step_resume breakpoint");
1374 /* Given an execution control state that has been freshly filled in
1375 by an event from the inferior, figure out what it means and take
1376 appropriate action. */
1379 handle_inferior_event (struct execution_control_state *ecs)
1382 int stepped_after_stopped_by_watchpoint;
1384 /* Keep this extra brace for now, minimizes diffs. */
1386 switch (ecs->infwait_state)
1388 case infwait_normal_state:
1389 /* Since we've done a wait, we have a new event. Don't
1390 carry over any expectations about needing to step over a
1392 thread_step_needed = 0;
1394 /* See comments where a TARGET_WAITKIND_SYSCALL_RETURN event
1395 is serviced in this loop, below. */
1396 if (ecs->enable_hw_watchpoints_after_wait)
1398 TARGET_ENABLE_HW_WATCHPOINTS (inferior_pid);
1399 ecs->enable_hw_watchpoints_after_wait = 0;
1401 stepped_after_stopped_by_watchpoint = 0;
1404 case infwait_thread_hop_state:
1405 insert_breakpoints ();
1407 /* We need to restart all the threads now,
1408 * unles we're running in scheduler-locked mode.
1409 * FIXME: shouldn't we look at currently_stepping ()?
1411 if (scheduler_mode == schedlock_on)
1412 target_resume (ecs->pid, 0, TARGET_SIGNAL_0);
1414 target_resume (-1, 0, TARGET_SIGNAL_0);
1415 ecs->infwait_state = infwait_normal_state;
1416 prepare_to_wait (ecs);
1419 case infwait_nullified_state:
1422 case infwait_nonstep_watch_state:
1423 insert_breakpoints ();
1425 /* FIXME-maybe: is this cleaner than setting a flag? Does it
1426 handle things like signals arriving and other things happening
1427 in combination correctly? */
1428 stepped_after_stopped_by_watchpoint = 1;
1431 ecs->infwait_state = infwait_normal_state;
1433 flush_cached_frames ();
1435 /* If it's a new process, add it to the thread database */
1437 ecs->new_thread_event = ((ecs->pid != inferior_pid) && !in_thread_list (ecs->pid));
1439 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
1440 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
1441 && ecs->new_thread_event)
1443 add_thread (ecs->pid);
1446 ui_out_text (uiout, "[New ");
1447 ui_out_text (uiout, target_pid_or_tid_to_str (ecs->pid));
1448 ui_out_text (uiout, "]\n");
1450 printf_filtered ("[New %s]\n", target_pid_or_tid_to_str (ecs->pid));
1454 /* NOTE: This block is ONLY meant to be invoked in case of a
1455 "thread creation event"! If it is invoked for any other
1456 sort of event (such as a new thread landing on a breakpoint),
1457 the event will be discarded, which is almost certainly
1460 To avoid this, the low-level module (eg. target_wait)
1461 should call in_thread_list and add_thread, so that the
1462 new thread is known by the time we get here. */
1464 /* We may want to consider not doing a resume here in order
1465 to give the user a chance to play with the new thread.
1466 It might be good to make that a user-settable option. */
1468 /* At this point, all threads are stopped (happens
1469 automatically in either the OS or the native code).
1470 Therefore we need to continue all threads in order to
1473 target_resume (-1, 0, TARGET_SIGNAL_0);
1474 prepare_to_wait (ecs);
1479 switch (ecs->ws.kind)
1481 case TARGET_WAITKIND_LOADED:
1482 /* Ignore gracefully during startup of the inferior, as it
1483 might be the shell which has just loaded some objects,
1484 otherwise add the symbols for the newly loaded objects. */
1486 if (!stop_soon_quietly)
1488 /* Remove breakpoints, SOLIB_ADD might adjust
1489 breakpoint addresses via breakpoint_re_set. */
1490 if (breakpoints_inserted)
1491 remove_breakpoints ();
1493 /* Check for any newly added shared libraries if we're
1494 supposed to be adding them automatically. */
1497 /* Switch terminal for any messages produced by
1498 breakpoint_re_set. */
1499 target_terminal_ours_for_output ();
1500 SOLIB_ADD (NULL, 0, NULL);
1501 target_terminal_inferior ();
1504 /* Reinsert breakpoints and continue. */
1505 if (breakpoints_inserted)
1506 insert_breakpoints ();
1509 resume (0, TARGET_SIGNAL_0);
1510 prepare_to_wait (ecs);
1513 case TARGET_WAITKIND_SPURIOUS:
1514 resume (0, TARGET_SIGNAL_0);
1515 prepare_to_wait (ecs);
1518 case TARGET_WAITKIND_EXITED:
1519 target_terminal_ours (); /* Must do this before mourn anyway */
1520 print_stop_reason (EXITED, ecs->ws.value.integer);
1522 /* Record the exit code in the convenience variable $_exitcode, so
1523 that the user can inspect this again later. */
1524 set_internalvar (lookup_internalvar ("_exitcode"),
1525 value_from_longest (builtin_type_int,
1526 (LONGEST) ecs->ws.value.integer));
1527 gdb_flush (gdb_stdout);
1528 target_mourn_inferior ();
1529 singlestep_breakpoints_inserted_p = 0; /*SOFTWARE_SINGLE_STEP_P */
1530 stop_print_frame = 0;
1531 stop_stepping (ecs);
1534 case TARGET_WAITKIND_SIGNALLED:
1535 stop_print_frame = 0;
1536 stop_signal = ecs->ws.value.sig;
1537 target_terminal_ours (); /* Must do this before mourn anyway */
1539 /* This looks pretty bogus to me. Doesn't TARGET_WAITKIND_SIGNALLED
1540 mean it is already dead? This has been here since GDB 2.8, so
1541 perhaps it means rms didn't understand unix waitstatuses?
1542 For the moment I'm just kludging around this in remote.c
1543 rather than trying to change it here --kingdon, 5 Dec 1994. */
1544 target_kill (); /* kill mourns as well */
1546 print_stop_reason (SIGNAL_EXITED, stop_signal);
1547 singlestep_breakpoints_inserted_p = 0; /*SOFTWARE_SINGLE_STEP_P */
1548 stop_stepping (ecs);
1551 /* The following are the only cases in which we keep going;
1552 the above cases end in a continue or goto. */
1553 case TARGET_WAITKIND_FORKED:
1554 stop_signal = TARGET_SIGNAL_TRAP;
1555 pending_follow.kind = ecs->ws.kind;
1557 /* Ignore fork events reported for the parent; we're only
1558 interested in reacting to forks of the child. Note that
1559 we expect the child's fork event to be available if we
1560 waited for it now. */
1561 if (inferior_pid == ecs->pid)
1563 pending_follow.fork_event.saw_parent_fork = 1;
1564 pending_follow.fork_event.parent_pid = ecs->pid;
1565 pending_follow.fork_event.child_pid = ecs->ws.value.related_pid;
1566 prepare_to_wait (ecs);
1571 pending_follow.fork_event.saw_child_fork = 1;
1572 pending_follow.fork_event.child_pid = ecs->pid;
1573 pending_follow.fork_event.parent_pid = ecs->ws.value.related_pid;
1576 stop_pc = read_pc_pid (ecs->pid);
1577 ecs->saved_inferior_pid = inferior_pid;
1578 inferior_pid = ecs->pid;
1579 stop_bpstat = bpstat_stop_status (&stop_pc, currently_stepping (ecs));
1580 ecs->random_signal = !bpstat_explains_signal (stop_bpstat);
1581 inferior_pid = ecs->saved_inferior_pid;
1582 goto process_event_stop_test;
1584 /* If this a platform which doesn't allow a debugger to touch a
1585 vfork'd inferior until after it exec's, then we'd best keep
1586 our fingers entirely off the inferior, other than continuing
1587 it. This has the unfortunate side-effect that catchpoints
1588 of vforks will be ignored. But since the platform doesn't
1589 allow the inferior be touched at vfork time, there's really
1591 case TARGET_WAITKIND_VFORKED:
1592 stop_signal = TARGET_SIGNAL_TRAP;
1593 pending_follow.kind = ecs->ws.kind;
1595 /* Is this a vfork of the parent? If so, then give any
1596 vfork catchpoints a chance to trigger now. (It's
1597 dangerous to do so if the child canot be touched until
1598 it execs, and the child has not yet exec'd. We probably
1599 should warn the user to that effect when the catchpoint
1601 if (ecs->pid == inferior_pid)
1603 pending_follow.fork_event.saw_parent_fork = 1;
1604 pending_follow.fork_event.parent_pid = ecs->pid;
1605 pending_follow.fork_event.child_pid = ecs->ws.value.related_pid;
1608 /* If we've seen the child's vfork event but cannot really touch
1609 the child until it execs, then we must continue the child now.
1610 Else, give any vfork catchpoints a chance to trigger now. */
1613 pending_follow.fork_event.saw_child_fork = 1;
1614 pending_follow.fork_event.child_pid = ecs->pid;
1615 pending_follow.fork_event.parent_pid = ecs->ws.value.related_pid;
1616 target_post_startup_inferior (pending_follow.fork_event.child_pid);
1617 follow_vfork_when_exec = !target_can_follow_vfork_prior_to_exec ();
1618 if (follow_vfork_when_exec)
1620 target_resume (ecs->pid, 0, TARGET_SIGNAL_0);
1621 prepare_to_wait (ecs);
1626 stop_pc = read_pc ();
1627 stop_bpstat = bpstat_stop_status (&stop_pc, currently_stepping (ecs));
1628 ecs->random_signal = !bpstat_explains_signal (stop_bpstat);
1629 goto process_event_stop_test;
1631 case TARGET_WAITKIND_EXECD:
1632 stop_signal = TARGET_SIGNAL_TRAP;
1634 /* Is this a target which reports multiple exec events per actual
1635 call to exec()? (HP-UX using ptrace does, for example.) If so,
1636 ignore all but the last one. Just resume the exec'r, and wait
1637 for the next exec event. */
1638 if (inferior_ignoring_leading_exec_events)
1640 inferior_ignoring_leading_exec_events--;
1641 if (pending_follow.kind == TARGET_WAITKIND_VFORKED)
1642 ENSURE_VFORKING_PARENT_REMAINS_STOPPED (pending_follow.fork_event.parent_pid);
1643 target_resume (ecs->pid, 0, TARGET_SIGNAL_0);
1644 prepare_to_wait (ecs);
1647 inferior_ignoring_leading_exec_events =
1648 target_reported_exec_events_per_exec_call () - 1;
1650 pending_follow.execd_pathname =
1651 savestring (ecs->ws.value.execd_pathname,
1652 strlen (ecs->ws.value.execd_pathname));
1654 /* Did inferior_pid exec, or did a (possibly not-yet-followed)
1655 child of a vfork exec?
1657 ??rehrauer: This is unabashedly an HP-UX specific thing. On
1658 HP-UX, events associated with a vforking inferior come in
1659 threes: a vfork event for the child (always first), followed
1660 a vfork event for the parent and an exec event for the child.
1661 The latter two can come in either order.
1663 If we get the parent vfork event first, life's good: We follow
1664 either the parent or child, and then the child's exec event is
1667 But if we get the child's exec event first, then we delay
1668 responding to it until we handle the parent's vfork. Because,
1669 otherwise we can't satisfy a "catch vfork". */
1670 if (pending_follow.kind == TARGET_WAITKIND_VFORKED)
1672 pending_follow.fork_event.saw_child_exec = 1;
1674 /* On some targets, the child must be resumed before
1675 the parent vfork event is delivered. A single-step
1677 if (RESUME_EXECD_VFORKING_CHILD_TO_GET_PARENT_VFORK ())
1678 target_resume (ecs->pid, 1, TARGET_SIGNAL_0);
1679 /* We expect the parent vfork event to be available now. */
1680 prepare_to_wait (ecs);
1684 /* This causes the eventpoints and symbol table to be reset. Must
1685 do this now, before trying to determine whether to stop. */
1686 follow_exec (inferior_pid, pending_follow.execd_pathname);
1687 free (pending_follow.execd_pathname);
1689 stop_pc = read_pc_pid (ecs->pid);
1690 ecs->saved_inferior_pid = inferior_pid;
1691 inferior_pid = ecs->pid;
1692 stop_bpstat = bpstat_stop_status (&stop_pc, currently_stepping (ecs));
1693 ecs->random_signal = !bpstat_explains_signal (stop_bpstat);
1694 inferior_pid = ecs->saved_inferior_pid;
1695 goto process_event_stop_test;
1697 /* These syscall events are returned on HP-UX, as part of its
1698 implementation of page-protection-based "hardware" watchpoints.
1699 HP-UX has unfortunate interactions between page-protections and
1700 some system calls. Our solution is to disable hardware watches
1701 when a system call is entered, and reenable them when the syscall
1702 completes. The downside of this is that we may miss the precise
1703 point at which a watched piece of memory is modified. "Oh well."
1705 Note that we may have multiple threads running, which may each
1706 enter syscalls at roughly the same time. Since we don't have a
1707 good notion currently of whether a watched piece of memory is
1708 thread-private, we'd best not have any page-protections active
1709 when any thread is in a syscall. Thus, we only want to reenable
1710 hardware watches when no threads are in a syscall.
1712 Also, be careful not to try to gather much state about a thread
1713 that's in a syscall. It's frequently a losing proposition. */
1714 case TARGET_WAITKIND_SYSCALL_ENTRY:
1715 number_of_threads_in_syscalls++;
1716 if (number_of_threads_in_syscalls == 1)
1718 TARGET_DISABLE_HW_WATCHPOINTS (inferior_pid);
1720 resume (0, TARGET_SIGNAL_0);
1721 prepare_to_wait (ecs);
1724 /* Before examining the threads further, step this thread to
1725 get it entirely out of the syscall. (We get notice of the
1726 event when the thread is just on the verge of exiting a
1727 syscall. Stepping one instruction seems to get it back
1730 Note that although the logical place to reenable h/w watches
1731 is here, we cannot. We cannot reenable them before stepping
1732 the thread (this causes the next wait on the thread to hang).
1734 Nor can we enable them after stepping until we've done a wait.
1735 Thus, we simply set the flag ecs->enable_hw_watchpoints_after_wait
1736 here, which will be serviced immediately after the target
1738 case TARGET_WAITKIND_SYSCALL_RETURN:
1739 target_resume (ecs->pid, 1, TARGET_SIGNAL_0);
1741 if (number_of_threads_in_syscalls > 0)
1743 number_of_threads_in_syscalls--;
1744 ecs->enable_hw_watchpoints_after_wait =
1745 (number_of_threads_in_syscalls == 0);
1747 prepare_to_wait (ecs);
1750 case TARGET_WAITKIND_STOPPED:
1751 stop_signal = ecs->ws.value.sig;
1754 /* We had an event in the inferior, but we are not interested
1755 in handling it at this level. The lower layers have already
1756 done what needs to be done, if anything. This case can
1757 occur only when the target is async or extended-async. One
1758 of the circumstamces for this to happen is when the
1759 inferior produces output for the console. The inferior has
1760 not stopped, and we are ignoring the event. */
1761 case TARGET_WAITKIND_IGNORE:
1762 ecs->wait_some_more = 1;
1766 /* We may want to consider not doing a resume here in order to give
1767 the user a chance to play with the new thread. It might be good
1768 to make that a user-settable option. */
1770 /* At this point, all threads are stopped (happens automatically in
1771 either the OS or the native code). Therefore we need to continue
1772 all threads in order to make progress. */
1773 if (ecs->new_thread_event)
1775 target_resume (-1, 0, TARGET_SIGNAL_0);
1776 prepare_to_wait (ecs);
1780 stop_pc = read_pc_pid (ecs->pid);
1782 /* See if a thread hit a thread-specific breakpoint that was meant for
1783 another thread. If so, then step that thread past the breakpoint,
1786 if (stop_signal == TARGET_SIGNAL_TRAP)
1788 if (SOFTWARE_SINGLE_STEP_P && singlestep_breakpoints_inserted_p)
1789 ecs->random_signal = 0;
1790 else if (breakpoints_inserted
1791 && breakpoint_here_p (stop_pc - DECR_PC_AFTER_BREAK))
1793 ecs->random_signal = 0;
1794 if (!breakpoint_thread_match (stop_pc - DECR_PC_AFTER_BREAK,
1799 /* Saw a breakpoint, but it was hit by the wrong thread.
1801 write_pc_pid (stop_pc - DECR_PC_AFTER_BREAK, ecs->pid);
1803 remove_status = remove_breakpoints ();
1804 /* Did we fail to remove breakpoints? If so, try
1805 to set the PC past the bp. (There's at least
1806 one situation in which we can fail to remove
1807 the bp's: On HP-UX's that use ttrace, we can't
1808 change the address space of a vforking child
1809 process until the child exits (well, okay, not
1810 then either :-) or execs. */
1811 if (remove_status != 0)
1813 write_pc_pid (stop_pc - DECR_PC_AFTER_BREAK + 4, ecs->pid);
1817 target_resume (ecs->pid, 1, TARGET_SIGNAL_0);
1818 /* FIXME: What if a signal arrives instead of the
1819 single-step happening? */
1821 ecs->waiton_pid = ecs->pid;
1822 ecs->wp = &(ecs->ws);
1823 ecs->infwait_state = infwait_thread_hop_state;
1824 prepare_to_wait (ecs);
1828 /* We need to restart all the threads now,
1829 * unles we're running in scheduler-locked mode.
1830 * FIXME: shouldn't we look at currently_stepping ()?
1832 if (scheduler_mode == schedlock_on)
1833 target_resume (ecs->pid, 0, TARGET_SIGNAL_0);
1835 target_resume (-1, 0, TARGET_SIGNAL_0);
1836 prepare_to_wait (ecs);
1841 /* This breakpoint matches--either it is the right
1842 thread or it's a generic breakpoint for all threads.
1843 Remember that we'll need to step just _this_ thread
1844 on any following user continuation! */
1845 thread_step_needed = 1;
1850 ecs->random_signal = 1;
1852 /* See if something interesting happened to the non-current thread. If
1853 so, then switch to that thread, and eventually give control back to
1856 Note that if there's any kind of pending follow (i.e., of a fork,
1857 vfork or exec), we don't want to do this now. Rather, we'll let
1858 the next resume handle it. */
1859 if ((ecs->pid != inferior_pid) &&
1860 (pending_follow.kind == TARGET_WAITKIND_SPURIOUS))
1864 /* If it's a random signal for a non-current thread, notify user
1865 if he's expressed an interest. */
1866 if (ecs->random_signal
1867 && signal_print[stop_signal])
1869 /* ??rehrauer: I don't understand the rationale for this code. If the
1870 inferior will stop as a result of this signal, then the act of handling
1871 the stop ought to print a message that's couches the stoppage in user
1872 terms, e.g., "Stopped for breakpoint/watchpoint". If the inferior
1873 won't stop as a result of the signal -- i.e., if the signal is merely
1874 a side-effect of something GDB's doing "under the covers" for the
1875 user, such as stepping threads over a breakpoint they shouldn't stop
1876 for -- then the message seems to be a serious annoyance at best.
1878 For now, remove the message altogether. */
1881 target_terminal_ours_for_output ();
1882 printf_filtered ("\nProgram received signal %s, %s.\n",
1883 target_signal_to_name (stop_signal),
1884 target_signal_to_string (stop_signal));
1885 gdb_flush (gdb_stdout);
1889 /* If it's not SIGTRAP and not a signal we want to stop for, then
1890 continue the thread. */
1892 if (stop_signal != TARGET_SIGNAL_TRAP
1893 && !signal_stop[stop_signal])
1896 target_terminal_inferior ();
1898 /* Clear the signal if it should not be passed. */
1899 if (signal_program[stop_signal] == 0)
1900 stop_signal = TARGET_SIGNAL_0;
1902 target_resume (ecs->pid, 0, stop_signal);
1903 prepare_to_wait (ecs);
1907 /* It's a SIGTRAP or a signal we're interested in. Switch threads,
1908 and fall into the rest of wait_for_inferior(). */
1910 /* Caution: it may happen that the new thread (or the old one!)
1911 is not in the thread list. In this case we must not attempt
1912 to "switch context", or we run the risk that our context may
1913 be lost. This may happen as a result of the target module
1914 mishandling thread creation. */
1916 if (in_thread_list (inferior_pid) && in_thread_list (ecs->pid))
1917 { /* Perform infrun state context switch: */
1918 /* Save infrun state for the old thread. */
1919 save_infrun_state (inferior_pid, prev_pc,
1920 prev_func_start, prev_func_name,
1921 trap_expected, step_resume_breakpoint,
1922 through_sigtramp_breakpoint,
1923 step_range_start, step_range_end,
1924 step_frame_address, ecs->handling_longjmp,
1926 ecs->stepping_through_solib_after_catch,
1927 ecs->stepping_through_solib_catchpoints,
1928 ecs->stepping_through_sigtramp);
1930 /* Load infrun state for the new thread. */
1931 load_infrun_state (ecs->pid, &prev_pc,
1932 &prev_func_start, &prev_func_name,
1933 &trap_expected, &step_resume_breakpoint,
1934 &through_sigtramp_breakpoint,
1935 &step_range_start, &step_range_end,
1936 &step_frame_address, &ecs->handling_longjmp,
1938 &ecs->stepping_through_solib_after_catch,
1939 &ecs->stepping_through_solib_catchpoints,
1940 &ecs->stepping_through_sigtramp);
1943 inferior_pid = ecs->pid;
1946 context_hook (pid_to_thread_id (ecs->pid));
1948 flush_cached_frames ();
1951 if (SOFTWARE_SINGLE_STEP_P && singlestep_breakpoints_inserted_p)
1953 /* Pull the single step breakpoints out of the target. */
1954 SOFTWARE_SINGLE_STEP (0, 0);
1955 singlestep_breakpoints_inserted_p = 0;
1958 /* If PC is pointing at a nullified instruction, then step beyond
1959 it so that the user won't be confused when GDB appears to be ready
1962 /* if (INSTRUCTION_NULLIFIED && currently_stepping (ecs)) */
1963 if (INSTRUCTION_NULLIFIED)
1965 registers_changed ();
1966 target_resume (ecs->pid, 1, TARGET_SIGNAL_0);
1968 /* We may have received a signal that we want to pass to
1969 the inferior; therefore, we must not clobber the waitstatus
1972 ecs->infwait_state = infwait_nullified_state;
1973 ecs->waiton_pid = ecs->pid;
1974 ecs->wp = &(ecs->tmpstatus);
1975 prepare_to_wait (ecs);
1979 /* It may not be necessary to disable the watchpoint to stop over
1980 it. For example, the PA can (with some kernel cooperation)
1981 single step over a watchpoint without disabling the watchpoint. */
1982 if (HAVE_STEPPABLE_WATCHPOINT && STOPPED_BY_WATCHPOINT (ecs->ws))
1985 prepare_to_wait (ecs);
1989 /* It is far more common to need to disable a watchpoint to step
1990 the inferior over it. FIXME. What else might a debug
1991 register or page protection watchpoint scheme need here? */
1992 if (HAVE_NONSTEPPABLE_WATCHPOINT && STOPPED_BY_WATCHPOINT (ecs->ws))
1994 /* At this point, we are stopped at an instruction which has
1995 attempted to write to a piece of memory under control of
1996 a watchpoint. The instruction hasn't actually executed
1997 yet. If we were to evaluate the watchpoint expression
1998 now, we would get the old value, and therefore no change
1999 would seem to have occurred.
2001 In order to make watchpoints work `right', we really need
2002 to complete the memory write, and then evaluate the
2003 watchpoint expression. The following code does that by
2004 removing the watchpoint (actually, all watchpoints and
2005 breakpoints), single-stepping the target, re-inserting
2006 watchpoints, and then falling through to let normal
2007 single-step processing handle proceed. Since this
2008 includes evaluating watchpoints, things will come to a
2009 stop in the correct manner. */
2011 write_pc (stop_pc - DECR_PC_AFTER_BREAK);
2013 remove_breakpoints ();
2014 registers_changed ();
2015 target_resume (ecs->pid, 1, TARGET_SIGNAL_0); /* Single step */
2017 ecs->waiton_pid = ecs->pid;
2018 ecs->wp = &(ecs->ws);
2019 ecs->infwait_state = infwait_nonstep_watch_state;
2020 prepare_to_wait (ecs);
2024 /* It may be possible to simply continue after a watchpoint. */
2025 if (HAVE_CONTINUABLE_WATCHPOINT)
2026 STOPPED_BY_WATCHPOINT (ecs->ws);
2028 ecs->stop_func_start = 0;
2029 ecs->stop_func_end = 0;
2030 ecs->stop_func_name = 0;
2031 /* Don't care about return value; stop_func_start and stop_func_name
2032 will both be 0 if it doesn't work. */
2033 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
2034 &ecs->stop_func_start, &ecs->stop_func_end);
2035 ecs->stop_func_start += FUNCTION_START_OFFSET;
2036 ecs->another_trap = 0;
2037 bpstat_clear (&stop_bpstat);
2039 stop_stack_dummy = 0;
2040 stop_print_frame = 1;
2041 ecs->random_signal = 0;
2042 stopped_by_random_signal = 0;
2043 breakpoints_failed = 0;
2045 /* Look at the cause of the stop, and decide what to do.
2046 The alternatives are:
2047 1) break; to really stop and return to the debugger,
2048 2) drop through to start up again
2049 (set ecs->another_trap to 1 to single step once)
2050 3) set ecs->random_signal to 1, and the decision between 1 and 2
2051 will be made according to the signal handling tables. */
2053 /* First, distinguish signals caused by the debugger from signals
2054 that have to do with the program's own actions.
2055 Note that breakpoint insns may cause SIGTRAP or SIGILL
2056 or SIGEMT, depending on the operating system version.
2057 Here we detect when a SIGILL or SIGEMT is really a breakpoint
2058 and change it to SIGTRAP. */
2060 if (stop_signal == TARGET_SIGNAL_TRAP
2061 || (breakpoints_inserted &&
2062 (stop_signal == TARGET_SIGNAL_ILL
2063 || stop_signal == TARGET_SIGNAL_EMT
2065 || stop_soon_quietly)
2067 if (stop_signal == TARGET_SIGNAL_TRAP && stop_after_trap)
2069 stop_print_frame = 0;
2070 stop_stepping (ecs);
2073 if (stop_soon_quietly)
2075 stop_stepping (ecs);
2079 /* Don't even think about breakpoints
2080 if just proceeded over a breakpoint.
2082 However, if we are trying to proceed over a breakpoint
2083 and end up in sigtramp, then through_sigtramp_breakpoint
2084 will be set and we should check whether we've hit the
2086 if (stop_signal == TARGET_SIGNAL_TRAP && trap_expected
2087 && through_sigtramp_breakpoint == NULL)
2088 bpstat_clear (&stop_bpstat);
2091 /* See if there is a breakpoint at the current PC. */
2092 stop_bpstat = bpstat_stop_status
2094 /* Pass TRUE if our reason for stopping is something other
2095 than hitting a breakpoint. We do this by checking that
2096 1) stepping is going on and 2) we didn't hit a breakpoint
2097 in a signal handler without an intervening stop in
2098 sigtramp, which is detected by a new stack pointer value
2099 below any usual function calling stack adjustments. */
2100 (currently_stepping (ecs)
2102 && INNER_THAN (read_sp (), (step_sp - 16))))
2104 /* Following in case break condition called a
2106 stop_print_frame = 1;
2109 if (stop_signal == TARGET_SIGNAL_TRAP)
2111 = !(bpstat_explains_signal (stop_bpstat)
2113 || (!CALL_DUMMY_BREAKPOINT_OFFSET_P
2114 && PC_IN_CALL_DUMMY (stop_pc, read_sp (),
2115 FRAME_FP (get_current_frame ())))
2116 || (step_range_end && step_resume_breakpoint == NULL));
2121 = !(bpstat_explains_signal (stop_bpstat)
2122 /* End of a stack dummy. Some systems (e.g. Sony
2123 news) give another signal besides SIGTRAP, so
2124 check here as well as above. */
2125 || (!CALL_DUMMY_BREAKPOINT_OFFSET_P
2126 && PC_IN_CALL_DUMMY (stop_pc, read_sp (),
2127 FRAME_FP (get_current_frame ())))
2129 if (!ecs->random_signal)
2130 stop_signal = TARGET_SIGNAL_TRAP;
2134 /* When we reach this point, we've pretty much decided
2135 that the reason for stopping must've been a random
2136 (unexpected) signal. */
2139 ecs->random_signal = 1;
2140 /* If a fork, vfork or exec event was seen, then there are two
2141 possible responses we can make:
2143 1. If a catchpoint triggers for the event (ecs->random_signal == 0),
2144 then we must stop now and issue a prompt. We will resume
2145 the inferior when the user tells us to.
2146 2. If no catchpoint triggers for the event (ecs->random_signal == 1),
2147 then we must resume the inferior now and keep checking.
2149 In either case, we must take appropriate steps to "follow" the
2150 the fork/vfork/exec when the inferior is resumed. For example,
2151 if follow-fork-mode is "child", then we must detach from the
2152 parent inferior and follow the new child inferior.
2154 In either case, setting pending_follow causes the next resume()
2155 to take the appropriate following action. */
2156 process_event_stop_test:
2157 if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
2159 if (ecs->random_signal) /* I.e., no catchpoint triggered for this. */
2162 stop_signal = TARGET_SIGNAL_0;
2167 else if (ecs->ws.kind == TARGET_WAITKIND_VFORKED)
2169 if (ecs->random_signal) /* I.e., no catchpoint triggered for this. */
2171 stop_signal = TARGET_SIGNAL_0;
2176 else if (ecs->ws.kind == TARGET_WAITKIND_EXECD)
2178 pending_follow.kind = ecs->ws.kind;
2179 if (ecs->random_signal) /* I.e., no catchpoint triggered for this. */
2182 stop_signal = TARGET_SIGNAL_0;
2188 /* For the program's own signals, act according to
2189 the signal handling tables. */
2191 if (ecs->random_signal)
2193 /* Signal not for debugging purposes. */
2196 stopped_by_random_signal = 1;
2198 if (signal_print[stop_signal])
2201 target_terminal_ours_for_output ();
2202 print_stop_reason (SIGNAL_RECEIVED, stop_signal);
2204 if (signal_stop[stop_signal])
2206 stop_stepping (ecs);
2209 /* If not going to stop, give terminal back
2210 if we took it away. */
2212 target_terminal_inferior ();
2214 /* Clear the signal if it should not be passed. */
2215 if (signal_program[stop_signal] == 0)
2216 stop_signal = TARGET_SIGNAL_0;
2218 /* I'm not sure whether this needs to be check_sigtramp2 or
2219 whether it could/should be keep_going.
2221 This used to jump to step_over_function if we are stepping,
2224 Suppose the user does a `next' over a function call, and while
2225 that call is in progress, the inferior receives a signal for
2226 which GDB does not stop (i.e., signal_stop[SIG] is false). In
2227 that case, when we reach this point, there is already a
2228 step-resume breakpoint established, right where it should be:
2229 immediately after the function call the user is "next"-ing
2230 over. If we call step_over_function now, two bad things
2233 - we'll create a new breakpoint, at wherever the current
2234 frame's return address happens to be. That could be
2235 anywhere, depending on what function call happens to be on
2236 the top of the stack at that point. Point is, it's probably
2237 not where we need it.
2239 - the existing step-resume breakpoint (which is at the correct
2240 address) will get orphaned: step_resume_breakpoint will point
2241 to the new breakpoint, and the old step-resume breakpoint
2242 will never be cleaned up.
2244 The old behavior was meant to help HP-UX single-step out of
2245 sigtramps. It would place the new breakpoint at prev_pc, which
2246 was certainly wrong. I don't know the details there, so fixing
2247 this probably breaks that. As with anything else, it's up to
2248 the HP-UX maintainer to furnish a fix that doesn't break other
2249 platforms. --JimB, 20 May 1999 */
2250 check_sigtramp2 (ecs);
2253 /* Handle cases caused by hitting a breakpoint. */
2255 CORE_ADDR jmp_buf_pc;
2256 struct bpstat_what what;
2258 what = bpstat_what (stop_bpstat);
2260 if (what.call_dummy)
2262 stop_stack_dummy = 1;
2264 trap_expected_after_continue = 1;
2268 switch (what.main_action)
2270 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
2271 /* If we hit the breakpoint at longjmp, disable it for the
2272 duration of this command. Then, install a temporary
2273 breakpoint at the target of the jmp_buf. */
2274 disable_longjmp_breakpoint ();
2275 remove_breakpoints ();
2276 breakpoints_inserted = 0;
2277 if (!GET_LONGJMP_TARGET (&jmp_buf_pc))
2283 /* Need to blow away step-resume breakpoint, as it
2284 interferes with us */
2285 if (step_resume_breakpoint != NULL)
2287 delete_breakpoint (step_resume_breakpoint);
2288 step_resume_breakpoint = NULL;
2290 /* Not sure whether we need to blow this away too, but probably
2291 it is like the step-resume breakpoint. */
2292 if (through_sigtramp_breakpoint != NULL)
2294 delete_breakpoint (through_sigtramp_breakpoint);
2295 through_sigtramp_breakpoint = NULL;
2299 /* FIXME - Need to implement nested temporary breakpoints */
2300 if (step_over_calls > 0)
2301 set_longjmp_resume_breakpoint (jmp_buf_pc,
2302 get_current_frame ());
2305 set_longjmp_resume_breakpoint (jmp_buf_pc, NULL);
2306 ecs->handling_longjmp = 1; /* FIXME */
2310 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
2311 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE:
2312 remove_breakpoints ();
2313 breakpoints_inserted = 0;
2315 /* FIXME - Need to implement nested temporary breakpoints */
2317 && (INNER_THAN (FRAME_FP (get_current_frame ()),
2318 step_frame_address)))
2320 ecs->another_trap = 1;
2325 disable_longjmp_breakpoint ();
2326 ecs->handling_longjmp = 0; /* FIXME */
2327 if (what.main_action == BPSTAT_WHAT_CLEAR_LONGJMP_RESUME)
2329 /* else fallthrough */
2331 case BPSTAT_WHAT_SINGLE:
2332 if (breakpoints_inserted)
2334 thread_step_needed = 1;
2335 remove_breakpoints ();
2337 breakpoints_inserted = 0;
2338 ecs->another_trap = 1;
2339 /* Still need to check other stuff, at least the case
2340 where we are stepping and step out of the right range. */
2343 case BPSTAT_WHAT_STOP_NOISY:
2344 stop_print_frame = 1;
2346 /* We are about to nuke the step_resume_breakpoint and
2347 through_sigtramp_breakpoint via the cleanup chain, so
2348 no need to worry about it here. */
2350 stop_stepping (ecs);
2353 case BPSTAT_WHAT_STOP_SILENT:
2354 stop_print_frame = 0;
2356 /* We are about to nuke the step_resume_breakpoint and
2357 through_sigtramp_breakpoint via the cleanup chain, so
2358 no need to worry about it here. */
2360 stop_stepping (ecs);
2363 case BPSTAT_WHAT_STEP_RESUME:
2364 /* This proably demands a more elegant solution, but, yeah
2367 This function's use of the simple variable
2368 step_resume_breakpoint doesn't seem to accomodate
2369 simultaneously active step-resume bp's, although the
2370 breakpoint list certainly can.
2372 If we reach here and step_resume_breakpoint is already
2373 NULL, then apparently we have multiple active
2374 step-resume bp's. We'll just delete the breakpoint we
2375 stopped at, and carry on.
2377 Correction: what the code currently does is delete a
2378 step-resume bp, but it makes no effort to ensure that
2379 the one deleted is the one currently stopped at. MVS */
2381 if (step_resume_breakpoint == NULL)
2383 step_resume_breakpoint =
2384 bpstat_find_step_resume_breakpoint (stop_bpstat);
2386 delete_breakpoint (step_resume_breakpoint);
2387 step_resume_breakpoint = NULL;
2390 case BPSTAT_WHAT_THROUGH_SIGTRAMP:
2391 if (through_sigtramp_breakpoint)
2392 delete_breakpoint (through_sigtramp_breakpoint);
2393 through_sigtramp_breakpoint = NULL;
2395 /* If were waiting for a trap, hitting the step_resume_break
2396 doesn't count as getting it. */
2398 ecs->another_trap = 1;
2401 case BPSTAT_WHAT_CHECK_SHLIBS:
2402 case BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK:
2405 /* Remove breakpoints, we eventually want to step over the
2406 shlib event breakpoint, and SOLIB_ADD might adjust
2407 breakpoint addresses via breakpoint_re_set. */
2408 if (breakpoints_inserted)
2409 remove_breakpoints ();
2410 breakpoints_inserted = 0;
2412 /* Check for any newly added shared libraries if we're
2413 supposed to be adding them automatically. */
2416 /* Switch terminal for any messages produced by
2417 breakpoint_re_set. */
2418 target_terminal_ours_for_output ();
2419 SOLIB_ADD (NULL, 0, NULL);
2420 target_terminal_inferior ();
2423 /* Try to reenable shared library breakpoints, additional
2424 code segments in shared libraries might be mapped in now. */
2425 re_enable_breakpoints_in_shlibs ();
2427 /* If requested, stop when the dynamic linker notifies
2428 gdb of events. This allows the user to get control
2429 and place breakpoints in initializer routines for
2430 dynamically loaded objects (among other things). */
2431 if (stop_on_solib_events)
2433 stop_stepping (ecs);
2437 /* If we stopped due to an explicit catchpoint, then the
2438 (see above) call to SOLIB_ADD pulled in any symbols
2439 from a newly-loaded library, if appropriate.
2441 We do want the inferior to stop, but not where it is
2442 now, which is in the dynamic linker callback. Rather,
2443 we would like it stop in the user's program, just after
2444 the call that caused this catchpoint to trigger. That
2445 gives the user a more useful vantage from which to
2446 examine their program's state. */
2447 else if (what.main_action == BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK)
2449 /* ??rehrauer: If I could figure out how to get the
2450 right return PC from here, we could just set a temp
2451 breakpoint and resume. I'm not sure we can without
2452 cracking open the dld's shared libraries and sniffing
2453 their unwind tables and text/data ranges, and that's
2454 not a terribly portable notion.
2456 Until that time, we must step the inferior out of the
2457 dld callback, and also out of the dld itself (and any
2458 code or stubs in libdld.sl, such as "shl_load" and
2459 friends) until we reach non-dld code. At that point,
2460 we can stop stepping. */
2461 bpstat_get_triggered_catchpoints (stop_bpstat,
2462 &ecs->stepping_through_solib_catchpoints);
2463 ecs->stepping_through_solib_after_catch = 1;
2465 /* Be sure to lift all breakpoints, so the inferior does
2466 actually step past this point... */
2467 ecs->another_trap = 1;
2472 /* We want to step over this breakpoint, then keep going. */
2473 ecs->another_trap = 1;
2480 case BPSTAT_WHAT_LAST:
2481 /* Not a real code, but listed here to shut up gcc -Wall. */
2483 case BPSTAT_WHAT_KEEP_CHECKING:
2488 /* We come here if we hit a breakpoint but should not
2489 stop for it. Possibly we also were stepping
2490 and should stop for that. So fall through and
2491 test for stepping. But, if not stepping,
2494 /* Are we stepping to get the inferior out of the dynamic
2495 linker's hook (and possibly the dld itself) after catching
2497 if (ecs->stepping_through_solib_after_catch)
2499 #if defined(SOLIB_ADD)
2500 /* Have we reached our destination? If not, keep going. */
2501 if (SOLIB_IN_DYNAMIC_LINKER (ecs->pid, stop_pc))
2503 ecs->another_trap = 1;
2508 /* Else, stop and report the catchpoint(s) whose triggering
2509 caused us to begin stepping. */
2510 ecs->stepping_through_solib_after_catch = 0;
2511 bpstat_clear (&stop_bpstat);
2512 stop_bpstat = bpstat_copy (ecs->stepping_through_solib_catchpoints);
2513 bpstat_clear (&ecs->stepping_through_solib_catchpoints);
2514 stop_print_frame = 1;
2515 stop_stepping (ecs);
2519 if (!CALL_DUMMY_BREAKPOINT_OFFSET_P)
2521 /* This is the old way of detecting the end of the stack dummy.
2522 An architecture which defines CALL_DUMMY_BREAKPOINT_OFFSET gets
2523 handled above. As soon as we can test it on all of them, all
2524 architectures should define it. */
2526 /* If this is the breakpoint at the end of a stack dummy,
2527 just stop silently, unless the user was doing an si/ni, in which
2528 case she'd better know what she's doing. */
2530 if (CALL_DUMMY_HAS_COMPLETED (stop_pc, read_sp (),
2531 FRAME_FP (get_current_frame ()))
2534 stop_print_frame = 0;
2535 stop_stack_dummy = 1;
2537 trap_expected_after_continue = 1;
2539 stop_stepping (ecs);
2544 if (step_resume_breakpoint)
2546 /* Having a step-resume breakpoint overrides anything
2547 else having to do with stepping commands until
2548 that breakpoint is reached. */
2549 /* I'm not sure whether this needs to be check_sigtramp2 or
2550 whether it could/should be keep_going. */
2551 check_sigtramp2 (ecs);
2556 if (step_range_end == 0)
2558 /* Likewise if we aren't even stepping. */
2559 /* I'm not sure whether this needs to be check_sigtramp2 or
2560 whether it could/should be keep_going. */
2561 check_sigtramp2 (ecs);
2566 /* If stepping through a line, keep going if still within it.
2568 Note that step_range_end is the address of the first instruction
2569 beyond the step range, and NOT the address of the last instruction
2571 if (stop_pc >= step_range_start
2572 && stop_pc < step_range_end)
2574 /* We might be doing a BPSTAT_WHAT_SINGLE and getting a signal.
2575 So definately need to check for sigtramp here. */
2576 check_sigtramp2 (ecs);
2581 /* We stepped out of the stepping range. */
2583 /* If we are stepping at the source level and entered the runtime
2584 loader dynamic symbol resolution code, we keep on single stepping
2585 until we exit the run time loader code and reach the callee's
2587 if (step_over_calls < 0 && IN_SOLIB_DYNSYM_RESOLVE_CODE (stop_pc))
2589 CORE_ADDR pc_after_resolver = SKIP_SOLIB_RESOLVER (stop_pc);
2591 if (pc_after_resolver)
2593 /* Set up a step-resume breakpoint at the address
2594 indicated by SKIP_SOLIB_RESOLVER. */
2595 struct symtab_and_line sr_sal;
2597 sr_sal.pc = pc_after_resolver;
2599 check_for_old_step_resume_breakpoint ();
2600 step_resume_breakpoint =
2601 set_momentary_breakpoint (sr_sal, NULL, bp_step_resume);
2602 if (breakpoints_inserted)
2603 insert_breakpoints ();
2610 /* We can't update step_sp every time through the loop, because
2611 reading the stack pointer would slow down stepping too much.
2612 But we can update it every time we leave the step range. */
2613 ecs->update_step_sp = 1;
2615 /* Did we just take a signal? */
2616 if (IN_SIGTRAMP (stop_pc, ecs->stop_func_name)
2617 && !IN_SIGTRAMP (prev_pc, prev_func_name)
2618 && INNER_THAN (read_sp (), step_sp))
2620 /* We've just taken a signal; go until we are back to
2621 the point where we took it and one more. */
2623 /* Note: The test above succeeds not only when we stepped
2624 into a signal handler, but also when we step past the last
2625 statement of a signal handler and end up in the return stub
2626 of the signal handler trampoline. To distinguish between
2627 these two cases, check that the frame is INNER_THAN the
2628 previous one below. pai/1997-09-11 */
2632 CORE_ADDR current_frame = FRAME_FP (get_current_frame ());
2634 if (INNER_THAN (current_frame, step_frame_address))
2636 /* We have just taken a signal; go until we are back to
2637 the point where we took it and one more. */
2639 /* This code is needed at least in the following case:
2640 The user types "next" and then a signal arrives (before
2641 the "next" is done). */
2643 /* Note that if we are stopped at a breakpoint, then we need
2644 the step_resume breakpoint to override any breakpoints at
2645 the same location, so that we will still step over the
2646 breakpoint even though the signal happened. */
2647 struct symtab_and_line sr_sal;
2650 sr_sal.symtab = NULL;
2652 sr_sal.pc = prev_pc;
2653 /* We could probably be setting the frame to
2654 step_frame_address; I don't think anyone thought to
2656 check_for_old_step_resume_breakpoint ();
2657 step_resume_breakpoint =
2658 set_momentary_breakpoint (sr_sal, NULL, bp_step_resume);
2659 if (breakpoints_inserted)
2660 insert_breakpoints ();
2664 /* We just stepped out of a signal handler and into
2665 its calling trampoline.
2667 Normally, we'd call step_over_function from
2668 here, but for some reason GDB can't unwind the
2669 stack correctly to find the real PC for the point
2670 user code where the signal trampoline will return
2671 -- FRAME_SAVED_PC fails, at least on HP-UX 10.20.
2672 But signal trampolines are pretty small stubs of
2673 code, anyway, so it's OK instead to just
2674 single-step out. Note: assuming such trampolines
2675 don't exhibit recursion on any platform... */
2676 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
2677 &ecs->stop_func_start,
2678 &ecs->stop_func_end);
2679 /* Readjust stepping range */
2680 step_range_start = ecs->stop_func_start;
2681 step_range_end = ecs->stop_func_end;
2682 ecs->stepping_through_sigtramp = 1;
2687 /* If this is stepi or nexti, make sure that the stepping range
2688 gets us past that instruction. */
2689 if (step_range_end == 1)
2690 /* FIXME: Does this run afoul of the code below which, if
2691 we step into the middle of a line, resets the stepping
2693 step_range_end = (step_range_start = prev_pc) + 1;
2695 ecs->remove_breakpoints_on_following_step = 1;
2700 if (stop_pc == ecs->stop_func_start /* Quick test */
2701 || (in_prologue (stop_pc, ecs->stop_func_start) &&
2702 !IN_SOLIB_RETURN_TRAMPOLINE (stop_pc, ecs->stop_func_name))
2703 || IN_SOLIB_CALL_TRAMPOLINE (stop_pc, ecs->stop_func_name)
2704 || ecs->stop_func_name == 0)
2706 /* It's a subroutine call. */
2708 if (step_over_calls == 0)
2710 /* I presume that step_over_calls is only 0 when we're
2711 supposed to be stepping at the assembly language level
2712 ("stepi"). Just stop. */
2714 print_stop_reason (END_STEPPING_RANGE, 0);
2715 stop_stepping (ecs);
2719 if (step_over_calls > 0 || IGNORE_HELPER_CALL (stop_pc))
2721 /* We're doing a "next". */
2722 step_over_function (ecs);
2727 /* If we are in a function call trampoline (a stub between
2728 the calling routine and the real function), locate the real
2729 function. That's what tells us (a) whether we want to step
2730 into it at all, and (b) what prologue we want to run to
2731 the end of, if we do step into it. */
2732 tmp = SKIP_TRAMPOLINE_CODE (stop_pc);
2734 ecs->stop_func_start = tmp;
2737 tmp = DYNAMIC_TRAMPOLINE_NEXTPC (stop_pc);
2740 struct symtab_and_line xxx;
2741 /* Why isn't this s_a_l called "sr_sal", like all of the
2742 other s_a_l's where this code is duplicated? */
2743 INIT_SAL (&xxx); /* initialize to zeroes */
2745 xxx.section = find_pc_overlay (xxx.pc);
2746 check_for_old_step_resume_breakpoint ();
2747 step_resume_breakpoint =
2748 set_momentary_breakpoint (xxx, NULL, bp_step_resume);
2749 insert_breakpoints ();
2755 /* If we have line number information for the function we
2756 are thinking of stepping into, step into it.
2758 If there are several symtabs at that PC (e.g. with include
2759 files), just want to know whether *any* of them have line
2760 numbers. find_pc_line handles this. */
2762 struct symtab_and_line tmp_sal;
2764 tmp_sal = find_pc_line (ecs->stop_func_start, 0);
2765 if (tmp_sal.line != 0)
2767 step_into_function (ecs);
2771 step_over_function (ecs);
2777 /* We've wandered out of the step range. */
2779 ecs->sal = find_pc_line (stop_pc, 0);
2781 if (step_range_end == 1)
2783 /* It is stepi or nexti. We always want to stop stepping after
2786 print_stop_reason (END_STEPPING_RANGE, 0);
2787 stop_stepping (ecs);
2791 /* If we're in the return path from a shared library trampoline,
2792 we want to proceed through the trampoline when stepping. */
2793 if (IN_SOLIB_RETURN_TRAMPOLINE (stop_pc, ecs->stop_func_name))
2797 /* Determine where this trampoline returns. */
2798 tmp = SKIP_TRAMPOLINE_CODE (stop_pc);
2800 /* Only proceed through if we know where it's going. */
2803 /* And put the step-breakpoint there and go until there. */
2804 struct symtab_and_line sr_sal;
2806 INIT_SAL (&sr_sal); /* initialize to zeroes */
2808 sr_sal.section = find_pc_overlay (sr_sal.pc);
2809 /* Do not specify what the fp should be when we stop
2810 since on some machines the prologue
2811 is where the new fp value is established. */
2812 check_for_old_step_resume_breakpoint ();
2813 step_resume_breakpoint =
2814 set_momentary_breakpoint (sr_sal, NULL, bp_step_resume);
2815 if (breakpoints_inserted)
2816 insert_breakpoints ();
2818 /* Restart without fiddling with the step ranges or
2825 if (ecs->sal.line == 0)
2827 /* We have no line number information. That means to stop
2828 stepping (does this always happen right after one instruction,
2829 when we do "s" in a function with no line numbers,
2830 or can this happen as a result of a return or longjmp?). */
2832 print_stop_reason (END_STEPPING_RANGE, 0);
2833 stop_stepping (ecs);
2837 if ((stop_pc == ecs->sal.pc)
2838 && (ecs->current_line != ecs->sal.line || ecs->current_symtab != ecs->sal.symtab))
2840 /* We are at the start of a different line. So stop. Note that
2841 we don't stop if we step into the middle of a different line.
2842 That is said to make things like for (;;) statements work
2845 print_stop_reason (END_STEPPING_RANGE, 0);
2846 stop_stepping (ecs);
2850 /* We aren't done stepping.
2852 Optimize by setting the stepping range to the line.
2853 (We might not be in the original line, but if we entered a
2854 new line in mid-statement, we continue stepping. This makes
2855 things like for(;;) statements work better.) */
2857 if (ecs->stop_func_end && ecs->sal.end >= ecs->stop_func_end)
2859 /* If this is the last line of the function, don't keep stepping
2860 (it would probably step us out of the function).
2861 This is particularly necessary for a one-line function,
2862 in which after skipping the prologue we better stop even though
2863 we will be in mid-line. */
2865 print_stop_reason (END_STEPPING_RANGE, 0);
2866 stop_stepping (ecs);
2869 step_range_start = ecs->sal.pc;
2870 step_range_end = ecs->sal.end;
2871 step_frame_address = FRAME_FP (get_current_frame ());
2872 ecs->current_line = ecs->sal.line;
2873 ecs->current_symtab = ecs->sal.symtab;
2875 /* In the case where we just stepped out of a function into the middle
2876 of a line of the caller, continue stepping, but step_frame_address
2877 must be modified to current frame */
2879 CORE_ADDR current_frame = FRAME_FP (get_current_frame ());
2880 if (!(INNER_THAN (current_frame, step_frame_address)))
2881 step_frame_address = current_frame;
2886 } /* extra brace, to preserve old indentation */
2889 /* Are we in the middle of stepping? */
2892 currently_stepping (struct execution_control_state *ecs)
2894 return ((through_sigtramp_breakpoint == NULL
2895 && !ecs->handling_longjmp
2896 && ((step_range_end && step_resume_breakpoint == NULL)
2898 || ecs->stepping_through_solib_after_catch
2899 || bpstat_should_step ());
2903 check_sigtramp2 (struct execution_control_state *ecs)
2906 && IN_SIGTRAMP (stop_pc, ecs->stop_func_name)
2907 && !IN_SIGTRAMP (prev_pc, prev_func_name)
2908 && INNER_THAN (read_sp (), step_sp))
2910 /* What has happened here is that we have just stepped the
2911 inferior with a signal (because it is a signal which
2912 shouldn't make us stop), thus stepping into sigtramp.
2914 So we need to set a step_resume_break_address breakpoint and
2915 continue until we hit it, and then step. FIXME: This should
2916 be more enduring than a step_resume breakpoint; we should
2917 know that we will later need to keep going rather than
2918 re-hitting the breakpoint here (see the testsuite,
2919 gdb.base/signals.exp where it says "exceedingly difficult"). */
2921 struct symtab_and_line sr_sal;
2923 INIT_SAL (&sr_sal); /* initialize to zeroes */
2924 sr_sal.pc = prev_pc;
2925 sr_sal.section = find_pc_overlay (sr_sal.pc);
2926 /* We perhaps could set the frame if we kept track of what the
2927 frame corresponding to prev_pc was. But we don't, so don't. */
2928 through_sigtramp_breakpoint =
2929 set_momentary_breakpoint (sr_sal, NULL, bp_through_sigtramp);
2930 if (breakpoints_inserted)
2931 insert_breakpoints ();
2933 ecs->remove_breakpoints_on_following_step = 1;
2934 ecs->another_trap = 1;
2938 /* Subroutine call with source code we should not step over. Do step
2939 to the first line of code in it. */
2942 step_into_function (struct execution_control_state *ecs)
2945 struct symtab_and_line sr_sal;
2947 s = find_pc_symtab (stop_pc);
2948 if (s && s->language != language_asm)
2949 ecs->stop_func_start = SKIP_PROLOGUE (ecs->stop_func_start);
2951 ecs->sal = find_pc_line (ecs->stop_func_start, 0);
2952 /* Use the step_resume_break to step until the end of the prologue,
2953 even if that involves jumps (as it seems to on the vax under
2955 /* If the prologue ends in the middle of a source line, continue to
2956 the end of that source line (if it is still within the function).
2957 Otherwise, just go to end of prologue. */
2958 #ifdef PROLOGUE_FIRSTLINE_OVERLAP
2959 /* no, don't either. It skips any code that's legitimately on the
2963 && ecs->sal.pc != ecs->stop_func_start
2964 && ecs->sal.end < ecs->stop_func_end)
2965 ecs->stop_func_start = ecs->sal.end;
2968 if (ecs->stop_func_start == stop_pc)
2970 /* We are already there: stop now. */
2972 print_stop_reason (END_STEPPING_RANGE, 0);
2973 stop_stepping (ecs);
2978 /* Put the step-breakpoint there and go until there. */
2979 INIT_SAL (&sr_sal); /* initialize to zeroes */
2980 sr_sal.pc = ecs->stop_func_start;
2981 sr_sal.section = find_pc_overlay (ecs->stop_func_start);
2982 /* Do not specify what the fp should be when we stop since on
2983 some machines the prologue is where the new fp value is
2985 check_for_old_step_resume_breakpoint ();
2986 step_resume_breakpoint =
2987 set_momentary_breakpoint (sr_sal, NULL, bp_step_resume);
2988 if (breakpoints_inserted)
2989 insert_breakpoints ();
2991 /* And make sure stepping stops right away then. */
2992 step_range_end = step_range_start;
2997 /* We've just entered a callee, and we wish to resume until it returns
2998 to the caller. Setting a step_resume breakpoint on the return
2999 address will catch a return from the callee.
3001 However, if the callee is recursing, we want to be careful not to
3002 catch returns of those recursive calls, but only of THIS instance
3005 To do this, we set the step_resume bp's frame to our current
3006 caller's frame (step_frame_address, which is set by the "next" or
3007 "until" command, before execution begins). */
3010 step_over_function (struct execution_control_state *ecs)
3012 struct symtab_and_line sr_sal;
3014 INIT_SAL (&sr_sal); /* initialize to zeros */
3015 sr_sal.pc = ADDR_BITS_REMOVE (SAVED_PC_AFTER_CALL (get_current_frame ()));
3016 sr_sal.section = find_pc_overlay (sr_sal.pc);
3018 check_for_old_step_resume_breakpoint ();
3019 step_resume_breakpoint =
3020 set_momentary_breakpoint (sr_sal, get_current_frame (), bp_step_resume);
3022 if (!IN_SOLIB_DYNSYM_RESOLVE_CODE (sr_sal.pc))
3023 step_resume_breakpoint->frame = step_frame_address;
3025 if (breakpoints_inserted)
3026 insert_breakpoints ();
3030 stop_stepping (struct execution_control_state *ecs)
3032 if (target_has_execution)
3034 /* Are we stopping for a vfork event? We only stop when we see
3035 the child's event. However, we may not yet have seen the
3036 parent's event. And, inferior_pid is still set to the
3037 parent's pid, until we resume again and follow either the
3040 To ensure that we can really touch inferior_pid (aka, the
3041 parent process) -- which calls to functions like read_pc
3042 implicitly do -- wait on the parent if necessary. */
3043 if ((pending_follow.kind == TARGET_WAITKIND_VFORKED)
3044 && !pending_follow.fork_event.saw_parent_fork)
3050 if (target_wait_hook)
3051 parent_pid = target_wait_hook (-1, &(ecs->ws));
3053 parent_pid = target_wait (-1, &(ecs->ws));
3055 while (parent_pid != inferior_pid);
3058 /* Assuming the inferior still exists, set these up for next
3059 time, just like we did above if we didn't break out of the
3061 prev_pc = read_pc ();
3062 prev_func_start = ecs->stop_func_start;
3063 prev_func_name = ecs->stop_func_name;
3066 /* Let callers know we don't want to wait for the inferior anymore. */
3067 ecs->wait_some_more = 0;
3070 /* This function handles various cases where we need to continue
3071 waiting for the inferior. */
3072 /* (Used to be the keep_going: label in the old wait_for_inferior) */
3075 keep_going (struct execution_control_state *ecs)
3077 /* ??rehrauer: ttrace on HP-UX theoretically allows one to debug a
3078 vforked child between its creation and subsequent exit or call to
3079 exec(). However, I had big problems in this rather creaky exec
3080 engine, getting that to work. The fundamental problem is that
3081 I'm trying to debug two processes via an engine that only
3082 understands a single process with possibly multiple threads.
3084 Hence, this spot is known to have problems when
3085 target_can_follow_vfork_prior_to_exec returns 1. */
3087 /* Save the pc before execution, to compare with pc after stop. */
3088 prev_pc = read_pc (); /* Might have been DECR_AFTER_BREAK */
3089 prev_func_start = ecs->stop_func_start; /* Ok, since if DECR_PC_AFTER
3090 BREAK is defined, the
3091 original pc would not have
3092 been at the start of a
3094 prev_func_name = ecs->stop_func_name;
3096 if (ecs->update_step_sp)
3097 step_sp = read_sp ();
3098 ecs->update_step_sp = 0;
3100 /* If we did not do break;, it means we should keep running the
3101 inferior and not return to debugger. */
3103 if (trap_expected && stop_signal != TARGET_SIGNAL_TRAP)
3105 /* We took a signal (which we are supposed to pass through to
3106 the inferior, else we'd have done a break above) and we
3107 haven't yet gotten our trap. Simply continue. */
3108 resume (currently_stepping (ecs), stop_signal);
3112 /* Either the trap was not expected, but we are continuing
3113 anyway (the user asked that this signal be passed to the
3116 The signal was SIGTRAP, e.g. it was our signal, but we
3117 decided we should resume from it.
3119 We're going to run this baby now!
3121 Insert breakpoints now, unless we are trying to one-proceed
3122 past a breakpoint. */
3123 /* If we've just finished a special step resume and we don't
3124 want to hit a breakpoint, pull em out. */
3125 if (step_resume_breakpoint == NULL
3126 && through_sigtramp_breakpoint == NULL
3127 && ecs->remove_breakpoints_on_following_step)
3129 ecs->remove_breakpoints_on_following_step = 0;
3130 remove_breakpoints ();
3131 breakpoints_inserted = 0;
3133 else if (!breakpoints_inserted &&
3134 (through_sigtramp_breakpoint != NULL || !ecs->another_trap))
3136 breakpoints_failed = insert_breakpoints ();
3137 if (breakpoints_failed)
3139 stop_stepping (ecs);
3142 breakpoints_inserted = 1;
3145 trap_expected = ecs->another_trap;
3147 /* Do not deliver SIGNAL_TRAP (except when the user explicitly
3148 specifies that such a signal should be delivered to the
3151 Typically, this would occure when a user is debugging a
3152 target monitor on a simulator: the target monitor sets a
3153 breakpoint; the simulator encounters this break-point and
3154 halts the simulation handing control to GDB; GDB, noteing
3155 that the break-point isn't valid, returns control back to the
3156 simulator; the simulator then delivers the hardware
3157 equivalent of a SIGNAL_TRAP to the program being debugged. */
3159 if (stop_signal == TARGET_SIGNAL_TRAP
3160 && !signal_program[stop_signal])
3161 stop_signal = TARGET_SIGNAL_0;
3163 #ifdef SHIFT_INST_REGS
3164 /* I'm not sure when this following segment applies. I do know,
3165 now, that we shouldn't rewrite the regs when we were stopped
3166 by a random signal from the inferior process. */
3167 /* FIXME: Shouldn't this be based on the valid bit of the SXIP?
3168 (this is only used on the 88k). */
3170 if (!bpstat_explains_signal (stop_bpstat)
3171 && (stop_signal != TARGET_SIGNAL_CHLD)
3172 && !stopped_by_random_signal)
3174 #endif /* SHIFT_INST_REGS */
3176 resume (currently_stepping (ecs), stop_signal);
3179 prepare_to_wait (ecs);
3182 /* This function normally comes after a resume, before
3183 handle_inferior_event exits. It takes care of any last bits of
3184 housekeeping, and sets the all-important wait_some_more flag. */
3187 prepare_to_wait (struct execution_control_state *ecs)
3189 if (ecs->infwait_state == infwait_normal_state)
3191 overlay_cache_invalid = 1;
3193 /* We have to invalidate the registers BEFORE calling
3194 target_wait because they can be loaded from the target while
3195 in target_wait. This makes remote debugging a bit more
3196 efficient for those targets that provide critical registers
3197 as part of their normal status mechanism. */
3199 registers_changed ();
3200 ecs->waiton_pid = -1;
3201 ecs->wp = &(ecs->ws);
3203 /* This is the old end of the while loop. Let everybody know we
3204 want to wait for the inferior some more and get called again
3206 ecs->wait_some_more = 1;
3209 /* Print why the inferior has stopped. We always print something when
3210 the inferior exits, or receives a signal. The rest of the cases are
3211 dealt with later on in normal_stop() and print_it_typical(). Ideally
3212 there should be a call to this function from handle_inferior_event()
3213 each time stop_stepping() is called.*/
3215 print_stop_reason (enum inferior_stop_reason stop_reason, int stop_info)
3217 switch (stop_reason)
3220 /* We don't deal with these cases from handle_inferior_event()
3223 case END_STEPPING_RANGE:
3224 /* We are done with a step/next/si/ni command. */
3225 /* For now print nothing. */
3227 /* Print a message only if not in the middle of doing a "step n"
3228 operation for n > 1 */
3229 if (!step_multi || !stop_step)
3230 if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3231 ui_out_field_string (uiout, "reason", "end-stepping-range");
3234 case BREAKPOINT_HIT:
3235 /* We found a breakpoint. */
3236 /* For now print nothing. */
3239 /* The inferior was terminated by a signal. */
3241 annotate_signalled ();
3242 if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3243 ui_out_field_string (uiout, "reason", "exited-signalled");
3244 ui_out_text (uiout, "\nProgram terminated with signal ");
3245 annotate_signal_name ();
3246 ui_out_field_string (uiout, "signal-name", target_signal_to_name (stop_info));
3247 annotate_signal_name_end ();
3248 ui_out_text (uiout, ", ");
3249 annotate_signal_string ();
3250 ui_out_field_string (uiout, "signal-meaning", target_signal_to_string (stop_info));
3251 annotate_signal_string_end ();
3252 ui_out_text (uiout, ".\n");
3253 ui_out_text (uiout, "The program no longer exists.\n");
3255 annotate_signalled ();
3256 printf_filtered ("\nProgram terminated with signal ");
3257 annotate_signal_name ();
3258 printf_filtered ("%s", target_signal_to_name (stop_info));
3259 annotate_signal_name_end ();
3260 printf_filtered (", ");
3261 annotate_signal_string ();
3262 printf_filtered ("%s", target_signal_to_string (stop_info));
3263 annotate_signal_string_end ();
3264 printf_filtered (".\n");
3266 printf_filtered ("The program no longer exists.\n");
3267 gdb_flush (gdb_stdout);
3271 /* The inferior program is finished. */
3273 annotate_exited (stop_info);
3276 if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3277 ui_out_field_string (uiout, "reason", "exited");
3278 ui_out_text (uiout, "\nProgram exited with code ");
3279 ui_out_field_fmt (uiout, "exit-code", "0%o", (unsigned int) stop_info);
3280 ui_out_text (uiout, ".\n");
3284 if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3285 ui_out_field_string (uiout, "reason", "exited-normally");
3286 ui_out_text (uiout, "\nProgram exited normally.\n");
3289 annotate_exited (stop_info);
3291 printf_filtered ("\nProgram exited with code 0%o.\n",
3292 (unsigned int) stop_info);
3294 printf_filtered ("\nProgram exited normally.\n");
3297 case SIGNAL_RECEIVED:
3298 /* Signal received. The signal table tells us to print about
3302 ui_out_text (uiout, "\nProgram received signal ");
3303 annotate_signal_name ();
3304 ui_out_field_string (uiout, "signal-name", target_signal_to_name (stop_info));
3305 annotate_signal_name_end ();
3306 ui_out_text (uiout, ", ");
3307 annotate_signal_string ();
3308 ui_out_field_string (uiout, "signal-meaning", target_signal_to_string (stop_info));
3309 annotate_signal_string_end ();
3310 ui_out_text (uiout, ".\n");
3313 printf_filtered ("\nProgram received signal ");
3314 annotate_signal_name ();
3315 printf_filtered ("%s", target_signal_to_name (stop_info));
3316 annotate_signal_name_end ();
3317 printf_filtered (", ");
3318 annotate_signal_string ();
3319 printf_filtered ("%s", target_signal_to_string (stop_info));
3320 annotate_signal_string_end ();
3321 printf_filtered (".\n");
3322 gdb_flush (gdb_stdout);
3326 internal_error ("print_stop_reason: unrecognized enum value");
3332 /* Here to return control to GDB when the inferior stops for real.
3333 Print appropriate messages, remove breakpoints, give terminal our modes.
3335 STOP_PRINT_FRAME nonzero means print the executing frame
3336 (pc, function, args, file, line number and line text).
3337 BREAKPOINTS_FAILED nonzero means stop was due to error
3338 attempting to insert breakpoints. */
3343 /* As with the notification of thread events, we want to delay
3344 notifying the user that we've switched thread context until
3345 the inferior actually stops.
3347 (Note that there's no point in saying anything if the inferior
3349 if ((previous_inferior_pid != inferior_pid)
3350 && target_has_execution)
3352 target_terminal_ours_for_output ();
3353 printf_filtered ("[Switching to %s]\n",
3354 target_pid_or_tid_to_str (inferior_pid));
3355 previous_inferior_pid = inferior_pid;
3358 /* Make sure that the current_frame's pc is correct. This
3359 is a correction for setting up the frame info before doing
3360 DECR_PC_AFTER_BREAK */
3361 if (target_has_execution && get_current_frame ())
3362 (get_current_frame ())->pc = read_pc ();
3364 if (breakpoints_failed)
3366 target_terminal_ours_for_output ();
3367 print_sys_errmsg ("ptrace", breakpoints_failed);
3368 printf_filtered ("Stopped; cannot insert breakpoints.\n\
3369 The same program may be running in another process.\n");
3372 if (target_has_execution && breakpoints_inserted)
3374 if (remove_breakpoints ())
3376 target_terminal_ours_for_output ();
3377 printf_filtered ("Cannot remove breakpoints because ");
3378 printf_filtered ("program is no longer writable.\n");
3379 printf_filtered ("It might be running in another process.\n");
3380 printf_filtered ("Further execution is probably impossible.\n");
3383 breakpoints_inserted = 0;
3385 /* Delete the breakpoint we stopped at, if it wants to be deleted.
3386 Delete any breakpoint that is to be deleted at the next stop. */
3388 breakpoint_auto_delete (stop_bpstat);
3390 /* If an auto-display called a function and that got a signal,
3391 delete that auto-display to avoid an infinite recursion. */
3393 if (stopped_by_random_signal)
3394 disable_current_display ();
3396 /* Don't print a message if in the middle of doing a "step n"
3397 operation for n > 1 */
3398 if (step_multi && stop_step)
3401 target_terminal_ours ();
3403 /* Look up the hook_stop and run it if it exists. */
3405 if (stop_command && stop_command->hook)
3407 catch_errors (hook_stop_stub, stop_command->hook,
3408 "Error while running hook_stop:\n", RETURN_MASK_ALL);
3411 if (!target_has_stack)
3417 /* Select innermost stack frame - i.e., current frame is frame 0,
3418 and current location is based on that.
3419 Don't do this on return from a stack dummy routine,
3420 or if the program has exited. */
3422 if (!stop_stack_dummy)
3424 select_frame (get_current_frame (), 0);
3426 /* Print current location without a level number, if
3427 we have changed functions or hit a breakpoint.
3428 Print source line if we have one.
3429 bpstat_print() contains the logic deciding in detail
3430 what to print, based on the event(s) that just occurred. */
3432 if (stop_print_frame)
3436 int do_frame_printing = 1;
3438 bpstat_ret = bpstat_print (stop_bpstat);
3443 && step_frame_address == FRAME_FP (get_current_frame ())
3444 && step_start_function == find_pc_function (stop_pc))
3445 source_flag = SRC_LINE; /* finished step, just print source line */
3447 source_flag = SRC_AND_LOC; /* print location and source line */
3449 case PRINT_SRC_AND_LOC:
3450 source_flag = SRC_AND_LOC; /* print location and source line */
3452 case PRINT_SRC_ONLY:
3453 source_flag = SRC_LINE;
3456 do_frame_printing = 0;
3459 internal_error ("Unknown value.");
3462 /* For mi, have the same behavior every time we stop:
3463 print everything but the source line. */
3464 if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3465 source_flag = LOC_AND_ADDRESS;
3469 if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3470 ui_out_field_int (uiout, "thread-id", pid_to_thread_id (inferior_pid));
3472 /* The behavior of this routine with respect to the source
3474 SRC_LINE: Print only source line
3475 LOCATION: Print only location
3476 SRC_AND_LOC: Print location and source line */
3477 if (do_frame_printing)
3478 show_and_print_stack_frame (selected_frame, -1, source_flag);
3480 /* Display the auto-display expressions. */
3485 /* Save the function value return registers, if we care.
3486 We might be about to restore their previous contents. */
3487 if (proceed_to_finish)
3488 read_register_bytes (0, stop_registers, REGISTER_BYTES);
3490 if (stop_stack_dummy)
3492 /* Pop the empty frame that contains the stack dummy.
3493 POP_FRAME ends with a setting of the current frame, so we
3494 can use that next. */
3496 /* Set stop_pc to what it was before we called the function.
3497 Can't rely on restore_inferior_status because that only gets
3498 called if we don't stop in the called function. */
3499 stop_pc = read_pc ();
3500 select_frame (get_current_frame (), 0);
3504 TUIDO (((TuiOpaqueFuncPtr) tui_vCheckDataValues, selected_frame));
3507 annotate_stopped ();
3511 hook_stop_stub (void *cmd)
3513 execute_user_command ((struct cmd_list_element *) cmd, 0);
3518 signal_stop_state (int signo)
3520 return signal_stop[signo];
3524 signal_print_state (int signo)
3526 return signal_print[signo];
3530 signal_pass_state (int signo)
3532 return signal_program[signo];
3535 int signal_stop_update (signo, state)
3539 int ret = signal_stop[signo];
3540 signal_stop[signo] = state;
3544 int signal_print_update (signo, state)
3548 int ret = signal_print[signo];
3549 signal_print[signo] = state;
3553 int signal_pass_update (signo, state)
3557 int ret = signal_program[signo];
3558 signal_program[signo] = state;
3563 sig_print_header (void)
3566 Signal Stop\tPrint\tPass to program\tDescription\n");
3570 sig_print_info (enum target_signal oursig)
3572 char *name = target_signal_to_name (oursig);
3573 int name_padding = 13 - strlen (name);
3575 if (name_padding <= 0)
3578 printf_filtered ("%s", name);
3579 printf_filtered ("%*.*s ", name_padding, name_padding,
3581 printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
3582 printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
3583 printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
3584 printf_filtered ("%s\n", target_signal_to_string (oursig));
3587 /* Specify how various signals in the inferior should be handled. */
3590 handle_command (char *args, int from_tty)
3593 int digits, wordlen;
3594 int sigfirst, signum, siglast;
3595 enum target_signal oursig;
3598 unsigned char *sigs;
3599 struct cleanup *old_chain;
3603 error_no_arg ("signal to handle");
3606 /* Allocate and zero an array of flags for which signals to handle. */
3608 nsigs = (int) TARGET_SIGNAL_LAST;
3609 sigs = (unsigned char *) alloca (nsigs);
3610 memset (sigs, 0, nsigs);
3612 /* Break the command line up into args. */
3614 argv = buildargv (args);
3619 old_chain = make_cleanup_freeargv (argv);
3621 /* Walk through the args, looking for signal oursigs, signal names, and
3622 actions. Signal numbers and signal names may be interspersed with
3623 actions, with the actions being performed for all signals cumulatively
3624 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
3626 while (*argv != NULL)
3628 wordlen = strlen (*argv);
3629 for (digits = 0; isdigit ((*argv)[digits]); digits++)
3633 sigfirst = siglast = -1;
3635 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
3637 /* Apply action to all signals except those used by the
3638 debugger. Silently skip those. */
3641 siglast = nsigs - 1;
3643 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
3645 SET_SIGS (nsigs, sigs, signal_stop);
3646 SET_SIGS (nsigs, sigs, signal_print);
3648 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
3650 UNSET_SIGS (nsigs, sigs, signal_program);
3652 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
3654 SET_SIGS (nsigs, sigs, signal_print);
3656 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
3658 SET_SIGS (nsigs, sigs, signal_program);
3660 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
3662 UNSET_SIGS (nsigs, sigs, signal_stop);
3664 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
3666 SET_SIGS (nsigs, sigs, signal_program);
3668 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
3670 UNSET_SIGS (nsigs, sigs, signal_print);
3671 UNSET_SIGS (nsigs, sigs, signal_stop);
3673 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
3675 UNSET_SIGS (nsigs, sigs, signal_program);
3677 else if (digits > 0)
3679 /* It is numeric. The numeric signal refers to our own
3680 internal signal numbering from target.h, not to host/target
3681 signal number. This is a feature; users really should be
3682 using symbolic names anyway, and the common ones like
3683 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
3685 sigfirst = siglast = (int)
3686 target_signal_from_command (atoi (*argv));
3687 if ((*argv)[digits] == '-')
3690 target_signal_from_command (atoi ((*argv) + digits + 1));
3692 if (sigfirst > siglast)
3694 /* Bet he didn't figure we'd think of this case... */
3702 oursig = target_signal_from_name (*argv);
3703 if (oursig != TARGET_SIGNAL_UNKNOWN)
3705 sigfirst = siglast = (int) oursig;
3709 /* Not a number and not a recognized flag word => complain. */
3710 error ("Unrecognized or ambiguous flag word: \"%s\".", *argv);
3714 /* If any signal numbers or symbol names were found, set flags for
3715 which signals to apply actions to. */
3717 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
3719 switch ((enum target_signal) signum)
3721 case TARGET_SIGNAL_TRAP:
3722 case TARGET_SIGNAL_INT:
3723 if (!allsigs && !sigs[signum])
3725 if (query ("%s is used by the debugger.\n\
3726 Are you sure you want to change it? ",
3727 target_signal_to_name
3728 ((enum target_signal) signum)))
3734 printf_unfiltered ("Not confirmed, unchanged.\n");
3735 gdb_flush (gdb_stdout);
3739 case TARGET_SIGNAL_0:
3740 case TARGET_SIGNAL_DEFAULT:
3741 case TARGET_SIGNAL_UNKNOWN:
3742 /* Make sure that "all" doesn't print these. */
3753 target_notice_signals (inferior_pid);
3757 /* Show the results. */
3758 sig_print_header ();
3759 for (signum = 0; signum < nsigs; signum++)
3763 sig_print_info (signum);
3768 do_cleanups (old_chain);
3772 xdb_handle_command (char *args, int from_tty)
3775 struct cleanup *old_chain;
3777 /* Break the command line up into args. */
3779 argv = buildargv (args);
3784 old_chain = make_cleanup_freeargv (argv);
3785 if (argv[1] != (char *) NULL)
3790 bufLen = strlen (argv[0]) + 20;
3791 argBuf = (char *) xmalloc (bufLen);
3795 enum target_signal oursig;
3797 oursig = target_signal_from_name (argv[0]);
3798 memset (argBuf, 0, bufLen);
3799 if (strcmp (argv[1], "Q") == 0)
3800 sprintf (argBuf, "%s %s", argv[0], "noprint");
3803 if (strcmp (argv[1], "s") == 0)
3805 if (!signal_stop[oursig])
3806 sprintf (argBuf, "%s %s", argv[0], "stop");
3808 sprintf (argBuf, "%s %s", argv[0], "nostop");
3810 else if (strcmp (argv[1], "i") == 0)
3812 if (!signal_program[oursig])
3813 sprintf (argBuf, "%s %s", argv[0], "pass");
3815 sprintf (argBuf, "%s %s", argv[0], "nopass");
3817 else if (strcmp (argv[1], "r") == 0)
3819 if (!signal_print[oursig])
3820 sprintf (argBuf, "%s %s", argv[0], "print");
3822 sprintf (argBuf, "%s %s", argv[0], "noprint");
3828 handle_command (argBuf, from_tty);
3830 printf_filtered ("Invalid signal handling flag.\n");
3835 do_cleanups (old_chain);
3838 /* Print current contents of the tables set by the handle command.
3839 It is possible we should just be printing signals actually used
3840 by the current target (but for things to work right when switching
3841 targets, all signals should be in the signal tables). */
3844 signals_info (char *signum_exp, int from_tty)
3846 enum target_signal oursig;
3847 sig_print_header ();
3851 /* First see if this is a symbol name. */
3852 oursig = target_signal_from_name (signum_exp);
3853 if (oursig == TARGET_SIGNAL_UNKNOWN)
3855 /* No, try numeric. */
3857 target_signal_from_command (parse_and_eval_address (signum_exp));
3859 sig_print_info (oursig);
3863 printf_filtered ("\n");
3864 /* These ugly casts brought to you by the native VAX compiler. */
3865 for (oursig = TARGET_SIGNAL_FIRST;
3866 (int) oursig < (int) TARGET_SIGNAL_LAST;
3867 oursig = (enum target_signal) ((int) oursig + 1))
3871 if (oursig != TARGET_SIGNAL_UNKNOWN
3872 && oursig != TARGET_SIGNAL_DEFAULT
3873 && oursig != TARGET_SIGNAL_0)
3874 sig_print_info (oursig);
3877 printf_filtered ("\nUse the \"handle\" command to change these tables.\n");
3880 struct inferior_status
3882 enum target_signal stop_signal;
3886 int stop_stack_dummy;
3887 int stopped_by_random_signal;
3889 CORE_ADDR step_range_start;
3890 CORE_ADDR step_range_end;
3891 CORE_ADDR step_frame_address;
3892 int step_over_calls;
3893 CORE_ADDR step_resume_break_address;
3894 int stop_after_trap;
3895 int stop_soon_quietly;
3896 CORE_ADDR selected_frame_address;
3897 char *stop_registers;
3899 /* These are here because if call_function_by_hand has written some
3900 registers and then decides to call error(), we better not have changed
3905 int breakpoint_proceeded;
3906 int restore_stack_info;
3907 int proceed_to_finish;
3910 static struct inferior_status *
3911 xmalloc_inferior_status (void)
3913 struct inferior_status *inf_status;
3914 inf_status = xmalloc (sizeof (struct inferior_status));
3915 inf_status->stop_registers = xmalloc (REGISTER_BYTES);
3916 inf_status->registers = xmalloc (REGISTER_BYTES);
3921 free_inferior_status (struct inferior_status *inf_status)
3923 free (inf_status->registers);
3924 free (inf_status->stop_registers);
3929 write_inferior_status_register (struct inferior_status *inf_status, int regno,
3932 int size = REGISTER_RAW_SIZE (regno);
3933 void *buf = alloca (size);
3934 store_signed_integer (buf, size, val);
3935 memcpy (&inf_status->registers[REGISTER_BYTE (regno)], buf, size);
3938 /* Save all of the information associated with the inferior<==>gdb
3939 connection. INF_STATUS is a pointer to a "struct inferior_status"
3940 (defined in inferior.h). */
3942 struct inferior_status *
3943 save_inferior_status (int restore_stack_info)
3945 struct inferior_status *inf_status = xmalloc_inferior_status ();
3947 inf_status->stop_signal = stop_signal;
3948 inf_status->stop_pc = stop_pc;
3949 inf_status->stop_step = stop_step;
3950 inf_status->stop_stack_dummy = stop_stack_dummy;
3951 inf_status->stopped_by_random_signal = stopped_by_random_signal;
3952 inf_status->trap_expected = trap_expected;
3953 inf_status->step_range_start = step_range_start;
3954 inf_status->step_range_end = step_range_end;
3955 inf_status->step_frame_address = step_frame_address;
3956 inf_status->step_over_calls = step_over_calls;
3957 inf_status->stop_after_trap = stop_after_trap;
3958 inf_status->stop_soon_quietly = stop_soon_quietly;
3959 /* Save original bpstat chain here; replace it with copy of chain.
3960 If caller's caller is walking the chain, they'll be happier if we
3961 hand them back the original chain when restore_inferior_status is
3963 inf_status->stop_bpstat = stop_bpstat;
3964 stop_bpstat = bpstat_copy (stop_bpstat);
3965 inf_status->breakpoint_proceeded = breakpoint_proceeded;
3966 inf_status->restore_stack_info = restore_stack_info;
3967 inf_status->proceed_to_finish = proceed_to_finish;
3969 memcpy (inf_status->stop_registers, stop_registers, REGISTER_BYTES);
3971 read_register_bytes (0, inf_status->registers, REGISTER_BYTES);
3973 record_selected_frame (&(inf_status->selected_frame_address),
3974 &(inf_status->selected_level));
3978 struct restore_selected_frame_args
3980 CORE_ADDR frame_address;
3985 restore_selected_frame (void *args)
3987 struct restore_selected_frame_args *fr =
3988 (struct restore_selected_frame_args *) args;
3989 struct frame_info *frame;
3990 int level = fr->level;
3992 frame = find_relative_frame (get_current_frame (), &level);
3994 /* If inf_status->selected_frame_address is NULL, there was no
3995 previously selected frame. */
3996 if (frame == NULL ||
3997 /* FRAME_FP (frame) != fr->frame_address || */
3998 /* elz: deleted this check as a quick fix to the problem that
3999 for function called by hand gdb creates no internal frame
4000 structure and the real stack and gdb's idea of stack are
4001 different if nested calls by hands are made.
4003 mvs: this worries me. */
4006 warning ("Unable to restore previously selected frame.\n");
4010 select_frame (frame, fr->level);
4016 restore_inferior_status (struct inferior_status *inf_status)
4018 stop_signal = inf_status->stop_signal;
4019 stop_pc = inf_status->stop_pc;
4020 stop_step = inf_status->stop_step;
4021 stop_stack_dummy = inf_status->stop_stack_dummy;
4022 stopped_by_random_signal = inf_status->stopped_by_random_signal;
4023 trap_expected = inf_status->trap_expected;
4024 step_range_start = inf_status->step_range_start;
4025 step_range_end = inf_status->step_range_end;
4026 step_frame_address = inf_status->step_frame_address;
4027 step_over_calls = inf_status->step_over_calls;
4028 stop_after_trap = inf_status->stop_after_trap;
4029 stop_soon_quietly = inf_status->stop_soon_quietly;
4030 bpstat_clear (&stop_bpstat);
4031 stop_bpstat = inf_status->stop_bpstat;
4032 breakpoint_proceeded = inf_status->breakpoint_proceeded;
4033 proceed_to_finish = inf_status->proceed_to_finish;
4035 /* FIXME: Is the restore of stop_registers always needed */
4036 memcpy (stop_registers, inf_status->stop_registers, REGISTER_BYTES);
4038 /* The inferior can be gone if the user types "print exit(0)"
4039 (and perhaps other times). */
4040 if (target_has_execution)
4041 write_register_bytes (0, inf_status->registers, REGISTER_BYTES);
4043 /* FIXME: If we are being called after stopping in a function which
4044 is called from gdb, we should not be trying to restore the
4045 selected frame; it just prints a spurious error message (The
4046 message is useful, however, in detecting bugs in gdb (like if gdb
4047 clobbers the stack)). In fact, should we be restoring the
4048 inferior status at all in that case? . */
4050 if (target_has_stack && inf_status->restore_stack_info)
4052 struct restore_selected_frame_args fr;
4053 fr.level = inf_status->selected_level;
4054 fr.frame_address = inf_status->selected_frame_address;
4055 /* The point of catch_errors is that if the stack is clobbered,
4056 walking the stack might encounter a garbage pointer and error()
4057 trying to dereference it. */
4058 if (catch_errors (restore_selected_frame, &fr,
4059 "Unable to restore previously selected frame:\n",
4060 RETURN_MASK_ERROR) == 0)
4061 /* Error in restoring the selected frame. Select the innermost
4065 select_frame (get_current_frame (), 0);
4069 free_inferior_status (inf_status);
4073 discard_inferior_status (struct inferior_status *inf_status)
4075 /* See save_inferior_status for info on stop_bpstat. */
4076 bpstat_clear (&inf_status->stop_bpstat);
4077 free_inferior_status (inf_status);
4081 set_follow_fork_mode_command (char *arg, int from_tty,
4082 struct cmd_list_element *c)
4084 if (!STREQ (arg, "parent") &&
4085 !STREQ (arg, "child") &&
4086 !STREQ (arg, "both") &&
4087 !STREQ (arg, "ask"))
4088 error ("follow-fork-mode must be one of \"parent\", \"child\", \"both\" or \"ask\".");
4090 if (follow_fork_mode_string != NULL)
4091 free (follow_fork_mode_string);
4092 follow_fork_mode_string = savestring (arg, strlen (arg));
4098 stop_registers = xmalloc (REGISTER_BYTES);
4102 _initialize_infrun (void)
4105 register int numsigs;
4106 struct cmd_list_element *c;
4110 register_gdbarch_swap (&stop_registers, sizeof (stop_registers), NULL);
4111 register_gdbarch_swap (NULL, 0, build_infrun);
4113 add_info ("signals", 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_info_alias ("handle", "signals", 0);
4118 add_com ("handle", class_run, handle_command,
4119 concat ("Specify how to handle a signal.\n\
4120 Args are signals and actions to apply to those signals.\n\
4121 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
4122 from 1-15 are allowed for compatibility with old versions of GDB.\n\
4123 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
4124 The special arg \"all\" is recognized to mean all signals except those\n\
4125 used by the debugger, typically SIGTRAP and SIGINT.\n",
4126 "Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
4127 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
4128 Stop means reenter debugger if this signal happens (implies print).\n\
4129 Print means print a message if this signal happens.\n\
4130 Pass means let program see this signal; otherwise program doesn't know.\n\
4131 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
4132 Pass and Stop may be combined.", NULL));
4135 add_com ("lz", class_info, signals_info,
4136 "What debugger does when program gets various signals.\n\
4137 Specify a signal as argument to print info on that signal only.");
4138 add_com ("z", class_run, xdb_handle_command,
4139 concat ("Specify how to handle a signal.\n\
4140 Args are signals and actions to apply to those signals.\n\
4141 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
4142 from 1-15 are allowed for compatibility with old versions of GDB.\n\
4143 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
4144 The special arg \"all\" is recognized to mean all signals except those\n\
4145 used by the debugger, typically SIGTRAP and SIGINT.\n",
4146 "Recognized actions include \"s\" (toggles between stop and nostop), \n\
4147 \"r\" (toggles between print and noprint), \"i\" (toggles between pass and \
4148 nopass), \"Q\" (noprint)\n\
4149 Stop means reenter debugger if this signal happens (implies print).\n\
4150 Print means print a message if this signal happens.\n\
4151 Pass means let program see this signal; otherwise program doesn't know.\n\
4152 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
4153 Pass and Stop may be combined.", NULL));
4157 stop_command = add_cmd ("stop", class_obscure, not_just_help_class_command,
4158 "There is no `stop' command, but you can set a hook on `stop'.\n\
4159 This allows you to set a list of commands to be run each time execution\n\
4160 of the program stops.", &cmdlist);
4162 numsigs = (int) TARGET_SIGNAL_LAST;
4163 signal_stop = (unsigned char *)
4164 xmalloc (sizeof (signal_stop[0]) * numsigs);
4165 signal_print = (unsigned char *)
4166 xmalloc (sizeof (signal_print[0]) * numsigs);
4167 signal_program = (unsigned char *)
4168 xmalloc (sizeof (signal_program[0]) * numsigs);
4169 for (i = 0; i < numsigs; i++)
4172 signal_print[i] = 1;
4173 signal_program[i] = 1;
4176 /* Signals caused by debugger's own actions
4177 should not be given to the program afterwards. */
4178 signal_program[TARGET_SIGNAL_TRAP] = 0;
4179 signal_program[TARGET_SIGNAL_INT] = 0;
4181 /* Signals that are not errors should not normally enter the debugger. */
4182 signal_stop[TARGET_SIGNAL_ALRM] = 0;
4183 signal_print[TARGET_SIGNAL_ALRM] = 0;
4184 signal_stop[TARGET_SIGNAL_VTALRM] = 0;
4185 signal_print[TARGET_SIGNAL_VTALRM] = 0;
4186 signal_stop[TARGET_SIGNAL_PROF] = 0;
4187 signal_print[TARGET_SIGNAL_PROF] = 0;
4188 signal_stop[TARGET_SIGNAL_CHLD] = 0;
4189 signal_print[TARGET_SIGNAL_CHLD] = 0;
4190 signal_stop[TARGET_SIGNAL_IO] = 0;
4191 signal_print[TARGET_SIGNAL_IO] = 0;
4192 signal_stop[TARGET_SIGNAL_POLL] = 0;
4193 signal_print[TARGET_SIGNAL_POLL] = 0;
4194 signal_stop[TARGET_SIGNAL_URG] = 0;
4195 signal_print[TARGET_SIGNAL_URG] = 0;
4196 signal_stop[TARGET_SIGNAL_WINCH] = 0;
4197 signal_print[TARGET_SIGNAL_WINCH] = 0;
4199 /* These signals are used internally by user-level thread
4200 implementations. (See signal(5) on Solaris.) Like the above
4201 signals, a healthy program receives and handles them as part of
4202 its normal operation. */
4203 signal_stop[TARGET_SIGNAL_LWP] = 0;
4204 signal_print[TARGET_SIGNAL_LWP] = 0;
4205 signal_stop[TARGET_SIGNAL_WAITING] = 0;
4206 signal_print[TARGET_SIGNAL_WAITING] = 0;
4207 signal_stop[TARGET_SIGNAL_CANCEL] = 0;
4208 signal_print[TARGET_SIGNAL_CANCEL] = 0;
4212 (add_set_cmd ("stop-on-solib-events", class_support, var_zinteger,
4213 (char *) &stop_on_solib_events,
4214 "Set stopping for shared library events.\n\
4215 If nonzero, gdb will give control to the user when the dynamic linker\n\
4216 notifies gdb of shared library events. The most common event of interest\n\
4217 to the user would be loading/unloading of a new library.\n",
4222 c = add_set_enum_cmd ("follow-fork-mode",
4224 follow_fork_mode_kind_names,
4225 (char *) &follow_fork_mode_string,
4226 /* ??rehrauer: The "both" option is broken, by what may be a 10.20
4227 kernel problem. It's also not terribly useful without a GUI to
4228 help the user drive two debuggers. So for now, I'm disabling
4229 the "both" option. */
4230 /* "Set debugger response to a program call of fork \
4232 A fork or vfork creates a new process. follow-fork-mode can be:\n\
4233 parent - the original process is debugged after a fork\n\
4234 child - the new process is debugged after a fork\n\
4235 both - both the parent and child are debugged after a fork\n\
4236 ask - the debugger will ask for one of the above choices\n\
4237 For \"both\", another copy of the debugger will be started to follow\n\
4238 the new child process. The original debugger will continue to follow\n\
4239 the original parent process. To distinguish their prompts, the\n\
4240 debugger copy's prompt will be changed.\n\
4241 For \"parent\" or \"child\", the unfollowed process will run free.\n\
4242 By default, the debugger will follow the parent process.",
4244 "Set debugger response to a program call of fork \
4246 A fork or vfork creates a new process. follow-fork-mode can be:\n\
4247 parent - the original process is debugged after a fork\n\
4248 child - the new process is debugged after a fork\n\
4249 ask - the debugger will ask for one of the above choices\n\
4250 For \"parent\" or \"child\", the unfollowed process will run free.\n\
4251 By default, the debugger will follow the parent process.",
4253 /* c->function.sfunc = ; */
4254 add_show_from_set (c, &showlist);
4256 set_follow_fork_mode_command ("parent", 0, NULL);
4258 c = add_set_enum_cmd ("scheduler-locking", class_run,
4259 scheduler_enums, /* array of string names */
4260 (char *) &scheduler_mode, /* current mode */
4261 "Set mode for locking scheduler during execution.\n\
4262 off == no locking (threads may preempt at any time)\n\
4263 on == full locking (no thread except the current thread may run)\n\
4264 step == scheduler locked during every single-step operation.\n\
4265 In this mode, no other thread may run during a step command.\n\
4266 Other threads may run while stepping over a function call ('next').",
4269 c->function.sfunc = set_schedlock_func; /* traps on target vector */
4270 add_show_from_set (c, &showlist);