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