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