1 /* Target-struct-independent code to start (run) and stop an inferior process.
2 Copyright 1986, 1987, 1988, 1989, 1991, 1992, 1993, 1994
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
27 #include "breakpoint.h"
37 /* unistd.h is needed to #define X_OK */
44 /* Prototypes for local functions */
47 signals_info PARAMS ((char *, int));
50 handle_command PARAMS ((char *, int));
52 static void sig_print_info PARAMS ((enum target_signal));
55 sig_print_header PARAMS ((void));
58 resume_cleanups PARAMS ((int));
61 hook_stop_stub PARAMS ((char *));
63 /* GET_LONGJMP_TARGET returns the PC at which longjmp() will resume the
64 program. It needs to examine the jmp_buf argument and extract the PC
65 from it. The return value is non-zero on success, zero otherwise. */
66 #ifndef GET_LONGJMP_TARGET
67 #define GET_LONGJMP_TARGET(PC_ADDR) 0
71 /* Some machines have trampoline code that sits between function callers
72 and the actual functions themselves. If this machine doesn't have
73 such things, disable their processing. */
74 #ifndef SKIP_TRAMPOLINE_CODE
75 #define SKIP_TRAMPOLINE_CODE(pc) 0
78 /* For SVR4 shared libraries, each call goes through a small piece of
79 trampoline code in the ".plt" section. IN_SOLIB_TRAMPOLINE evaluates
80 to nonzero if we are current stopped in one of these. */
81 #ifndef IN_SOLIB_TRAMPOLINE
82 #define IN_SOLIB_TRAMPOLINE(pc,name) 0
85 /* On some systems, the PC may be left pointing at an instruction that won't
86 actually be executed. This is usually indicated by a bit in the PSW. If
87 we find ourselves in such a state, then we step the target beyond the
88 nullified instruction before returning control to the user so as to avoid
91 #ifndef INSTRUCTION_NULLIFIED
92 #define INSTRUCTION_NULLIFIED 0
95 /* Tables of how to react to signals; the user sets them. */
97 static unsigned char *signal_stop;
98 static unsigned char *signal_print;
99 static unsigned char *signal_program;
101 #define SET_SIGS(nsigs,sigs,flags) \
103 int signum = (nsigs); \
104 while (signum-- > 0) \
105 if ((sigs)[signum]) \
106 (flags)[signum] = 1; \
109 #define UNSET_SIGS(nsigs,sigs,flags) \
111 int signum = (nsigs); \
112 while (signum-- > 0) \
113 if ((sigs)[signum]) \
114 (flags)[signum] = 0; \
118 /* Command list pointer for the "stop" placeholder. */
120 static struct cmd_list_element *stop_command;
122 /* Nonzero if breakpoints are now inserted in the inferior. */
124 static int breakpoints_inserted;
126 /* Function inferior was in as of last step command. */
128 static struct symbol *step_start_function;
130 /* Nonzero if we are expecting a trace trap and should proceed from it. */
132 static int trap_expected;
134 /* Nonzero if the next time we try to continue the inferior, it will
135 step one instruction and generate a spurious trace trap.
136 This is used to compensate for a bug in HP-UX. */
138 static int trap_expected_after_continue;
140 /* Nonzero means expecting a trace trap
141 and should stop the inferior and return silently when it happens. */
145 /* Nonzero means expecting a trap and caller will handle it themselves.
146 It is used after attach, due to attaching to a process;
147 when running in the shell before the child program has been exec'd;
148 and when running some kinds of remote stuff (FIXME?). */
150 int stop_soon_quietly;
152 /* Nonzero if proceed is being used for a "finish" command or a similar
153 situation when stop_registers should be saved. */
155 int proceed_to_finish;
157 /* Save register contents here when about to pop a stack dummy frame,
158 if-and-only-if proceed_to_finish is set.
159 Thus this contains the return value from the called function (assuming
160 values are returned in a register). */
162 char stop_registers[REGISTER_BYTES];
164 /* Nonzero if program stopped due to error trying to insert breakpoints. */
166 static int breakpoints_failed;
168 /* Nonzero after stop if current stack frame should be printed. */
170 static int stop_print_frame;
172 #ifdef NO_SINGLE_STEP
173 extern int one_stepped; /* From machine dependent code */
174 extern void single_step (); /* Same. */
175 #endif /* NO_SINGLE_STEP */
178 /* Things to clean up if we QUIT out of resume (). */
181 resume_cleanups (arg)
187 /* Resume the inferior, but allow a QUIT. This is useful if the user
188 wants to interrupt some lengthy single-stepping operation
189 (for child processes, the SIGINT goes to the inferior, and so
190 we get a SIGINT random_signal, but for remote debugging and perhaps
191 other targets, that's not true).
193 STEP nonzero if we should step (zero to continue instead).
194 SIG is the signal to give the inferior (zero for none). */
198 enum target_signal sig;
200 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
203 #ifdef CANNOT_STEP_BREAKPOINT
204 /* Most targets can step a breakpoint instruction, thus executing it
205 normally. But if this one cannot, just continue and we will hit
207 if (step && breakpoints_inserted && breakpoint_here_p (read_pc ()))
211 #ifdef NO_SINGLE_STEP
213 single_step(sig); /* Do it the hard way, w/temp breakpoints */
214 step = 0; /* ...and don't ask hardware to do it. */
218 /* Handle any optimized stores to the inferior NOW... */
219 #ifdef DO_DEFERRED_STORES
223 /* Install inferior's terminal modes. */
224 target_terminal_inferior ();
226 target_resume (-1, step, sig);
227 discard_cleanups (old_cleanups);
231 /* Clear out all variables saying what to do when inferior is continued.
232 First do this, then set the ones you want, then call `proceed'. */
235 clear_proceed_status ()
238 step_range_start = 0;
240 step_frame_address = 0;
241 step_over_calls = -1;
243 stop_soon_quietly = 0;
244 proceed_to_finish = 0;
245 breakpoint_proceeded = 1; /* We're about to proceed... */
247 /* Discard any remaining commands or status from previous stop. */
248 bpstat_clear (&stop_bpstat);
251 /* Basic routine for continuing the program in various fashions.
253 ADDR is the address to resume at, or -1 for resume where stopped.
254 SIGGNAL is the signal to give it, or 0 for none,
255 or -1 for act according to how it stopped.
256 STEP is nonzero if should trap after one instruction.
257 -1 means return after that and print nothing.
258 You should probably set various step_... variables
259 before calling here, if you are stepping.
261 You should call clear_proceed_status before calling proceed. */
264 proceed (addr, siggnal, step)
266 enum target_signal siggnal;
272 step_start_function = find_pc_function (read_pc ());
276 if (addr == (CORE_ADDR)-1)
278 /* If there is a breakpoint at the address we will resume at,
279 step one instruction before inserting breakpoints
280 so that we do not stop right away. */
282 if (breakpoint_here_p (read_pc ()))
285 #ifdef STEP_SKIPS_DELAY
286 /* Check breakpoint_here_p first, because breakpoint_here_p is fast
287 (it just checks internal GDB data structures) and STEP_SKIPS_DELAY
288 is slow (it needs to read memory from the target). */
289 if (breakpoint_here_p (read_pc () + 4)
290 && STEP_SKIPS_DELAY (read_pc ()))
292 #endif /* STEP_SKIPS_DELAY */
297 if (trap_expected_after_continue)
299 /* If (step == 0), a trap will be automatically generated after
300 the first instruction is executed. Force step one
301 instruction to clear this condition. This should not occur
302 if step is nonzero, but it is harmless in that case. */
304 trap_expected_after_continue = 0;
308 /* We will get a trace trap after one instruction.
309 Continue it automatically and insert breakpoints then. */
313 int temp = insert_breakpoints ();
316 print_sys_errmsg ("ptrace", temp);
317 error ("Cannot insert breakpoints.\n\
318 The same program may be running in another process.");
320 breakpoints_inserted = 1;
323 if (siggnal != TARGET_SIGNAL_DEFAULT)
324 stop_signal = siggnal;
325 /* If this signal should not be seen by program,
326 give it zero. Used for debugging signals. */
327 else if (!signal_program[stop_signal])
328 stop_signal = TARGET_SIGNAL_0;
330 annotate_starting ();
332 /* Resume inferior. */
333 resume (oneproc || step || bpstat_should_step (), stop_signal);
335 /* Wait for it to stop (if not standalone)
336 and in any case decode why it stopped, and act accordingly. */
338 wait_for_inferior ();
342 /* Record the pc and sp of the program the last time it stopped.
343 These are just used internally by wait_for_inferior, but need
344 to be preserved over calls to it and cleared when the inferior
346 static CORE_ADDR prev_pc;
347 static CORE_ADDR prev_sp;
348 static CORE_ADDR prev_func_start;
349 static char *prev_func_name;
350 static CORE_ADDR prev_frame_address;
353 /* Start remote-debugging of a machine over a serial link. */
358 init_wait_for_inferior ();
359 clear_proceed_status ();
360 stop_soon_quietly = 1;
362 wait_for_inferior ();
366 /* Initialize static vars when a new inferior begins. */
369 init_wait_for_inferior ()
371 /* These are meaningless until the first time through wait_for_inferior. */
375 prev_func_name = NULL;
376 prev_frame_address = 0;
378 trap_expected_after_continue = 0;
379 breakpoints_inserted = 0;
380 breakpoint_init_inferior ();
382 /* Don't confuse first call to proceed(). */
383 stop_signal = TARGET_SIGNAL_0;
387 delete_breakpoint_current_contents (arg)
390 struct breakpoint **breakpointp = (struct breakpoint **)arg;
391 if (*breakpointp != NULL)
392 delete_breakpoint (*breakpointp);
395 /* Wait for control to return from inferior to debugger.
396 If inferior gets a signal, we may decide to start it up again
397 instead of returning. That is why there is a loop in this function.
398 When this function actually returns it means the inferior
399 should be left stopped and GDB should read more commands. */
404 struct cleanup *old_cleanups;
405 struct target_waitstatus w;
408 CORE_ADDR stop_sp = 0;
409 CORE_ADDR stop_func_start;
410 CORE_ADDR stop_func_end;
411 char *stop_func_name;
412 CORE_ADDR prologue_pc = 0, tmp;
413 struct symtab_and_line sal;
414 int remove_breakpoints_on_following_step = 0;
416 struct symtab *current_symtab;
417 int handling_longjmp = 0; /* FIXME */
418 struct breakpoint *step_resume_breakpoint = NULL;
419 struct breakpoint *through_sigtramp_breakpoint = NULL;
422 old_cleanups = make_cleanup (delete_breakpoint_current_contents,
423 &step_resume_breakpoint);
424 make_cleanup (delete_breakpoint_current_contents,
425 &through_sigtramp_breakpoint);
426 sal = find_pc_line(prev_pc, 0);
427 current_line = sal.line;
428 current_symtab = sal.symtab;
430 /* Are we stepping? */
431 #define CURRENTLY_STEPPING() \
432 ((through_sigtramp_breakpoint == NULL \
433 && !handling_longjmp \
434 && ((step_range_end && step_resume_breakpoint == NULL) \
436 || bpstat_should_step ())
440 pid = target_wait (-1, &w);
442 /* Clean up saved state that will become invalid. */
443 flush_cached_frames ();
444 registers_changed ();
448 case TARGET_WAITKIND_LOADED:
449 /* Ignore it gracefully. */
450 if (breakpoints_inserted)
452 mark_breakpoints_out ();
453 insert_breakpoints ();
455 resume (0, TARGET_SIGNAL_0);
458 case TARGET_WAITKIND_SPURIOUS:
459 resume (0, TARGET_SIGNAL_0);
462 case TARGET_WAITKIND_EXITED:
463 target_terminal_ours (); /* Must do this before mourn anyway */
464 annotate_exited (w.value.integer);
466 printf_filtered ("\nProgram exited with code 0%o.\n",
467 (unsigned int)w.value.integer);
470 printf_filtered ("\nProgram exited normally.\n");
471 gdb_flush (gdb_stdout);
472 target_mourn_inferior ();
473 #ifdef NO_SINGLE_STEP
476 stop_print_frame = 0;
479 case TARGET_WAITKIND_SIGNALLED:
480 stop_print_frame = 0;
481 stop_signal = w.value.sig;
482 target_terminal_ours (); /* Must do this before mourn anyway */
483 annotate_signalled ();
484 target_kill (); /* kill mourns as well */
485 printf_filtered ("\nProgram terminated with signal ");
486 annotate_signal_name ();
487 printf_filtered ("%s", target_signal_to_name (stop_signal));
488 annotate_signal_name_end ();
489 printf_filtered (", ");
490 annotate_signal_string ();
491 printf_filtered ("%s", target_signal_to_string (stop_signal));
492 annotate_signal_string_end ();
493 printf_filtered (".\n");
495 printf_filtered ("The program no longer exists.\n");
496 gdb_flush (gdb_stdout);
497 #ifdef NO_SINGLE_STEP
502 case TARGET_WAITKIND_STOPPED:
503 /* This is the only case in which we keep going; the above cases
504 end in a continue or goto. */
508 stop_signal = w.value.sig;
510 if (pid != inferior_pid)
512 int save_pid = inferior_pid;
514 inferior_pid = pid; /* Setup for target memory/regs */
515 registers_changed ();
516 stop_pc = read_pc ();
517 inferior_pid = save_pid;
518 registers_changed ();
521 stop_pc = read_pc ();
523 if (stop_signal == TARGET_SIGNAL_TRAP
524 && breakpoint_here_p (stop_pc - DECR_PC_AFTER_BREAK))
526 if (!breakpoint_thread_match (stop_pc - DECR_PC_AFTER_BREAK, pid))
528 /* Saw a breakpoint, but it was hit by the wrong thread. Just continue. */
529 if (breakpoints_inserted)
531 if (pid != inferior_pid)
533 int save_pid = inferior_pid;
536 registers_changed ();
537 write_pc (stop_pc - DECR_PC_AFTER_BREAK);
538 inferior_pid = save_pid;
539 registers_changed ();
542 write_pc (stop_pc - DECR_PC_AFTER_BREAK);
544 remove_breakpoints ();
545 target_resume (pid, 1, TARGET_SIGNAL_0); /* Single step */
546 /* FIXME: What if a signal arrives instead of the single-step
548 target_wait (pid, &w);
549 insert_breakpoints ();
551 target_resume (-1, 0, TARGET_SIGNAL_0);
555 if (pid != inferior_pid)
559 if (pid != inferior_pid)
563 if (!in_thread_list (pid))
565 fprintf_unfiltered (gdb_stderr, "[New %s]\n", target_pid_to_str (pid));
568 target_resume (-1, 0, TARGET_SIGNAL_0);
573 if (signal_print[stop_signal])
576 target_terminal_ours_for_output ();
577 printf_filtered ("\nProgram received signal %s, %s.\n",
578 target_signal_to_name (stop_signal),
579 target_signal_to_string (stop_signal));
580 gdb_flush (gdb_stdout);
583 if (stop_signal == TARGET_SIGNAL_TRAP
584 || signal_stop[stop_signal])
588 printf_filtered ("[Switching to %s]\n", target_pid_to_str (pid));
590 flush_cached_frames ();
591 registers_changed ();
593 if (step_resume_breakpoint)
595 delete_breakpoint (step_resume_breakpoint);
596 step_resume_breakpoint = NULL;
599 /* Not sure whether we need to blow this away too,
600 but probably it is like the step-resume
602 if (through_sigtramp_breakpoint)
604 delete_breakpoint (through_sigtramp_breakpoint);
605 through_sigtramp_breakpoint = NULL;
609 prev_func_name = NULL;
610 step_range_start = 0;
612 step_frame_address = 0;
613 handling_longjmp = 0;
619 target_terminal_inferior ();
621 /* Clear the signal if it should not be passed. */
622 if (signal_program[stop_signal] == 0)
623 stop_signal = TARGET_SIGNAL_0;
625 target_resume (pid, 0, stop_signal);
631 #ifdef NO_SINGLE_STEP
633 single_step (0); /* This actually cleans up the ss */
634 #endif /* NO_SINGLE_STEP */
636 /* If PC is pointing at a nullified instruction, then step beyond
637 it so that the user won't be confused when GDB appears to be ready
640 if (INSTRUCTION_NULLIFIED)
646 set_current_frame (create_new_frame (read_fp (), stop_pc));
647 select_frame (get_current_frame (), 0);
649 #ifdef HAVE_STEPPABLE_WATCHPOINT
650 /* It may not be necessary to disable the watchpoint to stop over
651 it. For example, the PA can (with some kernel cooperation)
652 single step over a watchpoint without disabling the watchpoint. */
653 if (STOPPED_BY_WATCHPOINT (w))
660 #ifdef HAVE_NONSTEPPABLE_WATCHPOINT
661 /* It is far more common to need to disable a watchpoint
662 to step the inferior over it. FIXME. What else might
663 a debug register or page protection watchpoint scheme need
665 if (STOPPED_BY_WATCHPOINT (w))
667 remove_breakpoints ();
670 /* FIXME: This is bogus. You can't interact with the
671 inferior except when it is stopped. It apparently
672 happens to work on Irix4, but it depends on /proc
673 allowing us to muck with the memory of a running process,
674 and the kernel deciding to run one instruction of the
675 inferior before it executes our insert_breakpoints code,
676 which seems like an awfully dubious assumption. */
677 insert_breakpoints ();
683 #ifdef HAVE_CONTINUABLE_WATCHPOINT
684 /* It may be possible to simply continue after a watchpoint. */
685 STOPPED_BY_WATCHPOINT (w);
688 stop_frame_address = FRAME_FP (get_current_frame ());
689 stop_sp = read_sp ();
692 /* Don't care about return value; stop_func_start and stop_func_name
693 will both be 0 if it doesn't work. */
694 find_pc_partial_function (stop_pc, &stop_func_name, &stop_func_start,
696 stop_func_start += FUNCTION_START_OFFSET;
698 bpstat_clear (&stop_bpstat);
700 stop_stack_dummy = 0;
701 stop_print_frame = 1;
703 stopped_by_random_signal = 0;
704 breakpoints_failed = 0;
706 /* Look at the cause of the stop, and decide what to do.
707 The alternatives are:
708 1) break; to really stop and return to the debugger,
709 2) drop through to start up again
710 (set another_trap to 1 to single step once)
711 3) set random_signal to 1, and the decision between 1 and 2
712 will be made according to the signal handling tables. */
714 /* First, distinguish signals caused by the debugger from signals
715 that have to do with the program's own actions.
716 Note that breakpoint insns may cause SIGTRAP or SIGILL
717 or SIGEMT, depending on the operating system version.
718 Here we detect when a SIGILL or SIGEMT is really a breakpoint
719 and change it to SIGTRAP. */
721 if (stop_signal == TARGET_SIGNAL_TRAP
722 || (breakpoints_inserted &&
723 (stop_signal == TARGET_SIGNAL_ILL
724 || stop_signal == TARGET_SIGNAL_EMT
726 || stop_soon_quietly)
728 if (stop_signal == TARGET_SIGNAL_TRAP && stop_after_trap)
730 stop_print_frame = 0;
733 if (stop_soon_quietly)
736 /* Don't even think about breakpoints
737 if just proceeded over a breakpoint.
739 However, if we are trying to proceed over a breakpoint
740 and end up in sigtramp, then through_sigtramp_breakpoint
741 will be set and we should check whether we've hit the
743 if (stop_signal == TARGET_SIGNAL_TRAP && trap_expected
744 && through_sigtramp_breakpoint == NULL)
745 bpstat_clear (&stop_bpstat);
748 /* See if there is a breakpoint at the current PC. */
749 stop_bpstat = bpstat_stop_status
750 (&stop_pc, stop_frame_address,
751 #if DECR_PC_AFTER_BREAK
752 /* Notice the case of stepping through a jump
753 that lands just after a breakpoint.
754 Don't confuse that with hitting the breakpoint.
755 What we check for is that 1) stepping is going on
756 and 2) the pc before the last insn does not match
757 the address of the breakpoint before the current pc. */
758 (prev_pc != stop_pc - DECR_PC_AFTER_BREAK
759 && CURRENTLY_STEPPING ())
760 #else /* DECR_PC_AFTER_BREAK zero */
762 #endif /* DECR_PC_AFTER_BREAK zero */
764 /* Following in case break condition called a
766 stop_print_frame = 1;
769 if (stop_signal == TARGET_SIGNAL_TRAP)
771 = !(bpstat_explains_signal (stop_bpstat)
773 #ifndef CALL_DUMMY_BREAKPOINT_OFFSET
774 || PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address)
775 #endif /* No CALL_DUMMY_BREAKPOINT_OFFSET. */
776 || (step_range_end && step_resume_breakpoint == NULL));
780 = !(bpstat_explains_signal (stop_bpstat)
781 /* End of a stack dummy. Some systems (e.g. Sony
782 news) give another signal besides SIGTRAP,
783 so check here as well as above. */
784 #ifndef CALL_DUMMY_BREAKPOINT_OFFSET
785 || PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address)
786 #endif /* No CALL_DUMMY_BREAKPOINT_OFFSET. */
789 stop_signal = TARGET_SIGNAL_TRAP;
795 /* For the program's own signals, act according to
796 the signal handling tables. */
800 /* Signal not for debugging purposes. */
803 stopped_by_random_signal = 1;
805 if (signal_print[stop_signal])
808 target_terminal_ours_for_output ();
810 printf_filtered ("\nProgram received signal ");
811 annotate_signal_name ();
812 printf_filtered ("%s", target_signal_to_name (stop_signal));
813 annotate_signal_name_end ();
814 printf_filtered (", ");
815 annotate_signal_string ();
816 printf_filtered ("%s", target_signal_to_string (stop_signal));
817 annotate_signal_string_end ();
818 printf_filtered (".\n");
819 gdb_flush (gdb_stdout);
821 if (signal_stop[stop_signal])
823 /* If not going to stop, give terminal back
824 if we took it away. */
826 target_terminal_inferior ();
828 /* Clear the signal if it should not be passed. */
829 if (signal_program[stop_signal] == 0)
830 stop_signal = TARGET_SIGNAL_0;
832 /* I'm not sure whether this needs to be check_sigtramp2 or
833 whether it could/should be keep_going. */
834 goto check_sigtramp2;
837 /* Handle cases caused by hitting a breakpoint. */
839 CORE_ADDR jmp_buf_pc;
840 struct bpstat_what what;
842 what = bpstat_what (stop_bpstat);
846 stop_stack_dummy = 1;
848 trap_expected_after_continue = 1;
852 switch (what.main_action)
854 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
855 /* If we hit the breakpoint at longjmp, disable it for the
856 duration of this command. Then, install a temporary
857 breakpoint at the target of the jmp_buf. */
858 disable_longjmp_breakpoint();
859 remove_breakpoints ();
860 breakpoints_inserted = 0;
861 if (!GET_LONGJMP_TARGET(&jmp_buf_pc)) goto keep_going;
863 /* Need to blow away step-resume breakpoint, as it
864 interferes with us */
865 if (step_resume_breakpoint != NULL)
867 delete_breakpoint (step_resume_breakpoint);
868 step_resume_breakpoint = NULL;
870 /* Not sure whether we need to blow this away too, but probably
871 it is like the step-resume breakpoint. */
872 if (through_sigtramp_breakpoint != NULL)
874 delete_breakpoint (through_sigtramp_breakpoint);
875 through_sigtramp_breakpoint = NULL;
879 /* FIXME - Need to implement nested temporary breakpoints */
880 if (step_over_calls > 0)
881 set_longjmp_resume_breakpoint(jmp_buf_pc,
882 get_current_frame());
885 set_longjmp_resume_breakpoint(jmp_buf_pc, NULL);
886 handling_longjmp = 1; /* FIXME */
889 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
890 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE:
891 remove_breakpoints ();
892 breakpoints_inserted = 0;
894 /* FIXME - Need to implement nested temporary breakpoints */
896 && (stop_frame_address
897 INNER_THAN step_frame_address))
903 disable_longjmp_breakpoint();
904 handling_longjmp = 0; /* FIXME */
905 if (what.main_action == BPSTAT_WHAT_CLEAR_LONGJMP_RESUME)
907 /* else fallthrough */
909 case BPSTAT_WHAT_SINGLE:
910 if (breakpoints_inserted)
911 remove_breakpoints ();
912 breakpoints_inserted = 0;
914 /* Still need to check other stuff, at least the case
915 where we are stepping and step out of the right range. */
918 case BPSTAT_WHAT_STOP_NOISY:
919 stop_print_frame = 1;
921 /* We are about to nuke the step_resume_breakpoint and
922 through_sigtramp_breakpoint via the cleanup chain, so
923 no need to worry about it here. */
927 case BPSTAT_WHAT_STOP_SILENT:
928 stop_print_frame = 0;
930 /* We are about to nuke the step_resume_breakpoint and
931 through_sigtramp_breakpoint via the cleanup chain, so
932 no need to worry about it here. */
936 case BPSTAT_WHAT_STEP_RESUME:
937 delete_breakpoint (step_resume_breakpoint);
938 step_resume_breakpoint = NULL;
941 case BPSTAT_WHAT_THROUGH_SIGTRAMP:
942 delete_breakpoint (through_sigtramp_breakpoint);
943 through_sigtramp_breakpoint = NULL;
945 /* If were waiting for a trap, hitting the step_resume_break
946 doesn't count as getting it. */
951 case BPSTAT_WHAT_LAST:
952 /* Not a real code, but listed here to shut up gcc -Wall. */
954 case BPSTAT_WHAT_KEEP_CHECKING:
959 /* We come here if we hit a breakpoint but should not
960 stop for it. Possibly we also were stepping
961 and should stop for that. So fall through and
962 test for stepping. But, if not stepping,
965 #ifndef CALL_DUMMY_BREAKPOINT_OFFSET
966 /* This is the old way of detecting the end of the stack dummy.
967 An architecture which defines CALL_DUMMY_BREAKPOINT_OFFSET gets
968 handled above. As soon as we can test it on all of them, all
969 architectures should define it. */
971 /* If this is the breakpoint at the end of a stack dummy,
972 just stop silently, unless the user was doing an si/ni, in which
973 case she'd better know what she's doing. */
975 if (PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address)
978 stop_print_frame = 0;
979 stop_stack_dummy = 1;
981 trap_expected_after_continue = 1;
985 #endif /* No CALL_DUMMY_BREAKPOINT_OFFSET. */
987 if (step_resume_breakpoint)
988 /* Having a step-resume breakpoint overrides anything
989 else having to do with stepping commands until
990 that breakpoint is reached. */
991 /* I'm not sure whether this needs to be check_sigtramp2 or
992 whether it could/should be keep_going. */
993 goto check_sigtramp2;
995 if (step_range_end == 0)
996 /* Likewise if we aren't even stepping. */
997 /* I'm not sure whether this needs to be check_sigtramp2 or
998 whether it could/should be keep_going. */
999 goto check_sigtramp2;
1001 /* If stepping through a line, keep going if still within it. */
1002 if (stop_pc >= step_range_start
1003 && stop_pc < step_range_end
1004 /* The step range might include the start of the
1005 function, so if we are at the start of the
1006 step range and either the stack or frame pointers
1007 just changed, we've stepped outside */
1008 && !(stop_pc == step_range_start
1009 && stop_frame_address
1010 && (stop_sp INNER_THAN prev_sp
1011 || stop_frame_address != step_frame_address)))
1013 /* We might be doing a BPSTAT_WHAT_SINGLE and getting a signal.
1014 So definately need to check for sigtramp here. */
1015 goto check_sigtramp2;
1018 /* We stepped out of the stepping range. See if that was due
1019 to a subroutine call that we should proceed to the end of. */
1021 /* Did we just take a signal? */
1022 if (IN_SIGTRAMP (stop_pc, stop_func_name)
1023 && !IN_SIGTRAMP (prev_pc, prev_func_name))
1025 /* We've just taken a signal; go until we are back to
1026 the point where we took it and one more. */
1028 /* This code is needed at least in the following case:
1029 The user types "next" and then a signal arrives (before
1030 the "next" is done). */
1032 /* Note that if we are stopped at a breakpoint, then we need
1033 the step_resume breakpoint to override any breakpoints at
1034 the same location, so that we will still step over the
1035 breakpoint even though the signal happened. */
1038 struct symtab_and_line sr_sal;
1040 sr_sal.pc = prev_pc;
1041 sr_sal.symtab = NULL;
1043 /* We could probably be setting the frame to
1044 prev_frame_address; the reason we don't is that it didn't used
1046 step_resume_breakpoint =
1047 set_momentary_breakpoint (sr_sal, NULL, bp_step_resume);
1048 if (breakpoints_inserted)
1049 insert_breakpoints ();
1052 /* If this is stepi or nexti, make sure that the stepping range
1053 gets us past that instruction. */
1054 if (step_range_end == 1)
1055 /* FIXME: Does this run afoul of the code below which, if
1056 we step into the middle of a line, resets the stepping
1058 step_range_end = (step_range_start = prev_pc) + 1;
1060 remove_breakpoints_on_following_step = 1;
1064 if (stop_func_start)
1066 /* Do this after the IN_SIGTRAMP check; it might give
1068 prologue_pc = stop_func_start;
1069 SKIP_PROLOGUE (prologue_pc);
1072 if ((/* Might be a non-recursive call. If the symbols are missing
1073 enough that stop_func_start == prev_func_start even though
1074 they are really two functions, we will treat some calls as
1076 stop_func_start != prev_func_start
1078 /* Might be a recursive call if either we have a prologue
1079 or the call instruction itself saves the PC on the stack. */
1080 || prologue_pc != stop_func_start
1081 || stop_sp != prev_sp)
1082 && (/* PC is completely out of bounds of any known objfiles. Treat
1083 like a subroutine call. */
1086 /* If we do a call, we will be at the start of a function... */
1087 || stop_pc == stop_func_start
1089 /* ...except on the Alpha with -O (and also Irix 5 and
1090 perhaps others), in which we might call the address
1091 after the load of gp. Since prologues don't contain
1092 calls, we can't return to within one, and we don't
1093 jump back into them, so this check is OK. */
1095 || stop_pc < prologue_pc
1097 /* If we end up in certain places, it means we did a subroutine
1098 call. I'm not completely sure this is necessary now that we
1099 have the above checks with stop_func_start (and now that
1100 find_pc_partial_function is pickier). */
1101 || IN_SOLIB_TRAMPOLINE (stop_pc, stop_func_name)
1103 /* If none of the above apply, it is a jump within a function,
1104 or a return from a subroutine. The other case is longjmp,
1105 which can no longer happen here as long as the
1106 handling_longjmp stuff is working. */
1109 /* It's a subroutine call. */
1111 if (step_over_calls == 0)
1113 /* I presume that step_over_calls is only 0 when we're
1114 supposed to be stepping at the assembly language level
1115 ("stepi"). Just stop. */
1120 if (step_over_calls > 0)
1121 /* We're doing a "next". */
1122 goto step_over_function;
1124 /* If we are in a function call trampoline (a stub between
1125 the calling routine and the real function), locate the real
1126 function. That's what tells us (a) whether we want to step
1127 into it at all, and (b) what prologue we want to run to
1128 the end of, if we do step into it. */
1129 tmp = SKIP_TRAMPOLINE_CODE (stop_pc);
1131 stop_func_start = tmp;
1133 /* If we have line number information for the function we
1134 are thinking of stepping into, step into it.
1136 If there are several symtabs at that PC (e.g. with include
1137 files), just want to know whether *any* of them have line
1138 numbers. find_pc_line handles this. */
1140 struct symtab_and_line tmp_sal;
1142 tmp_sal = find_pc_line (stop_func_start, 0);
1143 if (tmp_sal.line != 0)
1144 goto step_into_function;
1148 /* A subroutine call has happened. */
1150 /* Set a special breakpoint after the return */
1151 struct symtab_and_line sr_sal;
1154 (SAVED_PC_AFTER_CALL (get_current_frame ()));
1155 sr_sal.symtab = NULL;
1157 step_resume_breakpoint =
1158 set_momentary_breakpoint (sr_sal, get_current_frame (),
1160 step_resume_breakpoint->frame = prev_frame_address;
1161 if (breakpoints_inserted)
1162 insert_breakpoints ();
1167 /* Subroutine call with source code we should not step over.
1168 Do step to the first line of code in it. */
1169 SKIP_PROLOGUE (stop_func_start);
1170 sal = find_pc_line (stop_func_start, 0);
1171 /* Use the step_resume_break to step until
1172 the end of the prologue, even if that involves jumps
1173 (as it seems to on the vax under 4.2). */
1174 /* If the prologue ends in the middle of a source line,
1175 continue to the end of that source line (if it is still
1176 within the function). Otherwise, just go to end of prologue. */
1177 #ifdef PROLOGUE_FIRSTLINE_OVERLAP
1178 /* no, don't either. It skips any code that's
1179 legitimately on the first line. */
1181 if (sal.end && sal.pc != stop_func_start && sal.end < stop_func_end)
1182 stop_func_start = sal.end;
1185 if (stop_func_start == stop_pc)
1187 /* We are already there: stop now. */
1192 /* Put the step-breakpoint there and go until there. */
1194 struct symtab_and_line sr_sal;
1196 sr_sal.pc = stop_func_start;
1197 sr_sal.symtab = NULL;
1199 /* Do not specify what the fp should be when we stop
1200 since on some machines the prologue
1201 is where the new fp value is established. */
1202 step_resume_breakpoint =
1203 set_momentary_breakpoint (sr_sal, NULL, bp_step_resume);
1204 if (breakpoints_inserted)
1205 insert_breakpoints ();
1207 /* And make sure stepping stops right away then. */
1208 step_range_end = step_range_start;
1213 /* We've wandered out of the step range. */
1215 sal = find_pc_line(stop_pc, 0);
1217 if (step_range_end == 1)
1219 /* It is stepi or nexti. We always want to stop stepping after
1227 /* We have no line number information. That means to stop
1228 stepping (does this always happen right after one instruction,
1229 when we do "s" in a function with no line numbers,
1230 or can this happen as a result of a return or longjmp?). */
1235 if (stop_pc == sal.pc
1236 && (current_line != sal.line || current_symtab != sal.symtab))
1238 /* We are at the start of a different line. So stop. Note that
1239 we don't stop if we step into the middle of a different line.
1240 That is said to make things like for (;;) statements work
1246 /* We aren't done stepping.
1248 Optimize by setting the stepping range to the line.
1249 (We might not be in the original line, but if we entered a
1250 new line in mid-statement, we continue stepping. This makes
1251 things like for(;;) statements work better.) */
1253 if (stop_func_end && sal.end >= stop_func_end)
1255 /* If this is the last line of the function, don't keep stepping
1256 (it would probably step us out of the function).
1257 This is particularly necessary for a one-line function,
1258 in which after skipping the prologue we better stop even though
1259 we will be in mid-line. */
1263 step_range_start = sal.pc;
1264 step_range_end = sal.end;
1269 && IN_SIGTRAMP (stop_pc, stop_func_name)
1270 && !IN_SIGTRAMP (prev_pc, prev_func_name))
1272 /* What has happened here is that we have just stepped the inferior
1273 with a signal (because it is a signal which shouldn't make
1274 us stop), thus stepping into sigtramp.
1276 So we need to set a step_resume_break_address breakpoint
1277 and continue until we hit it, and then step. FIXME: This should
1278 be more enduring than a step_resume breakpoint; we should know
1279 that we will later need to keep going rather than re-hitting
1280 the breakpoint here (see testsuite/gdb.t06/signals.exp where
1281 it says "exceedingly difficult"). */
1282 struct symtab_and_line sr_sal;
1284 sr_sal.pc = prev_pc;
1285 sr_sal.symtab = NULL;
1287 /* We perhaps could set the frame if we kept track of what
1288 the frame corresponding to prev_pc was. But we don't,
1290 through_sigtramp_breakpoint =
1291 set_momentary_breakpoint (sr_sal, NULL, bp_through_sigtramp);
1292 if (breakpoints_inserted)
1293 insert_breakpoints ();
1295 remove_breakpoints_on_following_step = 1;
1300 /* Come to this label when you need to resume the inferior.
1301 It's really much cleaner to do a goto than a maze of if-else
1304 /* Save the pc before execution, to compare with pc after stop. */
1305 prev_pc = read_pc (); /* Might have been DECR_AFTER_BREAK */
1306 prev_func_start = stop_func_start; /* Ok, since if DECR_PC_AFTER
1307 BREAK is defined, the
1308 original pc would not have
1309 been at the start of a
1311 prev_func_name = stop_func_name;
1313 prev_frame_address = stop_frame_address;
1315 /* If we did not do break;, it means we should keep
1316 running the inferior and not return to debugger. */
1318 if (trap_expected && stop_signal != TARGET_SIGNAL_TRAP)
1320 /* We took a signal (which we are supposed to pass through to
1321 the inferior, else we'd have done a break above) and we
1322 haven't yet gotten our trap. Simply continue. */
1323 resume (CURRENTLY_STEPPING (), stop_signal);
1327 /* Either the trap was not expected, but we are continuing
1328 anyway (the user asked that this signal be passed to the
1331 The signal was SIGTRAP, e.g. it was our signal, but we
1332 decided we should resume from it.
1334 We're going to run this baby now!
1336 Insert breakpoints now, unless we are trying
1337 to one-proceed past a breakpoint. */
1338 /* If we've just finished a special step resume and we don't
1339 want to hit a breakpoint, pull em out. */
1340 if (step_resume_breakpoint == NULL
1341 && through_sigtramp_breakpoint == NULL
1342 && remove_breakpoints_on_following_step)
1344 remove_breakpoints_on_following_step = 0;
1345 remove_breakpoints ();
1346 breakpoints_inserted = 0;
1348 else if (!breakpoints_inserted &&
1349 (through_sigtramp_breakpoint != NULL || !another_trap))
1351 breakpoints_failed = insert_breakpoints ();
1352 if (breakpoints_failed)
1354 breakpoints_inserted = 1;
1357 trap_expected = another_trap;
1359 if (stop_signal == TARGET_SIGNAL_TRAP)
1360 stop_signal = TARGET_SIGNAL_0;
1362 #ifdef SHIFT_INST_REGS
1363 /* I'm not sure when this following segment applies. I do know, now,
1364 that we shouldn't rewrite the regs when we were stopped by a
1365 random signal from the inferior process. */
1366 /* FIXME: Shouldn't this be based on the valid bit of the SXIP?
1367 (this is only used on the 88k). */
1369 if (!bpstat_explains_signal (stop_bpstat)
1370 && (stop_signal != TARGET_SIGNAL_CHLD)
1371 && !stopped_by_random_signal)
1373 #endif /* SHIFT_INST_REGS */
1375 resume (CURRENTLY_STEPPING (), stop_signal);
1380 if (target_has_execution)
1382 /* Assuming the inferior still exists, set these up for next
1383 time, just like we did above if we didn't break out of the
1385 prev_pc = read_pc ();
1386 prev_func_start = stop_func_start;
1387 prev_func_name = stop_func_name;
1389 prev_frame_address = stop_frame_address;
1391 do_cleanups (old_cleanups);
1394 /* Here to return control to GDB when the inferior stops for real.
1395 Print appropriate messages, remove breakpoints, give terminal our modes.
1397 STOP_PRINT_FRAME nonzero means print the executing frame
1398 (pc, function, args, file, line number and line text).
1399 BREAKPOINTS_FAILED nonzero means stop was due to error
1400 attempting to insert breakpoints. */
1405 /* Make sure that the current_frame's pc is correct. This
1406 is a correction for setting up the frame info before doing
1407 DECR_PC_AFTER_BREAK */
1408 if (target_has_execution && get_current_frame())
1409 (get_current_frame ())->pc = read_pc ();
1411 if (breakpoints_failed)
1413 target_terminal_ours_for_output ();
1414 print_sys_errmsg ("ptrace", breakpoints_failed);
1415 printf_filtered ("Stopped; cannot insert breakpoints.\n\
1416 The same program may be running in another process.\n");
1419 if (target_has_execution && breakpoints_inserted)
1420 if (remove_breakpoints ())
1422 target_terminal_ours_for_output ();
1423 printf_filtered ("Cannot remove breakpoints because program is no longer writable.\n\
1424 It might be running in another process.\n\
1425 Further execution is probably impossible.\n");
1428 breakpoints_inserted = 0;
1430 /* Delete the breakpoint we stopped at, if it wants to be deleted.
1431 Delete any breakpoint that is to be deleted at the next stop. */
1433 breakpoint_auto_delete (stop_bpstat);
1435 /* If an auto-display called a function and that got a signal,
1436 delete that auto-display to avoid an infinite recursion. */
1438 if (stopped_by_random_signal)
1439 disable_current_display ();
1441 if (step_multi && stop_step)
1444 target_terminal_ours ();
1446 /* Look up the hook_stop and run it if it exists. */
1448 if (stop_command->hook)
1450 catch_errors (hook_stop_stub, (char *)stop_command->hook,
1451 "Error while running hook_stop:\n", RETURN_MASK_ALL);
1454 if (!target_has_stack)
1457 /* Select innermost stack frame except on return from a stack dummy routine,
1458 or if the program has exited. Print it without a level number if
1459 we have changed functions or hit a breakpoint. Print source line
1461 if (!stop_stack_dummy)
1463 if (stop_print_frame)
1467 source_only = bpstat_print (stop_bpstat);
1468 source_only = source_only ||
1470 && step_frame_address == stop_frame_address
1471 && step_start_function == find_pc_function (stop_pc));
1473 print_stack_frame (selected_frame, -1, source_only? -1: 1);
1475 /* Display the auto-display expressions. */
1480 /* Save the function value return registers, if we care.
1481 We might be about to restore their previous contents. */
1482 if (proceed_to_finish)
1483 read_register_bytes (0, stop_registers, REGISTER_BYTES);
1485 if (stop_stack_dummy)
1487 /* Pop the empty frame that contains the stack dummy.
1488 POP_FRAME ends with a setting of the current frame, so we
1489 can use that next. */
1491 /* Set stop_pc to what it was before we called the function. Can't rely
1492 on restore_inferior_status because that only gets called if we don't
1493 stop in the called function. */
1494 stop_pc = read_pc();
1495 select_frame (get_current_frame (), 0);
1498 annotate_stopped ();
1502 hook_stop_stub (cmd)
1505 execute_user_command ((struct cmd_list_element *)cmd, 0);
1509 int signal_stop_state (signo)
1512 return signal_stop[signo];
1515 int signal_print_state (signo)
1518 return signal_print[signo];
1521 int signal_pass_state (signo)
1524 return signal_program[signo];
1531 Signal Stop\tPrint\tPass to program\tDescription\n");
1535 sig_print_info (oursig)
1536 enum target_signal oursig;
1538 char *name = target_signal_to_name (oursig);
1539 printf_filtered ("%s", name);
1540 printf_filtered ("%*.*s ", 13 - strlen (name), 13 - strlen (name),
1542 printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
1543 printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
1544 printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
1545 printf_filtered ("%s\n", target_signal_to_string (oursig));
1548 /* Specify how various signals in the inferior should be handled. */
1551 handle_command (args, from_tty)
1556 int digits, wordlen;
1557 int sigfirst, signum, siglast;
1558 enum target_signal oursig;
1561 unsigned char *sigs;
1562 struct cleanup *old_chain;
1566 error_no_arg ("signal to handle");
1569 /* Allocate and zero an array of flags for which signals to handle. */
1571 nsigs = (int)TARGET_SIGNAL_LAST;
1572 sigs = (unsigned char *) alloca (nsigs);
1573 memset (sigs, 0, nsigs);
1575 /* Break the command line up into args. */
1577 argv = buildargv (args);
1582 old_chain = make_cleanup (freeargv, (char *) argv);
1584 /* Walk through the args, looking for signal oursigs, signal names, and
1585 actions. Signal numbers and signal names may be interspersed with
1586 actions, with the actions being performed for all signals cumulatively
1587 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
1589 while (*argv != NULL)
1591 wordlen = strlen (*argv);
1592 for (digits = 0; isdigit ((*argv)[digits]); digits++) {;}
1594 sigfirst = siglast = -1;
1596 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
1598 /* Apply action to all signals except those used by the
1599 debugger. Silently skip those. */
1602 siglast = nsigs - 1;
1604 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
1606 SET_SIGS (nsigs, sigs, signal_stop);
1607 SET_SIGS (nsigs, sigs, signal_print);
1609 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
1611 UNSET_SIGS (nsigs, sigs, signal_program);
1613 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
1615 SET_SIGS (nsigs, sigs, signal_print);
1617 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
1619 SET_SIGS (nsigs, sigs, signal_program);
1621 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
1623 UNSET_SIGS (nsigs, sigs, signal_stop);
1625 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
1627 SET_SIGS (nsigs, sigs, signal_program);
1629 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
1631 UNSET_SIGS (nsigs, sigs, signal_print);
1632 UNSET_SIGS (nsigs, sigs, signal_stop);
1634 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
1636 UNSET_SIGS (nsigs, sigs, signal_program);
1638 else if (digits > 0)
1640 /* It is numeric. The numeric signal refers to our own internal
1641 signal numbering from target.h, not to host/target signal number.
1642 This is a feature; users really should be using symbolic names
1643 anyway, and the common ones like SIGHUP, SIGINT, SIGALRM, etc.
1644 will work right anyway. */
1646 sigfirst = siglast = atoi (*argv);
1647 if ((*argv)[digits] == '-')
1649 siglast = atoi ((*argv) + digits + 1);
1651 if (sigfirst > siglast)
1653 /* Bet he didn't figure we'd think of this case... */
1658 if (sigfirst < 0 || sigfirst >= nsigs)
1660 error ("Signal %d not in range 0-%d", sigfirst, nsigs - 1);
1662 if (siglast < 0 || siglast >= nsigs)
1664 error ("Signal %d not in range 0-%d", siglast, nsigs - 1);
1669 oursig = target_signal_from_name (*argv);
1670 if (oursig != TARGET_SIGNAL_UNKNOWN)
1672 sigfirst = siglast = (int)oursig;
1676 /* Not a number and not a recognized flag word => complain. */
1677 error ("Unrecognized or ambiguous flag word: \"%s\".", *argv);
1681 /* If any signal numbers or symbol names were found, set flags for
1682 which signals to apply actions to. */
1684 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
1686 switch ((enum target_signal)signum)
1688 case TARGET_SIGNAL_TRAP:
1689 case TARGET_SIGNAL_INT:
1690 if (!allsigs && !sigs[signum])
1692 if (query ("%s is used by the debugger.\n\
1693 Are you sure you want to change it? ",
1694 target_signal_to_name
1695 ((enum target_signal)signum)))
1701 printf_unfiltered ("Not confirmed, unchanged.\n");
1702 gdb_flush (gdb_stdout);
1715 target_notice_signals(inferior_pid);
1719 /* Show the results. */
1720 sig_print_header ();
1721 for (signum = 0; signum < nsigs; signum++)
1725 sig_print_info (signum);
1730 do_cleanups (old_chain);
1733 /* Print current contents of the tables set by the handle command.
1734 It is possible we should just be printing signals actually used
1735 by the current target (but for things to work right when switching
1736 targets, all signals should be in the signal tables). */
1739 signals_info (signum_exp, from_tty)
1743 enum target_signal oursig;
1744 sig_print_header ();
1748 /* First see if this is a symbol name. */
1749 oursig = target_signal_from_name (signum_exp);
1750 if (oursig == TARGET_SIGNAL_UNKNOWN)
1752 /* Nope, maybe it's an address which evaluates to a signal
1754 /* The numeric signal refers to our own internal
1755 signal numbering from target.h, not to host/target signal number.
1756 This is a feature; users really should be using symbolic names
1757 anyway, and the common ones like SIGHUP, SIGINT, SIGALRM, etc.
1758 will work right anyway. */
1759 int i = parse_and_eval_address (signum_exp);
1760 if (i >= (int)TARGET_SIGNAL_LAST
1762 || i == (int)TARGET_SIGNAL_UNKNOWN
1763 || i == (int)TARGET_SIGNAL_DEFAULT)
1764 error ("Signal number out of bounds.");
1765 oursig = (enum target_signal)i;
1767 sig_print_info (oursig);
1771 printf_filtered ("\n");
1772 /* These ugly casts brought to you by the native VAX compiler. */
1773 for (oursig = TARGET_SIGNAL_FIRST;
1774 (int)oursig < (int)TARGET_SIGNAL_LAST;
1775 oursig = (enum target_signal)((int)oursig + 1))
1779 if (oursig != TARGET_SIGNAL_UNKNOWN
1780 && oursig != TARGET_SIGNAL_DEFAULT
1781 && oursig != TARGET_SIGNAL_0)
1782 sig_print_info (oursig);
1785 printf_filtered ("\nUse the \"handle\" command to change these tables.\n");
1788 /* Save all of the information associated with the inferior<==>gdb
1789 connection. INF_STATUS is a pointer to a "struct inferior_status"
1790 (defined in inferior.h). */
1793 save_inferior_status (inf_status, restore_stack_info)
1794 struct inferior_status *inf_status;
1795 int restore_stack_info;
1797 inf_status->stop_signal = stop_signal;
1798 inf_status->stop_pc = stop_pc;
1799 inf_status->stop_frame_address = stop_frame_address;
1800 inf_status->stop_step = stop_step;
1801 inf_status->stop_stack_dummy = stop_stack_dummy;
1802 inf_status->stopped_by_random_signal = stopped_by_random_signal;
1803 inf_status->trap_expected = trap_expected;
1804 inf_status->step_range_start = step_range_start;
1805 inf_status->step_range_end = step_range_end;
1806 inf_status->step_frame_address = step_frame_address;
1807 inf_status->step_over_calls = step_over_calls;
1808 inf_status->stop_after_trap = stop_after_trap;
1809 inf_status->stop_soon_quietly = stop_soon_quietly;
1810 /* Save original bpstat chain here; replace it with copy of chain.
1811 If caller's caller is walking the chain, they'll be happier if we
1812 hand them back the original chain when restore_i_s is called. */
1813 inf_status->stop_bpstat = stop_bpstat;
1814 stop_bpstat = bpstat_copy (stop_bpstat);
1815 inf_status->breakpoint_proceeded = breakpoint_proceeded;
1816 inf_status->restore_stack_info = restore_stack_info;
1817 inf_status->proceed_to_finish = proceed_to_finish;
1819 memcpy (inf_status->stop_registers, stop_registers, REGISTER_BYTES);
1821 read_register_bytes (0, inf_status->registers, REGISTER_BYTES);
1823 record_selected_frame (&(inf_status->selected_frame_address),
1824 &(inf_status->selected_level));
1828 struct restore_selected_frame_args {
1829 FRAME_ADDR frame_address;
1833 static int restore_selected_frame PARAMS ((char *));
1835 /* Restore the selected frame. args is really a struct
1836 restore_selected_frame_args * (declared as char * for catch_errors)
1837 telling us what frame to restore. Returns 1 for success, or 0 for
1838 failure. An error message will have been printed on error. */
1840 restore_selected_frame (args)
1843 struct restore_selected_frame_args *fr =
1844 (struct restore_selected_frame_args *) args;
1846 int level = fr->level;
1848 fid = find_relative_frame (get_current_frame (), &level);
1850 /* If inf_status->selected_frame_address is NULL, there was no
1851 previously selected frame. */
1853 FRAME_FP (fid) != fr->frame_address ||
1856 warning ("Unable to restore previously selected frame.\n");
1859 select_frame (fid, fr->level);
1864 restore_inferior_status (inf_status)
1865 struct inferior_status *inf_status;
1867 stop_signal = inf_status->stop_signal;
1868 stop_pc = inf_status->stop_pc;
1869 stop_frame_address = inf_status->stop_frame_address;
1870 stop_step = inf_status->stop_step;
1871 stop_stack_dummy = inf_status->stop_stack_dummy;
1872 stopped_by_random_signal = inf_status->stopped_by_random_signal;
1873 trap_expected = inf_status->trap_expected;
1874 step_range_start = inf_status->step_range_start;
1875 step_range_end = inf_status->step_range_end;
1876 step_frame_address = inf_status->step_frame_address;
1877 step_over_calls = inf_status->step_over_calls;
1878 stop_after_trap = inf_status->stop_after_trap;
1879 stop_soon_quietly = inf_status->stop_soon_quietly;
1880 bpstat_clear (&stop_bpstat);
1881 stop_bpstat = inf_status->stop_bpstat;
1882 breakpoint_proceeded = inf_status->breakpoint_proceeded;
1883 proceed_to_finish = inf_status->proceed_to_finish;
1885 memcpy (stop_registers, inf_status->stop_registers, REGISTER_BYTES);
1887 /* The inferior can be gone if the user types "print exit(0)"
1888 (and perhaps other times). */
1889 if (target_has_execution)
1890 write_register_bytes (0, inf_status->registers, REGISTER_BYTES);
1892 /* The inferior can be gone if the user types "print exit(0)"
1893 (and perhaps other times). */
1895 /* FIXME: If we are being called after stopping in a function which
1896 is called from gdb, we should not be trying to restore the
1897 selected frame; it just prints a spurious error message (The
1898 message is useful, however, in detecting bugs in gdb (like if gdb
1899 clobbers the stack)). In fact, should we be restoring the
1900 inferior status at all in that case? . */
1902 if (target_has_stack && inf_status->restore_stack_info)
1904 struct restore_selected_frame_args fr;
1905 fr.level = inf_status->selected_level;
1906 fr.frame_address = inf_status->selected_frame_address;
1907 /* The point of catch_errors is that if the stack is clobbered,
1908 walking the stack might encounter a garbage pointer and error()
1909 trying to dereference it. */
1910 if (catch_errors (restore_selected_frame, &fr,
1911 "Unable to restore previously selected frame:\n",
1912 RETURN_MASK_ERROR) == 0)
1913 /* Error in restoring the selected frame. Select the innermost
1915 select_frame (get_current_frame (), 0);
1921 _initialize_infrun ()
1924 register int numsigs;
1926 add_info ("signals", signals_info,
1927 "What debugger does when program gets various signals.\n\
1928 Specify a signal number as argument to print info on that signal only.");
1929 add_info_alias ("handle", "signals", 0);
1931 add_com ("handle", class_run, handle_command,
1932 "Specify how to handle a signal.\n\
1933 Args are signal numbers and actions to apply to those signals.\n\
1934 Signal numbers may be numeric (ex. 11) or symbolic (ex. SIGSEGV).\n\
1935 Numeric ranges may be specified with the form LOW-HIGH (ex. 14-21).\n\
1936 The special arg \"all\" is recognized to mean all signals except those\n\
1937 used by the debugger, typically SIGTRAP and SIGINT.\n\
1938 Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
1939 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
1940 Stop means reenter debugger if this signal happens (implies print).\n\
1941 Print means print a message if this signal happens.\n\
1942 Pass means let program see this signal; otherwise program doesn't know.\n\
1943 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
1944 Pass and Stop may be combined.");
1946 stop_command = add_cmd ("stop", class_obscure, not_just_help_class_command,
1947 "There is no `stop' command, but you can set a hook on `stop'.\n\
1948 This allows you to set a list of commands to be run each time execution\n\
1949 of the program stops.", &cmdlist);
1951 numsigs = (int)TARGET_SIGNAL_LAST;
1952 signal_stop = (unsigned char *)
1953 xmalloc (sizeof (signal_stop[0]) * numsigs);
1954 signal_print = (unsigned char *)
1955 xmalloc (sizeof (signal_print[0]) * numsigs);
1956 signal_program = (unsigned char *)
1957 xmalloc (sizeof (signal_program[0]) * numsigs);
1958 for (i = 0; i < numsigs; i++)
1961 signal_print[i] = 1;
1962 signal_program[i] = 1;
1965 /* Signals caused by debugger's own actions
1966 should not be given to the program afterwards. */
1967 signal_program[TARGET_SIGNAL_TRAP] = 0;
1968 signal_program[TARGET_SIGNAL_INT] = 0;
1970 /* Signals that are not errors should not normally enter the debugger. */
1971 signal_stop[TARGET_SIGNAL_ALRM] = 0;
1972 signal_print[TARGET_SIGNAL_ALRM] = 0;
1973 signal_stop[TARGET_SIGNAL_VTALRM] = 0;
1974 signal_print[TARGET_SIGNAL_VTALRM] = 0;
1975 signal_stop[TARGET_SIGNAL_PROF] = 0;
1976 signal_print[TARGET_SIGNAL_PROF] = 0;
1977 signal_stop[TARGET_SIGNAL_CHLD] = 0;
1978 signal_print[TARGET_SIGNAL_CHLD] = 0;
1979 signal_stop[TARGET_SIGNAL_IO] = 0;
1980 signal_print[TARGET_SIGNAL_IO] = 0;
1981 signal_stop[TARGET_SIGNAL_POLL] = 0;
1982 signal_print[TARGET_SIGNAL_POLL] = 0;
1983 signal_stop[TARGET_SIGNAL_URG] = 0;
1984 signal_print[TARGET_SIGNAL_URG] = 0;