Remove stray extern declaration of wrap_value_subscript().
[deliverable/binutils-gdb.git] / gdb / infrun.c
CommitLineData
c906108c 1/* Target-struct-independent code to start (run) and stop an inferior process.
c5394b80 2 Copyright 1986-1989, 1991-2000 Free Software Foundation, Inc.
c906108c 3
c5aa993b 4 This file is part of GDB.
c906108c 5
c5aa993b
JM
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.
c906108c 10
c5aa993b
JM
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.
c906108c 15
c5aa993b
JM
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
c906108c
SS
20
21#include "defs.h"
22#include "gdb_string.h"
23#include <ctype.h>
24#include "symtab.h"
25#include "frame.h"
26#include "inferior.h"
27#include "breakpoint.h"
03f2053f 28#include "gdb_wait.h"
c906108c
SS
29#include "gdbcore.h"
30#include "gdbcmd.h"
31#include "target.h"
32#include "gdbthread.h"
33#include "annotate.h"
34#include "symfile.h" /* for overlay functions */
7a292a7a 35#include "top.h"
c906108c 36#include <signal.h>
2acceee2 37#include "inf-loop.h"
c906108c
SS
38
39/* Prototypes for local functions */
40
96baa820 41static void signals_info (char *, int);
c906108c 42
96baa820 43static void handle_command (char *, int);
c906108c 44
96baa820 45static void sig_print_info (enum target_signal);
c906108c 46
96baa820 47static void sig_print_header (void);
c906108c 48
96baa820 49static void resume_cleanups (int);
c906108c 50
96baa820 51static int hook_stop_stub (void *);
c906108c 52
96baa820 53static void delete_breakpoint_current_contents (void *);
c906108c 54
96baa820
JM
55static void set_follow_fork_mode_command (char *arg, int from_tty,
56 struct cmd_list_element * c);
7a292a7a 57
96baa820
JM
58static struct inferior_status *xmalloc_inferior_status (void);
59
60static void free_inferior_status (struct inferior_status *);
61
62static int restore_selected_frame (void *);
63
64static void build_infrun (void);
65
66static void follow_inferior_fork (int parent_pid, int child_pid,
67 int has_forked, int has_vforked);
68
69static void follow_fork (int parent_pid, int child_pid);
70
71static void follow_vfork (int parent_pid, int child_pid);
72
73static void set_schedlock_func (char *args, int from_tty,
74 struct cmd_list_element * c);
75
96baa820
JM
76struct execution_control_state;
77
78static int currently_stepping (struct execution_control_state *ecs);
79
80static void xdb_handle_command (char *args, int from_tty);
81
82void _initialize_infrun (void);
43ff13b4 83
c906108c
SS
84int inferior_ignoring_startup_exec_events = 0;
85int inferior_ignoring_leading_exec_events = 0;
86
43ff13b4 87/* In asynchronous mode, but simulating synchronous execution. */
96baa820 88
43ff13b4
JM
89int sync_execution = 0;
90
c906108c
SS
91/* wait_for_inferior and normal_stop use this to notify the user
92 when the inferior stopped in a different thread than it had been
96baa820
JM
93 running in. */
94
c3f6f71d 95static int previous_inferior_pid;
7a292a7a
SS
96
97/* This is true for configurations that may follow through execl() and
98 similar functions. At present this is only true for HP-UX native. */
99
100#ifndef MAY_FOLLOW_EXEC
101#define MAY_FOLLOW_EXEC (0)
c906108c
SS
102#endif
103
7a292a7a
SS
104static int may_follow_exec = MAY_FOLLOW_EXEC;
105
c906108c
SS
106/* resume and wait_for_inferior use this to ensure that when
107 stepping over a hit breakpoint in a threaded application
108 only the thread that hit the breakpoint is stepped and the
109 other threads don't continue. This prevents having another
110 thread run past the breakpoint while it is temporarily
111 removed.
112
113 This is not thread-specific, so it isn't saved as part of
114 the infrun state.
115
116 Versions of gdb which don't use the "step == this thread steps
117 and others continue" model but instead use the "step == this
96baa820
JM
118 thread steps and others wait" shouldn't do this. */
119
c906108c
SS
120static int thread_step_needed = 0;
121
7a292a7a
SS
122/* This is true if thread_step_needed should actually be used. At
123 present this is only true for HP-UX native. */
124
125#ifndef USE_THREAD_STEP_NEEDED
126#define USE_THREAD_STEP_NEEDED (0)
127#endif
128
129static int use_thread_step_needed = USE_THREAD_STEP_NEEDED;
130
c906108c
SS
131/* GET_LONGJMP_TARGET returns the PC at which longjmp() will resume the
132 program. It needs to examine the jmp_buf argument and extract the PC
133 from it. The return value is non-zero on success, zero otherwise. */
134
135#ifndef GET_LONGJMP_TARGET
136#define GET_LONGJMP_TARGET(PC_ADDR) 0
137#endif
138
139
140/* Some machines have trampoline code that sits between function callers
141 and the actual functions themselves. If this machine doesn't have
142 such things, disable their processing. */
143
144#ifndef SKIP_TRAMPOLINE_CODE
145#define SKIP_TRAMPOLINE_CODE(pc) 0
146#endif
147
148/* Dynamic function trampolines are similar to solib trampolines in that they
149 are between the caller and the callee. The difference is that when you
150 enter a dynamic trampoline, you can't determine the callee's address. Some
151 (usually complex) code needs to run in the dynamic trampoline to figure out
152 the callee's address. This macro is usually called twice. First, when we
153 enter the trampoline (looks like a normal function call at that point). It
154 should return the PC of a point within the trampoline where the callee's
155 address is known. Second, when we hit the breakpoint, this routine returns
156 the callee's address. At that point, things proceed as per a step resume
157 breakpoint. */
158
159#ifndef DYNAMIC_TRAMPOLINE_NEXTPC
160#define DYNAMIC_TRAMPOLINE_NEXTPC(pc) 0
161#endif
162
d4f3574e
SS
163/* If the program uses ELF-style shared libraries, then calls to
164 functions in shared libraries go through stubs, which live in a
165 table called the PLT (Procedure Linkage Table). The first time the
166 function is called, the stub sends control to the dynamic linker,
167 which looks up the function's real address, patches the stub so
168 that future calls will go directly to the function, and then passes
169 control to the function.
170
171 If we are stepping at the source level, we don't want to see any of
172 this --- we just want to skip over the stub and the dynamic linker.
173 The simple approach is to single-step until control leaves the
174 dynamic linker.
175
176 However, on some systems (e.g., Red Hat Linux 5.2) the dynamic
177 linker calls functions in the shared C library, so you can't tell
178 from the PC alone whether the dynamic linker is still running. In
179 this case, we use a step-resume breakpoint to get us past the
180 dynamic linker, as if we were using "next" to step over a function
181 call.
182
183 IN_SOLIB_DYNSYM_RESOLVE_CODE says whether we're in the dynamic
184 linker code or not. Normally, this means we single-step. However,
185 if SKIP_SOLIB_RESOLVER then returns non-zero, then its value is an
186 address where we can place a step-resume breakpoint to get past the
187 linker's symbol resolution function.
188
189 IN_SOLIB_DYNSYM_RESOLVE_CODE can generally be implemented in a
190 pretty portable way, by comparing the PC against the address ranges
191 of the dynamic linker's sections.
192
193 SKIP_SOLIB_RESOLVER is generally going to be system-specific, since
194 it depends on internal details of the dynamic linker. It's usually
195 not too hard to figure out where to put a breakpoint, but it
196 certainly isn't portable. SKIP_SOLIB_RESOLVER should do plenty of
197 sanity checking. If it can't figure things out, returning zero and
198 getting the (possibly confusing) stepping behavior is better than
199 signalling an error, which will obscure the change in the
200 inferior's state. */
c906108c
SS
201
202#ifndef IN_SOLIB_DYNSYM_RESOLVE_CODE
203#define IN_SOLIB_DYNSYM_RESOLVE_CODE(pc) 0
204#endif
205
d4f3574e
SS
206#ifndef SKIP_SOLIB_RESOLVER
207#define SKIP_SOLIB_RESOLVER(pc) 0
208#endif
209
c906108c
SS
210/* For SVR4 shared libraries, each call goes through a small piece of
211 trampoline code in the ".plt" section. IN_SOLIB_CALL_TRAMPOLINE evaluates
212 to nonzero if we are current stopped in one of these. */
213
214#ifndef IN_SOLIB_CALL_TRAMPOLINE
215#define IN_SOLIB_CALL_TRAMPOLINE(pc,name) 0
216#endif
217
218/* In some shared library schemes, the return path from a shared library
219 call may need to go through a trampoline too. */
220
221#ifndef IN_SOLIB_RETURN_TRAMPOLINE
222#define IN_SOLIB_RETURN_TRAMPOLINE(pc,name) 0
223#endif
224
225/* This function returns TRUE if pc is the address of an instruction
226 that lies within the dynamic linker (such as the event hook, or the
227 dld itself).
228
229 This function must be used only when a dynamic linker event has
230 been caught, and the inferior is being stepped out of the hook, or
231 undefined results are guaranteed. */
232
233#ifndef SOLIB_IN_DYNAMIC_LINKER
234#define SOLIB_IN_DYNAMIC_LINKER(pid,pc) 0
235#endif
236
237/* On MIPS16, a function that returns a floating point value may call
238 a library helper function to copy the return value to a floating point
239 register. The IGNORE_HELPER_CALL macro returns non-zero if we
240 should ignore (i.e. step over) this function call. */
241#ifndef IGNORE_HELPER_CALL
242#define IGNORE_HELPER_CALL(pc) 0
243#endif
244
245/* On some systems, the PC may be left pointing at an instruction that won't
246 actually be executed. This is usually indicated by a bit in the PSW. If
247 we find ourselves in such a state, then we step the target beyond the
248 nullified instruction before returning control to the user so as to avoid
249 confusion. */
250
251#ifndef INSTRUCTION_NULLIFIED
252#define INSTRUCTION_NULLIFIED 0
253#endif
254
c2c6d25f
JM
255/* We can't step off a permanent breakpoint in the ordinary way, because we
256 can't remove it. Instead, we have to advance the PC to the next
257 instruction. This macro should expand to a pointer to a function that
258 does that, or zero if we have no such function. If we don't have a
259 definition for it, we have to report an error. */
260#ifndef SKIP_PERMANENT_BREAKPOINT
261#define SKIP_PERMANENT_BREAKPOINT (default_skip_permanent_breakpoint)
262static void
c2d11a7d 263default_skip_permanent_breakpoint (void)
c2c6d25f
JM
264{
265 error_begin ();
266 fprintf_filtered (gdb_stderr, "\
267The program is stopped at a permanent breakpoint, but GDB does not know\n\
268how to step past a permanent breakpoint on this architecture. Try using\n\
269a command like `return' or `jump' to continue execution.\n");
270 return_to_top_level (RETURN_ERROR);
271}
272#endif
273
274
7a292a7a
SS
275/* Convert the #defines into values. This is temporary until wfi control
276 flow is completely sorted out. */
277
278#ifndef HAVE_STEPPABLE_WATCHPOINT
279#define HAVE_STEPPABLE_WATCHPOINT 0
280#else
281#undef HAVE_STEPPABLE_WATCHPOINT
282#define HAVE_STEPPABLE_WATCHPOINT 1
283#endif
284
285#ifndef HAVE_NONSTEPPABLE_WATCHPOINT
286#define HAVE_NONSTEPPABLE_WATCHPOINT 0
287#else
288#undef HAVE_NONSTEPPABLE_WATCHPOINT
289#define HAVE_NONSTEPPABLE_WATCHPOINT 1
290#endif
291
292#ifndef HAVE_CONTINUABLE_WATCHPOINT
293#define HAVE_CONTINUABLE_WATCHPOINT 0
294#else
295#undef HAVE_CONTINUABLE_WATCHPOINT
296#define HAVE_CONTINUABLE_WATCHPOINT 1
297#endif
298
692590c1
MS
299#ifndef CANNOT_STEP_HW_WATCHPOINTS
300#define CANNOT_STEP_HW_WATCHPOINTS 0
301#else
302#undef CANNOT_STEP_HW_WATCHPOINTS
303#define CANNOT_STEP_HW_WATCHPOINTS 1
304#endif
305
c906108c
SS
306/* Tables of how to react to signals; the user sets them. */
307
308static unsigned char *signal_stop;
309static unsigned char *signal_print;
310static unsigned char *signal_program;
311
312#define SET_SIGS(nsigs,sigs,flags) \
313 do { \
314 int signum = (nsigs); \
315 while (signum-- > 0) \
316 if ((sigs)[signum]) \
317 (flags)[signum] = 1; \
318 } while (0)
319
320#define UNSET_SIGS(nsigs,sigs,flags) \
321 do { \
322 int signum = (nsigs); \
323 while (signum-- > 0) \
324 if ((sigs)[signum]) \
325 (flags)[signum] = 0; \
326 } while (0)
327
328
329/* Command list pointer for the "stop" placeholder. */
330
331static struct cmd_list_element *stop_command;
332
333/* Nonzero if breakpoints are now inserted in the inferior. */
334
335static int breakpoints_inserted;
336
337/* Function inferior was in as of last step command. */
338
339static struct symbol *step_start_function;
340
341/* Nonzero if we are expecting a trace trap and should proceed from it. */
342
343static int trap_expected;
344
345#ifdef SOLIB_ADD
346/* Nonzero if we want to give control to the user when we're notified
347 of shared library events by the dynamic linker. */
348static int stop_on_solib_events;
349#endif
350
351#ifdef HP_OS_BUG
352/* Nonzero if the next time we try to continue the inferior, it will
353 step one instruction and generate a spurious trace trap.
354 This is used to compensate for a bug in HP-UX. */
355
356static int trap_expected_after_continue;
357#endif
358
359/* Nonzero means expecting a trace trap
360 and should stop the inferior and return silently when it happens. */
361
362int stop_after_trap;
363
364/* Nonzero means expecting a trap and caller will handle it themselves.
365 It is used after attach, due to attaching to a process;
366 when running in the shell before the child program has been exec'd;
367 and when running some kinds of remote stuff (FIXME?). */
368
369int stop_soon_quietly;
370
371/* Nonzero if proceed is being used for a "finish" command or a similar
372 situation when stop_registers should be saved. */
373
374int proceed_to_finish;
375
376/* Save register contents here when about to pop a stack dummy frame,
377 if-and-only-if proceed_to_finish is set.
378 Thus this contains the return value from the called function (assuming
379 values are returned in a register). */
380
7a292a7a 381char *stop_registers;
c906108c
SS
382
383/* Nonzero if program stopped due to error trying to insert breakpoints. */
384
385static int breakpoints_failed;
386
387/* Nonzero after stop if current stack frame should be printed. */
388
389static int stop_print_frame;
390
391static struct breakpoint *step_resume_breakpoint = NULL;
392static struct breakpoint *through_sigtramp_breakpoint = NULL;
393
394/* On some platforms (e.g., HP-UX), hardware watchpoints have bad
395 interactions with an inferior that is running a kernel function
396 (aka, a system call or "syscall"). wait_for_inferior therefore
397 may have a need to know when the inferior is in a syscall. This
398 is a count of the number of inferior threads which are known to
399 currently be running in a syscall. */
400static int number_of_threads_in_syscalls;
401
402/* This is used to remember when a fork, vfork or exec event
403 was caught by a catchpoint, and thus the event is to be
404 followed at the next resume of the inferior, and not
405 immediately. */
406static struct
407 {
408 enum target_waitkind kind;
409 struct
410 {
411 int parent_pid;
412 int saw_parent_fork;
413 int child_pid;
414 int saw_child_fork;
415 int saw_child_exec;
416 }
417 fork_event;
418 char *execd_pathname;
419 }
420pending_follow;
421
422/* Some platforms don't allow us to do anything meaningful with a
423 vforked child until it has exec'd. Vforked processes on such
424 platforms can only be followed after they've exec'd.
425
426 When this is set to 0, a vfork can be immediately followed,
427 and an exec can be followed merely as an exec. When this is
428 set to 1, a vfork event has been seen, but cannot be followed
429 until the exec is seen.
430
431 (In the latter case, inferior_pid is still the parent of the
432 vfork, and pending_follow.fork_event.child_pid is the child. The
433 appropriate process is followed, according to the setting of
434 follow-fork-mode.) */
435static int follow_vfork_when_exec;
436
437static char *follow_fork_mode_kind_names[] =
438{
ef346e04
AC
439 /* ??rehrauer: The "both" option is broken, by what may be a 10.20
440 kernel problem. It's also not terribly useful without a GUI to
441 help the user drive two debuggers. So for now, I'm disabling the
442 "both" option. */
443 /* "parent", "child", "both", "ask" */
444 "parent", "child", "ask", NULL
445};
c906108c
SS
446
447static char *follow_fork_mode_string = NULL;
448\f
449
c906108c 450static void
96baa820
JM
451follow_inferior_fork (int parent_pid, int child_pid, int has_forked,
452 int has_vforked)
c906108c
SS
453{
454 int followed_parent = 0;
455 int followed_child = 0;
c906108c
SS
456
457 /* Which process did the user want us to follow? */
458 char *follow_mode =
96baa820 459 savestring (follow_fork_mode_string, strlen (follow_fork_mode_string));
c906108c
SS
460
461 /* Or, did the user not know, and want us to ask? */
462 if (STREQ (follow_fork_mode_string, "ask"))
463 {
464 char requested_mode[100];
465
466 free (follow_mode);
467 error ("\"ask\" mode NYI");
468 follow_mode = savestring (requested_mode, strlen (requested_mode));
469 }
470
471 /* If we're to be following the parent, then detach from child_pid.
472 We're already following the parent, so need do nothing explicit
473 for it. */
474 if (STREQ (follow_mode, "parent"))
475 {
476 followed_parent = 1;
477
478 /* We're already attached to the parent, by default. */
479
480 /* Before detaching from the child, remove all breakpoints from
481 it. (This won't actually modify the breakpoint list, but will
482 physically remove the breakpoints from the child.) */
483 if (!has_vforked || !follow_vfork_when_exec)
484 {
485 detach_breakpoints (child_pid);
7a292a7a 486#ifdef SOLIB_REMOVE_INFERIOR_HOOK
c906108c 487 SOLIB_REMOVE_INFERIOR_HOOK (child_pid);
7a292a7a 488#endif
c906108c
SS
489 }
490
491 /* Detach from the child. */
492 dont_repeat ();
493
494 target_require_detach (child_pid, "", 1);
495 }
496
497 /* If we're to be following the child, then attach to it, detach
498 from inferior_pid, and set inferior_pid to child_pid. */
499 else if (STREQ (follow_mode, "child"))
500 {
501 char child_pid_spelling[100]; /* Arbitrary length. */
502
503 followed_child = 1;
504
505 /* Before detaching from the parent, detach all breakpoints from
506 the child. But only if we're forking, or if we follow vforks
507 as soon as they happen. (If we're following vforks only when
508 the child has exec'd, then it's very wrong to try to write
509 back the "shadow contents" of inserted breakpoints now -- they
510 belong to the child's pre-exec'd a.out.) */
511 if (!has_vforked || !follow_vfork_when_exec)
512 {
513 detach_breakpoints (child_pid);
514 }
515
516 /* Before detaching from the parent, remove all breakpoints from it. */
517 remove_breakpoints ();
518
519 /* Also reset the solib inferior hook from the parent. */
7a292a7a 520#ifdef SOLIB_REMOVE_INFERIOR_HOOK
c906108c 521 SOLIB_REMOVE_INFERIOR_HOOK (inferior_pid);
7a292a7a 522#endif
c906108c
SS
523
524 /* Detach from the parent. */
525 dont_repeat ();
526 target_detach (NULL, 1);
527
528 /* Attach to the child. */
529 inferior_pid = child_pid;
530 sprintf (child_pid_spelling, "%d", child_pid);
531 dont_repeat ();
532
533 target_require_attach (child_pid_spelling, 1);
534
535 /* Was there a step_resume breakpoint? (There was if the user
536 did a "next" at the fork() call.) If so, explicitly reset its
537 thread number.
538
539 step_resumes are a form of bp that are made to be per-thread.
540 Since we created the step_resume bp when the parent process
541 was being debugged, and now are switching to the child process,
542 from the breakpoint package's viewpoint, that's a switch of
543 "threads". We must update the bp's notion of which thread
544 it is for, or it'll be ignored when it triggers... */
545 if (step_resume_breakpoint &&
546 (!has_vforked || !follow_vfork_when_exec))
547 breakpoint_re_set_thread (step_resume_breakpoint);
548
549 /* Reinsert all breakpoints in the child. (The user may've set
550 breakpoints after catching the fork, in which case those
551 actually didn't get set in the child, but only in the parent.) */
552 if (!has_vforked || !follow_vfork_when_exec)
553 {
554 breakpoint_re_set ();
555 insert_breakpoints ();
556 }
557 }
558
559 /* If we're to be following both parent and child, then fork ourselves,
560 and attach the debugger clone to the child. */
561 else if (STREQ (follow_mode, "both"))
562 {
563 char pid_suffix[100]; /* Arbitrary length. */
564
565 /* Clone ourselves to follow the child. This is the end of our
c5aa993b 566 involvement with child_pid; our clone will take it from here... */
c906108c
SS
567 dont_repeat ();
568 target_clone_and_follow_inferior (child_pid, &followed_child);
569 followed_parent = !followed_child;
570
571 /* We continue to follow the parent. To help distinguish the two
572 debuggers, though, both we and our clone will reset our prompts. */
573 sprintf (pid_suffix, "[%d] ", inferior_pid);
574 set_prompt (strcat (get_prompt (), pid_suffix));
575 }
576
577 /* The parent and child of a vfork share the same address space.
578 Also, on some targets the order in which vfork and exec events
579 are received for parent in child requires some delicate handling
580 of the events.
581
582 For instance, on ptrace-based HPUX we receive the child's vfork
583 event first, at which time the parent has been suspended by the
584 OS and is essentially untouchable until the child's exit or second
585 exec event arrives. At that time, the parent's vfork event is
586 delivered to us, and that's when we see and decide how to follow
587 the vfork. But to get to that point, we must continue the child
588 until it execs or exits. To do that smoothly, all breakpoints
589 must be removed from the child, in case there are any set between
590 the vfork() and exec() calls. But removing them from the child
591 also removes them from the parent, due to the shared-address-space
592 nature of a vfork'd parent and child. On HPUX, therefore, we must
593 take care to restore the bp's to the parent before we continue it.
594 Else, it's likely that we may not stop in the expected place. (The
595 worst scenario is when the user tries to step over a vfork() call;
596 the step-resume bp must be restored for the step to properly stop
597 in the parent after the call completes!)
598
599 Sequence of events, as reported to gdb from HPUX:
600
c5aa993b
JM
601 Parent Child Action for gdb to take
602 -------------------------------------------------------
603 1 VFORK Continue child
604 2 EXEC
605 3 EXEC or EXIT
606 4 VFORK */
c906108c
SS
607 if (has_vforked)
608 {
609 target_post_follow_vfork (parent_pid,
610 followed_parent,
611 child_pid,
612 followed_child);
613 }
614
615 pending_follow.fork_event.saw_parent_fork = 0;
616 pending_follow.fork_event.saw_child_fork = 0;
617
618 free (follow_mode);
619}
620
621static void
96baa820 622follow_fork (int parent_pid, int child_pid)
c906108c
SS
623{
624 follow_inferior_fork (parent_pid, child_pid, 1, 0);
625}
626
627
628/* Forward declaration. */
96baa820 629static void follow_exec (int, char *);
c906108c
SS
630
631static void
96baa820 632follow_vfork (int parent_pid, int child_pid)
c906108c
SS
633{
634 follow_inferior_fork (parent_pid, child_pid, 0, 1);
635
636 /* Did we follow the child? Had it exec'd before we saw the parent vfork? */
637 if (pending_follow.fork_event.saw_child_exec && (inferior_pid == child_pid))
638 {
639 pending_follow.fork_event.saw_child_exec = 0;
640 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
641 follow_exec (inferior_pid, pending_follow.execd_pathname);
642 free (pending_follow.execd_pathname);
643 }
644}
c906108c
SS
645
646static void
96baa820 647follow_exec (int pid, char *execd_pathname)
c906108c 648{
c906108c 649 int saved_pid = pid;
7a292a7a
SS
650 struct target_ops *tgt;
651
652 if (!may_follow_exec)
653 return;
c906108c
SS
654
655 /* Did this exec() follow a vfork()? If so, we must follow the
656 vfork now too. Do it before following the exec. */
657 if (follow_vfork_when_exec &&
658 (pending_follow.kind == TARGET_WAITKIND_VFORKED))
659 {
660 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
661 follow_vfork (inferior_pid, pending_follow.fork_event.child_pid);
662 follow_vfork_when_exec = 0;
663 saved_pid = inferior_pid;
664
665 /* Did we follow the parent? If so, we're done. If we followed
666 the child then we must also follow its exec(). */
667 if (inferior_pid == pending_follow.fork_event.parent_pid)
668 return;
669 }
670
671 /* This is an exec event that we actually wish to pay attention to.
672 Refresh our symbol table to the newly exec'd program, remove any
673 momentary bp's, etc.
674
675 If there are breakpoints, they aren't really inserted now,
676 since the exec() transformed our inferior into a fresh set
677 of instructions.
678
679 We want to preserve symbolic breakpoints on the list, since
680 we have hopes that they can be reset after the new a.out's
681 symbol table is read.
682
683 However, any "raw" breakpoints must be removed from the list
684 (e.g., the solib bp's), since their address is probably invalid
685 now.
686
687 And, we DON'T want to call delete_breakpoints() here, since
688 that may write the bp's "shadow contents" (the instruction
689 value that was overwritten witha TRAP instruction). Since
690 we now have a new a.out, those shadow contents aren't valid. */
691 update_breakpoints_after_exec ();
692
693 /* If there was one, it's gone now. We cannot truly step-to-next
694 statement through an exec(). */
695 step_resume_breakpoint = NULL;
696 step_range_start = 0;
697 step_range_end = 0;
698
699 /* If there was one, it's gone now. */
700 through_sigtramp_breakpoint = NULL;
701
702 /* What is this a.out's name? */
703 printf_unfiltered ("Executing new program: %s\n", execd_pathname);
704
705 /* We've followed the inferior through an exec. Therefore, the
706 inferior has essentially been killed & reborn. */
7a292a7a
SS
707
708 /* First collect the run target in effect. */
709 tgt = find_run_target ();
710 /* If we can't find one, things are in a very strange state... */
711 if (tgt == NULL)
712 error ("Could find run target to save before following exec");
713
c906108c
SS
714 gdb_flush (gdb_stdout);
715 target_mourn_inferior ();
c5aa993b 716 inferior_pid = saved_pid; /* Because mourn_inferior resets inferior_pid. */
7a292a7a 717 push_target (tgt);
c906108c
SS
718
719 /* That a.out is now the one to use. */
720 exec_file_attach (execd_pathname, 0);
721
722 /* And also is where symbols can be found. */
723 symbol_file_command (execd_pathname, 0);
724
725 /* Reset the shared library package. This ensures that we get
726 a shlib event when the child reaches "_start", at which point
727 the dld will have had a chance to initialize the child. */
7a292a7a 728#if defined(SOLIB_RESTART)
c906108c 729 SOLIB_RESTART ();
7a292a7a
SS
730#endif
731#ifdef SOLIB_CREATE_INFERIOR_HOOK
c906108c 732 SOLIB_CREATE_INFERIOR_HOOK (inferior_pid);
7a292a7a 733#endif
c906108c
SS
734
735 /* Reinsert all breakpoints. (Those which were symbolic have
736 been reset to the proper address in the new a.out, thanks
737 to symbol_file_command...) */
738 insert_breakpoints ();
739
740 /* The next resume of this inferior should bring it to the shlib
741 startup breakpoints. (If the user had also set bp's on
742 "main" from the old (parent) process, then they'll auto-
743 matically get reset there in the new process.) */
c906108c
SS
744}
745
746/* Non-zero if we just simulating a single-step. This is needed
747 because we cannot remove the breakpoints in the inferior process
748 until after the `wait' in `wait_for_inferior'. */
749static int singlestep_breakpoints_inserted_p = 0;
750\f
751
752/* Things to clean up if we QUIT out of resume (). */
753/* ARGSUSED */
754static void
96baa820 755resume_cleanups (int arg)
c906108c
SS
756{
757 normal_stop ();
758}
759
760static char schedlock_off[] = "off";
761static char schedlock_on[] = "on";
762static char schedlock_step[] = "step";
763static char *scheduler_mode = schedlock_off;
764static char *scheduler_enums[] =
ef346e04
AC
765{
766 schedlock_off,
767 schedlock_on,
768 schedlock_step,
769 NULL
770};
c906108c
SS
771
772static void
96baa820 773set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
c906108c
SS
774{
775 if (c->type == set_cmd)
776 if (!target_can_lock_scheduler)
777 {
778 scheduler_mode = schedlock_off;
779 error ("Target '%s' cannot support this command.",
780 target_shortname);
781 }
782}
783
784
c2c6d25f
JM
785
786
c906108c
SS
787/* Resume the inferior, but allow a QUIT. This is useful if the user
788 wants to interrupt some lengthy single-stepping operation
789 (for child processes, the SIGINT goes to the inferior, and so
790 we get a SIGINT random_signal, but for remote debugging and perhaps
791 other targets, that's not true).
792
793 STEP nonzero if we should step (zero to continue instead).
794 SIG is the signal to give the inferior (zero for none). */
795void
96baa820 796resume (int step, enum target_signal sig)
c906108c
SS
797{
798 int should_resume = 1;
799 struct cleanup *old_cleanups = make_cleanup ((make_cleanup_func)
800 resume_cleanups, 0);
801 QUIT;
802
803#ifdef CANNOT_STEP_BREAKPOINT
804 /* Most targets can step a breakpoint instruction, thus executing it
805 normally. But if this one cannot, just continue and we will hit
806 it anyway. */
807 if (step && breakpoints_inserted && breakpoint_here_p (read_pc ()))
808 step = 0;
809#endif
810
692590c1
MS
811 /* Some targets (e.g. Solaris x86) have a kernel bug when stepping
812 over an instruction that causes a page fault without triggering
813 a hardware watchpoint. The kernel properly notices that it shouldn't
814 stop, because the hardware watchpoint is not triggered, but it forgets
815 the step request and continues the program normally.
816 Work around the problem by removing hardware watchpoints if a step is
817 requested, GDB will check for a hardware watchpoint trigger after the
818 step anyway. */
819 if (CANNOT_STEP_HW_WATCHPOINTS && step && breakpoints_inserted)
820 remove_hw_watchpoints ();
821
822
c2c6d25f
JM
823 /* Normally, by the time we reach `resume', the breakpoints are either
824 removed or inserted, as appropriate. The exception is if we're sitting
825 at a permanent breakpoint; we need to step over it, but permanent
826 breakpoints can't be removed. So we have to test for it here. */
827 if (breakpoint_here_p (read_pc ()) == permanent_breakpoint_here)
828 SKIP_PERMANENT_BREAKPOINT ();
829
c906108c
SS
830 if (SOFTWARE_SINGLE_STEP_P && step)
831 {
832 /* Do it the hard way, w/temp breakpoints */
c5aa993b 833 SOFTWARE_SINGLE_STEP (sig, 1 /*insert-breakpoints */ );
c906108c
SS
834 /* ...and don't ask hardware to do it. */
835 step = 0;
836 /* and do not pull these breakpoints until after a `wait' in
837 `wait_for_inferior' */
838 singlestep_breakpoints_inserted_p = 1;
839 }
840
841 /* Handle any optimized stores to the inferior NOW... */
842#ifdef DO_DEFERRED_STORES
843 DO_DEFERRED_STORES;
844#endif
845
c906108c
SS
846 /* If there were any forks/vforks/execs that were caught and are
847 now to be followed, then do so. */
848 switch (pending_follow.kind)
849 {
850 case (TARGET_WAITKIND_FORKED):
851 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
852 follow_fork (inferior_pid, pending_follow.fork_event.child_pid);
853 break;
854
855 case (TARGET_WAITKIND_VFORKED):
856 {
857 int saw_child_exec = pending_follow.fork_event.saw_child_exec;
858
859 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
860 follow_vfork (inferior_pid, pending_follow.fork_event.child_pid);
861
862 /* Did we follow the child, but not yet see the child's exec event?
c5aa993b
JM
863 If so, then it actually ought to be waiting for us; we respond to
864 parent vfork events. We don't actually want to resume the child
865 in this situation; we want to just get its exec event. */
c906108c
SS
866 if (!saw_child_exec &&
867 (inferior_pid == pending_follow.fork_event.child_pid))
868 should_resume = 0;
869 }
870 break;
871
872 case (TARGET_WAITKIND_EXECD):
873 /* If we saw a vfork event but couldn't follow it until we saw
c5aa993b 874 an exec, then now might be the time! */
c906108c
SS
875 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
876 /* follow_exec is called as soon as the exec event is seen. */
877 break;
878
879 default:
880 break;
881 }
c906108c
SS
882
883 /* Install inferior's terminal modes. */
884 target_terminal_inferior ();
885
886 if (should_resume)
887 {
dfcd3bfb
JM
888 int resume_pid;
889
7a292a7a 890 if (use_thread_step_needed && thread_step_needed)
c906108c
SS
891 {
892 /* We stopped on a BPT instruction;
893 don't continue other threads and
894 just step this thread. */
895 thread_step_needed = 0;
896
897 if (!breakpoint_here_p (read_pc ()))
898 {
899 /* Breakpoint deleted: ok to do regular resume
c5aa993b 900 where all the threads either step or continue. */
dfcd3bfb 901 resume_pid = -1;
c906108c
SS
902 }
903 else
904 {
905 if (!step)
906 {
907 warning ("Internal error, changing continue to step.");
908 remove_breakpoints ();
909 breakpoints_inserted = 0;
910 trap_expected = 1;
911 step = 1;
912 }
dfcd3bfb 913 resume_pid = inferior_pid;
c906108c
SS
914 }
915 }
916 else
c906108c
SS
917 {
918 /* Vanilla resume. */
c906108c
SS
919 if ((scheduler_mode == schedlock_on) ||
920 (scheduler_mode == schedlock_step && step != 0))
dfcd3bfb 921 resume_pid = inferior_pid;
c906108c 922 else
dfcd3bfb 923 resume_pid = -1;
c906108c 924 }
dfcd3bfb 925 target_resume (resume_pid, step, sig);
c906108c
SS
926 }
927
928 discard_cleanups (old_cleanups);
929}
930\f
931
932/* Clear out all variables saying what to do when inferior is continued.
933 First do this, then set the ones you want, then call `proceed'. */
934
935void
96baa820 936clear_proceed_status (void)
c906108c
SS
937{
938 trap_expected = 0;
939 step_range_start = 0;
940 step_range_end = 0;
941 step_frame_address = 0;
942 step_over_calls = -1;
943 stop_after_trap = 0;
944 stop_soon_quietly = 0;
945 proceed_to_finish = 0;
946 breakpoint_proceeded = 1; /* We're about to proceed... */
947
948 /* Discard any remaining commands or status from previous stop. */
949 bpstat_clear (&stop_bpstat);
950}
951
952/* Basic routine for continuing the program in various fashions.
953
954 ADDR is the address to resume at, or -1 for resume where stopped.
955 SIGGNAL is the signal to give it, or 0 for none,
c5aa993b 956 or -1 for act according to how it stopped.
c906108c 957 STEP is nonzero if should trap after one instruction.
c5aa993b
JM
958 -1 means return after that and print nothing.
959 You should probably set various step_... variables
960 before calling here, if you are stepping.
c906108c
SS
961
962 You should call clear_proceed_status before calling proceed. */
963
964void
96baa820 965proceed (CORE_ADDR addr, enum target_signal siggnal, int step)
c906108c
SS
966{
967 int oneproc = 0;
968
969 if (step > 0)
970 step_start_function = find_pc_function (read_pc ());
971 if (step < 0)
972 stop_after_trap = 1;
973
2acceee2 974 if (addr == (CORE_ADDR) -1)
c906108c
SS
975 {
976 /* If there is a breakpoint at the address we will resume at,
c5aa993b
JM
977 step one instruction before inserting breakpoints
978 so that we do not stop right away (and report a second
c906108c
SS
979 hit at this breakpoint). */
980
981 if (read_pc () == stop_pc && breakpoint_here_p (read_pc ()))
982 oneproc = 1;
983
984#ifndef STEP_SKIPS_DELAY
985#define STEP_SKIPS_DELAY(pc) (0)
986#define STEP_SKIPS_DELAY_P (0)
987#endif
988 /* Check breakpoint_here_p first, because breakpoint_here_p is fast
c5aa993b
JM
989 (it just checks internal GDB data structures) and STEP_SKIPS_DELAY
990 is slow (it needs to read memory from the target). */
c906108c
SS
991 if (STEP_SKIPS_DELAY_P
992 && breakpoint_here_p (read_pc () + 4)
993 && STEP_SKIPS_DELAY (read_pc ()))
994 oneproc = 1;
995 }
996 else
997 {
998 write_pc (addr);
999
1000 /* New address; we don't need to single-step a thread
c5aa993b
JM
1001 over a breakpoint we just hit, 'cause we aren't
1002 continuing from there.
c906108c 1003
c5aa993b
JM
1004 It's not worth worrying about the case where a user
1005 asks for a "jump" at the current PC--if they get the
1006 hiccup of re-hiting a hit breakpoint, what else do
1007 they expect? */
c906108c
SS
1008 thread_step_needed = 0;
1009 }
1010
1011#ifdef PREPARE_TO_PROCEED
1012 /* In a multi-threaded task we may select another thread
1013 and then continue or step.
1014
1015 But if the old thread was stopped at a breakpoint, it
1016 will immediately cause another breakpoint stop without
1017 any execution (i.e. it will report a breakpoint hit
1018 incorrectly). So we must step over it first.
1019
1020 PREPARE_TO_PROCEED checks the current thread against the thread
1021 that reported the most recent event. If a step-over is required
1022 it returns TRUE and sets the current thread to the old thread. */
9e086581 1023 if (PREPARE_TO_PROCEED (1) && breakpoint_here_p (read_pc ()))
c906108c
SS
1024 {
1025 oneproc = 1;
1026 thread_step_needed = 1;
1027 }
1028
1029#endif /* PREPARE_TO_PROCEED */
1030
1031#ifdef HP_OS_BUG
1032 if (trap_expected_after_continue)
1033 {
1034 /* If (step == 0), a trap will be automatically generated after
c5aa993b
JM
1035 the first instruction is executed. Force step one
1036 instruction to clear this condition. This should not occur
1037 if step is nonzero, but it is harmless in that case. */
c906108c
SS
1038 oneproc = 1;
1039 trap_expected_after_continue = 0;
1040 }
1041#endif /* HP_OS_BUG */
1042
1043 if (oneproc)
1044 /* We will get a trace trap after one instruction.
1045 Continue it automatically and insert breakpoints then. */
1046 trap_expected = 1;
1047 else
1048 {
1049 int temp = insert_breakpoints ();
1050 if (temp)
1051 {
010a3cd9 1052 print_sys_errmsg ("insert_breakpoints", temp);
c906108c 1053 error ("Cannot insert breakpoints.\n\
010a3cd9
EZ
1054The same program may be running in another process,\n\
1055or you may have requested too many hardware\n\
1056breakpoints and/or watchpoints.\n");
c906108c
SS
1057 }
1058
1059 breakpoints_inserted = 1;
1060 }
1061
1062 if (siggnal != TARGET_SIGNAL_DEFAULT)
1063 stop_signal = siggnal;
1064 /* If this signal should not be seen by program,
1065 give it zero. Used for debugging signals. */
1066 else if (!signal_program[stop_signal])
1067 stop_signal = TARGET_SIGNAL_0;
1068
1069 annotate_starting ();
1070
1071 /* Make sure that output from GDB appears before output from the
1072 inferior. */
1073 gdb_flush (gdb_stdout);
1074
1075 /* Resume inferior. */
1076 resume (oneproc || step || bpstat_should_step (), stop_signal);
1077
1078 /* Wait for it to stop (if not standalone)
1079 and in any case decode why it stopped, and act accordingly. */
43ff13b4
JM
1080 /* Do this only if we are not using the event loop, or if the target
1081 does not support asynchronous execution. */
6426a772 1082 if (!event_loop_p || !target_can_async_p ())
43ff13b4
JM
1083 {
1084 wait_for_inferior ();
1085 normal_stop ();
1086 }
c906108c
SS
1087}
1088
1089/* Record the pc and sp of the program the last time it stopped.
1090 These are just used internally by wait_for_inferior, but need
1091 to be preserved over calls to it and cleared when the inferior
1092 is started. */
1093static CORE_ADDR prev_pc;
1094static CORE_ADDR prev_func_start;
1095static char *prev_func_name;
1096\f
1097
1098/* Start remote-debugging of a machine over a serial link. */
96baa820 1099
c906108c 1100void
96baa820 1101start_remote (void)
c906108c
SS
1102{
1103 init_thread_list ();
1104 init_wait_for_inferior ();
1105 stop_soon_quietly = 1;
1106 trap_expected = 0;
43ff13b4 1107
6426a772
JM
1108 /* Always go on waiting for the target, regardless of the mode. */
1109 /* FIXME: cagney/1999-09-23: At present it isn't possible to
1110 indicate th wait_for_inferior that a target should timeout if
1111 nothing is returned (instead of just blocking). Because of this,
1112 targets expecting an immediate response need to, internally, set
1113 things up so that the target_wait() is forced to eventually
1114 timeout. */
1115 /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
1116 differentiate to its caller what the state of the target is after
1117 the initial open has been performed. Here we're assuming that
1118 the target has stopped. It should be possible to eventually have
1119 target_open() return to the caller an indication that the target
1120 is currently running and GDB state should be set to the same as
1121 for an async run. */
1122 wait_for_inferior ();
1123 normal_stop ();
c906108c
SS
1124}
1125
1126/* Initialize static vars when a new inferior begins. */
1127
1128void
96baa820 1129init_wait_for_inferior (void)
c906108c
SS
1130{
1131 /* These are meaningless until the first time through wait_for_inferior. */
1132 prev_pc = 0;
1133 prev_func_start = 0;
1134 prev_func_name = NULL;
1135
1136#ifdef HP_OS_BUG
1137 trap_expected_after_continue = 0;
1138#endif
1139 breakpoints_inserted = 0;
1140 breakpoint_init_inferior (inf_starting);
1141
1142 /* Don't confuse first call to proceed(). */
1143 stop_signal = TARGET_SIGNAL_0;
1144
1145 /* The first resume is not following a fork/vfork/exec. */
1146 pending_follow.kind = TARGET_WAITKIND_SPURIOUS; /* I.e., none. */
1147 pending_follow.fork_event.saw_parent_fork = 0;
1148 pending_follow.fork_event.saw_child_fork = 0;
1149 pending_follow.fork_event.saw_child_exec = 0;
1150
1151 /* See wait_for_inferior's handling of SYSCALL_ENTRY/RETURN events. */
1152 number_of_threads_in_syscalls = 0;
1153
1154 clear_proceed_status ();
1155}
1156
1157static void
96baa820 1158delete_breakpoint_current_contents (void *arg)
c906108c
SS
1159{
1160 struct breakpoint **breakpointp = (struct breakpoint **) arg;
1161 if (*breakpointp != NULL)
1162 {
1163 delete_breakpoint (*breakpointp);
1164 *breakpointp = NULL;
1165 }
1166}
1167\f
b83266a0
SS
1168/* This enum encodes possible reasons for doing a target_wait, so that
1169 wfi can call target_wait in one place. (Ultimately the call will be
1170 moved out of the infinite loop entirely.) */
1171
c5aa993b
JM
1172enum infwait_states
1173{
cd0fc7c3
SS
1174 infwait_normal_state,
1175 infwait_thread_hop_state,
1176 infwait_nullified_state,
1177 infwait_nonstep_watch_state
b83266a0
SS
1178};
1179
11cf8741
JM
1180/* Why did the inferior stop? Used to print the appropriate messages
1181 to the interface from within handle_inferior_event(). */
1182enum inferior_stop_reason
1183{
1184 /* We don't know why. */
1185 STOP_UNKNOWN,
1186 /* Step, next, nexti, stepi finished. */
1187 END_STEPPING_RANGE,
1188 /* Found breakpoint. */
1189 BREAKPOINT_HIT,
1190 /* Inferior terminated by signal. */
1191 SIGNAL_EXITED,
1192 /* Inferior exited. */
1193 EXITED,
1194 /* Inferior received signal, and user asked to be notified. */
1195 SIGNAL_RECEIVED
1196};
1197
cd0fc7c3
SS
1198/* This structure contains what used to be local variables in
1199 wait_for_inferior. Probably many of them can return to being
1200 locals in handle_inferior_event. */
1201
c5aa993b
JM
1202struct execution_control_state
1203 {
1204 struct target_waitstatus ws;
1205 struct target_waitstatus *wp;
1206 int another_trap;
1207 int random_signal;
1208 CORE_ADDR stop_func_start;
1209 CORE_ADDR stop_func_end;
1210 char *stop_func_name;
1211 struct symtab_and_line sal;
1212 int remove_breakpoints_on_following_step;
1213 int current_line;
1214 struct symtab *current_symtab;
1215 int handling_longjmp; /* FIXME */
1216 int pid;
1217 int saved_inferior_pid;
1218 int update_step_sp;
1219 int stepping_through_solib_after_catch;
1220 bpstat stepping_through_solib_catchpoints;
1221 int enable_hw_watchpoints_after_wait;
1222 int stepping_through_sigtramp;
1223 int new_thread_event;
1224 struct target_waitstatus tmpstatus;
1225 enum infwait_states infwait_state;
1226 int waiton_pid;
1227 int wait_some_more;
1228 };
1229
96baa820 1230void init_execution_control_state (struct execution_control_state * ecs);
c5aa993b 1231
96baa820 1232void handle_inferior_event (struct execution_control_state * ecs);
cd0fc7c3 1233
104c1213 1234static void check_sigtramp2 (struct execution_control_state *ecs);
c2c6d25f 1235static void step_into_function (struct execution_control_state *ecs);
d4f3574e 1236static void step_over_function (struct execution_control_state *ecs);
104c1213
JM
1237static void stop_stepping (struct execution_control_state *ecs);
1238static void prepare_to_wait (struct execution_control_state *ecs);
d4f3574e 1239static void keep_going (struct execution_control_state *ecs);
11cf8741 1240static void print_stop_reason (enum inferior_stop_reason stop_reason, int stop_info);
104c1213 1241
cd0fc7c3
SS
1242/* Wait for control to return from inferior to debugger.
1243 If inferior gets a signal, we may decide to start it up again
1244 instead of returning. That is why there is a loop in this function.
1245 When this function actually returns it means the inferior
1246 should be left stopped and GDB should read more commands. */
1247
1248void
96baa820 1249wait_for_inferior (void)
cd0fc7c3
SS
1250{
1251 struct cleanup *old_cleanups;
1252 struct execution_control_state ecss;
1253 struct execution_control_state *ecs;
c906108c
SS
1254
1255 old_cleanups = make_cleanup (delete_breakpoint_current_contents,
1256 &step_resume_breakpoint);
1257 make_cleanup (delete_breakpoint_current_contents,
1258 &through_sigtramp_breakpoint);
cd0fc7c3
SS
1259
1260 /* wfi still stays in a loop, so it's OK just to take the address of
1261 a local to get the ecs pointer. */
1262 ecs = &ecss;
1263
1264 /* Fill in with reasonable starting values. */
1265 init_execution_control_state (ecs);
1266
c906108c
SS
1267 thread_step_needed = 0;
1268
c906108c 1269 /* We'll update this if & when we switch to a new thread. */
c3f6f71d 1270 previous_inferior_pid = inferior_pid;
c906108c 1271
cd0fc7c3
SS
1272 overlay_cache_invalid = 1;
1273
1274 /* We have to invalidate the registers BEFORE calling target_wait
1275 because they can be loaded from the target while in target_wait.
1276 This makes remote debugging a bit more efficient for those
1277 targets that provide critical registers as part of their normal
1278 status mechanism. */
1279
1280 registers_changed ();
b83266a0 1281
c906108c
SS
1282 while (1)
1283 {
cd0fc7c3
SS
1284 if (target_wait_hook)
1285 ecs->pid = target_wait_hook (ecs->waiton_pid, ecs->wp);
1286 else
1287 ecs->pid = target_wait (ecs->waiton_pid, ecs->wp);
c906108c 1288
cd0fc7c3
SS
1289 /* Now figure out what to do with the result of the result. */
1290 handle_inferior_event (ecs);
c906108c 1291
cd0fc7c3
SS
1292 if (!ecs->wait_some_more)
1293 break;
1294 }
1295 do_cleanups (old_cleanups);
1296}
c906108c 1297
43ff13b4
JM
1298/* Asynchronous version of wait_for_inferior. It is called by the
1299 event loop whenever a change of state is detected on the file
1300 descriptor corresponding to the target. It can be called more than
1301 once to complete a single execution command. In such cases we need
1302 to keep the state in a global variable ASYNC_ECSS. If it is the
1303 last time that this function is called for a single execution
1304 command, then report to the user that the inferior has stopped, and
1305 do the necessary cleanups. */
1306
1307struct execution_control_state async_ecss;
1308struct execution_control_state *async_ecs;
1309
1310void
c2c6d25f 1311fetch_inferior_event (client_data)
2acceee2 1312 void *client_data;
43ff13b4
JM
1313{
1314 static struct cleanup *old_cleanups;
1315
c5aa993b 1316 async_ecs = &async_ecss;
43ff13b4
JM
1317
1318 if (!async_ecs->wait_some_more)
1319 {
1320 old_cleanups = make_exec_cleanup (delete_breakpoint_current_contents,
c5aa993b 1321 &step_resume_breakpoint);
43ff13b4 1322 make_exec_cleanup (delete_breakpoint_current_contents,
c5aa993b 1323 &through_sigtramp_breakpoint);
43ff13b4
JM
1324
1325 /* Fill in with reasonable starting values. */
1326 init_execution_control_state (async_ecs);
1327
1328 thread_step_needed = 0;
1329
1330 /* We'll update this if & when we switch to a new thread. */
c3f6f71d 1331 previous_inferior_pid = inferior_pid;
43ff13b4
JM
1332
1333 overlay_cache_invalid = 1;
1334
1335 /* We have to invalidate the registers BEFORE calling target_wait
c5aa993b
JM
1336 because they can be loaded from the target while in target_wait.
1337 This makes remote debugging a bit more efficient for those
1338 targets that provide critical registers as part of their normal
1339 status mechanism. */
43ff13b4
JM
1340
1341 registers_changed ();
1342 }
1343
1344 if (target_wait_hook)
1345 async_ecs->pid = target_wait_hook (async_ecs->waiton_pid, async_ecs->wp);
1346 else
1347 async_ecs->pid = target_wait (async_ecs->waiton_pid, async_ecs->wp);
1348
1349 /* Now figure out what to do with the result of the result. */
1350 handle_inferior_event (async_ecs);
1351
1352 if (!async_ecs->wait_some_more)
1353 {
adf40b2e
JM
1354 /* Do only the cleanups that have been added by this
1355 function. Let the continuations for the commands do the rest,
1356 if there are any. */
43ff13b4
JM
1357 do_exec_cleanups (old_cleanups);
1358 normal_stop ();
c2d11a7d
JM
1359 if (step_multi && stop_step)
1360 inferior_event_handler (INF_EXEC_CONTINUE, NULL);
1361 else
1362 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
43ff13b4
JM
1363 }
1364}
1365
cd0fc7c3
SS
1366/* Prepare an execution control state for looping through a
1367 wait_for_inferior-type loop. */
1368
1369void
96baa820 1370init_execution_control_state (struct execution_control_state *ecs)
cd0fc7c3 1371{
c2d11a7d 1372 /* ecs->another_trap? */
cd0fc7c3
SS
1373 ecs->random_signal = 0;
1374 ecs->remove_breakpoints_on_following_step = 0;
1375 ecs->handling_longjmp = 0; /* FIXME */
1376 ecs->update_step_sp = 0;
1377 ecs->stepping_through_solib_after_catch = 0;
1378 ecs->stepping_through_solib_catchpoints = NULL;
1379 ecs->enable_hw_watchpoints_after_wait = 0;
1380 ecs->stepping_through_sigtramp = 0;
1381 ecs->sal = find_pc_line (prev_pc, 0);
1382 ecs->current_line = ecs->sal.line;
1383 ecs->current_symtab = ecs->sal.symtab;
1384 ecs->infwait_state = infwait_normal_state;
1385 ecs->waiton_pid = -1;
1386 ecs->wp = &(ecs->ws);
1387}
1388
a0b3c4fd 1389/* Call this function before setting step_resume_breakpoint, as a
53a5351d
JM
1390 sanity check. There should never be more than one step-resume
1391 breakpoint per thread, so we should never be setting a new
1392 step_resume_breakpoint when one is already active. */
a0b3c4fd 1393static void
96baa820 1394check_for_old_step_resume_breakpoint (void)
a0b3c4fd
JM
1395{
1396 if (step_resume_breakpoint)
1397 warning ("GDB bug: infrun.c (wait_for_inferior): dropping old step_resume breakpoint");
1398}
1399
cd0fc7c3
SS
1400/* Given an execution control state that has been freshly filled in
1401 by an event from the inferior, figure out what it means and take
1402 appropriate action. */
c906108c 1403
cd0fc7c3 1404void
96baa820 1405handle_inferior_event (struct execution_control_state *ecs)
cd0fc7c3
SS
1406{
1407 CORE_ADDR tmp;
1408 int stepped_after_stopped_by_watchpoint;
1409
1410 /* Keep this extra brace for now, minimizes diffs. */
1411 {
c5aa993b
JM
1412 switch (ecs->infwait_state)
1413 {
1414 case infwait_normal_state:
1415 /* Since we've done a wait, we have a new event. Don't
1416 carry over any expectations about needing to step over a
1417 breakpoint. */
1418 thread_step_needed = 0;
1419
1420 /* See comments where a TARGET_WAITKIND_SYSCALL_RETURN event
1421 is serviced in this loop, below. */
1422 if (ecs->enable_hw_watchpoints_after_wait)
1423 {
1424 TARGET_ENABLE_HW_WATCHPOINTS (inferior_pid);
1425 ecs->enable_hw_watchpoints_after_wait = 0;
1426 }
1427 stepped_after_stopped_by_watchpoint = 0;
1428 break;
b83266a0 1429
c5aa993b
JM
1430 case infwait_thread_hop_state:
1431 insert_breakpoints ();
c906108c 1432
c5aa993b
JM
1433 /* We need to restart all the threads now,
1434 * unles we're running in scheduler-locked mode.
1435 * FIXME: shouldn't we look at currently_stepping ()?
1436 */
1437 if (scheduler_mode == schedlock_on)
1438 target_resume (ecs->pid, 0, TARGET_SIGNAL_0);
1439 else
1440 target_resume (-1, 0, TARGET_SIGNAL_0);
1441 ecs->infwait_state = infwait_normal_state;
104c1213
JM
1442 prepare_to_wait (ecs);
1443 return;
c906108c 1444
c5aa993b
JM
1445 case infwait_nullified_state:
1446 break;
b83266a0 1447
c5aa993b
JM
1448 case infwait_nonstep_watch_state:
1449 insert_breakpoints ();
b83266a0 1450
c5aa993b
JM
1451 /* FIXME-maybe: is this cleaner than setting a flag? Does it
1452 handle things like signals arriving and other things happening
1453 in combination correctly? */
1454 stepped_after_stopped_by_watchpoint = 1;
1455 break;
1456 }
1457 ecs->infwait_state = infwait_normal_state;
c906108c 1458
c5aa993b 1459 flush_cached_frames ();
c906108c 1460
c5aa993b 1461 /* If it's a new process, add it to the thread database */
c906108c 1462
c5aa993b 1463 ecs->new_thread_event = ((ecs->pid != inferior_pid) && !in_thread_list (ecs->pid));
c906108c 1464
c5aa993b
JM
1465 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
1466 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
1467 && ecs->new_thread_event)
1468 {
1469 add_thread (ecs->pid);
c906108c 1470
8b93c638
JM
1471#ifdef UI_OUT
1472 ui_out_text (uiout, "[New ");
1473 ui_out_text (uiout, target_pid_or_tid_to_str (ecs->pid));
1474 ui_out_text (uiout, "]\n");
1475#else
c5aa993b 1476 printf_filtered ("[New %s]\n", target_pid_or_tid_to_str (ecs->pid));
8b93c638 1477#endif
c906108c
SS
1478
1479#if 0
c5aa993b
JM
1480 /* NOTE: This block is ONLY meant to be invoked in case of a
1481 "thread creation event"! If it is invoked for any other
1482 sort of event (such as a new thread landing on a breakpoint),
1483 the event will be discarded, which is almost certainly
1484 a bad thing!
1485
1486 To avoid this, the low-level module (eg. target_wait)
1487 should call in_thread_list and add_thread, so that the
1488 new thread is known by the time we get here. */
1489
1490 /* We may want to consider not doing a resume here in order
1491 to give the user a chance to play with the new thread.
1492 It might be good to make that a user-settable option. */
1493
1494 /* At this point, all threads are stopped (happens
1495 automatically in either the OS or the native code).
1496 Therefore we need to continue all threads in order to
1497 make progress. */
1498
1499 target_resume (-1, 0, TARGET_SIGNAL_0);
104c1213
JM
1500 prepare_to_wait (ecs);
1501 return;
c906108c 1502#endif
c5aa993b 1503 }
c906108c 1504
c5aa993b
JM
1505 switch (ecs->ws.kind)
1506 {
1507 case TARGET_WAITKIND_LOADED:
1508 /* Ignore gracefully during startup of the inferior, as it
1509 might be the shell which has just loaded some objects,
1510 otherwise add the symbols for the newly loaded objects. */
c906108c 1511#ifdef SOLIB_ADD
c5aa993b
JM
1512 if (!stop_soon_quietly)
1513 {
1514 /* Remove breakpoints, SOLIB_ADD might adjust
1515 breakpoint addresses via breakpoint_re_set. */
1516 if (breakpoints_inserted)
1517 remove_breakpoints ();
c906108c 1518
c5aa993b
JM
1519 /* Check for any newly added shared libraries if we're
1520 supposed to be adding them automatically. */
1521 if (auto_solib_add)
1522 {
1523 /* Switch terminal for any messages produced by
1524 breakpoint_re_set. */
1525 target_terminal_ours_for_output ();
1526 SOLIB_ADD (NULL, 0, NULL);
1527 target_terminal_inferior ();
1528 }
c906108c 1529
c5aa993b
JM
1530 /* Reinsert breakpoints and continue. */
1531 if (breakpoints_inserted)
1532 insert_breakpoints ();
1533 }
c906108c 1534#endif
c5aa993b 1535 resume (0, TARGET_SIGNAL_0);
104c1213
JM
1536 prepare_to_wait (ecs);
1537 return;
c5aa993b
JM
1538
1539 case TARGET_WAITKIND_SPURIOUS:
1540 resume (0, TARGET_SIGNAL_0);
104c1213
JM
1541 prepare_to_wait (ecs);
1542 return;
c5aa993b
JM
1543
1544 case TARGET_WAITKIND_EXITED:
1545 target_terminal_ours (); /* Must do this before mourn anyway */
11cf8741 1546 print_stop_reason (EXITED, ecs->ws.value.integer);
c5aa993b
JM
1547
1548 /* Record the exit code in the convenience variable $_exitcode, so
1549 that the user can inspect this again later. */
1550 set_internalvar (lookup_internalvar ("_exitcode"),
1551 value_from_longest (builtin_type_int,
1552 (LONGEST) ecs->ws.value.integer));
1553 gdb_flush (gdb_stdout);
1554 target_mourn_inferior ();
1555 singlestep_breakpoints_inserted_p = 0; /*SOFTWARE_SINGLE_STEP_P */
1556 stop_print_frame = 0;
104c1213
JM
1557 stop_stepping (ecs);
1558 return;
c5aa993b
JM
1559
1560 case TARGET_WAITKIND_SIGNALLED:
1561 stop_print_frame = 0;
1562 stop_signal = ecs->ws.value.sig;
1563 target_terminal_ours (); /* Must do this before mourn anyway */
c5aa993b 1564
c7e79b4b
ND
1565 /* Note: By definition of TARGET_WAITKIND_SIGNALLED, we shouldn't
1566 reach here unless the inferior is dead. However, for years
1567 target_kill() was called here, which hints that fatal signals aren't
1568 really fatal on some systems. If that's true, then some changes
1569 may be needed. */
1570 target_mourn_inferior ();
c5aa993b 1571
11cf8741 1572 print_stop_reason (SIGNAL_EXITED, stop_signal);
c5aa993b 1573 singlestep_breakpoints_inserted_p = 0; /*SOFTWARE_SINGLE_STEP_P */
104c1213
JM
1574 stop_stepping (ecs);
1575 return;
c5aa993b
JM
1576
1577 /* The following are the only cases in which we keep going;
1578 the above cases end in a continue or goto. */
1579 case TARGET_WAITKIND_FORKED:
1580 stop_signal = TARGET_SIGNAL_TRAP;
1581 pending_follow.kind = ecs->ws.kind;
1582
1583 /* Ignore fork events reported for the parent; we're only
1584 interested in reacting to forks of the child. Note that
1585 we expect the child's fork event to be available if we
1586 waited for it now. */
1587 if (inferior_pid == ecs->pid)
1588 {
1589 pending_follow.fork_event.saw_parent_fork = 1;
1590 pending_follow.fork_event.parent_pid = ecs->pid;
1591 pending_follow.fork_event.child_pid = ecs->ws.value.related_pid;
104c1213
JM
1592 prepare_to_wait (ecs);
1593 return;
c5aa993b
JM
1594 }
1595 else
1596 {
1597 pending_follow.fork_event.saw_child_fork = 1;
1598 pending_follow.fork_event.child_pid = ecs->pid;
1599 pending_follow.fork_event.parent_pid = ecs->ws.value.related_pid;
1600 }
c906108c 1601
c5aa993b
JM
1602 stop_pc = read_pc_pid (ecs->pid);
1603 ecs->saved_inferior_pid = inferior_pid;
1604 inferior_pid = ecs->pid;
6426a772 1605 stop_bpstat = bpstat_stop_status (&stop_pc, currently_stepping (ecs));
c5aa993b
JM
1606 ecs->random_signal = !bpstat_explains_signal (stop_bpstat);
1607 inferior_pid = ecs->saved_inferior_pid;
1608 goto process_event_stop_test;
1609
1610 /* If this a platform which doesn't allow a debugger to touch a
1611 vfork'd inferior until after it exec's, then we'd best keep
1612 our fingers entirely off the inferior, other than continuing
1613 it. This has the unfortunate side-effect that catchpoints
1614 of vforks will be ignored. But since the platform doesn't
1615 allow the inferior be touched at vfork time, there's really
1616 little choice. */
1617 case TARGET_WAITKIND_VFORKED:
1618 stop_signal = TARGET_SIGNAL_TRAP;
1619 pending_follow.kind = ecs->ws.kind;
1620
1621 /* Is this a vfork of the parent? If so, then give any
1622 vfork catchpoints a chance to trigger now. (It's
1623 dangerous to do so if the child canot be touched until
1624 it execs, and the child has not yet exec'd. We probably
1625 should warn the user to that effect when the catchpoint
1626 triggers...) */
1627 if (ecs->pid == inferior_pid)
1628 {
1629 pending_follow.fork_event.saw_parent_fork = 1;
1630 pending_follow.fork_event.parent_pid = ecs->pid;
1631 pending_follow.fork_event.child_pid = ecs->ws.value.related_pid;
1632 }
c906108c 1633
c5aa993b
JM
1634 /* If we've seen the child's vfork event but cannot really touch
1635 the child until it execs, then we must continue the child now.
1636 Else, give any vfork catchpoints a chance to trigger now. */
1637 else
1638 {
1639 pending_follow.fork_event.saw_child_fork = 1;
1640 pending_follow.fork_event.child_pid = ecs->pid;
1641 pending_follow.fork_event.parent_pid = ecs->ws.value.related_pid;
1642 target_post_startup_inferior (pending_follow.fork_event.child_pid);
1643 follow_vfork_when_exec = !target_can_follow_vfork_prior_to_exec ();
1644 if (follow_vfork_when_exec)
1645 {
1646 target_resume (ecs->pid, 0, TARGET_SIGNAL_0);
104c1213
JM
1647 prepare_to_wait (ecs);
1648 return;
c5aa993b
JM
1649 }
1650 }
c906108c 1651
c5aa993b 1652 stop_pc = read_pc ();
6426a772 1653 stop_bpstat = bpstat_stop_status (&stop_pc, currently_stepping (ecs));
c5aa993b
JM
1654 ecs->random_signal = !bpstat_explains_signal (stop_bpstat);
1655 goto process_event_stop_test;
1656
1657 case TARGET_WAITKIND_EXECD:
1658 stop_signal = TARGET_SIGNAL_TRAP;
1659
1660 /* Is this a target which reports multiple exec events per actual
1661 call to exec()? (HP-UX using ptrace does, for example.) If so,
1662 ignore all but the last one. Just resume the exec'r, and wait
1663 for the next exec event. */
1664 if (inferior_ignoring_leading_exec_events)
1665 {
1666 inferior_ignoring_leading_exec_events--;
1667 if (pending_follow.kind == TARGET_WAITKIND_VFORKED)
1668 ENSURE_VFORKING_PARENT_REMAINS_STOPPED (pending_follow.fork_event.parent_pid);
1669 target_resume (ecs->pid, 0, TARGET_SIGNAL_0);
104c1213
JM
1670 prepare_to_wait (ecs);
1671 return;
c5aa993b
JM
1672 }
1673 inferior_ignoring_leading_exec_events =
1674 target_reported_exec_events_per_exec_call () - 1;
c906108c 1675
96baa820
JM
1676 pending_follow.execd_pathname =
1677 savestring (ecs->ws.value.execd_pathname,
1678 strlen (ecs->ws.value.execd_pathname));
c906108c 1679
c5aa993b
JM
1680 /* Did inferior_pid exec, or did a (possibly not-yet-followed)
1681 child of a vfork exec?
c906108c 1682
c5aa993b
JM
1683 ??rehrauer: This is unabashedly an HP-UX specific thing. On
1684 HP-UX, events associated with a vforking inferior come in
1685 threes: a vfork event for the child (always first), followed
1686 a vfork event for the parent and an exec event for the child.
1687 The latter two can come in either order.
c906108c 1688
c5aa993b
JM
1689 If we get the parent vfork event first, life's good: We follow
1690 either the parent or child, and then the child's exec event is
1691 a "don't care".
c906108c 1692
c5aa993b
JM
1693 But if we get the child's exec event first, then we delay
1694 responding to it until we handle the parent's vfork. Because,
1695 otherwise we can't satisfy a "catch vfork". */
1696 if (pending_follow.kind == TARGET_WAITKIND_VFORKED)
1697 {
1698 pending_follow.fork_event.saw_child_exec = 1;
1699
1700 /* On some targets, the child must be resumed before
1701 the parent vfork event is delivered. A single-step
1702 suffices. */
1703 if (RESUME_EXECD_VFORKING_CHILD_TO_GET_PARENT_VFORK ())
1704 target_resume (ecs->pid, 1, TARGET_SIGNAL_0);
1705 /* We expect the parent vfork event to be available now. */
104c1213
JM
1706 prepare_to_wait (ecs);
1707 return;
c5aa993b 1708 }
c906108c 1709
c5aa993b
JM
1710 /* This causes the eventpoints and symbol table to be reset. Must
1711 do this now, before trying to determine whether to stop. */
1712 follow_exec (inferior_pid, pending_follow.execd_pathname);
1713 free (pending_follow.execd_pathname);
1714
1715 stop_pc = read_pc_pid (ecs->pid);
1716 ecs->saved_inferior_pid = inferior_pid;
1717 inferior_pid = ecs->pid;
6426a772 1718 stop_bpstat = bpstat_stop_status (&stop_pc, currently_stepping (ecs));
c5aa993b
JM
1719 ecs->random_signal = !bpstat_explains_signal (stop_bpstat);
1720 inferior_pid = ecs->saved_inferior_pid;
1721 goto process_event_stop_test;
1722
1723 /* These syscall events are returned on HP-UX, as part of its
1724 implementation of page-protection-based "hardware" watchpoints.
1725 HP-UX has unfortunate interactions between page-protections and
1726 some system calls. Our solution is to disable hardware watches
1727 when a system call is entered, and reenable them when the syscall
1728 completes. The downside of this is that we may miss the precise
1729 point at which a watched piece of memory is modified. "Oh well."
1730
1731 Note that we may have multiple threads running, which may each
1732 enter syscalls at roughly the same time. Since we don't have a
1733 good notion currently of whether a watched piece of memory is
1734 thread-private, we'd best not have any page-protections active
1735 when any thread is in a syscall. Thus, we only want to reenable
1736 hardware watches when no threads are in a syscall.
1737
1738 Also, be careful not to try to gather much state about a thread
1739 that's in a syscall. It's frequently a losing proposition. */
1740 case TARGET_WAITKIND_SYSCALL_ENTRY:
1741 number_of_threads_in_syscalls++;
1742 if (number_of_threads_in_syscalls == 1)
1743 {
1744 TARGET_DISABLE_HW_WATCHPOINTS (inferior_pid);
1745 }
1746 resume (0, TARGET_SIGNAL_0);
104c1213
JM
1747 prepare_to_wait (ecs);
1748 return;
c906108c 1749
c5aa993b 1750 /* Before examining the threads further, step this thread to
c906108c
SS
1751 get it entirely out of the syscall. (We get notice of the
1752 event when the thread is just on the verge of exiting a
1753 syscall. Stepping one instruction seems to get it back
1754 into user code.)
1755
1756 Note that although the logical place to reenable h/w watches
1757 is here, we cannot. We cannot reenable them before stepping
1758 the thread (this causes the next wait on the thread to hang).
1759
1760 Nor can we enable them after stepping until we've done a wait.
cd0fc7c3 1761 Thus, we simply set the flag ecs->enable_hw_watchpoints_after_wait
c906108c
SS
1762 here, which will be serviced immediately after the target
1763 is waited on. */
c5aa993b
JM
1764 case TARGET_WAITKIND_SYSCALL_RETURN:
1765 target_resume (ecs->pid, 1, TARGET_SIGNAL_0);
c906108c 1766
c5aa993b
JM
1767 if (number_of_threads_in_syscalls > 0)
1768 {
1769 number_of_threads_in_syscalls--;
1770 ecs->enable_hw_watchpoints_after_wait =
1771 (number_of_threads_in_syscalls == 0);
1772 }
104c1213
JM
1773 prepare_to_wait (ecs);
1774 return;
c906108c 1775
c5aa993b
JM
1776 case TARGET_WAITKIND_STOPPED:
1777 stop_signal = ecs->ws.value.sig;
1778 break;
c4093a6a
JM
1779
1780 /* We had an event in the inferior, but we are not interested
1781 in handling it at this level. The lower layers have already
1782 done what needs to be done, if anything. This case can
1783 occur only when the target is async or extended-async. One
1784 of the circumstamces for this to happen is when the
1785 inferior produces output for the console. The inferior has
1786 not stopped, and we are ignoring the event. */
1787 case TARGET_WAITKIND_IGNORE:
1788 ecs->wait_some_more = 1;
1789 return;
c5aa993b 1790 }
c906108c 1791
c5aa993b
JM
1792 /* We may want to consider not doing a resume here in order to give
1793 the user a chance to play with the new thread. It might be good
1794 to make that a user-settable option. */
c906108c 1795
c5aa993b
JM
1796 /* At this point, all threads are stopped (happens automatically in
1797 either the OS or the native code). Therefore we need to continue
1798 all threads in order to make progress. */
1799 if (ecs->new_thread_event)
1800 {
1801 target_resume (-1, 0, TARGET_SIGNAL_0);
104c1213
JM
1802 prepare_to_wait (ecs);
1803 return;
c5aa993b 1804 }
c906108c 1805
c5aa993b 1806 stop_pc = read_pc_pid (ecs->pid);
c906108c 1807
c5aa993b
JM
1808 /* See if a thread hit a thread-specific breakpoint that was meant for
1809 another thread. If so, then step that thread past the breakpoint,
1810 and continue it. */
c906108c 1811
c5aa993b
JM
1812 if (stop_signal == TARGET_SIGNAL_TRAP)
1813 {
1814 if (SOFTWARE_SINGLE_STEP_P && singlestep_breakpoints_inserted_p)
1815 ecs->random_signal = 0;
1816 else if (breakpoints_inserted
1817 && breakpoint_here_p (stop_pc - DECR_PC_AFTER_BREAK))
1818 {
cd0fc7c3 1819 ecs->random_signal = 0;
c5aa993b
JM
1820 if (!breakpoint_thread_match (stop_pc - DECR_PC_AFTER_BREAK,
1821 ecs->pid))
1822 {
1823 int remove_status;
1824
1825 /* Saw a breakpoint, but it was hit by the wrong thread.
1826 Just continue. */
1827 write_pc_pid (stop_pc - DECR_PC_AFTER_BREAK, ecs->pid);
1828
1829 remove_status = remove_breakpoints ();
1830 /* Did we fail to remove breakpoints? If so, try
1831 to set the PC past the bp. (There's at least
1832 one situation in which we can fail to remove
1833 the bp's: On HP-UX's that use ttrace, we can't
1834 change the address space of a vforking child
1835 process until the child exits (well, okay, not
1836 then either :-) or execs. */
1837 if (remove_status != 0)
1838 {
1839 write_pc_pid (stop_pc - DECR_PC_AFTER_BREAK + 4, ecs->pid);
1840 }
1841 else
1842 { /* Single step */
1843 target_resume (ecs->pid, 1, TARGET_SIGNAL_0);
1844 /* FIXME: What if a signal arrives instead of the
1845 single-step happening? */
1846
1847 ecs->waiton_pid = ecs->pid;
1848 ecs->wp = &(ecs->ws);
1849 ecs->infwait_state = infwait_thread_hop_state;
104c1213
JM
1850 prepare_to_wait (ecs);
1851 return;
c5aa993b 1852 }
c906108c 1853
c5aa993b
JM
1854 /* We need to restart all the threads now,
1855 * unles we're running in scheduler-locked mode.
1856 * FIXME: shouldn't we look at currently_stepping ()?
1857 */
1858 if (scheduler_mode == schedlock_on)
1859 target_resume (ecs->pid, 0, TARGET_SIGNAL_0);
1860 else
1861 target_resume (-1, 0, TARGET_SIGNAL_0);
104c1213
JM
1862 prepare_to_wait (ecs);
1863 return;
c5aa993b
JM
1864 }
1865 else
1866 {
1867 /* This breakpoint matches--either it is the right
1868 thread or it's a generic breakpoint for all threads.
1869 Remember that we'll need to step just _this_ thread
1870 on any following user continuation! */
1871 thread_step_needed = 1;
1872 }
1873 }
1874 }
1875 else
1876 ecs->random_signal = 1;
1877
1878 /* See if something interesting happened to the non-current thread. If
1879 so, then switch to that thread, and eventually give control back to
1880 the user.
1881
1882 Note that if there's any kind of pending follow (i.e., of a fork,
1883 vfork or exec), we don't want to do this now. Rather, we'll let
1884 the next resume handle it. */
1885 if ((ecs->pid != inferior_pid) &&
1886 (pending_follow.kind == TARGET_WAITKIND_SPURIOUS))
1887 {
1888 int printed = 0;
c906108c 1889
c5aa993b
JM
1890 /* If it's a random signal for a non-current thread, notify user
1891 if he's expressed an interest. */
1892 if (ecs->random_signal
1893 && signal_print[stop_signal])
1894 {
c906108c
SS
1895/* ??rehrauer: I don't understand the rationale for this code. If the
1896 inferior will stop as a result of this signal, then the act of handling
1897 the stop ought to print a message that's couches the stoppage in user
1898 terms, e.g., "Stopped for breakpoint/watchpoint". If the inferior
1899 won't stop as a result of the signal -- i.e., if the signal is merely
1900 a side-effect of something GDB's doing "under the covers" for the
1901 user, such as stepping threads over a breakpoint they shouldn't stop
1902 for -- then the message seems to be a serious annoyance at best.
1903
1904 For now, remove the message altogether. */
1905#if 0
c5aa993b
JM
1906 printed = 1;
1907 target_terminal_ours_for_output ();
1908 printf_filtered ("\nProgram received signal %s, %s.\n",
1909 target_signal_to_name (stop_signal),
1910 target_signal_to_string (stop_signal));
1911 gdb_flush (gdb_stdout);
c906108c 1912#endif
c5aa993b 1913 }
c906108c 1914
c5aa993b
JM
1915 /* If it's not SIGTRAP and not a signal we want to stop for, then
1916 continue the thread. */
c906108c 1917
c5aa993b
JM
1918 if (stop_signal != TARGET_SIGNAL_TRAP
1919 && !signal_stop[stop_signal])
1920 {
1921 if (printed)
1922 target_terminal_inferior ();
c906108c 1923
c5aa993b
JM
1924 /* Clear the signal if it should not be passed. */
1925 if (signal_program[stop_signal] == 0)
1926 stop_signal = TARGET_SIGNAL_0;
c906108c 1927
c5aa993b 1928 target_resume (ecs->pid, 0, stop_signal);
104c1213
JM
1929 prepare_to_wait (ecs);
1930 return;
c5aa993b 1931 }
c906108c 1932
c5aa993b
JM
1933 /* It's a SIGTRAP or a signal we're interested in. Switch threads,
1934 and fall into the rest of wait_for_inferior(). */
1935
c2d11a7d
JM
1936 /* Caution: it may happen that the new thread (or the old one!)
1937 is not in the thread list. In this case we must not attempt
1938 to "switch context", or we run the risk that our context may
1939 be lost. This may happen as a result of the target module
1940 mishandling thread creation. */
1941
1942 if (in_thread_list (inferior_pid) && in_thread_list (ecs->pid))
1943 { /* Perform infrun state context switch: */
1944 /* Save infrun state for the old thread. */
1945 save_infrun_state (inferior_pid, prev_pc,
1946 prev_func_start, prev_func_name,
1947 trap_expected, step_resume_breakpoint,
1948 through_sigtramp_breakpoint,
1949 step_range_start, step_range_end,
1950 step_frame_address, ecs->handling_longjmp,
1951 ecs->another_trap,
1952 ecs->stepping_through_solib_after_catch,
1953 ecs->stepping_through_solib_catchpoints,
1954 ecs->stepping_through_sigtramp);
1955
1956 /* Load infrun state for the new thread. */
1957 load_infrun_state (ecs->pid, &prev_pc,
1958 &prev_func_start, &prev_func_name,
1959 &trap_expected, &step_resume_breakpoint,
1960 &through_sigtramp_breakpoint,
1961 &step_range_start, &step_range_end,
1962 &step_frame_address, &ecs->handling_longjmp,
1963 &ecs->another_trap,
1964 &ecs->stepping_through_solib_after_catch,
1965 &ecs->stepping_through_solib_catchpoints,
1966 &ecs->stepping_through_sigtramp);
1967 }
c5aa993b
JM
1968
1969 inferior_pid = ecs->pid;
1970
c5aa993b
JM
1971 if (context_hook)
1972 context_hook (pid_to_thread_id (ecs->pid));
1973
c5aa993b
JM
1974 flush_cached_frames ();
1975 }
c906108c 1976
c5aa993b
JM
1977 if (SOFTWARE_SINGLE_STEP_P && singlestep_breakpoints_inserted_p)
1978 {
1979 /* Pull the single step breakpoints out of the target. */
1980 SOFTWARE_SINGLE_STEP (0, 0);
1981 singlestep_breakpoints_inserted_p = 0;
1982 }
c906108c 1983
c5aa993b
JM
1984 /* If PC is pointing at a nullified instruction, then step beyond
1985 it so that the user won't be confused when GDB appears to be ready
1986 to execute it. */
c906108c 1987
c5aa993b
JM
1988 /* if (INSTRUCTION_NULLIFIED && currently_stepping (ecs)) */
1989 if (INSTRUCTION_NULLIFIED)
1990 {
1991 registers_changed ();
1992 target_resume (ecs->pid, 1, TARGET_SIGNAL_0);
c906108c 1993
c5aa993b
JM
1994 /* We may have received a signal that we want to pass to
1995 the inferior; therefore, we must not clobber the waitstatus
1996 in WS. */
c906108c 1997
c5aa993b
JM
1998 ecs->infwait_state = infwait_nullified_state;
1999 ecs->waiton_pid = ecs->pid;
2000 ecs->wp = &(ecs->tmpstatus);
104c1213
JM
2001 prepare_to_wait (ecs);
2002 return;
c5aa993b 2003 }
c906108c 2004
c5aa993b
JM
2005 /* It may not be necessary to disable the watchpoint to stop over
2006 it. For example, the PA can (with some kernel cooperation)
2007 single step over a watchpoint without disabling the watchpoint. */
2008 if (HAVE_STEPPABLE_WATCHPOINT && STOPPED_BY_WATCHPOINT (ecs->ws))
2009 {
2010 resume (1, 0);
104c1213
JM
2011 prepare_to_wait (ecs);
2012 return;
c5aa993b 2013 }
c906108c 2014
c5aa993b
JM
2015 /* It is far more common to need to disable a watchpoint to step
2016 the inferior over it. FIXME. What else might a debug
2017 register or page protection watchpoint scheme need here? */
2018 if (HAVE_NONSTEPPABLE_WATCHPOINT && STOPPED_BY_WATCHPOINT (ecs->ws))
2019 {
2020 /* At this point, we are stopped at an instruction which has
2021 attempted to write to a piece of memory under control of
2022 a watchpoint. The instruction hasn't actually executed
2023 yet. If we were to evaluate the watchpoint expression
2024 now, we would get the old value, and therefore no change
2025 would seem to have occurred.
2026
2027 In order to make watchpoints work `right', we really need
2028 to complete the memory write, and then evaluate the
2029 watchpoint expression. The following code does that by
2030 removing the watchpoint (actually, all watchpoints and
2031 breakpoints), single-stepping the target, re-inserting
2032 watchpoints, and then falling through to let normal
2033 single-step processing handle proceed. Since this
2034 includes evaluating watchpoints, things will come to a
2035 stop in the correct manner. */
2036
2037 write_pc (stop_pc - DECR_PC_AFTER_BREAK);
2038
2039 remove_breakpoints ();
2040 registers_changed ();
2041 target_resume (ecs->pid, 1, TARGET_SIGNAL_0); /* Single step */
2042
2043 ecs->waiton_pid = ecs->pid;
2044 ecs->wp = &(ecs->ws);
2045 ecs->infwait_state = infwait_nonstep_watch_state;
104c1213
JM
2046 prepare_to_wait (ecs);
2047 return;
c5aa993b 2048 }
c906108c 2049
c5aa993b
JM
2050 /* It may be possible to simply continue after a watchpoint. */
2051 if (HAVE_CONTINUABLE_WATCHPOINT)
2052 STOPPED_BY_WATCHPOINT (ecs->ws);
2053
2054 ecs->stop_func_start = 0;
2055 ecs->stop_func_end = 0;
2056 ecs->stop_func_name = 0;
2057 /* Don't care about return value; stop_func_start and stop_func_name
2058 will both be 0 if it doesn't work. */
2059 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
2060 &ecs->stop_func_start, &ecs->stop_func_end);
2061 ecs->stop_func_start += FUNCTION_START_OFFSET;
2062 ecs->another_trap = 0;
2063 bpstat_clear (&stop_bpstat);
2064 stop_step = 0;
2065 stop_stack_dummy = 0;
2066 stop_print_frame = 1;
2067 ecs->random_signal = 0;
2068 stopped_by_random_signal = 0;
2069 breakpoints_failed = 0;
2070
2071 /* Look at the cause of the stop, and decide what to do.
2072 The alternatives are:
2073 1) break; to really stop and return to the debugger,
2074 2) drop through to start up again
2075 (set ecs->another_trap to 1 to single step once)
2076 3) set ecs->random_signal to 1, and the decision between 1 and 2
2077 will be made according to the signal handling tables. */
2078
2079 /* First, distinguish signals caused by the debugger from signals
2080 that have to do with the program's own actions.
2081 Note that breakpoint insns may cause SIGTRAP or SIGILL
2082 or SIGEMT, depending on the operating system version.
2083 Here we detect when a SIGILL or SIGEMT is really a breakpoint
2084 and change it to SIGTRAP. */
2085
2086 if (stop_signal == TARGET_SIGNAL_TRAP
2087 || (breakpoints_inserted &&
2088 (stop_signal == TARGET_SIGNAL_ILL
2089 || stop_signal == TARGET_SIGNAL_EMT
2090 ))
2091 || stop_soon_quietly)
2092 {
2093 if (stop_signal == TARGET_SIGNAL_TRAP && stop_after_trap)
2094 {
2095 stop_print_frame = 0;
104c1213
JM
2096 stop_stepping (ecs);
2097 return;
c5aa993b
JM
2098 }
2099 if (stop_soon_quietly)
104c1213
JM
2100 {
2101 stop_stepping (ecs);
2102 return;
2103 }
c906108c 2104
c5aa993b
JM
2105 /* Don't even think about breakpoints
2106 if just proceeded over a breakpoint.
c906108c 2107
c5aa993b
JM
2108 However, if we are trying to proceed over a breakpoint
2109 and end up in sigtramp, then through_sigtramp_breakpoint
2110 will be set and we should check whether we've hit the
2111 step breakpoint. */
2112 if (stop_signal == TARGET_SIGNAL_TRAP && trap_expected
2113 && through_sigtramp_breakpoint == NULL)
2114 bpstat_clear (&stop_bpstat);
2115 else
2116 {
2117 /* See if there is a breakpoint at the current PC. */
2118 stop_bpstat = bpstat_stop_status
2119 (&stop_pc,
6426a772
JM
2120 /* Pass TRUE if our reason for stopping is something other
2121 than hitting a breakpoint. We do this by checking that
2122 1) stepping is going on and 2) we didn't hit a breakpoint
2123 in a signal handler without an intervening stop in
2124 sigtramp, which is detected by a new stack pointer value
2125 below any usual function calling stack adjustments. */
c5aa993b 2126 (currently_stepping (ecs)
c5aa993b 2127 && !(step_range_end
6426a772 2128 && INNER_THAN (read_sp (), (step_sp - 16))))
c5aa993b
JM
2129 );
2130 /* Following in case break condition called a
2131 function. */
2132 stop_print_frame = 1;
2133 }
c906108c 2134
c5aa993b
JM
2135 if (stop_signal == TARGET_SIGNAL_TRAP)
2136 ecs->random_signal
2137 = !(bpstat_explains_signal (stop_bpstat)
2138 || trap_expected
2139 || (!CALL_DUMMY_BREAKPOINT_OFFSET_P
2140 && PC_IN_CALL_DUMMY (stop_pc, read_sp (),
2141 FRAME_FP (get_current_frame ())))
2142 || (step_range_end && step_resume_breakpoint == NULL));
2143
2144 else
2145 {
cd0fc7c3 2146 ecs->random_signal
c906108c 2147 = !(bpstat_explains_signal (stop_bpstat)
c5aa993b
JM
2148 /* End of a stack dummy. Some systems (e.g. Sony
2149 news) give another signal besides SIGTRAP, so
2150 check here as well as above. */
7a292a7a
SS
2151 || (!CALL_DUMMY_BREAKPOINT_OFFSET_P
2152 && PC_IN_CALL_DUMMY (stop_pc, read_sp (),
2153 FRAME_FP (get_current_frame ())))
c5aa993b
JM
2154 );
2155 if (!ecs->random_signal)
2156 stop_signal = TARGET_SIGNAL_TRAP;
2157 }
2158 }
c906108c 2159
c5aa993b
JM
2160 /* When we reach this point, we've pretty much decided
2161 that the reason for stopping must've been a random
2162 (unexpected) signal. */
2163
2164 else
2165 ecs->random_signal = 1;
2166 /* If a fork, vfork or exec event was seen, then there are two
2167 possible responses we can make:
2168
2169 1. If a catchpoint triggers for the event (ecs->random_signal == 0),
2170 then we must stop now and issue a prompt. We will resume
2171 the inferior when the user tells us to.
2172 2. If no catchpoint triggers for the event (ecs->random_signal == 1),
2173 then we must resume the inferior now and keep checking.
2174
2175 In either case, we must take appropriate steps to "follow" the
2176 the fork/vfork/exec when the inferior is resumed. For example,
2177 if follow-fork-mode is "child", then we must detach from the
2178 parent inferior and follow the new child inferior.
2179
2180 In either case, setting pending_follow causes the next resume()
2181 to take the appropriate following action. */
2182 process_event_stop_test:
2183 if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
2184 {
2185 if (ecs->random_signal) /* I.e., no catchpoint triggered for this. */
2186 {
2187 trap_expected = 1;
2188 stop_signal = TARGET_SIGNAL_0;
d4f3574e
SS
2189 keep_going (ecs);
2190 return;
c5aa993b
JM
2191 }
2192 }
2193 else if (ecs->ws.kind == TARGET_WAITKIND_VFORKED)
2194 {
2195 if (ecs->random_signal) /* I.e., no catchpoint triggered for this. */
2196 {
d4f3574e
SS
2197 stop_signal = TARGET_SIGNAL_0;
2198 keep_going (ecs);
2199 return;
c5aa993b
JM
2200 }
2201 }
2202 else if (ecs->ws.kind == TARGET_WAITKIND_EXECD)
2203 {
2204 pending_follow.kind = ecs->ws.kind;
2205 if (ecs->random_signal) /* I.e., no catchpoint triggered for this. */
2206 {
2207 trap_expected = 1;
2208 stop_signal = TARGET_SIGNAL_0;
d4f3574e
SS
2209 keep_going (ecs);
2210 return;
c5aa993b
JM
2211 }
2212 }
c906108c 2213
c5aa993b
JM
2214 /* For the program's own signals, act according to
2215 the signal handling tables. */
c906108c 2216
c5aa993b
JM
2217 if (ecs->random_signal)
2218 {
2219 /* Signal not for debugging purposes. */
2220 int printed = 0;
2221
2222 stopped_by_random_signal = 1;
2223
2224 if (signal_print[stop_signal])
2225 {
2226 printed = 1;
2227 target_terminal_ours_for_output ();
11cf8741 2228 print_stop_reason (SIGNAL_RECEIVED, stop_signal);
c5aa993b
JM
2229 }
2230 if (signal_stop[stop_signal])
104c1213
JM
2231 {
2232 stop_stepping (ecs);
2233 return;
2234 }
c5aa993b
JM
2235 /* If not going to stop, give terminal back
2236 if we took it away. */
2237 else if (printed)
2238 target_terminal_inferior ();
2239
2240 /* Clear the signal if it should not be passed. */
2241 if (signal_program[stop_signal] == 0)
2242 stop_signal = TARGET_SIGNAL_0;
2243
a0b3c4fd
JM
2244 /* I'm not sure whether this needs to be check_sigtramp2 or
2245 whether it could/should be keep_going.
2246
2247 This used to jump to step_over_function if we are stepping,
2248 which is wrong.
2249
2250 Suppose the user does a `next' over a function call, and while
2251 that call is in progress, the inferior receives a signal for
2252 which GDB does not stop (i.e., signal_stop[SIG] is false). In
2253 that case, when we reach this point, there is already a
2254 step-resume breakpoint established, right where it should be:
2255 immediately after the function call the user is "next"-ing
d4f3574e 2256 over. If we call step_over_function now, two bad things
a0b3c4fd
JM
2257 happen:
2258
2259 - we'll create a new breakpoint, at wherever the current
2260 frame's return address happens to be. That could be
2261 anywhere, depending on what function call happens to be on
2262 the top of the stack at that point. Point is, it's probably
2263 not where we need it.
2264
2265 - the existing step-resume breakpoint (which is at the correct
2266 address) will get orphaned: step_resume_breakpoint will point
2267 to the new breakpoint, and the old step-resume breakpoint
2268 will never be cleaned up.
2269
2270 The old behavior was meant to help HP-UX single-step out of
2271 sigtramps. It would place the new breakpoint at prev_pc, which
2272 was certainly wrong. I don't know the details there, so fixing
2273 this probably breaks that. As with anything else, it's up to
2274 the HP-UX maintainer to furnish a fix that doesn't break other
2275 platforms. --JimB, 20 May 1999 */
104c1213 2276 check_sigtramp2 (ecs);
e441088d
MK
2277 keep_going (ecs);
2278 return;
c5aa993b
JM
2279 }
2280
2281 /* Handle cases caused by hitting a breakpoint. */
2282 {
2283 CORE_ADDR jmp_buf_pc;
2284 struct bpstat_what what;
2285
2286 what = bpstat_what (stop_bpstat);
2287
2288 if (what.call_dummy)
c906108c 2289 {
c5aa993b
JM
2290 stop_stack_dummy = 1;
2291#ifdef HP_OS_BUG
2292 trap_expected_after_continue = 1;
2293#endif
c906108c 2294 }
c5aa993b
JM
2295
2296 switch (what.main_action)
c906108c 2297 {
c5aa993b
JM
2298 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
2299 /* If we hit the breakpoint at longjmp, disable it for the
2300 duration of this command. Then, install a temporary
2301 breakpoint at the target of the jmp_buf. */
2302 disable_longjmp_breakpoint ();
2303 remove_breakpoints ();
2304 breakpoints_inserted = 0;
2305 if (!GET_LONGJMP_TARGET (&jmp_buf_pc))
d4f3574e
SS
2306 {
2307 keep_going (ecs);
2308 return;
2309 }
c5aa993b
JM
2310
2311 /* Need to blow away step-resume breakpoint, as it
2312 interferes with us */
2313 if (step_resume_breakpoint != NULL)
c906108c 2314 {
c5aa993b
JM
2315 delete_breakpoint (step_resume_breakpoint);
2316 step_resume_breakpoint = NULL;
c906108c 2317 }
c5aa993b
JM
2318 /* Not sure whether we need to blow this away too, but probably
2319 it is like the step-resume breakpoint. */
2320 if (through_sigtramp_breakpoint != NULL)
c906108c 2321 {
c5aa993b
JM
2322 delete_breakpoint (through_sigtramp_breakpoint);
2323 through_sigtramp_breakpoint = NULL;
c906108c 2324 }
c906108c 2325
c5aa993b
JM
2326#if 0
2327 /* FIXME - Need to implement nested temporary breakpoints */
2328 if (step_over_calls > 0)
2329 set_longjmp_resume_breakpoint (jmp_buf_pc,
2330 get_current_frame ());
2331 else
2332#endif /* 0 */
2333 set_longjmp_resume_breakpoint (jmp_buf_pc, NULL);
2334 ecs->handling_longjmp = 1; /* FIXME */
d4f3574e
SS
2335 keep_going (ecs);
2336 return;
c906108c 2337
c5aa993b
JM
2338 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
2339 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE:
2340 remove_breakpoints ();
2341 breakpoints_inserted = 0;
2342#if 0
2343 /* FIXME - Need to implement nested temporary breakpoints */
2344 if (step_over_calls
2345 && (INNER_THAN (FRAME_FP (get_current_frame ()),
2346 step_frame_address)))
2347 {
2348 ecs->another_trap = 1;
d4f3574e
SS
2349 keep_going (ecs);
2350 return;
c5aa993b
JM
2351 }
2352#endif /* 0 */
2353 disable_longjmp_breakpoint ();
2354 ecs->handling_longjmp = 0; /* FIXME */
2355 if (what.main_action == BPSTAT_WHAT_CLEAR_LONGJMP_RESUME)
2356 break;
2357 /* else fallthrough */
c906108c 2358
c5aa993b
JM
2359 case BPSTAT_WHAT_SINGLE:
2360 if (breakpoints_inserted)
c906108c 2361 {
c5aa993b
JM
2362 thread_step_needed = 1;
2363 remove_breakpoints ();
c906108c 2364 }
c5aa993b
JM
2365 breakpoints_inserted = 0;
2366 ecs->another_trap = 1;
2367 /* Still need to check other stuff, at least the case
2368 where we are stepping and step out of the right range. */
2369 break;
c906108c 2370
c5aa993b
JM
2371 case BPSTAT_WHAT_STOP_NOISY:
2372 stop_print_frame = 1;
c906108c 2373
c5aa993b
JM
2374 /* We are about to nuke the step_resume_breakpoint and
2375 through_sigtramp_breakpoint via the cleanup chain, so
2376 no need to worry about it here. */
c906108c 2377
104c1213
JM
2378 stop_stepping (ecs);
2379 return;
c906108c 2380
c5aa993b
JM
2381 case BPSTAT_WHAT_STOP_SILENT:
2382 stop_print_frame = 0;
c906108c 2383
c5aa993b
JM
2384 /* We are about to nuke the step_resume_breakpoint and
2385 through_sigtramp_breakpoint via the cleanup chain, so
2386 no need to worry about it here. */
c906108c 2387
104c1213
JM
2388 stop_stepping (ecs);
2389 return;
c906108c 2390
c5aa993b
JM
2391 case BPSTAT_WHAT_STEP_RESUME:
2392 /* This proably demands a more elegant solution, but, yeah
2393 right...
2394
2395 This function's use of the simple variable
2396 step_resume_breakpoint doesn't seem to accomodate
2397 simultaneously active step-resume bp's, although the
2398 breakpoint list certainly can.
2399
2400 If we reach here and step_resume_breakpoint is already
2401 NULL, then apparently we have multiple active
2402 step-resume bp's. We'll just delete the breakpoint we
53a5351d
JM
2403 stopped at, and carry on.
2404
2405 Correction: what the code currently does is delete a
2406 step-resume bp, but it makes no effort to ensure that
2407 the one deleted is the one currently stopped at. MVS */
2408
c5aa993b
JM
2409 if (step_resume_breakpoint == NULL)
2410 {
2411 step_resume_breakpoint =
2412 bpstat_find_step_resume_breakpoint (stop_bpstat);
2413 }
2414 delete_breakpoint (step_resume_breakpoint);
2415 step_resume_breakpoint = NULL;
2416 break;
2417
2418 case BPSTAT_WHAT_THROUGH_SIGTRAMP:
2419 if (through_sigtramp_breakpoint)
2420 delete_breakpoint (through_sigtramp_breakpoint);
2421 through_sigtramp_breakpoint = NULL;
2422
2423 /* If were waiting for a trap, hitting the step_resume_break
2424 doesn't count as getting it. */
2425 if (trap_expected)
2426 ecs->another_trap = 1;
2427 break;
c906108c 2428
c5aa993b
JM
2429 case BPSTAT_WHAT_CHECK_SHLIBS:
2430 case BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK:
2431#ifdef SOLIB_ADD
c906108c 2432 {
c5aa993b
JM
2433 /* Remove breakpoints, we eventually want to step over the
2434 shlib event breakpoint, and SOLIB_ADD might adjust
2435 breakpoint addresses via breakpoint_re_set. */
2436 if (breakpoints_inserted)
2437 remove_breakpoints ();
c906108c 2438 breakpoints_inserted = 0;
c906108c 2439
c5aa993b
JM
2440 /* Check for any newly added shared libraries if we're
2441 supposed to be adding them automatically. */
2442 if (auto_solib_add)
c906108c 2443 {
c5aa993b
JM
2444 /* Switch terminal for any messages produced by
2445 breakpoint_re_set. */
2446 target_terminal_ours_for_output ();
2447 SOLIB_ADD (NULL, 0, NULL);
2448 target_terminal_inferior ();
c906108c 2449 }
c5aa993b
JM
2450
2451 /* Try to reenable shared library breakpoints, additional
2452 code segments in shared libraries might be mapped in now. */
2453 re_enable_breakpoints_in_shlibs ();
2454
2455 /* If requested, stop when the dynamic linker notifies
2456 gdb of events. This allows the user to get control
2457 and place breakpoints in initializer routines for
2458 dynamically loaded objects (among other things). */
2459 if (stop_on_solib_events)
c906108c 2460 {
104c1213
JM
2461 stop_stepping (ecs);
2462 return;
c906108c
SS
2463 }
2464
c5aa993b
JM
2465 /* If we stopped due to an explicit catchpoint, then the
2466 (see above) call to SOLIB_ADD pulled in any symbols
2467 from a newly-loaded library, if appropriate.
2468
2469 We do want the inferior to stop, but not where it is
2470 now, which is in the dynamic linker callback. Rather,
2471 we would like it stop in the user's program, just after
2472 the call that caused this catchpoint to trigger. That
2473 gives the user a more useful vantage from which to
2474 examine their program's state. */
2475 else if (what.main_action == BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK)
2476 {
2477 /* ??rehrauer: If I could figure out how to get the
2478 right return PC from here, we could just set a temp
2479 breakpoint and resume. I'm not sure we can without
2480 cracking open the dld's shared libraries and sniffing
2481 their unwind tables and text/data ranges, and that's
2482 not a terribly portable notion.
2483
2484 Until that time, we must step the inferior out of the
2485 dld callback, and also out of the dld itself (and any
2486 code or stubs in libdld.sl, such as "shl_load" and
2487 friends) until we reach non-dld code. At that point,
2488 we can stop stepping. */
2489 bpstat_get_triggered_catchpoints (stop_bpstat,
2490 &ecs->stepping_through_solib_catchpoints);
2491 ecs->stepping_through_solib_after_catch = 1;
2492
2493 /* Be sure to lift all breakpoints, so the inferior does
2494 actually step past this point... */
2495 ecs->another_trap = 1;
2496 break;
2497 }
2498 else
c906108c 2499 {
c5aa993b 2500 /* We want to step over this breakpoint, then keep going. */
cd0fc7c3 2501 ecs->another_trap = 1;
c5aa993b 2502 break;
c906108c 2503 }
c5aa993b
JM
2504 }
2505#endif
2506 break;
c906108c 2507
c5aa993b
JM
2508 case BPSTAT_WHAT_LAST:
2509 /* Not a real code, but listed here to shut up gcc -Wall. */
c906108c 2510
c5aa993b
JM
2511 case BPSTAT_WHAT_KEEP_CHECKING:
2512 break;
2513 }
2514 }
c906108c 2515
c5aa993b
JM
2516 /* We come here if we hit a breakpoint but should not
2517 stop for it. Possibly we also were stepping
2518 and should stop for that. So fall through and
2519 test for stepping. But, if not stepping,
2520 do not stop. */
c906108c 2521
c5aa993b
JM
2522 /* Are we stepping to get the inferior out of the dynamic
2523 linker's hook (and possibly the dld itself) after catching
2524 a shlib event? */
2525 if (ecs->stepping_through_solib_after_catch)
2526 {
2527#if defined(SOLIB_ADD)
2528 /* Have we reached our destination? If not, keep going. */
2529 if (SOLIB_IN_DYNAMIC_LINKER (ecs->pid, stop_pc))
2530 {
2531 ecs->another_trap = 1;
d4f3574e
SS
2532 keep_going (ecs);
2533 return;
c5aa993b
JM
2534 }
2535#endif
2536 /* Else, stop and report the catchpoint(s) whose triggering
2537 caused us to begin stepping. */
2538 ecs->stepping_through_solib_after_catch = 0;
2539 bpstat_clear (&stop_bpstat);
2540 stop_bpstat = bpstat_copy (ecs->stepping_through_solib_catchpoints);
2541 bpstat_clear (&ecs->stepping_through_solib_catchpoints);
2542 stop_print_frame = 1;
104c1213
JM
2543 stop_stepping (ecs);
2544 return;
c5aa993b 2545 }
c906108c 2546
c5aa993b
JM
2547 if (!CALL_DUMMY_BREAKPOINT_OFFSET_P)
2548 {
2549 /* This is the old way of detecting the end of the stack dummy.
2550 An architecture which defines CALL_DUMMY_BREAKPOINT_OFFSET gets
2551 handled above. As soon as we can test it on all of them, all
2552 architectures should define it. */
2553
2554 /* If this is the breakpoint at the end of a stack dummy,
2555 just stop silently, unless the user was doing an si/ni, in which
2556 case she'd better know what she's doing. */
2557
2558 if (CALL_DUMMY_HAS_COMPLETED (stop_pc, read_sp (),
2559 FRAME_FP (get_current_frame ()))
2560 && !step_range_end)
2561 {
c906108c 2562 stop_print_frame = 0;
c5aa993b
JM
2563 stop_stack_dummy = 1;
2564#ifdef HP_OS_BUG
2565 trap_expected_after_continue = 1;
2566#endif
104c1213
JM
2567 stop_stepping (ecs);
2568 return;
c5aa993b
JM
2569 }
2570 }
c906108c 2571
c5aa993b 2572 if (step_resume_breakpoint)
104c1213
JM
2573 {
2574 /* Having a step-resume breakpoint overrides anything
2575 else having to do with stepping commands until
2576 that breakpoint is reached. */
2577 /* I'm not sure whether this needs to be check_sigtramp2 or
2578 whether it could/should be keep_going. */
2579 check_sigtramp2 (ecs);
d4f3574e
SS
2580 keep_going (ecs);
2581 return;
104c1213
JM
2582 }
2583
c5aa993b 2584 if (step_range_end == 0)
104c1213
JM
2585 {
2586 /* Likewise if we aren't even stepping. */
2587 /* I'm not sure whether this needs to be check_sigtramp2 or
2588 whether it could/should be keep_going. */
2589 check_sigtramp2 (ecs);
d4f3574e
SS
2590 keep_going (ecs);
2591 return;
104c1213 2592 }
c5aa993b
JM
2593
2594 /* If stepping through a line, keep going if still within it.
2595
2596 Note that step_range_end is the address of the first instruction
2597 beyond the step range, and NOT the address of the last instruction
2598 within it! */
2599 if (stop_pc >= step_range_start
2600 && stop_pc < step_range_end)
2601 {
2602 /* We might be doing a BPSTAT_WHAT_SINGLE and getting a signal.
2603 So definately need to check for sigtramp here. */
104c1213 2604 check_sigtramp2 (ecs);
d4f3574e
SS
2605 keep_going (ecs);
2606 return;
c5aa993b 2607 }
c906108c 2608
c5aa993b 2609 /* We stepped out of the stepping range. */
c906108c 2610
c5aa993b
JM
2611 /* If we are stepping at the source level and entered the runtime
2612 loader dynamic symbol resolution code, we keep on single stepping
2613 until we exit the run time loader code and reach the callee's
2614 address. */
2615 if (step_over_calls < 0 && IN_SOLIB_DYNSYM_RESOLVE_CODE (stop_pc))
d4f3574e
SS
2616 {
2617 CORE_ADDR pc_after_resolver = SKIP_SOLIB_RESOLVER (stop_pc);
2618
2619 if (pc_after_resolver)
2620 {
2621 /* Set up a step-resume breakpoint at the address
2622 indicated by SKIP_SOLIB_RESOLVER. */
2623 struct symtab_and_line sr_sal;
2624 INIT_SAL (&sr_sal);
2625 sr_sal.pc = pc_after_resolver;
2626
2627 check_for_old_step_resume_breakpoint ();
2628 step_resume_breakpoint =
2629 set_momentary_breakpoint (sr_sal, NULL, bp_step_resume);
2630 if (breakpoints_inserted)
2631 insert_breakpoints ();
2632 }
2633
2634 keep_going (ecs);
2635 return;
2636 }
c906108c 2637
c5aa993b
JM
2638 /* We can't update step_sp every time through the loop, because
2639 reading the stack pointer would slow down stepping too much.
2640 But we can update it every time we leave the step range. */
2641 ecs->update_step_sp = 1;
c906108c 2642
c5aa993b
JM
2643 /* Did we just take a signal? */
2644 if (IN_SIGTRAMP (stop_pc, ecs->stop_func_name)
2645 && !IN_SIGTRAMP (prev_pc, prev_func_name)
2646 && INNER_THAN (read_sp (), step_sp))
2647 {
2648 /* We've just taken a signal; go until we are back to
2649 the point where we took it and one more. */
c906108c 2650
c5aa993b
JM
2651 /* Note: The test above succeeds not only when we stepped
2652 into a signal handler, but also when we step past the last
2653 statement of a signal handler and end up in the return stub
2654 of the signal handler trampoline. To distinguish between
2655 these two cases, check that the frame is INNER_THAN the
2656 previous one below. pai/1997-09-11 */
c906108c 2657
c906108c 2658
c5aa993b
JM
2659 {
2660 CORE_ADDR current_frame = FRAME_FP (get_current_frame ());
c906108c 2661
c5aa993b
JM
2662 if (INNER_THAN (current_frame, step_frame_address))
2663 {
2664 /* We have just taken a signal; go until we are back to
2665 the point where we took it and one more. */
c906108c 2666
c5aa993b
JM
2667 /* This code is needed at least in the following case:
2668 The user types "next" and then a signal arrives (before
2669 the "next" is done). */
c906108c 2670
c5aa993b
JM
2671 /* Note that if we are stopped at a breakpoint, then we need
2672 the step_resume breakpoint to override any breakpoints at
2673 the same location, so that we will still step over the
2674 breakpoint even though the signal happened. */
2675 struct symtab_and_line sr_sal;
c906108c 2676
c5aa993b
JM
2677 INIT_SAL (&sr_sal);
2678 sr_sal.symtab = NULL;
2679 sr_sal.line = 0;
2680 sr_sal.pc = prev_pc;
2681 /* We could probably be setting the frame to
2682 step_frame_address; I don't think anyone thought to
2683 try it. */
a0b3c4fd 2684 check_for_old_step_resume_breakpoint ();
c5aa993b
JM
2685 step_resume_breakpoint =
2686 set_momentary_breakpoint (sr_sal, NULL, bp_step_resume);
2687 if (breakpoints_inserted)
2688 insert_breakpoints ();
c906108c 2689 }
c5aa993b 2690 else
c906108c 2691 {
c5aa993b
JM
2692 /* We just stepped out of a signal handler and into
2693 its calling trampoline.
2694
d4f3574e 2695 Normally, we'd call step_over_function from
c5aa993b
JM
2696 here, but for some reason GDB can't unwind the
2697 stack correctly to find the real PC for the point
2698 user code where the signal trampoline will return
2699 -- FRAME_SAVED_PC fails, at least on HP-UX 10.20.
2700 But signal trampolines are pretty small stubs of
2701 code, anyway, so it's OK instead to just
2702 single-step out. Note: assuming such trampolines
2703 don't exhibit recursion on any platform... */
2704 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
2705 &ecs->stop_func_start,
2706 &ecs->stop_func_end);
2707 /* Readjust stepping range */
2708 step_range_start = ecs->stop_func_start;
2709 step_range_end = ecs->stop_func_end;
2710 ecs->stepping_through_sigtramp = 1;
c906108c 2711 }
c906108c
SS
2712 }
2713
c906108c 2714
c5aa993b
JM
2715 /* If this is stepi or nexti, make sure that the stepping range
2716 gets us past that instruction. */
2717 if (step_range_end == 1)
2718 /* FIXME: Does this run afoul of the code below which, if
2719 we step into the middle of a line, resets the stepping
2720 range? */
2721 step_range_end = (step_range_start = prev_pc) + 1;
c906108c 2722
c5aa993b 2723 ecs->remove_breakpoints_on_following_step = 1;
d4f3574e
SS
2724 keep_going (ecs);
2725 return;
c5aa993b 2726 }
c906108c 2727
c5aa993b
JM
2728 if (stop_pc == ecs->stop_func_start /* Quick test */
2729 || (in_prologue (stop_pc, ecs->stop_func_start) &&
2730 !IN_SOLIB_RETURN_TRAMPOLINE (stop_pc, ecs->stop_func_name))
2731 || IN_SOLIB_CALL_TRAMPOLINE (stop_pc, ecs->stop_func_name)
2732 || ecs->stop_func_name == 0)
2733 {
2734 /* It's a subroutine call. */
c906108c 2735
c5aa993b 2736 if (step_over_calls == 0)
c906108c 2737 {
c5aa993b
JM
2738 /* I presume that step_over_calls is only 0 when we're
2739 supposed to be stepping at the assembly language level
2740 ("stepi"). Just stop. */
2741 stop_step = 1;
11cf8741 2742 print_stop_reason (END_STEPPING_RANGE, 0);
104c1213
JM
2743 stop_stepping (ecs);
2744 return;
c5aa993b 2745 }
c906108c 2746
c5aa993b 2747 if (step_over_calls > 0 || IGNORE_HELPER_CALL (stop_pc))
d4f3574e
SS
2748 {
2749 /* We're doing a "next". */
d41707c8
MK
2750
2751 if (IN_SIGTRAMP (stop_pc, ecs->stop_func_name)
2752 && INNER_THAN (step_frame_address, read_sp()))
2753 /* We stepped out of a signal handler, and into its
2754 calling trampoline. This is misdetected as a
2755 subroutine call, but stepping over the signal
2756 trampoline isn't such a bad idea. In order to do
2757 that, we have to ignore the value in
2758 step_frame_address, since that doesn't represent the
2759 frame that'll reach when we return from the signal
2760 trampoline. Otherwise we'll probably continue to the
2761 end of the program. */
2762 step_frame_address = 0;
2763
d4f3574e
SS
2764 step_over_function (ecs);
2765 keep_going (ecs);
2766 return;
2767 }
c5aa993b
JM
2768
2769 /* If we are in a function call trampoline (a stub between
2770 the calling routine and the real function), locate the real
2771 function. That's what tells us (a) whether we want to step
2772 into it at all, and (b) what prologue we want to run to
2773 the end of, if we do step into it. */
2774 tmp = SKIP_TRAMPOLINE_CODE (stop_pc);
2775 if (tmp != 0)
2776 ecs->stop_func_start = tmp;
2777 else
2778 {
2779 tmp = DYNAMIC_TRAMPOLINE_NEXTPC (stop_pc);
2780 if (tmp)
c906108c 2781 {
c5aa993b
JM
2782 struct symtab_and_line xxx;
2783 /* Why isn't this s_a_l called "sr_sal", like all of the
2784 other s_a_l's where this code is duplicated? */
2785 INIT_SAL (&xxx); /* initialize to zeroes */
2786 xxx.pc = tmp;
2787 xxx.section = find_pc_overlay (xxx.pc);
a0b3c4fd 2788 check_for_old_step_resume_breakpoint ();
c906108c 2789 step_resume_breakpoint =
c5aa993b
JM
2790 set_momentary_breakpoint (xxx, NULL, bp_step_resume);
2791 insert_breakpoints ();
d4f3574e
SS
2792 keep_going (ecs);
2793 return;
c906108c
SS
2794 }
2795 }
2796
c5aa993b
JM
2797 /* If we have line number information for the function we
2798 are thinking of stepping into, step into it.
c906108c 2799
c5aa993b
JM
2800 If there are several symtabs at that PC (e.g. with include
2801 files), just want to know whether *any* of them have line
2802 numbers. find_pc_line handles this. */
2803 {
2804 struct symtab_and_line tmp_sal;
c906108c 2805
c5aa993b
JM
2806 tmp_sal = find_pc_line (ecs->stop_func_start, 0);
2807 if (tmp_sal.line != 0)
c2c6d25f
JM
2808 {
2809 step_into_function (ecs);
2810 return;
2811 }
c906108c 2812 }
d4f3574e
SS
2813 step_over_function (ecs);
2814 keep_going (ecs);
2815 return;
c906108c 2816
c5aa993b 2817 }
c906108c 2818
c5aa993b 2819 /* We've wandered out of the step range. */
c906108c 2820
c5aa993b 2821 ecs->sal = find_pc_line (stop_pc, 0);
c906108c 2822
c5aa993b
JM
2823 if (step_range_end == 1)
2824 {
2825 /* It is stepi or nexti. We always want to stop stepping after
2826 one instruction. */
2827 stop_step = 1;
11cf8741 2828 print_stop_reason (END_STEPPING_RANGE, 0);
104c1213
JM
2829 stop_stepping (ecs);
2830 return;
c5aa993b 2831 }
c906108c 2832
c5aa993b
JM
2833 /* If we're in the return path from a shared library trampoline,
2834 we want to proceed through the trampoline when stepping. */
2835 if (IN_SOLIB_RETURN_TRAMPOLINE (stop_pc, ecs->stop_func_name))
2836 {
2837 CORE_ADDR tmp;
c906108c 2838
c5aa993b
JM
2839 /* Determine where this trampoline returns. */
2840 tmp = SKIP_TRAMPOLINE_CODE (stop_pc);
c906108c 2841
c5aa993b
JM
2842 /* Only proceed through if we know where it's going. */
2843 if (tmp)
2844 {
2845 /* And put the step-breakpoint there and go until there. */
2846 struct symtab_and_line sr_sal;
c906108c 2847
c5aa993b
JM
2848 INIT_SAL (&sr_sal); /* initialize to zeroes */
2849 sr_sal.pc = tmp;
2850 sr_sal.section = find_pc_overlay (sr_sal.pc);
2851 /* Do not specify what the fp should be when we stop
2852 since on some machines the prologue
2853 is where the new fp value is established. */
a0b3c4fd 2854 check_for_old_step_resume_breakpoint ();
c5aa993b
JM
2855 step_resume_breakpoint =
2856 set_momentary_breakpoint (sr_sal, NULL, bp_step_resume);
2857 if (breakpoints_inserted)
2858 insert_breakpoints ();
c906108c 2859
c5aa993b
JM
2860 /* Restart without fiddling with the step ranges or
2861 other state. */
d4f3574e
SS
2862 keep_going (ecs);
2863 return;
c5aa993b
JM
2864 }
2865 }
c906108c 2866
c5aa993b 2867 if (ecs->sal.line == 0)
c906108c 2868 {
c5aa993b
JM
2869 /* We have no line number information. That means to stop
2870 stepping (does this always happen right after one instruction,
2871 when we do "s" in a function with no line numbers,
2872 or can this happen as a result of a return or longjmp?). */
2873 stop_step = 1;
11cf8741 2874 print_stop_reason (END_STEPPING_RANGE, 0);
104c1213
JM
2875 stop_stepping (ecs);
2876 return;
c906108c
SS
2877 }
2878
c5aa993b
JM
2879 if ((stop_pc == ecs->sal.pc)
2880 && (ecs->current_line != ecs->sal.line || ecs->current_symtab != ecs->sal.symtab))
2881 {
2882 /* We are at the start of a different line. So stop. Note that
2883 we don't stop if we step into the middle of a different line.
2884 That is said to make things like for (;;) statements work
2885 better. */
2886 stop_step = 1;
11cf8741 2887 print_stop_reason (END_STEPPING_RANGE, 0);
104c1213
JM
2888 stop_stepping (ecs);
2889 return;
c5aa993b 2890 }
c906108c 2891
c5aa993b 2892 /* We aren't done stepping.
c906108c 2893
c5aa993b
JM
2894 Optimize by setting the stepping range to the line.
2895 (We might not be in the original line, but if we entered a
2896 new line in mid-statement, we continue stepping. This makes
2897 things like for(;;) statements work better.) */
c906108c 2898
c5aa993b
JM
2899 if (ecs->stop_func_end && ecs->sal.end >= ecs->stop_func_end)
2900 {
2901 /* If this is the last line of the function, don't keep stepping
2902 (it would probably step us out of the function).
2903 This is particularly necessary for a one-line function,
2904 in which after skipping the prologue we better stop even though
2905 we will be in mid-line. */
2906 stop_step = 1;
11cf8741 2907 print_stop_reason (END_STEPPING_RANGE, 0);
104c1213
JM
2908 stop_stepping (ecs);
2909 return;
c5aa993b
JM
2910 }
2911 step_range_start = ecs->sal.pc;
2912 step_range_end = ecs->sal.end;
2913 step_frame_address = FRAME_FP (get_current_frame ());
2914 ecs->current_line = ecs->sal.line;
2915 ecs->current_symtab = ecs->sal.symtab;
2916
2917 /* In the case where we just stepped out of a function into the middle
2918 of a line of the caller, continue stepping, but step_frame_address
2919 must be modified to current frame */
2920 {
2921 CORE_ADDR current_frame = FRAME_FP (get_current_frame ());
2922 if (!(INNER_THAN (current_frame, step_frame_address)))
2923 step_frame_address = current_frame;
2924 }
c906108c 2925
d4f3574e 2926 keep_going (ecs);
cd0fc7c3 2927
104c1213 2928 } /* extra brace, to preserve old indentation */
104c1213
JM
2929}
2930
2931/* Are we in the middle of stepping? */
2932
2933static int
2934currently_stepping (struct execution_control_state *ecs)
2935{
2936 return ((through_sigtramp_breakpoint == NULL
2937 && !ecs->handling_longjmp
2938 && ((step_range_end && step_resume_breakpoint == NULL)
2939 || trap_expected))
2940 || ecs->stepping_through_solib_after_catch
2941 || bpstat_should_step ());
2942}
c906108c 2943
104c1213
JM
2944static void
2945check_sigtramp2 (struct execution_control_state *ecs)
2946{
2947 if (trap_expected
2948 && IN_SIGTRAMP (stop_pc, ecs->stop_func_name)
2949 && !IN_SIGTRAMP (prev_pc, prev_func_name)
2950 && INNER_THAN (read_sp (), step_sp))
2951 {
2952 /* What has happened here is that we have just stepped the
2953 inferior with a signal (because it is a signal which
2954 shouldn't make us stop), thus stepping into sigtramp.
2955
2956 So we need to set a step_resume_break_address breakpoint and
2957 continue until we hit it, and then step. FIXME: This should
2958 be more enduring than a step_resume breakpoint; we should
2959 know that we will later need to keep going rather than
2960 re-hitting the breakpoint here (see the testsuite,
2961 gdb.base/signals.exp where it says "exceedingly difficult"). */
2962
2963 struct symtab_and_line sr_sal;
2964
2965 INIT_SAL (&sr_sal); /* initialize to zeroes */
2966 sr_sal.pc = prev_pc;
2967 sr_sal.section = find_pc_overlay (sr_sal.pc);
2968 /* We perhaps could set the frame if we kept track of what the
2969 frame corresponding to prev_pc was. But we don't, so don't. */
2970 through_sigtramp_breakpoint =
2971 set_momentary_breakpoint (sr_sal, NULL, bp_through_sigtramp);
2972 if (breakpoints_inserted)
2973 insert_breakpoints ();
cd0fc7c3 2974
104c1213
JM
2975 ecs->remove_breakpoints_on_following_step = 1;
2976 ecs->another_trap = 1;
2977 }
2978}
2979
c2c6d25f
JM
2980/* Subroutine call with source code we should not step over. Do step
2981 to the first line of code in it. */
2982
2983static void
2984step_into_function (struct execution_control_state *ecs)
2985{
2986 struct symtab *s;
2987 struct symtab_and_line sr_sal;
2988
2989 s = find_pc_symtab (stop_pc);
2990 if (s && s->language != language_asm)
2991 ecs->stop_func_start = SKIP_PROLOGUE (ecs->stop_func_start);
2992
2993 ecs->sal = find_pc_line (ecs->stop_func_start, 0);
2994 /* Use the step_resume_break to step until the end of the prologue,
2995 even if that involves jumps (as it seems to on the vax under
2996 4.2). */
2997 /* If the prologue ends in the middle of a source line, continue to
2998 the end of that source line (if it is still within the function).
2999 Otherwise, just go to end of prologue. */
3000#ifdef PROLOGUE_FIRSTLINE_OVERLAP
3001 /* no, don't either. It skips any code that's legitimately on the
3002 first line. */
3003#else
3004 if (ecs->sal.end
3005 && ecs->sal.pc != ecs->stop_func_start
3006 && ecs->sal.end < ecs->stop_func_end)
3007 ecs->stop_func_start = ecs->sal.end;
3008#endif
3009
3010 if (ecs->stop_func_start == stop_pc)
3011 {
3012 /* We are already there: stop now. */
3013 stop_step = 1;
11cf8741 3014 print_stop_reason (END_STEPPING_RANGE, 0);
c2c6d25f
JM
3015 stop_stepping (ecs);
3016 return;
3017 }
3018 else
3019 {
3020 /* Put the step-breakpoint there and go until there. */
3021 INIT_SAL (&sr_sal); /* initialize to zeroes */
3022 sr_sal.pc = ecs->stop_func_start;
3023 sr_sal.section = find_pc_overlay (ecs->stop_func_start);
3024 /* Do not specify what the fp should be when we stop since on
3025 some machines the prologue is where the new fp value is
3026 established. */
3027 check_for_old_step_resume_breakpoint ();
3028 step_resume_breakpoint =
3029 set_momentary_breakpoint (sr_sal, NULL, bp_step_resume);
3030 if (breakpoints_inserted)
3031 insert_breakpoints ();
3032
3033 /* And make sure stepping stops right away then. */
3034 step_range_end = step_range_start;
3035 }
3036 keep_going (ecs);
3037}
d4f3574e
SS
3038
3039/* We've just entered a callee, and we wish to resume until it returns
3040 to the caller. Setting a step_resume breakpoint on the return
3041 address will catch a return from the callee.
3042
3043 However, if the callee is recursing, we want to be careful not to
3044 catch returns of those recursive calls, but only of THIS instance
3045 of the call.
3046
3047 To do this, we set the step_resume bp's frame to our current
3048 caller's frame (step_frame_address, which is set by the "next" or
3049 "until" command, before execution begins). */
3050
3051static void
3052step_over_function (struct execution_control_state *ecs)
3053{
3054 struct symtab_and_line sr_sal;
3055
3056 INIT_SAL (&sr_sal); /* initialize to zeros */
3057 sr_sal.pc = ADDR_BITS_REMOVE (SAVED_PC_AFTER_CALL (get_current_frame ()));
3058 sr_sal.section = find_pc_overlay (sr_sal.pc);
3059
3060 check_for_old_step_resume_breakpoint ();
3061 step_resume_breakpoint =
3062 set_momentary_breakpoint (sr_sal, get_current_frame (), bp_step_resume);
3063
d41707c8 3064 if (step_frame_address && !IN_SOLIB_DYNSYM_RESOLVE_CODE (sr_sal.pc))
d4f3574e
SS
3065 step_resume_breakpoint->frame = step_frame_address;
3066
3067 if (breakpoints_inserted)
3068 insert_breakpoints ();
3069}
3070
104c1213
JM
3071static void
3072stop_stepping (struct execution_control_state *ecs)
3073{
c906108c
SS
3074 if (target_has_execution)
3075 {
3076 /* Are we stopping for a vfork event? We only stop when we see
3077 the child's event. However, we may not yet have seen the
104c1213
JM
3078 parent's event. And, inferior_pid is still set to the
3079 parent's pid, until we resume again and follow either the
3080 parent or child.
c906108c
SS
3081
3082 To ensure that we can really touch inferior_pid (aka, the
3083 parent process) -- which calls to functions like read_pc
3084 implicitly do -- wait on the parent if necessary. */
3085 if ((pending_follow.kind == TARGET_WAITKIND_VFORKED)
3086 && !pending_follow.fork_event.saw_parent_fork)
3087 {
3088 int parent_pid;
3089
3090 do
3091 {
3092 if (target_wait_hook)
cd0fc7c3 3093 parent_pid = target_wait_hook (-1, &(ecs->ws));
c906108c 3094 else
cd0fc7c3 3095 parent_pid = target_wait (-1, &(ecs->ws));
c906108c
SS
3096 }
3097 while (parent_pid != inferior_pid);
3098 }
3099
c906108c 3100 /* Assuming the inferior still exists, set these up for next
c5aa993b
JM
3101 time, just like we did above if we didn't break out of the
3102 loop. */
c906108c 3103 prev_pc = read_pc ();
cd0fc7c3
SS
3104 prev_func_start = ecs->stop_func_start;
3105 prev_func_name = ecs->stop_func_name;
c906108c 3106 }
104c1213 3107
cd0fc7c3
SS
3108 /* Let callers know we don't want to wait for the inferior anymore. */
3109 ecs->wait_some_more = 0;
3110}
3111
d4f3574e
SS
3112/* This function handles various cases where we need to continue
3113 waiting for the inferior. */
3114/* (Used to be the keep_going: label in the old wait_for_inferior) */
3115
3116static void
3117keep_going (struct execution_control_state *ecs)
3118{
3119 /* ??rehrauer: ttrace on HP-UX theoretically allows one to debug a
3120 vforked child between its creation and subsequent exit or call to
3121 exec(). However, I had big problems in this rather creaky exec
3122 engine, getting that to work. The fundamental problem is that
3123 I'm trying to debug two processes via an engine that only
3124 understands a single process with possibly multiple threads.
3125
3126 Hence, this spot is known to have problems when
3127 target_can_follow_vfork_prior_to_exec returns 1. */
3128
3129 /* Save the pc before execution, to compare with pc after stop. */
3130 prev_pc = read_pc (); /* Might have been DECR_AFTER_BREAK */
3131 prev_func_start = ecs->stop_func_start; /* Ok, since if DECR_PC_AFTER
3132 BREAK is defined, the
3133 original pc would not have
3134 been at the start of a
3135 function. */
3136 prev_func_name = ecs->stop_func_name;
3137
3138 if (ecs->update_step_sp)
3139 step_sp = read_sp ();
3140 ecs->update_step_sp = 0;
3141
3142 /* If we did not do break;, it means we should keep running the
3143 inferior and not return to debugger. */
3144
3145 if (trap_expected && stop_signal != TARGET_SIGNAL_TRAP)
3146 {
3147 /* We took a signal (which we are supposed to pass through to
3148 the inferior, else we'd have done a break above) and we
3149 haven't yet gotten our trap. Simply continue. */
3150 resume (currently_stepping (ecs), stop_signal);
3151 }
3152 else
3153 {
3154 /* Either the trap was not expected, but we are continuing
3155 anyway (the user asked that this signal be passed to the
3156 child)
3157 -- or --
3158 The signal was SIGTRAP, e.g. it was our signal, but we
3159 decided we should resume from it.
3160
3161 We're going to run this baby now!
3162
3163 Insert breakpoints now, unless we are trying to one-proceed
3164 past a breakpoint. */
3165 /* If we've just finished a special step resume and we don't
3166 want to hit a breakpoint, pull em out. */
3167 if (step_resume_breakpoint == NULL
3168 && through_sigtramp_breakpoint == NULL
3169 && ecs->remove_breakpoints_on_following_step)
3170 {
3171 ecs->remove_breakpoints_on_following_step = 0;
3172 remove_breakpoints ();
3173 breakpoints_inserted = 0;
3174 }
3175 else if (!breakpoints_inserted &&
3176 (through_sigtramp_breakpoint != NULL || !ecs->another_trap))
3177 {
3178 breakpoints_failed = insert_breakpoints ();
3179 if (breakpoints_failed)
3180 {
3181 stop_stepping (ecs);
3182 return;
3183 }
3184 breakpoints_inserted = 1;
3185 }
3186
3187 trap_expected = ecs->another_trap;
3188
3189 /* Do not deliver SIGNAL_TRAP (except when the user explicitly
3190 specifies that such a signal should be delivered to the
3191 target program).
3192
3193 Typically, this would occure when a user is debugging a
3194 target monitor on a simulator: the target monitor sets a
3195 breakpoint; the simulator encounters this break-point and
3196 halts the simulation handing control to GDB; GDB, noteing
3197 that the break-point isn't valid, returns control back to the
3198 simulator; the simulator then delivers the hardware
3199 equivalent of a SIGNAL_TRAP to the program being debugged. */
3200
3201 if (stop_signal == TARGET_SIGNAL_TRAP
3202 && !signal_program[stop_signal])
3203 stop_signal = TARGET_SIGNAL_0;
3204
3205#ifdef SHIFT_INST_REGS
3206 /* I'm not sure when this following segment applies. I do know,
3207 now, that we shouldn't rewrite the regs when we were stopped
3208 by a random signal from the inferior process. */
3209 /* FIXME: Shouldn't this be based on the valid bit of the SXIP?
3210 (this is only used on the 88k). */
3211
3212 if (!bpstat_explains_signal (stop_bpstat)
3213 && (stop_signal != TARGET_SIGNAL_CHLD)
3214 && !stopped_by_random_signal)
3215 SHIFT_INST_REGS ();
3216#endif /* SHIFT_INST_REGS */
3217
3218 resume (currently_stepping (ecs), stop_signal);
3219 }
3220
3221 prepare_to_wait (ecs);
3222}
3223
104c1213
JM
3224/* This function normally comes after a resume, before
3225 handle_inferior_event exits. It takes care of any last bits of
3226 housekeeping, and sets the all-important wait_some_more flag. */
cd0fc7c3 3227
104c1213
JM
3228static void
3229prepare_to_wait (struct execution_control_state *ecs)
cd0fc7c3 3230{
104c1213
JM
3231 if (ecs->infwait_state == infwait_normal_state)
3232 {
3233 overlay_cache_invalid = 1;
3234
3235 /* We have to invalidate the registers BEFORE calling
3236 target_wait because they can be loaded from the target while
3237 in target_wait. This makes remote debugging a bit more
3238 efficient for those targets that provide critical registers
3239 as part of their normal status mechanism. */
3240
3241 registers_changed ();
3242 ecs->waiton_pid = -1;
3243 ecs->wp = &(ecs->ws);
3244 }
3245 /* This is the old end of the while loop. Let everybody know we
3246 want to wait for the inferior some more and get called again
3247 soon. */
3248 ecs->wait_some_more = 1;
c906108c 3249}
11cf8741
JM
3250
3251/* Print why the inferior has stopped. We always print something when
3252 the inferior exits, or receives a signal. The rest of the cases are
3253 dealt with later on in normal_stop() and print_it_typical(). Ideally
3254 there should be a call to this function from handle_inferior_event()
3255 each time stop_stepping() is called.*/
3256static void
3257print_stop_reason (enum inferior_stop_reason stop_reason, int stop_info)
3258{
3259 switch (stop_reason)
3260 {
3261 case STOP_UNKNOWN:
3262 /* We don't deal with these cases from handle_inferior_event()
3263 yet. */
3264 break;
3265 case END_STEPPING_RANGE:
3266 /* We are done with a step/next/si/ni command. */
3267 /* For now print nothing. */
fb40c209
AC
3268#ifdef UI_OUT
3269 /* Print a message only if not in the middle of doing a "step n"
3270 operation for n > 1 */
3271 if (!step_multi || !stop_step)
3272 if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3273 ui_out_field_string (uiout, "reason", "end-stepping-range");
3274#endif
11cf8741
JM
3275 break;
3276 case BREAKPOINT_HIT:
3277 /* We found a breakpoint. */
3278 /* For now print nothing. */
3279 break;
3280 case SIGNAL_EXITED:
3281 /* The inferior was terminated by a signal. */
8b93c638
JM
3282#ifdef UI_OUT
3283 annotate_signalled ();
fb40c209
AC
3284 if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3285 ui_out_field_string (uiout, "reason", "exited-signalled");
8b93c638
JM
3286 ui_out_text (uiout, "\nProgram terminated with signal ");
3287 annotate_signal_name ();
3288 ui_out_field_string (uiout, "signal-name", target_signal_to_name (stop_info));
3289 annotate_signal_name_end ();
3290 ui_out_text (uiout, ", ");
3291 annotate_signal_string ();
3292 ui_out_field_string (uiout, "signal-meaning", target_signal_to_string (stop_info));
3293 annotate_signal_string_end ();
3294 ui_out_text (uiout, ".\n");
3295 ui_out_text (uiout, "The program no longer exists.\n");
3296#else
11cf8741
JM
3297 annotate_signalled ();
3298 printf_filtered ("\nProgram terminated with signal ");
3299 annotate_signal_name ();
3300 printf_filtered ("%s", target_signal_to_name (stop_info));
3301 annotate_signal_name_end ();
3302 printf_filtered (", ");
3303 annotate_signal_string ();
3304 printf_filtered ("%s", target_signal_to_string (stop_info));
3305 annotate_signal_string_end ();
3306 printf_filtered (".\n");
3307
3308 printf_filtered ("The program no longer exists.\n");
3309 gdb_flush (gdb_stdout);
8b93c638 3310#endif
11cf8741
JM
3311 break;
3312 case EXITED:
3313 /* The inferior program is finished. */
8b93c638
JM
3314#ifdef UI_OUT
3315 annotate_exited (stop_info);
3316 if (stop_info)
3317 {
fb40c209
AC
3318 if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3319 ui_out_field_string (uiout, "reason", "exited");
8b93c638
JM
3320 ui_out_text (uiout, "\nProgram exited with code ");
3321 ui_out_field_fmt (uiout, "exit-code", "0%o", (unsigned int) stop_info);
3322 ui_out_text (uiout, ".\n");
3323 }
3324 else
3325 {
fb40c209
AC
3326 if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3327 ui_out_field_string (uiout, "reason", "exited-normally");
8b93c638
JM
3328 ui_out_text (uiout, "\nProgram exited normally.\n");
3329 }
3330#else
11cf8741
JM
3331 annotate_exited (stop_info);
3332 if (stop_info)
3333 printf_filtered ("\nProgram exited with code 0%o.\n",
3334 (unsigned int) stop_info);
3335 else
3336 printf_filtered ("\nProgram exited normally.\n");
8b93c638 3337#endif
11cf8741
JM
3338 break;
3339 case SIGNAL_RECEIVED:
3340 /* Signal received. The signal table tells us to print about
3341 it. */
8b93c638
JM
3342#ifdef UI_OUT
3343 annotate_signal ();
3344 ui_out_text (uiout, "\nProgram received signal ");
3345 annotate_signal_name ();
3346 ui_out_field_string (uiout, "signal-name", target_signal_to_name (stop_info));
3347 annotate_signal_name_end ();
3348 ui_out_text (uiout, ", ");
3349 annotate_signal_string ();
3350 ui_out_field_string (uiout, "signal-meaning", target_signal_to_string (stop_info));
3351 annotate_signal_string_end ();
3352 ui_out_text (uiout, ".\n");
3353#else
11cf8741
JM
3354 annotate_signal ();
3355 printf_filtered ("\nProgram received signal ");
3356 annotate_signal_name ();
3357 printf_filtered ("%s", target_signal_to_name (stop_info));
3358 annotate_signal_name_end ();
3359 printf_filtered (", ");
3360 annotate_signal_string ();
3361 printf_filtered ("%s", target_signal_to_string (stop_info));
3362 annotate_signal_string_end ();
3363 printf_filtered (".\n");
3364 gdb_flush (gdb_stdout);
8b93c638 3365#endif
11cf8741
JM
3366 break;
3367 default:
3368 internal_error ("print_stop_reason: unrecognized enum value");
3369 break;
3370 }
3371}
c906108c 3372\f
43ff13b4 3373
c906108c
SS
3374/* Here to return control to GDB when the inferior stops for real.
3375 Print appropriate messages, remove breakpoints, give terminal our modes.
3376
3377 STOP_PRINT_FRAME nonzero means print the executing frame
3378 (pc, function, args, file, line number and line text).
3379 BREAKPOINTS_FAILED nonzero means stop was due to error
3380 attempting to insert breakpoints. */
3381
3382void
96baa820 3383normal_stop (void)
c906108c 3384{
c906108c
SS
3385 /* As with the notification of thread events, we want to delay
3386 notifying the user that we've switched thread context until
3387 the inferior actually stops.
3388
3389 (Note that there's no point in saying anything if the inferior
3390 has exited!) */
c3f6f71d 3391 if ((previous_inferior_pid != inferior_pid)
7a292a7a 3392 && target_has_execution)
c906108c
SS
3393 {
3394 target_terminal_ours_for_output ();
c3f6f71d 3395 printf_filtered ("[Switching to %s]\n",
c906108c 3396 target_pid_or_tid_to_str (inferior_pid));
c3f6f71d 3397 previous_inferior_pid = inferior_pid;
c906108c 3398 }
c906108c
SS
3399
3400 /* Make sure that the current_frame's pc is correct. This
3401 is a correction for setting up the frame info before doing
3402 DECR_PC_AFTER_BREAK */
3403 if (target_has_execution && get_current_frame ())
3404 (get_current_frame ())->pc = read_pc ();
3405
3406 if (breakpoints_failed)
3407 {
3408 target_terminal_ours_for_output ();
010a3cd9 3409 print_sys_errmsg ("While inserting breakpoints", breakpoints_failed);
c906108c 3410 printf_filtered ("Stopped; cannot insert breakpoints.\n\
010a3cd9
EZ
3411The same program may be running in another process,\n\
3412or you may have requested too many hardware breakpoints\n\
3413and/or watchpoints.\n");
c906108c
SS
3414 }
3415
3416 if (target_has_execution && breakpoints_inserted)
3417 {
3418 if (remove_breakpoints ())
3419 {
3420 target_terminal_ours_for_output ();
3421 printf_filtered ("Cannot remove breakpoints because ");
3422 printf_filtered ("program is no longer writable.\n");
3423 printf_filtered ("It might be running in another process.\n");
3424 printf_filtered ("Further execution is probably impossible.\n");
3425 }
3426 }
3427 breakpoints_inserted = 0;
3428
3429 /* Delete the breakpoint we stopped at, if it wants to be deleted.
3430 Delete any breakpoint that is to be deleted at the next stop. */
3431
3432 breakpoint_auto_delete (stop_bpstat);
3433
3434 /* If an auto-display called a function and that got a signal,
3435 delete that auto-display to avoid an infinite recursion. */
3436
3437 if (stopped_by_random_signal)
3438 disable_current_display ();
3439
3440 /* Don't print a message if in the middle of doing a "step n"
3441 operation for n > 1 */
3442 if (step_multi && stop_step)
3443 goto done;
3444
3445 target_terminal_ours ();
3446
c906108c
SS
3447 /* Look up the hook_stop and run it if it exists. */
3448
3449 if (stop_command && stop_command->hook)
3450 {
3451 catch_errors (hook_stop_stub, stop_command->hook,
3452 "Error while running hook_stop:\n", RETURN_MASK_ALL);
3453 }
3454
3455 if (!target_has_stack)
3456 {
3457
3458 goto done;
3459 }
3460
3461 /* Select innermost stack frame - i.e., current frame is frame 0,
3462 and current location is based on that.
3463 Don't do this on return from a stack dummy routine,
3464 or if the program has exited. */
3465
3466 if (!stop_stack_dummy)
3467 {
3468 select_frame (get_current_frame (), 0);
3469
3470 /* Print current location without a level number, if
c5aa993b
JM
3471 we have changed functions or hit a breakpoint.
3472 Print source line if we have one.
3473 bpstat_print() contains the logic deciding in detail
3474 what to print, based on the event(s) that just occurred. */
c906108c 3475
d082b2bb
AC
3476 if (stop_print_frame
3477 && selected_frame)
c906108c
SS
3478 {
3479 int bpstat_ret;
3480 int source_flag;
917317f4 3481 int do_frame_printing = 1;
c906108c
SS
3482
3483 bpstat_ret = bpstat_print (stop_bpstat);
917317f4
JM
3484 switch (bpstat_ret)
3485 {
3486 case PRINT_UNKNOWN:
3487 if (stop_step
3488 && step_frame_address == FRAME_FP (get_current_frame ())
3489 && step_start_function == find_pc_function (stop_pc))
c5394b80 3490 source_flag = SRC_LINE; /* finished step, just print source line */
917317f4 3491 else
c5394b80 3492 source_flag = SRC_AND_LOC; /* print location and source line */
917317f4
JM
3493 break;
3494 case PRINT_SRC_AND_LOC:
c5394b80 3495 source_flag = SRC_AND_LOC; /* print location and source line */
917317f4
JM
3496 break;
3497 case PRINT_SRC_ONLY:
c5394b80 3498 source_flag = SRC_LINE;
917317f4
JM
3499 break;
3500 case PRINT_NOTHING:
3501 do_frame_printing = 0;
3502 break;
3503 default:
3504 internal_error ("Unknown value.");
3505 }
fb40c209
AC
3506#ifdef UI_OUT
3507 /* For mi, have the same behavior every time we stop:
3508 print everything but the source line. */
3509 if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3510 source_flag = LOC_AND_ADDRESS;
3511#endif
c906108c 3512
fb40c209
AC
3513#ifdef UI_OUT
3514 if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3515 ui_out_field_int (uiout, "thread-id", pid_to_thread_id (inferior_pid));
3516#endif
c906108c
SS
3517 /* The behavior of this routine with respect to the source
3518 flag is:
c5394b80
JM
3519 SRC_LINE: Print only source line
3520 LOCATION: Print only location
3521 SRC_AND_LOC: Print location and source line */
917317f4
JM
3522 if (do_frame_printing)
3523 show_and_print_stack_frame (selected_frame, -1, source_flag);
c906108c
SS
3524
3525 /* Display the auto-display expressions. */
3526 do_displays ();
3527 }
3528 }
3529
3530 /* Save the function value return registers, if we care.
3531 We might be about to restore their previous contents. */
3532 if (proceed_to_finish)
3533 read_register_bytes (0, stop_registers, REGISTER_BYTES);
3534
3535 if (stop_stack_dummy)
3536 {
3537 /* Pop the empty frame that contains the stack dummy.
3538 POP_FRAME ends with a setting of the current frame, so we
c5aa993b 3539 can use that next. */
c906108c
SS
3540 POP_FRAME;
3541 /* Set stop_pc to what it was before we called the function.
c5aa993b
JM
3542 Can't rely on restore_inferior_status because that only gets
3543 called if we don't stop in the called function. */
c906108c
SS
3544 stop_pc = read_pc ();
3545 select_frame (get_current_frame (), 0);
3546 }
3547
3548
3549 TUIDO (((TuiOpaqueFuncPtr) tui_vCheckDataValues, selected_frame));
3550
3551done:
3552 annotate_stopped ();
3553}
3554
3555static int
96baa820 3556hook_stop_stub (void *cmd)
c906108c
SS
3557{
3558 execute_user_command ((struct cmd_list_element *) cmd, 0);
3559 return (0);
3560}
3561\f
c5aa993b 3562int
96baa820 3563signal_stop_state (int signo)
c906108c
SS
3564{
3565 return signal_stop[signo];
3566}
3567
c5aa993b 3568int
96baa820 3569signal_print_state (int signo)
c906108c
SS
3570{
3571 return signal_print[signo];
3572}
3573
c5aa993b 3574int
96baa820 3575signal_pass_state (int signo)
c906108c
SS
3576{
3577 return signal_program[signo];
3578}
3579
d4f3574e
SS
3580int signal_stop_update (signo, state)
3581 int signo;
3582 int state;
3583{
3584 int ret = signal_stop[signo];
3585 signal_stop[signo] = state;
3586 return ret;
3587}
3588
3589int signal_print_update (signo, state)
3590 int signo;
3591 int state;
3592{
3593 int ret = signal_print[signo];
3594 signal_print[signo] = state;
3595 return ret;
3596}
3597
3598int signal_pass_update (signo, state)
3599 int signo;
3600 int state;
3601{
3602 int ret = signal_program[signo];
3603 signal_program[signo] = state;
3604 return ret;
3605}
3606
c906108c 3607static void
96baa820 3608sig_print_header (void)
c906108c
SS
3609{
3610 printf_filtered ("\
3611Signal Stop\tPrint\tPass to program\tDescription\n");
3612}
3613
3614static void
96baa820 3615sig_print_info (enum target_signal oursig)
c906108c
SS
3616{
3617 char *name = target_signal_to_name (oursig);
3618 int name_padding = 13 - strlen (name);
96baa820 3619
c906108c
SS
3620 if (name_padding <= 0)
3621 name_padding = 0;
3622
3623 printf_filtered ("%s", name);
3624 printf_filtered ("%*.*s ", name_padding, name_padding,
3625 " ");
3626 printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
3627 printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
3628 printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
3629 printf_filtered ("%s\n", target_signal_to_string (oursig));
3630}
3631
3632/* Specify how various signals in the inferior should be handled. */
3633
3634static void
96baa820 3635handle_command (char *args, int from_tty)
c906108c
SS
3636{
3637 char **argv;
3638 int digits, wordlen;
3639 int sigfirst, signum, siglast;
3640 enum target_signal oursig;
3641 int allsigs;
3642 int nsigs;
3643 unsigned char *sigs;
3644 struct cleanup *old_chain;
3645
3646 if (args == NULL)
3647 {
3648 error_no_arg ("signal to handle");
3649 }
3650
3651 /* Allocate and zero an array of flags for which signals to handle. */
3652
3653 nsigs = (int) TARGET_SIGNAL_LAST;
3654 sigs = (unsigned char *) alloca (nsigs);
3655 memset (sigs, 0, nsigs);
3656
3657 /* Break the command line up into args. */
3658
3659 argv = buildargv (args);
3660 if (argv == NULL)
3661 {
3662 nomem (0);
3663 }
7a292a7a 3664 old_chain = make_cleanup_freeargv (argv);
c906108c
SS
3665
3666 /* Walk through the args, looking for signal oursigs, signal names, and
3667 actions. Signal numbers and signal names may be interspersed with
3668 actions, with the actions being performed for all signals cumulatively
3669 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
3670
3671 while (*argv != NULL)
3672 {
3673 wordlen = strlen (*argv);
3674 for (digits = 0; isdigit ((*argv)[digits]); digits++)
3675 {;
3676 }
3677 allsigs = 0;
3678 sigfirst = siglast = -1;
3679
3680 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
3681 {
3682 /* Apply action to all signals except those used by the
3683 debugger. Silently skip those. */
3684 allsigs = 1;
3685 sigfirst = 0;
3686 siglast = nsigs - 1;
3687 }
3688 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
3689 {
3690 SET_SIGS (nsigs, sigs, signal_stop);
3691 SET_SIGS (nsigs, sigs, signal_print);
3692 }
3693 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
3694 {
3695 UNSET_SIGS (nsigs, sigs, signal_program);
3696 }
3697 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
3698 {
3699 SET_SIGS (nsigs, sigs, signal_print);
3700 }
3701 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
3702 {
3703 SET_SIGS (nsigs, sigs, signal_program);
3704 }
3705 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
3706 {
3707 UNSET_SIGS (nsigs, sigs, signal_stop);
3708 }
3709 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
3710 {
3711 SET_SIGS (nsigs, sigs, signal_program);
3712 }
3713 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
3714 {
3715 UNSET_SIGS (nsigs, sigs, signal_print);
3716 UNSET_SIGS (nsigs, sigs, signal_stop);
3717 }
3718 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
3719 {
3720 UNSET_SIGS (nsigs, sigs, signal_program);
3721 }
3722 else if (digits > 0)
3723 {
3724 /* It is numeric. The numeric signal refers to our own
3725 internal signal numbering from target.h, not to host/target
3726 signal number. This is a feature; users really should be
3727 using symbolic names anyway, and the common ones like
3728 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
3729
3730 sigfirst = siglast = (int)
3731 target_signal_from_command (atoi (*argv));
3732 if ((*argv)[digits] == '-')
3733 {
3734 siglast = (int)
3735 target_signal_from_command (atoi ((*argv) + digits + 1));
3736 }
3737 if (sigfirst > siglast)
3738 {
3739 /* Bet he didn't figure we'd think of this case... */
3740 signum = sigfirst;
3741 sigfirst = siglast;
3742 siglast = signum;
3743 }
3744 }
3745 else
3746 {
3747 oursig = target_signal_from_name (*argv);
3748 if (oursig != TARGET_SIGNAL_UNKNOWN)
3749 {
3750 sigfirst = siglast = (int) oursig;
3751 }
3752 else
3753 {
3754 /* Not a number and not a recognized flag word => complain. */
3755 error ("Unrecognized or ambiguous flag word: \"%s\".", *argv);
3756 }
3757 }
3758
3759 /* If any signal numbers or symbol names were found, set flags for
c5aa993b 3760 which signals to apply actions to. */
c906108c
SS
3761
3762 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
3763 {
3764 switch ((enum target_signal) signum)
3765 {
3766 case TARGET_SIGNAL_TRAP:
3767 case TARGET_SIGNAL_INT:
3768 if (!allsigs && !sigs[signum])
3769 {
3770 if (query ("%s is used by the debugger.\n\
3771Are you sure you want to change it? ",
3772 target_signal_to_name
3773 ((enum target_signal) signum)))
3774 {
3775 sigs[signum] = 1;
3776 }
3777 else
3778 {
3779 printf_unfiltered ("Not confirmed, unchanged.\n");
3780 gdb_flush (gdb_stdout);
3781 }
3782 }
3783 break;
3784 case TARGET_SIGNAL_0:
3785 case TARGET_SIGNAL_DEFAULT:
3786 case TARGET_SIGNAL_UNKNOWN:
3787 /* Make sure that "all" doesn't print these. */
3788 break;
3789 default:
3790 sigs[signum] = 1;
3791 break;
3792 }
3793 }
3794
3795 argv++;
3796 }
3797
3798 target_notice_signals (inferior_pid);
3799
3800 if (from_tty)
3801 {
3802 /* Show the results. */
3803 sig_print_header ();
3804 for (signum = 0; signum < nsigs; signum++)
3805 {
3806 if (sigs[signum])
3807 {
3808 sig_print_info (signum);
3809 }
3810 }
3811 }
3812
3813 do_cleanups (old_chain);
3814}
3815
3816static void
96baa820 3817xdb_handle_command (char *args, int from_tty)
c906108c
SS
3818{
3819 char **argv;
3820 struct cleanup *old_chain;
3821
3822 /* Break the command line up into args. */
3823
3824 argv = buildargv (args);
3825 if (argv == NULL)
3826 {
3827 nomem (0);
3828 }
7a292a7a 3829 old_chain = make_cleanup_freeargv (argv);
c906108c
SS
3830 if (argv[1] != (char *) NULL)
3831 {
3832 char *argBuf;
3833 int bufLen;
3834
3835 bufLen = strlen (argv[0]) + 20;
3836 argBuf = (char *) xmalloc (bufLen);
3837 if (argBuf)
3838 {
3839 int validFlag = 1;
3840 enum target_signal oursig;
3841
3842 oursig = target_signal_from_name (argv[0]);
3843 memset (argBuf, 0, bufLen);
3844 if (strcmp (argv[1], "Q") == 0)
3845 sprintf (argBuf, "%s %s", argv[0], "noprint");
3846 else
3847 {
3848 if (strcmp (argv[1], "s") == 0)
3849 {
3850 if (!signal_stop[oursig])
3851 sprintf (argBuf, "%s %s", argv[0], "stop");
3852 else
3853 sprintf (argBuf, "%s %s", argv[0], "nostop");
3854 }
3855 else if (strcmp (argv[1], "i") == 0)
3856 {
3857 if (!signal_program[oursig])
3858 sprintf (argBuf, "%s %s", argv[0], "pass");
3859 else
3860 sprintf (argBuf, "%s %s", argv[0], "nopass");
3861 }
3862 else if (strcmp (argv[1], "r") == 0)
3863 {
3864 if (!signal_print[oursig])
3865 sprintf (argBuf, "%s %s", argv[0], "print");
3866 else
3867 sprintf (argBuf, "%s %s", argv[0], "noprint");
3868 }
3869 else
3870 validFlag = 0;
3871 }
3872 if (validFlag)
3873 handle_command (argBuf, from_tty);
3874 else
3875 printf_filtered ("Invalid signal handling flag.\n");
3876 if (argBuf)
3877 free (argBuf);
3878 }
3879 }
3880 do_cleanups (old_chain);
3881}
3882
3883/* Print current contents of the tables set by the handle command.
3884 It is possible we should just be printing signals actually used
3885 by the current target (but for things to work right when switching
3886 targets, all signals should be in the signal tables). */
3887
3888static void
96baa820 3889signals_info (char *signum_exp, int from_tty)
c906108c
SS
3890{
3891 enum target_signal oursig;
3892 sig_print_header ();
3893
3894 if (signum_exp)
3895 {
3896 /* First see if this is a symbol name. */
3897 oursig = target_signal_from_name (signum_exp);
3898 if (oursig == TARGET_SIGNAL_UNKNOWN)
3899 {
3900 /* No, try numeric. */
3901 oursig =
3902 target_signal_from_command (parse_and_eval_address (signum_exp));
3903 }
3904 sig_print_info (oursig);
3905 return;
3906 }
3907
3908 printf_filtered ("\n");
3909 /* These ugly casts brought to you by the native VAX compiler. */
3910 for (oursig = TARGET_SIGNAL_FIRST;
3911 (int) oursig < (int) TARGET_SIGNAL_LAST;
3912 oursig = (enum target_signal) ((int) oursig + 1))
3913 {
3914 QUIT;
3915
3916 if (oursig != TARGET_SIGNAL_UNKNOWN
3917 && oursig != TARGET_SIGNAL_DEFAULT
3918 && oursig != TARGET_SIGNAL_0)
3919 sig_print_info (oursig);
3920 }
3921
3922 printf_filtered ("\nUse the \"handle\" command to change these tables.\n");
3923}
3924\f
7a292a7a
SS
3925struct inferior_status
3926{
3927 enum target_signal stop_signal;
3928 CORE_ADDR stop_pc;
3929 bpstat stop_bpstat;
3930 int stop_step;
3931 int stop_stack_dummy;
3932 int stopped_by_random_signal;
3933 int trap_expected;
3934 CORE_ADDR step_range_start;
3935 CORE_ADDR step_range_end;
3936 CORE_ADDR step_frame_address;
3937 int step_over_calls;
3938 CORE_ADDR step_resume_break_address;
3939 int stop_after_trap;
3940 int stop_soon_quietly;
3941 CORE_ADDR selected_frame_address;
3942 char *stop_registers;
3943
3944 /* These are here because if call_function_by_hand has written some
3945 registers and then decides to call error(), we better not have changed
3946 any registers. */
3947 char *registers;
3948
3949 int selected_level;
3950 int breakpoint_proceeded;
3951 int restore_stack_info;
3952 int proceed_to_finish;
3953};
3954
7a292a7a 3955static struct inferior_status *
96baa820 3956xmalloc_inferior_status (void)
7a292a7a
SS
3957{
3958 struct inferior_status *inf_status;
3959 inf_status = xmalloc (sizeof (struct inferior_status));
3960 inf_status->stop_registers = xmalloc (REGISTER_BYTES);
3961 inf_status->registers = xmalloc (REGISTER_BYTES);
3962 return inf_status;
3963}
3964
7a292a7a 3965static void
96baa820 3966free_inferior_status (struct inferior_status *inf_status)
7a292a7a
SS
3967{
3968 free (inf_status->registers);
3969 free (inf_status->stop_registers);
3970 free (inf_status);
3971}
3972
3973void
96baa820
JM
3974write_inferior_status_register (struct inferior_status *inf_status, int regno,
3975 LONGEST val)
7a292a7a 3976{
c5aa993b 3977 int size = REGISTER_RAW_SIZE (regno);
7a292a7a
SS
3978 void *buf = alloca (size);
3979 store_signed_integer (buf, size, val);
3980 memcpy (&inf_status->registers[REGISTER_BYTE (regno)], buf, size);
3981}
3982
c906108c
SS
3983/* Save all of the information associated with the inferior<==>gdb
3984 connection. INF_STATUS is a pointer to a "struct inferior_status"
3985 (defined in inferior.h). */
3986
7a292a7a 3987struct inferior_status *
96baa820 3988save_inferior_status (int restore_stack_info)
c906108c 3989{
7a292a7a
SS
3990 struct inferior_status *inf_status = xmalloc_inferior_status ();
3991
c906108c
SS
3992 inf_status->stop_signal = stop_signal;
3993 inf_status->stop_pc = stop_pc;
3994 inf_status->stop_step = stop_step;
3995 inf_status->stop_stack_dummy = stop_stack_dummy;
3996 inf_status->stopped_by_random_signal = stopped_by_random_signal;
3997 inf_status->trap_expected = trap_expected;
3998 inf_status->step_range_start = step_range_start;
3999 inf_status->step_range_end = step_range_end;
4000 inf_status->step_frame_address = step_frame_address;
4001 inf_status->step_over_calls = step_over_calls;
4002 inf_status->stop_after_trap = stop_after_trap;
4003 inf_status->stop_soon_quietly = stop_soon_quietly;
4004 /* Save original bpstat chain here; replace it with copy of chain.
4005 If caller's caller is walking the chain, they'll be happier if we
7a292a7a
SS
4006 hand them back the original chain when restore_inferior_status is
4007 called. */
c906108c
SS
4008 inf_status->stop_bpstat = stop_bpstat;
4009 stop_bpstat = bpstat_copy (stop_bpstat);
4010 inf_status->breakpoint_proceeded = breakpoint_proceeded;
4011 inf_status->restore_stack_info = restore_stack_info;
4012 inf_status->proceed_to_finish = proceed_to_finish;
c5aa993b 4013
c906108c
SS
4014 memcpy (inf_status->stop_registers, stop_registers, REGISTER_BYTES);
4015
4016 read_register_bytes (0, inf_status->registers, REGISTER_BYTES);
4017
4018 record_selected_frame (&(inf_status->selected_frame_address),
4019 &(inf_status->selected_level));
7a292a7a 4020 return inf_status;
c906108c
SS
4021}
4022
4023struct restore_selected_frame_args
4024{
4025 CORE_ADDR frame_address;
4026 int level;
4027};
4028
c906108c 4029static int
96baa820 4030restore_selected_frame (void *args)
c906108c
SS
4031{
4032 struct restore_selected_frame_args *fr =
4033 (struct restore_selected_frame_args *) args;
4034 struct frame_info *frame;
4035 int level = fr->level;
4036
4037 frame = find_relative_frame (get_current_frame (), &level);
4038
4039 /* If inf_status->selected_frame_address is NULL, there was no
4040 previously selected frame. */
4041 if (frame == NULL ||
4042 /* FRAME_FP (frame) != fr->frame_address || */
4043 /* elz: deleted this check as a quick fix to the problem that
c5aa993b
JM
4044 for function called by hand gdb creates no internal frame
4045 structure and the real stack and gdb's idea of stack are
4046 different if nested calls by hands are made.
c906108c 4047
c5aa993b 4048 mvs: this worries me. */
c906108c
SS
4049 level != 0)
4050 {
4051 warning ("Unable to restore previously selected frame.\n");
4052 return 0;
4053 }
4054
4055 select_frame (frame, fr->level);
4056
4057 return (1);
4058}
4059
4060void
96baa820 4061restore_inferior_status (struct inferior_status *inf_status)
c906108c
SS
4062{
4063 stop_signal = inf_status->stop_signal;
4064 stop_pc = inf_status->stop_pc;
4065 stop_step = inf_status->stop_step;
4066 stop_stack_dummy = inf_status->stop_stack_dummy;
4067 stopped_by_random_signal = inf_status->stopped_by_random_signal;
4068 trap_expected = inf_status->trap_expected;
4069 step_range_start = inf_status->step_range_start;
4070 step_range_end = inf_status->step_range_end;
4071 step_frame_address = inf_status->step_frame_address;
4072 step_over_calls = inf_status->step_over_calls;
4073 stop_after_trap = inf_status->stop_after_trap;
4074 stop_soon_quietly = inf_status->stop_soon_quietly;
4075 bpstat_clear (&stop_bpstat);
4076 stop_bpstat = inf_status->stop_bpstat;
4077 breakpoint_proceeded = inf_status->breakpoint_proceeded;
4078 proceed_to_finish = inf_status->proceed_to_finish;
4079
7a292a7a 4080 /* FIXME: Is the restore of stop_registers always needed */
c906108c
SS
4081 memcpy (stop_registers, inf_status->stop_registers, REGISTER_BYTES);
4082
4083 /* The inferior can be gone if the user types "print exit(0)"
4084 (and perhaps other times). */
4085 if (target_has_execution)
4086 write_register_bytes (0, inf_status->registers, REGISTER_BYTES);
4087
c906108c
SS
4088 /* FIXME: If we are being called after stopping in a function which
4089 is called from gdb, we should not be trying to restore the
4090 selected frame; it just prints a spurious error message (The
4091 message is useful, however, in detecting bugs in gdb (like if gdb
4092 clobbers the stack)). In fact, should we be restoring the
4093 inferior status at all in that case? . */
4094
4095 if (target_has_stack && inf_status->restore_stack_info)
4096 {
4097 struct restore_selected_frame_args fr;
4098 fr.level = inf_status->selected_level;
4099 fr.frame_address = inf_status->selected_frame_address;
4100 /* The point of catch_errors is that if the stack is clobbered,
c5aa993b
JM
4101 walking the stack might encounter a garbage pointer and error()
4102 trying to dereference it. */
c906108c
SS
4103 if (catch_errors (restore_selected_frame, &fr,
4104 "Unable to restore previously selected frame:\n",
4105 RETURN_MASK_ERROR) == 0)
4106 /* Error in restoring the selected frame. Select the innermost
4107 frame. */
4108
4109
4110 select_frame (get_current_frame (), 0);
4111
4112 }
c906108c 4113
7a292a7a
SS
4114 free_inferior_status (inf_status);
4115}
c906108c
SS
4116
4117void
96baa820 4118discard_inferior_status (struct inferior_status *inf_status)
7a292a7a
SS
4119{
4120 /* See save_inferior_status for info on stop_bpstat. */
4121 bpstat_clear (&inf_status->stop_bpstat);
4122 free_inferior_status (inf_status);
4123}
4124
4125static void
96baa820
JM
4126set_follow_fork_mode_command (char *arg, int from_tty,
4127 struct cmd_list_element *c)
c906108c
SS
4128{
4129 if (!STREQ (arg, "parent") &&
4130 !STREQ (arg, "child") &&
4131 !STREQ (arg, "both") &&
4132 !STREQ (arg, "ask"))
4133 error ("follow-fork-mode must be one of \"parent\", \"child\", \"both\" or \"ask\".");
4134
4135 if (follow_fork_mode_string != NULL)
4136 free (follow_fork_mode_string);
4137 follow_fork_mode_string = savestring (arg, strlen (arg));
4138}
c5aa993b 4139\f
7a292a7a 4140static void
96baa820 4141build_infrun (void)
7a292a7a
SS
4142{
4143 stop_registers = xmalloc (REGISTER_BYTES);
4144}
c906108c 4145
c906108c 4146void
96baa820 4147_initialize_infrun (void)
c906108c
SS
4148{
4149 register int i;
4150 register int numsigs;
4151 struct cmd_list_element *c;
4152
7a292a7a
SS
4153 build_infrun ();
4154
0f71a2f6
JM
4155 register_gdbarch_swap (&stop_registers, sizeof (stop_registers), NULL);
4156 register_gdbarch_swap (NULL, 0, build_infrun);
4157
c906108c
SS
4158 add_info ("signals", signals_info,
4159 "What debugger does when program gets various signals.\n\
4160Specify a signal as argument to print info on that signal only.");
4161 add_info_alias ("handle", "signals", 0);
4162
4163 add_com ("handle", class_run, handle_command,
4164 concat ("Specify how to handle a signal.\n\
4165Args are signals and actions to apply to those signals.\n\
4166Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
4167from 1-15 are allowed for compatibility with old versions of GDB.\n\
4168Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
4169The special arg \"all\" is recognized to mean all signals except those\n\
4170used by the debugger, typically SIGTRAP and SIGINT.\n",
4171 "Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
4172\"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
4173Stop means reenter debugger if this signal happens (implies print).\n\
4174Print means print a message if this signal happens.\n\
4175Pass means let program see this signal; otherwise program doesn't know.\n\
4176Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
4177Pass and Stop may be combined.", NULL));
4178 if (xdb_commands)
4179 {
4180 add_com ("lz", class_info, signals_info,
4181 "What debugger does when program gets various signals.\n\
4182Specify a signal as argument to print info on that signal only.");
4183 add_com ("z", class_run, xdb_handle_command,
4184 concat ("Specify how to handle a signal.\n\
4185Args are signals and actions to apply to those signals.\n\
4186Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
4187from 1-15 are allowed for compatibility with old versions of GDB.\n\
4188Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
4189The special arg \"all\" is recognized to mean all signals except those\n\
4190used by the debugger, typically SIGTRAP and SIGINT.\n",
4191 "Recognized actions include \"s\" (toggles between stop and nostop), \n\
4192\"r\" (toggles between print and noprint), \"i\" (toggles between pass and \
4193nopass), \"Q\" (noprint)\n\
4194Stop means reenter debugger if this signal happens (implies print).\n\
4195Print means print a message if this signal happens.\n\
4196Pass means let program see this signal; otherwise program doesn't know.\n\
4197Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
4198Pass and Stop may be combined.", NULL));
4199 }
4200
4201 if (!dbx_commands)
4202 stop_command = add_cmd ("stop", class_obscure, not_just_help_class_command,
4203 "There is no `stop' command, but you can set a hook on `stop'.\n\
4204This allows you to set a list of commands to be run each time execution\n\
4205of the program stops.", &cmdlist);
4206
4207 numsigs = (int) TARGET_SIGNAL_LAST;
4208 signal_stop = (unsigned char *)
4209 xmalloc (sizeof (signal_stop[0]) * numsigs);
4210 signal_print = (unsigned char *)
4211 xmalloc (sizeof (signal_print[0]) * numsigs);
4212 signal_program = (unsigned char *)
4213 xmalloc (sizeof (signal_program[0]) * numsigs);
4214 for (i = 0; i < numsigs; i++)
4215 {
4216 signal_stop[i] = 1;
4217 signal_print[i] = 1;
4218 signal_program[i] = 1;
4219 }
4220
4221 /* Signals caused by debugger's own actions
4222 should not be given to the program afterwards. */
4223 signal_program[TARGET_SIGNAL_TRAP] = 0;
4224 signal_program[TARGET_SIGNAL_INT] = 0;
4225
4226 /* Signals that are not errors should not normally enter the debugger. */
4227 signal_stop[TARGET_SIGNAL_ALRM] = 0;
4228 signal_print[TARGET_SIGNAL_ALRM] = 0;
4229 signal_stop[TARGET_SIGNAL_VTALRM] = 0;
4230 signal_print[TARGET_SIGNAL_VTALRM] = 0;
4231 signal_stop[TARGET_SIGNAL_PROF] = 0;
4232 signal_print[TARGET_SIGNAL_PROF] = 0;
4233 signal_stop[TARGET_SIGNAL_CHLD] = 0;
4234 signal_print[TARGET_SIGNAL_CHLD] = 0;
4235 signal_stop[TARGET_SIGNAL_IO] = 0;
4236 signal_print[TARGET_SIGNAL_IO] = 0;
4237 signal_stop[TARGET_SIGNAL_POLL] = 0;
4238 signal_print[TARGET_SIGNAL_POLL] = 0;
4239 signal_stop[TARGET_SIGNAL_URG] = 0;
4240 signal_print[TARGET_SIGNAL_URG] = 0;
4241 signal_stop[TARGET_SIGNAL_WINCH] = 0;
4242 signal_print[TARGET_SIGNAL_WINCH] = 0;
4243
cd0fc7c3
SS
4244 /* These signals are used internally by user-level thread
4245 implementations. (See signal(5) on Solaris.) Like the above
4246 signals, a healthy program receives and handles them as part of
4247 its normal operation. */
4248 signal_stop[TARGET_SIGNAL_LWP] = 0;
4249 signal_print[TARGET_SIGNAL_LWP] = 0;
4250 signal_stop[TARGET_SIGNAL_WAITING] = 0;
4251 signal_print[TARGET_SIGNAL_WAITING] = 0;
4252 signal_stop[TARGET_SIGNAL_CANCEL] = 0;
4253 signal_print[TARGET_SIGNAL_CANCEL] = 0;
4254
c906108c
SS
4255#ifdef SOLIB_ADD
4256 add_show_from_set
4257 (add_set_cmd ("stop-on-solib-events", class_support, var_zinteger,
4258 (char *) &stop_on_solib_events,
4259 "Set stopping for shared library events.\n\
4260If nonzero, gdb will give control to the user when the dynamic linker\n\
4261notifies gdb of shared library events. The most common event of interest\n\
4262to the user would be loading/unloading of a new library.\n",
4263 &setlist),
4264 &showlist);
4265#endif
4266
4267 c = add_set_enum_cmd ("follow-fork-mode",
4268 class_run,
4269 follow_fork_mode_kind_names,
4270 (char *) &follow_fork_mode_string,
4271/* ??rehrauer: The "both" option is broken, by what may be a 10.20
4272 kernel problem. It's also not terribly useful without a GUI to
4273 help the user drive two debuggers. So for now, I'm disabling
4274 the "both" option. */
c5aa993b
JM
4275/* "Set debugger response to a program call of fork \
4276 or vfork.\n\
4277 A fork or vfork creates a new process. follow-fork-mode can be:\n\
4278 parent - the original process is debugged after a fork\n\
4279 child - the new process is debugged after a fork\n\
4280 both - both the parent and child are debugged after a fork\n\
4281 ask - the debugger will ask for one of the above choices\n\
4282 For \"both\", another copy of the debugger will be started to follow\n\
4283 the new child process. The original debugger will continue to follow\n\
4284 the original parent process. To distinguish their prompts, the\n\
4285 debugger copy's prompt will be changed.\n\
4286 For \"parent\" or \"child\", the unfollowed process will run free.\n\
4287 By default, the debugger will follow the parent process.",
4288 */
c906108c
SS
4289 "Set debugger response to a program call of fork \
4290or vfork.\n\
4291A fork or vfork creates a new process. follow-fork-mode can be:\n\
4292 parent - the original process is debugged after a fork\n\
4293 child - the new process is debugged after a fork\n\
4294 ask - the debugger will ask for one of the above choices\n\
4295For \"parent\" or \"child\", the unfollowed process will run free.\n\
4296By default, the debugger will follow the parent process.",
4297 &setlist);
c5aa993b 4298/* c->function.sfunc = ; */
c906108c
SS
4299 add_show_from_set (c, &showlist);
4300
4301 set_follow_fork_mode_command ("parent", 0, NULL);
4302
4303 c = add_set_enum_cmd ("scheduler-locking", class_run,
4304 scheduler_enums, /* array of string names */
4305 (char *) &scheduler_mode, /* current mode */
4306 "Set mode for locking scheduler during execution.\n\
4307off == no locking (threads may preempt at any time)\n\
4308on == full locking (no thread except the current thread may run)\n\
4309step == scheduler locked during every single-step operation.\n\
4310 In this mode, no other thread may run during a step command.\n\
4311 Other threads may run while stepping over a function call ('next').",
4312 &setlist);
4313
4314 c->function.sfunc = set_schedlock_func; /* traps on target vector */
4315 add_show_from_set (c, &showlist);
4316}
This page took 0.255902 seconds and 4 git commands to generate.