1 /* Target-struct-independent code to start (run) and stop an inferior process.
2 Copyright 1986-1989, 1991-1999 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 */
37 #include "event-loop.h"
39 /* Prototypes for local functions */
41 static void signals_info
PARAMS ((char *, int));
43 static void handle_command
PARAMS ((char *, int));
45 static void sig_print_info
PARAMS ((enum target_signal
));
47 static void sig_print_header
PARAMS ((void));
49 static void resume_cleanups
PARAMS ((int));
51 static int hook_stop_stub
PARAMS ((PTR
));
53 static void delete_breakpoint_current_contents
PARAMS ((PTR
));
55 static void set_follow_fork_mode_command
PARAMS ((char *arg
, int from_tty
, struct cmd_list_element
* c
));
57 static void complete_execution
PARAMS ((void));
59 int inferior_ignoring_startup_exec_events
= 0;
60 int inferior_ignoring_leading_exec_events
= 0;
62 /* In asynchronous mode, but simulating synchronous execution. */
63 int sync_execution
= 0;
65 /* wait_for_inferior and normal_stop use this to notify the user
66 when the inferior stopped in a different thread than it had been
68 static int switched_from_inferior_pid
;
70 /* This will be true for configurations that may actually report an
71 inferior pid different from the original. At present this is only
72 true for HP-UX native. */
74 #ifndef MAY_SWITCH_FROM_INFERIOR_PID
75 #define MAY_SWITCH_FROM_INFERIOR_PID (0)
78 static int may_switch_from_inferior_pid
= MAY_SWITCH_FROM_INFERIOR_PID
;
80 /* This is true for configurations that may follow through execl() and
81 similar functions. At present this is only true for HP-UX native. */
83 #ifndef MAY_FOLLOW_EXEC
84 #define MAY_FOLLOW_EXEC (0)
87 static int may_follow_exec
= MAY_FOLLOW_EXEC
;
89 /* resume and wait_for_inferior use this to ensure that when
90 stepping over a hit breakpoint in a threaded application
91 only the thread that hit the breakpoint is stepped and the
92 other threads don't continue. This prevents having another
93 thread run past the breakpoint while it is temporarily
96 This is not thread-specific, so it isn't saved as part of
99 Versions of gdb which don't use the "step == this thread steps
100 and others continue" model but instead use the "step == this
101 thread steps and others wait" shouldn't do this. */
102 static int thread_step_needed
= 0;
104 /* This is true if thread_step_needed should actually be used. At
105 present this is only true for HP-UX native. */
107 #ifndef USE_THREAD_STEP_NEEDED
108 #define USE_THREAD_STEP_NEEDED (0)
111 static int use_thread_step_needed
= USE_THREAD_STEP_NEEDED
;
113 static void follow_inferior_fork
PARAMS ((int parent_pid
,
118 static void follow_fork
PARAMS ((int parent_pid
, int child_pid
));
120 static void follow_vfork
PARAMS ((int parent_pid
, int child_pid
));
122 static void set_schedlock_func
PARAMS ((char *args
, int from_tty
,
123 struct cmd_list_element
* c
));
125 static int is_internal_shlib_eventpoint
PARAMS ((struct breakpoint
* ep
));
127 static int stopped_for_internal_shlib_event
PARAMS ((bpstat bs
));
129 static int stopped_for_shlib_catchpoint
PARAMS ((bpstat bs
,
130 struct breakpoint
** cp_p
));
133 struct execution_control_state
;
135 static int currently_stepping
PARAMS ((struct execution_control_state
* ecs
));
137 static void xdb_handle_command
PARAMS ((char *args
, int from_tty
));
139 void _initialize_infrun
PARAMS ((void));
141 /* GET_LONGJMP_TARGET returns the PC at which longjmp() will resume the
142 program. It needs to examine the jmp_buf argument and extract the PC
143 from it. The return value is non-zero on success, zero otherwise. */
145 #ifndef GET_LONGJMP_TARGET
146 #define GET_LONGJMP_TARGET(PC_ADDR) 0
150 /* Some machines have trampoline code that sits between function callers
151 and the actual functions themselves. If this machine doesn't have
152 such things, disable their processing. */
154 #ifndef SKIP_TRAMPOLINE_CODE
155 #define SKIP_TRAMPOLINE_CODE(pc) 0
158 /* Dynamic function trampolines are similar to solib trampolines in that they
159 are between the caller and the callee. The difference is that when you
160 enter a dynamic trampoline, you can't determine the callee's address. Some
161 (usually complex) code needs to run in the dynamic trampoline to figure out
162 the callee's address. This macro is usually called twice. First, when we
163 enter the trampoline (looks like a normal function call at that point). It
164 should return the PC of a point within the trampoline where the callee's
165 address is known. Second, when we hit the breakpoint, this routine returns
166 the callee's address. At that point, things proceed as per a step resume
169 #ifndef DYNAMIC_TRAMPOLINE_NEXTPC
170 #define DYNAMIC_TRAMPOLINE_NEXTPC(pc) 0
173 /* On SVR4 based systems, determining the callee's address is exceedingly
174 difficult and depends on the implementation of the run time loader.
175 If we are stepping at the source level, we single step until we exit
176 the run time loader code and reach the callee's address. */
178 #ifndef IN_SOLIB_DYNSYM_RESOLVE_CODE
179 #define IN_SOLIB_DYNSYM_RESOLVE_CODE(pc) 0
182 /* For SVR4 shared libraries, each call goes through a small piece of
183 trampoline code in the ".plt" section. IN_SOLIB_CALL_TRAMPOLINE evaluates
184 to nonzero if we are current stopped in one of these. */
186 #ifndef IN_SOLIB_CALL_TRAMPOLINE
187 #define IN_SOLIB_CALL_TRAMPOLINE(pc,name) 0
190 /* In some shared library schemes, the return path from a shared library
191 call may need to go through a trampoline too. */
193 #ifndef IN_SOLIB_RETURN_TRAMPOLINE
194 #define IN_SOLIB_RETURN_TRAMPOLINE(pc,name) 0
197 /* This function returns TRUE if pc is the address of an instruction
198 that lies within the dynamic linker (such as the event hook, or the
201 This function must be used only when a dynamic linker event has
202 been caught, and the inferior is being stepped out of the hook, or
203 undefined results are guaranteed. */
205 #ifndef SOLIB_IN_DYNAMIC_LINKER
206 #define SOLIB_IN_DYNAMIC_LINKER(pid,pc) 0
209 /* On MIPS16, a function that returns a floating point value may call
210 a library helper function to copy the return value to a floating point
211 register. The IGNORE_HELPER_CALL macro returns non-zero if we
212 should ignore (i.e. step over) this function call. */
213 #ifndef IGNORE_HELPER_CALL
214 #define IGNORE_HELPER_CALL(pc) 0
217 /* On some systems, the PC may be left pointing at an instruction that won't
218 actually be executed. This is usually indicated by a bit in the PSW. If
219 we find ourselves in such a state, then we step the target beyond the
220 nullified instruction before returning control to the user so as to avoid
223 #ifndef INSTRUCTION_NULLIFIED
224 #define INSTRUCTION_NULLIFIED 0
227 /* Convert the #defines into values. This is temporary until wfi control
228 flow is completely sorted out. */
230 #ifndef HAVE_STEPPABLE_WATCHPOINT
231 #define HAVE_STEPPABLE_WATCHPOINT 0
233 #undef HAVE_STEPPABLE_WATCHPOINT
234 #define HAVE_STEPPABLE_WATCHPOINT 1
237 #ifndef HAVE_NONSTEPPABLE_WATCHPOINT
238 #define HAVE_NONSTEPPABLE_WATCHPOINT 0
240 #undef HAVE_NONSTEPPABLE_WATCHPOINT
241 #define HAVE_NONSTEPPABLE_WATCHPOINT 1
244 #ifndef HAVE_CONTINUABLE_WATCHPOINT
245 #define HAVE_CONTINUABLE_WATCHPOINT 0
247 #undef HAVE_CONTINUABLE_WATCHPOINT
248 #define HAVE_CONTINUABLE_WATCHPOINT 1
251 /* Tables of how to react to signals; the user sets them. */
253 static unsigned char *signal_stop
;
254 static unsigned char *signal_print
;
255 static unsigned char *signal_program
;
257 #define SET_SIGS(nsigs,sigs,flags) \
259 int signum = (nsigs); \
260 while (signum-- > 0) \
261 if ((sigs)[signum]) \
262 (flags)[signum] = 1; \
265 #define UNSET_SIGS(nsigs,sigs,flags) \
267 int signum = (nsigs); \
268 while (signum-- > 0) \
269 if ((sigs)[signum]) \
270 (flags)[signum] = 0; \
274 /* Command list pointer for the "stop" placeholder. */
276 static struct cmd_list_element
*stop_command
;
278 /* Nonzero if breakpoints are now inserted in the inferior. */
280 static int breakpoints_inserted
;
282 /* Function inferior was in as of last step command. */
284 static struct symbol
*step_start_function
;
286 /* Nonzero if we are expecting a trace trap and should proceed from it. */
288 static int trap_expected
;
291 /* Nonzero if we want to give control to the user when we're notified
292 of shared library events by the dynamic linker. */
293 static int stop_on_solib_events
;
297 /* Nonzero if the next time we try to continue the inferior, it will
298 step one instruction and generate a spurious trace trap.
299 This is used to compensate for a bug in HP-UX. */
301 static int trap_expected_after_continue
;
304 /* Nonzero means expecting a trace trap
305 and should stop the inferior and return silently when it happens. */
309 /* Nonzero means expecting a trap and caller will handle it themselves.
310 It is used after attach, due to attaching to a process;
311 when running in the shell before the child program has been exec'd;
312 and when running some kinds of remote stuff (FIXME?). */
314 int stop_soon_quietly
;
316 /* Nonzero if proceed is being used for a "finish" command or a similar
317 situation when stop_registers should be saved. */
319 int proceed_to_finish
;
321 /* Save register contents here when about to pop a stack dummy frame,
322 if-and-only-if proceed_to_finish is set.
323 Thus this contains the return value from the called function (assuming
324 values are returned in a register). */
326 char *stop_registers
;
328 /* Nonzero if program stopped due to error trying to insert breakpoints. */
330 static int breakpoints_failed
;
332 /* Nonzero after stop if current stack frame should be printed. */
334 static int stop_print_frame
;
336 static struct breakpoint
*step_resume_breakpoint
= NULL
;
337 static struct breakpoint
*through_sigtramp_breakpoint
= NULL
;
339 /* On some platforms (e.g., HP-UX), hardware watchpoints have bad
340 interactions with an inferior that is running a kernel function
341 (aka, a system call or "syscall"). wait_for_inferior therefore
342 may have a need to know when the inferior is in a syscall. This
343 is a count of the number of inferior threads which are known to
344 currently be running in a syscall. */
345 static int number_of_threads_in_syscalls
;
347 /* This is used to remember when a fork, vfork or exec event
348 was caught by a catchpoint, and thus the event is to be
349 followed at the next resume of the inferior, and not
353 enum target_waitkind kind
;
363 char *execd_pathname
;
367 /* Some platforms don't allow us to do anything meaningful with a
368 vforked child until it has exec'd. Vforked processes on such
369 platforms can only be followed after they've exec'd.
371 When this is set to 0, a vfork can be immediately followed,
372 and an exec can be followed merely as an exec. When this is
373 set to 1, a vfork event has been seen, but cannot be followed
374 until the exec is seen.
376 (In the latter case, inferior_pid is still the parent of the
377 vfork, and pending_follow.fork_event.child_pid is the child. The
378 appropriate process is followed, according to the setting of
379 follow-fork-mode.) */
380 static int follow_vfork_when_exec
;
382 static char *follow_fork_mode_kind_names
[] =
384 /* ??rehrauer: The "both" option is broken, by what may be a 10.20
385 kernel problem. It's also not terribly useful without a GUI to
386 help the user drive two debuggers. So for now, I'm disabling
388 "parent", "child", "both", "ask" };
390 "parent", "child", "ask"};
392 static char *follow_fork_mode_string
= NULL
;
396 follow_inferior_fork (parent_pid
, child_pid
, has_forked
, has_vforked
)
402 int followed_parent
= 0;
403 int followed_child
= 0;
406 /* Which process did the user want us to follow? */
408 savestring (follow_fork_mode_string
, strlen (follow_fork_mode_string
));
410 /* Or, did the user not know, and want us to ask? */
411 if (STREQ (follow_fork_mode_string
, "ask"))
413 char requested_mode
[100];
416 error ("\"ask\" mode NYI");
417 follow_mode
= savestring (requested_mode
, strlen (requested_mode
));
420 /* If we're to be following the parent, then detach from child_pid.
421 We're already following the parent, so need do nothing explicit
423 if (STREQ (follow_mode
, "parent"))
427 /* We're already attached to the parent, by default. */
429 /* Before detaching from the child, remove all breakpoints from
430 it. (This won't actually modify the breakpoint list, but will
431 physically remove the breakpoints from the child.) */
432 if (!has_vforked
|| !follow_vfork_when_exec
)
434 detach_breakpoints (child_pid
);
435 #ifdef SOLIB_REMOVE_INFERIOR_HOOK
436 SOLIB_REMOVE_INFERIOR_HOOK (child_pid
);
440 /* Detach from the child. */
443 target_require_detach (child_pid
, "", 1);
446 /* If we're to be following the child, then attach to it, detach
447 from inferior_pid, and set inferior_pid to child_pid. */
448 else if (STREQ (follow_mode
, "child"))
450 char child_pid_spelling
[100]; /* Arbitrary length. */
454 /* Before detaching from the parent, detach all breakpoints from
455 the child. But only if we're forking, or if we follow vforks
456 as soon as they happen. (If we're following vforks only when
457 the child has exec'd, then it's very wrong to try to write
458 back the "shadow contents" of inserted breakpoints now -- they
459 belong to the child's pre-exec'd a.out.) */
460 if (!has_vforked
|| !follow_vfork_when_exec
)
462 detach_breakpoints (child_pid
);
465 /* Before detaching from the parent, remove all breakpoints from it. */
466 remove_breakpoints ();
468 /* Also reset the solib inferior hook from the parent. */
469 #ifdef SOLIB_REMOVE_INFERIOR_HOOK
470 SOLIB_REMOVE_INFERIOR_HOOK (inferior_pid
);
473 /* Detach from the parent. */
475 target_detach (NULL
, 1);
477 /* Attach to the child. */
478 inferior_pid
= child_pid
;
479 sprintf (child_pid_spelling
, "%d", child_pid
);
482 target_require_attach (child_pid_spelling
, 1);
484 /* Was there a step_resume breakpoint? (There was if the user
485 did a "next" at the fork() call.) If so, explicitly reset its
488 step_resumes are a form of bp that are made to be per-thread.
489 Since we created the step_resume bp when the parent process
490 was being debugged, and now are switching to the child process,
491 from the breakpoint package's viewpoint, that's a switch of
492 "threads". We must update the bp's notion of which thread
493 it is for, or it'll be ignored when it triggers... */
494 if (step_resume_breakpoint
&&
495 (!has_vforked
|| !follow_vfork_when_exec
))
496 breakpoint_re_set_thread (step_resume_breakpoint
);
498 /* Reinsert all breakpoints in the child. (The user may've set
499 breakpoints after catching the fork, in which case those
500 actually didn't get set in the child, but only in the parent.) */
501 if (!has_vforked
|| !follow_vfork_when_exec
)
503 breakpoint_re_set ();
504 insert_breakpoints ();
508 /* If we're to be following both parent and child, then fork ourselves,
509 and attach the debugger clone to the child. */
510 else if (STREQ (follow_mode
, "both"))
512 char pid_suffix
[100]; /* Arbitrary length. */
514 /* Clone ourselves to follow the child. This is the end of our
515 involvement with child_pid; our clone will take it from here... */
517 target_clone_and_follow_inferior (child_pid
, &followed_child
);
518 followed_parent
= !followed_child
;
520 /* We continue to follow the parent. To help distinguish the two
521 debuggers, though, both we and our clone will reset our prompts. */
522 sprintf (pid_suffix
, "[%d] ", inferior_pid
);
523 set_prompt (strcat (get_prompt (), pid_suffix
));
526 /* The parent and child of a vfork share the same address space.
527 Also, on some targets the order in which vfork and exec events
528 are received for parent in child requires some delicate handling
531 For instance, on ptrace-based HPUX we receive the child's vfork
532 event first, at which time the parent has been suspended by the
533 OS and is essentially untouchable until the child's exit or second
534 exec event arrives. At that time, the parent's vfork event is
535 delivered to us, and that's when we see and decide how to follow
536 the vfork. But to get to that point, we must continue the child
537 until it execs or exits. To do that smoothly, all breakpoints
538 must be removed from the child, in case there are any set between
539 the vfork() and exec() calls. But removing them from the child
540 also removes them from the parent, due to the shared-address-space
541 nature of a vfork'd parent and child. On HPUX, therefore, we must
542 take care to restore the bp's to the parent before we continue it.
543 Else, it's likely that we may not stop in the expected place. (The
544 worst scenario is when the user tries to step over a vfork() call;
545 the step-resume bp must be restored for the step to properly stop
546 in the parent after the call completes!)
548 Sequence of events, as reported to gdb from HPUX:
550 Parent Child Action for gdb to take
551 -------------------------------------------------------
552 1 VFORK Continue child
558 target_post_follow_vfork (parent_pid
,
564 pending_follow
.fork_event
.saw_parent_fork
= 0;
565 pending_follow
.fork_event
.saw_child_fork
= 0;
571 follow_fork (parent_pid
, child_pid
)
575 follow_inferior_fork (parent_pid
, child_pid
, 1, 0);
579 /* Forward declaration. */
580 static void follow_exec
PARAMS ((int, char *));
583 follow_vfork (parent_pid
, child_pid
)
587 follow_inferior_fork (parent_pid
, child_pid
, 0, 1);
589 /* Did we follow the child? Had it exec'd before we saw the parent vfork? */
590 if (pending_follow
.fork_event
.saw_child_exec
&& (inferior_pid
== child_pid
))
592 pending_follow
.fork_event
.saw_child_exec
= 0;
593 pending_follow
.kind
= TARGET_WAITKIND_SPURIOUS
;
594 follow_exec (inferior_pid
, pending_follow
.execd_pathname
);
595 free (pending_follow
.execd_pathname
);
600 follow_exec (pid
, execd_pathname
)
602 char *execd_pathname
;
605 struct target_ops
*tgt
;
607 if (!may_follow_exec
)
610 /* Did this exec() follow a vfork()? If so, we must follow the
611 vfork now too. Do it before following the exec. */
612 if (follow_vfork_when_exec
&&
613 (pending_follow
.kind
== TARGET_WAITKIND_VFORKED
))
615 pending_follow
.kind
= TARGET_WAITKIND_SPURIOUS
;
616 follow_vfork (inferior_pid
, pending_follow
.fork_event
.child_pid
);
617 follow_vfork_when_exec
= 0;
618 saved_pid
= inferior_pid
;
620 /* Did we follow the parent? If so, we're done. If we followed
621 the child then we must also follow its exec(). */
622 if (inferior_pid
== pending_follow
.fork_event
.parent_pid
)
626 /* This is an exec event that we actually wish to pay attention to.
627 Refresh our symbol table to the newly exec'd program, remove any
630 If there are breakpoints, they aren't really inserted now,
631 since the exec() transformed our inferior into a fresh set
634 We want to preserve symbolic breakpoints on the list, since
635 we have hopes that they can be reset after the new a.out's
636 symbol table is read.
638 However, any "raw" breakpoints must be removed from the list
639 (e.g., the solib bp's), since their address is probably invalid
642 And, we DON'T want to call delete_breakpoints() here, since
643 that may write the bp's "shadow contents" (the instruction
644 value that was overwritten witha TRAP instruction). Since
645 we now have a new a.out, those shadow contents aren't valid. */
646 update_breakpoints_after_exec ();
648 /* If there was one, it's gone now. We cannot truly step-to-next
649 statement through an exec(). */
650 step_resume_breakpoint
= NULL
;
651 step_range_start
= 0;
654 /* If there was one, it's gone now. */
655 through_sigtramp_breakpoint
= NULL
;
657 /* What is this a.out's name? */
658 printf_unfiltered ("Executing new program: %s\n", execd_pathname
);
660 /* We've followed the inferior through an exec. Therefore, the
661 inferior has essentially been killed & reborn. */
663 /* First collect the run target in effect. */
664 tgt
= find_run_target ();
665 /* If we can't find one, things are in a very strange state... */
667 error ("Could find run target to save before following exec");
669 gdb_flush (gdb_stdout
);
670 target_mourn_inferior ();
671 inferior_pid
= saved_pid
; /* Because mourn_inferior resets inferior_pid. */
674 /* That a.out is now the one to use. */
675 exec_file_attach (execd_pathname
, 0);
677 /* And also is where symbols can be found. */
678 symbol_file_command (execd_pathname
, 0);
680 /* Reset the shared library package. This ensures that we get
681 a shlib event when the child reaches "_start", at which point
682 the dld will have had a chance to initialize the child. */
683 #if defined(SOLIB_RESTART)
686 #ifdef SOLIB_CREATE_INFERIOR_HOOK
687 SOLIB_CREATE_INFERIOR_HOOK (inferior_pid
);
690 /* Reinsert all breakpoints. (Those which were symbolic have
691 been reset to the proper address in the new a.out, thanks
692 to symbol_file_command...) */
693 insert_breakpoints ();
695 /* The next resume of this inferior should bring it to the shlib
696 startup breakpoints. (If the user had also set bp's on
697 "main" from the old (parent) process, then they'll auto-
698 matically get reset there in the new process.) */
701 /* Non-zero if we just simulating a single-step. This is needed
702 because we cannot remove the breakpoints in the inferior process
703 until after the `wait' in `wait_for_inferior'. */
704 static int singlestep_breakpoints_inserted_p
= 0;
707 /* Things to clean up if we QUIT out of resume (). */
710 resume_cleanups (arg
)
716 static char schedlock_off
[] = "off";
717 static char schedlock_on
[] = "on";
718 static char schedlock_step
[] = "step";
719 static char *scheduler_mode
= schedlock_off
;
720 static char *scheduler_enums
[] =
721 {schedlock_off
, schedlock_on
, schedlock_step
};
724 set_schedlock_func (args
, from_tty
, c
)
727 struct cmd_list_element
*c
;
729 if (c
->type
== set_cmd
)
730 if (!target_can_lock_scheduler
)
732 scheduler_mode
= schedlock_off
;
733 error ("Target '%s' cannot support this command.",
739 /* Resume the inferior, but allow a QUIT. This is useful if the user
740 wants to interrupt some lengthy single-stepping operation
741 (for child processes, the SIGINT goes to the inferior, and so
742 we get a SIGINT random_signal, but for remote debugging and perhaps
743 other targets, that's not true).
745 STEP nonzero if we should step (zero to continue instead).
746 SIG is the signal to give the inferior (zero for none). */
750 enum target_signal sig
;
752 int should_resume
= 1;
753 struct cleanup
*old_cleanups
= make_cleanup ((make_cleanup_func
)
757 #ifdef CANNOT_STEP_BREAKPOINT
758 /* Most targets can step a breakpoint instruction, thus executing it
759 normally. But if this one cannot, just continue and we will hit
761 if (step
&& breakpoints_inserted
&& breakpoint_here_p (read_pc ()))
765 if (SOFTWARE_SINGLE_STEP_P
&& step
)
767 /* Do it the hard way, w/temp breakpoints */
768 SOFTWARE_SINGLE_STEP (sig
, 1 /*insert-breakpoints */ );
769 /* ...and don't ask hardware to do it. */
771 /* and do not pull these breakpoints until after a `wait' in
772 `wait_for_inferior' */
773 singlestep_breakpoints_inserted_p
= 1;
776 /* Handle any optimized stores to the inferior NOW... */
777 #ifdef DO_DEFERRED_STORES
781 /* If there were any forks/vforks/execs that were caught and are
782 now to be followed, then do so. */
783 switch (pending_follow
.kind
)
785 case (TARGET_WAITKIND_FORKED
):
786 pending_follow
.kind
= TARGET_WAITKIND_SPURIOUS
;
787 follow_fork (inferior_pid
, pending_follow
.fork_event
.child_pid
);
790 case (TARGET_WAITKIND_VFORKED
):
792 int saw_child_exec
= pending_follow
.fork_event
.saw_child_exec
;
794 pending_follow
.kind
= TARGET_WAITKIND_SPURIOUS
;
795 follow_vfork (inferior_pid
, pending_follow
.fork_event
.child_pid
);
797 /* Did we follow the child, but not yet see the child's exec event?
798 If so, then it actually ought to be waiting for us; we respond to
799 parent vfork events. We don't actually want to resume the child
800 in this situation; we want to just get its exec event. */
801 if (!saw_child_exec
&&
802 (inferior_pid
== pending_follow
.fork_event
.child_pid
))
807 case (TARGET_WAITKIND_EXECD
):
808 /* If we saw a vfork event but couldn't follow it until we saw
809 an exec, then now might be the time! */
810 pending_follow
.kind
= TARGET_WAITKIND_SPURIOUS
;
811 /* follow_exec is called as soon as the exec event is seen. */
818 /* Install inferior's terminal modes. */
819 target_terminal_inferior ();
823 if (use_thread_step_needed
&& thread_step_needed
)
825 /* We stopped on a BPT instruction;
826 don't continue other threads and
827 just step this thread. */
828 thread_step_needed
= 0;
830 if (!breakpoint_here_p (read_pc ()))
832 /* Breakpoint deleted: ok to do regular resume
833 where all the threads either step or continue. */
834 target_resume (-1, step
, sig
);
840 warning ("Internal error, changing continue to step.");
841 remove_breakpoints ();
842 breakpoints_inserted
= 0;
847 target_resume (inferior_pid
, step
, sig
);
852 /* Vanilla resume. */
854 if ((scheduler_mode
== schedlock_on
) ||
855 (scheduler_mode
== schedlock_step
&& step
!= 0))
856 target_resume (inferior_pid
, step
, sig
);
858 target_resume (-1, step
, sig
);
862 discard_cleanups (old_cleanups
);
866 /* Clear out all variables saying what to do when inferior is continued.
867 First do this, then set the ones you want, then call `proceed'. */
870 clear_proceed_status ()
873 step_range_start
= 0;
875 step_frame_address
= 0;
876 step_over_calls
= -1;
878 stop_soon_quietly
= 0;
879 proceed_to_finish
= 0;
880 breakpoint_proceeded
= 1; /* We're about to proceed... */
882 /* Discard any remaining commands or status from previous stop. */
883 bpstat_clear (&stop_bpstat
);
886 /* Basic routine for continuing the program in various fashions.
888 ADDR is the address to resume at, or -1 for resume where stopped.
889 SIGGNAL is the signal to give it, or 0 for none,
890 or -1 for act according to how it stopped.
891 STEP is nonzero if should trap after one instruction.
892 -1 means return after that and print nothing.
893 You should probably set various step_... variables
894 before calling here, if you are stepping.
896 You should call clear_proceed_status before calling proceed. */
899 proceed (addr
, siggnal
, step
)
901 enum target_signal siggnal
;
907 step_start_function
= find_pc_function (read_pc ());
911 if (addr
== (CORE_ADDR
) - 1)
913 /* If there is a breakpoint at the address we will resume at,
914 step one instruction before inserting breakpoints
915 so that we do not stop right away (and report a second
916 hit at this breakpoint). */
918 if (read_pc () == stop_pc
&& breakpoint_here_p (read_pc ()))
921 #ifndef STEP_SKIPS_DELAY
922 #define STEP_SKIPS_DELAY(pc) (0)
923 #define STEP_SKIPS_DELAY_P (0)
925 /* Check breakpoint_here_p first, because breakpoint_here_p is fast
926 (it just checks internal GDB data structures) and STEP_SKIPS_DELAY
927 is slow (it needs to read memory from the target). */
928 if (STEP_SKIPS_DELAY_P
929 && breakpoint_here_p (read_pc () + 4)
930 && STEP_SKIPS_DELAY (read_pc ()))
937 /* New address; we don't need to single-step a thread
938 over a breakpoint we just hit, 'cause we aren't
939 continuing from there.
941 It's not worth worrying about the case where a user
942 asks for a "jump" at the current PC--if they get the
943 hiccup of re-hiting a hit breakpoint, what else do
945 thread_step_needed
= 0;
948 #ifdef PREPARE_TO_PROCEED
949 /* In a multi-threaded task we may select another thread
950 and then continue or step.
952 But if the old thread was stopped at a breakpoint, it
953 will immediately cause another breakpoint stop without
954 any execution (i.e. it will report a breakpoint hit
955 incorrectly). So we must step over it first.
957 PREPARE_TO_PROCEED checks the current thread against the thread
958 that reported the most recent event. If a step-over is required
959 it returns TRUE and sets the current thread to the old thread. */
960 if (PREPARE_TO_PROCEED (1) && breakpoint_here_p (read_pc ()))
963 thread_step_needed
= 1;
966 #endif /* PREPARE_TO_PROCEED */
969 if (trap_expected_after_continue
)
971 /* If (step == 0), a trap will be automatically generated after
972 the first instruction is executed. Force step one
973 instruction to clear this condition. This should not occur
974 if step is nonzero, but it is harmless in that case. */
976 trap_expected_after_continue
= 0;
978 #endif /* HP_OS_BUG */
981 /* We will get a trace trap after one instruction.
982 Continue it automatically and insert breakpoints then. */
986 int temp
= insert_breakpoints ();
989 print_sys_errmsg ("ptrace", temp
);
990 error ("Cannot insert breakpoints.\n\
991 The same program may be running in another process.");
994 breakpoints_inserted
= 1;
997 if (siggnal
!= TARGET_SIGNAL_DEFAULT
)
998 stop_signal
= siggnal
;
999 /* If this signal should not be seen by program,
1000 give it zero. Used for debugging signals. */
1001 else if (!signal_program
[stop_signal
])
1002 stop_signal
= TARGET_SIGNAL_0
;
1004 annotate_starting ();
1006 /* Make sure that output from GDB appears before output from the
1008 gdb_flush (gdb_stdout
);
1010 /* Resume inferior. */
1011 resume (oneproc
|| step
|| bpstat_should_step (), stop_signal
);
1013 /* Wait for it to stop (if not standalone)
1014 and in any case decode why it stopped, and act accordingly. */
1015 /* Do this only if we are not using the event loop, or if the target
1016 does not support asynchronous execution. */
1017 if (!async_p
|| !target_has_async
)
1019 wait_for_inferior ();
1024 /* Record the pc and sp of the program the last time it stopped.
1025 These are just used internally by wait_for_inferior, but need
1026 to be preserved over calls to it and cleared when the inferior
1028 static CORE_ADDR prev_pc
;
1029 static CORE_ADDR prev_func_start
;
1030 static char *prev_func_name
;
1033 /* Start remote-debugging of a machine over a serial link. */
1037 init_thread_list ();
1038 init_wait_for_inferior ();
1039 stop_soon_quietly
= 1;
1042 /* Go on waiting only in case gdb is not started in async mode, or
1043 in case the target doesn't support async execution. */
1044 if (!async_p
|| !target_has_async
)
1046 wait_for_inferior ();
1051 /* The 'tar rem' command should always look synchronous,
1052 i.e. display the prompt only once it has connected and
1053 started the target. */
1055 push_prompt ("", "", "");
1056 delete_file_handler (input_fd
);
1057 target_executing
= 1;
1061 /* Initialize static vars when a new inferior begins. */
1064 init_wait_for_inferior ()
1066 /* These are meaningless until the first time through wait_for_inferior. */
1068 prev_func_start
= 0;
1069 prev_func_name
= NULL
;
1072 trap_expected_after_continue
= 0;
1074 breakpoints_inserted
= 0;
1075 breakpoint_init_inferior (inf_starting
);
1077 /* Don't confuse first call to proceed(). */
1078 stop_signal
= TARGET_SIGNAL_0
;
1080 /* The first resume is not following a fork/vfork/exec. */
1081 pending_follow
.kind
= TARGET_WAITKIND_SPURIOUS
; /* I.e., none. */
1082 pending_follow
.fork_event
.saw_parent_fork
= 0;
1083 pending_follow
.fork_event
.saw_child_fork
= 0;
1084 pending_follow
.fork_event
.saw_child_exec
= 0;
1086 /* See wait_for_inferior's handling of SYSCALL_ENTRY/RETURN events. */
1087 number_of_threads_in_syscalls
= 0;
1089 clear_proceed_status ();
1093 delete_breakpoint_current_contents (arg
)
1096 struct breakpoint
**breakpointp
= (struct breakpoint
**) arg
;
1097 if (*breakpointp
!= NULL
)
1099 delete_breakpoint (*breakpointp
);
1100 *breakpointp
= NULL
;
1104 /* This enum encodes possible reasons for doing a target_wait, so that
1105 wfi can call target_wait in one place. (Ultimately the call will be
1106 moved out of the infinite loop entirely.) */
1110 infwait_normal_state
,
1111 infwait_thread_hop_state
,
1112 infwait_nullified_state
,
1113 infwait_nonstep_watch_state
1116 /* This structure contains what used to be local variables in
1117 wait_for_inferior. Probably many of them can return to being
1118 locals in handle_inferior_event. */
1120 struct execution_control_state
1122 struct target_waitstatus ws
;
1123 struct target_waitstatus
*wp
;
1126 CORE_ADDR stop_func_start
;
1127 CORE_ADDR stop_func_end
;
1128 char *stop_func_name
;
1129 struct symtab_and_line sal
;
1130 int remove_breakpoints_on_following_step
;
1132 struct symtab
*current_symtab
;
1133 int handling_longjmp
; /* FIXME */
1135 int saved_inferior_pid
;
1137 int stepping_through_solib_after_catch
;
1138 bpstat stepping_through_solib_catchpoints
;
1139 int enable_hw_watchpoints_after_wait
;
1140 int stepping_through_sigtramp
;
1141 int new_thread_event
;
1142 struct target_waitstatus tmpstatus
;
1143 enum infwait_states infwait_state
;
1148 void init_execution_control_state
PARAMS ((struct execution_control_state
* ecs
));
1150 void handle_inferior_event
PARAMS ((struct execution_control_state
* ecs
));
1152 /* Wait for control to return from inferior to debugger.
1153 If inferior gets a signal, we may decide to start it up again
1154 instead of returning. That is why there is a loop in this function.
1155 When this function actually returns it means the inferior
1156 should be left stopped and GDB should read more commands. */
1159 wait_for_inferior ()
1161 struct cleanup
*old_cleanups
;
1162 struct execution_control_state ecss
;
1163 struct execution_control_state
*ecs
;
1165 old_cleanups
= make_cleanup (delete_breakpoint_current_contents
,
1166 &step_resume_breakpoint
);
1167 make_cleanup (delete_breakpoint_current_contents
,
1168 &through_sigtramp_breakpoint
);
1170 /* wfi still stays in a loop, so it's OK just to take the address of
1171 a local to get the ecs pointer. */
1174 /* Fill in with reasonable starting values. */
1175 init_execution_control_state (ecs
);
1177 thread_step_needed
= 0;
1179 /* We'll update this if & when we switch to a new thread. */
1180 if (may_switch_from_inferior_pid
)
1181 switched_from_inferior_pid
= inferior_pid
;
1183 overlay_cache_invalid
= 1;
1185 /* We have to invalidate the registers BEFORE calling target_wait
1186 because they can be loaded from the target while in target_wait.
1187 This makes remote debugging a bit more efficient for those
1188 targets that provide critical registers as part of their normal
1189 status mechanism. */
1191 registers_changed ();
1195 if (target_wait_hook
)
1196 ecs
->pid
= target_wait_hook (ecs
->waiton_pid
, ecs
->wp
);
1198 ecs
->pid
= target_wait (ecs
->waiton_pid
, ecs
->wp
);
1200 /* Now figure out what to do with the result of the result. */
1201 handle_inferior_event (ecs
);
1203 if (!ecs
->wait_some_more
)
1206 do_cleanups (old_cleanups
);
1209 /* Asynchronous version of wait_for_inferior. It is called by the
1210 event loop whenever a change of state is detected on the file
1211 descriptor corresponding to the target. It can be called more than
1212 once to complete a single execution command. In such cases we need
1213 to keep the state in a global variable ASYNC_ECSS. If it is the
1214 last time that this function is called for a single execution
1215 command, then report to the user that the inferior has stopped, and
1216 do the necessary cleanups. */
1218 struct execution_control_state async_ecss
;
1219 struct execution_control_state
*async_ecs
;
1222 fetch_inferior_event ()
1224 static struct cleanup
*old_cleanups
;
1226 async_ecs
= &async_ecss
;
1228 if (!async_ecs
->wait_some_more
)
1230 old_cleanups
= make_exec_cleanup (delete_breakpoint_current_contents
,
1231 &step_resume_breakpoint
);
1232 make_exec_cleanup (delete_breakpoint_current_contents
,
1233 &through_sigtramp_breakpoint
);
1235 /* Fill in with reasonable starting values. */
1236 init_execution_control_state (async_ecs
);
1238 thread_step_needed
= 0;
1240 /* We'll update this if & when we switch to a new thread. */
1241 if (may_switch_from_inferior_pid
)
1242 switched_from_inferior_pid
= inferior_pid
;
1244 overlay_cache_invalid
= 1;
1246 /* We have to invalidate the registers BEFORE calling target_wait
1247 because they can be loaded from the target while in target_wait.
1248 This makes remote debugging a bit more efficient for those
1249 targets that provide critical registers as part of their normal
1250 status mechanism. */
1252 registers_changed ();
1255 if (target_wait_hook
)
1256 async_ecs
->pid
= target_wait_hook (async_ecs
->waiton_pid
, async_ecs
->wp
);
1258 async_ecs
->pid
= target_wait (async_ecs
->waiton_pid
, async_ecs
->wp
);
1260 /* Now figure out what to do with the result of the result. */
1261 handle_inferior_event (async_ecs
);
1263 if (!async_ecs
->wait_some_more
)
1265 do_exec_cleanups (old_cleanups
);
1267 /* Is there anything left to do for the command issued to
1269 do_all_continuations ();
1270 /* Reset things after target has stopped for the async commands. */
1271 complete_execution ();
1275 /* Prepare an execution control state for looping through a
1276 wait_for_inferior-type loop. */
1279 init_execution_control_state (ecs
)
1280 struct execution_control_state
*ecs
;
1282 ecs
->random_signal
= 0;
1283 ecs
->remove_breakpoints_on_following_step
= 0;
1284 ecs
->handling_longjmp
= 0; /* FIXME */
1285 ecs
->update_step_sp
= 0;
1286 ecs
->stepping_through_solib_after_catch
= 0;
1287 ecs
->stepping_through_solib_catchpoints
= NULL
;
1288 ecs
->enable_hw_watchpoints_after_wait
= 0;
1289 ecs
->stepping_through_sigtramp
= 0;
1290 ecs
->sal
= find_pc_line (prev_pc
, 0);
1291 ecs
->current_line
= ecs
->sal
.line
;
1292 ecs
->current_symtab
= ecs
->sal
.symtab
;
1293 ecs
->infwait_state
= infwait_normal_state
;
1294 ecs
->waiton_pid
= -1;
1295 ecs
->wp
= &(ecs
->ws
);
1298 /* Given an execution control state that has been freshly filled in
1299 by an event from the inferior, figure out what it means and take
1300 appropriate action. */
1303 handle_inferior_event (ecs
)
1304 struct execution_control_state
*ecs
;
1307 int stepped_after_stopped_by_watchpoint
;
1309 /* Keep this extra brace for now, minimizes diffs. */
1311 switch (ecs
->infwait_state
)
1313 case infwait_normal_state
:
1314 /* Since we've done a wait, we have a new event. Don't
1315 carry over any expectations about needing to step over a
1317 thread_step_needed
= 0;
1319 /* See comments where a TARGET_WAITKIND_SYSCALL_RETURN event
1320 is serviced in this loop, below. */
1321 if (ecs
->enable_hw_watchpoints_after_wait
)
1323 TARGET_ENABLE_HW_WATCHPOINTS (inferior_pid
);
1324 ecs
->enable_hw_watchpoints_after_wait
= 0;
1326 stepped_after_stopped_by_watchpoint
= 0;
1329 case infwait_thread_hop_state
:
1330 insert_breakpoints ();
1332 /* We need to restart all the threads now,
1333 * unles we're running in scheduler-locked mode.
1334 * FIXME: shouldn't we look at currently_stepping ()?
1336 if (scheduler_mode
== schedlock_on
)
1337 target_resume (ecs
->pid
, 0, TARGET_SIGNAL_0
);
1339 target_resume (-1, 0, TARGET_SIGNAL_0
);
1340 ecs
->infwait_state
= infwait_normal_state
;
1343 case infwait_nullified_state
:
1346 case infwait_nonstep_watch_state
:
1347 insert_breakpoints ();
1349 /* FIXME-maybe: is this cleaner than setting a flag? Does it
1350 handle things like signals arriving and other things happening
1351 in combination correctly? */
1352 stepped_after_stopped_by_watchpoint
= 1;
1355 ecs
->infwait_state
= infwait_normal_state
;
1357 flush_cached_frames ();
1359 /* If it's a new process, add it to the thread database */
1361 ecs
->new_thread_event
= ((ecs
->pid
!= inferior_pid
) && !in_thread_list (ecs
->pid
));
1363 if (ecs
->ws
.kind
!= TARGET_WAITKIND_EXITED
1364 && ecs
->ws
.kind
!= TARGET_WAITKIND_SIGNALLED
1365 && ecs
->new_thread_event
)
1367 add_thread (ecs
->pid
);
1369 printf_filtered ("[New %s]\n", target_pid_or_tid_to_str (ecs
->pid
));
1372 /* NOTE: This block is ONLY meant to be invoked in case of a
1373 "thread creation event"! If it is invoked for any other
1374 sort of event (such as a new thread landing on a breakpoint),
1375 the event will be discarded, which is almost certainly
1378 To avoid this, the low-level module (eg. target_wait)
1379 should call in_thread_list and add_thread, so that the
1380 new thread is known by the time we get here. */
1382 /* We may want to consider not doing a resume here in order
1383 to give the user a chance to play with the new thread.
1384 It might be good to make that a user-settable option. */
1386 /* At this point, all threads are stopped (happens
1387 automatically in either the OS or the native code).
1388 Therefore we need to continue all threads in order to
1391 target_resume (-1, 0, TARGET_SIGNAL_0
);
1396 switch (ecs
->ws
.kind
)
1398 case TARGET_WAITKIND_LOADED
:
1399 /* Ignore gracefully during startup of the inferior, as it
1400 might be the shell which has just loaded some objects,
1401 otherwise add the symbols for the newly loaded objects. */
1403 if (!stop_soon_quietly
)
1405 /* Remove breakpoints, SOLIB_ADD might adjust
1406 breakpoint addresses via breakpoint_re_set. */
1407 if (breakpoints_inserted
)
1408 remove_breakpoints ();
1410 /* Check for any newly added shared libraries if we're
1411 supposed to be adding them automatically. */
1414 /* Switch terminal for any messages produced by
1415 breakpoint_re_set. */
1416 target_terminal_ours_for_output ();
1417 SOLIB_ADD (NULL
, 0, NULL
);
1418 target_terminal_inferior ();
1421 /* Reinsert breakpoints and continue. */
1422 if (breakpoints_inserted
)
1423 insert_breakpoints ();
1426 resume (0, TARGET_SIGNAL_0
);
1429 case TARGET_WAITKIND_SPURIOUS
:
1430 resume (0, TARGET_SIGNAL_0
);
1433 case TARGET_WAITKIND_EXITED
:
1434 target_terminal_ours (); /* Must do this before mourn anyway */
1435 annotate_exited (ecs
->ws
.value
.integer
);
1436 if (ecs
->ws
.value
.integer
)
1437 printf_filtered ("\nProgram exited with code 0%o.\n",
1438 (unsigned int) ecs
->ws
.value
.integer
);
1440 printf_filtered ("\nProgram exited normally.\n");
1442 /* Record the exit code in the convenience variable $_exitcode, so
1443 that the user can inspect this again later. */
1444 set_internalvar (lookup_internalvar ("_exitcode"),
1445 value_from_longest (builtin_type_int
,
1446 (LONGEST
) ecs
->ws
.value
.integer
));
1447 gdb_flush (gdb_stdout
);
1448 target_mourn_inferior ();
1449 singlestep_breakpoints_inserted_p
= 0; /*SOFTWARE_SINGLE_STEP_P */
1450 stop_print_frame
= 0;
1453 case TARGET_WAITKIND_SIGNALLED
:
1454 stop_print_frame
= 0;
1455 stop_signal
= ecs
->ws
.value
.sig
;
1456 target_terminal_ours (); /* Must do this before mourn anyway */
1457 annotate_signalled ();
1459 /* This looks pretty bogus to me. Doesn't TARGET_WAITKIND_SIGNALLED
1460 mean it is already dead? This has been here since GDB 2.8, so
1461 perhaps it means rms didn't understand unix waitstatuses?
1462 For the moment I'm just kludging around this in remote.c
1463 rather than trying to change it here --kingdon, 5 Dec 1994. */
1464 target_kill (); /* kill mourns as well */
1466 printf_filtered ("\nProgram terminated with signal ");
1467 annotate_signal_name ();
1468 printf_filtered ("%s", target_signal_to_name (stop_signal
));
1469 annotate_signal_name_end ();
1470 printf_filtered (", ");
1471 annotate_signal_string ();
1472 printf_filtered ("%s", target_signal_to_string (stop_signal
));
1473 annotate_signal_string_end ();
1474 printf_filtered (".\n");
1476 printf_filtered ("The program no longer exists.\n");
1477 gdb_flush (gdb_stdout
);
1478 singlestep_breakpoints_inserted_p
= 0; /*SOFTWARE_SINGLE_STEP_P */
1481 /* The following are the only cases in which we keep going;
1482 the above cases end in a continue or goto. */
1483 case TARGET_WAITKIND_FORKED
:
1484 stop_signal
= TARGET_SIGNAL_TRAP
;
1485 pending_follow
.kind
= ecs
->ws
.kind
;
1487 /* Ignore fork events reported for the parent; we're only
1488 interested in reacting to forks of the child. Note that
1489 we expect the child's fork event to be available if we
1490 waited for it now. */
1491 if (inferior_pid
== ecs
->pid
)
1493 pending_follow
.fork_event
.saw_parent_fork
= 1;
1494 pending_follow
.fork_event
.parent_pid
= ecs
->pid
;
1495 pending_follow
.fork_event
.child_pid
= ecs
->ws
.value
.related_pid
;
1500 pending_follow
.fork_event
.saw_child_fork
= 1;
1501 pending_follow
.fork_event
.child_pid
= ecs
->pid
;
1502 pending_follow
.fork_event
.parent_pid
= ecs
->ws
.value
.related_pid
;
1505 stop_pc
= read_pc_pid (ecs
->pid
);
1506 ecs
->saved_inferior_pid
= inferior_pid
;
1507 inferior_pid
= ecs
->pid
;
1508 stop_bpstat
= bpstat_stop_status
1510 (DECR_PC_AFTER_BREAK
?
1511 (prev_pc
!= stop_pc
- DECR_PC_AFTER_BREAK
1512 && currently_stepping (ecs
))
1515 ecs
->random_signal
= !bpstat_explains_signal (stop_bpstat
);
1516 inferior_pid
= ecs
->saved_inferior_pid
;
1517 goto process_event_stop_test
;
1519 /* If this a platform which doesn't allow a debugger to touch a
1520 vfork'd inferior until after it exec's, then we'd best keep
1521 our fingers entirely off the inferior, other than continuing
1522 it. This has the unfortunate side-effect that catchpoints
1523 of vforks will be ignored. But since the platform doesn't
1524 allow the inferior be touched at vfork time, there's really
1526 case TARGET_WAITKIND_VFORKED
:
1527 stop_signal
= TARGET_SIGNAL_TRAP
;
1528 pending_follow
.kind
= ecs
->ws
.kind
;
1530 /* Is this a vfork of the parent? If so, then give any
1531 vfork catchpoints a chance to trigger now. (It's
1532 dangerous to do so if the child canot be touched until
1533 it execs, and the child has not yet exec'd. We probably
1534 should warn the user to that effect when the catchpoint
1536 if (ecs
->pid
== inferior_pid
)
1538 pending_follow
.fork_event
.saw_parent_fork
= 1;
1539 pending_follow
.fork_event
.parent_pid
= ecs
->pid
;
1540 pending_follow
.fork_event
.child_pid
= ecs
->ws
.value
.related_pid
;
1543 /* If we've seen the child's vfork event but cannot really touch
1544 the child until it execs, then we must continue the child now.
1545 Else, give any vfork catchpoints a chance to trigger now. */
1548 pending_follow
.fork_event
.saw_child_fork
= 1;
1549 pending_follow
.fork_event
.child_pid
= ecs
->pid
;
1550 pending_follow
.fork_event
.parent_pid
= ecs
->ws
.value
.related_pid
;
1551 target_post_startup_inferior (pending_follow
.fork_event
.child_pid
);
1552 follow_vfork_when_exec
= !target_can_follow_vfork_prior_to_exec ();
1553 if (follow_vfork_when_exec
)
1555 target_resume (ecs
->pid
, 0, TARGET_SIGNAL_0
);
1560 stop_pc
= read_pc ();
1561 stop_bpstat
= bpstat_stop_status
1563 (DECR_PC_AFTER_BREAK
?
1564 (prev_pc
!= stop_pc
- DECR_PC_AFTER_BREAK
1565 && currently_stepping (ecs
))
1568 ecs
->random_signal
= !bpstat_explains_signal (stop_bpstat
);
1569 goto process_event_stop_test
;
1571 case TARGET_WAITKIND_EXECD
:
1572 stop_signal
= TARGET_SIGNAL_TRAP
;
1574 /* Is this a target which reports multiple exec events per actual
1575 call to exec()? (HP-UX using ptrace does, for example.) If so,
1576 ignore all but the last one. Just resume the exec'r, and wait
1577 for the next exec event. */
1578 if (inferior_ignoring_leading_exec_events
)
1580 inferior_ignoring_leading_exec_events
--;
1581 if (pending_follow
.kind
== TARGET_WAITKIND_VFORKED
)
1582 ENSURE_VFORKING_PARENT_REMAINS_STOPPED (pending_follow
.fork_event
.parent_pid
);
1583 target_resume (ecs
->pid
, 0, TARGET_SIGNAL_0
);
1586 inferior_ignoring_leading_exec_events
=
1587 target_reported_exec_events_per_exec_call () - 1;
1589 pending_follow
.execd_pathname
= savestring (ecs
->ws
.value
.execd_pathname
,
1590 strlen (ecs
->ws
.value
.execd_pathname
));
1592 /* Did inferior_pid exec, or did a (possibly not-yet-followed)
1593 child of a vfork exec?
1595 ??rehrauer: This is unabashedly an HP-UX specific thing. On
1596 HP-UX, events associated with a vforking inferior come in
1597 threes: a vfork event for the child (always first), followed
1598 a vfork event for the parent and an exec event for the child.
1599 The latter two can come in either order.
1601 If we get the parent vfork event first, life's good: We follow
1602 either the parent or child, and then the child's exec event is
1605 But if we get the child's exec event first, then we delay
1606 responding to it until we handle the parent's vfork. Because,
1607 otherwise we can't satisfy a "catch vfork". */
1608 if (pending_follow
.kind
== TARGET_WAITKIND_VFORKED
)
1610 pending_follow
.fork_event
.saw_child_exec
= 1;
1612 /* On some targets, the child must be resumed before
1613 the parent vfork event is delivered. A single-step
1615 if (RESUME_EXECD_VFORKING_CHILD_TO_GET_PARENT_VFORK ())
1616 target_resume (ecs
->pid
, 1, TARGET_SIGNAL_0
);
1617 /* We expect the parent vfork event to be available now. */
1621 /* This causes the eventpoints and symbol table to be reset. Must
1622 do this now, before trying to determine whether to stop. */
1623 follow_exec (inferior_pid
, pending_follow
.execd_pathname
);
1624 free (pending_follow
.execd_pathname
);
1626 stop_pc
= read_pc_pid (ecs
->pid
);
1627 ecs
->saved_inferior_pid
= inferior_pid
;
1628 inferior_pid
= ecs
->pid
;
1629 stop_bpstat
= bpstat_stop_status
1631 (DECR_PC_AFTER_BREAK
?
1632 (prev_pc
!= stop_pc
- DECR_PC_AFTER_BREAK
1633 && currently_stepping (ecs
))
1636 ecs
->random_signal
= !bpstat_explains_signal (stop_bpstat
);
1637 inferior_pid
= ecs
->saved_inferior_pid
;
1638 goto process_event_stop_test
;
1640 /* These syscall events are returned on HP-UX, as part of its
1641 implementation of page-protection-based "hardware" watchpoints.
1642 HP-UX has unfortunate interactions between page-protections and
1643 some system calls. Our solution is to disable hardware watches
1644 when a system call is entered, and reenable them when the syscall
1645 completes. The downside of this is that we may miss the precise
1646 point at which a watched piece of memory is modified. "Oh well."
1648 Note that we may have multiple threads running, which may each
1649 enter syscalls at roughly the same time. Since we don't have a
1650 good notion currently of whether a watched piece of memory is
1651 thread-private, we'd best not have any page-protections active
1652 when any thread is in a syscall. Thus, we only want to reenable
1653 hardware watches when no threads are in a syscall.
1655 Also, be careful not to try to gather much state about a thread
1656 that's in a syscall. It's frequently a losing proposition. */
1657 case TARGET_WAITKIND_SYSCALL_ENTRY
:
1658 number_of_threads_in_syscalls
++;
1659 if (number_of_threads_in_syscalls
== 1)
1661 TARGET_DISABLE_HW_WATCHPOINTS (inferior_pid
);
1663 resume (0, TARGET_SIGNAL_0
);
1666 /* Before examining the threads further, step this thread to
1667 get it entirely out of the syscall. (We get notice of the
1668 event when the thread is just on the verge of exiting a
1669 syscall. Stepping one instruction seems to get it back
1672 Note that although the logical place to reenable h/w watches
1673 is here, we cannot. We cannot reenable them before stepping
1674 the thread (this causes the next wait on the thread to hang).
1676 Nor can we enable them after stepping until we've done a wait.
1677 Thus, we simply set the flag ecs->enable_hw_watchpoints_after_wait
1678 here, which will be serviced immediately after the target
1680 case TARGET_WAITKIND_SYSCALL_RETURN
:
1681 target_resume (ecs
->pid
, 1, TARGET_SIGNAL_0
);
1683 if (number_of_threads_in_syscalls
> 0)
1685 number_of_threads_in_syscalls
--;
1686 ecs
->enable_hw_watchpoints_after_wait
=
1687 (number_of_threads_in_syscalls
== 0);
1691 case TARGET_WAITKIND_STOPPED
:
1692 stop_signal
= ecs
->ws
.value
.sig
;
1696 /* We may want to consider not doing a resume here in order to give
1697 the user a chance to play with the new thread. It might be good
1698 to make that a user-settable option. */
1700 /* At this point, all threads are stopped (happens automatically in
1701 either the OS or the native code). Therefore we need to continue
1702 all threads in order to make progress. */
1703 if (ecs
->new_thread_event
)
1705 target_resume (-1, 0, TARGET_SIGNAL_0
);
1709 stop_pc
= read_pc_pid (ecs
->pid
);
1711 /* See if a thread hit a thread-specific breakpoint that was meant for
1712 another thread. If so, then step that thread past the breakpoint,
1715 if (stop_signal
== TARGET_SIGNAL_TRAP
)
1717 if (SOFTWARE_SINGLE_STEP_P
&& singlestep_breakpoints_inserted_p
)
1718 ecs
->random_signal
= 0;
1719 else if (breakpoints_inserted
1720 && breakpoint_here_p (stop_pc
- DECR_PC_AFTER_BREAK
))
1722 ecs
->random_signal
= 0;
1723 if (!breakpoint_thread_match (stop_pc
- DECR_PC_AFTER_BREAK
,
1728 /* Saw a breakpoint, but it was hit by the wrong thread.
1730 write_pc_pid (stop_pc
- DECR_PC_AFTER_BREAK
, ecs
->pid
);
1732 remove_status
= remove_breakpoints ();
1733 /* Did we fail to remove breakpoints? If so, try
1734 to set the PC past the bp. (There's at least
1735 one situation in which we can fail to remove
1736 the bp's: On HP-UX's that use ttrace, we can't
1737 change the address space of a vforking child
1738 process until the child exits (well, okay, not
1739 then either :-) or execs. */
1740 if (remove_status
!= 0)
1742 write_pc_pid (stop_pc
- DECR_PC_AFTER_BREAK
+ 4, ecs
->pid
);
1746 target_resume (ecs
->pid
, 1, TARGET_SIGNAL_0
);
1747 /* FIXME: What if a signal arrives instead of the
1748 single-step happening? */
1750 ecs
->waiton_pid
= ecs
->pid
;
1751 ecs
->wp
= &(ecs
->ws
);
1752 ecs
->infwait_state
= infwait_thread_hop_state
;
1756 /* We need to restart all the threads now,
1757 * unles we're running in scheduler-locked mode.
1758 * FIXME: shouldn't we look at currently_stepping ()?
1760 if (scheduler_mode
== schedlock_on
)
1761 target_resume (ecs
->pid
, 0, TARGET_SIGNAL_0
);
1763 target_resume (-1, 0, TARGET_SIGNAL_0
);
1768 /* This breakpoint matches--either it is the right
1769 thread or it's a generic breakpoint for all threads.
1770 Remember that we'll need to step just _this_ thread
1771 on any following user continuation! */
1772 thread_step_needed
= 1;
1777 ecs
->random_signal
= 1;
1779 /* See if something interesting happened to the non-current thread. If
1780 so, then switch to that thread, and eventually give control back to
1783 Note that if there's any kind of pending follow (i.e., of a fork,
1784 vfork or exec), we don't want to do this now. Rather, we'll let
1785 the next resume handle it. */
1786 if ((ecs
->pid
!= inferior_pid
) &&
1787 (pending_follow
.kind
== TARGET_WAITKIND_SPURIOUS
))
1791 /* If it's a random signal for a non-current thread, notify user
1792 if he's expressed an interest. */
1793 if (ecs
->random_signal
1794 && signal_print
[stop_signal
])
1796 /* ??rehrauer: I don't understand the rationale for this code. If the
1797 inferior will stop as a result of this signal, then the act of handling
1798 the stop ought to print a message that's couches the stoppage in user
1799 terms, e.g., "Stopped for breakpoint/watchpoint". If the inferior
1800 won't stop as a result of the signal -- i.e., if the signal is merely
1801 a side-effect of something GDB's doing "under the covers" for the
1802 user, such as stepping threads over a breakpoint they shouldn't stop
1803 for -- then the message seems to be a serious annoyance at best.
1805 For now, remove the message altogether. */
1808 target_terminal_ours_for_output ();
1809 printf_filtered ("\nProgram received signal %s, %s.\n",
1810 target_signal_to_name (stop_signal
),
1811 target_signal_to_string (stop_signal
));
1812 gdb_flush (gdb_stdout
);
1816 /* If it's not SIGTRAP and not a signal we want to stop for, then
1817 continue the thread. */
1819 if (stop_signal
!= TARGET_SIGNAL_TRAP
1820 && !signal_stop
[stop_signal
])
1823 target_terminal_inferior ();
1825 /* Clear the signal if it should not be passed. */
1826 if (signal_program
[stop_signal
] == 0)
1827 stop_signal
= TARGET_SIGNAL_0
;
1829 target_resume (ecs
->pid
, 0, stop_signal
);
1833 /* It's a SIGTRAP or a signal we're interested in. Switch threads,
1834 and fall into the rest of wait_for_inferior(). */
1836 /* Save infrun state for the old thread. */
1837 save_infrun_state (inferior_pid
, prev_pc
,
1838 prev_func_start
, prev_func_name
,
1839 trap_expected
, step_resume_breakpoint
,
1840 through_sigtramp_breakpoint
,
1841 step_range_start
, step_range_end
,
1842 step_frame_address
, ecs
->handling_longjmp
,
1844 ecs
->stepping_through_solib_after_catch
,
1845 ecs
->stepping_through_solib_catchpoints
,
1846 ecs
->stepping_through_sigtramp
);
1848 if (may_switch_from_inferior_pid
)
1849 switched_from_inferior_pid
= inferior_pid
;
1851 inferior_pid
= ecs
->pid
;
1853 /* Load infrun state for the new thread. */
1854 load_infrun_state (inferior_pid
, &prev_pc
,
1855 &prev_func_start
, &prev_func_name
,
1856 &trap_expected
, &step_resume_breakpoint
,
1857 &through_sigtramp_breakpoint
,
1858 &step_range_start
, &step_range_end
,
1859 &step_frame_address
, &ecs
->handling_longjmp
,
1861 &ecs
->stepping_through_solib_after_catch
,
1862 &ecs
->stepping_through_solib_catchpoints
,
1863 &ecs
->stepping_through_sigtramp
);
1866 context_hook (pid_to_thread_id (ecs
->pid
));
1868 printf_filtered ("[Switching to %s]\n", target_pid_to_str (ecs
->pid
));
1869 flush_cached_frames ();
1872 if (SOFTWARE_SINGLE_STEP_P
&& singlestep_breakpoints_inserted_p
)
1874 /* Pull the single step breakpoints out of the target. */
1875 SOFTWARE_SINGLE_STEP (0, 0);
1876 singlestep_breakpoints_inserted_p
= 0;
1879 /* If PC is pointing at a nullified instruction, then step beyond
1880 it so that the user won't be confused when GDB appears to be ready
1883 /* if (INSTRUCTION_NULLIFIED && currently_stepping (ecs)) */
1884 if (INSTRUCTION_NULLIFIED
)
1886 registers_changed ();
1887 target_resume (ecs
->pid
, 1, TARGET_SIGNAL_0
);
1889 /* We may have received a signal that we want to pass to
1890 the inferior; therefore, we must not clobber the waitstatus
1893 ecs
->infwait_state
= infwait_nullified_state
;
1894 ecs
->waiton_pid
= ecs
->pid
;
1895 ecs
->wp
= &(ecs
->tmpstatus
);
1899 /* It may not be necessary to disable the watchpoint to stop over
1900 it. For example, the PA can (with some kernel cooperation)
1901 single step over a watchpoint without disabling the watchpoint. */
1902 if (HAVE_STEPPABLE_WATCHPOINT
&& STOPPED_BY_WATCHPOINT (ecs
->ws
))
1908 /* It is far more common to need to disable a watchpoint to step
1909 the inferior over it. FIXME. What else might a debug
1910 register or page protection watchpoint scheme need here? */
1911 if (HAVE_NONSTEPPABLE_WATCHPOINT
&& STOPPED_BY_WATCHPOINT (ecs
->ws
))
1913 /* At this point, we are stopped at an instruction which has
1914 attempted to write to a piece of memory under control of
1915 a watchpoint. The instruction hasn't actually executed
1916 yet. If we were to evaluate the watchpoint expression
1917 now, we would get the old value, and therefore no change
1918 would seem to have occurred.
1920 In order to make watchpoints work `right', we really need
1921 to complete the memory write, and then evaluate the
1922 watchpoint expression. The following code does that by
1923 removing the watchpoint (actually, all watchpoints and
1924 breakpoints), single-stepping the target, re-inserting
1925 watchpoints, and then falling through to let normal
1926 single-step processing handle proceed. Since this
1927 includes evaluating watchpoints, things will come to a
1928 stop in the correct manner. */
1930 write_pc (stop_pc
- DECR_PC_AFTER_BREAK
);
1932 remove_breakpoints ();
1933 registers_changed ();
1934 target_resume (ecs
->pid
, 1, TARGET_SIGNAL_0
); /* Single step */
1936 ecs
->waiton_pid
= ecs
->pid
;
1937 ecs
->wp
= &(ecs
->ws
);
1938 ecs
->infwait_state
= infwait_nonstep_watch_state
;
1942 /* It may be possible to simply continue after a watchpoint. */
1943 if (HAVE_CONTINUABLE_WATCHPOINT
)
1944 STOPPED_BY_WATCHPOINT (ecs
->ws
);
1946 ecs
->stop_func_start
= 0;
1947 ecs
->stop_func_end
= 0;
1948 ecs
->stop_func_name
= 0;
1949 /* Don't care about return value; stop_func_start and stop_func_name
1950 will both be 0 if it doesn't work. */
1951 find_pc_partial_function (stop_pc
, &ecs
->stop_func_name
,
1952 &ecs
->stop_func_start
, &ecs
->stop_func_end
);
1953 ecs
->stop_func_start
+= FUNCTION_START_OFFSET
;
1954 ecs
->another_trap
= 0;
1955 bpstat_clear (&stop_bpstat
);
1957 stop_stack_dummy
= 0;
1958 stop_print_frame
= 1;
1959 ecs
->random_signal
= 0;
1960 stopped_by_random_signal
= 0;
1961 breakpoints_failed
= 0;
1963 /* Look at the cause of the stop, and decide what to do.
1964 The alternatives are:
1965 1) break; to really stop and return to the debugger,
1966 2) drop through to start up again
1967 (set ecs->another_trap to 1 to single step once)
1968 3) set ecs->random_signal to 1, and the decision between 1 and 2
1969 will be made according to the signal handling tables. */
1971 /* First, distinguish signals caused by the debugger from signals
1972 that have to do with the program's own actions.
1973 Note that breakpoint insns may cause SIGTRAP or SIGILL
1974 or SIGEMT, depending on the operating system version.
1975 Here we detect when a SIGILL or SIGEMT is really a breakpoint
1976 and change it to SIGTRAP. */
1978 if (stop_signal
== TARGET_SIGNAL_TRAP
1979 || (breakpoints_inserted
&&
1980 (stop_signal
== TARGET_SIGNAL_ILL
1981 || stop_signal
== TARGET_SIGNAL_EMT
1983 || stop_soon_quietly
)
1985 if (stop_signal
== TARGET_SIGNAL_TRAP
&& stop_after_trap
)
1987 stop_print_frame
= 0;
1990 if (stop_soon_quietly
)
1993 /* Don't even think about breakpoints
1994 if just proceeded over a breakpoint.
1996 However, if we are trying to proceed over a breakpoint
1997 and end up in sigtramp, then through_sigtramp_breakpoint
1998 will be set and we should check whether we've hit the
2000 if (stop_signal
== TARGET_SIGNAL_TRAP
&& trap_expected
2001 && through_sigtramp_breakpoint
== NULL
)
2002 bpstat_clear (&stop_bpstat
);
2005 /* See if there is a breakpoint at the current PC. */
2006 stop_bpstat
= bpstat_stop_status
2008 (DECR_PC_AFTER_BREAK
?
2009 /* Notice the case of stepping through a jump
2010 that lands just after a breakpoint.
2011 Don't confuse that with hitting the breakpoint.
2012 What we check for is that 1) stepping is going on
2013 and 2) the pc before the last insn does not match
2014 the address of the breakpoint before the current pc
2015 and 3) we didn't hit a breakpoint in a signal handler
2016 without an intervening stop in sigtramp, which is
2017 detected by a new stack pointer value below
2018 any usual function calling stack adjustments. */
2019 (currently_stepping (ecs
)
2020 && prev_pc
!= stop_pc
- DECR_PC_AFTER_BREAK
2022 && INNER_THAN (read_sp (), (step_sp
- 16)))) :
2025 /* Following in case break condition called a
2027 stop_print_frame
= 1;
2030 if (stop_signal
== TARGET_SIGNAL_TRAP
)
2032 = !(bpstat_explains_signal (stop_bpstat
)
2034 || (!CALL_DUMMY_BREAKPOINT_OFFSET_P
2035 && PC_IN_CALL_DUMMY (stop_pc
, read_sp (),
2036 FRAME_FP (get_current_frame ())))
2037 || (step_range_end
&& step_resume_breakpoint
== NULL
));
2042 = !(bpstat_explains_signal (stop_bpstat
)
2043 /* End of a stack dummy. Some systems (e.g. Sony
2044 news) give another signal besides SIGTRAP, so
2045 check here as well as above. */
2046 || (!CALL_DUMMY_BREAKPOINT_OFFSET_P
2047 && PC_IN_CALL_DUMMY (stop_pc
, read_sp (),
2048 FRAME_FP (get_current_frame ())))
2050 if (!ecs
->random_signal
)
2051 stop_signal
= TARGET_SIGNAL_TRAP
;
2055 /* When we reach this point, we've pretty much decided
2056 that the reason for stopping must've been a random
2057 (unexpected) signal. */
2060 ecs
->random_signal
= 1;
2061 /* If a fork, vfork or exec event was seen, then there are two
2062 possible responses we can make:
2064 1. If a catchpoint triggers for the event (ecs->random_signal == 0),
2065 then we must stop now and issue a prompt. We will resume
2066 the inferior when the user tells us to.
2067 2. If no catchpoint triggers for the event (ecs->random_signal == 1),
2068 then we must resume the inferior now and keep checking.
2070 In either case, we must take appropriate steps to "follow" the
2071 the fork/vfork/exec when the inferior is resumed. For example,
2072 if follow-fork-mode is "child", then we must detach from the
2073 parent inferior and follow the new child inferior.
2075 In either case, setting pending_follow causes the next resume()
2076 to take the appropriate following action. */
2077 process_event_stop_test
:
2078 if (ecs
->ws
.kind
== TARGET_WAITKIND_FORKED
)
2080 if (ecs
->random_signal
) /* I.e., no catchpoint triggered for this. */
2083 stop_signal
= TARGET_SIGNAL_0
;
2087 else if (ecs
->ws
.kind
== TARGET_WAITKIND_VFORKED
)
2089 if (ecs
->random_signal
) /* I.e., no catchpoint triggered for this. */
2091 stop_signal
= TARGET_SIGNAL_0
;
2095 else if (ecs
->ws
.kind
== TARGET_WAITKIND_EXECD
)
2097 pending_follow
.kind
= ecs
->ws
.kind
;
2098 if (ecs
->random_signal
) /* I.e., no catchpoint triggered for this. */
2101 stop_signal
= TARGET_SIGNAL_0
;
2106 /* For the program's own signals, act according to
2107 the signal handling tables. */
2109 if (ecs
->random_signal
)
2111 /* Signal not for debugging purposes. */
2114 stopped_by_random_signal
= 1;
2116 if (signal_print
[stop_signal
])
2119 target_terminal_ours_for_output ();
2121 printf_filtered ("\nProgram received signal ");
2122 annotate_signal_name ();
2123 printf_filtered ("%s", target_signal_to_name (stop_signal
));
2124 annotate_signal_name_end ();
2125 printf_filtered (", ");
2126 annotate_signal_string ();
2127 printf_filtered ("%s", target_signal_to_string (stop_signal
));
2128 annotate_signal_string_end ();
2129 printf_filtered (".\n");
2130 gdb_flush (gdb_stdout
);
2132 if (signal_stop
[stop_signal
])
2134 /* If not going to stop, give terminal back
2135 if we took it away. */
2137 target_terminal_inferior ();
2139 /* Clear the signal if it should not be passed. */
2140 if (signal_program
[stop_signal
] == 0)
2141 stop_signal
= TARGET_SIGNAL_0
;
2143 /* If we're in the middle of a "next" command, let the code for
2144 stepping over a function handle this. pai/1997-09-10
2146 A previous comment here suggested it was possible to change
2147 this to jump to keep_going in all cases. */
2149 if (step_over_calls
> 0)
2150 goto step_over_function
;
2152 goto check_sigtramp2
;
2155 /* Handle cases caused by hitting a breakpoint. */
2157 CORE_ADDR jmp_buf_pc
;
2158 struct bpstat_what what
;
2160 what
= bpstat_what (stop_bpstat
);
2162 if (what
.call_dummy
)
2164 stop_stack_dummy
= 1;
2166 trap_expected_after_continue
= 1;
2170 switch (what
.main_action
)
2172 case BPSTAT_WHAT_SET_LONGJMP_RESUME
:
2173 /* If we hit the breakpoint at longjmp, disable it for the
2174 duration of this command. Then, install a temporary
2175 breakpoint at the target of the jmp_buf. */
2176 disable_longjmp_breakpoint ();
2177 remove_breakpoints ();
2178 breakpoints_inserted
= 0;
2179 if (!GET_LONGJMP_TARGET (&jmp_buf_pc
))
2182 /* Need to blow away step-resume breakpoint, as it
2183 interferes with us */
2184 if (step_resume_breakpoint
!= NULL
)
2186 delete_breakpoint (step_resume_breakpoint
);
2187 step_resume_breakpoint
= NULL
;
2189 /* Not sure whether we need to blow this away too, but probably
2190 it is like the step-resume breakpoint. */
2191 if (through_sigtramp_breakpoint
!= NULL
)
2193 delete_breakpoint (through_sigtramp_breakpoint
);
2194 through_sigtramp_breakpoint
= NULL
;
2198 /* FIXME - Need to implement nested temporary breakpoints */
2199 if (step_over_calls
> 0)
2200 set_longjmp_resume_breakpoint (jmp_buf_pc
,
2201 get_current_frame ());
2204 set_longjmp_resume_breakpoint (jmp_buf_pc
, NULL
);
2205 ecs
->handling_longjmp
= 1; /* FIXME */
2208 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
:
2209 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE
:
2210 remove_breakpoints ();
2211 breakpoints_inserted
= 0;
2213 /* FIXME - Need to implement nested temporary breakpoints */
2215 && (INNER_THAN (FRAME_FP (get_current_frame ()),
2216 step_frame_address
)))
2218 ecs
->another_trap
= 1;
2222 disable_longjmp_breakpoint ();
2223 ecs
->handling_longjmp
= 0; /* FIXME */
2224 if (what
.main_action
== BPSTAT_WHAT_CLEAR_LONGJMP_RESUME
)
2226 /* else fallthrough */
2228 case BPSTAT_WHAT_SINGLE
:
2229 if (breakpoints_inserted
)
2231 thread_step_needed
= 1;
2232 remove_breakpoints ();
2234 breakpoints_inserted
= 0;
2235 ecs
->another_trap
= 1;
2236 /* Still need to check other stuff, at least the case
2237 where we are stepping and step out of the right range. */
2240 case BPSTAT_WHAT_STOP_NOISY
:
2241 stop_print_frame
= 1;
2243 /* We are about to nuke the step_resume_breakpoint and
2244 through_sigtramp_breakpoint via the cleanup chain, so
2245 no need to worry about it here. */
2249 case BPSTAT_WHAT_STOP_SILENT
:
2250 stop_print_frame
= 0;
2252 /* We are about to nuke the step_resume_breakpoint and
2253 through_sigtramp_breakpoint via the cleanup chain, so
2254 no need to worry about it here. */
2258 case BPSTAT_WHAT_STEP_RESUME
:
2259 /* This proably demands a more elegant solution, but, yeah
2262 This function's use of the simple variable
2263 step_resume_breakpoint doesn't seem to accomodate
2264 simultaneously active step-resume bp's, although the
2265 breakpoint list certainly can.
2267 If we reach here and step_resume_breakpoint is already
2268 NULL, then apparently we have multiple active
2269 step-resume bp's. We'll just delete the breakpoint we
2270 stopped at, and carry on. */
2271 if (step_resume_breakpoint
== NULL
)
2273 step_resume_breakpoint
=
2274 bpstat_find_step_resume_breakpoint (stop_bpstat
);
2276 delete_breakpoint (step_resume_breakpoint
);
2277 step_resume_breakpoint
= NULL
;
2280 case BPSTAT_WHAT_THROUGH_SIGTRAMP
:
2281 if (through_sigtramp_breakpoint
)
2282 delete_breakpoint (through_sigtramp_breakpoint
);
2283 through_sigtramp_breakpoint
= NULL
;
2285 /* If were waiting for a trap, hitting the step_resume_break
2286 doesn't count as getting it. */
2288 ecs
->another_trap
= 1;
2291 case BPSTAT_WHAT_CHECK_SHLIBS
:
2292 case BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK
:
2295 /* Remove breakpoints, we eventually want to step over the
2296 shlib event breakpoint, and SOLIB_ADD might adjust
2297 breakpoint addresses via breakpoint_re_set. */
2298 if (breakpoints_inserted
)
2299 remove_breakpoints ();
2300 breakpoints_inserted
= 0;
2302 /* Check for any newly added shared libraries if we're
2303 supposed to be adding them automatically. */
2306 /* Switch terminal for any messages produced by
2307 breakpoint_re_set. */
2308 target_terminal_ours_for_output ();
2309 SOLIB_ADD (NULL
, 0, NULL
);
2310 target_terminal_inferior ();
2313 /* Try to reenable shared library breakpoints, additional
2314 code segments in shared libraries might be mapped in now. */
2315 re_enable_breakpoints_in_shlibs ();
2317 /* If requested, stop when the dynamic linker notifies
2318 gdb of events. This allows the user to get control
2319 and place breakpoints in initializer routines for
2320 dynamically loaded objects (among other things). */
2321 if (stop_on_solib_events
)
2323 stop_print_frame
= 0;
2327 /* If we stopped due to an explicit catchpoint, then the
2328 (see above) call to SOLIB_ADD pulled in any symbols
2329 from a newly-loaded library, if appropriate.
2331 We do want the inferior to stop, but not where it is
2332 now, which is in the dynamic linker callback. Rather,
2333 we would like it stop in the user's program, just after
2334 the call that caused this catchpoint to trigger. That
2335 gives the user a more useful vantage from which to
2336 examine their program's state. */
2337 else if (what
.main_action
== BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK
)
2339 /* ??rehrauer: If I could figure out how to get the
2340 right return PC from here, we could just set a temp
2341 breakpoint and resume. I'm not sure we can without
2342 cracking open the dld's shared libraries and sniffing
2343 their unwind tables and text/data ranges, and that's
2344 not a terribly portable notion.
2346 Until that time, we must step the inferior out of the
2347 dld callback, and also out of the dld itself (and any
2348 code or stubs in libdld.sl, such as "shl_load" and
2349 friends) until we reach non-dld code. At that point,
2350 we can stop stepping. */
2351 bpstat_get_triggered_catchpoints (stop_bpstat
,
2352 &ecs
->stepping_through_solib_catchpoints
);
2353 ecs
->stepping_through_solib_after_catch
= 1;
2355 /* Be sure to lift all breakpoints, so the inferior does
2356 actually step past this point... */
2357 ecs
->another_trap
= 1;
2362 /* We want to step over this breakpoint, then keep going. */
2363 ecs
->another_trap
= 1;
2370 case BPSTAT_WHAT_LAST
:
2371 /* Not a real code, but listed here to shut up gcc -Wall. */
2373 case BPSTAT_WHAT_KEEP_CHECKING
:
2378 /* We come here if we hit a breakpoint but should not
2379 stop for it. Possibly we also were stepping
2380 and should stop for that. So fall through and
2381 test for stepping. But, if not stepping,
2384 /* Are we stepping to get the inferior out of the dynamic
2385 linker's hook (and possibly the dld itself) after catching
2387 if (ecs
->stepping_through_solib_after_catch
)
2389 #if defined(SOLIB_ADD)
2390 /* Have we reached our destination? If not, keep going. */
2391 if (SOLIB_IN_DYNAMIC_LINKER (ecs
->pid
, stop_pc
))
2393 ecs
->another_trap
= 1;
2397 /* Else, stop and report the catchpoint(s) whose triggering
2398 caused us to begin stepping. */
2399 ecs
->stepping_through_solib_after_catch
= 0;
2400 bpstat_clear (&stop_bpstat
);
2401 stop_bpstat
= bpstat_copy (ecs
->stepping_through_solib_catchpoints
);
2402 bpstat_clear (&ecs
->stepping_through_solib_catchpoints
);
2403 stop_print_frame
= 1;
2407 if (!CALL_DUMMY_BREAKPOINT_OFFSET_P
)
2409 /* This is the old way of detecting the end of the stack dummy.
2410 An architecture which defines CALL_DUMMY_BREAKPOINT_OFFSET gets
2411 handled above. As soon as we can test it on all of them, all
2412 architectures should define it. */
2414 /* If this is the breakpoint at the end of a stack dummy,
2415 just stop silently, unless the user was doing an si/ni, in which
2416 case she'd better know what she's doing. */
2418 if (CALL_DUMMY_HAS_COMPLETED (stop_pc
, read_sp (),
2419 FRAME_FP (get_current_frame ()))
2422 stop_print_frame
= 0;
2423 stop_stack_dummy
= 1;
2425 trap_expected_after_continue
= 1;
2431 if (step_resume_breakpoint
)
2432 /* Having a step-resume breakpoint overrides anything
2433 else having to do with stepping commands until
2434 that breakpoint is reached. */
2435 /* I'm not sure whether this needs to be check_sigtramp2 or
2436 whether it could/should be keep_going. */
2437 goto check_sigtramp2
;
2439 if (step_range_end
== 0)
2440 /* Likewise if we aren't even stepping. */
2441 /* I'm not sure whether this needs to be check_sigtramp2 or
2442 whether it could/should be keep_going. */
2443 goto check_sigtramp2
;
2445 /* If stepping through a line, keep going if still within it.
2447 Note that step_range_end is the address of the first instruction
2448 beyond the step range, and NOT the address of the last instruction
2450 if (stop_pc
>= step_range_start
2451 && stop_pc
< step_range_end
)
2453 /* We might be doing a BPSTAT_WHAT_SINGLE and getting a signal.
2454 So definately need to check for sigtramp here. */
2455 goto check_sigtramp2
;
2458 /* We stepped out of the stepping range. */
2460 /* If we are stepping at the source level and entered the runtime
2461 loader dynamic symbol resolution code, we keep on single stepping
2462 until we exit the run time loader code and reach the callee's
2464 if (step_over_calls
< 0 && IN_SOLIB_DYNSYM_RESOLVE_CODE (stop_pc
))
2467 /* We can't update step_sp every time through the loop, because
2468 reading the stack pointer would slow down stepping too much.
2469 But we can update it every time we leave the step range. */
2470 ecs
->update_step_sp
= 1;
2472 /* Did we just take a signal? */
2473 if (IN_SIGTRAMP (stop_pc
, ecs
->stop_func_name
)
2474 && !IN_SIGTRAMP (prev_pc
, prev_func_name
)
2475 && INNER_THAN (read_sp (), step_sp
))
2477 /* We've just taken a signal; go until we are back to
2478 the point where we took it and one more. */
2480 /* Note: The test above succeeds not only when we stepped
2481 into a signal handler, but also when we step past the last
2482 statement of a signal handler and end up in the return stub
2483 of the signal handler trampoline. To distinguish between
2484 these two cases, check that the frame is INNER_THAN the
2485 previous one below. pai/1997-09-11 */
2489 CORE_ADDR current_frame
= FRAME_FP (get_current_frame ());
2491 if (INNER_THAN (current_frame
, step_frame_address
))
2493 /* We have just taken a signal; go until we are back to
2494 the point where we took it and one more. */
2496 /* This code is needed at least in the following case:
2497 The user types "next" and then a signal arrives (before
2498 the "next" is done). */
2500 /* Note that if we are stopped at a breakpoint, then we need
2501 the step_resume breakpoint to override any breakpoints at
2502 the same location, so that we will still step over the
2503 breakpoint even though the signal happened. */
2504 struct symtab_and_line sr_sal
;
2507 sr_sal
.symtab
= NULL
;
2509 sr_sal
.pc
= prev_pc
;
2510 /* We could probably be setting the frame to
2511 step_frame_address; I don't think anyone thought to
2513 step_resume_breakpoint
=
2514 set_momentary_breakpoint (sr_sal
, NULL
, bp_step_resume
);
2515 if (breakpoints_inserted
)
2516 insert_breakpoints ();
2520 /* We just stepped out of a signal handler and into
2521 its calling trampoline.
2523 Normally, we'd jump to step_over_function from
2524 here, but for some reason GDB can't unwind the
2525 stack correctly to find the real PC for the point
2526 user code where the signal trampoline will return
2527 -- FRAME_SAVED_PC fails, at least on HP-UX 10.20.
2528 But signal trampolines are pretty small stubs of
2529 code, anyway, so it's OK instead to just
2530 single-step out. Note: assuming such trampolines
2531 don't exhibit recursion on any platform... */
2532 find_pc_partial_function (stop_pc
, &ecs
->stop_func_name
,
2533 &ecs
->stop_func_start
,
2534 &ecs
->stop_func_end
);
2535 /* Readjust stepping range */
2536 step_range_start
= ecs
->stop_func_start
;
2537 step_range_end
= ecs
->stop_func_end
;
2538 ecs
->stepping_through_sigtramp
= 1;
2543 /* If this is stepi or nexti, make sure that the stepping range
2544 gets us past that instruction. */
2545 if (step_range_end
== 1)
2546 /* FIXME: Does this run afoul of the code below which, if
2547 we step into the middle of a line, resets the stepping
2549 step_range_end
= (step_range_start
= prev_pc
) + 1;
2551 ecs
->remove_breakpoints_on_following_step
= 1;
2555 if (stop_pc
== ecs
->stop_func_start
/* Quick test */
2556 || (in_prologue (stop_pc
, ecs
->stop_func_start
) &&
2557 !IN_SOLIB_RETURN_TRAMPOLINE (stop_pc
, ecs
->stop_func_name
))
2558 || IN_SOLIB_CALL_TRAMPOLINE (stop_pc
, ecs
->stop_func_name
)
2559 || ecs
->stop_func_name
== 0)
2561 /* It's a subroutine call. */
2563 if (step_over_calls
== 0)
2565 /* I presume that step_over_calls is only 0 when we're
2566 supposed to be stepping at the assembly language level
2567 ("stepi"). Just stop. */
2572 if (step_over_calls
> 0 || IGNORE_HELPER_CALL (stop_pc
))
2573 /* We're doing a "next". */
2574 goto step_over_function
;
2576 /* If we are in a function call trampoline (a stub between
2577 the calling routine and the real function), locate the real
2578 function. That's what tells us (a) whether we want to step
2579 into it at all, and (b) what prologue we want to run to
2580 the end of, if we do step into it. */
2581 tmp
= SKIP_TRAMPOLINE_CODE (stop_pc
);
2583 ecs
->stop_func_start
= tmp
;
2586 tmp
= DYNAMIC_TRAMPOLINE_NEXTPC (stop_pc
);
2589 struct symtab_and_line xxx
;
2590 /* Why isn't this s_a_l called "sr_sal", like all of the
2591 other s_a_l's where this code is duplicated? */
2592 INIT_SAL (&xxx
); /* initialize to zeroes */
2594 xxx
.section
= find_pc_overlay (xxx
.pc
);
2595 step_resume_breakpoint
=
2596 set_momentary_breakpoint (xxx
, NULL
, bp_step_resume
);
2597 insert_breakpoints ();
2602 /* If we have line number information for the function we
2603 are thinking of stepping into, step into it.
2605 If there are several symtabs at that PC (e.g. with include
2606 files), just want to know whether *any* of them have line
2607 numbers. find_pc_line handles this. */
2609 struct symtab_and_line tmp_sal
;
2611 tmp_sal
= find_pc_line (ecs
->stop_func_start
, 0);
2612 if (tmp_sal
.line
!= 0)
2613 goto step_into_function
;
2617 /* A subroutine call has happened. */
2619 /* Set a special breakpoint after the return */
2620 struct symtab_and_line sr_sal
;
2623 sr_sal
.symtab
= NULL
;
2626 /* If we came here after encountering a signal in the middle of
2627 a "next", use the stashed-away previous frame pc */
2629 = stopped_by_random_signal
2631 : ADDR_BITS_REMOVE (SAVED_PC_AFTER_CALL (get_current_frame ()));
2633 step_resume_breakpoint
=
2634 set_momentary_breakpoint (sr_sal
,
2635 stopped_by_random_signal
?
2636 NULL
: get_current_frame (),
2639 /* We've just entered a callee, and we wish to resume until
2640 it returns to the caller. Setting a step_resume bp on
2641 the return PC will catch a return from the callee.
2643 However, if the callee is recursing, we want to be
2644 careful not to catch returns of those recursive calls,
2645 but of THIS instance of the call.
2647 To do this, we set the step_resume bp's frame to our
2648 current caller's frame (step_frame_address, which is
2649 set by the "next" or "until" command, before execution
2652 But ... don't do it if we're single-stepping out of a
2653 sigtramp, because the reason we're single-stepping is
2654 precisely because unwinding is a problem (HP-UX 10.20,
2655 e.g.) and the frame address is likely to be incorrect.
2656 No danger of sigtramp recursion. */
2658 if (ecs
->stepping_through_sigtramp
)
2660 step_resume_breakpoint
->frame
= (CORE_ADDR
) NULL
;
2661 ecs
->stepping_through_sigtramp
= 0;
2663 else if (!IN_SOLIB_DYNSYM_RESOLVE_CODE (sr_sal
.pc
))
2664 step_resume_breakpoint
->frame
= step_frame_address
;
2666 if (breakpoints_inserted
)
2667 insert_breakpoints ();
2672 /* Subroutine call with source code we should not step over.
2673 Do step to the first line of code in it. */
2677 s
= find_pc_symtab (stop_pc
);
2678 if (s
&& s
->language
!= language_asm
)
2679 ecs
->stop_func_start
= SKIP_PROLOGUE (ecs
->stop_func_start
);
2681 ecs
->sal
= find_pc_line (ecs
->stop_func_start
, 0);
2682 /* Use the step_resume_break to step until
2683 the end of the prologue, even if that involves jumps
2684 (as it seems to on the vax under 4.2). */
2685 /* If the prologue ends in the middle of a source line,
2686 continue to the end of that source line (if it is still
2687 within the function). Otherwise, just go to end of prologue. */
2688 #ifdef PROLOGUE_FIRSTLINE_OVERLAP
2689 /* no, don't either. It skips any code that's
2690 legitimately on the first line. */
2692 if (ecs
->sal
.end
&& ecs
->sal
.pc
!= ecs
->stop_func_start
&& ecs
->sal
.end
< ecs
->stop_func_end
)
2693 ecs
->stop_func_start
= ecs
->sal
.end
;
2696 if (ecs
->stop_func_start
== stop_pc
)
2698 /* We are already there: stop now. */
2703 /* Put the step-breakpoint there and go until there. */
2705 struct symtab_and_line sr_sal
;
2707 INIT_SAL (&sr_sal
); /* initialize to zeroes */
2708 sr_sal
.pc
= ecs
->stop_func_start
;
2709 sr_sal
.section
= find_pc_overlay (ecs
->stop_func_start
);
2710 /* Do not specify what the fp should be when we stop
2711 since on some machines the prologue
2712 is where the new fp value is established. */
2713 step_resume_breakpoint
=
2714 set_momentary_breakpoint (sr_sal
, NULL
, bp_step_resume
);
2715 if (breakpoints_inserted
)
2716 insert_breakpoints ();
2718 /* And make sure stepping stops right away then. */
2719 step_range_end
= step_range_start
;
2724 /* We've wandered out of the step range. */
2726 ecs
->sal
= find_pc_line (stop_pc
, 0);
2728 if (step_range_end
== 1)
2730 /* It is stepi or nexti. We always want to stop stepping after
2736 /* If we're in the return path from a shared library trampoline,
2737 we want to proceed through the trampoline when stepping. */
2738 if (IN_SOLIB_RETURN_TRAMPOLINE (stop_pc
, ecs
->stop_func_name
))
2742 /* Determine where this trampoline returns. */
2743 tmp
= SKIP_TRAMPOLINE_CODE (stop_pc
);
2745 /* Only proceed through if we know where it's going. */
2748 /* And put the step-breakpoint there and go until there. */
2749 struct symtab_and_line sr_sal
;
2751 INIT_SAL (&sr_sal
); /* initialize to zeroes */
2753 sr_sal
.section
= find_pc_overlay (sr_sal
.pc
);
2754 /* Do not specify what the fp should be when we stop
2755 since on some machines the prologue
2756 is where the new fp value is established. */
2757 step_resume_breakpoint
=
2758 set_momentary_breakpoint (sr_sal
, NULL
, bp_step_resume
);
2759 if (breakpoints_inserted
)
2760 insert_breakpoints ();
2762 /* Restart without fiddling with the step ranges or
2768 if (ecs
->sal
.line
== 0)
2770 /* We have no line number information. That means to stop
2771 stepping (does this always happen right after one instruction,
2772 when we do "s" in a function with no line numbers,
2773 or can this happen as a result of a return or longjmp?). */
2778 if ((stop_pc
== ecs
->sal
.pc
)
2779 && (ecs
->current_line
!= ecs
->sal
.line
|| ecs
->current_symtab
!= ecs
->sal
.symtab
))
2781 /* We are at the start of a different line. So stop. Note that
2782 we don't stop if we step into the middle of a different line.
2783 That is said to make things like for (;;) statements work
2789 /* We aren't done stepping.
2791 Optimize by setting the stepping range to the line.
2792 (We might not be in the original line, but if we entered a
2793 new line in mid-statement, we continue stepping. This makes
2794 things like for(;;) statements work better.) */
2796 if (ecs
->stop_func_end
&& ecs
->sal
.end
>= ecs
->stop_func_end
)
2798 /* If this is the last line of the function, don't keep stepping
2799 (it would probably step us out of the function).
2800 This is particularly necessary for a one-line function,
2801 in which after skipping the prologue we better stop even though
2802 we will be in mid-line. */
2806 step_range_start
= ecs
->sal
.pc
;
2807 step_range_end
= ecs
->sal
.end
;
2808 step_frame_address
= FRAME_FP (get_current_frame ());
2809 ecs
->current_line
= ecs
->sal
.line
;
2810 ecs
->current_symtab
= ecs
->sal
.symtab
;
2812 /* In the case where we just stepped out of a function into the middle
2813 of a line of the caller, continue stepping, but step_frame_address
2814 must be modified to current frame */
2816 CORE_ADDR current_frame
= FRAME_FP (get_current_frame ());
2817 if (!(INNER_THAN (current_frame
, step_frame_address
)))
2818 step_frame_address
= current_frame
;
2826 && IN_SIGTRAMP (stop_pc
, ecs
->stop_func_name
)
2827 && !IN_SIGTRAMP (prev_pc
, prev_func_name
)
2828 && INNER_THAN (read_sp (), step_sp
))
2830 /* What has happened here is that we have just stepped the inferior
2831 with a signal (because it is a signal which shouldn't make
2832 us stop), thus stepping into sigtramp.
2834 So we need to set a step_resume_break_address breakpoint
2835 and continue until we hit it, and then step. FIXME: This should
2836 be more enduring than a step_resume breakpoint; we should know
2837 that we will later need to keep going rather than re-hitting
2838 the breakpoint here (see testsuite/gdb.t06/signals.exp where
2839 it says "exceedingly difficult"). */
2840 struct symtab_and_line sr_sal
;
2842 INIT_SAL (&sr_sal
); /* initialize to zeroes */
2843 sr_sal
.pc
= prev_pc
;
2844 sr_sal
.section
= find_pc_overlay (sr_sal
.pc
);
2845 /* We perhaps could set the frame if we kept track of what
2846 the frame corresponding to prev_pc was. But we don't,
2848 through_sigtramp_breakpoint
=
2849 set_momentary_breakpoint (sr_sal
, NULL
, bp_through_sigtramp
);
2850 if (breakpoints_inserted
)
2851 insert_breakpoints ();
2853 ecs
->remove_breakpoints_on_following_step
= 1;
2854 ecs
->another_trap
= 1;
2858 /* Come to this label when you need to resume the inferior.
2859 It's really much cleaner to do a goto than a maze of if-else
2862 /* ??rehrauer: ttrace on HP-UX theoretically allows one to debug
2863 a vforked child beetween its creation and subsequent exit or
2864 call to exec(). However, I had big problems in this rather
2865 creaky exec engine, getting that to work. The fundamental
2866 problem is that I'm trying to debug two processes via an
2867 engine that only understands a single process with possibly
2870 Hence, this spot is known to have problems when
2871 target_can_follow_vfork_prior_to_exec returns 1. */
2873 /* Save the pc before execution, to compare with pc after stop. */
2874 prev_pc
= read_pc (); /* Might have been DECR_AFTER_BREAK */
2875 prev_func_start
= ecs
->stop_func_start
; /* Ok, since if DECR_PC_AFTER
2876 BREAK is defined, the
2877 original pc would not have
2878 been at the start of a
2880 prev_func_name
= ecs
->stop_func_name
;
2882 if (ecs
->update_step_sp
)
2883 step_sp
= read_sp ();
2884 ecs
->update_step_sp
= 0;
2886 /* If we did not do break;, it means we should keep
2887 running the inferior and not return to debugger. */
2889 if (trap_expected
&& stop_signal
!= TARGET_SIGNAL_TRAP
)
2891 /* We took a signal (which we are supposed to pass through to
2892 the inferior, else we'd have done a break above) and we
2893 haven't yet gotten our trap. Simply continue. */
2894 resume (currently_stepping (ecs
), stop_signal
);
2898 /* Either the trap was not expected, but we are continuing
2899 anyway (the user asked that this signal be passed to the
2902 The signal was SIGTRAP, e.g. it was our signal, but we
2903 decided we should resume from it.
2905 We're going to run this baby now!
2907 Insert breakpoints now, unless we are trying
2908 to one-proceed past a breakpoint. */
2909 /* If we've just finished a special step resume and we don't
2910 want to hit a breakpoint, pull em out. */
2911 if (step_resume_breakpoint
== NULL
2912 && through_sigtramp_breakpoint
== NULL
2913 && ecs
->remove_breakpoints_on_following_step
)
2915 ecs
->remove_breakpoints_on_following_step
= 0;
2916 remove_breakpoints ();
2917 breakpoints_inserted
= 0;
2919 else if (!breakpoints_inserted
&&
2920 (through_sigtramp_breakpoint
!= NULL
|| !ecs
->another_trap
))
2922 breakpoints_failed
= insert_breakpoints ();
2923 if (breakpoints_failed
)
2925 breakpoints_inserted
= 1;
2928 trap_expected
= ecs
->another_trap
;
2930 /* Do not deliver SIGNAL_TRAP (except when the user
2931 explicitly specifies that such a signal should be
2932 delivered to the target program).
2934 Typically, this would occure when a user is debugging a
2935 target monitor on a simulator: the target monitor sets a
2936 breakpoint; the simulator encounters this break-point and
2937 halts the simulation handing control to GDB; GDB, noteing
2938 that the break-point isn't valid, returns control back to
2939 the simulator; the simulator then delivers the hardware
2940 equivalent of a SIGNAL_TRAP to the program being
2943 if (stop_signal
== TARGET_SIGNAL_TRAP
2944 && !signal_program
[stop_signal
])
2945 stop_signal
= TARGET_SIGNAL_0
;
2947 #ifdef SHIFT_INST_REGS
2948 /* I'm not sure when this following segment applies. I do know,
2949 now, that we shouldn't rewrite the regs when we were stopped
2950 by a random signal from the inferior process. */
2951 /* FIXME: Shouldn't this be based on the valid bit of the SXIP?
2952 (this is only used on the 88k). */
2954 if (!bpstat_explains_signal (stop_bpstat
)
2955 && (stop_signal
!= TARGET_SIGNAL_CHLD
)
2956 && !stopped_by_random_signal
)
2958 #endif /* SHIFT_INST_REGS */
2960 resume (currently_stepping (ecs
), stop_signal
);
2963 /* Former continues in the main loop goto here. */
2965 /* This used to be at the top of the loop. */
2966 if (ecs
->infwait_state
== infwait_normal_state
)
2968 overlay_cache_invalid
= 1;
2970 /* We have to invalidate the registers BEFORE calling
2971 target_wait because they can be loaded from the target
2972 while in target_wait. This makes remote debugging a bit
2973 more efficient for those targets that provide critical
2974 registers as part of their normal status mechanism. */
2976 registers_changed ();
2977 ecs
->waiton_pid
= -1;
2978 ecs
->wp
= &(ecs
->ws
);
2980 /* This is the old end of the while loop. Let everybody know
2981 we want to wait for the inferior some more and get called
2983 ecs
->wait_some_more
= 1;
2987 /* Former breaks in the main loop goto here. */
2991 if (target_has_execution
)
2993 /* Are we stopping for a vfork event? We only stop when we see
2994 the child's event. However, we may not yet have seen the
2995 parent's event. And, inferior_pid is still set to the parent's
2996 pid, until we resume again and follow either the parent or child.
2998 To ensure that we can really touch inferior_pid (aka, the
2999 parent process) -- which calls to functions like read_pc
3000 implicitly do -- wait on the parent if necessary. */
3001 if ((pending_follow
.kind
== TARGET_WAITKIND_VFORKED
)
3002 && !pending_follow
.fork_event
.saw_parent_fork
)
3008 if (target_wait_hook
)
3009 parent_pid
= target_wait_hook (-1, &(ecs
->ws
));
3011 parent_pid
= target_wait (-1, &(ecs
->ws
));
3013 while (parent_pid
!= inferior_pid
);
3016 /* Assuming the inferior still exists, set these up for next
3017 time, just like we did above if we didn't break out of the
3019 prev_pc
= read_pc ();
3020 prev_func_start
= ecs
->stop_func_start
;
3021 prev_func_name
= ecs
->stop_func_name
;
3023 /* Let callers know we don't want to wait for the inferior anymore. */
3024 ecs
->wait_some_more
= 0;
3027 /* Are we in the middle of stepping? */
3030 currently_stepping (ecs
)
3031 struct execution_control_state
*ecs
;
3033 return ((through_sigtramp_breakpoint
== NULL
3034 && !ecs
->handling_longjmp
3035 && ((step_range_end
&& step_resume_breakpoint
== NULL
)
3037 || ecs
->stepping_through_solib_after_catch
3038 || bpstat_should_step ());
3041 /* This function returns TRUE if ep is an internal breakpoint
3042 set to catch generic shared library (aka dynamically-linked
3043 library) events. (This is *NOT* the same as a catchpoint for a
3044 shlib event. The latter is something a user can set; this is
3045 something gdb sets for its own use, and isn't ever shown to a
3048 is_internal_shlib_eventpoint (ep
)
3049 struct breakpoint
*ep
;
3052 (ep
->type
== bp_shlib_event
)
3056 /* This function returns TRUE if bs indicates that the inferior
3057 stopped due to a shared library (aka dynamically-linked library)
3060 stopped_for_internal_shlib_event (bs
)
3063 /* Note that multiple eventpoints may've caused the stop. Any
3064 that are associated with shlib events will be accepted. */
3065 for (; bs
!= NULL
; bs
= bs
->next
)
3067 if ((bs
->breakpoint_at
!= NULL
)
3068 && is_internal_shlib_eventpoint (bs
->breakpoint_at
))
3072 /* If we get here, then no candidate was found. */
3076 /* This function returns TRUE if bs indicates that the inferior
3077 stopped due to a shared library (aka dynamically-linked library)
3078 event caught by a catchpoint.
3080 If TRUE, cp_p is set to point to the catchpoint.
3082 Else, the value of cp_p is undefined. */
3084 stopped_for_shlib_catchpoint (bs
, cp_p
)
3086 struct breakpoint
**cp_p
;
3088 /* Note that multiple eventpoints may've caused the stop. Any
3089 that are associated with shlib events will be accepted. */
3092 for (; bs
!= NULL
; bs
= bs
->next
)
3094 if ((bs
->breakpoint_at
!= NULL
)
3095 && ep_is_shlib_catchpoint (bs
->breakpoint_at
))
3097 *cp_p
= bs
->breakpoint_at
;
3102 /* If we get here, then no candidate was found. */
3107 /* Reset proper settings after an asynchronous command has finished.
3108 If the execution command was in synchronous mode, register stdin
3109 with the event loop, and reset the prompt. */
3111 complete_execution ()
3113 extern cleanup_sigint_signal_handler
PARAMS ((void));
3117 add_file_handler (input_fd
, (file_handler_func
*) call_readline
, 0);
3120 cleanup_sigint_signal_handler ();
3121 display_gdb_prompt (0);
3123 target_executing
= 0;
3126 /* Here to return control to GDB when the inferior stops for real.
3127 Print appropriate messages, remove breakpoints, give terminal our modes.
3129 STOP_PRINT_FRAME nonzero means print the executing frame
3130 (pc, function, args, file, line number and line text).
3131 BREAKPOINTS_FAILED nonzero means stop was due to error
3132 attempting to insert breakpoints. */
3137 /* As with the notification of thread events, we want to delay
3138 notifying the user that we've switched thread context until
3139 the inferior actually stops.
3141 (Note that there's no point in saying anything if the inferior
3143 if (may_switch_from_inferior_pid
3144 && (switched_from_inferior_pid
!= inferior_pid
)
3145 && target_has_execution
)
3147 target_terminal_ours_for_output ();
3148 printf_filtered ("[Switched to %s]\n",
3149 target_pid_or_tid_to_str (inferior_pid
));
3150 switched_from_inferior_pid
= inferior_pid
;
3153 /* Make sure that the current_frame's pc is correct. This
3154 is a correction for setting up the frame info before doing
3155 DECR_PC_AFTER_BREAK */
3156 if (target_has_execution
&& get_current_frame ())
3157 (get_current_frame ())->pc
= read_pc ();
3159 if (breakpoints_failed
)
3161 target_terminal_ours_for_output ();
3162 print_sys_errmsg ("ptrace", breakpoints_failed
);
3163 printf_filtered ("Stopped; cannot insert breakpoints.\n\
3164 The same program may be running in another process.\n");
3167 if (target_has_execution
&& breakpoints_inserted
)
3169 if (remove_breakpoints ())
3171 target_terminal_ours_for_output ();
3172 printf_filtered ("Cannot remove breakpoints because ");
3173 printf_filtered ("program is no longer writable.\n");
3174 printf_filtered ("It might be running in another process.\n");
3175 printf_filtered ("Further execution is probably impossible.\n");
3178 breakpoints_inserted
= 0;
3180 /* Delete the breakpoint we stopped at, if it wants to be deleted.
3181 Delete any breakpoint that is to be deleted at the next stop. */
3183 breakpoint_auto_delete (stop_bpstat
);
3185 /* If an auto-display called a function and that got a signal,
3186 delete that auto-display to avoid an infinite recursion. */
3188 if (stopped_by_random_signal
)
3189 disable_current_display ();
3191 /* Don't print a message if in the middle of doing a "step n"
3192 operation for n > 1 */
3193 if (step_multi
&& stop_step
)
3196 target_terminal_ours ();
3198 /* Did we stop because the user set the stop_on_solib_events
3199 variable? (If so, we report this as a generic, "Stopped due
3200 to shlib event" message.) */
3201 if (stopped_for_internal_shlib_event (stop_bpstat
))
3203 printf_filtered ("Stopped due to shared library event\n");
3206 /* Look up the hook_stop and run it if it exists. */
3208 if (stop_command
&& stop_command
->hook
)
3210 catch_errors (hook_stop_stub
, stop_command
->hook
,
3211 "Error while running hook_stop:\n", RETURN_MASK_ALL
);
3214 if (!target_has_stack
)
3220 /* Select innermost stack frame - i.e., current frame is frame 0,
3221 and current location is based on that.
3222 Don't do this on return from a stack dummy routine,
3223 or if the program has exited. */
3225 if (!stop_stack_dummy
)
3227 select_frame (get_current_frame (), 0);
3229 /* Print current location without a level number, if
3230 we have changed functions or hit a breakpoint.
3231 Print source line if we have one.
3232 bpstat_print() contains the logic deciding in detail
3233 what to print, based on the event(s) that just occurred. */
3235 if (stop_print_frame
)
3240 bpstat_ret
= bpstat_print (stop_bpstat
);
3241 /* bpstat_print() returned one of:
3242 -1: Didn't print anything
3243 0: Printed preliminary "Breakpoint n, " message, desires
3245 1: Printed something, don't tack on location */
3247 if (bpstat_ret
== -1)
3249 && step_frame_address
== FRAME_FP (get_current_frame ())
3250 && step_start_function
== find_pc_function (stop_pc
))
3251 source_flag
= -1; /* finished step, just print source line */
3253 source_flag
= 1; /* print location and source line */
3254 else if (bpstat_ret
== 0) /* hit bpt, desire location */
3255 source_flag
= 1; /* print location and source line */
3256 else /* bpstat_ret == 1, hit bpt, do not desire location */
3257 source_flag
= -1; /* just print source line */
3259 /* The behavior of this routine with respect to the source
3261 -1: Print only source line
3262 0: Print only location
3263 1: Print location and source line */
3264 show_and_print_stack_frame (selected_frame
, -1, source_flag
);
3266 /* Display the auto-display expressions. */
3271 /* Save the function value return registers, if we care.
3272 We might be about to restore their previous contents. */
3273 if (proceed_to_finish
)
3274 read_register_bytes (0, stop_registers
, REGISTER_BYTES
);
3276 if (stop_stack_dummy
)
3278 /* Pop the empty frame that contains the stack dummy.
3279 POP_FRAME ends with a setting of the current frame, so we
3280 can use that next. */
3282 /* Set stop_pc to what it was before we called the function.
3283 Can't rely on restore_inferior_status because that only gets
3284 called if we don't stop in the called function. */
3285 stop_pc
= read_pc ();
3286 select_frame (get_current_frame (), 0);
3290 TUIDO (((TuiOpaqueFuncPtr
) tui_vCheckDataValues
, selected_frame
));
3293 annotate_stopped ();
3297 hook_stop_stub (cmd
)
3300 execute_user_command ((struct cmd_list_element
*) cmd
, 0);
3305 signal_stop_state (signo
)
3308 return signal_stop
[signo
];
3312 signal_print_state (signo
)
3315 return signal_print
[signo
];
3319 signal_pass_state (signo
)
3322 return signal_program
[signo
];
3329 Signal Stop\tPrint\tPass to program\tDescription\n");
3333 sig_print_info (oursig
)
3334 enum target_signal oursig
;
3336 char *name
= target_signal_to_name (oursig
);
3337 int name_padding
= 13 - strlen (name
);
3338 if (name_padding
<= 0)
3341 printf_filtered ("%s", name
);
3342 printf_filtered ("%*.*s ", name_padding
, name_padding
,
3344 printf_filtered ("%s\t", signal_stop
[oursig
] ? "Yes" : "No");
3345 printf_filtered ("%s\t", signal_print
[oursig
] ? "Yes" : "No");
3346 printf_filtered ("%s\t\t", signal_program
[oursig
] ? "Yes" : "No");
3347 printf_filtered ("%s\n", target_signal_to_string (oursig
));
3350 /* Specify how various signals in the inferior should be handled. */
3353 handle_command (args
, from_tty
)
3358 int digits
, wordlen
;
3359 int sigfirst
, signum
, siglast
;
3360 enum target_signal oursig
;
3363 unsigned char *sigs
;
3364 struct cleanup
*old_chain
;
3368 error_no_arg ("signal to handle");
3371 /* Allocate and zero an array of flags for which signals to handle. */
3373 nsigs
= (int) TARGET_SIGNAL_LAST
;
3374 sigs
= (unsigned char *) alloca (nsigs
);
3375 memset (sigs
, 0, nsigs
);
3377 /* Break the command line up into args. */
3379 argv
= buildargv (args
);
3384 old_chain
= make_cleanup_freeargv (argv
);
3386 /* Walk through the args, looking for signal oursigs, signal names, and
3387 actions. Signal numbers and signal names may be interspersed with
3388 actions, with the actions being performed for all signals cumulatively
3389 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
3391 while (*argv
!= NULL
)
3393 wordlen
= strlen (*argv
);
3394 for (digits
= 0; isdigit ((*argv
)[digits
]); digits
++)
3398 sigfirst
= siglast
= -1;
3400 if (wordlen
>= 1 && !strncmp (*argv
, "all", wordlen
))
3402 /* Apply action to all signals except those used by the
3403 debugger. Silently skip those. */
3406 siglast
= nsigs
- 1;
3408 else if (wordlen
>= 1 && !strncmp (*argv
, "stop", wordlen
))
3410 SET_SIGS (nsigs
, sigs
, signal_stop
);
3411 SET_SIGS (nsigs
, sigs
, signal_print
);
3413 else if (wordlen
>= 1 && !strncmp (*argv
, "ignore", wordlen
))
3415 UNSET_SIGS (nsigs
, sigs
, signal_program
);
3417 else if (wordlen
>= 2 && !strncmp (*argv
, "print", wordlen
))
3419 SET_SIGS (nsigs
, sigs
, signal_print
);
3421 else if (wordlen
>= 2 && !strncmp (*argv
, "pass", wordlen
))
3423 SET_SIGS (nsigs
, sigs
, signal_program
);
3425 else if (wordlen
>= 3 && !strncmp (*argv
, "nostop", wordlen
))
3427 UNSET_SIGS (nsigs
, sigs
, signal_stop
);
3429 else if (wordlen
>= 3 && !strncmp (*argv
, "noignore", wordlen
))
3431 SET_SIGS (nsigs
, sigs
, signal_program
);
3433 else if (wordlen
>= 4 && !strncmp (*argv
, "noprint", wordlen
))
3435 UNSET_SIGS (nsigs
, sigs
, signal_print
);
3436 UNSET_SIGS (nsigs
, sigs
, signal_stop
);
3438 else if (wordlen
>= 4 && !strncmp (*argv
, "nopass", wordlen
))
3440 UNSET_SIGS (nsigs
, sigs
, signal_program
);
3442 else if (digits
> 0)
3444 /* It is numeric. The numeric signal refers to our own
3445 internal signal numbering from target.h, not to host/target
3446 signal number. This is a feature; users really should be
3447 using symbolic names anyway, and the common ones like
3448 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
3450 sigfirst
= siglast
= (int)
3451 target_signal_from_command (atoi (*argv
));
3452 if ((*argv
)[digits
] == '-')
3455 target_signal_from_command (atoi ((*argv
) + digits
+ 1));
3457 if (sigfirst
> siglast
)
3459 /* Bet he didn't figure we'd think of this case... */
3467 oursig
= target_signal_from_name (*argv
);
3468 if (oursig
!= TARGET_SIGNAL_UNKNOWN
)
3470 sigfirst
= siglast
= (int) oursig
;
3474 /* Not a number and not a recognized flag word => complain. */
3475 error ("Unrecognized or ambiguous flag word: \"%s\".", *argv
);
3479 /* If any signal numbers or symbol names were found, set flags for
3480 which signals to apply actions to. */
3482 for (signum
= sigfirst
; signum
>= 0 && signum
<= siglast
; signum
++)
3484 switch ((enum target_signal
) signum
)
3486 case TARGET_SIGNAL_TRAP
:
3487 case TARGET_SIGNAL_INT
:
3488 if (!allsigs
&& !sigs
[signum
])
3490 if (query ("%s is used by the debugger.\n\
3491 Are you sure you want to change it? ",
3492 target_signal_to_name
3493 ((enum target_signal
) signum
)))
3499 printf_unfiltered ("Not confirmed, unchanged.\n");
3500 gdb_flush (gdb_stdout
);
3504 case TARGET_SIGNAL_0
:
3505 case TARGET_SIGNAL_DEFAULT
:
3506 case TARGET_SIGNAL_UNKNOWN
:
3507 /* Make sure that "all" doesn't print these. */
3518 target_notice_signals (inferior_pid
);
3522 /* Show the results. */
3523 sig_print_header ();
3524 for (signum
= 0; signum
< nsigs
; signum
++)
3528 sig_print_info (signum
);
3533 do_cleanups (old_chain
);
3537 xdb_handle_command (args
, from_tty
)
3542 struct cleanup
*old_chain
;
3544 /* Break the command line up into args. */
3546 argv
= buildargv (args
);
3551 old_chain
= make_cleanup_freeargv (argv
);
3552 if (argv
[1] != (char *) NULL
)
3557 bufLen
= strlen (argv
[0]) + 20;
3558 argBuf
= (char *) xmalloc (bufLen
);
3562 enum target_signal oursig
;
3564 oursig
= target_signal_from_name (argv
[0]);
3565 memset (argBuf
, 0, bufLen
);
3566 if (strcmp (argv
[1], "Q") == 0)
3567 sprintf (argBuf
, "%s %s", argv
[0], "noprint");
3570 if (strcmp (argv
[1], "s") == 0)
3572 if (!signal_stop
[oursig
])
3573 sprintf (argBuf
, "%s %s", argv
[0], "stop");
3575 sprintf (argBuf
, "%s %s", argv
[0], "nostop");
3577 else if (strcmp (argv
[1], "i") == 0)
3579 if (!signal_program
[oursig
])
3580 sprintf (argBuf
, "%s %s", argv
[0], "pass");
3582 sprintf (argBuf
, "%s %s", argv
[0], "nopass");
3584 else if (strcmp (argv
[1], "r") == 0)
3586 if (!signal_print
[oursig
])
3587 sprintf (argBuf
, "%s %s", argv
[0], "print");
3589 sprintf (argBuf
, "%s %s", argv
[0], "noprint");
3595 handle_command (argBuf
, from_tty
);
3597 printf_filtered ("Invalid signal handling flag.\n");
3602 do_cleanups (old_chain
);
3605 /* Print current contents of the tables set by the handle command.
3606 It is possible we should just be printing signals actually used
3607 by the current target (but for things to work right when switching
3608 targets, all signals should be in the signal tables). */
3611 signals_info (signum_exp
, from_tty
)
3615 enum target_signal oursig
;
3616 sig_print_header ();
3620 /* First see if this is a symbol name. */
3621 oursig
= target_signal_from_name (signum_exp
);
3622 if (oursig
== TARGET_SIGNAL_UNKNOWN
)
3624 /* No, try numeric. */
3626 target_signal_from_command (parse_and_eval_address (signum_exp
));
3628 sig_print_info (oursig
);
3632 printf_filtered ("\n");
3633 /* These ugly casts brought to you by the native VAX compiler. */
3634 for (oursig
= TARGET_SIGNAL_FIRST
;
3635 (int) oursig
< (int) TARGET_SIGNAL_LAST
;
3636 oursig
= (enum target_signal
) ((int) oursig
+ 1))
3640 if (oursig
!= TARGET_SIGNAL_UNKNOWN
3641 && oursig
!= TARGET_SIGNAL_DEFAULT
3642 && oursig
!= TARGET_SIGNAL_0
)
3643 sig_print_info (oursig
);
3646 printf_filtered ("\nUse the \"handle\" command to change these tables.\n");
3649 struct inferior_status
3651 enum target_signal stop_signal
;
3655 int stop_stack_dummy
;
3656 int stopped_by_random_signal
;
3658 CORE_ADDR step_range_start
;
3659 CORE_ADDR step_range_end
;
3660 CORE_ADDR step_frame_address
;
3661 int step_over_calls
;
3662 CORE_ADDR step_resume_break_address
;
3663 int stop_after_trap
;
3664 int stop_soon_quietly
;
3665 CORE_ADDR selected_frame_address
;
3666 char *stop_registers
;
3668 /* These are here because if call_function_by_hand has written some
3669 registers and then decides to call error(), we better not have changed
3674 int breakpoint_proceeded
;
3675 int restore_stack_info
;
3676 int proceed_to_finish
;
3680 static struct inferior_status
*xmalloc_inferior_status
PARAMS ((void));
3681 static struct inferior_status
*
3682 xmalloc_inferior_status ()
3684 struct inferior_status
*inf_status
;
3685 inf_status
= xmalloc (sizeof (struct inferior_status
));
3686 inf_status
->stop_registers
= xmalloc (REGISTER_BYTES
);
3687 inf_status
->registers
= xmalloc (REGISTER_BYTES
);
3691 static void free_inferior_status
PARAMS ((struct inferior_status
*));
3693 free_inferior_status (inf_status
)
3694 struct inferior_status
*inf_status
;
3696 free (inf_status
->registers
);
3697 free (inf_status
->stop_registers
);
3702 write_inferior_status_register (inf_status
, regno
, val
)
3703 struct inferior_status
*inf_status
;
3707 int size
= REGISTER_RAW_SIZE (regno
);
3708 void *buf
= alloca (size
);
3709 store_signed_integer (buf
, size
, val
);
3710 memcpy (&inf_status
->registers
[REGISTER_BYTE (regno
)], buf
, size
);
3715 /* Save all of the information associated with the inferior<==>gdb
3716 connection. INF_STATUS is a pointer to a "struct inferior_status"
3717 (defined in inferior.h). */
3719 struct inferior_status
*
3720 save_inferior_status (restore_stack_info
)
3721 int restore_stack_info
;
3723 struct inferior_status
*inf_status
= xmalloc_inferior_status ();
3725 inf_status
->stop_signal
= stop_signal
;
3726 inf_status
->stop_pc
= stop_pc
;
3727 inf_status
->stop_step
= stop_step
;
3728 inf_status
->stop_stack_dummy
= stop_stack_dummy
;
3729 inf_status
->stopped_by_random_signal
= stopped_by_random_signal
;
3730 inf_status
->trap_expected
= trap_expected
;
3731 inf_status
->step_range_start
= step_range_start
;
3732 inf_status
->step_range_end
= step_range_end
;
3733 inf_status
->step_frame_address
= step_frame_address
;
3734 inf_status
->step_over_calls
= step_over_calls
;
3735 inf_status
->stop_after_trap
= stop_after_trap
;
3736 inf_status
->stop_soon_quietly
= stop_soon_quietly
;
3737 /* Save original bpstat chain here; replace it with copy of chain.
3738 If caller's caller is walking the chain, they'll be happier if we
3739 hand them back the original chain when restore_inferior_status is
3741 inf_status
->stop_bpstat
= stop_bpstat
;
3742 stop_bpstat
= bpstat_copy (stop_bpstat
);
3743 inf_status
->breakpoint_proceeded
= breakpoint_proceeded
;
3744 inf_status
->restore_stack_info
= restore_stack_info
;
3745 inf_status
->proceed_to_finish
= proceed_to_finish
;
3747 memcpy (inf_status
->stop_registers
, stop_registers
, REGISTER_BYTES
);
3749 read_register_bytes (0, inf_status
->registers
, REGISTER_BYTES
);
3751 record_selected_frame (&(inf_status
->selected_frame_address
),
3752 &(inf_status
->selected_level
));
3756 struct restore_selected_frame_args
3758 CORE_ADDR frame_address
;
3762 static int restore_selected_frame
PARAMS ((PTR
));
3765 restore_selected_frame (args
)
3768 struct restore_selected_frame_args
*fr
=
3769 (struct restore_selected_frame_args
*) args
;
3770 struct frame_info
*frame
;
3771 int level
= fr
->level
;
3773 frame
= find_relative_frame (get_current_frame (), &level
);
3775 /* If inf_status->selected_frame_address is NULL, there was no
3776 previously selected frame. */
3777 if (frame
== NULL
||
3778 /* FRAME_FP (frame) != fr->frame_address || */
3779 /* elz: deleted this check as a quick fix to the problem that
3780 for function called by hand gdb creates no internal frame
3781 structure and the real stack and gdb's idea of stack are
3782 different if nested calls by hands are made.
3784 mvs: this worries me. */
3787 warning ("Unable to restore previously selected frame.\n");
3791 select_frame (frame
, fr
->level
);
3797 restore_inferior_status (inf_status
)
3798 struct inferior_status
*inf_status
;
3800 stop_signal
= inf_status
->stop_signal
;
3801 stop_pc
= inf_status
->stop_pc
;
3802 stop_step
= inf_status
->stop_step
;
3803 stop_stack_dummy
= inf_status
->stop_stack_dummy
;
3804 stopped_by_random_signal
= inf_status
->stopped_by_random_signal
;
3805 trap_expected
= inf_status
->trap_expected
;
3806 step_range_start
= inf_status
->step_range_start
;
3807 step_range_end
= inf_status
->step_range_end
;
3808 step_frame_address
= inf_status
->step_frame_address
;
3809 step_over_calls
= inf_status
->step_over_calls
;
3810 stop_after_trap
= inf_status
->stop_after_trap
;
3811 stop_soon_quietly
= inf_status
->stop_soon_quietly
;
3812 bpstat_clear (&stop_bpstat
);
3813 stop_bpstat
= inf_status
->stop_bpstat
;
3814 breakpoint_proceeded
= inf_status
->breakpoint_proceeded
;
3815 proceed_to_finish
= inf_status
->proceed_to_finish
;
3817 /* FIXME: Is the restore of stop_registers always needed */
3818 memcpy (stop_registers
, inf_status
->stop_registers
, REGISTER_BYTES
);
3820 /* The inferior can be gone if the user types "print exit(0)"
3821 (and perhaps other times). */
3822 if (target_has_execution
)
3823 write_register_bytes (0, inf_status
->registers
, REGISTER_BYTES
);
3825 /* FIXME: If we are being called after stopping in a function which
3826 is called from gdb, we should not be trying to restore the
3827 selected frame; it just prints a spurious error message (The
3828 message is useful, however, in detecting bugs in gdb (like if gdb
3829 clobbers the stack)). In fact, should we be restoring the
3830 inferior status at all in that case? . */
3832 if (target_has_stack
&& inf_status
->restore_stack_info
)
3834 struct restore_selected_frame_args fr
;
3835 fr
.level
= inf_status
->selected_level
;
3836 fr
.frame_address
= inf_status
->selected_frame_address
;
3837 /* The point of catch_errors is that if the stack is clobbered,
3838 walking the stack might encounter a garbage pointer and error()
3839 trying to dereference it. */
3840 if (catch_errors (restore_selected_frame
, &fr
,
3841 "Unable to restore previously selected frame:\n",
3842 RETURN_MASK_ERROR
) == 0)
3843 /* Error in restoring the selected frame. Select the innermost
3847 select_frame (get_current_frame (), 0);
3851 free_inferior_status (inf_status
);
3855 discard_inferior_status (inf_status
)
3856 struct inferior_status
*inf_status
;
3858 /* See save_inferior_status for info on stop_bpstat. */
3859 bpstat_clear (&inf_status
->stop_bpstat
);
3860 free_inferior_status (inf_status
);
3864 set_follow_fork_mode_command (arg
, from_tty
, c
)
3867 struct cmd_list_element
*c
;
3869 if (!STREQ (arg
, "parent") &&
3870 !STREQ (arg
, "child") &&
3871 !STREQ (arg
, "both") &&
3872 !STREQ (arg
, "ask"))
3873 error ("follow-fork-mode must be one of \"parent\", \"child\", \"both\" or \"ask\".");
3875 if (follow_fork_mode_string
!= NULL
)
3876 free (follow_fork_mode_string
);
3877 follow_fork_mode_string
= savestring (arg
, strlen (arg
));
3882 static void build_infrun
PARAMS ((void));
3886 stop_registers
= xmalloc (REGISTER_BYTES
);
3891 _initialize_infrun ()
3894 register int numsigs
;
3895 struct cmd_list_element
*c
;
3899 register_gdbarch_swap (&stop_registers
, sizeof (stop_registers
), NULL
);
3900 register_gdbarch_swap (NULL
, 0, build_infrun
);
3902 add_info ("signals", signals_info
,
3903 "What debugger does when program gets various signals.\n\
3904 Specify a signal as argument to print info on that signal only.");
3905 add_info_alias ("handle", "signals", 0);
3907 add_com ("handle", class_run
, handle_command
,
3908 concat ("Specify how to handle a signal.\n\
3909 Args are signals and actions to apply to those signals.\n\
3910 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
3911 from 1-15 are allowed for compatibility with old versions of GDB.\n\
3912 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
3913 The special arg \"all\" is recognized to mean all signals except those\n\
3914 used by the debugger, typically SIGTRAP and SIGINT.\n",
3915 "Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
3916 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
3917 Stop means reenter debugger if this signal happens (implies print).\n\
3918 Print means print a message if this signal happens.\n\
3919 Pass means let program see this signal; otherwise program doesn't know.\n\
3920 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
3921 Pass and Stop may be combined.", NULL
));
3924 add_com ("lz", class_info
, signals_info
,
3925 "What debugger does when program gets various signals.\n\
3926 Specify a signal as argument to print info on that signal only.");
3927 add_com ("z", class_run
, xdb_handle_command
,
3928 concat ("Specify how to handle a signal.\n\
3929 Args are signals and actions to apply to those signals.\n\
3930 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
3931 from 1-15 are allowed for compatibility with old versions of GDB.\n\
3932 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
3933 The special arg \"all\" is recognized to mean all signals except those\n\
3934 used by the debugger, typically SIGTRAP and SIGINT.\n",
3935 "Recognized actions include \"s\" (toggles between stop and nostop), \n\
3936 \"r\" (toggles between print and noprint), \"i\" (toggles between pass and \
3937 nopass), \"Q\" (noprint)\n\
3938 Stop means reenter debugger if this signal happens (implies print).\n\
3939 Print means print a message if this signal happens.\n\
3940 Pass means let program see this signal; otherwise program doesn't know.\n\
3941 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
3942 Pass and Stop may be combined.", NULL
));
3946 stop_command
= add_cmd ("stop", class_obscure
, not_just_help_class_command
,
3947 "There is no `stop' command, but you can set a hook on `stop'.\n\
3948 This allows you to set a list of commands to be run each time execution\n\
3949 of the program stops.", &cmdlist
);
3951 numsigs
= (int) TARGET_SIGNAL_LAST
;
3952 signal_stop
= (unsigned char *)
3953 xmalloc (sizeof (signal_stop
[0]) * numsigs
);
3954 signal_print
= (unsigned char *)
3955 xmalloc (sizeof (signal_print
[0]) * numsigs
);
3956 signal_program
= (unsigned char *)
3957 xmalloc (sizeof (signal_program
[0]) * numsigs
);
3958 for (i
= 0; i
< numsigs
; i
++)
3961 signal_print
[i
] = 1;
3962 signal_program
[i
] = 1;
3965 /* Signals caused by debugger's own actions
3966 should not be given to the program afterwards. */
3967 signal_program
[TARGET_SIGNAL_TRAP
] = 0;
3968 signal_program
[TARGET_SIGNAL_INT
] = 0;
3970 /* Signals that are not errors should not normally enter the debugger. */
3971 signal_stop
[TARGET_SIGNAL_ALRM
] = 0;
3972 signal_print
[TARGET_SIGNAL_ALRM
] = 0;
3973 signal_stop
[TARGET_SIGNAL_VTALRM
] = 0;
3974 signal_print
[TARGET_SIGNAL_VTALRM
] = 0;
3975 signal_stop
[TARGET_SIGNAL_PROF
] = 0;
3976 signal_print
[TARGET_SIGNAL_PROF
] = 0;
3977 signal_stop
[TARGET_SIGNAL_CHLD
] = 0;
3978 signal_print
[TARGET_SIGNAL_CHLD
] = 0;
3979 signal_stop
[TARGET_SIGNAL_IO
] = 0;
3980 signal_print
[TARGET_SIGNAL_IO
] = 0;
3981 signal_stop
[TARGET_SIGNAL_POLL
] = 0;
3982 signal_print
[TARGET_SIGNAL_POLL
] = 0;
3983 signal_stop
[TARGET_SIGNAL_URG
] = 0;
3984 signal_print
[TARGET_SIGNAL_URG
] = 0;
3985 signal_stop
[TARGET_SIGNAL_WINCH
] = 0;
3986 signal_print
[TARGET_SIGNAL_WINCH
] = 0;
3988 /* These signals are used internally by user-level thread
3989 implementations. (See signal(5) on Solaris.) Like the above
3990 signals, a healthy program receives and handles them as part of
3991 its normal operation. */
3992 signal_stop
[TARGET_SIGNAL_LWP
] = 0;
3993 signal_print
[TARGET_SIGNAL_LWP
] = 0;
3994 signal_stop
[TARGET_SIGNAL_WAITING
] = 0;
3995 signal_print
[TARGET_SIGNAL_WAITING
] = 0;
3996 signal_stop
[TARGET_SIGNAL_CANCEL
] = 0;
3997 signal_print
[TARGET_SIGNAL_CANCEL
] = 0;
4001 (add_set_cmd ("stop-on-solib-events", class_support
, var_zinteger
,
4002 (char *) &stop_on_solib_events
,
4003 "Set stopping for shared library events.\n\
4004 If nonzero, gdb will give control to the user when the dynamic linker\n\
4005 notifies gdb of shared library events. The most common event of interest\n\
4006 to the user would be loading/unloading of a new library.\n",
4011 c
= add_set_enum_cmd ("follow-fork-mode",
4013 follow_fork_mode_kind_names
,
4014 (char *) &follow_fork_mode_string
,
4015 /* ??rehrauer: The "both" option is broken, by what may be a 10.20
4016 kernel problem. It's also not terribly useful without a GUI to
4017 help the user drive two debuggers. So for now, I'm disabling
4018 the "both" option. */
4019 /* "Set debugger response to a program call of fork \
4021 A fork or vfork creates a new process. follow-fork-mode can be:\n\
4022 parent - the original process is debugged after a fork\n\
4023 child - the new process is debugged after a fork\n\
4024 both - both the parent and child are debugged after a fork\n\
4025 ask - the debugger will ask for one of the above choices\n\
4026 For \"both\", another copy of the debugger will be started to follow\n\
4027 the new child process. The original debugger will continue to follow\n\
4028 the original parent process. To distinguish their prompts, the\n\
4029 debugger copy's prompt will be changed.\n\
4030 For \"parent\" or \"child\", the unfollowed process will run free.\n\
4031 By default, the debugger will follow the parent process.",
4033 "Set debugger response to a program call of fork \
4035 A fork or vfork creates a new process. follow-fork-mode can be:\n\
4036 parent - the original process is debugged after a fork\n\
4037 child - the new process is debugged after a fork\n\
4038 ask - the debugger will ask for one of the above choices\n\
4039 For \"parent\" or \"child\", the unfollowed process will run free.\n\
4040 By default, the debugger will follow the parent process.",
4042 /* c->function.sfunc = ; */
4043 add_show_from_set (c
, &showlist
);
4045 set_follow_fork_mode_command ("parent", 0, NULL
);
4047 c
= add_set_enum_cmd ("scheduler-locking", class_run
,
4048 scheduler_enums
, /* array of string names */
4049 (char *) &scheduler_mode
, /* current mode */
4050 "Set mode for locking scheduler during execution.\n\
4051 off == no locking (threads may preempt at any time)\n\
4052 on == full locking (no thread except the current thread may run)\n\
4053 step == scheduler locked during every single-step operation.\n\
4054 In this mode, no other thread may run during a step command.\n\
4055 Other threads may run while stepping over a function call ('next').",
4058 c
->function
.sfunc
= set_schedlock_func
; /* traps on target vector */
4059 add_show_from_set (c
, &showlist
);