System V versions must call setpgrp() with no arguments, to comply with
[deliverable/binutils-gdb.git] / gdb / infrun.c
1 /* Start (run) and stop the inferior process, for GDB.
2 Copyright (C) 1986, 1987, 1988, 1989, 1991 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2 of the License, or
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 /* Notes on the algorithm used in wait_for_inferior to determine if we
21 just did a subroutine call when stepping. We have the following
22 information at that point:
23
24 Current and previous (just before this step) pc.
25 Current and previous sp.
26 Current and previous start of current function.
27
28 If the start's of the functions don't match, then
29
30 a) We did a subroutine call.
31
32 In this case, the pc will be at the beginning of a function.
33
34 b) We did a subroutine return.
35
36 Otherwise.
37
38 c) We did a longjmp.
39
40 If we did a longjump, we were doing "nexti", since a next would
41 have attempted to skip over the assembly language routine in which
42 the longjmp is coded and would have simply been the equivalent of a
43 continue. I consider this ok behaivior. We'd like one of two
44 things to happen if we are doing a nexti through the longjmp()
45 routine: 1) It behaves as a stepi, or 2) It acts like a continue as
46 above. Given that this is a special case, and that anybody who
47 thinks that the concept of sub calls is meaningful in the context
48 of a longjmp, I'll take either one. Let's see what happens.
49
50 Acts like a subroutine return. I can handle that with no problem
51 at all.
52
53 -->So: If the current and previous beginnings of the current
54 function don't match, *and* the pc is at the start of a function,
55 we've done a subroutine call. If the pc is not at the start of a
56 function, we *didn't* do a subroutine call.
57
58 -->If the beginnings of the current and previous function do match,
59 either:
60
61 a) We just did a recursive call.
62
63 In this case, we would be at the very beginning of a
64 function and 1) it will have a prologue (don't jump to
65 before prologue, or 2) (we assume here that it doesn't have
66 a prologue) there will have been a change in the stack
67 pointer over the last instruction. (Ie. it's got to put
68 the saved pc somewhere. The stack is the usual place. In
69 a recursive call a register is only an option if there's a
70 prologue to do something with it. This is even true on
71 register window machines; the prologue sets up the new
72 window. It might not be true on a register window machine
73 where the call instruction moved the register window
74 itself. Hmmm. One would hope that the stack pointer would
75 also change. If it doesn't, somebody send me a note, and
76 I'll work out a more general theory.
77 bug-gdb@prep.ai.mit.edu). This is true (albeit slipperly
78 so) on all machines I'm aware of:
79
80 m68k: Call changes stack pointer. Regular jumps don't.
81
82 sparc: Recursive calls must have frames and therefor,
83 prologues.
84
85 vax: All calls have frames and hence change the
86 stack pointer.
87
88 b) We did a return from a recursive call. I don't see that we
89 have either the ability or the need to distinguish this
90 from an ordinary jump. The stack frame will be printed
91 when and if the frame pointer changes; if we are in a
92 function without a frame pointer, it's the users own
93 lookout.
94
95 c) We did a jump within a function. We assume that this is
96 true if we didn't do a recursive call.
97
98 d) We are in no-man's land ("I see no symbols here"). We
99 don't worry about this; it will make calls look like simple
100 jumps (and the stack frames will be printed when the frame
101 pointer moves), which is a reasonably non-violent response.
102
103 #if 0
104 We skip this; it causes more problems than it's worth.
105 #ifdef SUN4_COMPILER_FEATURE
106 We do a special ifdef for the sun 4, forcing it to single step
107 into calls which don't have prologues. This means that we can't
108 nexti over leaf nodes, we can probably next over them (since they
109 won't have debugging symbols, usually), and we can next out of
110 functions returning structures (with a "call .stret4" at the end).
111 #endif
112 #endif
113 */
114
115
116
117
118
119 #include <stdio.h>
120 #include <string.h>
121 #include "defs.h"
122 #include "param.h"
123 #include "symtab.h"
124 #include "frame.h"
125 #include "inferior.h"
126 #include "breakpoint.h"
127 #include "wait.h"
128 #include "gdbcore.h"
129 #include "signame.h"
130 #include "command.h"
131 #include "terminal.h" /* For #ifdef TIOCGPGRP and new_tty */
132 #include "target.h"
133
134 #include <signal.h>
135
136 /* unistd.h is needed to #define X_OK */
137 #ifdef USG
138 #include <unistd.h>
139 #else
140 #include <sys/file.h>
141 #endif
142
143 #ifdef SET_STACK_LIMIT_HUGE
144 #include <sys/time.h>
145 #include <sys/resource.h>
146
147 extern int original_stack_limit;
148 #endif /* SET_STACK_LIMIT_HUGE */
149
150 extern char *getenv ();
151 extern char **environ;
152
153 extern struct target_ops child_ops; /* In inftarg.c */
154
155
156 /* Sigtramp is a routine that the kernel calls (which then calls the
157 signal handler). On most machines it is a library routine that
158 is linked into the executable.
159
160 This macro, given a program counter value and the name of the
161 function in which that PC resides (which can be null if the
162 name is not known), returns nonzero if the PC and name show
163 that we are in sigtramp.
164
165 On most machines just see if the name is sigtramp (and if we have
166 no name, assume we are not in sigtramp). */
167 #if !defined (IN_SIGTRAMP)
168 #define IN_SIGTRAMP(pc, name) \
169 (name && !strcmp ("_sigtramp", name))
170 #endif
171
172 #ifdef TDESC
173 #include "tdesc.h"
174 int safe_to_init_tdesc_context = 0;
175 extern dc_dcontext_t current_context;
176 #endif
177
178 /* Tables of how to react to signals; the user sets them. */
179
180 static char signal_stop[NSIG];
181 static char signal_print[NSIG];
182 static char signal_program[NSIG];
183
184 /* Nonzero if breakpoints are now inserted in the inferior. */
185 /* Nonstatic for initialization during xxx_create_inferior. FIXME. */
186
187 /*static*/ int breakpoints_inserted;
188
189 /* Function inferior was in as of last step command. */
190
191 static struct symbol *step_start_function;
192
193 /* Nonzero => address for special breakpoint for resuming stepping. */
194
195 static CORE_ADDR step_resume_break_address;
196
197 /* Pointer to orig contents of the byte where the special breakpoint is. */
198
199 static char step_resume_break_shadow[BREAKPOINT_MAX];
200
201 /* Nonzero means the special breakpoint is a duplicate
202 so it has not itself been inserted. */
203
204 static int step_resume_break_duplicate;
205
206 /* Nonzero if we are expecting a trace trap and should proceed from it. */
207
208 static int trap_expected;
209
210 /* Nonzero if the next time we try to continue the inferior, it will
211 step one instruction and generate a spurious trace trap.
212 This is used to compensate for a bug in HP-UX. */
213
214 static int trap_expected_after_continue;
215
216 /* Nonzero means expecting a trace trap
217 and should stop the inferior and return silently when it happens. */
218
219 int stop_after_trap;
220
221 /* Nonzero means expecting a trap and caller will handle it themselves.
222 It is used after attach, due to attaching to a process;
223 when running in the shell before the child program has been exec'd;
224 and when running some kinds of remote stuff (FIXME?). */
225
226 int stop_soon_quietly;
227
228 /* Nonzero if pc has been changed by the debugger
229 since the inferior stopped. */
230
231 int pc_changed;
232
233 /* Nonzero if proceed is being used for a "finish" command or a similar
234 situation when stop_registers should be saved. */
235
236 int proceed_to_finish;
237
238 /* Save register contents here when about to pop a stack dummy frame,
239 if-and-only-if proceed_to_finish is set.
240 Thus this contains the return value from the called function (assuming
241 values are returned in a register). */
242
243 char stop_registers[REGISTER_BYTES];
244
245 /* Nonzero if program stopped due to error trying to insert breakpoints. */
246
247 static int breakpoints_failed;
248
249 /* Nonzero after stop if current stack frame should be printed. */
250
251 static int stop_print_frame;
252
253 #ifdef NO_SINGLE_STEP
254 extern int one_stepped; /* From machine dependent code */
255 extern void single_step (); /* Same. */
256 #endif /* NO_SINGLE_STEP */
257
258 static void insert_step_breakpoint ();
259 static void remove_step_breakpoint ();
260 /*static*/ void wait_for_inferior ();
261 void init_wait_for_inferior ();
262 void normal_stop ();
263
264 \f
265 /* Things to clean up if we QUIT out of resume (). */
266 /* ARGSUSED */
267 static void
268 resume_cleanups (arg)
269 int arg;
270 {
271 normal_stop ();
272 }
273
274 /* Resume the inferior, but allow a QUIT. This is useful if the user
275 wants to interrupt some lengthy single-stepping operation
276 (for child processes, the SIGINT goes to the inferior, and so
277 we get a SIGINT random_signal, but for remote debugging and perhaps
278 other targets, that's not true).
279
280 STEP nonzero if we should step (zero to continue instead).
281 SIG is the signal to give the inferior (zero for none). */
282 static void
283 resume (step, sig)
284 int step;
285 int sig;
286 {
287 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
288 QUIT;
289
290 #ifdef NO_SINGLE_STEP
291 if (step) {
292 single_step(); /* Do it the hard way, w/temp breakpoints */
293 step = 0; /* ...and don't ask hardware to do it. */
294 }
295 #endif
296
297 /* Handle any optimized stores to the inferior NOW... */
298 #ifdef DO_DEFERRED_STORES
299 DO_DEFERRED_STORES;
300 #endif
301
302 target_resume (step, sig);
303 discard_cleanups (old_cleanups);
304 }
305
306 \f
307 /* Clear out all variables saying what to do when inferior is continued.
308 First do this, then set the ones you want, then call `proceed'. */
309
310 void
311 clear_proceed_status ()
312 {
313 trap_expected = 0;
314 step_range_start = 0;
315 step_range_end = 0;
316 step_frame_address = 0;
317 step_over_calls = -1;
318 step_resume_break_address = 0;
319 stop_after_trap = 0;
320 stop_soon_quietly = 0;
321 proceed_to_finish = 0;
322 breakpoint_proceeded = 1; /* We're about to proceed... */
323
324 /* Discard any remaining commands or status from previous stop. */
325 bpstat_clear (&stop_bpstat);
326 }
327
328 /* Basic routine for continuing the program in various fashions.
329
330 ADDR is the address to resume at, or -1 for resume where stopped.
331 SIGGNAL is the signal to give it, or 0 for none,
332 or -1 for act according to how it stopped.
333 STEP is nonzero if should trap after one instruction.
334 -1 means return after that and print nothing.
335 You should probably set various step_... variables
336 before calling here, if you are stepping.
337
338 You should call clear_proceed_status before calling proceed. */
339
340 void
341 proceed (addr, siggnal, step)
342 CORE_ADDR addr;
343 int siggnal;
344 int step;
345 {
346 int oneproc = 0;
347
348 if (step > 0)
349 step_start_function = find_pc_function (read_pc ());
350 if (step < 0)
351 stop_after_trap = 1;
352
353 if (addr == (CORE_ADDR)-1)
354 {
355 /* If there is a breakpoint at the address we will resume at,
356 step one instruction before inserting breakpoints
357 so that we do not stop right away. */
358
359 if (!pc_changed && breakpoint_here_p (read_pc ()))
360 oneproc = 1;
361 }
362 else
363 {
364 write_register (PC_REGNUM, addr);
365 #ifdef NPC_REGNUM
366 write_register (NPC_REGNUM, addr + 4);
367 #ifdef NNPC_REGNUM
368 write_register (NNPC_REGNUM, addr + 8);
369 #endif
370 #endif
371 }
372
373 if (trap_expected_after_continue)
374 {
375 /* If (step == 0), a trap will be automatically generated after
376 the first instruction is executed. Force step one
377 instruction to clear this condition. This should not occur
378 if step is nonzero, but it is harmless in that case. */
379 oneproc = 1;
380 trap_expected_after_continue = 0;
381 }
382
383 if (oneproc)
384 /* We will get a trace trap after one instruction.
385 Continue it automatically and insert breakpoints then. */
386 trap_expected = 1;
387 else
388 {
389 int temp = insert_breakpoints ();
390 if (temp)
391 {
392 print_sys_errmsg ("ptrace", temp);
393 error ("Cannot insert breakpoints.\n\
394 The same program may be running in another process.");
395 }
396 breakpoints_inserted = 1;
397 }
398
399 /* Install inferior's terminal modes. */
400 target_terminal_inferior ();
401
402 if (siggnal >= 0)
403 stop_signal = siggnal;
404 /* If this signal should not be seen by program,
405 give it zero. Used for debugging signals. */
406 else if (stop_signal < NSIG && !signal_program[stop_signal])
407 stop_signal= 0;
408
409 /* Resume inferior. */
410 resume (oneproc || step || bpstat_should_step (), stop_signal);
411
412 /* Wait for it to stop (if not standalone)
413 and in any case decode why it stopped, and act accordingly. */
414
415 wait_for_inferior ();
416 normal_stop ();
417 }
418
419 #if 0
420 /* This might be useful (not sure), but isn't currently used. See also
421 write_pc(). */
422 /* Writing the inferior pc as a register calls this function
423 to inform infrun that the pc has been set in the debugger. */
424
425 void
426 writing_pc (val)
427 CORE_ADDR val;
428 {
429 stop_pc = val;
430 pc_changed = 1;
431 }
432 #endif
433
434 /* Record the pc and sp of the program the last time it stopped.
435 These are just used internally by wait_for_inferior, but need
436 to be preserved over calls to it and cleared when the inferior
437 is started. */
438 static CORE_ADDR prev_pc;
439 static CORE_ADDR prev_sp;
440 static CORE_ADDR prev_func_start;
441 static char *prev_func_name;
442
443 \f
444 /* Start an inferior Unix child process and sets inferior_pid to its pid.
445 EXEC_FILE is the file to run.
446 ALLARGS is a string containing the arguments to the program.
447 ENV is the environment vector to pass. Errors reported with error(). */
448
449 #ifndef SHELL_FILE
450 #define SHELL_FILE "/bin/sh"
451 #endif
452
453 void
454 child_create_inferior (exec_file, allargs, env)
455 char *exec_file;
456 char *allargs;
457 char **env;
458 {
459 int pid;
460 char *shell_command;
461 extern int sys_nerr;
462 extern char *sys_errlist[];
463 char *shell_file;
464 static char default_shell_file[] = SHELL_FILE;
465 int len;
466 int pending_execs;
467 /* Set debug_fork then attach to the child while it sleeps, to debug. */
468 static int debug_fork = 0;
469 /* This is set to the result of setpgrp, which if vforked, will be visible
470 to you in the parent process. It's only used by humans for debugging. */
471 static int debug_setpgrp = 657473;
472 char **save_our_env;
473
474 /* The user might want tilde-expansion, and in general probably wants
475 the program to behave the same way as if run from
476 his/her favorite shell. So we let the shell run it for us.
477 FIXME, this should probably search the local environment (as
478 modified by the setenv command), not the env gdb inherited. */
479 shell_file = getenv ("SHELL");
480 if (shell_file == NULL)
481 shell_file = default_shell_file;
482
483 len = 5 + strlen (exec_file) + 1 + strlen (allargs) + 1 + /*slop*/ 10;
484 /* If desired, concat something onto the front of ALLARGS.
485 SHELL_COMMAND is the result. */
486 #ifdef SHELL_COMMAND_CONCAT
487 shell_command = (char *) alloca (strlen (SHELL_COMMAND_CONCAT) + len);
488 strcpy (shell_command, SHELL_COMMAND_CONCAT);
489 #else
490 shell_command = (char *) alloca (len);
491 shell_command[0] = '\0';
492 #endif
493 strcat (shell_command, "exec ");
494 strcat (shell_command, exec_file);
495 strcat (shell_command, " ");
496 strcat (shell_command, allargs);
497
498 /* exec is said to fail if the executable is open. */
499 close_exec_file ();
500
501 /* Retain a copy of our environment variables, since the child will
502 replace the value of environ and if we're vforked, we have to
503 restore it. */
504 save_our_env = environ;
505
506 /* Tell the terminal handling subsystem what tty we plan to run on;
507 it will just record the information for later. */
508
509 new_tty_prefork (inferior_io_terminal);
510
511 /* It is generally good practice to flush any possible pending stdio
512 output prior to doing a fork, to avoid the possibility of both the
513 parent and child flushing the same data after the fork. */
514
515 fflush (stdout);
516 fflush (stderr);
517
518 #if defined(USG) && !defined(HAVE_VFORK)
519 pid = fork ();
520 #else
521 if (debug_fork)
522 pid = fork ();
523 else
524 pid = vfork ();
525 #endif
526
527 if (pid < 0)
528 perror_with_name ("vfork");
529
530 if (pid == 0)
531 {
532 if (debug_fork)
533 sleep (debug_fork);
534
535 #ifdef TIOCGPGRP
536 /* Run inferior in a separate process group. */
537 #ifdef USG
538 debug_setpgrp = setpgrp ();
539 #else
540 debug_setpgrp = setpgrp (getpid (), getpid ());
541 #endif
542 if (debug_setpgrp == -1)
543 perror("setpgrp failed in child");
544 #endif /* TIOCGPGRP */
545
546 #ifdef SET_STACK_LIMIT_HUGE
547 /* Reset the stack limit back to what it was. */
548 {
549 struct rlimit rlim;
550
551 getrlimit (RLIMIT_STACK, &rlim);
552 rlim.rlim_cur = original_stack_limit;
553 setrlimit (RLIMIT_STACK, &rlim);
554 }
555 #endif /* SET_STACK_LIMIT_HUGE */
556
557 /* Ask the tty subsystem to switch to the one we specified earlier
558 (or to share the current terminal, if none was specified). */
559
560 new_tty ();
561
562 /* Changing the signal handlers for the inferior after
563 a vfork can also change them for the superior, so we don't mess
564 with signals here. See comments in
565 initialize_signals for how we get the right signal handlers
566 for the inferior. */
567
568 call_ptrace (0, 0, 0, 0); /* "Trace me, Dr. Memory!" */
569
570 /* There is no execlpe call, so we have to set the environment
571 for our child in the global variable. If we've vforked, this
572 clobbers the parent, but environ is restored a few lines down
573 in the parent. By the way, yes we do need to look down the
574 path to find $SHELL. Rich Pixley says so, and I agree. */
575 environ = env;
576 execlp (shell_file, shell_file, "-c", shell_command, (char *)0);
577
578 fprintf (stderr, "Cannot exec %s: %s.\n", shell_file,
579 errno < sys_nerr ? sys_errlist[errno] : "unknown error");
580 fflush (stderr);
581 _exit (0177);
582 }
583
584 /* Restore our environment in case a vforked child clob'd it. */
585 environ = save_our_env;
586
587 /* Now that we have a child process, make it our target. */
588 push_target (&child_ops);
589
590 #ifdef CREATE_INFERIOR_HOOK
591 CREATE_INFERIOR_HOOK (pid);
592 #endif
593
594 /* The process was started by the fork that created it,
595 but it will have stopped one instruction after execing the shell.
596 Here we must get it up to actual execution of the real program. */
597
598 inferior_pid = pid; /* Needed for wait_for_inferior stuff below */
599
600 clear_proceed_status ();
601
602 #if defined (START_INFERIOR_HOOK)
603 START_INFERIOR_HOOK ();
604 #endif
605
606 /* We will get a trace trap after one instruction.
607 Continue it automatically. Eventually (after shell does an exec)
608 it will get another trace trap. Then insert breakpoints and continue. */
609
610 #ifdef START_INFERIOR_TRAPS_EXPECTED
611 pending_execs = START_INFERIOR_TRAPS_EXPECTED;
612 #else
613 pending_execs = 2;
614 #endif
615
616 init_wait_for_inferior ();
617
618 /* Set up the "saved terminal modes" of the inferior
619 based on what modes we are starting it with. */
620 target_terminal_init ();
621
622 /* Install inferior's terminal modes. */
623 target_terminal_inferior ();
624
625 while (1)
626 {
627 stop_soon_quietly = 1; /* Make wait_for_inferior be quiet */
628 wait_for_inferior ();
629 if (stop_signal != SIGTRAP)
630 {
631 /* Let shell child handle its own signals in its own way */
632 /* FIXME, what if child has exit()ed? Must exit loop somehow */
633 resume (0, stop_signal);
634 }
635 else
636 {
637 /* We handle SIGTRAP, however; it means child did an exec. */
638 if (0 == --pending_execs)
639 break;
640 resume (0, 0); /* Just make it go on */
641 }
642 }
643 stop_soon_quietly = 0;
644
645 /* We are now in the child process of interest, having exec'd the
646 correct program, and are poised at the first instruction of the
647 new program. */
648 #ifdef SOLIB_CREATE_INFERIOR_HOOK
649 SOLIB_CREATE_INFERIOR_HOOK ();
650 #endif
651
652 /* Should this perhaps just be a "proceed" call? FIXME */
653 insert_step_breakpoint ();
654 breakpoints_failed = insert_breakpoints ();
655 if (!breakpoints_failed)
656 {
657 breakpoints_inserted = 1;
658 target_terminal_inferior();
659 /* Start the child program going on its first instruction, single-
660 stepping if we need to. */
661 resume (bpstat_should_step (), 0);
662 wait_for_inferior ();
663 normal_stop ();
664 }
665 }
666
667 /* Start remote-debugging of a machine over a serial link. */
668
669 void
670 start_remote ()
671 {
672 init_wait_for_inferior ();
673 clear_proceed_status ();
674 stop_soon_quietly = 1;
675 trap_expected = 0;
676 wait_for_inferior ();
677 normal_stop ();
678 }
679
680 /* Initialize static vars when a new inferior begins. */
681
682 void
683 init_wait_for_inferior ()
684 {
685 /* These are meaningless until the first time through wait_for_inferior. */
686 prev_pc = 0;
687 prev_sp = 0;
688 prev_func_start = 0;
689 prev_func_name = NULL;
690
691 trap_expected_after_continue = 0;
692 breakpoints_inserted = 0;
693 mark_breakpoints_out ();
694 stop_signal = 0; /* Don't confuse first call to proceed(). */
695 }
696
697
698 /* Attach to process PID, then initialize for debugging it
699 and wait for the trace-trap that results from attaching. */
700
701 void
702 child_attach (args, from_tty)
703 char *args;
704 int from_tty;
705 {
706 char *exec_file;
707 int pid;
708
709 dont_repeat();
710
711 if (!args)
712 error_no_arg ("process-id to attach");
713
714 #ifndef ATTACH_DETACH
715 error ("Can't attach to a process on this machine.");
716 #else
717 pid = atoi (args);
718
719 if (target_has_execution)
720 {
721 if (query ("A program is being debugged already. Kill it? "))
722 target_kill ((char *)0, from_tty);
723 else
724 error ("Inferior not killed.");
725 }
726
727 exec_file = (char *) get_exec_file (1);
728
729 if (from_tty)
730 {
731 printf ("Attaching program: %s pid %d\n",
732 exec_file, pid);
733 fflush (stdout);
734 }
735
736 attach (pid);
737 inferior_pid = pid;
738 push_target (&child_ops);
739
740 mark_breakpoints_out ();
741 target_terminal_init ();
742 clear_proceed_status ();
743 stop_soon_quietly = 1;
744 /*proceed (-1, 0, -2);*/
745 target_terminal_inferior ();
746 wait_for_inferior ();
747 #ifdef SOLIB_ADD
748 SOLIB_ADD ((char *)0, from_tty, (struct target_ops *)0);
749 #endif
750 normal_stop ();
751 #endif /* ATTACH_DETACH */
752 }
753 \f
754 /* Wait for control to return from inferior to debugger.
755 If inferior gets a signal, we may decide to start it up again
756 instead of returning. That is why there is a loop in this function.
757 When this function actually returns it means the inferior
758 should be left stopped and GDB should read more commands. */
759
760 void
761 wait_for_inferior ()
762 {
763 WAITTYPE w;
764 int another_trap;
765 int random_signal;
766 CORE_ADDR stop_sp;
767 CORE_ADDR stop_func_start;
768 char *stop_func_name;
769 CORE_ADDR prologue_pc;
770 int stop_step_resume_break;
771 struct symtab_and_line sal;
772 int remove_breakpoints_on_following_step = 0;
773 #ifdef TDESC
774 extern dc_handle_t tdesc_handle;
775 #endif
776 int current_line;
777
778 #if 0
779 /* This no longer works now that read_register is lazy;
780 it might try to ptrace when the process is not stopped. */
781 prev_pc = read_pc ();
782 (void) find_pc_partial_function (prev_pc, &prev_func_name,
783 &prev_func_start);
784 prev_func_start += FUNCTION_START_OFFSET;
785 prev_sp = read_register (SP_REGNUM);
786 #endif /* 0 */
787
788 sal = find_pc_line(prev_pc, 0);
789 current_line = sal.line;
790
791 while (1)
792 {
793 /* Clean up saved state that will become invalid. */
794 pc_changed = 0;
795 flush_cached_frames ();
796 registers_changed ();
797
798 target_wait (&w);
799
800 /* See if the process still exists; clean up if it doesn't. */
801 if (WIFEXITED (w))
802 {
803 target_terminal_ours (); /* Must do this before mourn anyway */
804 #ifdef TDESC
805 safe_to_init_tdesc_context = 0;
806 #endif
807 if (WEXITSTATUS (w))
808 printf ("\nProgram exited with code 0%o.\n",
809 (unsigned int)WEXITSTATUS (w));
810 else
811 if (!batch_mode())
812 printf ("\nProgram exited normally.\n");
813 fflush (stdout);
814 target_mourn_inferior ();
815 #ifdef NO_SINGLE_STEP
816 one_stepped = 0;
817 #endif
818 stop_print_frame = 0;
819 break;
820 }
821 else if (!WIFSTOPPED (w))
822 {
823 stop_print_frame = 0;
824 stop_signal = WTERMSIG (w);
825 target_terminal_ours (); /* Must do this before mourn anyway */
826 target_kill ((char *)0, 0); /* kill mourns as well */
827 #ifdef TDESC
828 safe_to_init_tdesc_context = 0;
829 #endif
830 #ifdef PRINT_RANDOM_SIGNAL
831 printf ("\nProgram terminated: ");
832 PRINT_RANDOM_SIGNAL (stop_signal);
833 #else
834 printf ("\nProgram terminated with signal %d, %s\n",
835 stop_signal,
836 stop_signal < NSIG
837 ? sys_siglist[stop_signal]
838 : "(undocumented)");
839 #endif
840 printf ("The inferior process no longer exists.\n");
841 fflush (stdout);
842 #ifdef NO_SINGLE_STEP
843 one_stepped = 0;
844 #endif
845 break;
846 }
847
848 #ifdef NO_SINGLE_STEP
849 if (one_stepped)
850 single_step (0); /* This actually cleans up the ss */
851 #endif /* NO_SINGLE_STEP */
852
853 stop_pc = read_pc ();
854 #ifdef TDESC
855 if (safe_to_init_tdesc_context)
856 {
857 current_context = init_dcontext();
858 set_current_frame ( create_new_frame (get_frame_base (read_pc()),read_pc()));
859 }
860 else
861 #endif /* TDESC */
862 set_current_frame ( create_new_frame (read_register (FP_REGNUM),
863 read_pc ()));
864
865 stop_frame_address = FRAME_FP (get_current_frame ());
866 stop_sp = read_register (SP_REGNUM);
867 stop_func_start = 0;
868 stop_func_name = 0;
869 /* Don't care about return value; stop_func_start and stop_func_name
870 will both be 0 if it doesn't work. */
871 (void) find_pc_partial_function (stop_pc, &stop_func_name,
872 &stop_func_start);
873 stop_func_start += FUNCTION_START_OFFSET;
874 another_trap = 0;
875 bpstat_clear (&stop_bpstat);
876 stop_step = 0;
877 stop_stack_dummy = 0;
878 stop_print_frame = 1;
879 stop_step_resume_break = 0;
880 random_signal = 0;
881 stopped_by_random_signal = 0;
882 breakpoints_failed = 0;
883
884 /* Look at the cause of the stop, and decide what to do.
885 The alternatives are:
886 1) break; to really stop and return to the debugger,
887 2) drop through to start up again
888 (set another_trap to 1 to single step once)
889 3) set random_signal to 1, and the decision between 1 and 2
890 will be made according to the signal handling tables. */
891
892 stop_signal = WSTOPSIG (w);
893
894 /* First, distinguish signals caused by the debugger from signals
895 that have to do with the program's own actions.
896 Note that breakpoint insns may cause SIGTRAP or SIGILL
897 or SIGEMT, depending on the operating system version.
898 Here we detect when a SIGILL or SIGEMT is really a breakpoint
899 and change it to SIGTRAP. */
900
901 if (stop_signal == SIGTRAP
902 || (breakpoints_inserted &&
903 (stop_signal == SIGILL
904 || stop_signal == SIGEMT))
905 || stop_soon_quietly)
906 {
907 if (stop_signal == SIGTRAP && stop_after_trap)
908 {
909 stop_print_frame = 0;
910 break;
911 }
912 if (stop_soon_quietly)
913 break;
914
915 /* Don't even think about breakpoints
916 if just proceeded over a breakpoint.
917
918 However, if we are trying to proceed over a breakpoint
919 and end up in sigtramp, then step_resume_break_address
920 will be set and we should check whether we've hit the
921 step breakpoint. */
922 if (stop_signal == SIGTRAP && trap_expected
923 && step_resume_break_address == NULL)
924 bpstat_clear (&stop_bpstat);
925 else
926 {
927 /* See if there is a breakpoint at the current PC. */
928 #if DECR_PC_AFTER_BREAK
929 /* Notice the case of stepping through a jump
930 that leads just after a breakpoint.
931 Don't confuse that with hitting the breakpoint.
932 What we check for is that 1) stepping is going on
933 and 2) the pc before the last insn does not match
934 the address of the breakpoint before the current pc. */
935 if (!(prev_pc != stop_pc - DECR_PC_AFTER_BREAK
936 && step_range_end && !step_resume_break_address))
937 #endif /* DECR_PC_AFTER_BREAK not zero */
938 {
939 /* See if we stopped at the special breakpoint for
940 stepping over a subroutine call. If both are zero,
941 this wasn't the reason for the stop. */
942 if (stop_pc - DECR_PC_AFTER_BREAK
943 == step_resume_break_address
944 && step_resume_break_address)
945 {
946 stop_step_resume_break = 1;
947 if (DECR_PC_AFTER_BREAK)
948 {
949 stop_pc -= DECR_PC_AFTER_BREAK;
950 write_register (PC_REGNUM, stop_pc);
951 pc_changed = 0;
952 }
953 }
954 else
955 {
956 stop_bpstat =
957 bpstat_stop_status (&stop_pc, stop_frame_address);
958 /* Following in case break condition called a
959 function. */
960 stop_print_frame = 1;
961 }
962 }
963 }
964
965 if (stop_signal == SIGTRAP)
966 random_signal
967 = !(bpstat_explains_signal (stop_bpstat)
968 || trap_expected
969 || stop_step_resume_break
970 || PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address)
971 || (step_range_end && !step_resume_break_address));
972 else
973 {
974 random_signal
975 = !(bpstat_explains_signal (stop_bpstat)
976 || stop_step_resume_break
977 /* End of a stack dummy. Some systems (e.g. Sony
978 news) give another signal besides SIGTRAP,
979 so check here as well as above. */
980 || (stop_sp INNER_THAN stop_pc
981 && stop_pc INNER_THAN stop_frame_address)
982 );
983 if (!random_signal)
984 stop_signal = SIGTRAP;
985 }
986 }
987 else
988 random_signal = 1;
989
990 /* For the program's own signals, act according to
991 the signal handling tables. */
992
993 if (random_signal)
994 {
995 /* Signal not for debugging purposes. */
996 int printed = 0;
997
998 stopped_by_random_signal = 1;
999
1000 if (stop_signal >= NSIG
1001 || signal_print[stop_signal])
1002 {
1003 printed = 1;
1004 target_terminal_ours_for_output ();
1005 #ifdef PRINT_RANDOM_SIGNAL
1006 PRINT_RANDOM_SIGNAL (stop_signal);
1007 #else
1008 printf ("\nProgram received signal %d, %s\n",
1009 stop_signal,
1010 stop_signal < NSIG
1011 ? sys_siglist[stop_signal]
1012 : "(undocumented)");
1013 #endif /* PRINT_RANDOM_SIGNAL */
1014 fflush (stdout);
1015 }
1016 if (stop_signal >= NSIG
1017 || signal_stop[stop_signal])
1018 break;
1019 /* If not going to stop, give terminal back
1020 if we took it away. */
1021 else if (printed)
1022 target_terminal_inferior ();
1023
1024 /* Note that virtually all the code below does `if !random_signal'.
1025 Perhaps this code should end with a goto or continue. At least
1026 one (now fixed) bug was caused by this -- a !random_signal was
1027 missing in one of the tests below. */
1028 }
1029
1030 /* Handle cases caused by hitting a breakpoint. */
1031
1032 if (!random_signal
1033 && (bpstat_explains_signal (stop_bpstat) || stop_step_resume_break))
1034 {
1035 /* Does a breakpoint want us to stop? */
1036 if (bpstat_stop (stop_bpstat))
1037 {
1038 stop_print_frame = bpstat_should_print (stop_bpstat);
1039 break;
1040 }
1041 /* But if we have hit the step-resumption breakpoint,
1042 remove it. It has done its job getting us here.
1043 The sp test is to make sure that we don't get hung
1044 up in recursive calls in functions without frame
1045 pointers. If the stack pointer isn't outside of
1046 where the breakpoint was set (within a routine to be
1047 stepped over), we're in the middle of a recursive
1048 call. Not true for reg window machines (sparc)
1049 because the must change frames to call things and
1050 the stack pointer doesn't have to change if it
1051 the bp was set in a routine without a frame (pc can
1052 be stored in some other window).
1053
1054 The removal of the sp test is to allow calls to
1055 alloca. Nasty things were happening. Oh, well,
1056 gdb can only handle one level deep of lack of
1057 frame pointer. */
1058 if (stop_step_resume_break
1059 && (step_frame_address == 0
1060 || (stop_frame_address == step_frame_address)))
1061 {
1062 remove_step_breakpoint ();
1063 step_resume_break_address = 0;
1064
1065 /* If were waiting for a trap, hitting the step_resume_break
1066 doesn't count as getting it. */
1067 if (trap_expected)
1068 another_trap = 1;
1069 }
1070 /* Otherwise, must remove breakpoints and single-step
1071 to get us past the one we hit. */
1072 else
1073 {
1074 remove_breakpoints ();
1075 remove_step_breakpoint ();
1076 breakpoints_inserted = 0;
1077 another_trap = 1;
1078 }
1079
1080 /* We come here if we hit a breakpoint but should not
1081 stop for it. Possibly we also were stepping
1082 and should stop for that. So fall through and
1083 test for stepping. But, if not stepping,
1084 do not stop. */
1085 }
1086
1087 /* If this is the breakpoint at the end of a stack dummy,
1088 just stop silently. */
1089 if (!random_signal
1090 && PC_IN_CALL_DUMMY (stop_pc, stop_sp, stop_frame_address))
1091 {
1092 stop_print_frame = 0;
1093 stop_stack_dummy = 1;
1094 #ifdef HP_OS_BUG
1095 trap_expected_after_continue = 1;
1096 #endif
1097 break;
1098 }
1099
1100 if (step_resume_break_address)
1101 /* Having a step-resume breakpoint overrides anything
1102 else having to do with stepping commands until
1103 that breakpoint is reached. */
1104 ;
1105 /* If stepping through a line, keep going if still within it. */
1106 else if (!random_signal
1107 && step_range_end
1108 && stop_pc >= step_range_start
1109 && stop_pc < step_range_end
1110 /* The step range might include the start of the
1111 function, so if we are at the start of the
1112 step range and either the stack or frame pointers
1113 just changed, we've stepped outside */
1114 && !(stop_pc == step_range_start
1115 && stop_frame_address
1116 && (stop_sp INNER_THAN prev_sp
1117 || stop_frame_address != step_frame_address)))
1118 {
1119 #if 0
1120 /* When "next"ing through a function,
1121 This causes an extra stop at the end.
1122 Is there any reason for this?
1123 It's confusing to the user. */
1124 /* Don't step through the return from a function
1125 unless that is the first instruction stepped through. */
1126 if (ABOUT_TO_RETURN (stop_pc))
1127 {
1128 stop_step = 1;
1129 break;
1130 }
1131 #endif
1132 }
1133
1134 /* We stepped out of the stepping range. See if that was due
1135 to a subroutine call that we should proceed to the end of. */
1136 else if (!random_signal && step_range_end)
1137 {
1138 if (stop_func_start)
1139 {
1140 prologue_pc = stop_func_start;
1141 SKIP_PROLOGUE (prologue_pc);
1142 }
1143
1144 /* Did we just take a signal? */
1145 if (IN_SIGTRAMP (stop_pc, stop_func_name)
1146 && !IN_SIGTRAMP (prev_pc, prev_func_name))
1147 {
1148 /* This code is needed at least in the following case:
1149 The user types "next" and then a signal arrives (before
1150 the "next" is done). */
1151 /* We've just taken a signal; go until we are back to
1152 the point where we took it and one more. */
1153 step_resume_break_address = prev_pc;
1154 step_resume_break_duplicate =
1155 breakpoint_here_p (step_resume_break_address);
1156 if (breakpoints_inserted)
1157 insert_step_breakpoint ();
1158 /* Make sure that the stepping range gets us past
1159 that instruction. */
1160 if (step_range_end == 1)
1161 step_range_end = (step_range_start = prev_pc) + 1;
1162 remove_breakpoints_on_following_step = 1;
1163 }
1164
1165 /* ==> See comments at top of file on this algorithm. <==*/
1166
1167 else if (stop_pc == stop_func_start
1168 && (stop_func_start != prev_func_start
1169 || prologue_pc != stop_func_start
1170 || stop_sp != prev_sp))
1171 {
1172 /* It's a subroutine call */
1173 if (step_over_calls > 0
1174 || (step_over_calls && find_pc_function (stop_pc) == 0))
1175 {
1176 /* A subroutine call has happened. */
1177 /* Set a special breakpoint after the return */
1178 step_resume_break_address =
1179 ADDR_BITS_REMOVE
1180 (SAVED_PC_AFTER_CALL (get_current_frame ()));
1181 step_resume_break_duplicate
1182 = breakpoint_here_p (step_resume_break_address);
1183 if (breakpoints_inserted)
1184 insert_step_breakpoint ();
1185 }
1186 /* Subroutine call with source code we should not step over.
1187 Do step to the first line of code in it. */
1188 else if (step_over_calls)
1189 {
1190 SKIP_PROLOGUE (stop_func_start);
1191 sal = find_pc_line (stop_func_start, 0);
1192 /* Use the step_resume_break to step until
1193 the end of the prologue, even if that involves jumps
1194 (as it seems to on the vax under 4.2). */
1195 /* If the prologue ends in the middle of a source line,
1196 continue to the end of that source line.
1197 Otherwise, just go to end of prologue. */
1198 #ifdef PROLOGUE_FIRSTLINE_OVERLAP
1199 /* no, don't either. It skips any code that's
1200 legitimately on the first line. */
1201 #else
1202 if (sal.end && sal.pc != stop_func_start)
1203 stop_func_start = sal.end;
1204 #endif
1205
1206 if (stop_func_start == stop_pc)
1207 {
1208 /* We are already there: stop now. */
1209 stop_step = 1;
1210 break;
1211 }
1212 else
1213 /* Put the step-breakpoint there and go until there. */
1214 {
1215 step_resume_break_address = stop_func_start;
1216
1217 step_resume_break_duplicate
1218 = breakpoint_here_p (step_resume_break_address);
1219 if (breakpoints_inserted)
1220 insert_step_breakpoint ();
1221 /* Do not specify what the fp should be when we stop
1222 since on some machines the prologue
1223 is where the new fp value is established. */
1224 step_frame_address = 0;
1225 /* And make sure stepping stops right away then. */
1226 step_range_end = step_range_start;
1227 }
1228 }
1229 else
1230 {
1231 /* We get here only if step_over_calls is 0 and we
1232 just stepped into a subroutine. I presume
1233 that step_over_calls is only 0 when we're
1234 supposed to be stepping at the assembly
1235 language level.*/
1236 stop_step = 1;
1237 break;
1238 }
1239 }
1240 /* No subroutine call; stop now. */
1241 else
1242 {
1243 if (step_range_end == 1) break; /* Don't do this for stepi/nexti */
1244
1245 /* We've wandered out of the step range (but we haven't done a
1246 subroutine call or return (that's handled elsewhere)). We
1247 don't really want to stop until we encounter the start of a
1248 new statement. If so, we stop. Otherwise, we reset
1249 step_range_start and step_range_end, and just continue. */
1250 sal = find_pc_line(stop_pc, 0);
1251
1252 if (sal.line == 0 || /* Stop now if no line # info */
1253 (current_line != sal.line
1254 && stop_pc == sal.pc)) {
1255 stop_step = 1;
1256 break;
1257 } else {
1258 /* This is probably not necessary, but it probably makes
1259 stepping more efficient, as we avoid calling find_pc_line()
1260 for each instruction we step over. */
1261 step_range_start = sal.pc;
1262 step_range_end = sal.end;
1263 }
1264 }
1265 }
1266
1267 else if (trap_expected
1268 && IN_SIGTRAMP (stop_pc, stop_func_name)
1269 && !IN_SIGTRAMP (prev_pc, prev_func_name))
1270 {
1271 /* What has happened here is that we have just stepped the inferior
1272 with a signal (because it is a signal which shouldn't make
1273 us stop), thus stepping into sigtramp.
1274
1275 So we need to set a step_resume_break_address breakpoint
1276 and continue until we hit it, and then step. */
1277 step_resume_break_address = prev_pc;
1278 /* Always 1, I think, but it's probably easier to have
1279 the step_resume_break as usual rather than trying to
1280 re-use the breakpoint which is already there. */
1281 step_resume_break_duplicate =
1282 breakpoint_here_p (step_resume_break_address);
1283 if (breakpoints_inserted)
1284 insert_step_breakpoint ();
1285 remove_breakpoints_on_following_step = 1;
1286 another_trap = 1;
1287 }
1288
1289 /* Save the pc before execution, to compare with pc after stop. */
1290 prev_pc = read_pc (); /* Might have been DECR_AFTER_BREAK */
1291 prev_func_start = stop_func_start; /* Ok, since if DECR_PC_AFTER
1292 BREAK is defined, the
1293 original pc would not have
1294 been at the start of a
1295 function. */
1296 prev_func_name = stop_func_name;
1297 prev_sp = stop_sp;
1298
1299 /* If we did not do break;, it means we should keep
1300 running the inferior and not return to debugger. */
1301
1302 if (trap_expected && stop_signal != SIGTRAP)
1303 {
1304 /* We took a signal (which we are supposed to pass through to
1305 the inferior, else we'd have done a break above) and we
1306 haven't yet gotten our trap. Simply continue. */
1307 resume ((step_range_end && !step_resume_break_address)
1308 || (trap_expected && !step_resume_break_address)
1309 || bpstat_should_step (),
1310 stop_signal);
1311 }
1312 else
1313 {
1314 /* Either the trap was not expected, but we are continuing
1315 anyway (the user asked that this signal be passed to the
1316 child)
1317 -- or --
1318 The signal was SIGTRAP, e.g. it was our signal, but we
1319 decided we should resume from it.
1320
1321 We're going to run this baby now!
1322
1323 Insert breakpoints now, unless we are trying
1324 to one-proceed past a breakpoint. */
1325 /* If we've just finished a special step resume and we don't
1326 want to hit a breakpoint, pull em out. */
1327 #ifdef TDESC
1328 if (!tdesc_handle)
1329 {
1330 init_tdesc();
1331 safe_to_init_tdesc_context = 1;
1332 }
1333 #endif
1334
1335 if (!step_resume_break_address &&
1336 remove_breakpoints_on_following_step)
1337 {
1338 remove_breakpoints_on_following_step = 0;
1339 remove_breakpoints ();
1340 breakpoints_inserted = 0;
1341 }
1342 else if (!breakpoints_inserted &&
1343 (step_resume_break_address != NULL || !another_trap))
1344 {
1345 insert_step_breakpoint ();
1346 breakpoints_failed = insert_breakpoints ();
1347 if (breakpoints_failed)
1348 break;
1349 breakpoints_inserted = 1;
1350 }
1351
1352 trap_expected = another_trap;
1353
1354 if (stop_signal == SIGTRAP)
1355 stop_signal = 0;
1356
1357 #ifdef SHIFT_INST_REGS
1358 /* I'm not sure when this following segment applies. I do know, now,
1359 that we shouldn't rewrite the regs when we were stopped by a
1360 random signal from the inferior process. */
1361
1362 if (!bpstat_explains_signal (stop_bpstat)
1363 && (stop_signal != SIGCLD)
1364 && !stopped_by_random_signal)
1365 {
1366 CORE_ADDR pc_contents = read_register (PC_REGNUM);
1367 CORE_ADDR npc_contents = read_register (NPC_REGNUM);
1368 if (pc_contents != npc_contents)
1369 {
1370 write_register (NNPC_REGNUM, npc_contents);
1371 write_register (NPC_REGNUM, pc_contents);
1372 }
1373 }
1374 #endif /* SHIFT_INST_REGS */
1375
1376 resume ((step_range_end && !step_resume_break_address)
1377 || (trap_expected && !step_resume_break_address)
1378 || bpstat_should_step (),
1379 stop_signal);
1380 }
1381 }
1382 if (target_has_execution)
1383 {
1384 /* Assuming the inferior still exists, set these up for next
1385 time, just like we did above if we didn't break out of the
1386 loop. */
1387 prev_pc = read_pc ();
1388 prev_func_start = stop_func_start;
1389 prev_func_name = stop_func_name;
1390 prev_sp = stop_sp;
1391 }
1392 }
1393 \f
1394 /* Here to return control to GDB when the inferior stops for real.
1395 Print appropriate messages, remove breakpoints, give terminal our modes.
1396
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. */
1401
1402 void
1403 normal_stop ()
1404 {
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)
1409 (get_current_frame ())->pc = read_pc ();
1410
1411 if (breakpoints_failed)
1412 {
1413 target_terminal_ours_for_output ();
1414 print_sys_errmsg ("ptrace", breakpoints_failed);
1415 printf ("Stopped; cannot insert breakpoints.\n\
1416 The same program may be running in another process.\n");
1417 }
1418
1419 if (target_has_execution)
1420 remove_step_breakpoint ();
1421
1422 if (target_has_execution && breakpoints_inserted)
1423 if (remove_breakpoints ())
1424 {
1425 target_terminal_ours_for_output ();
1426 printf ("Cannot remove breakpoints because program is no longer writable.\n\
1427 It might be running in another process.\n\
1428 Further execution is probably impossible.\n");
1429 }
1430
1431 breakpoints_inserted = 0;
1432
1433 /* Delete the breakpoint we stopped at, if it wants to be deleted.
1434 Delete any breakpoint that is to be deleted at the next stop. */
1435
1436 breakpoint_auto_delete (stop_bpstat);
1437
1438 /* If an auto-display called a function and that got a signal,
1439 delete that auto-display to avoid an infinite recursion. */
1440
1441 if (stopped_by_random_signal)
1442 disable_current_display ();
1443
1444 if (step_multi && stop_step)
1445 return;
1446
1447 target_terminal_ours ();
1448
1449 if (!target_has_stack)
1450 return;
1451
1452 /* Select innermost stack frame except on return from a stack dummy routine,
1453 or if the program has exited. Print it without a level number if
1454 we have changed functions or hit a breakpoint. Print source line
1455 if we have one. */
1456 if (!stop_stack_dummy)
1457 {
1458 select_frame (get_current_frame (), 0);
1459
1460 if (stop_print_frame)
1461 {
1462 int source_only;
1463
1464 source_only = bpstat_print (stop_bpstat);
1465 source_only = source_only ||
1466 ( stop_step
1467 && step_frame_address == stop_frame_address
1468 && step_start_function == find_pc_function (stop_pc));
1469
1470 print_stack_frame (selected_frame, -1, source_only? -1: 1);
1471
1472 /* Display the auto-display expressions. */
1473 do_displays ();
1474 }
1475 }
1476
1477 /* Save the function value return registers, if we care.
1478 We might be about to restore their previous contents. */
1479 if (proceed_to_finish)
1480 read_register_bytes (0, stop_registers, REGISTER_BYTES);
1481
1482 if (stop_stack_dummy)
1483 {
1484 /* Pop the empty frame that contains the stack dummy.
1485 POP_FRAME ends with a setting of the current frame, so we
1486 can use that next. */
1487 POP_FRAME;
1488 select_frame (get_current_frame (), 0);
1489 }
1490 }
1491 \f
1492 static void
1493 insert_step_breakpoint ()
1494 {
1495 if (step_resume_break_address && !step_resume_break_duplicate)
1496 target_insert_breakpoint (step_resume_break_address,
1497 step_resume_break_shadow);
1498 }
1499
1500 static void
1501 remove_step_breakpoint ()
1502 {
1503 if (step_resume_break_address && !step_resume_break_duplicate)
1504 target_remove_breakpoint (step_resume_break_address,
1505 step_resume_break_shadow);
1506 }
1507 \f
1508 static void
1509 sig_print_header ()
1510 {
1511 printf_filtered ("Signal\t\tStop\tPrint\tPass to program\tDescription\n");
1512 }
1513
1514 static void
1515 sig_print_info (number)
1516 int number;
1517 {
1518 char *abbrev = sig_abbrev(number);
1519 if (abbrev == NULL)
1520 printf_filtered ("%d\t\t", number);
1521 else
1522 printf_filtered ("SIG%s (%d)\t", abbrev, number);
1523 printf_filtered ("%s\t", signal_stop[number] ? "Yes" : "No");
1524 printf_filtered ("%s\t", signal_print[number] ? "Yes" : "No");
1525 printf_filtered ("%s\t\t", signal_program[number] ? "Yes" : "No");
1526 printf_filtered ("%s\n", sys_siglist[number]);
1527 }
1528
1529 /* Specify how various signals in the inferior should be handled. */
1530
1531 static void
1532 handle_command (args, from_tty)
1533 char *args;
1534 int from_tty;
1535 {
1536 register char *p = args;
1537 int signum = 0;
1538 register int digits, wordlen;
1539 char *nextarg;
1540
1541 if (!args)
1542 error_no_arg ("signal to handle");
1543
1544 while (*p)
1545 {
1546 /* Find the end of the next word in the args. */
1547 for (wordlen = 0;
1548 p[wordlen] && p[wordlen] != ' ' && p[wordlen] != '\t';
1549 wordlen++);
1550 /* Set nextarg to the start of the word after the one we just
1551 found, and null-terminate this one. */
1552 if (p[wordlen] == '\0')
1553 nextarg = p + wordlen;
1554 else
1555 {
1556 p[wordlen] = '\0';
1557 nextarg = p + wordlen + 1;
1558 }
1559
1560
1561 for (digits = 0; p[digits] >= '0' && p[digits] <= '9'; digits++);
1562
1563 if (signum == 0)
1564 {
1565 /* It is the first argument--must be the signal to operate on. */
1566 if (digits == wordlen)
1567 {
1568 /* Numeric. */
1569 signum = atoi (p);
1570 if (signum <= 0 || signum >= NSIG)
1571 {
1572 p[wordlen] = '\0';
1573 error ("Invalid signal %s given as argument to \"handle\".", p);
1574 }
1575 }
1576 else
1577 {
1578 /* Symbolic. */
1579 signum = sig_number (p);
1580 if (signum == -1)
1581 error ("No such signal \"%s\"", p);
1582 }
1583
1584 if (signum == SIGTRAP || signum == SIGINT)
1585 {
1586 if (!query ("SIG%s is used by the debugger.\nAre you sure you want to change it? ", sig_abbrev (signum)))
1587 error ("Not confirmed.");
1588 }
1589 }
1590 /* Else, if already got a signal number, look for flag words
1591 saying what to do for it. */
1592 else if (!strncmp (p, "stop", wordlen))
1593 {
1594 signal_stop[signum] = 1;
1595 signal_print[signum] = 1;
1596 }
1597 else if (wordlen >= 2 && !strncmp (p, "print", wordlen))
1598 signal_print[signum] = 1;
1599 else if (wordlen >= 2 && !strncmp (p, "pass", wordlen))
1600 signal_program[signum] = 1;
1601 else if (!strncmp (p, "ignore", wordlen))
1602 signal_program[signum] = 0;
1603 else if (wordlen >= 3 && !strncmp (p, "nostop", wordlen))
1604 signal_stop[signum] = 0;
1605 else if (wordlen >= 4 && !strncmp (p, "noprint", wordlen))
1606 {
1607 signal_print[signum] = 0;
1608 signal_stop[signum] = 0;
1609 }
1610 else if (wordlen >= 4 && !strncmp (p, "nopass", wordlen))
1611 signal_program[signum] = 0;
1612 else if (wordlen >= 3 && !strncmp (p, "noignore", wordlen))
1613 signal_program[signum] = 1;
1614 /* Not a number and not a recognized flag word => complain. */
1615 else
1616 {
1617 error ("Unrecognized flag word: \"%s\".", p);
1618 }
1619
1620 /* Find start of next word. */
1621 p = nextarg;
1622 while (*p == ' ' || *p == '\t') p++;
1623 }
1624
1625 if (from_tty)
1626 {
1627 /* Show the results. */
1628 sig_print_header ();
1629 sig_print_info (signum);
1630 }
1631 }
1632
1633 /* Print current contents of the tables set by the handle command. */
1634
1635 static void
1636 signals_info (signum_exp)
1637 char *signum_exp;
1638 {
1639 register int i;
1640 sig_print_header ();
1641
1642 if (signum_exp)
1643 {
1644 /* First see if this is a symbol name. */
1645 i = sig_number (signum_exp);
1646 if (i == -1)
1647 {
1648 /* Nope, maybe it's an address which evaluates to a signal
1649 number. */
1650 i = parse_and_eval_address (signum_exp);
1651 if (i >= NSIG || i < 0)
1652 error ("Signal number out of bounds.");
1653 }
1654 sig_print_info (i);
1655 return;
1656 }
1657
1658 printf_filtered ("\n");
1659 for (i = 0; i < NSIG; i++)
1660 {
1661 QUIT;
1662
1663 sig_print_info (i);
1664 }
1665
1666 printf_filtered ("\nUse the \"handle\" command to change these tables.\n");
1667 }
1668 \f
1669 /* Save all of the information associated with the inferior<==>gdb
1670 connection. INF_STATUS is a pointer to a "struct inferior_status"
1671 (defined in inferior.h). */
1672
1673 void
1674 save_inferior_status (inf_status, restore_stack_info)
1675 struct inferior_status *inf_status;
1676 int restore_stack_info;
1677 {
1678 inf_status->pc_changed = pc_changed;
1679 inf_status->stop_signal = stop_signal;
1680 inf_status->stop_pc = stop_pc;
1681 inf_status->stop_frame_address = stop_frame_address;
1682 inf_status->stop_step = stop_step;
1683 inf_status->stop_stack_dummy = stop_stack_dummy;
1684 inf_status->stopped_by_random_signal = stopped_by_random_signal;
1685 inf_status->trap_expected = trap_expected;
1686 inf_status->step_range_start = step_range_start;
1687 inf_status->step_range_end = step_range_end;
1688 inf_status->step_frame_address = step_frame_address;
1689 inf_status->step_over_calls = step_over_calls;
1690 inf_status->step_resume_break_address = step_resume_break_address;
1691 inf_status->stop_after_trap = stop_after_trap;
1692 inf_status->stop_soon_quietly = stop_soon_quietly;
1693 /* Save original bpstat chain here; replace it with copy of chain.
1694 If caller's caller is walking the chain, they'll be happier if we
1695 hand them back the original chain when restore_i_s is called. */
1696 inf_status->stop_bpstat = stop_bpstat;
1697 stop_bpstat = bpstat_copy (stop_bpstat);
1698 inf_status->breakpoint_proceeded = breakpoint_proceeded;
1699 inf_status->restore_stack_info = restore_stack_info;
1700 inf_status->proceed_to_finish = proceed_to_finish;
1701
1702 bcopy (stop_registers, inf_status->stop_registers, REGISTER_BYTES);
1703
1704 record_selected_frame (&(inf_status->selected_frame_address),
1705 &(inf_status->selected_level));
1706 return;
1707 }
1708
1709 void
1710 restore_inferior_status (inf_status)
1711 struct inferior_status *inf_status;
1712 {
1713 FRAME fid;
1714 int level = inf_status->selected_level;
1715
1716 pc_changed = inf_status->pc_changed;
1717 stop_signal = inf_status->stop_signal;
1718 stop_pc = inf_status->stop_pc;
1719 stop_frame_address = inf_status->stop_frame_address;
1720 stop_step = inf_status->stop_step;
1721 stop_stack_dummy = inf_status->stop_stack_dummy;
1722 stopped_by_random_signal = inf_status->stopped_by_random_signal;
1723 trap_expected = inf_status->trap_expected;
1724 step_range_start = inf_status->step_range_start;
1725 step_range_end = inf_status->step_range_end;
1726 step_frame_address = inf_status->step_frame_address;
1727 step_over_calls = inf_status->step_over_calls;
1728 step_resume_break_address = inf_status->step_resume_break_address;
1729 stop_after_trap = inf_status->stop_after_trap;
1730 stop_soon_quietly = inf_status->stop_soon_quietly;
1731 bpstat_clear (&stop_bpstat);
1732 stop_bpstat = inf_status->stop_bpstat;
1733 breakpoint_proceeded = inf_status->breakpoint_proceeded;
1734 proceed_to_finish = inf_status->proceed_to_finish;
1735
1736 bcopy (inf_status->stop_registers, stop_registers, REGISTER_BYTES);
1737
1738 /* The inferior can be gone if the user types "print exit(0)"
1739 (and perhaps other times). */
1740 if (target_has_stack && inf_status->restore_stack_info)
1741 {
1742 fid = find_relative_frame (get_current_frame (),
1743 &level);
1744
1745 /* If inf_status->selected_frame_address is NULL, there was no
1746 previously selected frame. */
1747 if (fid == 0 ||
1748 FRAME_FP (fid) != inf_status->selected_frame_address ||
1749 level != 0)
1750 {
1751 #if 0
1752 /* I'm not sure this error message is a good idea. I have
1753 only seen it occur after "Can't continue previously
1754 requested operation" (we get called from do_cleanups), in
1755 which case it just adds insult to injury (one confusing
1756 error message after another. Besides which, does the
1757 user really care if we can't restore the previously
1758 selected frame? */
1759 fprintf (stderr, "Unable to restore previously selected frame.\n");
1760 #endif
1761 select_frame (get_current_frame (), 0);
1762 return;
1763 }
1764
1765 select_frame (fid, inf_status->selected_level);
1766 }
1767 }
1768
1769 \f
1770 void
1771 _initialize_infrun ()
1772 {
1773 register int i;
1774
1775 add_info ("signals", signals_info,
1776 "What debugger does when program gets various signals.\n\
1777 Specify a signal number as argument to print info on that signal only.");
1778
1779 add_com ("handle", class_run, handle_command,
1780 "Specify how to handle a signal.\n\
1781 Args are signal number followed by flags.\n\
1782 Flags allowed are \"stop\", \"print\", \"pass\",\n\
1783 \"nostop\", \"noprint\" or \"nopass\".\n\
1784 Print means print a message if this signal happens.\n\
1785 Stop means reenter debugger if this signal happens (implies print).\n\
1786 Pass means let program see this signal; otherwise program doesn't know.\n\
1787 Pass and Stop may be combined.");
1788
1789 for (i = 0; i < NSIG; i++)
1790 {
1791 signal_stop[i] = 1;
1792 signal_print[i] = 1;
1793 signal_program[i] = 1;
1794 }
1795
1796 /* Signals caused by debugger's own actions
1797 should not be given to the program afterwards. */
1798 signal_program[SIGTRAP] = 0;
1799 signal_program[SIGINT] = 0;
1800
1801 /* Signals that are not errors should not normally enter the debugger. */
1802 #ifdef SIGALRM
1803 signal_stop[SIGALRM] = 0;
1804 signal_print[SIGALRM] = 0;
1805 #endif /* SIGALRM */
1806 #ifdef SIGVTALRM
1807 signal_stop[SIGVTALRM] = 0;
1808 signal_print[SIGVTALRM] = 0;
1809 #endif /* SIGVTALRM */
1810 #ifdef SIGPROF
1811 signal_stop[SIGPROF] = 0;
1812 signal_print[SIGPROF] = 0;
1813 #endif /* SIGPROF */
1814 #ifdef SIGCHLD
1815 signal_stop[SIGCHLD] = 0;
1816 signal_print[SIGCHLD] = 0;
1817 #endif /* SIGCHLD */
1818 #ifdef SIGCLD
1819 signal_stop[SIGCLD] = 0;
1820 signal_print[SIGCLD] = 0;
1821 #endif /* SIGCLD */
1822 #ifdef SIGIO
1823 signal_stop[SIGIO] = 0;
1824 signal_print[SIGIO] = 0;
1825 #endif /* SIGIO */
1826 #ifdef SIGURG
1827 signal_stop[SIGURG] = 0;
1828 signal_print[SIGURG] = 0;
1829 #endif /* SIGURG */
1830 }
1831
This page took 0.110063 seconds and 5 git commands to generate.