]> Git Repo - binutils.git/blob - gdb/infrun.c
Add mi/ and testsuite/gdb.mi/ subdirectories.
[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 "gdb_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 #ifdef UI_OUT
3227       /* Print a message only if not in the middle of doing a "step n"
3228          operation for n > 1 */
3229       if (!step_multi || !stop_step)
3230         if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3231           ui_out_field_string (uiout, "reason", "end-stepping-range");
3232 #endif
3233       break;
3234     case BREAKPOINT_HIT:
3235       /* We found a breakpoint. */
3236       /* For now print nothing. */
3237       break;
3238     case SIGNAL_EXITED:
3239       /* The inferior was terminated by a signal. */
3240 #ifdef UI_OUT
3241       annotate_signalled ();
3242       if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3243         ui_out_field_string (uiout, "reason", "exited-signalled");
3244       ui_out_text (uiout, "\nProgram terminated with signal ");
3245       annotate_signal_name ();
3246       ui_out_field_string (uiout, "signal-name", target_signal_to_name (stop_info));
3247       annotate_signal_name_end ();
3248       ui_out_text (uiout, ", ");
3249       annotate_signal_string ();
3250       ui_out_field_string (uiout, "signal-meaning", target_signal_to_string (stop_info));
3251       annotate_signal_string_end ();
3252       ui_out_text (uiout, ".\n");
3253       ui_out_text (uiout, "The program no longer exists.\n");
3254 #else
3255       annotate_signalled ();
3256       printf_filtered ("\nProgram terminated with signal ");
3257       annotate_signal_name ();
3258       printf_filtered ("%s", target_signal_to_name (stop_info));
3259       annotate_signal_name_end ();
3260       printf_filtered (", ");
3261       annotate_signal_string ();
3262       printf_filtered ("%s", target_signal_to_string (stop_info));
3263       annotate_signal_string_end ();
3264       printf_filtered (".\n");
3265
3266       printf_filtered ("The program no longer exists.\n");
3267       gdb_flush (gdb_stdout);
3268 #endif
3269       break;
3270     case EXITED:
3271       /* The inferior program is finished. */
3272 #ifdef UI_OUT
3273       annotate_exited (stop_info);
3274       if (stop_info)
3275         {
3276           if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3277             ui_out_field_string (uiout, "reason", "exited");
3278           ui_out_text (uiout, "\nProgram exited with code ");
3279           ui_out_field_fmt (uiout, "exit-code", "0%o", (unsigned int) stop_info);
3280           ui_out_text (uiout, ".\n");
3281         }
3282       else
3283         {
3284           if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3285             ui_out_field_string (uiout, "reason", "exited-normally");
3286           ui_out_text (uiout, "\nProgram exited normally.\n");
3287         }
3288 #else
3289       annotate_exited (stop_info);
3290       if (stop_info)
3291         printf_filtered ("\nProgram exited with code 0%o.\n",
3292                          (unsigned int) stop_info);
3293       else
3294         printf_filtered ("\nProgram exited normally.\n");
3295 #endif
3296       break;
3297     case SIGNAL_RECEIVED:
3298       /* Signal received. The signal table tells us to print about
3299          it. */
3300 #ifdef UI_OUT
3301       annotate_signal ();
3302       ui_out_text (uiout, "\nProgram received signal ");
3303       annotate_signal_name ();
3304       ui_out_field_string (uiout, "signal-name", target_signal_to_name (stop_info));
3305       annotate_signal_name_end ();
3306       ui_out_text (uiout, ", ");
3307       annotate_signal_string ();
3308       ui_out_field_string (uiout, "signal-meaning", target_signal_to_string (stop_info));
3309       annotate_signal_string_end ();
3310       ui_out_text (uiout, ".\n");
3311 #else
3312       annotate_signal ();
3313       printf_filtered ("\nProgram received signal ");
3314       annotate_signal_name ();
3315       printf_filtered ("%s", target_signal_to_name (stop_info));
3316       annotate_signal_name_end ();
3317       printf_filtered (", ");
3318       annotate_signal_string ();
3319       printf_filtered ("%s", target_signal_to_string (stop_info));
3320       annotate_signal_string_end ();
3321       printf_filtered (".\n");
3322       gdb_flush (gdb_stdout);      
3323 #endif
3324       break;
3325     default:
3326       internal_error ("print_stop_reason: unrecognized enum value");
3327       break;
3328     }
3329 }
3330 \f
3331
3332 /* Here to return control to GDB when the inferior stops for real.
3333    Print appropriate messages, remove breakpoints, give terminal our modes.
3334
3335    STOP_PRINT_FRAME nonzero means print the executing frame
3336    (pc, function, args, file, line number and line text).
3337    BREAKPOINTS_FAILED nonzero means stop was due to error
3338    attempting to insert breakpoints.  */
3339
3340 void
3341 normal_stop (void)
3342 {
3343   /* As with the notification of thread events, we want to delay
3344      notifying the user that we've switched thread context until
3345      the inferior actually stops.
3346
3347      (Note that there's no point in saying anything if the inferior
3348      has exited!) */
3349   if ((previous_inferior_pid != inferior_pid)
3350       && target_has_execution)
3351     {
3352       target_terminal_ours_for_output ();
3353       printf_filtered ("[Switching to %s]\n",
3354                        target_pid_or_tid_to_str (inferior_pid));
3355       previous_inferior_pid = inferior_pid;
3356     }
3357
3358   /* Make sure that the current_frame's pc is correct.  This
3359      is a correction for setting up the frame info before doing
3360      DECR_PC_AFTER_BREAK */
3361   if (target_has_execution && get_current_frame ())
3362     (get_current_frame ())->pc = read_pc ();
3363
3364   if (breakpoints_failed)
3365     {
3366       target_terminal_ours_for_output ();
3367       print_sys_errmsg ("ptrace", breakpoints_failed);
3368       printf_filtered ("Stopped; cannot insert breakpoints.\n\
3369 The same program may be running in another process.\n");
3370     }
3371
3372   if (target_has_execution && breakpoints_inserted)
3373     {
3374       if (remove_breakpoints ())
3375         {
3376           target_terminal_ours_for_output ();
3377           printf_filtered ("Cannot remove breakpoints because ");
3378           printf_filtered ("program is no longer writable.\n");
3379           printf_filtered ("It might be running in another process.\n");
3380           printf_filtered ("Further execution is probably impossible.\n");
3381         }
3382     }
3383   breakpoints_inserted = 0;
3384
3385   /* Delete the breakpoint we stopped at, if it wants to be deleted.
3386      Delete any breakpoint that is to be deleted at the next stop.  */
3387
3388   breakpoint_auto_delete (stop_bpstat);
3389
3390   /* If an auto-display called a function and that got a signal,
3391      delete that auto-display to avoid an infinite recursion.  */
3392
3393   if (stopped_by_random_signal)
3394     disable_current_display ();
3395
3396   /* Don't print a message if in the middle of doing a "step n"
3397      operation for n > 1 */
3398   if (step_multi && stop_step)
3399     goto done;
3400
3401   target_terminal_ours ();
3402
3403   /* Look up the hook_stop and run it if it exists.  */
3404
3405   if (stop_command && stop_command->hook)
3406     {
3407       catch_errors (hook_stop_stub, stop_command->hook,
3408                     "Error while running hook_stop:\n", RETURN_MASK_ALL);
3409     }
3410
3411   if (!target_has_stack)
3412     {
3413
3414       goto done;
3415     }
3416
3417   /* Select innermost stack frame - i.e., current frame is frame 0,
3418      and current location is based on that.
3419      Don't do this on return from a stack dummy routine,
3420      or if the program has exited. */
3421
3422   if (!stop_stack_dummy)
3423     {
3424       select_frame (get_current_frame (), 0);
3425
3426       /* Print current location without a level number, if
3427          we have changed functions or hit a breakpoint.
3428          Print source line if we have one.
3429          bpstat_print() contains the logic deciding in detail
3430          what to print, based on the event(s) that just occurred. */
3431
3432       if (stop_print_frame)
3433         {
3434           int bpstat_ret;
3435           int source_flag;
3436           int do_frame_printing = 1;
3437
3438           bpstat_ret = bpstat_print (stop_bpstat);
3439           switch (bpstat_ret)
3440             {
3441             case PRINT_UNKNOWN:
3442               if (stop_step
3443                   && step_frame_address == FRAME_FP (get_current_frame ())
3444                   && step_start_function == find_pc_function (stop_pc))
3445                 source_flag = SRC_LINE;   /* finished step, just print source line */
3446               else
3447                 source_flag = SRC_AND_LOC;    /* print location and source line */
3448               break;
3449             case PRINT_SRC_AND_LOC:
3450               source_flag = SRC_AND_LOC;    /* print location and source line */
3451               break;
3452             case PRINT_SRC_ONLY:
3453               source_flag = SRC_LINE;
3454               break;
3455             case PRINT_NOTHING:
3456               do_frame_printing = 0;
3457               break;
3458             default:
3459               internal_error ("Unknown value.");
3460             }
3461 #ifdef UI_OUT
3462           /* For mi, have the same behavior every time we stop:
3463              print everything but the source line. */
3464           if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3465             source_flag = LOC_AND_ADDRESS;
3466 #endif
3467
3468 #ifdef UI_OUT
3469           if (interpreter_p && strcmp (interpreter_p, "mi") == 0)
3470             ui_out_field_int (uiout, "thread-id", pid_to_thread_id (inferior_pid));
3471 #endif
3472           /* The behavior of this routine with respect to the source
3473              flag is:
3474              SRC_LINE: Print only source line
3475              LOCATION: Print only location
3476              SRC_AND_LOC: Print location and source line */
3477           if (do_frame_printing)
3478             show_and_print_stack_frame (selected_frame, -1, source_flag);
3479
3480           /* Display the auto-display expressions.  */
3481           do_displays ();
3482         }
3483     }
3484
3485   /* Save the function value return registers, if we care.
3486      We might be about to restore their previous contents.  */
3487   if (proceed_to_finish)
3488     read_register_bytes (0, stop_registers, REGISTER_BYTES);
3489
3490   if (stop_stack_dummy)
3491     {
3492       /* Pop the empty frame that contains the stack dummy.
3493          POP_FRAME ends with a setting of the current frame, so we
3494          can use that next. */
3495       POP_FRAME;
3496       /* Set stop_pc to what it was before we called the function.
3497          Can't rely on restore_inferior_status because that only gets
3498          called if we don't stop in the called function.  */
3499       stop_pc = read_pc ();
3500       select_frame (get_current_frame (), 0);
3501     }
3502
3503
3504   TUIDO (((TuiOpaqueFuncPtr) tui_vCheckDataValues, selected_frame));
3505
3506 done:
3507   annotate_stopped ();
3508 }
3509
3510 static int
3511 hook_stop_stub (void *cmd)
3512 {
3513   execute_user_command ((struct cmd_list_element *) cmd, 0);
3514   return (0);
3515 }
3516 \f
3517 int
3518 signal_stop_state (int signo)
3519 {
3520   return signal_stop[signo];
3521 }
3522
3523 int
3524 signal_print_state (int signo)
3525 {
3526   return signal_print[signo];
3527 }
3528
3529 int
3530 signal_pass_state (int signo)
3531 {
3532   return signal_program[signo];
3533 }
3534
3535 int signal_stop_update (signo, state)
3536      int signo;
3537      int state;
3538 {
3539   int ret = signal_stop[signo];
3540   signal_stop[signo] = state;
3541   return ret;
3542 }
3543
3544 int signal_print_update (signo, state)
3545      int signo;
3546      int state;
3547 {
3548   int ret = signal_print[signo];
3549   signal_print[signo] = state;
3550   return ret;
3551 }
3552
3553 int signal_pass_update (signo, state)
3554      int signo;
3555      int state;
3556 {
3557   int ret = signal_program[signo];
3558   signal_program[signo] = state;
3559   return ret;
3560 }
3561
3562 static void
3563 sig_print_header (void)
3564 {
3565   printf_filtered ("\
3566 Signal        Stop\tPrint\tPass to program\tDescription\n");
3567 }
3568
3569 static void
3570 sig_print_info (enum target_signal oursig)
3571 {
3572   char *name = target_signal_to_name (oursig);
3573   int name_padding = 13 - strlen (name);
3574
3575   if (name_padding <= 0)
3576     name_padding = 0;
3577
3578   printf_filtered ("%s", name);
3579   printf_filtered ("%*.*s ", name_padding, name_padding,
3580                    "                 ");
3581   printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
3582   printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
3583   printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
3584   printf_filtered ("%s\n", target_signal_to_string (oursig));
3585 }
3586
3587 /* Specify how various signals in the inferior should be handled.  */
3588
3589 static void
3590 handle_command (char *args, int from_tty)
3591 {
3592   char **argv;
3593   int digits, wordlen;
3594   int sigfirst, signum, siglast;
3595   enum target_signal oursig;
3596   int allsigs;
3597   int nsigs;
3598   unsigned char *sigs;
3599   struct cleanup *old_chain;
3600
3601   if (args == NULL)
3602     {
3603       error_no_arg ("signal to handle");
3604     }
3605
3606   /* Allocate and zero an array of flags for which signals to handle. */
3607
3608   nsigs = (int) TARGET_SIGNAL_LAST;
3609   sigs = (unsigned char *) alloca (nsigs);
3610   memset (sigs, 0, nsigs);
3611
3612   /* Break the command line up into args. */
3613
3614   argv = buildargv (args);
3615   if (argv == NULL)
3616     {
3617       nomem (0);
3618     }
3619   old_chain = make_cleanup_freeargv (argv);
3620
3621   /* Walk through the args, looking for signal oursigs, signal names, and
3622      actions.  Signal numbers and signal names may be interspersed with
3623      actions, with the actions being performed for all signals cumulatively
3624      specified.  Signal ranges can be specified as <LOW>-<HIGH>. */
3625
3626   while (*argv != NULL)
3627     {
3628       wordlen = strlen (*argv);
3629       for (digits = 0; isdigit ((*argv)[digits]); digits++)
3630         {;
3631         }
3632       allsigs = 0;
3633       sigfirst = siglast = -1;
3634
3635       if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
3636         {
3637           /* Apply action to all signals except those used by the
3638              debugger.  Silently skip those. */
3639           allsigs = 1;
3640           sigfirst = 0;
3641           siglast = nsigs - 1;
3642         }
3643       else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
3644         {
3645           SET_SIGS (nsigs, sigs, signal_stop);
3646           SET_SIGS (nsigs, sigs, signal_print);
3647         }
3648       else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
3649         {
3650           UNSET_SIGS (nsigs, sigs, signal_program);
3651         }
3652       else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
3653         {
3654           SET_SIGS (nsigs, sigs, signal_print);
3655         }
3656       else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
3657         {
3658           SET_SIGS (nsigs, sigs, signal_program);
3659         }
3660       else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
3661         {
3662           UNSET_SIGS (nsigs, sigs, signal_stop);
3663         }
3664       else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
3665         {
3666           SET_SIGS (nsigs, sigs, signal_program);
3667         }
3668       else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
3669         {
3670           UNSET_SIGS (nsigs, sigs, signal_print);
3671           UNSET_SIGS (nsigs, sigs, signal_stop);
3672         }
3673       else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
3674         {
3675           UNSET_SIGS (nsigs, sigs, signal_program);
3676         }
3677       else if (digits > 0)
3678         {
3679           /* It is numeric.  The numeric signal refers to our own
3680              internal signal numbering from target.h, not to host/target
3681              signal  number.  This is a feature; users really should be
3682              using symbolic names anyway, and the common ones like
3683              SIGHUP, SIGINT, SIGALRM, etc. will work right anyway.  */
3684
3685           sigfirst = siglast = (int)
3686             target_signal_from_command (atoi (*argv));
3687           if ((*argv)[digits] == '-')
3688             {
3689               siglast = (int)
3690                 target_signal_from_command (atoi ((*argv) + digits + 1));
3691             }
3692           if (sigfirst > siglast)
3693             {
3694               /* Bet he didn't figure we'd think of this case... */
3695               signum = sigfirst;
3696               sigfirst = siglast;
3697               siglast = signum;
3698             }
3699         }
3700       else
3701         {
3702           oursig = target_signal_from_name (*argv);
3703           if (oursig != TARGET_SIGNAL_UNKNOWN)
3704             {
3705               sigfirst = siglast = (int) oursig;
3706             }
3707           else
3708             {
3709               /* Not a number and not a recognized flag word => complain.  */
3710               error ("Unrecognized or ambiguous flag word: \"%s\".", *argv);
3711             }
3712         }
3713
3714       /* If any signal numbers or symbol names were found, set flags for
3715          which signals to apply actions to. */
3716
3717       for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
3718         {
3719           switch ((enum target_signal) signum)
3720             {
3721             case TARGET_SIGNAL_TRAP:
3722             case TARGET_SIGNAL_INT:
3723               if (!allsigs && !sigs[signum])
3724                 {
3725                   if (query ("%s is used by the debugger.\n\
3726 Are you sure you want to change it? ",
3727                              target_signal_to_name
3728                              ((enum target_signal) signum)))
3729                     {
3730                       sigs[signum] = 1;
3731                     }
3732                   else
3733                     {
3734                       printf_unfiltered ("Not confirmed, unchanged.\n");
3735                       gdb_flush (gdb_stdout);
3736                     }
3737                 }
3738               break;
3739             case TARGET_SIGNAL_0:
3740             case TARGET_SIGNAL_DEFAULT:
3741             case TARGET_SIGNAL_UNKNOWN:
3742               /* Make sure that "all" doesn't print these.  */
3743               break;
3744             default:
3745               sigs[signum] = 1;
3746               break;
3747             }
3748         }
3749
3750       argv++;
3751     }
3752
3753   target_notice_signals (inferior_pid);
3754
3755   if (from_tty)
3756     {
3757       /* Show the results.  */
3758       sig_print_header ();
3759       for (signum = 0; signum < nsigs; signum++)
3760         {
3761           if (sigs[signum])
3762             {
3763               sig_print_info (signum);
3764             }
3765         }
3766     }
3767
3768   do_cleanups (old_chain);
3769 }
3770
3771 static void
3772 xdb_handle_command (char *args, int from_tty)
3773 {
3774   char **argv;
3775   struct cleanup *old_chain;
3776
3777   /* Break the command line up into args. */
3778
3779   argv = buildargv (args);
3780   if (argv == NULL)
3781     {
3782       nomem (0);
3783     }
3784   old_chain = make_cleanup_freeargv (argv);
3785   if (argv[1] != (char *) NULL)
3786     {
3787       char *argBuf;
3788       int bufLen;
3789
3790       bufLen = strlen (argv[0]) + 20;
3791       argBuf = (char *) xmalloc (bufLen);
3792       if (argBuf)
3793         {
3794           int validFlag = 1;
3795           enum target_signal oursig;
3796
3797           oursig = target_signal_from_name (argv[0]);
3798           memset (argBuf, 0, bufLen);
3799           if (strcmp (argv[1], "Q") == 0)
3800             sprintf (argBuf, "%s %s", argv[0], "noprint");
3801           else
3802             {
3803               if (strcmp (argv[1], "s") == 0)
3804                 {
3805                   if (!signal_stop[oursig])
3806                     sprintf (argBuf, "%s %s", argv[0], "stop");
3807                   else
3808                     sprintf (argBuf, "%s %s", argv[0], "nostop");
3809                 }
3810               else if (strcmp (argv[1], "i") == 0)
3811                 {
3812                   if (!signal_program[oursig])
3813                     sprintf (argBuf, "%s %s", argv[0], "pass");
3814                   else
3815                     sprintf (argBuf, "%s %s", argv[0], "nopass");
3816                 }
3817               else if (strcmp (argv[1], "r") == 0)
3818                 {
3819                   if (!signal_print[oursig])
3820                     sprintf (argBuf, "%s %s", argv[0], "print");
3821                   else
3822                     sprintf (argBuf, "%s %s", argv[0], "noprint");
3823                 }
3824               else
3825                 validFlag = 0;
3826             }
3827           if (validFlag)
3828             handle_command (argBuf, from_tty);
3829           else
3830             printf_filtered ("Invalid signal handling flag.\n");
3831           if (argBuf)
3832             free (argBuf);
3833         }
3834     }
3835   do_cleanups (old_chain);
3836 }
3837
3838 /* Print current contents of the tables set by the handle command.
3839    It is possible we should just be printing signals actually used
3840    by the current target (but for things to work right when switching
3841    targets, all signals should be in the signal tables).  */
3842
3843 static void
3844 signals_info (char *signum_exp, int from_tty)
3845 {
3846   enum target_signal oursig;
3847   sig_print_header ();
3848
3849   if (signum_exp)
3850     {
3851       /* First see if this is a symbol name.  */
3852       oursig = target_signal_from_name (signum_exp);
3853       if (oursig == TARGET_SIGNAL_UNKNOWN)
3854         {
3855           /* No, try numeric.  */
3856           oursig =
3857             target_signal_from_command (parse_and_eval_address (signum_exp));
3858         }
3859       sig_print_info (oursig);
3860       return;
3861     }
3862
3863   printf_filtered ("\n");
3864   /* These ugly casts brought to you by the native VAX compiler.  */
3865   for (oursig = TARGET_SIGNAL_FIRST;
3866        (int) oursig < (int) TARGET_SIGNAL_LAST;
3867        oursig = (enum target_signal) ((int) oursig + 1))
3868     {
3869       QUIT;
3870
3871       if (oursig != TARGET_SIGNAL_UNKNOWN
3872           && oursig != TARGET_SIGNAL_DEFAULT
3873           && oursig != TARGET_SIGNAL_0)
3874         sig_print_info (oursig);
3875     }
3876
3877   printf_filtered ("\nUse the \"handle\" command to change these tables.\n");
3878 }
3879 \f
3880 struct inferior_status
3881 {
3882   enum target_signal stop_signal;
3883   CORE_ADDR stop_pc;
3884   bpstat stop_bpstat;
3885   int stop_step;
3886   int stop_stack_dummy;
3887   int stopped_by_random_signal;
3888   int trap_expected;
3889   CORE_ADDR step_range_start;
3890   CORE_ADDR step_range_end;
3891   CORE_ADDR step_frame_address;
3892   int step_over_calls;
3893   CORE_ADDR step_resume_break_address;
3894   int stop_after_trap;
3895   int stop_soon_quietly;
3896   CORE_ADDR selected_frame_address;
3897   char *stop_registers;
3898
3899   /* These are here because if call_function_by_hand has written some
3900      registers and then decides to call error(), we better not have changed
3901      any registers.  */
3902   char *registers;
3903
3904   int selected_level;
3905   int breakpoint_proceeded;
3906   int restore_stack_info;
3907   int proceed_to_finish;
3908 };
3909
3910 static struct inferior_status *
3911 xmalloc_inferior_status (void)
3912 {
3913   struct inferior_status *inf_status;
3914   inf_status = xmalloc (sizeof (struct inferior_status));
3915   inf_status->stop_registers = xmalloc (REGISTER_BYTES);
3916   inf_status->registers = xmalloc (REGISTER_BYTES);
3917   return inf_status;
3918 }
3919
3920 static void
3921 free_inferior_status (struct inferior_status *inf_status)
3922 {
3923   free (inf_status->registers);
3924   free (inf_status->stop_registers);
3925   free (inf_status);
3926 }
3927
3928 void
3929 write_inferior_status_register (struct inferior_status *inf_status, int regno,
3930                                 LONGEST val)
3931 {
3932   int size = REGISTER_RAW_SIZE (regno);
3933   void *buf = alloca (size);
3934   store_signed_integer (buf, size, val);
3935   memcpy (&inf_status->registers[REGISTER_BYTE (regno)], buf, size);
3936 }
3937
3938 /* Save all of the information associated with the inferior<==>gdb
3939    connection.  INF_STATUS is a pointer to a "struct inferior_status"
3940    (defined in inferior.h).  */
3941
3942 struct inferior_status *
3943 save_inferior_status (int restore_stack_info)
3944 {
3945   struct inferior_status *inf_status = xmalloc_inferior_status ();
3946
3947   inf_status->stop_signal = stop_signal;
3948   inf_status->stop_pc = stop_pc;
3949   inf_status->stop_step = stop_step;
3950   inf_status->stop_stack_dummy = stop_stack_dummy;
3951   inf_status->stopped_by_random_signal = stopped_by_random_signal;
3952   inf_status->trap_expected = trap_expected;
3953   inf_status->step_range_start = step_range_start;
3954   inf_status->step_range_end = step_range_end;
3955   inf_status->step_frame_address = step_frame_address;
3956   inf_status->step_over_calls = step_over_calls;
3957   inf_status->stop_after_trap = stop_after_trap;
3958   inf_status->stop_soon_quietly = stop_soon_quietly;
3959   /* Save original bpstat chain here; replace it with copy of chain.
3960      If caller's caller is walking the chain, they'll be happier if we
3961      hand them back the original chain when restore_inferior_status is
3962      called.  */
3963   inf_status->stop_bpstat = stop_bpstat;
3964   stop_bpstat = bpstat_copy (stop_bpstat);
3965   inf_status->breakpoint_proceeded = breakpoint_proceeded;
3966   inf_status->restore_stack_info = restore_stack_info;
3967   inf_status->proceed_to_finish = proceed_to_finish;
3968
3969   memcpy (inf_status->stop_registers, stop_registers, REGISTER_BYTES);
3970
3971   read_register_bytes (0, inf_status->registers, REGISTER_BYTES);
3972
3973   record_selected_frame (&(inf_status->selected_frame_address),
3974                          &(inf_status->selected_level));
3975   return inf_status;
3976 }
3977
3978 struct restore_selected_frame_args
3979 {
3980   CORE_ADDR frame_address;
3981   int level;
3982 };
3983
3984 static int
3985 restore_selected_frame (void *args)
3986 {
3987   struct restore_selected_frame_args *fr =
3988   (struct restore_selected_frame_args *) args;
3989   struct frame_info *frame;
3990   int level = fr->level;
3991
3992   frame = find_relative_frame (get_current_frame (), &level);
3993
3994   /* If inf_status->selected_frame_address is NULL, there was no
3995      previously selected frame.  */
3996   if (frame == NULL ||
3997   /*  FRAME_FP (frame) != fr->frame_address || */
3998   /* elz: deleted this check as a quick fix to the problem that
3999      for function called by hand gdb creates no internal frame
4000      structure and the real stack and gdb's idea of stack are
4001      different if nested calls by hands are made.
4002
4003      mvs: this worries me.  */
4004       level != 0)
4005     {
4006       warning ("Unable to restore previously selected frame.\n");
4007       return 0;
4008     }
4009
4010   select_frame (frame, fr->level);
4011
4012   return (1);
4013 }
4014
4015 void
4016 restore_inferior_status (struct inferior_status *inf_status)
4017 {
4018   stop_signal = inf_status->stop_signal;
4019   stop_pc = inf_status->stop_pc;
4020   stop_step = inf_status->stop_step;
4021   stop_stack_dummy = inf_status->stop_stack_dummy;
4022   stopped_by_random_signal = inf_status->stopped_by_random_signal;
4023   trap_expected = inf_status->trap_expected;
4024   step_range_start = inf_status->step_range_start;
4025   step_range_end = inf_status->step_range_end;
4026   step_frame_address = inf_status->step_frame_address;
4027   step_over_calls = inf_status->step_over_calls;
4028   stop_after_trap = inf_status->stop_after_trap;
4029   stop_soon_quietly = inf_status->stop_soon_quietly;
4030   bpstat_clear (&stop_bpstat);
4031   stop_bpstat = inf_status->stop_bpstat;
4032   breakpoint_proceeded = inf_status->breakpoint_proceeded;
4033   proceed_to_finish = inf_status->proceed_to_finish;
4034
4035   /* FIXME: Is the restore of stop_registers always needed */
4036   memcpy (stop_registers, inf_status->stop_registers, REGISTER_BYTES);
4037
4038   /* The inferior can be gone if the user types "print exit(0)"
4039      (and perhaps other times).  */
4040   if (target_has_execution)
4041     write_register_bytes (0, inf_status->registers, REGISTER_BYTES);
4042
4043   /* FIXME: If we are being called after stopping in a function which
4044      is called from gdb, we should not be trying to restore the
4045      selected frame; it just prints a spurious error message (The
4046      message is useful, however, in detecting bugs in gdb (like if gdb
4047      clobbers the stack)).  In fact, should we be restoring the
4048      inferior status at all in that case?  .  */
4049
4050   if (target_has_stack && inf_status->restore_stack_info)
4051     {
4052       struct restore_selected_frame_args fr;
4053       fr.level = inf_status->selected_level;
4054       fr.frame_address = inf_status->selected_frame_address;
4055       /* The point of catch_errors is that if the stack is clobbered,
4056          walking the stack might encounter a garbage pointer and error()
4057          trying to dereference it.  */
4058       if (catch_errors (restore_selected_frame, &fr,
4059                         "Unable to restore previously selected frame:\n",
4060                         RETURN_MASK_ERROR) == 0)
4061         /* Error in restoring the selected frame.  Select the innermost
4062            frame.  */
4063
4064
4065         select_frame (get_current_frame (), 0);
4066
4067     }
4068
4069   free_inferior_status (inf_status);
4070 }
4071
4072 void
4073 discard_inferior_status (struct inferior_status *inf_status)
4074 {
4075   /* See save_inferior_status for info on stop_bpstat. */
4076   bpstat_clear (&inf_status->stop_bpstat);
4077   free_inferior_status (inf_status);
4078 }
4079
4080 static void
4081 set_follow_fork_mode_command (char *arg, int from_tty,
4082                               struct cmd_list_element *c)
4083 {
4084   if (!STREQ (arg, "parent") &&
4085       !STREQ (arg, "child") &&
4086       !STREQ (arg, "both") &&
4087       !STREQ (arg, "ask"))
4088     error ("follow-fork-mode must be one of \"parent\", \"child\", \"both\" or \"ask\".");
4089
4090   if (follow_fork_mode_string != NULL)
4091     free (follow_fork_mode_string);
4092   follow_fork_mode_string = savestring (arg, strlen (arg));
4093 }
4094 \f
4095 static void
4096 build_infrun (void)
4097 {
4098   stop_registers = xmalloc (REGISTER_BYTES);
4099 }
4100
4101 void
4102 _initialize_infrun (void)
4103 {
4104   register int i;
4105   register int numsigs;
4106   struct cmd_list_element *c;
4107
4108   build_infrun ();
4109
4110   register_gdbarch_swap (&stop_registers, sizeof (stop_registers), NULL);
4111   register_gdbarch_swap (NULL, 0, build_infrun);
4112
4113   add_info ("signals", signals_info,
4114             "What debugger does when program gets various signals.\n\
4115 Specify a signal as argument to print info on that signal only.");
4116   add_info_alias ("handle", "signals", 0);
4117
4118   add_com ("handle", class_run, handle_command,
4119            concat ("Specify how to handle a signal.\n\
4120 Args are signals and actions to apply to those signals.\n\
4121 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
4122 from 1-15 are allowed for compatibility with old versions of GDB.\n\
4123 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
4124 The special arg \"all\" is recognized to mean all signals except those\n\
4125 used by the debugger, typically SIGTRAP and SIGINT.\n",
4126                    "Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
4127 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
4128 Stop means reenter debugger if this signal happens (implies print).\n\
4129 Print means print a message if this signal happens.\n\
4130 Pass means let program see this signal; otherwise program doesn't know.\n\
4131 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
4132 Pass and Stop may be combined.", NULL));
4133   if (xdb_commands)
4134     {
4135       add_com ("lz", class_info, signals_info,
4136                "What debugger does when program gets various signals.\n\
4137 Specify a signal as argument to print info on that signal only.");
4138       add_com ("z", class_run, xdb_handle_command,
4139                concat ("Specify how to handle a signal.\n\
4140 Args are signals and actions to apply to those signals.\n\
4141 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
4142 from 1-15 are allowed for compatibility with old versions of GDB.\n\
4143 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
4144 The special arg \"all\" is recognized to mean all signals except those\n\
4145 used by the debugger, typically SIGTRAP and SIGINT.\n",
4146                        "Recognized actions include \"s\" (toggles between stop and nostop), \n\
4147 \"r\" (toggles between print and noprint), \"i\" (toggles between pass and \
4148 nopass), \"Q\" (noprint)\n\
4149 Stop means reenter debugger if this signal happens (implies print).\n\
4150 Print means print a message if this signal happens.\n\
4151 Pass means let program see this signal; otherwise program doesn't know.\n\
4152 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
4153 Pass and Stop may be combined.", NULL));
4154     }
4155
4156   if (!dbx_commands)
4157     stop_command = add_cmd ("stop", class_obscure, not_just_help_class_command,
4158                             "There is no `stop' command, but you can set a hook on `stop'.\n\
4159 This allows you to set a list of commands to be run each time execution\n\
4160 of the program stops.", &cmdlist);
4161
4162   numsigs = (int) TARGET_SIGNAL_LAST;
4163   signal_stop = (unsigned char *)
4164     xmalloc (sizeof (signal_stop[0]) * numsigs);
4165   signal_print = (unsigned char *)
4166     xmalloc (sizeof (signal_print[0]) * numsigs);
4167   signal_program = (unsigned char *)
4168     xmalloc (sizeof (signal_program[0]) * numsigs);
4169   for (i = 0; i < numsigs; i++)
4170     {
4171       signal_stop[i] = 1;
4172       signal_print[i] = 1;
4173       signal_program[i] = 1;
4174     }
4175
4176   /* Signals caused by debugger's own actions
4177      should not be given to the program afterwards.  */
4178   signal_program[TARGET_SIGNAL_TRAP] = 0;
4179   signal_program[TARGET_SIGNAL_INT] = 0;
4180
4181   /* Signals that are not errors should not normally enter the debugger.  */
4182   signal_stop[TARGET_SIGNAL_ALRM] = 0;
4183   signal_print[TARGET_SIGNAL_ALRM] = 0;
4184   signal_stop[TARGET_SIGNAL_VTALRM] = 0;
4185   signal_print[TARGET_SIGNAL_VTALRM] = 0;
4186   signal_stop[TARGET_SIGNAL_PROF] = 0;
4187   signal_print[TARGET_SIGNAL_PROF] = 0;
4188   signal_stop[TARGET_SIGNAL_CHLD] = 0;
4189   signal_print[TARGET_SIGNAL_CHLD] = 0;
4190   signal_stop[TARGET_SIGNAL_IO] = 0;
4191   signal_print[TARGET_SIGNAL_IO] = 0;
4192   signal_stop[TARGET_SIGNAL_POLL] = 0;
4193   signal_print[TARGET_SIGNAL_POLL] = 0;
4194   signal_stop[TARGET_SIGNAL_URG] = 0;
4195   signal_print[TARGET_SIGNAL_URG] = 0;
4196   signal_stop[TARGET_SIGNAL_WINCH] = 0;
4197   signal_print[TARGET_SIGNAL_WINCH] = 0;
4198
4199   /* These signals are used internally by user-level thread
4200      implementations.  (See signal(5) on Solaris.)  Like the above
4201      signals, a healthy program receives and handles them as part of
4202      its normal operation.  */
4203   signal_stop[TARGET_SIGNAL_LWP] = 0;
4204   signal_print[TARGET_SIGNAL_LWP] = 0;
4205   signal_stop[TARGET_SIGNAL_WAITING] = 0;
4206   signal_print[TARGET_SIGNAL_WAITING] = 0;
4207   signal_stop[TARGET_SIGNAL_CANCEL] = 0;
4208   signal_print[TARGET_SIGNAL_CANCEL] = 0;
4209
4210 #ifdef SOLIB_ADD
4211   add_show_from_set
4212     (add_set_cmd ("stop-on-solib-events", class_support, var_zinteger,
4213                   (char *) &stop_on_solib_events,
4214                   "Set stopping for shared library events.\n\
4215 If nonzero, gdb will give control to the user when the dynamic linker\n\
4216 notifies gdb of shared library events.  The most common event of interest\n\
4217 to the user would be loading/unloading of a new library.\n",
4218                   &setlist),
4219      &showlist);
4220 #endif
4221
4222   c = add_set_enum_cmd ("follow-fork-mode",
4223                         class_run,
4224                         follow_fork_mode_kind_names,
4225                         (char *) &follow_fork_mode_string,
4226 /* ??rehrauer:  The "both" option is broken, by what may be a 10.20
4227    kernel problem.  It's also not terribly useful without a GUI to
4228    help the user drive two debuggers.  So for now, I'm disabling
4229    the "both" option.  */
4230 /*                      "Set debugger response to a program call of fork \
4231    or vfork.\n\
4232    A fork or vfork creates a new process.  follow-fork-mode can be:\n\
4233    parent  - the original process is debugged after a fork\n\
4234    child   - the new process is debugged after a fork\n\
4235    both    - both the parent and child are debugged after a fork\n\
4236    ask     - the debugger will ask for one of the above choices\n\
4237    For \"both\", another copy of the debugger will be started to follow\n\
4238    the new child process.  The original debugger will continue to follow\n\
4239    the original parent process.  To distinguish their prompts, the\n\
4240    debugger copy's prompt will be changed.\n\
4241    For \"parent\" or \"child\", the unfollowed process will run free.\n\
4242    By default, the debugger will follow the parent process.",
4243  */
4244                         "Set debugger response to a program call of fork \
4245 or vfork.\n\
4246 A fork or vfork creates a new process.  follow-fork-mode can be:\n\
4247   parent  - the original process is debugged after a fork\n\
4248   child   - the new process is debugged after a fork\n\
4249   ask     - the debugger will ask for one of the above choices\n\
4250 For \"parent\" or \"child\", the unfollowed process will run free.\n\
4251 By default, the debugger will follow the parent process.",
4252                         &setlist);
4253 /*  c->function.sfunc = ; */
4254   add_show_from_set (c, &showlist);
4255
4256   set_follow_fork_mode_command ("parent", 0, NULL);
4257
4258   c = add_set_enum_cmd ("scheduler-locking", class_run,
4259                         scheduler_enums,        /* array of string names */
4260                         (char *) &scheduler_mode,       /* current mode  */
4261                         "Set mode for locking scheduler during execution.\n\
4262 off  == no locking (threads may preempt at any time)\n\
4263 on   == full locking (no thread except the current thread may run)\n\
4264 step == scheduler locked during every single-step operation.\n\
4265         In this mode, no other thread may run during a step command.\n\
4266         Other threads may run while stepping over a function call ('next').",
4267                         &setlist);
4268
4269   c->function.sfunc = set_schedlock_func;       /* traps on target vector */
4270   add_show_from_set (c, &showlist);
4271 }
This page took 0.265506 seconds and 4 git commands to generate.