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