* procfs.c: Handle process exits more elegantly by trapping on
[deliverable/binutils-gdb.git] / gdb / infrun.c
CommitLineData
3aa6856a 1/* Target-struct-independent code to start (run) and stop an inferior process.
101b7f9c
PS
2 Copyright 1986, 1987, 1988, 1989, 1991, 1992, 1993
3 Free Software Foundation, Inc.
bd5635a1
RP
4
5This file is part of GDB.
6
3b271cf4 7This program is free software; you can redistribute it and/or modify
bd5635a1 8it under the terms of the GNU General Public License as published by
3b271cf4
JG
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
bd5635a1 11
3b271cf4 12This program is distributed in the hope that it will be useful,
bd5635a1
RP
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
3b271cf4
JG
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
bd5635a1
RP
20
21/* Notes on the algorithm used in wait_for_inferior to determine if we
22 just did a subroutine call when stepping. We have the following
23 information at that point:
24
25 Current and previous (just before this step) pc.
26 Current and previous sp.
27 Current and previous start of current function.
28
e140f1da 29 If the starts of the functions don't match, then
bd5635a1
RP
30
31 a) We did a subroutine call.
32
33 In this case, the pc will be at the beginning of a function.
34
35 b) We did a subroutine return.
36
37 Otherwise.
38
39 c) We did a longjmp.
40
41 If we did a longjump, we were doing "nexti", since a next would
42 have attempted to skip over the assembly language routine in which
43 the longjmp is coded and would have simply been the equivalent of a
44 continue. I consider this ok behaivior. We'd like one of two
45 things to happen if we are doing a nexti through the longjmp()
46 routine: 1) It behaves as a stepi, or 2) It acts like a continue as
47 above. Given that this is a special case, and that anybody who
48 thinks that the concept of sub calls is meaningful in the context
49 of a longjmp, I'll take either one. Let's see what happens.
50
51 Acts like a subroutine return. I can handle that with no problem
52 at all.
53
54 -->So: If the current and previous beginnings of the current
55 function don't match, *and* the pc is at the start of a function,
56 we've done a subroutine call. If the pc is not at the start of a
57 function, we *didn't* do a subroutine call.
58
59 -->If the beginnings of the current and previous function do match,
60 either:
61
62 a) We just did a recursive call.
63
64 In this case, we would be at the very beginning of a
65 function and 1) it will have a prologue (don't jump to
66 before prologue, or 2) (we assume here that it doesn't have
67 a prologue) there will have been a change in the stack
68 pointer over the last instruction. (Ie. it's got to put
69 the saved pc somewhere. The stack is the usual place. In
70 a recursive call a register is only an option if there's a
71 prologue to do something with it. This is even true on
72 register window machines; the prologue sets up the new
73 window. It might not be true on a register window machine
74 where the call instruction moved the register window
75 itself. Hmmm. One would hope that the stack pointer would
76 also change. If it doesn't, somebody send me a note, and
77 I'll work out a more general theory.
78 bug-gdb@prep.ai.mit.edu). This is true (albeit slipperly
79 so) on all machines I'm aware of:
80
81 m68k: Call changes stack pointer. Regular jumps don't.
82
83 sparc: Recursive calls must have frames and therefor,
84 prologues.
85
86 vax: All calls have frames and hence change the
87 stack pointer.
88
89 b) We did a return from a recursive call. I don't see that we
90 have either the ability or the need to distinguish this
91 from an ordinary jump. The stack frame will be printed
92 when and if the frame pointer changes; if we are in a
93 function without a frame pointer, it's the users own
94 lookout.
95
96 c) We did a jump within a function. We assume that this is
97 true if we didn't do a recursive call.
98
99 d) We are in no-man's land ("I see no symbols here"). We
100 don't worry about this; it will make calls look like simple
101 jumps (and the stack frames will be printed when the frame
102 pointer moves), which is a reasonably non-violent response.
bd5635a1 103*/
bd5635a1 104
bd5635a1 105#include "defs.h"
d747e0af 106#include <string.h>
a6b98cb9 107#include <ctype.h>
bd5635a1
RP
108#include "symtab.h"
109#include "frame.h"
110#include "inferior.h"
111#include "breakpoint.h"
112#include "wait.h"
113#include "gdbcore.h"
3950a34e 114#include "gdbcmd.h"
bd5635a1
RP
115#include "target.h"
116
117#include <signal.h>
118
119/* unistd.h is needed to #define X_OK */
120#ifdef USG
121#include <unistd.h>
122#else
123#include <sys/file.h>
124#endif
125
30875e1c 126/* Prototypes for local functions */
bd5635a1 127
30875e1c 128static void
e37a6e9c 129signals_info PARAMS ((char *, int));
619fd145 130
30875e1c
SG
131static void
132handle_command PARAMS ((char *, int));
133
134static void
135sig_print_info PARAMS ((int));
136
137static void
138sig_print_header PARAMS ((void));
139
30875e1c
SG
140static void
141resume_cleanups PARAMS ((int));
142
3950a34e
RP
143static int
144hook_stop_stub PARAMS ((char *));
145
30875e1c
SG
146/* GET_LONGJMP_TARGET returns the PC at which longjmp() will resume the
147 program. It needs to examine the jmp_buf argument and extract the PC
148 from it. The return value is non-zero on success, zero otherwise. */
149#ifndef GET_LONGJMP_TARGET
150#define GET_LONGJMP_TARGET(PC_ADDR) 0
151#endif
152
d747e0af
MT
153
154/* Some machines have trampoline code that sits between function callers
155 and the actual functions themselves. If this machine doesn't have
156 such things, disable their processing. */
157#ifndef SKIP_TRAMPOLINE_CODE
158#define SKIP_TRAMPOLINE_CODE(pc) 0
159#endif
160
1eeba686
PB
161/* For SVR4 shared libraries, each call goes through a small piece of
162 trampoline code in the ".init" section. IN_SOLIB_TRAMPOLINE evaluates
163 to nonzero if we are current stopped in one of these. */
164#ifndef IN_SOLIB_TRAMPOLINE
165#define IN_SOLIB_TRAMPOLINE(pc,name) 0
166#endif
d747e0af 167
9f739abd
SG
168/* On some systems, the PC may be left pointing at an instruction that won't
169 actually be executed. This is usually indicated by a bit in the PSW. If
170 we find ourselves in such a state, then we step the target beyond the
171 nullified instruction before returning control to the user so as to avoid
172 confusion. */
173
174#ifndef INSTRUCTION_NULLIFIED
175#define INSTRUCTION_NULLIFIED 0
176#endif
177
bd5635a1
RP
178/* Tables of how to react to signals; the user sets them. */
179
072b552a
JG
180static unsigned char *signal_stop;
181static unsigned char *signal_print;
182static unsigned char *signal_program;
183
184#define SET_SIGS(nsigs,sigs,flags) \
185 do { \
186 int signum = (nsigs); \
187 while (signum-- > 0) \
188 if ((sigs)[signum]) \
189 (flags)[signum] = 1; \
190 } while (0)
191
192#define UNSET_SIGS(nsigs,sigs,flags) \
193 do { \
194 int signum = (nsigs); \
195 while (signum-- > 0) \
196 if ((sigs)[signum]) \
197 (flags)[signum] = 0; \
198 } while (0)
bd5635a1 199
3950a34e
RP
200
201/* Command list pointer for the "stop" placeholder. */
202
203static struct cmd_list_element *stop_command;
204
bd5635a1 205/* Nonzero if breakpoints are now inserted in the inferior. */
bd5635a1 206
3950a34e 207static int breakpoints_inserted;
bd5635a1
RP
208
209/* Function inferior was in as of last step command. */
210
211static struct symbol *step_start_function;
212
bd5635a1
RP
213/* Nonzero if we are expecting a trace trap and should proceed from it. */
214
215static int trap_expected;
216
217/* Nonzero if the next time we try to continue the inferior, it will
218 step one instruction and generate a spurious trace trap.
219 This is used to compensate for a bug in HP-UX. */
220
221static int trap_expected_after_continue;
222
223/* Nonzero means expecting a trace trap
224 and should stop the inferior and return silently when it happens. */
225
226int stop_after_trap;
227
228/* Nonzero means expecting a trap and caller will handle it themselves.
229 It is used after attach, due to attaching to a process;
230 when running in the shell before the child program has been exec'd;
231 and when running some kinds of remote stuff (FIXME?). */
232
233int stop_soon_quietly;
234
bd5635a1
RP
235/* Nonzero if proceed is being used for a "finish" command or a similar
236 situation when stop_registers should be saved. */
237
238int proceed_to_finish;
239
240/* Save register contents here when about to pop a stack dummy frame,
241 if-and-only-if proceed_to_finish is set.
242 Thus this contains the return value from the called function (assuming
243 values are returned in a register). */
244
245char stop_registers[REGISTER_BYTES];
246
247/* Nonzero if program stopped due to error trying to insert breakpoints. */
248
249static int breakpoints_failed;
250
251/* Nonzero after stop if current stack frame should be printed. */
252
253static int stop_print_frame;
254
255#ifdef NO_SINGLE_STEP
256extern int one_stepped; /* From machine dependent code */
257extern void single_step (); /* Same. */
258#endif /* NO_SINGLE_STEP */
259
a71d17b1
JK
260\f
261/* Things to clean up if we QUIT out of resume (). */
e1ce8aa5 262/* ARGSUSED */
a71d17b1
JK
263static void
264resume_cleanups (arg)
265 int arg;
266{
267 normal_stop ();
268}
269
270/* Resume the inferior, but allow a QUIT. This is useful if the user
271 wants to interrupt some lengthy single-stepping operation
272 (for child processes, the SIGINT goes to the inferior, and so
273 we get a SIGINT random_signal, but for remote debugging and perhaps
274 other targets, that's not true).
275
276 STEP nonzero if we should step (zero to continue instead).
277 SIG is the signal to give the inferior (zero for none). */
310cc570 278void
a71d17b1
JK
279resume (step, sig)
280 int step;
281 int sig;
282{
283 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
284 QUIT;
d11c44f1 285
cef4c2e7
PS
286#ifdef CANNOT_STEP_BREAKPOINT
287 /* Most targets can step a breakpoint instruction, thus executing it
288 normally. But if this one cannot, just continue and we will hit
289 it anyway. */
290 if (step && breakpoints_inserted && breakpoint_here_p (read_pc ()))
291 step = 0;
292#endif
293
d11c44f1
JG
294#ifdef NO_SINGLE_STEP
295 if (step) {
818de002 296 single_step(sig); /* Do it the hard way, w/temp breakpoints */
d11c44f1
JG
297 step = 0; /* ...and don't ask hardware to do it. */
298 }
299#endif
300
bdbd5f50
JG
301 /* Handle any optimized stores to the inferior NOW... */
302#ifdef DO_DEFERRED_STORES
303 DO_DEFERRED_STORES;
304#endif
305
2f1c7c3f
JK
306 /* Install inferior's terminal modes. */
307 target_terminal_inferior ();
308
de43d7d0 309 target_resume (-1, step, sig);
a71d17b1
JK
310 discard_cleanups (old_cleanups);
311}
312
bd5635a1
RP
313\f
314/* Clear out all variables saying what to do when inferior is continued.
315 First do this, then set the ones you want, then call `proceed'. */
316
317void
318clear_proceed_status ()
319{
320 trap_expected = 0;
321 step_range_start = 0;
322 step_range_end = 0;
323 step_frame_address = 0;
324 step_over_calls = -1;
bd5635a1
RP
325 stop_after_trap = 0;
326 stop_soon_quietly = 0;
327 proceed_to_finish = 0;
328 breakpoint_proceeded = 1; /* We're about to proceed... */
329
330 /* Discard any remaining commands or status from previous stop. */
331 bpstat_clear (&stop_bpstat);
332}
333
334/* Basic routine for continuing the program in various fashions.
335
336 ADDR is the address to resume at, or -1 for resume where stopped.
337 SIGGNAL is the signal to give it, or 0 for none,
338 or -1 for act according to how it stopped.
339 STEP is nonzero if should trap after one instruction.
340 -1 means return after that and print nothing.
341 You should probably set various step_... variables
342 before calling here, if you are stepping.
343
344 You should call clear_proceed_status before calling proceed. */
345
346void
347proceed (addr, siggnal, step)
348 CORE_ADDR addr;
349 int siggnal;
350 int step;
351{
352 int oneproc = 0;
353
354 if (step > 0)
355 step_start_function = find_pc_function (read_pc ());
356 if (step < 0)
357 stop_after_trap = 1;
358
bdbd5f50 359 if (addr == (CORE_ADDR)-1)
bd5635a1
RP
360 {
361 /* If there is a breakpoint at the address we will resume at,
362 step one instruction before inserting breakpoints
363 so that we do not stop right away. */
364
37c99ddb 365 if (breakpoint_here_p (read_pc ()))
bd5635a1
RP
366 oneproc = 1;
367 }
368 else
101b7f9c 369 write_pc (addr);
bd5635a1
RP
370
371 if (trap_expected_after_continue)
372 {
373 /* If (step == 0), a trap will be automatically generated after
374 the first instruction is executed. Force step one
375 instruction to clear this condition. This should not occur
376 if step is nonzero, but it is harmless in that case. */
377 oneproc = 1;
378 trap_expected_after_continue = 0;
379 }
380
381 if (oneproc)
382 /* We will get a trace trap after one instruction.
383 Continue it automatically and insert breakpoints then. */
384 trap_expected = 1;
385 else
386 {
387 int temp = insert_breakpoints ();
388 if (temp)
389 {
390 print_sys_errmsg ("ptrace", temp);
391 error ("Cannot insert breakpoints.\n\
392The same program may be running in another process.");
393 }
394 breakpoints_inserted = 1;
395 }
396
bd5635a1
RP
397 if (siggnal >= 0)
398 stop_signal = siggnal;
399 /* If this signal should not be seen by program,
400 give it zero. Used for debugging signals. */
401 else if (stop_signal < NSIG && !signal_program[stop_signal])
402 stop_signal= 0;
403
bd5635a1 404 /* Resume inferior. */
a71d17b1 405 resume (oneproc || step || bpstat_should_step (), stop_signal);
bd5635a1
RP
406
407 /* Wait for it to stop (if not standalone)
408 and in any case decode why it stopped, and act accordingly. */
409
410 wait_for_inferior ();
411 normal_stop ();
412}
413
bd5635a1
RP
414/* Record the pc and sp of the program the last time it stopped.
415 These are just used internally by wait_for_inferior, but need
416 to be preserved over calls to it and cleared when the inferior
417 is started. */
418static CORE_ADDR prev_pc;
419static CORE_ADDR prev_sp;
420static CORE_ADDR prev_func_start;
421static char *prev_func_name;
422
a71d17b1 423\f
bd5635a1
RP
424/* Start remote-debugging of a machine over a serial link. */
425
426void
427start_remote ()
428{
429 init_wait_for_inferior ();
430 clear_proceed_status ();
431 stop_soon_quietly = 1;
432 trap_expected = 0;
98885d76
JK
433 wait_for_inferior ();
434 normal_stop ();
bd5635a1
RP
435}
436
437/* Initialize static vars when a new inferior begins. */
438
439void
440init_wait_for_inferior ()
441{
442 /* These are meaningless until the first time through wait_for_inferior. */
443 prev_pc = 0;
444 prev_sp = 0;
445 prev_func_start = 0;
446 prev_func_name = NULL;
447
448 trap_expected_after_continue = 0;
449 breakpoints_inserted = 0;
cf3e377e 450 breakpoint_init_inferior ();
bd5635a1
RP
451 stop_signal = 0; /* Don't confuse first call to proceed(). */
452}
453
fe675038
JK
454static void
455delete_breakpoint_current_contents (arg)
456 PTR arg;
457{
458 struct breakpoint **breakpointp = (struct breakpoint **)arg;
459 if (*breakpointp != NULL)
460 delete_breakpoint (*breakpointp);
461}
bd5635a1
RP
462\f
463/* Wait for control to return from inferior to debugger.
464 If inferior gets a signal, we may decide to start it up again
465 instead of returning. That is why there is a loop in this function.
466 When this function actually returns it means the inferior
467 should be left stopped and GDB should read more commands. */
468
469void
470wait_for_inferior ()
471{
fe675038 472 struct cleanup *old_cleanups;
bd5635a1
RP
473 WAITTYPE w;
474 int another_trap;
475 int random_signal;
37c99ddb 476 CORE_ADDR stop_sp = 0;
bd5635a1 477 CORE_ADDR stop_func_start;
981a3309 478 CORE_ADDR stop_func_end;
bd5635a1 479 char *stop_func_name;
37c99ddb 480 CORE_ADDR prologue_pc = 0, tmp;
bd5635a1
RP
481 struct symtab_and_line sal;
482 int remove_breakpoints_on_following_step = 0;
b3b39c0c 483 int current_line;
30875e1c 484 int handling_longjmp = 0; /* FIXME */
fe675038 485 struct breakpoint *step_resume_breakpoint = NULL;
37c99ddb 486 int pid;
bd5635a1 487
fe675038
JK
488 old_cleanups = make_cleanup (delete_breakpoint_current_contents,
489 &step_resume_breakpoint);
b3b39c0c
SG
490 sal = find_pc_line(prev_pc, 0);
491 current_line = sal.line;
492
cb6b0202
JK
493 /* Are we stepping? */
494#define CURRENTLY_STEPPING() ((step_resume_breakpoint == NULL \
495 && !handling_longjmp \
496 && (step_range_end \
497 || trap_expected)) \
498 || bpstat_should_step ())
499
bd5635a1
RP
500 while (1)
501 {
502 /* Clean up saved state that will become invalid. */
bd5635a1
RP
503 flush_cached_frames ();
504 registers_changed ();
505
de43d7d0 506 pid = target_wait (-1, &w);
bd5635a1 507
1eeba686
PB
508#ifdef SIGTRAP_STOP_AFTER_LOAD
509
510 /* Somebody called load(2), and it gave us a "trap signal after load".
511 Ignore it gracefully. */
512
513 SIGTRAP_STOP_AFTER_LOAD (w);
514#endif
515
bd5635a1
RP
516 /* See if the process still exists; clean up if it doesn't. */
517 if (WIFEXITED (w))
518 {
519 target_terminal_ours (); /* Must do this before mourn anyway */
520 if (WEXITSTATUS (w))
e37a6e9c 521 printf_filtered ("\nProgram exited with code 0%o.\n",
bd5635a1
RP
522 (unsigned int)WEXITSTATUS (w));
523 else
524 if (!batch_mode())
e37a6e9c 525 printf_filtered ("\nProgram exited normally.\n");
bd5635a1
RP
526 fflush (stdout);
527 target_mourn_inferior ();
528#ifdef NO_SINGLE_STEP
529 one_stepped = 0;
530#endif
531 stop_print_frame = 0;
532 break;
533 }
534 else if (!WIFSTOPPED (w))
535 {
fee44494
JK
536 char *signame;
537
bd5635a1
RP
538 stop_print_frame = 0;
539 stop_signal = WTERMSIG (w);
540 target_terminal_ours (); /* Must do this before mourn anyway */
30875e1c 541 target_kill (); /* kill mourns as well */
bd5635a1 542#ifdef PRINT_RANDOM_SIGNAL
e37a6e9c 543 printf_filtered ("\nProgram terminated: ");
bd5635a1
RP
544 PRINT_RANDOM_SIGNAL (stop_signal);
545#else
fee44494
JK
546 printf_filtered ("\nProgram terminated with signal ");
547 signame = strsigno (stop_signal);
548 if (signame == NULL)
549 printf_filtered ("%d", stop_signal);
550 else
551 /* Do we need to print the number in addition to the name? */
552 printf_filtered ("%s (%d)", signame, stop_signal);
553 printf_filtered (", %s\n", safe_strsignal (stop_signal));
bd5635a1 554#endif
fee44494 555 printf_filtered ("The program no longer exists.\n");
bd5635a1
RP
556 fflush (stdout);
557#ifdef NO_SINGLE_STEP
558 one_stepped = 0;
559#endif
560 break;
561 }
de43d7d0
SG
562
563 stop_signal = WSTOPSIG (w);
564
565 if (pid != inferior_pid)
566 {
567 int save_pid = inferior_pid;
568
569 inferior_pid = pid; /* Setup for target memory/regs */
570 registers_changed ();
571 stop_pc = read_pc ();
572 inferior_pid = save_pid;
573 registers_changed ();
574 }
575 else
576 stop_pc = read_pc ();
577
578 if (stop_signal == SIGTRAP
579 && breakpoint_here_p (stop_pc - DECR_PC_AFTER_BREAK))
580 if (!breakpoint_thread_match (stop_pc - DECR_PC_AFTER_BREAK, pid))
581 {
582 /* Saw a breakpoint, but it was hit by the wrong thread. Just continue. */
583 if (breakpoints_inserted)
584 {
585 remove_breakpoints ();
586 target_resume (pid, 1, 0); /* Single step */
749e538b 587 /* FIXME: What if a signal arrives instead of the single-step
18122d8b 588 happening? */
de43d7d0
SG
589 target_wait (pid, NULL);
590 insert_breakpoints ();
591 }
592 target_resume (-1, 0, 0);
593 continue;
594 }
595 else
596 if (pid != inferior_pid)
597 goto switch_thread;
598
37c99ddb
JK
599 if (pid != inferior_pid)
600 {
601 int printed = 0;
602
603 if (!in_thread_list (pid))
604 {
605 fprintf (stderr, "[New %s]\n", target_pid_to_str (pid));
606 add_thread (pid);
607
de43d7d0 608 target_resume (-1, 0, 0);
37c99ddb
JK
609 continue;
610 }
611 else
612 {
37c99ddb
JK
613 if (stop_signal >= NSIG || signal_print[stop_signal])
614 {
615 char *signame;
616
617 printed = 1;
618 target_terminal_ours_for_output ();
619 printf_filtered ("\nProgram received signal ");
620 signame = strsigno (stop_signal);
621 if (signame == NULL)
622 printf_filtered ("%d", stop_signal);
623 else
624 printf_filtered ("%s (%d)", signame, stop_signal);
625 printf_filtered (", %s\n", safe_strsignal (stop_signal));
626
627 fflush (stdout);
628 }
629
de43d7d0
SG
630 if (stop_signal == SIGTRAP
631 || stop_signal >= NSIG
632 || signal_stop[stop_signal])
37c99ddb 633 {
de43d7d0 634switch_thread:
37c99ddb
JK
635 inferior_pid = pid;
636 printf_filtered ("[Switching to %s]\n", target_pid_to_str (pid));
637
638 flush_cached_frames ();
639 registers_changed ();
640 trap_expected = 0;
641 if (step_resume_breakpoint)
642 {
643 delete_breakpoint (step_resume_breakpoint);
644 step_resume_breakpoint = NULL;
645 }
646 prev_pc = 0;
647 prev_sp = 0;
648 prev_func_name = NULL;
649 step_range_start = 0;
650 step_range_end = 0;
651 step_frame_address = 0;
652 handling_longjmp = 0;
653 another_trap = 0;
654 }
655 else
656 {
657 if (printed)
658 target_terminal_inferior ();
659
660 /* Clear the signal if it should not be passed. */
661 if (signal_program[stop_signal] == 0)
662 stop_signal = 0;
663
de43d7d0 664 target_resume (-1, 0, stop_signal);
37c99ddb
JK
665 continue;
666 }
667 }
668 }
669
de43d7d0
SG
670same_pid:
671
bd5635a1
RP
672#ifdef NO_SINGLE_STEP
673 if (one_stepped)
674 single_step (0); /* This actually cleans up the ss */
675#endif /* NO_SINGLE_STEP */
676
9f739abd
SG
677/* If PC is pointing at a nullified instruction, then step beyond it so that
678 the user won't be confused when GDB appears to be ready to execute it. */
679
680 if (INSTRUCTION_NULLIFIED)
681 {
682 resume (1, 0);
683 continue;
684 }
685
37c99ddb 686 set_current_frame ( create_new_frame (read_fp (), stop_pc));
fe675038 687
bd5635a1 688 stop_frame_address = FRAME_FP (get_current_frame ());
fee44494 689 stop_sp = read_sp ();
bd5635a1 690 stop_func_start = 0;
981a3309 691 stop_func_end = 0;
bd5635a1
RP
692 stop_func_name = 0;
693 /* Don't care about return value; stop_func_start and stop_func_name
694 will both be 0 if it doesn't work. */
37c99ddb 695 find_pc_partial_function (stop_pc, &stop_func_name, &stop_func_start,
981a3309 696 &stop_func_end);
bd5635a1
RP
697 stop_func_start += FUNCTION_START_OFFSET;
698 another_trap = 0;
699 bpstat_clear (&stop_bpstat);
700 stop_step = 0;
701 stop_stack_dummy = 0;
702 stop_print_frame = 1;
bd5635a1
RP
703 random_signal = 0;
704 stopped_by_random_signal = 0;
705 breakpoints_failed = 0;
706
707 /* Look at the cause of the stop, and decide what to do.
708 The alternatives are:
709 1) break; to really stop and return to the debugger,
710 2) drop through to start up again
711 (set another_trap to 1 to single step once)
712 3) set random_signal to 1, and the decision between 1 and 2
713 will be made according to the signal handling tables. */
714
bd5635a1
RP
715 /* First, distinguish signals caused by the debugger from signals
716 that have to do with the program's own actions.
717 Note that breakpoint insns may cause SIGTRAP or SIGILL
718 or SIGEMT, depending on the operating system version.
719 Here we detect when a SIGILL or SIGEMT is really a breakpoint
720 and change it to SIGTRAP. */
721
722 if (stop_signal == SIGTRAP
723 || (breakpoints_inserted &&
724 (stop_signal == SIGILL
e37a6e9c
PB
725#ifdef SIGEMT
726 || stop_signal == SIGEMT
727#endif
728 ))
bd5635a1
RP
729 || stop_soon_quietly)
730 {
731 if (stop_signal == SIGTRAP && stop_after_trap)
732 {
733 stop_print_frame = 0;
734 break;
735 }
736 if (stop_soon_quietly)
737 break;
738
739 /* Don't even think about breakpoints
740 if just proceeded over a breakpoint.
741
742 However, if we are trying to proceed over a breakpoint
fe675038 743 and end up in sigtramp, then step_resume_breakpoint
bd5635a1
RP
744 will be set and we should check whether we've hit the
745 step breakpoint. */
746 if (stop_signal == SIGTRAP && trap_expected
fe675038 747 && step_resume_breakpoint == NULL)
bd5635a1
RP
748 bpstat_clear (&stop_bpstat);
749 else
750 {
751 /* See if there is a breakpoint at the current PC. */
cb6b0202
JK
752 stop_bpstat = bpstat_stop_status
753 (&stop_pc, stop_frame_address,
bd5635a1 754#if DECR_PC_AFTER_BREAK
cb6b0202
JK
755 /* Notice the case of stepping through a jump
756 that lands just after a breakpoint.
757 Don't confuse that with hitting the breakpoint.
758 What we check for is that 1) stepping is going on
759 and 2) the pc before the last insn does not match
760 the address of the breakpoint before the current pc. */
761 (prev_pc != stop_pc - DECR_PC_AFTER_BREAK
762 && CURRENTLY_STEPPING ())
763#else /* DECR_PC_AFTER_BREAK zero */
764 0
765#endif /* DECR_PC_AFTER_BREAK zero */
766 );
767 /* Following in case break condition called a
768 function. */
769 stop_print_frame = 1;
bd5635a1 770 }
fe675038 771
bd5635a1
RP
772 if (stop_signal == SIGTRAP)
773 random_signal
774 = !(bpstat_explains_signal (stop_bpstat)
775 || trap_expected
84d59861 776#ifndef CALL_DUMMY_BREAKPOINT_OFFSET
bd5635a1 777 || PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address)
84d59861 778#endif /* No CALL_DUMMY_BREAKPOINT_OFFSET. */
fe675038 779 || (step_range_end && step_resume_breakpoint == NULL));
bd5635a1
RP
780 else
781 {
782 random_signal
783 = !(bpstat_explains_signal (stop_bpstat)
bd5635a1
RP
784 /* End of a stack dummy. Some systems (e.g. Sony
785 news) give another signal besides SIGTRAP,
786 so check here as well as above. */
84d59861 787#ifndef CALL_DUMMY_BREAKPOINT_OFFSET
d747e0af 788 || PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address)
84d59861 789#endif /* No CALL_DUMMY_BREAKPOINT_OFFSET. */
bd5635a1
RP
790 );
791 if (!random_signal)
792 stop_signal = SIGTRAP;
793 }
794 }
795 else
796 random_signal = 1;
fe675038 797
bd5635a1
RP
798 /* For the program's own signals, act according to
799 the signal handling tables. */
fe675038 800
bd5635a1
RP
801 if (random_signal)
802 {
803 /* Signal not for debugging purposes. */
804 int printed = 0;
805
806 stopped_by_random_signal = 1;
807
808 if (stop_signal >= NSIG
809 || signal_print[stop_signal])
810 {
fee44494 811 char *signame;
bd5635a1
RP
812 printed = 1;
813 target_terminal_ours_for_output ();
814#ifdef PRINT_RANDOM_SIGNAL
815 PRINT_RANDOM_SIGNAL (stop_signal);
816#else
fee44494
JK
817 printf_filtered ("\nProgram received signal ");
818 signame = strsigno (stop_signal);
819 if (signame == NULL)
820 printf_filtered ("%d", stop_signal);
821 else
822 /* Do we need to print the number as well as the name? */
823 printf_filtered ("%s (%d)", signame, stop_signal);
824 printf_filtered (", %s\n", safe_strsignal (stop_signal));
bd5635a1
RP
825#endif /* PRINT_RANDOM_SIGNAL */
826 fflush (stdout);
827 }
828 if (stop_signal >= NSIG
829 || signal_stop[stop_signal])
830 break;
831 /* If not going to stop, give terminal back
832 if we took it away. */
833 else if (printed)
834 target_terminal_inferior ();
b7f81b57 835
101b7f9c
PS
836 /* Clear the signal if it should not be passed. */
837 if (signal_program[stop_signal] == 0)
838 stop_signal = 0;
839
fe675038
JK
840 /* I'm not sure whether this needs to be check_sigtramp2 or
841 whether it could/should be keep_going. */
842 goto check_sigtramp2;
bd5635a1 843 }
30875e1c 844
bd5635a1 845 /* Handle cases caused by hitting a breakpoint. */
fe675038
JK
846 {
847 CORE_ADDR jmp_buf_pc;
29c6dce2
JK
848 struct bpstat_what what;
849
850 what = bpstat_what (stop_bpstat);
bd5635a1 851
84d59861
JK
852 if (what.call_dummy)
853 {
854 stop_stack_dummy = 1;
855#ifdef HP_OS_BUG
856 trap_expected_after_continue = 1;
857#endif
858 }
859
fe675038
JK
860 switch (what.main_action)
861 {
862 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
863 /* If we hit the breakpoint at longjmp, disable it for the
864 duration of this command. Then, install a temporary
865 breakpoint at the target of the jmp_buf. */
866 disable_longjmp_breakpoint();
867 remove_breakpoints ();
868 breakpoints_inserted = 0;
869 if (!GET_LONGJMP_TARGET(&jmp_buf_pc)) goto keep_going;
870
871 /* Need to blow away step-resume breakpoint, as it
872 interferes with us */
873 if (step_resume_breakpoint != NULL)
874 {
875 delete_breakpoint (step_resume_breakpoint);
876 step_resume_breakpoint = NULL;
877 what.step_resume = 0;
878 }
30875e1c 879
101b7f9c 880#if 0
fe675038
JK
881 /* FIXME - Need to implement nested temporary breakpoints */
882 if (step_over_calls > 0)
883 set_longjmp_resume_breakpoint(jmp_buf_pc,
884 get_current_frame());
885 else
30875e1c 886#endif /* 0 */
fe675038
JK
887 set_longjmp_resume_breakpoint(jmp_buf_pc, NULL);
888 handling_longjmp = 1; /* FIXME */
889 goto keep_going;
890
891 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
892 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE:
893 remove_breakpoints ();
894 breakpoints_inserted = 0;
101b7f9c 895#if 0
fe675038
JK
896 /* FIXME - Need to implement nested temporary breakpoints */
897 if (step_over_calls
898 && (stop_frame_address
899 INNER_THAN step_frame_address))
900 {
901 another_trap = 1;
902 goto keep_going;
903 }
30875e1c 904#endif /* 0 */
fe675038
JK
905 disable_longjmp_breakpoint();
906 handling_longjmp = 0; /* FIXME */
907 if (what.main_action == BPSTAT_WHAT_CLEAR_LONGJMP_RESUME)
101b7f9c 908 break;
fe675038
JK
909 /* else fallthrough */
910
911 case BPSTAT_WHAT_SINGLE:
912 if (breakpoints_inserted)
913 remove_breakpoints ();
914 breakpoints_inserted = 0;
915 another_trap = 1;
916 /* Still need to check other stuff, at least the case
917 where we are stepping and step out of the right range. */
918 break;
919
920 case BPSTAT_WHAT_STOP_NOISY:
921 stop_print_frame = 1;
922 /* We are about to nuke the step_resume_breakpoint via the
923 cleanup chain, so no need to worry about it here. */
924 goto stop_stepping;
101b7f9c 925
fe675038
JK
926 case BPSTAT_WHAT_STOP_SILENT:
927 stop_print_frame = 0;
928 /* We are about to nuke the step_resume_breakpoint via the
929 cleanup chain, so no need to worry about it here. */
930 goto stop_stepping;
931
932 case BPSTAT_WHAT_KEEP_CHECKING:
933 break;
934 }
935
936 if (what.step_resume)
30875e1c 937 {
fe675038
JK
938 delete_breakpoint (step_resume_breakpoint);
939 step_resume_breakpoint = NULL;
30875e1c 940
fe675038
JK
941 /* If were waiting for a trap, hitting the step_resume_break
942 doesn't count as getting it. */
943 if (trap_expected)
944 another_trap = 1;
30875e1c 945 }
fe675038 946 }
30875e1c
SG
947
948 /* We come here if we hit a breakpoint but should not
949 stop for it. Possibly we also were stepping
950 and should stop for that. So fall through and
951 test for stepping. But, if not stepping,
952 do not stop. */
953
84d59861
JK
954#ifndef CALL_DUMMY_BREAKPOINT_OFFSET
955 /* This is the old way of detecting the end of the stack dummy.
956 An architecture which defines CALL_DUMMY_BREAKPOINT_OFFSET gets
957 handled above. As soon as we can test it on all of them, all
958 architectures should define it. */
959
bd5635a1 960 /* If this is the breakpoint at the end of a stack dummy,
c9de302b
SG
961 just stop silently, unless the user was doing an si/ni, in which
962 case she'd better know what she's doing. */
963
964 if (PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address)
965 && !step_range_end)
966 {
967 stop_print_frame = 0;
968 stop_stack_dummy = 1;
bd5635a1 969#ifdef HP_OS_BUG
c9de302b 970 trap_expected_after_continue = 1;
bd5635a1 971#endif
c9de302b
SG
972 break;
973 }
84d59861
JK
974#endif /* No CALL_DUMMY_BREAKPOINT_OFFSET. */
975
fe675038 976 if (step_resume_breakpoint)
bd5635a1
RP
977 /* Having a step-resume breakpoint overrides anything
978 else having to do with stepping commands until
979 that breakpoint is reached. */
fe675038
JK
980 /* I suspect this could/should be keep_going, because if the
981 check_sigtramp2 check succeeds, then it will put in another
982 step_resume_breakpoint, and we aren't (yet) prepared to nest
983 them. */
984 goto check_sigtramp2;
985
986 if (step_range_end == 0)
987 /* Likewise if we aren't even stepping. */
988 /* I'm not sure whether this needs to be check_sigtramp2 or
989 whether it could/should be keep_going. */
990 goto check_sigtramp2;
991
bd5635a1 992 /* If stepping through a line, keep going if still within it. */
fe675038
JK
993 if (stop_pc >= step_range_start
994 && stop_pc < step_range_end
995 /* The step range might include the start of the
996 function, so if we are at the start of the
997 step range and either the stack or frame pointers
998 just changed, we've stepped outside */
999 && !(stop_pc == step_range_start
1000 && stop_frame_address
1001 && (stop_sp INNER_THAN prev_sp
1002 || stop_frame_address != step_frame_address)))
bd5635a1 1003 {
fe675038
JK
1004 /* We might be doing a BPSTAT_WHAT_SINGLE and getting a signal.
1005 So definately need to check for sigtramp here. */
1006 goto check_sigtramp2;
bd5635a1 1007 }
fe675038 1008
bd5635a1
RP
1009 /* We stepped out of the stepping range. See if that was due
1010 to a subroutine call that we should proceed to the end of. */
fe675038
JK
1011
1012 /* Did we just take a signal? */
1013 if (IN_SIGTRAMP (stop_pc, stop_func_name)
1014 && !IN_SIGTRAMP (prev_pc, prev_func_name))
bd5635a1 1015 {
fe675038
JK
1016 /* This code is needed at least in the following case:
1017 The user types "next" and then a signal arrives (before
1018 the "next" is done). */
1019 /* We've just taken a signal; go until we are back to
1020 the point where we took it and one more. */
1021 {
1022 struct symtab_and_line sr_sal;
1023
1024 sr_sal.pc = prev_pc;
1025 sr_sal.symtab = NULL;
1026 sr_sal.line = 0;
1027 step_resume_breakpoint =
1028 set_momentary_breakpoint (sr_sal, get_current_frame (),
1029 bp_step_resume);
1030 if (breakpoints_inserted)
1031 insert_breakpoints ();
1032 }
bd5635a1 1033
fe675038
JK
1034 /* If this is stepi or nexti, make sure that the stepping range
1035 gets us past that instruction. */
1036 if (step_range_end == 1)
1037 /* FIXME: Does this run afoul of the code below which, if
1038 we step into the middle of a line, resets the stepping
1039 range? */
1040 step_range_end = (step_range_start = prev_pc) + 1;
101b7f9c 1041
fe675038
JK
1042 remove_breakpoints_on_following_step = 1;
1043 goto keep_going;
1044 }
30875e1c 1045
fe675038
JK
1046 if (stop_func_start)
1047 {
1048 /* Do this after the IN_SIGTRAMP check; it might give
1049 an error. */
1050 prologue_pc = stop_func_start;
1051 SKIP_PROLOGUE (prologue_pc);
1052 }
30875e1c 1053
fe675038 1054 /* ==> See comments at top of file on this algorithm. <==*/
d747e0af 1055
981a3309
SG
1056 if ((stop_pc < stop_func_start
1057 || stop_pc >= stop_func_end
1058 || stop_pc == stop_func_start
fe675038
JK
1059 || IN_SOLIB_TRAMPOLINE (stop_pc, stop_func_name))
1060 && (stop_func_start != prev_func_start
1061 || prologue_pc != stop_func_start
1062 || stop_sp != prev_sp))
1063 {
1064 /* It's a subroutine call. */
fee44494 1065
fe675038
JK
1066 if (step_over_calls == 0)
1067 {
1068 /* I presume that step_over_calls is only 0 when we're
1069 supposed to be stepping at the assembly language level
1070 ("stepi"). Just stop. */
1071 stop_step = 1;
1072 break;
1073 }
fee44494 1074
fe675038
JK
1075 if (step_over_calls > 0)
1076 /* We're doing a "next". */
1077 goto step_over_function;
1078
1079 /* If we are in a function call trampoline (a stub between
1080 the calling routine and the real function), locate the real
1081 function. That's what tells us (a) whether we want to step
1082 into it at all, and (b) what prologue we want to run to
1083 the end of, if we do step into it. */
1084 tmp = SKIP_TRAMPOLINE_CODE (stop_pc);
1085 if (tmp != 0)
1086 stop_func_start = tmp;
1087
1088 /* If we have line number information for the function we
1089 are thinking of stepping into, step into it.
1090
1091 If there are several symtabs at that PC (e.g. with include
1092 files), just want to know whether *any* of them have line
1093 numbers. find_pc_line handles this. */
1094 {
1095 struct symtab_and_line tmp_sal;
1096
1097 tmp_sal = find_pc_line (stop_func_start, 0);
1098 if (tmp_sal.line != 0)
1099 goto step_into_function;
1100 }
d747e0af
MT
1101
1102step_over_function:
fe675038
JK
1103 /* A subroutine call has happened. */
1104 {
1105 /* Set a special breakpoint after the return */
1106 struct symtab_and_line sr_sal;
1107 sr_sal.pc =
1108 ADDR_BITS_REMOVE
1109 (SAVED_PC_AFTER_CALL (get_current_frame ()));
1110 sr_sal.symtab = NULL;
1111 sr_sal.line = 0;
1112 step_resume_breakpoint =
1113 set_momentary_breakpoint (sr_sal, get_current_frame (),
1114 bp_step_resume);
1115 if (breakpoints_inserted)
1116 insert_breakpoints ();
1117 }
1118 goto keep_going;
d747e0af
MT
1119
1120step_into_function:
fe675038
JK
1121 /* Subroutine call with source code we should not step over.
1122 Do step to the first line of code in it. */
1123 SKIP_PROLOGUE (stop_func_start);
1124 sal = find_pc_line (stop_func_start, 0);
1125 /* Use the step_resume_break to step until
1126 the end of the prologue, even if that involves jumps
1127 (as it seems to on the vax under 4.2). */
1128 /* If the prologue ends in the middle of a source line,
1129 continue to the end of that source line.
1130 Otherwise, just go to end of prologue. */
bd5635a1 1131#ifdef PROLOGUE_FIRSTLINE_OVERLAP
fe675038
JK
1132 /* no, don't either. It skips any code that's
1133 legitimately on the first line. */
bd5635a1 1134#else
fe675038
JK
1135 if (sal.end && sal.pc != stop_func_start)
1136 stop_func_start = sal.end;
bd5635a1 1137#endif
d747e0af 1138
fe675038
JK
1139 if (stop_func_start == stop_pc)
1140 {
1141 /* We are already there: stop now. */
1142 stop_step = 1;
1143 break;
1144 }
1145 else
1146 /* Put the step-breakpoint there and go until there. */
1147 {
1148 struct symtab_and_line sr_sal;
1149
1150 sr_sal.pc = stop_func_start;
1151 sr_sal.symtab = NULL;
1152 sr_sal.line = 0;
1153 /* Do not specify what the fp should be when we stop
1154 since on some machines the prologue
1155 is where the new fp value is established. */
1156 step_resume_breakpoint =
84d59861 1157 set_momentary_breakpoint (sr_sal, NULL, bp_step_resume);
fe675038
JK
1158 if (breakpoints_inserted)
1159 insert_breakpoints ();
1160
1161 /* And make sure stepping stops right away then. */
1162 step_range_end = step_range_start;
bd5635a1 1163 }
fe675038
JK
1164 goto keep_going;
1165 }
d747e0af 1166
fe675038
JK
1167 /* We've wandered out of the step range (but haven't done a
1168 subroutine call or return). (Is that true? I think we get
1169 here if we did a return and maybe a longjmp). */
d747e0af 1170
fe675038
JK
1171 sal = find_pc_line(stop_pc, 0);
1172
1173 if (step_range_end == 1)
1174 {
1175 /* It is stepi or nexti. We always want to stop stepping after
1176 one instruction. */
1177 stop_step = 1;
1178 break;
1179 }
1180
1181 if (sal.line == 0)
1182 {
1183 /* We have no line number information. That means to stop
1184 stepping (does this always happen right after one instruction,
1185 when we do "s" in a function with no line numbers,
1186 or can this happen as a result of a return or longjmp?). */
1187 stop_step = 1;
1188 break;
1189 }
1190
1191 if (stop_pc == sal.pc && current_line != sal.line)
1192 {
1193 /* We are at the start of a different line. So stop. Note that
1194 we don't stop if we step into the middle of a different line.
1195 That is said to make things like for (;;) statements work
1196 better. */
1197 stop_step = 1;
1198 break;
bd5635a1
RP
1199 }
1200
fe675038
JK
1201 /* We aren't done stepping.
1202
1203 Optimize by setting the stepping range to the line.
1204 (We might not be in the original line, but if we entered a
1205 new line in mid-statement, we continue stepping. This makes
1206 things like for(;;) statements work better.) */
1207 step_range_start = sal.pc;
1208 step_range_end = sal.end;
1209 goto keep_going;
1210
1211 check_sigtramp2:
d747e0af
MT
1212 if (trap_expected
1213 && IN_SIGTRAMP (stop_pc, stop_func_name)
1214 && !IN_SIGTRAMP (prev_pc, prev_func_name))
bd5635a1
RP
1215 {
1216 /* What has happened here is that we have just stepped the inferior
1217 with a signal (because it is a signal which shouldn't make
1218 us stop), thus stepping into sigtramp.
1219
1220 So we need to set a step_resume_break_address breakpoint
fe675038
JK
1221 and continue until we hit it, and then step. FIXME: This should
1222 be more enduring than a step_resume breakpoint; we should know
1223 that we will later need to keep going rather than re-hitting
1224 the breakpoint here (see testsuite/gdb.t06/signals.exp where
1225 it says "exceedingly difficult"). */
1226 struct symtab_and_line sr_sal;
1227
1228 sr_sal.pc = prev_pc;
1229 sr_sal.symtab = NULL;
1230 sr_sal.line = 0;
1231 step_resume_breakpoint =
1232 set_momentary_breakpoint (sr_sal, get_current_frame (),
1233 bp_step_resume);
bd5635a1 1234 if (breakpoints_inserted)
fe675038
JK
1235 insert_breakpoints ();
1236
bd5635a1
RP
1237 remove_breakpoints_on_following_step = 1;
1238 another_trap = 1;
1239 }
1240
30875e1c 1241 keep_going:
fe675038
JK
1242 /* Come to this label when you need to resume the inferior.
1243 It's really much cleaner to do a goto than a maze of if-else
1244 conditions. */
30875e1c 1245
bd5635a1
RP
1246 /* Save the pc before execution, to compare with pc after stop. */
1247 prev_pc = read_pc (); /* Might have been DECR_AFTER_BREAK */
1248 prev_func_start = stop_func_start; /* Ok, since if DECR_PC_AFTER
1249 BREAK is defined, the
1250 original pc would not have
1251 been at the start of a
1252 function. */
1253 prev_func_name = stop_func_name;
1254 prev_sp = stop_sp;
1255
1256 /* If we did not do break;, it means we should keep
1257 running the inferior and not return to debugger. */
1258
1259 if (trap_expected && stop_signal != SIGTRAP)
1260 {
1261 /* We took a signal (which we are supposed to pass through to
1262 the inferior, else we'd have done a break above) and we
1263 haven't yet gotten our trap. Simply continue. */
cb6b0202 1264 resume (CURRENTLY_STEPPING (), stop_signal);
bd5635a1
RP
1265 }
1266 else
1267 {
1268 /* Either the trap was not expected, but we are continuing
1269 anyway (the user asked that this signal be passed to the
1270 child)
1271 -- or --
1272 The signal was SIGTRAP, e.g. it was our signal, but we
1273 decided we should resume from it.
1274
1275 We're going to run this baby now!
1276
1277 Insert breakpoints now, unless we are trying
1278 to one-proceed past a breakpoint. */
1279 /* If we've just finished a special step resume and we don't
1280 want to hit a breakpoint, pull em out. */
fe675038 1281 if (step_resume_breakpoint == NULL &&
bd5635a1
RP
1282 remove_breakpoints_on_following_step)
1283 {
1284 remove_breakpoints_on_following_step = 0;
1285 remove_breakpoints ();
1286 breakpoints_inserted = 0;
1287 }
1288 else if (!breakpoints_inserted &&
fe675038 1289 (step_resume_breakpoint != NULL || !another_trap))
bd5635a1 1290 {
bd5635a1
RP
1291 breakpoints_failed = insert_breakpoints ();
1292 if (breakpoints_failed)
1293 break;
1294 breakpoints_inserted = 1;
1295 }
1296
1297 trap_expected = another_trap;
1298
1299 if (stop_signal == SIGTRAP)
1300 stop_signal = 0;
1301
1302#ifdef SHIFT_INST_REGS
1303 /* I'm not sure when this following segment applies. I do know, now,
1304 that we shouldn't rewrite the regs when we were stopped by a
1305 random signal from the inferior process. */
cef4c2e7
PS
1306 /* FIXME: Shouldn't this be based on the valid bit of the SXIP?
1307 (this is only used on the 88k). */
bd5635a1 1308
d11c44f1
JG
1309 if (!bpstat_explains_signal (stop_bpstat)
1310 && (stop_signal != SIGCLD)
bd5635a1 1311 && !stopped_by_random_signal)
07a5991a 1312 SHIFT_INST_REGS();
bd5635a1
RP
1313#endif /* SHIFT_INST_REGS */
1314
cb6b0202 1315 resume (CURRENTLY_STEPPING (), stop_signal);
bd5635a1
RP
1316 }
1317 }
30875e1c
SG
1318
1319 stop_stepping:
bd5635a1
RP
1320 if (target_has_execution)
1321 {
1322 /* Assuming the inferior still exists, set these up for next
1323 time, just like we did above if we didn't break out of the
1324 loop. */
1325 prev_pc = read_pc ();
1326 prev_func_start = stop_func_start;
1327 prev_func_name = stop_func_name;
1328 prev_sp = stop_sp;
1329 }
fe675038 1330 do_cleanups (old_cleanups);
bd5635a1
RP
1331}
1332\f
1333/* Here to return control to GDB when the inferior stops for real.
1334 Print appropriate messages, remove breakpoints, give terminal our modes.
1335
1336 STOP_PRINT_FRAME nonzero means print the executing frame
1337 (pc, function, args, file, line number and line text).
1338 BREAKPOINTS_FAILED nonzero means stop was due to error
1339 attempting to insert breakpoints. */
1340
1341void
1342normal_stop ()
1343{
1344 /* Make sure that the current_frame's pc is correct. This
1345 is a correction for setting up the frame info before doing
1346 DECR_PC_AFTER_BREAK */
3f0184ac 1347 if (target_has_execution && get_current_frame())
bd5635a1
RP
1348 (get_current_frame ())->pc = read_pc ();
1349
1350 if (breakpoints_failed)
1351 {
1352 target_terminal_ours_for_output ();
1353 print_sys_errmsg ("ptrace", breakpoints_failed);
e37a6e9c 1354 printf_filtered ("Stopped; cannot insert breakpoints.\n\
bd5635a1
RP
1355The same program may be running in another process.\n");
1356 }
1357
bd5635a1
RP
1358 if (target_has_execution && breakpoints_inserted)
1359 if (remove_breakpoints ())
1360 {
1361 target_terminal_ours_for_output ();
e37a6e9c 1362 printf_filtered ("Cannot remove breakpoints because program is no longer writable.\n\
bd5635a1
RP
1363It might be running in another process.\n\
1364Further execution is probably impossible.\n");
1365 }
1366
1367 breakpoints_inserted = 0;
1368
1369 /* Delete the breakpoint we stopped at, if it wants to be deleted.
1370 Delete any breakpoint that is to be deleted at the next stop. */
1371
1372 breakpoint_auto_delete (stop_bpstat);
1373
1374 /* If an auto-display called a function and that got a signal,
1375 delete that auto-display to avoid an infinite recursion. */
1376
1377 if (stopped_by_random_signal)
1378 disable_current_display ();
1379
1380 if (step_multi && stop_step)
1381 return;
1382
1383 target_terminal_ours ();
1384
3950a34e
RP
1385 /* Look up the hook_stop and run it if it exists. */
1386
1387 if (stop_command->hook)
1388 {
1389 catch_errors (hook_stop_stub, (char *)stop_command->hook,
fee44494 1390 "Error while running hook_stop:\n", RETURN_MASK_ALL);
3950a34e
RP
1391 }
1392
bd5635a1
RP
1393 if (!target_has_stack)
1394 return;
1395
1396 /* Select innermost stack frame except on return from a stack dummy routine,
1515ff18
JG
1397 or if the program has exited. Print it without a level number if
1398 we have changed functions or hit a breakpoint. Print source line
1399 if we have one. */
bd5635a1
RP
1400 if (!stop_stack_dummy)
1401 {
1402 select_frame (get_current_frame (), 0);
1403
1404 if (stop_print_frame)
1405 {
1515ff18
JG
1406 int source_only;
1407
1408 source_only = bpstat_print (stop_bpstat);
1409 source_only = source_only ||
1410 ( stop_step
bd5635a1 1411 && step_frame_address == stop_frame_address
1515ff18
JG
1412 && step_start_function == find_pc_function (stop_pc));
1413
1414 print_stack_frame (selected_frame, -1, source_only? -1: 1);
bd5635a1
RP
1415
1416 /* Display the auto-display expressions. */
1417 do_displays ();
1418 }
1419 }
1420
1421 /* Save the function value return registers, if we care.
1422 We might be about to restore their previous contents. */
1423 if (proceed_to_finish)
1424 read_register_bytes (0, stop_registers, REGISTER_BYTES);
1425
1426 if (stop_stack_dummy)
1427 {
1428 /* Pop the empty frame that contains the stack dummy.
1429 POP_FRAME ends with a setting of the current frame, so we
1430 can use that next. */
1431 POP_FRAME;
1432 select_frame (get_current_frame (), 0);
1433 }
1434}
3950a34e
RP
1435
1436static int
1437hook_stop_stub (cmd)
1438 char *cmd;
1439{
1440 execute_user_command ((struct cmd_list_element *)cmd, 0);
a8a69e63 1441 return (0);
3950a34e 1442}
bd5635a1 1443\f
cc221e76
FF
1444int signal_stop_state (signo)
1445 int signo;
1446{
1447 return ((signo >= 0 && signo < NSIG) ? signal_stop[signo] : 0);
1448}
1449
1450int signal_print_state (signo)
1451 int signo;
1452{
1453 return ((signo >= 0 && signo < NSIG) ? signal_print[signo] : 0);
1454}
1455
1456int signal_pass_state (signo)
1457 int signo;
1458{
1459 return ((signo >= 0 && signo < NSIG) ? signal_program[signo] : 0);
1460}
1461
bd5635a1
RP
1462static void
1463sig_print_header ()
1464{
1465 printf_filtered ("Signal\t\tStop\tPrint\tPass to program\tDescription\n");
1466}
1467
1468static void
1469sig_print_info (number)
1470 int number;
1471{
e37a6e9c
PB
1472 char *name;
1473
1474 if ((name = strsigno (number)) == NULL)
bd5635a1
RP
1475 printf_filtered ("%d\t\t", number);
1476 else
e37a6e9c 1477 printf_filtered ("%s (%d)\t", name, number);
bd5635a1
RP
1478 printf_filtered ("%s\t", signal_stop[number] ? "Yes" : "No");
1479 printf_filtered ("%s\t", signal_print[number] ? "Yes" : "No");
1480 printf_filtered ("%s\t\t", signal_program[number] ? "Yes" : "No");
e37a6e9c 1481 printf_filtered ("%s\n", safe_strsignal (number));
bd5635a1
RP
1482}
1483
1484/* Specify how various signals in the inferior should be handled. */
1485
1486static void
1487handle_command (args, from_tty)
1488 char *args;
1489 int from_tty;
1490{
072b552a
JG
1491 char **argv;
1492 int digits, wordlen;
1493 int sigfirst, signum, siglast;
1494 int allsigs;
1495 int nsigs;
1496 unsigned char *sigs;
1497 struct cleanup *old_chain;
1498
1499 if (args == NULL)
1500 {
1501 error_no_arg ("signal to handle");
1502 }
bd5635a1 1503
072b552a
JG
1504 /* Allocate and zero an array of flags for which signals to handle. */
1505
1506 nsigs = signo_max () + 1;
1507 sigs = (unsigned char *) alloca (nsigs);
1508 memset (sigs, 0, nsigs);
bd5635a1 1509
072b552a
JG
1510 /* Break the command line up into args. */
1511
1512 argv = buildargv (args);
1513 if (argv == NULL)
bd5635a1 1514 {
072b552a
JG
1515 nomem (0);
1516 }
1517 old_chain = make_cleanup (freeargv, (char *) argv);
bd5635a1 1518
072b552a
JG
1519 /* Walk through the args, looking for signal numbers, signal names, and
1520 actions. Signal numbers and signal names may be interspersed with
1521 actions, with the actions being performed for all signals cumulatively
1522 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
bd5635a1 1523
072b552a
JG
1524 while (*argv != NULL)
1525 {
1526 wordlen = strlen (*argv);
1527 for (digits = 0; isdigit ((*argv)[digits]); digits++) {;}
1528 allsigs = 0;
1529 sigfirst = siglast = -1;
1530
1531 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
1532 {
1533 /* Apply action to all signals except those used by the
1534 debugger. Silently skip those. */
1535 allsigs = 1;
1536 sigfirst = 0;
1537 siglast = nsigs - 1;
1538 }
1539 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
1540 {
1541 SET_SIGS (nsigs, sigs, signal_stop);
1542 SET_SIGS (nsigs, sigs, signal_print);
1543 }
1544 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
1545 {
1546 UNSET_SIGS (nsigs, sigs, signal_program);
1547 }
1548 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
1549 {
1550 SET_SIGS (nsigs, sigs, signal_print);
1551 }
1552 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
1553 {
1554 SET_SIGS (nsigs, sigs, signal_program);
1555 }
1556 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
1557 {
1558 UNSET_SIGS (nsigs, sigs, signal_stop);
1559 }
1560 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
1561 {
1562 SET_SIGS (nsigs, sigs, signal_program);
1563 }
1564 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
1565 {
1566 UNSET_SIGS (nsigs, sigs, signal_print);
1567 UNSET_SIGS (nsigs, sigs, signal_stop);
1568 }
1569 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
1570 {
1571 UNSET_SIGS (nsigs, sigs, signal_program);
1572 }
1573 else if (digits > 0)
bd5635a1 1574 {
072b552a
JG
1575 sigfirst = siglast = atoi (*argv);
1576 if ((*argv)[digits] == '-')
bd5635a1 1577 {
072b552a 1578 siglast = atoi ((*argv) + digits + 1);
bd5635a1 1579 }
072b552a 1580 if (sigfirst > siglast)
bd5635a1 1581 {
072b552a
JG
1582 /* Bet he didn't figure we'd think of this case... */
1583 signum = sigfirst;
1584 sigfirst = siglast;
1585 siglast = signum;
bd5635a1 1586 }
072b552a
JG
1587 if (sigfirst < 0 || sigfirst >= nsigs)
1588 {
1589 error ("Signal %d not in range 0-%d", sigfirst, nsigs - 1);
1590 }
1591 if (siglast < 0 || siglast >= nsigs)
bd5635a1 1592 {
072b552a 1593 error ("Signal %d not in range 0-%d", siglast, nsigs - 1);
bd5635a1
RP
1594 }
1595 }
072b552a 1596 else if ((signum = strtosigno (*argv)) != 0)
bd5635a1 1597 {
072b552a 1598 sigfirst = siglast = signum;
bd5635a1 1599 }
072b552a 1600 else
bd5635a1 1601 {
072b552a
JG
1602 /* Not a number and not a recognized flag word => complain. */
1603 error ("Unrecognized or ambiguous flag word: \"%s\".", *argv);
bd5635a1 1604 }
072b552a
JG
1605
1606 /* If any signal numbers or symbol names were found, set flags for
1607 which signals to apply actions to. */
1608
1609 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
bd5635a1 1610 {
072b552a
JG
1611 switch (signum)
1612 {
1613 case SIGTRAP:
1614 case SIGINT:
1615 if (!allsigs && !sigs[signum])
1616 {
1617 if (query ("%s is used by the debugger.\nAre you sure you want to change it? ", strsigno (signum)))
1618 {
1619 sigs[signum] = 1;
1620 }
1621 else
1622 {
1623 printf ("Not confirmed, unchanged.\n");
1624 fflush (stdout);
1625 }
1626 }
1627 break;
1628 default:
1629 sigs[signum] = 1;
1630 break;
1631 }
bd5635a1
RP
1632 }
1633
072b552a 1634 argv++;
bd5635a1
RP
1635 }
1636
de43d7d0 1637 target_notice_signals(inferior_pid);
cc221e76 1638
bd5635a1
RP
1639 if (from_tty)
1640 {
1641 /* Show the results. */
1642 sig_print_header ();
072b552a
JG
1643 for (signum = 0; signum < nsigs; signum++)
1644 {
1645 if (sigs[signum])
1646 {
1647 sig_print_info (signum);
1648 }
1649 }
bd5635a1 1650 }
072b552a
JG
1651
1652 do_cleanups (old_chain);
bd5635a1
RP
1653}
1654
1655/* Print current contents of the tables set by the handle command. */
1656
1657static void
e37a6e9c 1658signals_info (signum_exp, from_tty)
bd5635a1 1659 char *signum_exp;
e37a6e9c 1660 int from_tty;
bd5635a1
RP
1661{
1662 register int i;
1663 sig_print_header ();
1664
1665 if (signum_exp)
1666 {
1667 /* First see if this is a symbol name. */
e37a6e9c
PB
1668 i = strtosigno (signum_exp);
1669 if (i == 0)
bd5635a1
RP
1670 {
1671 /* Nope, maybe it's an address which evaluates to a signal
1672 number. */
1673 i = parse_and_eval_address (signum_exp);
1674 if (i >= NSIG || i < 0)
1675 error ("Signal number out of bounds.");
1676 }
1677 sig_print_info (i);
1678 return;
1679 }
1680
1681 printf_filtered ("\n");
1682 for (i = 0; i < NSIG; i++)
1683 {
1684 QUIT;
1685
1686 sig_print_info (i);
1687 }
1688
1689 printf_filtered ("\nUse the \"handle\" command to change these tables.\n");
1690}
1691\f
1692/* Save all of the information associated with the inferior<==>gdb
1693 connection. INF_STATUS is a pointer to a "struct inferior_status"
1694 (defined in inferior.h). */
1695
1696void
1697save_inferior_status (inf_status, restore_stack_info)
1698 struct inferior_status *inf_status;
1699 int restore_stack_info;
1700{
bd5635a1
RP
1701 inf_status->stop_signal = stop_signal;
1702 inf_status->stop_pc = stop_pc;
1703 inf_status->stop_frame_address = stop_frame_address;
1704 inf_status->stop_step = stop_step;
1705 inf_status->stop_stack_dummy = stop_stack_dummy;
1706 inf_status->stopped_by_random_signal = stopped_by_random_signal;
1707 inf_status->trap_expected = trap_expected;
1708 inf_status->step_range_start = step_range_start;
1709 inf_status->step_range_end = step_range_end;
1710 inf_status->step_frame_address = step_frame_address;
1711 inf_status->step_over_calls = step_over_calls;
bd5635a1
RP
1712 inf_status->stop_after_trap = stop_after_trap;
1713 inf_status->stop_soon_quietly = stop_soon_quietly;
1714 /* Save original bpstat chain here; replace it with copy of chain.
1715 If caller's caller is walking the chain, they'll be happier if we
1716 hand them back the original chain when restore_i_s is called. */
1717 inf_status->stop_bpstat = stop_bpstat;
1718 stop_bpstat = bpstat_copy (stop_bpstat);
1719 inf_status->breakpoint_proceeded = breakpoint_proceeded;
1720 inf_status->restore_stack_info = restore_stack_info;
1721 inf_status->proceed_to_finish = proceed_to_finish;
1722
072b552a 1723 memcpy (inf_status->stop_registers, stop_registers, REGISTER_BYTES);
37c99ddb
JK
1724
1725 read_register_bytes (0, inf_status->registers, REGISTER_BYTES);
1726
bd5635a1
RP
1727 record_selected_frame (&(inf_status->selected_frame_address),
1728 &(inf_status->selected_level));
1729 return;
1730}
1731
37c99ddb
JK
1732struct restore_selected_frame_args {
1733 FRAME_ADDR frame_address;
1734 int level;
1735};
1736
1737static int restore_selected_frame PARAMS ((char *));
1738
1739/* Restore the selected frame. args is really a struct
1740 restore_selected_frame_args * (declared as char * for catch_errors)
1741 telling us what frame to restore. Returns 1 for success, or 0 for
1742 failure. An error message will have been printed on error. */
1743static int
1744restore_selected_frame (args)
1745 char *args;
1746{
1747 struct restore_selected_frame_args *fr =
1748 (struct restore_selected_frame_args *) args;
1749 FRAME fid;
1750 int level = fr->level;
1751
1752 fid = find_relative_frame (get_current_frame (), &level);
1753
1754 /* If inf_status->selected_frame_address is NULL, there was no
1755 previously selected frame. */
1756 if (fid == 0 ||
1757 FRAME_FP (fid) != fr->frame_address ||
1758 level != 0)
1759 {
1760 warning ("Unable to restore previously selected frame.\n");
1761 return 0;
1762 }
1763 select_frame (fid, fr->level);
1764 return(1);
1765}
1766
bd5635a1
RP
1767void
1768restore_inferior_status (inf_status)
1769 struct inferior_status *inf_status;
1770{
bd5635a1
RP
1771 stop_signal = inf_status->stop_signal;
1772 stop_pc = inf_status->stop_pc;
1773 stop_frame_address = inf_status->stop_frame_address;
1774 stop_step = inf_status->stop_step;
1775 stop_stack_dummy = inf_status->stop_stack_dummy;
1776 stopped_by_random_signal = inf_status->stopped_by_random_signal;
1777 trap_expected = inf_status->trap_expected;
1778 step_range_start = inf_status->step_range_start;
1779 step_range_end = inf_status->step_range_end;
1780 step_frame_address = inf_status->step_frame_address;
1781 step_over_calls = inf_status->step_over_calls;
bd5635a1
RP
1782 stop_after_trap = inf_status->stop_after_trap;
1783 stop_soon_quietly = inf_status->stop_soon_quietly;
1784 bpstat_clear (&stop_bpstat);
1785 stop_bpstat = inf_status->stop_bpstat;
1786 breakpoint_proceeded = inf_status->breakpoint_proceeded;
1787 proceed_to_finish = inf_status->proceed_to_finish;
1788
072b552a 1789 memcpy (stop_registers, inf_status->stop_registers, REGISTER_BYTES);
bd5635a1
RP
1790
1791 /* The inferior can be gone if the user types "print exit(0)"
1792 (and perhaps other times). */
37c99ddb
JK
1793 if (target_has_execution)
1794 write_register_bytes (0, inf_status->registers, REGISTER_BYTES);
1795
1796 /* The inferior can be gone if the user types "print exit(0)"
1797 (and perhaps other times). */
1798
1799 /* FIXME: If we are being called after stopping in a function which
1800 is called from gdb, we should not be trying to restore the
1801 selected frame; it just prints a spurious error message (The
1802 message is useful, however, in detecting bugs in gdb (like if gdb
1803 clobbers the stack)). In fact, should we be restoring the
1804 inferior status at all in that case? . */
1805
bd5635a1
RP
1806 if (target_has_stack && inf_status->restore_stack_info)
1807 {
37c99ddb
JK
1808 struct restore_selected_frame_args fr;
1809 fr.level = inf_status->selected_level;
1810 fr.frame_address = inf_status->selected_frame_address;
1811 /* The point of catch_errors is that if the stack is clobbered,
1812 walking the stack might encounter a garbage pointer and error()
1813 trying to dereference it. */
1814 if (catch_errors (restore_selected_frame, &fr,
1815 "Unable to restore previously selected frame:\n",
1816 RETURN_MASK_ERROR) == 0)
1817 /* Error in restoring the selected frame. Select the innermost
1818 frame. */
1819 select_frame (get_current_frame (), 0);
bd5635a1
RP
1820 }
1821}
1822
1823\f
1824void
1825_initialize_infrun ()
1826{
1827 register int i;
e37a6e9c 1828 register int numsigs;
bd5635a1
RP
1829
1830 add_info ("signals", signals_info,
1831 "What debugger does when program gets various signals.\n\
1832Specify a signal number as argument to print info on that signal only.");
6b50c5c2 1833 add_info_alias ("handle", "signals", 0);
bd5635a1
RP
1834
1835 add_com ("handle", class_run, handle_command,
1836 "Specify how to handle a signal.\n\
072b552a
JG
1837Args are signal numbers and actions to apply to those signals.\n\
1838Signal numbers may be numeric (ex. 11) or symbolic (ex. SIGSEGV).\n\
1839Numeric ranges may be specified with the form LOW-HIGH (ex. 14-21).\n\
1840The special arg \"all\" is recognized to mean all signals except those\n\
1841used by the debugger, typically SIGTRAP and SIGINT.\n\
1842Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
1843\"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
bd5635a1 1844Stop means reenter debugger if this signal happens (implies print).\n\
072b552a 1845Print means print a message if this signal happens.\n\
bd5635a1 1846Pass means let program see this signal; otherwise program doesn't know.\n\
072b552a 1847Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
bd5635a1
RP
1848Pass and Stop may be combined.");
1849
a8a69e63 1850 stop_command = add_cmd ("stop", class_obscure, not_just_help_class_command,
3950a34e
RP
1851 "There is no `stop' command, but you can set a hook on `stop'.\n\
1852This allows you to set a list of commands to be run each time execution\n\
fee44494 1853of the program stops.", &cmdlist);
3950a34e 1854
e37a6e9c 1855 numsigs = signo_max () + 1;
072b552a
JG
1856 signal_stop = (unsigned char *)
1857 xmalloc (sizeof (signal_stop[0]) * numsigs);
1858 signal_print = (unsigned char *)
1859 xmalloc (sizeof (signal_print[0]) * numsigs);
1860 signal_program = (unsigned char *)
1861 xmalloc (sizeof (signal_program[0]) * numsigs);
e37a6e9c 1862 for (i = 0; i < numsigs; i++)
bd5635a1
RP
1863 {
1864 signal_stop[i] = 1;
1865 signal_print[i] = 1;
1866 signal_program[i] = 1;
1867 }
1868
1869 /* Signals caused by debugger's own actions
1870 should not be given to the program afterwards. */
1871 signal_program[SIGTRAP] = 0;
1872 signal_program[SIGINT] = 0;
1873
1874 /* Signals that are not errors should not normally enter the debugger. */
1875#ifdef SIGALRM
1876 signal_stop[SIGALRM] = 0;
1877 signal_print[SIGALRM] = 0;
1878#endif /* SIGALRM */
1879#ifdef SIGVTALRM
1880 signal_stop[SIGVTALRM] = 0;
1881 signal_print[SIGVTALRM] = 0;
1882#endif /* SIGVTALRM */
1883#ifdef SIGPROF
1884 signal_stop[SIGPROF] = 0;
1885 signal_print[SIGPROF] = 0;
1886#endif /* SIGPROF */
1887#ifdef SIGCHLD
1888 signal_stop[SIGCHLD] = 0;
1889 signal_print[SIGCHLD] = 0;
1890#endif /* SIGCHLD */
1891#ifdef SIGCLD
1892 signal_stop[SIGCLD] = 0;
1893 signal_print[SIGCLD] = 0;
1894#endif /* SIGCLD */
1895#ifdef SIGIO
1896 signal_stop[SIGIO] = 0;
1897 signal_print[SIGIO] = 0;
1898#endif /* SIGIO */
1899#ifdef SIGURG
1900 signal_stop[SIGURG] = 0;
1901 signal_print[SIGURG] = 0;
1902#endif /* SIGURG */
1903}
This page took 0.210191 seconds and 4 git commands to generate.