range stepping: gdb
[platform/upstream/binutils.git] / gdb / infrun.c
1 /* Target-struct-independent code to start (run) and stop an inferior
2    process.
3
4    Copyright (C) 1986-2013 Free Software Foundation, Inc.
5
6    This file is part of GDB.
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
21 #include "defs.h"
22 #include "gdb_string.h"
23 #include <ctype.h>
24 #include "symtab.h"
25 #include "frame.h"
26 #include "inferior.h"
27 #include "exceptions.h"
28 #include "breakpoint.h"
29 #include "gdb_wait.h"
30 #include "gdbcore.h"
31 #include "gdbcmd.h"
32 #include "cli/cli-script.h"
33 #include "target.h"
34 #include "gdbthread.h"
35 #include "annotate.h"
36 #include "symfile.h"
37 #include "top.h"
38 #include <signal.h>
39 #include "inf-loop.h"
40 #include "regcache.h"
41 #include "value.h"
42 #include "observer.h"
43 #include "language.h"
44 #include "solib.h"
45 #include "main.h"
46 #include "dictionary.h"
47 #include "block.h"
48 #include "gdb_assert.h"
49 #include "mi/mi-common.h"
50 #include "event-top.h"
51 #include "record.h"
52 #include "record-full.h"
53 #include "inline-frame.h"
54 #include "jit.h"
55 #include "tracepoint.h"
56 #include "continuations.h"
57 #include "interps.h"
58 #include "skip.h"
59 #include "probe.h"
60 #include "objfiles.h"
61 #include "completer.h"
62 #include "target-descriptions.h"
63
64 /* Prototypes for local functions */
65
66 static void signals_info (char *, int);
67
68 static void handle_command (char *, int);
69
70 static void sig_print_info (enum gdb_signal);
71
72 static void sig_print_header (void);
73
74 static void resume_cleanups (void *);
75
76 static int hook_stop_stub (void *);
77
78 static int restore_selected_frame (void *);
79
80 static int follow_fork (void);
81
82 static void set_schedlock_func (char *args, int from_tty,
83                                 struct cmd_list_element *c);
84
85 static int currently_stepping (struct thread_info *tp);
86
87 static int currently_stepping_or_nexting_callback (struct thread_info *tp,
88                                                    void *data);
89
90 static void xdb_handle_command (char *args, int from_tty);
91
92 static int prepare_to_proceed (int);
93
94 static void print_exited_reason (int exitstatus);
95
96 static void print_signal_exited_reason (enum gdb_signal siggnal);
97
98 static void print_no_history_reason (void);
99
100 static void print_signal_received_reason (enum gdb_signal siggnal);
101
102 static void print_end_stepping_range_reason (void);
103
104 void _initialize_infrun (void);
105
106 void nullify_last_target_wait_ptid (void);
107
108 static void insert_hp_step_resume_breakpoint_at_frame (struct frame_info *);
109
110 static void insert_step_resume_breakpoint_at_caller (struct frame_info *);
111
112 static void insert_longjmp_resume_breakpoint (struct gdbarch *, CORE_ADDR);
113
114 /* When set, stop the 'step' command if we enter a function which has
115    no line number information.  The normal behavior is that we step
116    over such function.  */
117 int step_stop_if_no_debug = 0;
118 static void
119 show_step_stop_if_no_debug (struct ui_file *file, int from_tty,
120                             struct cmd_list_element *c, const char *value)
121 {
122   fprintf_filtered (file, _("Mode of the step operation is %s.\n"), value);
123 }
124
125 /* In asynchronous mode, but simulating synchronous execution.  */
126
127 int sync_execution = 0;
128
129 /* wait_for_inferior and normal_stop use this to notify the user
130    when the inferior stopped in a different thread than it had been
131    running in.  */
132
133 static ptid_t previous_inferior_ptid;
134
135 /* Default behavior is to detach newly forked processes (legacy).  */
136 int detach_fork = 1;
137
138 int debug_displaced = 0;
139 static void
140 show_debug_displaced (struct ui_file *file, int from_tty,
141                       struct cmd_list_element *c, const char *value)
142 {
143   fprintf_filtered (file, _("Displace stepping debugging is %s.\n"), value);
144 }
145
146 unsigned int debug_infrun = 0;
147 static void
148 show_debug_infrun (struct ui_file *file, int from_tty,
149                    struct cmd_list_element *c, const char *value)
150 {
151   fprintf_filtered (file, _("Inferior debugging is %s.\n"), value);
152 }
153
154
155 /* Support for disabling address space randomization.  */
156
157 int disable_randomization = 1;
158
159 static void
160 show_disable_randomization (struct ui_file *file, int from_tty,
161                             struct cmd_list_element *c, const char *value)
162 {
163   if (target_supports_disable_randomization ())
164     fprintf_filtered (file,
165                       _("Disabling randomization of debuggee's "
166                         "virtual address space is %s.\n"),
167                       value);
168   else
169     fputs_filtered (_("Disabling randomization of debuggee's "
170                       "virtual address space is unsupported on\n"
171                       "this platform.\n"), file);
172 }
173
174 static void
175 set_disable_randomization (char *args, int from_tty,
176                            struct cmd_list_element *c)
177 {
178   if (!target_supports_disable_randomization ())
179     error (_("Disabling randomization of debuggee's "
180              "virtual address space is unsupported on\n"
181              "this platform."));
182 }
183
184
185 /* If the program uses ELF-style shared libraries, then calls to
186    functions in shared libraries go through stubs, which live in a
187    table called the PLT (Procedure Linkage Table).  The first time the
188    function is called, the stub sends control to the dynamic linker,
189    which looks up the function's real address, patches the stub so
190    that future calls will go directly to the function, and then passes
191    control to the function.
192
193    If we are stepping at the source level, we don't want to see any of
194    this --- we just want to skip over the stub and the dynamic linker.
195    The simple approach is to single-step until control leaves the
196    dynamic linker.
197
198    However, on some systems (e.g., Red Hat's 5.2 distribution) the
199    dynamic linker calls functions in the shared C library, so you
200    can't tell from the PC alone whether the dynamic linker is still
201    running.  In this case, we use a step-resume breakpoint to get us
202    past the dynamic linker, as if we were using "next" to step over a
203    function call.
204
205    in_solib_dynsym_resolve_code() says whether we're in the dynamic
206    linker code or not.  Normally, this means we single-step.  However,
207    if SKIP_SOLIB_RESOLVER then returns non-zero, then its value is an
208    address where we can place a step-resume breakpoint to get past the
209    linker's symbol resolution function.
210
211    in_solib_dynsym_resolve_code() can generally be implemented in a
212    pretty portable way, by comparing the PC against the address ranges
213    of the dynamic linker's sections.
214
215    SKIP_SOLIB_RESOLVER is generally going to be system-specific, since
216    it depends on internal details of the dynamic linker.  It's usually
217    not too hard to figure out where to put a breakpoint, but it
218    certainly isn't portable.  SKIP_SOLIB_RESOLVER should do plenty of
219    sanity checking.  If it can't figure things out, returning zero and
220    getting the (possibly confusing) stepping behavior is better than
221    signalling an error, which will obscure the change in the
222    inferior's state.  */
223
224 /* This function returns TRUE if pc is the address of an instruction
225    that lies within the dynamic linker (such as the event hook, or the
226    dld itself).
227
228    This function must be used only when a dynamic linker event has
229    been caught, and the inferior is being stepped out of the hook, or
230    undefined results are guaranteed.  */
231
232 #ifndef SOLIB_IN_DYNAMIC_LINKER
233 #define SOLIB_IN_DYNAMIC_LINKER(pid,pc) 0
234 #endif
235
236 /* "Observer mode" is somewhat like a more extreme version of
237    non-stop, in which all GDB operations that might affect the
238    target's execution have been disabled.  */
239
240 static int non_stop_1 = 0;
241
242 int observer_mode = 0;
243 static int observer_mode_1 = 0;
244
245 static void
246 set_observer_mode (char *args, int from_tty,
247                    struct cmd_list_element *c)
248 {
249   extern int pagination_enabled;
250
251   if (target_has_execution)
252     {
253       observer_mode_1 = observer_mode;
254       error (_("Cannot change this setting while the inferior is running."));
255     }
256
257   observer_mode = observer_mode_1;
258
259   may_write_registers = !observer_mode;
260   may_write_memory = !observer_mode;
261   may_insert_breakpoints = !observer_mode;
262   may_insert_tracepoints = !observer_mode;
263   /* We can insert fast tracepoints in or out of observer mode,
264      but enable them if we're going into this mode.  */
265   if (observer_mode)
266     may_insert_fast_tracepoints = 1;
267   may_stop = !observer_mode;
268   update_target_permissions ();
269
270   /* Going *into* observer mode we must force non-stop, then
271      going out we leave it that way.  */
272   if (observer_mode)
273     {
274       target_async_permitted = 1;
275       pagination_enabled = 0;
276       non_stop = non_stop_1 = 1;
277     }
278
279   if (from_tty)
280     printf_filtered (_("Observer mode is now %s.\n"),
281                      (observer_mode ? "on" : "off"));
282 }
283
284 static void
285 show_observer_mode (struct ui_file *file, int from_tty,
286                     struct cmd_list_element *c, const char *value)
287 {
288   fprintf_filtered (file, _("Observer mode is %s.\n"), value);
289 }
290
291 /* This updates the value of observer mode based on changes in
292    permissions.  Note that we are deliberately ignoring the values of
293    may-write-registers and may-write-memory, since the user may have
294    reason to enable these during a session, for instance to turn on a
295    debugging-related global.  */
296
297 void
298 update_observer_mode (void)
299 {
300   int newval;
301
302   newval = (!may_insert_breakpoints
303             && !may_insert_tracepoints
304             && may_insert_fast_tracepoints
305             && !may_stop
306             && non_stop);
307
308   /* Let the user know if things change.  */
309   if (newval != observer_mode)
310     printf_filtered (_("Observer mode is now %s.\n"),
311                      (newval ? "on" : "off"));
312
313   observer_mode = observer_mode_1 = newval;
314 }
315
316 /* Tables of how to react to signals; the user sets them.  */
317
318 static unsigned char *signal_stop;
319 static unsigned char *signal_print;
320 static unsigned char *signal_program;
321
322 /* Table of signals that are registered with "catch signal".  A
323    non-zero entry indicates that the signal is caught by some "catch
324    signal" command.  This has size GDB_SIGNAL_LAST, to accommodate all
325    signals.  */
326 static unsigned char *signal_catch;
327
328 /* Table of signals that the target may silently handle.
329    This is automatically determined from the flags above,
330    and simply cached here.  */
331 static unsigned char *signal_pass;
332
333 #define SET_SIGS(nsigs,sigs,flags) \
334   do { \
335     int signum = (nsigs); \
336     while (signum-- > 0) \
337       if ((sigs)[signum]) \
338         (flags)[signum] = 1; \
339   } while (0)
340
341 #define UNSET_SIGS(nsigs,sigs,flags) \
342   do { \
343     int signum = (nsigs); \
344     while (signum-- > 0) \
345       if ((sigs)[signum]) \
346         (flags)[signum] = 0; \
347   } while (0)
348
349 /* Update the target's copy of SIGNAL_PROGRAM.  The sole purpose of
350    this function is to avoid exporting `signal_program'.  */
351
352 void
353 update_signals_program_target (void)
354 {
355   target_program_signals ((int) GDB_SIGNAL_LAST, signal_program);
356 }
357
358 /* Value to pass to target_resume() to cause all threads to resume.  */
359
360 #define RESUME_ALL minus_one_ptid
361
362 /* Command list pointer for the "stop" placeholder.  */
363
364 static struct cmd_list_element *stop_command;
365
366 /* Function inferior was in as of last step command.  */
367
368 static struct symbol *step_start_function;
369
370 /* Nonzero if we want to give control to the user when we're notified
371    of shared library events by the dynamic linker.  */
372 int stop_on_solib_events;
373 static void
374 show_stop_on_solib_events (struct ui_file *file, int from_tty,
375                            struct cmd_list_element *c, const char *value)
376 {
377   fprintf_filtered (file, _("Stopping for shared library events is %s.\n"),
378                     value);
379 }
380
381 /* Nonzero means expecting a trace trap
382    and should stop the inferior and return silently when it happens.  */
383
384 int stop_after_trap;
385
386 /* Save register contents here when executing a "finish" command or are
387    about to pop a stack dummy frame, if-and-only-if proceed_to_finish is set.
388    Thus this contains the return value from the called function (assuming
389    values are returned in a register).  */
390
391 struct regcache *stop_registers;
392
393 /* Nonzero after stop if current stack frame should be printed.  */
394
395 static int stop_print_frame;
396
397 /* This is a cached copy of the pid/waitstatus of the last event
398    returned by target_wait()/deprecated_target_wait_hook().  This
399    information is returned by get_last_target_status().  */
400 static ptid_t target_last_wait_ptid;
401 static struct target_waitstatus target_last_waitstatus;
402
403 static void context_switch (ptid_t ptid);
404
405 void init_thread_stepping_state (struct thread_info *tss);
406
407 static void init_infwait_state (void);
408
409 static const char follow_fork_mode_child[] = "child";
410 static const char follow_fork_mode_parent[] = "parent";
411
412 static const char *const follow_fork_mode_kind_names[] = {
413   follow_fork_mode_child,
414   follow_fork_mode_parent,
415   NULL
416 };
417
418 static const char *follow_fork_mode_string = follow_fork_mode_parent;
419 static void
420 show_follow_fork_mode_string (struct ui_file *file, int from_tty,
421                               struct cmd_list_element *c, const char *value)
422 {
423   fprintf_filtered (file,
424                     _("Debugger response to a program "
425                       "call of fork or vfork is \"%s\".\n"),
426                     value);
427 }
428 \f
429
430 /* Tell the target to follow the fork we're stopped at.  Returns true
431    if the inferior should be resumed; false, if the target for some
432    reason decided it's best not to resume.  */
433
434 static int
435 follow_fork (void)
436 {
437   int follow_child = (follow_fork_mode_string == follow_fork_mode_child);
438   int should_resume = 1;
439   struct thread_info *tp;
440
441   /* Copy user stepping state to the new inferior thread.  FIXME: the
442      followed fork child thread should have a copy of most of the
443      parent thread structure's run control related fields, not just these.
444      Initialized to avoid "may be used uninitialized" warnings from gcc.  */
445   struct breakpoint *step_resume_breakpoint = NULL;
446   struct breakpoint *exception_resume_breakpoint = NULL;
447   CORE_ADDR step_range_start = 0;
448   CORE_ADDR step_range_end = 0;
449   struct frame_id step_frame_id = { 0 };
450
451   if (!non_stop)
452     {
453       ptid_t wait_ptid;
454       struct target_waitstatus wait_status;
455
456       /* Get the last target status returned by target_wait().  */
457       get_last_target_status (&wait_ptid, &wait_status);
458
459       /* If not stopped at a fork event, then there's nothing else to
460          do.  */
461       if (wait_status.kind != TARGET_WAITKIND_FORKED
462           && wait_status.kind != TARGET_WAITKIND_VFORKED)
463         return 1;
464
465       /* Check if we switched over from WAIT_PTID, since the event was
466          reported.  */
467       if (!ptid_equal (wait_ptid, minus_one_ptid)
468           && !ptid_equal (inferior_ptid, wait_ptid))
469         {
470           /* We did.  Switch back to WAIT_PTID thread, to tell the
471              target to follow it (in either direction).  We'll
472              afterwards refuse to resume, and inform the user what
473              happened.  */
474           switch_to_thread (wait_ptid);
475           should_resume = 0;
476         }
477     }
478
479   tp = inferior_thread ();
480
481   /* If there were any forks/vforks that were caught and are now to be
482      followed, then do so now.  */
483   switch (tp->pending_follow.kind)
484     {
485     case TARGET_WAITKIND_FORKED:
486     case TARGET_WAITKIND_VFORKED:
487       {
488         ptid_t parent, child;
489
490         /* If the user did a next/step, etc, over a fork call,
491            preserve the stepping state in the fork child.  */
492         if (follow_child && should_resume)
493           {
494             step_resume_breakpoint = clone_momentary_breakpoint
495                                          (tp->control.step_resume_breakpoint);
496             step_range_start = tp->control.step_range_start;
497             step_range_end = tp->control.step_range_end;
498             step_frame_id = tp->control.step_frame_id;
499             exception_resume_breakpoint
500               = clone_momentary_breakpoint (tp->control.exception_resume_breakpoint);
501
502             /* For now, delete the parent's sr breakpoint, otherwise,
503                parent/child sr breakpoints are considered duplicates,
504                and the child version will not be installed.  Remove
505                this when the breakpoints module becomes aware of
506                inferiors and address spaces.  */
507             delete_step_resume_breakpoint (tp);
508             tp->control.step_range_start = 0;
509             tp->control.step_range_end = 0;
510             tp->control.step_frame_id = null_frame_id;
511             delete_exception_resume_breakpoint (tp);
512           }
513
514         parent = inferior_ptid;
515         child = tp->pending_follow.value.related_pid;
516
517         /* Tell the target to do whatever is necessary to follow
518            either parent or child.  */
519         if (target_follow_fork (follow_child))
520           {
521             /* Target refused to follow, or there's some other reason
522                we shouldn't resume.  */
523             should_resume = 0;
524           }
525         else
526           {
527             /* This pending follow fork event is now handled, one way
528                or another.  The previous selected thread may be gone
529                from the lists by now, but if it is still around, need
530                to clear the pending follow request.  */
531             tp = find_thread_ptid (parent);
532             if (tp)
533               tp->pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
534
535             /* This makes sure we don't try to apply the "Switched
536                over from WAIT_PID" logic above.  */
537             nullify_last_target_wait_ptid ();
538
539             /* If we followed the child, switch to it...  */
540             if (follow_child)
541               {
542                 switch_to_thread (child);
543
544                 /* ... and preserve the stepping state, in case the
545                    user was stepping over the fork call.  */
546                 if (should_resume)
547                   {
548                     tp = inferior_thread ();
549                     tp->control.step_resume_breakpoint
550                       = step_resume_breakpoint;
551                     tp->control.step_range_start = step_range_start;
552                     tp->control.step_range_end = step_range_end;
553                     tp->control.step_frame_id = step_frame_id;
554                     tp->control.exception_resume_breakpoint
555                       = exception_resume_breakpoint;
556                   }
557                 else
558                   {
559                     /* If we get here, it was because we're trying to
560                        resume from a fork catchpoint, but, the user
561                        has switched threads away from the thread that
562                        forked.  In that case, the resume command
563                        issued is most likely not applicable to the
564                        child, so just warn, and refuse to resume.  */
565                     warning (_("Not resuming: switched threads "
566                                "before following fork child.\n"));
567                   }
568
569                 /* Reset breakpoints in the child as appropriate.  */
570                 follow_inferior_reset_breakpoints ();
571               }
572             else
573               switch_to_thread (parent);
574           }
575       }
576       break;
577     case TARGET_WAITKIND_SPURIOUS:
578       /* Nothing to follow.  */
579       break;
580     default:
581       internal_error (__FILE__, __LINE__,
582                       "Unexpected pending_follow.kind %d\n",
583                       tp->pending_follow.kind);
584       break;
585     }
586
587   return should_resume;
588 }
589
590 void
591 follow_inferior_reset_breakpoints (void)
592 {
593   struct thread_info *tp = inferior_thread ();
594
595   /* Was there a step_resume breakpoint?  (There was if the user
596      did a "next" at the fork() call.)  If so, explicitly reset its
597      thread number.
598
599      step_resumes are a form of bp that are made to be per-thread.
600      Since we created the step_resume bp when the parent process
601      was being debugged, and now are switching to the child process,
602      from the breakpoint package's viewpoint, that's a switch of
603      "threads".  We must update the bp's notion of which thread
604      it is for, or it'll be ignored when it triggers.  */
605
606   if (tp->control.step_resume_breakpoint)
607     breakpoint_re_set_thread (tp->control.step_resume_breakpoint);
608
609   if (tp->control.exception_resume_breakpoint)
610     breakpoint_re_set_thread (tp->control.exception_resume_breakpoint);
611
612   /* Reinsert all breakpoints in the child.  The user may have set
613      breakpoints after catching the fork, in which case those
614      were never set in the child, but only in the parent.  This makes
615      sure the inserted breakpoints match the breakpoint list.  */
616
617   breakpoint_re_set ();
618   insert_breakpoints ();
619 }
620
621 /* The child has exited or execed: resume threads of the parent the
622    user wanted to be executing.  */
623
624 static int
625 proceed_after_vfork_done (struct thread_info *thread,
626                           void *arg)
627 {
628   int pid = * (int *) arg;
629
630   if (ptid_get_pid (thread->ptid) == pid
631       && is_running (thread->ptid)
632       && !is_executing (thread->ptid)
633       && !thread->stop_requested
634       && thread->suspend.stop_signal == GDB_SIGNAL_0)
635     {
636       if (debug_infrun)
637         fprintf_unfiltered (gdb_stdlog,
638                             "infrun: resuming vfork parent thread %s\n",
639                             target_pid_to_str (thread->ptid));
640
641       switch_to_thread (thread->ptid);
642       clear_proceed_status ();
643       proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
644     }
645
646   return 0;
647 }
648
649 /* Called whenever we notice an exec or exit event, to handle
650    detaching or resuming a vfork parent.  */
651
652 static void
653 handle_vfork_child_exec_or_exit (int exec)
654 {
655   struct inferior *inf = current_inferior ();
656
657   if (inf->vfork_parent)
658     {
659       int resume_parent = -1;
660
661       /* This exec or exit marks the end of the shared memory region
662          between the parent and the child.  If the user wanted to
663          detach from the parent, now is the time.  */
664
665       if (inf->vfork_parent->pending_detach)
666         {
667           struct thread_info *tp;
668           struct cleanup *old_chain;
669           struct program_space *pspace;
670           struct address_space *aspace;
671
672           /* follow-fork child, detach-on-fork on.  */
673
674           inf->vfork_parent->pending_detach = 0;
675
676           if (!exec)
677             {
678               /* If we're handling a child exit, then inferior_ptid
679                  points at the inferior's pid, not to a thread.  */
680               old_chain = save_inferior_ptid ();
681               save_current_program_space ();
682               save_current_inferior ();
683             }
684           else
685             old_chain = save_current_space_and_thread ();
686
687           /* We're letting loose of the parent.  */
688           tp = any_live_thread_of_process (inf->vfork_parent->pid);
689           switch_to_thread (tp->ptid);
690
691           /* We're about to detach from the parent, which implicitly
692              removes breakpoints from its address space.  There's a
693              catch here: we want to reuse the spaces for the child,
694              but, parent/child are still sharing the pspace at this
695              point, although the exec in reality makes the kernel give
696              the child a fresh set of new pages.  The problem here is
697              that the breakpoints module being unaware of this, would
698              likely chose the child process to write to the parent
699              address space.  Swapping the child temporarily away from
700              the spaces has the desired effect.  Yes, this is "sort
701              of" a hack.  */
702
703           pspace = inf->pspace;
704           aspace = inf->aspace;
705           inf->aspace = NULL;
706           inf->pspace = NULL;
707
708           if (debug_infrun || info_verbose)
709             {
710               target_terminal_ours ();
711
712               if (exec)
713                 fprintf_filtered (gdb_stdlog,
714                                   "Detaching vfork parent process "
715                                   "%d after child exec.\n",
716                                   inf->vfork_parent->pid);
717               else
718                 fprintf_filtered (gdb_stdlog,
719                                   "Detaching vfork parent process "
720                                   "%d after child exit.\n",
721                                   inf->vfork_parent->pid);
722             }
723
724           target_detach (NULL, 0);
725
726           /* Put it back.  */
727           inf->pspace = pspace;
728           inf->aspace = aspace;
729
730           do_cleanups (old_chain);
731         }
732       else if (exec)
733         {
734           /* We're staying attached to the parent, so, really give the
735              child a new address space.  */
736           inf->pspace = add_program_space (maybe_new_address_space ());
737           inf->aspace = inf->pspace->aspace;
738           inf->removable = 1;
739           set_current_program_space (inf->pspace);
740
741           resume_parent = inf->vfork_parent->pid;
742
743           /* Break the bonds.  */
744           inf->vfork_parent->vfork_child = NULL;
745         }
746       else
747         {
748           struct cleanup *old_chain;
749           struct program_space *pspace;
750
751           /* If this is a vfork child exiting, then the pspace and
752              aspaces were shared with the parent.  Since we're
753              reporting the process exit, we'll be mourning all that is
754              found in the address space, and switching to null_ptid,
755              preparing to start a new inferior.  But, since we don't
756              want to clobber the parent's address/program spaces, we
757              go ahead and create a new one for this exiting
758              inferior.  */
759
760           /* Switch to null_ptid, so that clone_program_space doesn't want
761              to read the selected frame of a dead process.  */
762           old_chain = save_inferior_ptid ();
763           inferior_ptid = null_ptid;
764
765           /* This inferior is dead, so avoid giving the breakpoints
766              module the option to write through to it (cloning a
767              program space resets breakpoints).  */
768           inf->aspace = NULL;
769           inf->pspace = NULL;
770           pspace = add_program_space (maybe_new_address_space ());
771           set_current_program_space (pspace);
772           inf->removable = 1;
773           inf->symfile_flags = SYMFILE_NO_READ;
774           clone_program_space (pspace, inf->vfork_parent->pspace);
775           inf->pspace = pspace;
776           inf->aspace = pspace->aspace;
777
778           /* Put back inferior_ptid.  We'll continue mourning this
779              inferior.  */
780           do_cleanups (old_chain);
781
782           resume_parent = inf->vfork_parent->pid;
783           /* Break the bonds.  */
784           inf->vfork_parent->vfork_child = NULL;
785         }
786
787       inf->vfork_parent = NULL;
788
789       gdb_assert (current_program_space == inf->pspace);
790
791       if (non_stop && resume_parent != -1)
792         {
793           /* If the user wanted the parent to be running, let it go
794              free now.  */
795           struct cleanup *old_chain = make_cleanup_restore_current_thread ();
796
797           if (debug_infrun)
798             fprintf_unfiltered (gdb_stdlog,
799                                 "infrun: resuming vfork parent process %d\n",
800                                 resume_parent);
801
802           iterate_over_threads (proceed_after_vfork_done, &resume_parent);
803
804           do_cleanups (old_chain);
805         }
806     }
807 }
808
809 /* Enum strings for "set|show follow-exec-mode".  */
810
811 static const char follow_exec_mode_new[] = "new";
812 static const char follow_exec_mode_same[] = "same";
813 static const char *const follow_exec_mode_names[] =
814 {
815   follow_exec_mode_new,
816   follow_exec_mode_same,
817   NULL,
818 };
819
820 static const char *follow_exec_mode_string = follow_exec_mode_same;
821 static void
822 show_follow_exec_mode_string (struct ui_file *file, int from_tty,
823                               struct cmd_list_element *c, const char *value)
824 {
825   fprintf_filtered (file, _("Follow exec mode is \"%s\".\n"),  value);
826 }
827
828 /* EXECD_PATHNAME is assumed to be non-NULL.  */
829
830 static void
831 follow_exec (ptid_t pid, char *execd_pathname)
832 {
833   struct thread_info *th = inferior_thread ();
834   struct inferior *inf = current_inferior ();
835
836   /* This is an exec event that we actually wish to pay attention to.
837      Refresh our symbol table to the newly exec'd program, remove any
838      momentary bp's, etc.
839
840      If there are breakpoints, they aren't really inserted now,
841      since the exec() transformed our inferior into a fresh set
842      of instructions.
843
844      We want to preserve symbolic breakpoints on the list, since
845      we have hopes that they can be reset after the new a.out's
846      symbol table is read.
847
848      However, any "raw" breakpoints must be removed from the list
849      (e.g., the solib bp's), since their address is probably invalid
850      now.
851
852      And, we DON'T want to call delete_breakpoints() here, since
853      that may write the bp's "shadow contents" (the instruction
854      value that was overwritten witha TRAP instruction).  Since
855      we now have a new a.out, those shadow contents aren't valid.  */
856
857   mark_breakpoints_out ();
858
859   update_breakpoints_after_exec ();
860
861   /* If there was one, it's gone now.  We cannot truly step-to-next
862      statement through an exec().  */
863   th->control.step_resume_breakpoint = NULL;
864   th->control.exception_resume_breakpoint = NULL;
865   th->control.step_range_start = 0;
866   th->control.step_range_end = 0;
867
868   /* The target reports the exec event to the main thread, even if
869      some other thread does the exec, and even if the main thread was
870      already stopped --- if debugging in non-stop mode, it's possible
871      the user had the main thread held stopped in the previous image
872      --- release it now.  This is the same behavior as step-over-exec
873      with scheduler-locking on in all-stop mode.  */
874   th->stop_requested = 0;
875
876   /* What is this a.out's name?  */
877   printf_unfiltered (_("%s is executing new program: %s\n"),
878                      target_pid_to_str (inferior_ptid),
879                      execd_pathname);
880
881   /* We've followed the inferior through an exec.  Therefore, the
882      inferior has essentially been killed & reborn.  */
883
884   gdb_flush (gdb_stdout);
885
886   breakpoint_init_inferior (inf_execd);
887
888   if (gdb_sysroot && *gdb_sysroot)
889     {
890       char *name = alloca (strlen (gdb_sysroot)
891                             + strlen (execd_pathname)
892                             + 1);
893
894       strcpy (name, gdb_sysroot);
895       strcat (name, execd_pathname);
896       execd_pathname = name;
897     }
898
899   /* Reset the shared library package.  This ensures that we get a
900      shlib event when the child reaches "_start", at which point the
901      dld will have had a chance to initialize the child.  */
902   /* Also, loading a symbol file below may trigger symbol lookups, and
903      we don't want those to be satisfied by the libraries of the
904      previous incarnation of this process.  */
905   no_shared_libraries (NULL, 0);
906
907   if (follow_exec_mode_string == follow_exec_mode_new)
908     {
909       struct program_space *pspace;
910
911       /* The user wants to keep the old inferior and program spaces
912          around.  Create a new fresh one, and switch to it.  */
913
914       inf = add_inferior (current_inferior ()->pid);
915       pspace = add_program_space (maybe_new_address_space ());
916       inf->pspace = pspace;
917       inf->aspace = pspace->aspace;
918
919       exit_inferior_num_silent (current_inferior ()->num);
920
921       set_current_inferior (inf);
922       set_current_program_space (pspace);
923     }
924   else
925     {
926       /* The old description may no longer be fit for the new image.
927          E.g, a 64-bit process exec'ed a 32-bit process.  Clear the
928          old description; we'll read a new one below.  No need to do
929          this on "follow-exec-mode new", as the old inferior stays
930          around (its description is later cleared/refetched on
931          restart).  */
932       target_clear_description ();
933     }
934
935   gdb_assert (current_program_space == inf->pspace);
936
937   /* That a.out is now the one to use.  */
938   exec_file_attach (execd_pathname, 0);
939
940   /* SYMFILE_DEFER_BP_RESET is used as the proper displacement for PIE
941      (Position Independent Executable) main symbol file will get applied by
942      solib_create_inferior_hook below.  breakpoint_re_set would fail to insert
943      the breakpoints with the zero displacement.  */
944
945   symbol_file_add (execd_pathname,
946                    (inf->symfile_flags
947                     | SYMFILE_MAINLINE | SYMFILE_DEFER_BP_RESET),
948                    NULL, 0);
949
950   if ((inf->symfile_flags & SYMFILE_NO_READ) == 0)
951     set_initial_language ();
952
953   /* If the target can specify a description, read it.  Must do this
954      after flipping to the new executable (because the target supplied
955      description must be compatible with the executable's
956      architecture, and the old executable may e.g., be 32-bit, while
957      the new one 64-bit), and before anything involving memory or
958      registers.  */
959   target_find_description ();
960
961   solib_create_inferior_hook (0);
962
963   jit_inferior_created_hook ();
964
965   breakpoint_re_set ();
966
967   /* Reinsert all breakpoints.  (Those which were symbolic have
968      been reset to the proper address in the new a.out, thanks
969      to symbol_file_command...).  */
970   insert_breakpoints ();
971
972   /* The next resume of this inferior should bring it to the shlib
973      startup breakpoints.  (If the user had also set bp's on
974      "main" from the old (parent) process, then they'll auto-
975      matically get reset there in the new process.).  */
976 }
977
978 /* Non-zero if we just simulating a single-step.  This is needed
979    because we cannot remove the breakpoints in the inferior process
980    until after the `wait' in `wait_for_inferior'.  */
981 static int singlestep_breakpoints_inserted_p = 0;
982
983 /* The thread we inserted single-step breakpoints for.  */
984 static ptid_t singlestep_ptid;
985
986 /* PC when we started this single-step.  */
987 static CORE_ADDR singlestep_pc;
988
989 /* If another thread hit the singlestep breakpoint, we save the original
990    thread here so that we can resume single-stepping it later.  */
991 static ptid_t saved_singlestep_ptid;
992 static int stepping_past_singlestep_breakpoint;
993
994 /* If not equal to null_ptid, this means that after stepping over breakpoint
995    is finished, we need to switch to deferred_step_ptid, and step it.
996
997    The use case is when one thread has hit a breakpoint, and then the user 
998    has switched to another thread and issued 'step'.  We need to step over
999    breakpoint in the thread which hit the breakpoint, but then continue
1000    stepping the thread user has selected.  */
1001 static ptid_t deferred_step_ptid;
1002 \f
1003 /* Displaced stepping.  */
1004
1005 /* In non-stop debugging mode, we must take special care to manage
1006    breakpoints properly; in particular, the traditional strategy for
1007    stepping a thread past a breakpoint it has hit is unsuitable.
1008    'Displaced stepping' is a tactic for stepping one thread past a
1009    breakpoint it has hit while ensuring that other threads running
1010    concurrently will hit the breakpoint as they should.
1011
1012    The traditional way to step a thread T off a breakpoint in a
1013    multi-threaded program in all-stop mode is as follows:
1014
1015    a0) Initially, all threads are stopped, and breakpoints are not
1016        inserted.
1017    a1) We single-step T, leaving breakpoints uninserted.
1018    a2) We insert breakpoints, and resume all threads.
1019
1020    In non-stop debugging, however, this strategy is unsuitable: we
1021    don't want to have to stop all threads in the system in order to
1022    continue or step T past a breakpoint.  Instead, we use displaced
1023    stepping:
1024
1025    n0) Initially, T is stopped, other threads are running, and
1026        breakpoints are inserted.
1027    n1) We copy the instruction "under" the breakpoint to a separate
1028        location, outside the main code stream, making any adjustments
1029        to the instruction, register, and memory state as directed by
1030        T's architecture.
1031    n2) We single-step T over the instruction at its new location.
1032    n3) We adjust the resulting register and memory state as directed
1033        by T's architecture.  This includes resetting T's PC to point
1034        back into the main instruction stream.
1035    n4) We resume T.
1036
1037    This approach depends on the following gdbarch methods:
1038
1039    - gdbarch_max_insn_length and gdbarch_displaced_step_location
1040      indicate where to copy the instruction, and how much space must
1041      be reserved there.  We use these in step n1.
1042
1043    - gdbarch_displaced_step_copy_insn copies a instruction to a new
1044      address, and makes any necessary adjustments to the instruction,
1045      register contents, and memory.  We use this in step n1.
1046
1047    - gdbarch_displaced_step_fixup adjusts registers and memory after
1048      we have successfuly single-stepped the instruction, to yield the
1049      same effect the instruction would have had if we had executed it
1050      at its original address.  We use this in step n3.
1051
1052    - gdbarch_displaced_step_free_closure provides cleanup.
1053
1054    The gdbarch_displaced_step_copy_insn and
1055    gdbarch_displaced_step_fixup functions must be written so that
1056    copying an instruction with gdbarch_displaced_step_copy_insn,
1057    single-stepping across the copied instruction, and then applying
1058    gdbarch_displaced_insn_fixup should have the same effects on the
1059    thread's memory and registers as stepping the instruction in place
1060    would have.  Exactly which responsibilities fall to the copy and
1061    which fall to the fixup is up to the author of those functions.
1062
1063    See the comments in gdbarch.sh for details.
1064
1065    Note that displaced stepping and software single-step cannot
1066    currently be used in combination, although with some care I think
1067    they could be made to.  Software single-step works by placing
1068    breakpoints on all possible subsequent instructions; if the
1069    displaced instruction is a PC-relative jump, those breakpoints
1070    could fall in very strange places --- on pages that aren't
1071    executable, or at addresses that are not proper instruction
1072    boundaries.  (We do generally let other threads run while we wait
1073    to hit the software single-step breakpoint, and they might
1074    encounter such a corrupted instruction.)  One way to work around
1075    this would be to have gdbarch_displaced_step_copy_insn fully
1076    simulate the effect of PC-relative instructions (and return NULL)
1077    on architectures that use software single-stepping.
1078
1079    In non-stop mode, we can have independent and simultaneous step
1080    requests, so more than one thread may need to simultaneously step
1081    over a breakpoint.  The current implementation assumes there is
1082    only one scratch space per process.  In this case, we have to
1083    serialize access to the scratch space.  If thread A wants to step
1084    over a breakpoint, but we are currently waiting for some other
1085    thread to complete a displaced step, we leave thread A stopped and
1086    place it in the displaced_step_request_queue.  Whenever a displaced
1087    step finishes, we pick the next thread in the queue and start a new
1088    displaced step operation on it.  See displaced_step_prepare and
1089    displaced_step_fixup for details.  */
1090
1091 struct displaced_step_request
1092 {
1093   ptid_t ptid;
1094   struct displaced_step_request *next;
1095 };
1096
1097 /* Per-inferior displaced stepping state.  */
1098 struct displaced_step_inferior_state
1099 {
1100   /* Pointer to next in linked list.  */
1101   struct displaced_step_inferior_state *next;
1102
1103   /* The process this displaced step state refers to.  */
1104   int pid;
1105
1106   /* A queue of pending displaced stepping requests.  One entry per
1107      thread that needs to do a displaced step.  */
1108   struct displaced_step_request *step_request_queue;
1109
1110   /* If this is not null_ptid, this is the thread carrying out a
1111      displaced single-step in process PID.  This thread's state will
1112      require fixing up once it has completed its step.  */
1113   ptid_t step_ptid;
1114
1115   /* The architecture the thread had when we stepped it.  */
1116   struct gdbarch *step_gdbarch;
1117
1118   /* The closure provided gdbarch_displaced_step_copy_insn, to be used
1119      for post-step cleanup.  */
1120   struct displaced_step_closure *step_closure;
1121
1122   /* The address of the original instruction, and the copy we
1123      made.  */
1124   CORE_ADDR step_original, step_copy;
1125
1126   /* Saved contents of copy area.  */
1127   gdb_byte *step_saved_copy;
1128 };
1129
1130 /* The list of states of processes involved in displaced stepping
1131    presently.  */
1132 static struct displaced_step_inferior_state *displaced_step_inferior_states;
1133
1134 /* Get the displaced stepping state of process PID.  */
1135
1136 static struct displaced_step_inferior_state *
1137 get_displaced_stepping_state (int pid)
1138 {
1139   struct displaced_step_inferior_state *state;
1140
1141   for (state = displaced_step_inferior_states;
1142        state != NULL;
1143        state = state->next)
1144     if (state->pid == pid)
1145       return state;
1146
1147   return NULL;
1148 }
1149
1150 /* Add a new displaced stepping state for process PID to the displaced
1151    stepping state list, or return a pointer to an already existing
1152    entry, if it already exists.  Never returns NULL.  */
1153
1154 static struct displaced_step_inferior_state *
1155 add_displaced_stepping_state (int pid)
1156 {
1157   struct displaced_step_inferior_state *state;
1158
1159   for (state = displaced_step_inferior_states;
1160        state != NULL;
1161        state = state->next)
1162     if (state->pid == pid)
1163       return state;
1164
1165   state = xcalloc (1, sizeof (*state));
1166   state->pid = pid;
1167   state->next = displaced_step_inferior_states;
1168   displaced_step_inferior_states = state;
1169
1170   return state;
1171 }
1172
1173 /* If inferior is in displaced stepping, and ADDR equals to starting address
1174    of copy area, return corresponding displaced_step_closure.  Otherwise,
1175    return NULL.  */
1176
1177 struct displaced_step_closure*
1178 get_displaced_step_closure_by_addr (CORE_ADDR addr)
1179 {
1180   struct displaced_step_inferior_state *displaced
1181     = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
1182
1183   /* If checking the mode of displaced instruction in copy area.  */
1184   if (displaced && !ptid_equal (displaced->step_ptid, null_ptid)
1185      && (displaced->step_copy == addr))
1186     return displaced->step_closure;
1187
1188   return NULL;
1189 }
1190
1191 /* Remove the displaced stepping state of process PID.  */
1192
1193 static void
1194 remove_displaced_stepping_state (int pid)
1195 {
1196   struct displaced_step_inferior_state *it, **prev_next_p;
1197
1198   gdb_assert (pid != 0);
1199
1200   it = displaced_step_inferior_states;
1201   prev_next_p = &displaced_step_inferior_states;
1202   while (it)
1203     {
1204       if (it->pid == pid)
1205         {
1206           *prev_next_p = it->next;
1207           xfree (it);
1208           return;
1209         }
1210
1211       prev_next_p = &it->next;
1212       it = *prev_next_p;
1213     }
1214 }
1215
1216 static void
1217 infrun_inferior_exit (struct inferior *inf)
1218 {
1219   remove_displaced_stepping_state (inf->pid);
1220 }
1221
1222 /* If ON, and the architecture supports it, GDB will use displaced
1223    stepping to step over breakpoints.  If OFF, or if the architecture
1224    doesn't support it, GDB will instead use the traditional
1225    hold-and-step approach.  If AUTO (which is the default), GDB will
1226    decide which technique to use to step over breakpoints depending on
1227    which of all-stop or non-stop mode is active --- displaced stepping
1228    in non-stop mode; hold-and-step in all-stop mode.  */
1229
1230 static enum auto_boolean can_use_displaced_stepping = AUTO_BOOLEAN_AUTO;
1231
1232 static void
1233 show_can_use_displaced_stepping (struct ui_file *file, int from_tty,
1234                                  struct cmd_list_element *c,
1235                                  const char *value)
1236 {
1237   if (can_use_displaced_stepping == AUTO_BOOLEAN_AUTO)
1238     fprintf_filtered (file,
1239                       _("Debugger's willingness to use displaced stepping "
1240                         "to step over breakpoints is %s (currently %s).\n"),
1241                       value, non_stop ? "on" : "off");
1242   else
1243     fprintf_filtered (file,
1244                       _("Debugger's willingness to use displaced stepping "
1245                         "to step over breakpoints is %s.\n"), value);
1246 }
1247
1248 /* Return non-zero if displaced stepping can/should be used to step
1249    over breakpoints.  */
1250
1251 static int
1252 use_displaced_stepping (struct gdbarch *gdbarch)
1253 {
1254   return (((can_use_displaced_stepping == AUTO_BOOLEAN_AUTO && non_stop)
1255            || can_use_displaced_stepping == AUTO_BOOLEAN_TRUE)
1256           && gdbarch_displaced_step_copy_insn_p (gdbarch)
1257           && !RECORD_IS_USED);
1258 }
1259
1260 /* Clean out any stray displaced stepping state.  */
1261 static void
1262 displaced_step_clear (struct displaced_step_inferior_state *displaced)
1263 {
1264   /* Indicate that there is no cleanup pending.  */
1265   displaced->step_ptid = null_ptid;
1266
1267   if (displaced->step_closure)
1268     {
1269       gdbarch_displaced_step_free_closure (displaced->step_gdbarch,
1270                                            displaced->step_closure);
1271       displaced->step_closure = NULL;
1272     }
1273 }
1274
1275 static void
1276 displaced_step_clear_cleanup (void *arg)
1277 {
1278   struct displaced_step_inferior_state *state = arg;
1279
1280   displaced_step_clear (state);
1281 }
1282
1283 /* Dump LEN bytes at BUF in hex to FILE, followed by a newline.  */
1284 void
1285 displaced_step_dump_bytes (struct ui_file *file,
1286                            const gdb_byte *buf,
1287                            size_t len)
1288 {
1289   int i;
1290
1291   for (i = 0; i < len; i++)
1292     fprintf_unfiltered (file, "%02x ", buf[i]);
1293   fputs_unfiltered ("\n", file);
1294 }
1295
1296 /* Prepare to single-step, using displaced stepping.
1297
1298    Note that we cannot use displaced stepping when we have a signal to
1299    deliver.  If we have a signal to deliver and an instruction to step
1300    over, then after the step, there will be no indication from the
1301    target whether the thread entered a signal handler or ignored the
1302    signal and stepped over the instruction successfully --- both cases
1303    result in a simple SIGTRAP.  In the first case we mustn't do a
1304    fixup, and in the second case we must --- but we can't tell which.
1305    Comments in the code for 'random signals' in handle_inferior_event
1306    explain how we handle this case instead.
1307
1308    Returns 1 if preparing was successful -- this thread is going to be
1309    stepped now; or 0 if displaced stepping this thread got queued.  */
1310 static int
1311 displaced_step_prepare (ptid_t ptid)
1312 {
1313   struct cleanup *old_cleanups, *ignore_cleanups;
1314   struct thread_info *tp = find_thread_ptid (ptid);
1315   struct regcache *regcache = get_thread_regcache (ptid);
1316   struct gdbarch *gdbarch = get_regcache_arch (regcache);
1317   CORE_ADDR original, copy;
1318   ULONGEST len;
1319   struct displaced_step_closure *closure;
1320   struct displaced_step_inferior_state *displaced;
1321   int status;
1322
1323   /* We should never reach this function if the architecture does not
1324      support displaced stepping.  */
1325   gdb_assert (gdbarch_displaced_step_copy_insn_p (gdbarch));
1326
1327   /* Disable range stepping while executing in the scratch pad.  We
1328      want a single-step even if executing the displaced instruction in
1329      the scratch buffer lands within the stepping range (e.g., a
1330      jump/branch).  */
1331   tp->control.may_range_step = 0;
1332
1333   /* We have to displaced step one thread at a time, as we only have
1334      access to a single scratch space per inferior.  */
1335
1336   displaced = add_displaced_stepping_state (ptid_get_pid (ptid));
1337
1338   if (!ptid_equal (displaced->step_ptid, null_ptid))
1339     {
1340       /* Already waiting for a displaced step to finish.  Defer this
1341          request and place in queue.  */
1342       struct displaced_step_request *req, *new_req;
1343
1344       if (debug_displaced)
1345         fprintf_unfiltered (gdb_stdlog,
1346                             "displaced: defering step of %s\n",
1347                             target_pid_to_str (ptid));
1348
1349       new_req = xmalloc (sizeof (*new_req));
1350       new_req->ptid = ptid;
1351       new_req->next = NULL;
1352
1353       if (displaced->step_request_queue)
1354         {
1355           for (req = displaced->step_request_queue;
1356                req && req->next;
1357                req = req->next)
1358             ;
1359           req->next = new_req;
1360         }
1361       else
1362         displaced->step_request_queue = new_req;
1363
1364       return 0;
1365     }
1366   else
1367     {
1368       if (debug_displaced)
1369         fprintf_unfiltered (gdb_stdlog,
1370                             "displaced: stepping %s now\n",
1371                             target_pid_to_str (ptid));
1372     }
1373
1374   displaced_step_clear (displaced);
1375
1376   old_cleanups = save_inferior_ptid ();
1377   inferior_ptid = ptid;
1378
1379   original = regcache_read_pc (regcache);
1380
1381   copy = gdbarch_displaced_step_location (gdbarch);
1382   len = gdbarch_max_insn_length (gdbarch);
1383
1384   /* Save the original contents of the copy area.  */
1385   displaced->step_saved_copy = xmalloc (len);
1386   ignore_cleanups = make_cleanup (free_current_contents,
1387                                   &displaced->step_saved_copy);
1388   status = target_read_memory (copy, displaced->step_saved_copy, len);
1389   if (status != 0)
1390     throw_error (MEMORY_ERROR,
1391                  _("Error accessing memory address %s (%s) for "
1392                    "displaced-stepping scratch space."),
1393                  paddress (gdbarch, copy), safe_strerror (status));
1394   if (debug_displaced)
1395     {
1396       fprintf_unfiltered (gdb_stdlog, "displaced: saved %s: ",
1397                           paddress (gdbarch, copy));
1398       displaced_step_dump_bytes (gdb_stdlog,
1399                                  displaced->step_saved_copy,
1400                                  len);
1401     };
1402
1403   closure = gdbarch_displaced_step_copy_insn (gdbarch,
1404                                               original, copy, regcache);
1405
1406   /* We don't support the fully-simulated case at present.  */
1407   gdb_assert (closure);
1408
1409   /* Save the information we need to fix things up if the step
1410      succeeds.  */
1411   displaced->step_ptid = ptid;
1412   displaced->step_gdbarch = gdbarch;
1413   displaced->step_closure = closure;
1414   displaced->step_original = original;
1415   displaced->step_copy = copy;
1416
1417   make_cleanup (displaced_step_clear_cleanup, displaced);
1418
1419   /* Resume execution at the copy.  */
1420   regcache_write_pc (regcache, copy);
1421
1422   discard_cleanups (ignore_cleanups);
1423
1424   do_cleanups (old_cleanups);
1425
1426   if (debug_displaced)
1427     fprintf_unfiltered (gdb_stdlog, "displaced: displaced pc to %s\n",
1428                         paddress (gdbarch, copy));
1429
1430   return 1;
1431 }
1432
1433 static void
1434 write_memory_ptid (ptid_t ptid, CORE_ADDR memaddr,
1435                    const gdb_byte *myaddr, int len)
1436 {
1437   struct cleanup *ptid_cleanup = save_inferior_ptid ();
1438
1439   inferior_ptid = ptid;
1440   write_memory (memaddr, myaddr, len);
1441   do_cleanups (ptid_cleanup);
1442 }
1443
1444 /* Restore the contents of the copy area for thread PTID.  */
1445
1446 static void
1447 displaced_step_restore (struct displaced_step_inferior_state *displaced,
1448                         ptid_t ptid)
1449 {
1450   ULONGEST len = gdbarch_max_insn_length (displaced->step_gdbarch);
1451
1452   write_memory_ptid (ptid, displaced->step_copy,
1453                      displaced->step_saved_copy, len);
1454   if (debug_displaced)
1455     fprintf_unfiltered (gdb_stdlog, "displaced: restored %s %s\n",
1456                         target_pid_to_str (ptid),
1457                         paddress (displaced->step_gdbarch,
1458                                   displaced->step_copy));
1459 }
1460
1461 static void
1462 displaced_step_fixup (ptid_t event_ptid, enum gdb_signal signal)
1463 {
1464   struct cleanup *old_cleanups;
1465   struct displaced_step_inferior_state *displaced
1466     = get_displaced_stepping_state (ptid_get_pid (event_ptid));
1467
1468   /* Was any thread of this process doing a displaced step?  */
1469   if (displaced == NULL)
1470     return;
1471
1472   /* Was this event for the pid we displaced?  */
1473   if (ptid_equal (displaced->step_ptid, null_ptid)
1474       || ! ptid_equal (displaced->step_ptid, event_ptid))
1475     return;
1476
1477   old_cleanups = make_cleanup (displaced_step_clear_cleanup, displaced);
1478
1479   displaced_step_restore (displaced, displaced->step_ptid);
1480
1481   /* Did the instruction complete successfully?  */
1482   if (signal == GDB_SIGNAL_TRAP)
1483     {
1484       /* Fix up the resulting state.  */
1485       gdbarch_displaced_step_fixup (displaced->step_gdbarch,
1486                                     displaced->step_closure,
1487                                     displaced->step_original,
1488                                     displaced->step_copy,
1489                                     get_thread_regcache (displaced->step_ptid));
1490     }
1491   else
1492     {
1493       /* Since the instruction didn't complete, all we can do is
1494          relocate the PC.  */
1495       struct regcache *regcache = get_thread_regcache (event_ptid);
1496       CORE_ADDR pc = regcache_read_pc (regcache);
1497
1498       pc = displaced->step_original + (pc - displaced->step_copy);
1499       regcache_write_pc (regcache, pc);
1500     }
1501
1502   do_cleanups (old_cleanups);
1503
1504   displaced->step_ptid = null_ptid;
1505
1506   /* Are there any pending displaced stepping requests?  If so, run
1507      one now.  Leave the state object around, since we're likely to
1508      need it again soon.  */
1509   while (displaced->step_request_queue)
1510     {
1511       struct displaced_step_request *head;
1512       ptid_t ptid;
1513       struct regcache *regcache;
1514       struct gdbarch *gdbarch;
1515       CORE_ADDR actual_pc;
1516       struct address_space *aspace;
1517
1518       head = displaced->step_request_queue;
1519       ptid = head->ptid;
1520       displaced->step_request_queue = head->next;
1521       xfree (head);
1522
1523       context_switch (ptid);
1524
1525       regcache = get_thread_regcache (ptid);
1526       actual_pc = regcache_read_pc (regcache);
1527       aspace = get_regcache_aspace (regcache);
1528
1529       if (breakpoint_here_p (aspace, actual_pc))
1530         {
1531           if (debug_displaced)
1532             fprintf_unfiltered (gdb_stdlog,
1533                                 "displaced: stepping queued %s now\n",
1534                                 target_pid_to_str (ptid));
1535
1536           displaced_step_prepare (ptid);
1537
1538           gdbarch = get_regcache_arch (regcache);
1539
1540           if (debug_displaced)
1541             {
1542               CORE_ADDR actual_pc = regcache_read_pc (regcache);
1543               gdb_byte buf[4];
1544
1545               fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
1546                                   paddress (gdbarch, actual_pc));
1547               read_memory (actual_pc, buf, sizeof (buf));
1548               displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
1549             }
1550
1551           if (gdbarch_displaced_step_hw_singlestep (gdbarch,
1552                                                     displaced->step_closure))
1553             target_resume (ptid, 1, GDB_SIGNAL_0);
1554           else
1555             target_resume (ptid, 0, GDB_SIGNAL_0);
1556
1557           /* Done, we're stepping a thread.  */
1558           break;
1559         }
1560       else
1561         {
1562           int step;
1563           struct thread_info *tp = inferior_thread ();
1564
1565           /* The breakpoint we were sitting under has since been
1566              removed.  */
1567           tp->control.trap_expected = 0;
1568
1569           /* Go back to what we were trying to do.  */
1570           step = currently_stepping (tp);
1571
1572           if (debug_displaced)
1573             fprintf_unfiltered (gdb_stdlog,
1574                                 "displaced: breakpoint is gone: %s, step(%d)\n",
1575                                 target_pid_to_str (tp->ptid), step);
1576
1577           target_resume (ptid, step, GDB_SIGNAL_0);
1578           tp->suspend.stop_signal = GDB_SIGNAL_0;
1579
1580           /* This request was discarded.  See if there's any other
1581              thread waiting for its turn.  */
1582         }
1583     }
1584 }
1585
1586 /* Update global variables holding ptids to hold NEW_PTID if they were
1587    holding OLD_PTID.  */
1588 static void
1589 infrun_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
1590 {
1591   struct displaced_step_request *it;
1592   struct displaced_step_inferior_state *displaced;
1593
1594   if (ptid_equal (inferior_ptid, old_ptid))
1595     inferior_ptid = new_ptid;
1596
1597   if (ptid_equal (singlestep_ptid, old_ptid))
1598     singlestep_ptid = new_ptid;
1599
1600   if (ptid_equal (deferred_step_ptid, old_ptid))
1601     deferred_step_ptid = new_ptid;
1602
1603   for (displaced = displaced_step_inferior_states;
1604        displaced;
1605        displaced = displaced->next)
1606     {
1607       if (ptid_equal (displaced->step_ptid, old_ptid))
1608         displaced->step_ptid = new_ptid;
1609
1610       for (it = displaced->step_request_queue; it; it = it->next)
1611         if (ptid_equal (it->ptid, old_ptid))
1612           it->ptid = new_ptid;
1613     }
1614 }
1615
1616 \f
1617 /* Resuming.  */
1618
1619 /* Things to clean up if we QUIT out of resume ().  */
1620 static void
1621 resume_cleanups (void *ignore)
1622 {
1623   normal_stop ();
1624 }
1625
1626 static const char schedlock_off[] = "off";
1627 static const char schedlock_on[] = "on";
1628 static const char schedlock_step[] = "step";
1629 static const char *const scheduler_enums[] = {
1630   schedlock_off,
1631   schedlock_on,
1632   schedlock_step,
1633   NULL
1634 };
1635 static const char *scheduler_mode = schedlock_off;
1636 static void
1637 show_scheduler_mode (struct ui_file *file, int from_tty,
1638                      struct cmd_list_element *c, const char *value)
1639 {
1640   fprintf_filtered (file,
1641                     _("Mode for locking scheduler "
1642                       "during execution is \"%s\".\n"),
1643                     value);
1644 }
1645
1646 static void
1647 set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
1648 {
1649   if (!target_can_lock_scheduler)
1650     {
1651       scheduler_mode = schedlock_off;
1652       error (_("Target '%s' cannot support this command."), target_shortname);
1653     }
1654 }
1655
1656 /* True if execution commands resume all threads of all processes by
1657    default; otherwise, resume only threads of the current inferior
1658    process.  */
1659 int sched_multi = 0;
1660
1661 /* Try to setup for software single stepping over the specified location.
1662    Return 1 if target_resume() should use hardware single step.
1663
1664    GDBARCH the current gdbarch.
1665    PC the location to step over.  */
1666
1667 static int
1668 maybe_software_singlestep (struct gdbarch *gdbarch, CORE_ADDR pc)
1669 {
1670   int hw_step = 1;
1671
1672   if (execution_direction == EXEC_FORWARD
1673       && gdbarch_software_single_step_p (gdbarch)
1674       && gdbarch_software_single_step (gdbarch, get_current_frame ()))
1675     {
1676       hw_step = 0;
1677       /* Do not pull these breakpoints until after a `wait' in
1678          `wait_for_inferior'.  */
1679       singlestep_breakpoints_inserted_p = 1;
1680       singlestep_ptid = inferior_ptid;
1681       singlestep_pc = pc;
1682     }
1683   return hw_step;
1684 }
1685
1686 /* Return a ptid representing the set of threads that we will proceed,
1687    in the perspective of the user/frontend.  We may actually resume
1688    fewer threads at first, e.g., if a thread is stopped at a
1689    breakpoint that needs stepping-off, but that should not be visible
1690    to the user/frontend, and neither should the frontend/user be
1691    allowed to proceed any of the threads that happen to be stopped for
1692    internal run control handling, if a previous command wanted them
1693    resumed.  */
1694
1695 ptid_t
1696 user_visible_resume_ptid (int step)
1697 {
1698   /* By default, resume all threads of all processes.  */
1699   ptid_t resume_ptid = RESUME_ALL;
1700
1701   /* Maybe resume only all threads of the current process.  */
1702   if (!sched_multi && target_supports_multi_process ())
1703     {
1704       resume_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
1705     }
1706
1707   /* Maybe resume a single thread after all.  */
1708   if (non_stop)
1709     {
1710       /* With non-stop mode on, threads are always handled
1711          individually.  */
1712       resume_ptid = inferior_ptid;
1713     }
1714   else if ((scheduler_mode == schedlock_on)
1715            || (scheduler_mode == schedlock_step
1716                && (step || singlestep_breakpoints_inserted_p)))
1717     {
1718       /* User-settable 'scheduler' mode requires solo thread resume.  */
1719       resume_ptid = inferior_ptid;
1720     }
1721
1722   return resume_ptid;
1723 }
1724
1725 /* Resume the inferior, but allow a QUIT.  This is useful if the user
1726    wants to interrupt some lengthy single-stepping operation
1727    (for child processes, the SIGINT goes to the inferior, and so
1728    we get a SIGINT random_signal, but for remote debugging and perhaps
1729    other targets, that's not true).
1730
1731    STEP nonzero if we should step (zero to continue instead).
1732    SIG is the signal to give the inferior (zero for none).  */
1733 void
1734 resume (int step, enum gdb_signal sig)
1735 {
1736   int should_resume = 1;
1737   struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
1738   struct regcache *regcache = get_current_regcache ();
1739   struct gdbarch *gdbarch = get_regcache_arch (regcache);
1740   struct thread_info *tp = inferior_thread ();
1741   CORE_ADDR pc = regcache_read_pc (regcache);
1742   struct address_space *aspace = get_regcache_aspace (regcache);
1743
1744   QUIT;
1745
1746   if (current_inferior ()->waiting_for_vfork_done)
1747     {
1748       /* Don't try to single-step a vfork parent that is waiting for
1749          the child to get out of the shared memory region (by exec'ing
1750          or exiting).  This is particularly important on software
1751          single-step archs, as the child process would trip on the
1752          software single step breakpoint inserted for the parent
1753          process.  Since the parent will not actually execute any
1754          instruction until the child is out of the shared region (such
1755          are vfork's semantics), it is safe to simply continue it.
1756          Eventually, we'll see a TARGET_WAITKIND_VFORK_DONE event for
1757          the parent, and tell it to `keep_going', which automatically
1758          re-sets it stepping.  */
1759       if (debug_infrun)
1760         fprintf_unfiltered (gdb_stdlog,
1761                             "infrun: resume : clear step\n");
1762       step = 0;
1763     }
1764
1765   if (debug_infrun)
1766     fprintf_unfiltered (gdb_stdlog,
1767                         "infrun: resume (step=%d, signal=%d), "
1768                         "trap_expected=%d, current thread [%s] at %s\n",
1769                         step, sig, tp->control.trap_expected,
1770                         target_pid_to_str (inferior_ptid),
1771                         paddress (gdbarch, pc));
1772
1773   /* Normally, by the time we reach `resume', the breakpoints are either
1774      removed or inserted, as appropriate.  The exception is if we're sitting
1775      at a permanent breakpoint; we need to step over it, but permanent
1776      breakpoints can't be removed.  So we have to test for it here.  */
1777   if (breakpoint_here_p (aspace, pc) == permanent_breakpoint_here)
1778     {
1779       if (gdbarch_skip_permanent_breakpoint_p (gdbarch))
1780         gdbarch_skip_permanent_breakpoint (gdbarch, regcache);
1781       else
1782         error (_("\
1783 The program is stopped at a permanent breakpoint, but GDB does not know\n\
1784 how to step past a permanent breakpoint on this architecture.  Try using\n\
1785 a command like `return' or `jump' to continue execution."));
1786     }
1787
1788   /* If we have a breakpoint to step over, make sure to do a single
1789      step only.  Same if we have software watchpoints.  */
1790   if (tp->control.trap_expected || bpstat_should_step ())
1791     tp->control.may_range_step = 0;
1792
1793   /* If enabled, step over breakpoints by executing a copy of the
1794      instruction at a different address.
1795
1796      We can't use displaced stepping when we have a signal to deliver;
1797      the comments for displaced_step_prepare explain why.  The
1798      comments in the handle_inferior event for dealing with 'random
1799      signals' explain what we do instead.
1800
1801      We can't use displaced stepping when we are waiting for vfork_done
1802      event, displaced stepping breaks the vfork child similarly as single
1803      step software breakpoint.  */
1804   if (use_displaced_stepping (gdbarch)
1805       && (tp->control.trap_expected
1806           || (step && gdbarch_software_single_step_p (gdbarch)))
1807       && sig == GDB_SIGNAL_0
1808       && !current_inferior ()->waiting_for_vfork_done)
1809     {
1810       struct displaced_step_inferior_state *displaced;
1811
1812       if (!displaced_step_prepare (inferior_ptid))
1813         {
1814           /* Got placed in displaced stepping queue.  Will be resumed
1815              later when all the currently queued displaced stepping
1816              requests finish.  The thread is not executing at this point,
1817              and the call to set_executing will be made later.  But we
1818              need to call set_running here, since from frontend point of view,
1819              the thread is running.  */
1820           set_running (inferior_ptid, 1);
1821           discard_cleanups (old_cleanups);
1822           return;
1823         }
1824
1825       /* Update pc to reflect the new address from which we will execute
1826          instructions due to displaced stepping.  */
1827       pc = regcache_read_pc (get_thread_regcache (inferior_ptid));
1828
1829       displaced = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
1830       step = gdbarch_displaced_step_hw_singlestep (gdbarch,
1831                                                    displaced->step_closure);
1832     }
1833
1834   /* Do we need to do it the hard way, w/temp breakpoints?  */
1835   else if (step)
1836     step = maybe_software_singlestep (gdbarch, pc);
1837
1838   /* Currently, our software single-step implementation leads to different
1839      results than hardware single-stepping in one situation: when stepping
1840      into delivering a signal which has an associated signal handler,
1841      hardware single-step will stop at the first instruction of the handler,
1842      while software single-step will simply skip execution of the handler.
1843
1844      For now, this difference in behavior is accepted since there is no
1845      easy way to actually implement single-stepping into a signal handler
1846      without kernel support.
1847
1848      However, there is one scenario where this difference leads to follow-on
1849      problems: if we're stepping off a breakpoint by removing all breakpoints
1850      and then single-stepping.  In this case, the software single-step
1851      behavior means that even if there is a *breakpoint* in the signal
1852      handler, GDB still would not stop.
1853
1854      Fortunately, we can at least fix this particular issue.  We detect
1855      here the case where we are about to deliver a signal while software
1856      single-stepping with breakpoints removed.  In this situation, we
1857      revert the decisions to remove all breakpoints and insert single-
1858      step breakpoints, and instead we install a step-resume breakpoint
1859      at the current address, deliver the signal without stepping, and
1860      once we arrive back at the step-resume breakpoint, actually step
1861      over the breakpoint we originally wanted to step over.  */
1862   if (singlestep_breakpoints_inserted_p
1863       && tp->control.trap_expected && sig != GDB_SIGNAL_0)
1864     {
1865       /* If we have nested signals or a pending signal is delivered
1866          immediately after a handler returns, might might already have
1867          a step-resume breakpoint set on the earlier handler.  We cannot
1868          set another step-resume breakpoint; just continue on until the
1869          original breakpoint is hit.  */
1870       if (tp->control.step_resume_breakpoint == NULL)
1871         {
1872           insert_hp_step_resume_breakpoint_at_frame (get_current_frame ());
1873           tp->step_after_step_resume_breakpoint = 1;
1874         }
1875
1876       remove_single_step_breakpoints ();
1877       singlestep_breakpoints_inserted_p = 0;
1878
1879       insert_breakpoints ();
1880       tp->control.trap_expected = 0;
1881     }
1882
1883   if (should_resume)
1884     {
1885       ptid_t resume_ptid;
1886
1887       /* If STEP is set, it's a request to use hardware stepping
1888          facilities.  But in that case, we should never
1889          use singlestep breakpoint.  */
1890       gdb_assert (!(singlestep_breakpoints_inserted_p && step));
1891
1892       /* Decide the set of threads to ask the target to resume.  Start
1893          by assuming everything will be resumed, than narrow the set
1894          by applying increasingly restricting conditions.  */
1895       resume_ptid = user_visible_resume_ptid (step);
1896
1897       /* Maybe resume a single thread after all.  */
1898       if (singlestep_breakpoints_inserted_p
1899           && stepping_past_singlestep_breakpoint)
1900         {
1901           /* The situation here is as follows.  In thread T1 we wanted to
1902              single-step.  Lacking hardware single-stepping we've
1903              set breakpoint at the PC of the next instruction -- call it
1904              P.  After resuming, we've hit that breakpoint in thread T2.
1905              Now we've removed original breakpoint, inserted breakpoint
1906              at P+1, and try to step to advance T2 past breakpoint.
1907              We need to step only T2, as if T1 is allowed to freely run,
1908              it can run past P, and if other threads are allowed to run,
1909              they can hit breakpoint at P+1, and nested hits of single-step
1910              breakpoints is not something we'd want -- that's complicated
1911              to support, and has no value.  */
1912           resume_ptid = inferior_ptid;
1913         }
1914       else if ((step || singlestep_breakpoints_inserted_p)
1915                && tp->control.trap_expected)
1916         {
1917           /* We're allowing a thread to run past a breakpoint it has
1918              hit, by single-stepping the thread with the breakpoint
1919              removed.  In which case, we need to single-step only this
1920              thread, and keep others stopped, as they can miss this
1921              breakpoint if allowed to run.
1922
1923              The current code actually removes all breakpoints when
1924              doing this, not just the one being stepped over, so if we
1925              let other threads run, we can actually miss any
1926              breakpoint, not just the one at PC.  */
1927           resume_ptid = inferior_ptid;
1928         }
1929
1930       if (gdbarch_cannot_step_breakpoint (gdbarch))
1931         {
1932           /* Most targets can step a breakpoint instruction, thus
1933              executing it normally.  But if this one cannot, just
1934              continue and we will hit it anyway.  */
1935           if (step && breakpoint_inserted_here_p (aspace, pc))
1936             step = 0;
1937         }
1938
1939       if (debug_displaced
1940           && use_displaced_stepping (gdbarch)
1941           && tp->control.trap_expected)
1942         {
1943           struct regcache *resume_regcache = get_thread_regcache (resume_ptid);
1944           struct gdbarch *resume_gdbarch = get_regcache_arch (resume_regcache);
1945           CORE_ADDR actual_pc = regcache_read_pc (resume_regcache);
1946           gdb_byte buf[4];
1947
1948           fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
1949                               paddress (resume_gdbarch, actual_pc));
1950           read_memory (actual_pc, buf, sizeof (buf));
1951           displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
1952         }
1953
1954       if (tp->control.may_range_step)
1955         {
1956           /* If we're resuming a thread with the PC out of the step
1957              range, then we're doing some nested/finer run control
1958              operation, like stepping the thread out of the dynamic
1959              linker or the displaced stepping scratch pad.  We
1960              shouldn't have allowed a range step then.  */
1961           gdb_assert (pc_in_thread_step_range (pc, tp));
1962         }
1963
1964       /* Install inferior's terminal modes.  */
1965       target_terminal_inferior ();
1966
1967       /* Avoid confusing the next resume, if the next stop/resume
1968          happens to apply to another thread.  */
1969       tp->suspend.stop_signal = GDB_SIGNAL_0;
1970
1971       /* Advise target which signals may be handled silently.  If we have
1972          removed breakpoints because we are stepping over one (which can
1973          happen only if we are not using displaced stepping), we need to
1974          receive all signals to avoid accidentally skipping a breakpoint
1975          during execution of a signal handler.  */
1976       if ((step || singlestep_breakpoints_inserted_p)
1977           && tp->control.trap_expected
1978           && !use_displaced_stepping (gdbarch))
1979         target_pass_signals (0, NULL);
1980       else
1981         target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
1982
1983       target_resume (resume_ptid, step, sig);
1984     }
1985
1986   discard_cleanups (old_cleanups);
1987 }
1988 \f
1989 /* Proceeding.  */
1990
1991 /* Clear out all variables saying what to do when inferior is continued.
1992    First do this, then set the ones you want, then call `proceed'.  */
1993
1994 static void
1995 clear_proceed_status_thread (struct thread_info *tp)
1996 {
1997   if (debug_infrun)
1998     fprintf_unfiltered (gdb_stdlog,
1999                         "infrun: clear_proceed_status_thread (%s)\n",
2000                         target_pid_to_str (tp->ptid));
2001
2002   tp->control.trap_expected = 0;
2003   tp->control.step_range_start = 0;
2004   tp->control.step_range_end = 0;
2005   tp->control.may_range_step = 0;
2006   tp->control.step_frame_id = null_frame_id;
2007   tp->control.step_stack_frame_id = null_frame_id;
2008   tp->control.step_over_calls = STEP_OVER_UNDEBUGGABLE;
2009   tp->stop_requested = 0;
2010
2011   tp->control.stop_step = 0;
2012
2013   tp->control.proceed_to_finish = 0;
2014
2015   /* Discard any remaining commands or status from previous stop.  */
2016   bpstat_clear (&tp->control.stop_bpstat);
2017 }
2018
2019 static int
2020 clear_proceed_status_callback (struct thread_info *tp, void *data)
2021 {
2022   if (is_exited (tp->ptid))
2023     return 0;
2024
2025   clear_proceed_status_thread (tp);
2026   return 0;
2027 }
2028
2029 void
2030 clear_proceed_status (void)
2031 {
2032   if (!non_stop)
2033     {
2034       /* In all-stop mode, delete the per-thread status of all
2035          threads, even if inferior_ptid is null_ptid, there may be
2036          threads on the list.  E.g., we may be launching a new
2037          process, while selecting the executable.  */
2038       iterate_over_threads (clear_proceed_status_callback, NULL);
2039     }
2040
2041   if (!ptid_equal (inferior_ptid, null_ptid))
2042     {
2043       struct inferior *inferior;
2044
2045       if (non_stop)
2046         {
2047           /* If in non-stop mode, only delete the per-thread status of
2048              the current thread.  */
2049           clear_proceed_status_thread (inferior_thread ());
2050         }
2051
2052       inferior = current_inferior ();
2053       inferior->control.stop_soon = NO_STOP_QUIETLY;
2054     }
2055
2056   stop_after_trap = 0;
2057
2058   observer_notify_about_to_proceed ();
2059
2060   if (stop_registers)
2061     {
2062       regcache_xfree (stop_registers);
2063       stop_registers = NULL;
2064     }
2065 }
2066
2067 /* Check the current thread against the thread that reported the most recent
2068    event.  If a step-over is required return TRUE and set the current thread
2069    to the old thread.  Otherwise return FALSE.
2070
2071    This should be suitable for any targets that support threads.  */
2072
2073 static int
2074 prepare_to_proceed (int step)
2075 {
2076   ptid_t wait_ptid;
2077   struct target_waitstatus wait_status;
2078   int schedlock_enabled;
2079
2080   /* With non-stop mode on, threads are always handled individually.  */
2081   gdb_assert (! non_stop);
2082
2083   /* Get the last target status returned by target_wait().  */
2084   get_last_target_status (&wait_ptid, &wait_status);
2085
2086   /* Make sure we were stopped at a breakpoint.  */
2087   if (wait_status.kind != TARGET_WAITKIND_STOPPED
2088       || (wait_status.value.sig != GDB_SIGNAL_TRAP
2089           && wait_status.value.sig != GDB_SIGNAL_ILL
2090           && wait_status.value.sig != GDB_SIGNAL_SEGV
2091           && wait_status.value.sig != GDB_SIGNAL_EMT))
2092     {
2093       return 0;
2094     }
2095
2096   schedlock_enabled = (scheduler_mode == schedlock_on
2097                        || (scheduler_mode == schedlock_step
2098                            && step));
2099
2100   /* Don't switch over to WAIT_PTID if scheduler locking is on.  */
2101   if (schedlock_enabled)
2102     return 0;
2103
2104   /* Don't switch over if we're about to resume some other process
2105      other than WAIT_PTID's, and schedule-multiple is off.  */
2106   if (!sched_multi
2107       && ptid_get_pid (wait_ptid) != ptid_get_pid (inferior_ptid))
2108     return 0;
2109
2110   /* Switched over from WAIT_PID.  */
2111   if (!ptid_equal (wait_ptid, minus_one_ptid)
2112       && !ptid_equal (inferior_ptid, wait_ptid))
2113     {
2114       struct regcache *regcache = get_thread_regcache (wait_ptid);
2115
2116       if (breakpoint_here_p (get_regcache_aspace (regcache),
2117                              regcache_read_pc (regcache)))
2118         {
2119           /* If stepping, remember current thread to switch back to.  */
2120           if (step)
2121             deferred_step_ptid = inferior_ptid;
2122
2123           /* Switch back to WAIT_PID thread.  */
2124           switch_to_thread (wait_ptid);
2125
2126           if (debug_infrun)
2127             fprintf_unfiltered (gdb_stdlog,
2128                                 "infrun: prepare_to_proceed (step=%d), "
2129                                 "switched to [%s]\n",
2130                                 step, target_pid_to_str (inferior_ptid));
2131
2132           /* We return 1 to indicate that there is a breakpoint here,
2133              so we need to step over it before continuing to avoid
2134              hitting it straight away.  */
2135           return 1;
2136         }
2137     }
2138
2139   return 0;
2140 }
2141
2142 /* Basic routine for continuing the program in various fashions.
2143
2144    ADDR is the address to resume at, or -1 for resume where stopped.
2145    SIGGNAL is the signal to give it, or 0 for none,
2146    or -1 for act according to how it stopped.
2147    STEP is nonzero if should trap after one instruction.
2148    -1 means return after that and print nothing.
2149    You should probably set various step_... variables
2150    before calling here, if you are stepping.
2151
2152    You should call clear_proceed_status before calling proceed.  */
2153
2154 void
2155 proceed (CORE_ADDR addr, enum gdb_signal siggnal, int step)
2156 {
2157   struct regcache *regcache;
2158   struct gdbarch *gdbarch;
2159   struct thread_info *tp;
2160   CORE_ADDR pc;
2161   struct address_space *aspace;
2162   /* GDB may force the inferior to step due to various reasons.  */
2163   int force_step = 0;
2164
2165   /* If we're stopped at a fork/vfork, follow the branch set by the
2166      "set follow-fork-mode" command; otherwise, we'll just proceed
2167      resuming the current thread.  */
2168   if (!follow_fork ())
2169     {
2170       /* The target for some reason decided not to resume.  */
2171       normal_stop ();
2172       if (target_can_async_p ())
2173         inferior_event_handler (INF_EXEC_COMPLETE, NULL);
2174       return;
2175     }
2176
2177   /* We'll update this if & when we switch to a new thread.  */
2178   previous_inferior_ptid = inferior_ptid;
2179
2180   regcache = get_current_regcache ();
2181   gdbarch = get_regcache_arch (regcache);
2182   aspace = get_regcache_aspace (regcache);
2183   pc = regcache_read_pc (regcache);
2184
2185   if (step > 0)
2186     step_start_function = find_pc_function (pc);
2187   if (step < 0)
2188     stop_after_trap = 1;
2189
2190   if (addr == (CORE_ADDR) -1)
2191     {
2192       if (pc == stop_pc && breakpoint_here_p (aspace, pc)
2193           && execution_direction != EXEC_REVERSE)
2194         /* There is a breakpoint at the address we will resume at,
2195            step one instruction before inserting breakpoints so that
2196            we do not stop right away (and report a second hit at this
2197            breakpoint).
2198
2199            Note, we don't do this in reverse, because we won't
2200            actually be executing the breakpoint insn anyway.
2201            We'll be (un-)executing the previous instruction.  */
2202
2203         force_step = 1;
2204       else if (gdbarch_single_step_through_delay_p (gdbarch)
2205                && gdbarch_single_step_through_delay (gdbarch,
2206                                                      get_current_frame ()))
2207         /* We stepped onto an instruction that needs to be stepped
2208            again before re-inserting the breakpoint, do so.  */
2209         force_step = 1;
2210     }
2211   else
2212     {
2213       regcache_write_pc (regcache, addr);
2214     }
2215
2216   if (debug_infrun)
2217     fprintf_unfiltered (gdb_stdlog,
2218                         "infrun: proceed (addr=%s, signal=%d, step=%d)\n",
2219                         paddress (gdbarch, addr), siggnal, step);
2220
2221   if (non_stop)
2222     /* In non-stop, each thread is handled individually.  The context
2223        must already be set to the right thread here.  */
2224     ;
2225   else
2226     {
2227       /* In a multi-threaded task we may select another thread and
2228          then continue or step.
2229
2230          But if the old thread was stopped at a breakpoint, it will
2231          immediately cause another breakpoint stop without any
2232          execution (i.e. it will report a breakpoint hit incorrectly).
2233          So we must step over it first.
2234
2235          prepare_to_proceed checks the current thread against the
2236          thread that reported the most recent event.  If a step-over
2237          is required it returns TRUE and sets the current thread to
2238          the old thread.  */
2239       if (prepare_to_proceed (step))
2240         force_step = 1;
2241     }
2242
2243   /* prepare_to_proceed may change the current thread.  */
2244   tp = inferior_thread ();
2245
2246   if (force_step)
2247     {
2248       tp->control.trap_expected = 1;
2249       /* If displaced stepping is enabled, we can step over the
2250          breakpoint without hitting it, so leave all breakpoints
2251          inserted.  Otherwise we need to disable all breakpoints, step
2252          one instruction, and then re-add them when that step is
2253          finished.  */
2254       if (!use_displaced_stepping (gdbarch))
2255         remove_breakpoints ();
2256     }
2257
2258   /* We can insert breakpoints if we're not trying to step over one,
2259      or if we are stepping over one but we're using displaced stepping
2260      to do so.  */
2261   if (! tp->control.trap_expected || use_displaced_stepping (gdbarch))
2262     insert_breakpoints ();
2263
2264   if (!non_stop)
2265     {
2266       /* Pass the last stop signal to the thread we're resuming,
2267          irrespective of whether the current thread is the thread that
2268          got the last event or not.  This was historically GDB's
2269          behaviour before keeping a stop_signal per thread.  */
2270
2271       struct thread_info *last_thread;
2272       ptid_t last_ptid;
2273       struct target_waitstatus last_status;
2274
2275       get_last_target_status (&last_ptid, &last_status);
2276       if (!ptid_equal (inferior_ptid, last_ptid)
2277           && !ptid_equal (last_ptid, null_ptid)
2278           && !ptid_equal (last_ptid, minus_one_ptid))
2279         {
2280           last_thread = find_thread_ptid (last_ptid);
2281           if (last_thread)
2282             {
2283               tp->suspend.stop_signal = last_thread->suspend.stop_signal;
2284               last_thread->suspend.stop_signal = GDB_SIGNAL_0;
2285             }
2286         }
2287     }
2288
2289   if (siggnal != GDB_SIGNAL_DEFAULT)
2290     tp->suspend.stop_signal = siggnal;
2291   /* If this signal should not be seen by program,
2292      give it zero.  Used for debugging signals.  */
2293   else if (!signal_program[tp->suspend.stop_signal])
2294     tp->suspend.stop_signal = GDB_SIGNAL_0;
2295
2296   annotate_starting ();
2297
2298   /* Make sure that output from GDB appears before output from the
2299      inferior.  */
2300   gdb_flush (gdb_stdout);
2301
2302   /* Refresh prev_pc value just prior to resuming.  This used to be
2303      done in stop_stepping, however, setting prev_pc there did not handle
2304      scenarios such as inferior function calls or returning from
2305      a function via the return command.  In those cases, the prev_pc
2306      value was not set properly for subsequent commands.  The prev_pc value 
2307      is used to initialize the starting line number in the ecs.  With an 
2308      invalid value, the gdb next command ends up stopping at the position
2309      represented by the next line table entry past our start position.
2310      On platforms that generate one line table entry per line, this
2311      is not a problem.  However, on the ia64, the compiler generates
2312      extraneous line table entries that do not increase the line number.
2313      When we issue the gdb next command on the ia64 after an inferior call
2314      or a return command, we often end up a few instructions forward, still 
2315      within the original line we started.
2316
2317      An attempt was made to refresh the prev_pc at the same time the
2318      execution_control_state is initialized (for instance, just before
2319      waiting for an inferior event).  But this approach did not work
2320      because of platforms that use ptrace, where the pc register cannot
2321      be read unless the inferior is stopped.  At that point, we are not
2322      guaranteed the inferior is stopped and so the regcache_read_pc() call
2323      can fail.  Setting the prev_pc value here ensures the value is updated
2324      correctly when the inferior is stopped.  */
2325   tp->prev_pc = regcache_read_pc (get_current_regcache ());
2326
2327   /* Fill in with reasonable starting values.  */
2328   init_thread_stepping_state (tp);
2329
2330   /* Reset to normal state.  */
2331   init_infwait_state ();
2332
2333   /* Resume inferior.  */
2334   resume (force_step || step || bpstat_should_step (),
2335           tp->suspend.stop_signal);
2336
2337   /* Wait for it to stop (if not standalone)
2338      and in any case decode why it stopped, and act accordingly.  */
2339   /* Do this only if we are not using the event loop, or if the target
2340      does not support asynchronous execution.  */
2341   if (!target_can_async_p ())
2342     {
2343       wait_for_inferior ();
2344       normal_stop ();
2345     }
2346 }
2347 \f
2348
2349 /* Start remote-debugging of a machine over a serial link.  */
2350
2351 void
2352 start_remote (int from_tty)
2353 {
2354   struct inferior *inferior;
2355
2356   inferior = current_inferior ();
2357   inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
2358
2359   /* Always go on waiting for the target, regardless of the mode.  */
2360   /* FIXME: cagney/1999-09-23: At present it isn't possible to
2361      indicate to wait_for_inferior that a target should timeout if
2362      nothing is returned (instead of just blocking).  Because of this,
2363      targets expecting an immediate response need to, internally, set
2364      things up so that the target_wait() is forced to eventually
2365      timeout.  */
2366   /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
2367      differentiate to its caller what the state of the target is after
2368      the initial open has been performed.  Here we're assuming that
2369      the target has stopped.  It should be possible to eventually have
2370      target_open() return to the caller an indication that the target
2371      is currently running and GDB state should be set to the same as
2372      for an async run.  */
2373   wait_for_inferior ();
2374
2375   /* Now that the inferior has stopped, do any bookkeeping like
2376      loading shared libraries.  We want to do this before normal_stop,
2377      so that the displayed frame is up to date.  */
2378   post_create_inferior (&current_target, from_tty);
2379
2380   normal_stop ();
2381 }
2382
2383 /* Initialize static vars when a new inferior begins.  */
2384
2385 void
2386 init_wait_for_inferior (void)
2387 {
2388   /* These are meaningless until the first time through wait_for_inferior.  */
2389
2390   breakpoint_init_inferior (inf_starting);
2391
2392   clear_proceed_status ();
2393
2394   stepping_past_singlestep_breakpoint = 0;
2395   deferred_step_ptid = null_ptid;
2396
2397   target_last_wait_ptid = minus_one_ptid;
2398
2399   previous_inferior_ptid = inferior_ptid;
2400   init_infwait_state ();
2401
2402   /* Discard any skipped inlined frames.  */
2403   clear_inline_frame_state (minus_one_ptid);
2404 }
2405
2406 \f
2407 /* This enum encodes possible reasons for doing a target_wait, so that
2408    wfi can call target_wait in one place.  (Ultimately the call will be
2409    moved out of the infinite loop entirely.) */
2410
2411 enum infwait_states
2412 {
2413   infwait_normal_state,
2414   infwait_thread_hop_state,
2415   infwait_step_watch_state,
2416   infwait_nonstep_watch_state
2417 };
2418
2419 /* The PTID we'll do a target_wait on.*/
2420 ptid_t waiton_ptid;
2421
2422 /* Current inferior wait state.  */
2423 static enum infwait_states infwait_state;
2424
2425 /* Data to be passed around while handling an event.  This data is
2426    discarded between events.  */
2427 struct execution_control_state
2428 {
2429   ptid_t ptid;
2430   /* The thread that got the event, if this was a thread event; NULL
2431      otherwise.  */
2432   struct thread_info *event_thread;
2433
2434   struct target_waitstatus ws;
2435   int random_signal;
2436   int stop_func_filled_in;
2437   CORE_ADDR stop_func_start;
2438   CORE_ADDR stop_func_end;
2439   const char *stop_func_name;
2440   int wait_some_more;
2441 };
2442
2443 static void handle_inferior_event (struct execution_control_state *ecs);
2444
2445 static void handle_step_into_function (struct gdbarch *gdbarch,
2446                                        struct execution_control_state *ecs);
2447 static void handle_step_into_function_backward (struct gdbarch *gdbarch,
2448                                                 struct execution_control_state *ecs);
2449 static void check_exception_resume (struct execution_control_state *,
2450                                     struct frame_info *);
2451
2452 static void stop_stepping (struct execution_control_state *ecs);
2453 static void prepare_to_wait (struct execution_control_state *ecs);
2454 static void keep_going (struct execution_control_state *ecs);
2455
2456 /* Callback for iterate over threads.  If the thread is stopped, but
2457    the user/frontend doesn't know about that yet, go through
2458    normal_stop, as if the thread had just stopped now.  ARG points at
2459    a ptid.  If PTID is MINUS_ONE_PTID, applies to all threads.  If
2460    ptid_is_pid(PTID) is true, applies to all threads of the process
2461    pointed at by PTID.  Otherwise, apply only to the thread pointed by
2462    PTID.  */
2463
2464 static int
2465 infrun_thread_stop_requested_callback (struct thread_info *info, void *arg)
2466 {
2467   ptid_t ptid = * (ptid_t *) arg;
2468
2469   if ((ptid_equal (info->ptid, ptid)
2470        || ptid_equal (minus_one_ptid, ptid)
2471        || (ptid_is_pid (ptid)
2472            && ptid_get_pid (ptid) == ptid_get_pid (info->ptid)))
2473       && is_running (info->ptid)
2474       && !is_executing (info->ptid))
2475     {
2476       struct cleanup *old_chain;
2477       struct execution_control_state ecss;
2478       struct execution_control_state *ecs = &ecss;
2479
2480       memset (ecs, 0, sizeof (*ecs));
2481
2482       old_chain = make_cleanup_restore_current_thread ();
2483
2484       /* Go through handle_inferior_event/normal_stop, so we always
2485          have consistent output as if the stop event had been
2486          reported.  */
2487       ecs->ptid = info->ptid;
2488       ecs->event_thread = find_thread_ptid (info->ptid);
2489       ecs->ws.kind = TARGET_WAITKIND_STOPPED;
2490       ecs->ws.value.sig = GDB_SIGNAL_0;
2491
2492       handle_inferior_event (ecs);
2493
2494       if (!ecs->wait_some_more)
2495         {
2496           struct thread_info *tp;
2497
2498           normal_stop ();
2499
2500           /* Finish off the continuations.  */
2501           tp = inferior_thread ();
2502           do_all_intermediate_continuations_thread (tp, 1);
2503           do_all_continuations_thread (tp, 1);
2504         }
2505
2506       do_cleanups (old_chain);
2507     }
2508
2509   return 0;
2510 }
2511
2512 /* This function is attached as a "thread_stop_requested" observer.
2513    Cleanup local state that assumed the PTID was to be resumed, and
2514    report the stop to the frontend.  */
2515
2516 static void
2517 infrun_thread_stop_requested (ptid_t ptid)
2518 {
2519   struct displaced_step_inferior_state *displaced;
2520
2521   /* PTID was requested to stop.  Remove it from the displaced
2522      stepping queue, so we don't try to resume it automatically.  */
2523
2524   for (displaced = displaced_step_inferior_states;
2525        displaced;
2526        displaced = displaced->next)
2527     {
2528       struct displaced_step_request *it, **prev_next_p;
2529
2530       it = displaced->step_request_queue;
2531       prev_next_p = &displaced->step_request_queue;
2532       while (it)
2533         {
2534           if (ptid_match (it->ptid, ptid))
2535             {
2536               *prev_next_p = it->next;
2537               it->next = NULL;
2538               xfree (it);
2539             }
2540           else
2541             {
2542               prev_next_p = &it->next;
2543             }
2544
2545           it = *prev_next_p;
2546         }
2547     }
2548
2549   iterate_over_threads (infrun_thread_stop_requested_callback, &ptid);
2550 }
2551
2552 static void
2553 infrun_thread_thread_exit (struct thread_info *tp, int silent)
2554 {
2555   if (ptid_equal (target_last_wait_ptid, tp->ptid))
2556     nullify_last_target_wait_ptid ();
2557 }
2558
2559 /* Callback for iterate_over_threads.  */
2560
2561 static int
2562 delete_step_resume_breakpoint_callback (struct thread_info *info, void *data)
2563 {
2564   if (is_exited (info->ptid))
2565     return 0;
2566
2567   delete_step_resume_breakpoint (info);
2568   delete_exception_resume_breakpoint (info);
2569   return 0;
2570 }
2571
2572 /* In all-stop, delete the step resume breakpoint of any thread that
2573    had one.  In non-stop, delete the step resume breakpoint of the
2574    thread that just stopped.  */
2575
2576 static void
2577 delete_step_thread_step_resume_breakpoint (void)
2578 {
2579   if (!target_has_execution
2580       || ptid_equal (inferior_ptid, null_ptid))
2581     /* If the inferior has exited, we have already deleted the step
2582        resume breakpoints out of GDB's lists.  */
2583     return;
2584
2585   if (non_stop)
2586     {
2587       /* If in non-stop mode, only delete the step-resume or
2588          longjmp-resume breakpoint of the thread that just stopped
2589          stepping.  */
2590       struct thread_info *tp = inferior_thread ();
2591
2592       delete_step_resume_breakpoint (tp);
2593       delete_exception_resume_breakpoint (tp);
2594     }
2595   else
2596     /* In all-stop mode, delete all step-resume and longjmp-resume
2597        breakpoints of any thread that had them.  */
2598     iterate_over_threads (delete_step_resume_breakpoint_callback, NULL);
2599 }
2600
2601 /* A cleanup wrapper.  */
2602
2603 static void
2604 delete_step_thread_step_resume_breakpoint_cleanup (void *arg)
2605 {
2606   delete_step_thread_step_resume_breakpoint ();
2607 }
2608
2609 /* Pretty print the results of target_wait, for debugging purposes.  */
2610
2611 static void
2612 print_target_wait_results (ptid_t waiton_ptid, ptid_t result_ptid,
2613                            const struct target_waitstatus *ws)
2614 {
2615   char *status_string = target_waitstatus_to_string (ws);
2616   struct ui_file *tmp_stream = mem_fileopen ();
2617   char *text;
2618
2619   /* The text is split over several lines because it was getting too long.
2620      Call fprintf_unfiltered (gdb_stdlog) once so that the text is still
2621      output as a unit; we want only one timestamp printed if debug_timestamp
2622      is set.  */
2623
2624   fprintf_unfiltered (tmp_stream,
2625                       "infrun: target_wait (%d", PIDGET (waiton_ptid));
2626   if (PIDGET (waiton_ptid) != -1)
2627     fprintf_unfiltered (tmp_stream,
2628                         " [%s]", target_pid_to_str (waiton_ptid));
2629   fprintf_unfiltered (tmp_stream, ", status) =\n");
2630   fprintf_unfiltered (tmp_stream,
2631                       "infrun:   %d [%s],\n",
2632                       PIDGET (result_ptid), target_pid_to_str (result_ptid));
2633   fprintf_unfiltered (tmp_stream,
2634                       "infrun:   %s\n",
2635                       status_string);
2636
2637   text = ui_file_xstrdup (tmp_stream, NULL);
2638
2639   /* This uses %s in part to handle %'s in the text, but also to avoid
2640      a gcc error: the format attribute requires a string literal.  */
2641   fprintf_unfiltered (gdb_stdlog, "%s", text);
2642
2643   xfree (status_string);
2644   xfree (text);
2645   ui_file_delete (tmp_stream);
2646 }
2647
2648 /* Prepare and stabilize the inferior for detaching it.  E.g.,
2649    detaching while a thread is displaced stepping is a recipe for
2650    crashing it, as nothing would readjust the PC out of the scratch
2651    pad.  */
2652
2653 void
2654 prepare_for_detach (void)
2655 {
2656   struct inferior *inf = current_inferior ();
2657   ptid_t pid_ptid = pid_to_ptid (inf->pid);
2658   struct cleanup *old_chain_1;
2659   struct displaced_step_inferior_state *displaced;
2660
2661   displaced = get_displaced_stepping_state (inf->pid);
2662
2663   /* Is any thread of this process displaced stepping?  If not,
2664      there's nothing else to do.  */
2665   if (displaced == NULL || ptid_equal (displaced->step_ptid, null_ptid))
2666     return;
2667
2668   if (debug_infrun)
2669     fprintf_unfiltered (gdb_stdlog,
2670                         "displaced-stepping in-process while detaching");
2671
2672   old_chain_1 = make_cleanup_restore_integer (&inf->detaching);
2673   inf->detaching = 1;
2674
2675   while (!ptid_equal (displaced->step_ptid, null_ptid))
2676     {
2677       struct cleanup *old_chain_2;
2678       struct execution_control_state ecss;
2679       struct execution_control_state *ecs;
2680
2681       ecs = &ecss;
2682       memset (ecs, 0, sizeof (*ecs));
2683
2684       overlay_cache_invalid = 1;
2685
2686       if (deprecated_target_wait_hook)
2687         ecs->ptid = deprecated_target_wait_hook (pid_ptid, &ecs->ws, 0);
2688       else
2689         ecs->ptid = target_wait (pid_ptid, &ecs->ws, 0);
2690
2691       if (debug_infrun)
2692         print_target_wait_results (pid_ptid, ecs->ptid, &ecs->ws);
2693
2694       /* If an error happens while handling the event, propagate GDB's
2695          knowledge of the executing state to the frontend/user running
2696          state.  */
2697       old_chain_2 = make_cleanup (finish_thread_state_cleanup,
2698                                   &minus_one_ptid);
2699
2700       /* Now figure out what to do with the result of the result.  */
2701       handle_inferior_event (ecs);
2702
2703       /* No error, don't finish the state yet.  */
2704       discard_cleanups (old_chain_2);
2705
2706       /* Breakpoints and watchpoints are not installed on the target
2707          at this point, and signals are passed directly to the
2708          inferior, so this must mean the process is gone.  */
2709       if (!ecs->wait_some_more)
2710         {
2711           discard_cleanups (old_chain_1);
2712           error (_("Program exited while detaching"));
2713         }
2714     }
2715
2716   discard_cleanups (old_chain_1);
2717 }
2718
2719 /* Wait for control to return from inferior to debugger.
2720
2721    If inferior gets a signal, we may decide to start it up again
2722    instead of returning.  That is why there is a loop in this function.
2723    When this function actually returns it means the inferior
2724    should be left stopped and GDB should read more commands.  */
2725
2726 void
2727 wait_for_inferior (void)
2728 {
2729   struct cleanup *old_cleanups;
2730
2731   if (debug_infrun)
2732     fprintf_unfiltered
2733       (gdb_stdlog, "infrun: wait_for_inferior ()\n");
2734
2735   old_cleanups =
2736     make_cleanup (delete_step_thread_step_resume_breakpoint_cleanup, NULL);
2737
2738   while (1)
2739     {
2740       struct execution_control_state ecss;
2741       struct execution_control_state *ecs = &ecss;
2742       struct cleanup *old_chain;
2743
2744       memset (ecs, 0, sizeof (*ecs));
2745
2746       overlay_cache_invalid = 1;
2747
2748       if (deprecated_target_wait_hook)
2749         ecs->ptid = deprecated_target_wait_hook (waiton_ptid, &ecs->ws, 0);
2750       else
2751         ecs->ptid = target_wait (waiton_ptid, &ecs->ws, 0);
2752
2753       if (debug_infrun)
2754         print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
2755
2756       /* If an error happens while handling the event, propagate GDB's
2757          knowledge of the executing state to the frontend/user running
2758          state.  */
2759       old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
2760
2761       /* Now figure out what to do with the result of the result.  */
2762       handle_inferior_event (ecs);
2763
2764       /* No error, don't finish the state yet.  */
2765       discard_cleanups (old_chain);
2766
2767       if (!ecs->wait_some_more)
2768         break;
2769     }
2770
2771   do_cleanups (old_cleanups);
2772 }
2773
2774 /* Asynchronous version of wait_for_inferior.  It is called by the
2775    event loop whenever a change of state is detected on the file
2776    descriptor corresponding to the target.  It can be called more than
2777    once to complete a single execution command.  In such cases we need
2778    to keep the state in a global variable ECSS.  If it is the last time
2779    that this function is called for a single execution command, then
2780    report to the user that the inferior has stopped, and do the
2781    necessary cleanups.  */
2782
2783 void
2784 fetch_inferior_event (void *client_data)
2785 {
2786   struct execution_control_state ecss;
2787   struct execution_control_state *ecs = &ecss;
2788   struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
2789   struct cleanup *ts_old_chain;
2790   int was_sync = sync_execution;
2791   int cmd_done = 0;
2792
2793   memset (ecs, 0, sizeof (*ecs));
2794
2795   /* We're handling a live event, so make sure we're doing live
2796      debugging.  If we're looking at traceframes while the target is
2797      running, we're going to need to get back to that mode after
2798      handling the event.  */
2799   if (non_stop)
2800     {
2801       make_cleanup_restore_current_traceframe ();
2802       set_current_traceframe (-1);
2803     }
2804
2805   if (non_stop)
2806     /* In non-stop mode, the user/frontend should not notice a thread
2807        switch due to internal events.  Make sure we reverse to the
2808        user selected thread and frame after handling the event and
2809        running any breakpoint commands.  */
2810     make_cleanup_restore_current_thread ();
2811
2812   overlay_cache_invalid = 1;
2813
2814   make_cleanup_restore_integer (&execution_direction);
2815   execution_direction = target_execution_direction ();
2816
2817   if (deprecated_target_wait_hook)
2818     ecs->ptid =
2819       deprecated_target_wait_hook (waiton_ptid, &ecs->ws, TARGET_WNOHANG);
2820   else
2821     ecs->ptid = target_wait (waiton_ptid, &ecs->ws, TARGET_WNOHANG);
2822
2823   if (debug_infrun)
2824     print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
2825
2826   /* If an error happens while handling the event, propagate GDB's
2827      knowledge of the executing state to the frontend/user running
2828      state.  */
2829   if (!non_stop)
2830     ts_old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
2831   else
2832     ts_old_chain = make_cleanup (finish_thread_state_cleanup, &ecs->ptid);
2833
2834   /* Get executed before make_cleanup_restore_current_thread above to apply
2835      still for the thread which has thrown the exception.  */
2836   make_bpstat_clear_actions_cleanup ();
2837
2838   /* Now figure out what to do with the result of the result.  */
2839   handle_inferior_event (ecs);
2840
2841   if (!ecs->wait_some_more)
2842     {
2843       struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
2844
2845       delete_step_thread_step_resume_breakpoint ();
2846
2847       /* We may not find an inferior if this was a process exit.  */
2848       if (inf == NULL || inf->control.stop_soon == NO_STOP_QUIETLY)
2849         normal_stop ();
2850
2851       if (target_has_execution
2852           && ecs->ws.kind != TARGET_WAITKIND_NO_RESUMED
2853           && ecs->ws.kind != TARGET_WAITKIND_EXITED
2854           && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
2855           && ecs->event_thread->step_multi
2856           && ecs->event_thread->control.stop_step)
2857         inferior_event_handler (INF_EXEC_CONTINUE, NULL);
2858       else
2859         {
2860           inferior_event_handler (INF_EXEC_COMPLETE, NULL);
2861           cmd_done = 1;
2862         }
2863     }
2864
2865   /* No error, don't finish the thread states yet.  */
2866   discard_cleanups (ts_old_chain);
2867
2868   /* Revert thread and frame.  */
2869   do_cleanups (old_chain);
2870
2871   /* If the inferior was in sync execution mode, and now isn't,
2872      restore the prompt (a synchronous execution command has finished,
2873      and we're ready for input).  */
2874   if (interpreter_async && was_sync && !sync_execution)
2875     display_gdb_prompt (0);
2876
2877   if (cmd_done
2878       && !was_sync
2879       && exec_done_display_p
2880       && (ptid_equal (inferior_ptid, null_ptid)
2881           || !is_running (inferior_ptid)))
2882     printf_unfiltered (_("completed.\n"));
2883 }
2884
2885 /* Record the frame and location we're currently stepping through.  */
2886 void
2887 set_step_info (struct frame_info *frame, struct symtab_and_line sal)
2888 {
2889   struct thread_info *tp = inferior_thread ();
2890
2891   tp->control.step_frame_id = get_frame_id (frame);
2892   tp->control.step_stack_frame_id = get_stack_frame_id (frame);
2893
2894   tp->current_symtab = sal.symtab;
2895   tp->current_line = sal.line;
2896 }
2897
2898 /* Clear context switchable stepping state.  */
2899
2900 void
2901 init_thread_stepping_state (struct thread_info *tss)
2902 {
2903   tss->stepping_over_breakpoint = 0;
2904   tss->step_after_step_resume_breakpoint = 0;
2905 }
2906
2907 /* Return the cached copy of the last pid/waitstatus returned by
2908    target_wait()/deprecated_target_wait_hook().  The data is actually
2909    cached by handle_inferior_event(), which gets called immediately
2910    after target_wait()/deprecated_target_wait_hook().  */
2911
2912 void
2913 get_last_target_status (ptid_t *ptidp, struct target_waitstatus *status)
2914 {
2915   *ptidp = target_last_wait_ptid;
2916   *status = target_last_waitstatus;
2917 }
2918
2919 void
2920 nullify_last_target_wait_ptid (void)
2921 {
2922   target_last_wait_ptid = minus_one_ptid;
2923 }
2924
2925 /* Switch thread contexts.  */
2926
2927 static void
2928 context_switch (ptid_t ptid)
2929 {
2930   if (debug_infrun && !ptid_equal (ptid, inferior_ptid))
2931     {
2932       fprintf_unfiltered (gdb_stdlog, "infrun: Switching context from %s ",
2933                           target_pid_to_str (inferior_ptid));
2934       fprintf_unfiltered (gdb_stdlog, "to %s\n",
2935                           target_pid_to_str (ptid));
2936     }
2937
2938   switch_to_thread (ptid);
2939 }
2940
2941 static void
2942 adjust_pc_after_break (struct execution_control_state *ecs)
2943 {
2944   struct regcache *regcache;
2945   struct gdbarch *gdbarch;
2946   struct address_space *aspace;
2947   CORE_ADDR breakpoint_pc;
2948
2949   /* If we've hit a breakpoint, we'll normally be stopped with SIGTRAP.  If
2950      we aren't, just return.
2951
2952      We assume that waitkinds other than TARGET_WAITKIND_STOPPED are not
2953      affected by gdbarch_decr_pc_after_break.  Other waitkinds which are
2954      implemented by software breakpoints should be handled through the normal
2955      breakpoint layer.
2956
2957      NOTE drow/2004-01-31: On some targets, breakpoints may generate
2958      different signals (SIGILL or SIGEMT for instance), but it is less
2959      clear where the PC is pointing afterwards.  It may not match
2960      gdbarch_decr_pc_after_break.  I don't know any specific target that
2961      generates these signals at breakpoints (the code has been in GDB since at
2962      least 1992) so I can not guess how to handle them here.
2963
2964      In earlier versions of GDB, a target with 
2965      gdbarch_have_nonsteppable_watchpoint would have the PC after hitting a
2966      watchpoint affected by gdbarch_decr_pc_after_break.  I haven't found any
2967      target with both of these set in GDB history, and it seems unlikely to be
2968      correct, so gdbarch_have_nonsteppable_watchpoint is not checked here.  */
2969
2970   if (ecs->ws.kind != TARGET_WAITKIND_STOPPED)
2971     return;
2972
2973   if (ecs->ws.value.sig != GDB_SIGNAL_TRAP)
2974     return;
2975
2976   /* In reverse execution, when a breakpoint is hit, the instruction
2977      under it has already been de-executed.  The reported PC always
2978      points at the breakpoint address, so adjusting it further would
2979      be wrong.  E.g., consider this case on a decr_pc_after_break == 1
2980      architecture:
2981
2982        B1         0x08000000 :   INSN1
2983        B2         0x08000001 :   INSN2
2984                   0x08000002 :   INSN3
2985             PC -> 0x08000003 :   INSN4
2986
2987      Say you're stopped at 0x08000003 as above.  Reverse continuing
2988      from that point should hit B2 as below.  Reading the PC when the
2989      SIGTRAP is reported should read 0x08000001 and INSN2 should have
2990      been de-executed already.
2991
2992        B1         0x08000000 :   INSN1
2993        B2   PC -> 0x08000001 :   INSN2
2994                   0x08000002 :   INSN3
2995                   0x08000003 :   INSN4
2996
2997      We can't apply the same logic as for forward execution, because
2998      we would wrongly adjust the PC to 0x08000000, since there's a
2999      breakpoint at PC - 1.  We'd then report a hit on B1, although
3000      INSN1 hadn't been de-executed yet.  Doing nothing is the correct
3001      behaviour.  */
3002   if (execution_direction == EXEC_REVERSE)
3003     return;
3004
3005   /* If this target does not decrement the PC after breakpoints, then
3006      we have nothing to do.  */
3007   regcache = get_thread_regcache (ecs->ptid);
3008   gdbarch = get_regcache_arch (regcache);
3009   if (gdbarch_decr_pc_after_break (gdbarch) == 0)
3010     return;
3011
3012   aspace = get_regcache_aspace (regcache);
3013
3014   /* Find the location where (if we've hit a breakpoint) the
3015      breakpoint would be.  */
3016   breakpoint_pc = regcache_read_pc (regcache)
3017                   - gdbarch_decr_pc_after_break (gdbarch);
3018
3019   /* Check whether there actually is a software breakpoint inserted at
3020      that location.
3021
3022      If in non-stop mode, a race condition is possible where we've
3023      removed a breakpoint, but stop events for that breakpoint were
3024      already queued and arrive later.  To suppress those spurious
3025      SIGTRAPs, we keep a list of such breakpoint locations for a bit,
3026      and retire them after a number of stop events are reported.  */
3027   if (software_breakpoint_inserted_here_p (aspace, breakpoint_pc)
3028       || (non_stop && moribund_breakpoint_here_p (aspace, breakpoint_pc)))
3029     {
3030       struct cleanup *old_cleanups = NULL;
3031
3032       if (RECORD_IS_USED)
3033         old_cleanups = record_full_gdb_operation_disable_set ();
3034
3035       /* When using hardware single-step, a SIGTRAP is reported for both
3036          a completed single-step and a software breakpoint.  Need to
3037          differentiate between the two, as the latter needs adjusting
3038          but the former does not.
3039
3040          The SIGTRAP can be due to a completed hardware single-step only if 
3041           - we didn't insert software single-step breakpoints
3042           - the thread to be examined is still the current thread
3043           - this thread is currently being stepped
3044
3045          If any of these events did not occur, we must have stopped due
3046          to hitting a software breakpoint, and have to back up to the
3047          breakpoint address.
3048
3049          As a special case, we could have hardware single-stepped a
3050          software breakpoint.  In this case (prev_pc == breakpoint_pc),
3051          we also need to back up to the breakpoint address.  */
3052
3053       if (singlestep_breakpoints_inserted_p
3054           || !ptid_equal (ecs->ptid, inferior_ptid)
3055           || !currently_stepping (ecs->event_thread)
3056           || ecs->event_thread->prev_pc == breakpoint_pc)
3057         regcache_write_pc (regcache, breakpoint_pc);
3058
3059       if (RECORD_IS_USED)
3060         do_cleanups (old_cleanups);
3061     }
3062 }
3063
3064 static void
3065 init_infwait_state (void)
3066 {
3067   waiton_ptid = pid_to_ptid (-1);
3068   infwait_state = infwait_normal_state;
3069 }
3070
3071 static int
3072 stepped_in_from (struct frame_info *frame, struct frame_id step_frame_id)
3073 {
3074   for (frame = get_prev_frame (frame);
3075        frame != NULL;
3076        frame = get_prev_frame (frame))
3077     {
3078       if (frame_id_eq (get_frame_id (frame), step_frame_id))
3079         return 1;
3080       if (get_frame_type (frame) != INLINE_FRAME)
3081         break;
3082     }
3083
3084   return 0;
3085 }
3086
3087 /* Auxiliary function that handles syscall entry/return events.
3088    It returns 1 if the inferior should keep going (and GDB
3089    should ignore the event), or 0 if the event deserves to be
3090    processed.  */
3091
3092 static int
3093 handle_syscall_event (struct execution_control_state *ecs)
3094 {
3095   struct regcache *regcache;
3096   int syscall_number;
3097
3098   if (!ptid_equal (ecs->ptid, inferior_ptid))
3099     context_switch (ecs->ptid);
3100
3101   regcache = get_thread_regcache (ecs->ptid);
3102   syscall_number = ecs->ws.value.syscall_number;
3103   stop_pc = regcache_read_pc (regcache);
3104
3105   if (catch_syscall_enabled () > 0
3106       && catching_syscall_number (syscall_number) > 0)
3107     {
3108       enum bpstat_signal_value sval;
3109
3110       if (debug_infrun)
3111         fprintf_unfiltered (gdb_stdlog, "infrun: syscall number = '%d'\n",
3112                             syscall_number);
3113
3114       ecs->event_thread->control.stop_bpstat
3115         = bpstat_stop_status (get_regcache_aspace (regcache),
3116                               stop_pc, ecs->ptid, &ecs->ws);
3117
3118       sval = bpstat_explains_signal (ecs->event_thread->control.stop_bpstat);
3119       ecs->random_signal = sval == BPSTAT_SIGNAL_NO;
3120
3121       if (!ecs->random_signal)
3122         {
3123           /* Catchpoint hit.  */
3124           ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_TRAP;
3125           return 0;
3126         }
3127     }
3128
3129   /* If no catchpoint triggered for this, then keep going.  */
3130   ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3131   keep_going (ecs);
3132   return 1;
3133 }
3134
3135 /* Clear the supplied execution_control_state's stop_func_* fields.  */
3136
3137 static void
3138 clear_stop_func (struct execution_control_state *ecs)
3139 {
3140   ecs->stop_func_filled_in = 0;
3141   ecs->stop_func_start = 0;
3142   ecs->stop_func_end = 0;
3143   ecs->stop_func_name = NULL;
3144 }
3145
3146 /* Lazily fill in the execution_control_state's stop_func_* fields.  */
3147
3148 static void
3149 fill_in_stop_func (struct gdbarch *gdbarch,
3150                    struct execution_control_state *ecs)
3151 {
3152   if (!ecs->stop_func_filled_in)
3153     {
3154       /* Don't care about return value; stop_func_start and stop_func_name
3155          will both be 0 if it doesn't work.  */
3156       find_pc_partial_function (stop_pc, &ecs->stop_func_name,
3157                                 &ecs->stop_func_start, &ecs->stop_func_end);
3158       ecs->stop_func_start
3159         += gdbarch_deprecated_function_start_offset (gdbarch);
3160
3161       ecs->stop_func_filled_in = 1;
3162     }
3163 }
3164
3165 /* Given an execution control state that has been freshly filled in
3166    by an event from the inferior, figure out what it means and take
3167    appropriate action.  */
3168
3169 static void
3170 handle_inferior_event (struct execution_control_state *ecs)
3171 {
3172   struct frame_info *frame;
3173   struct gdbarch *gdbarch;
3174   int stopped_by_watchpoint;
3175   int stepped_after_stopped_by_watchpoint = 0;
3176   struct symtab_and_line stop_pc_sal;
3177   enum stop_kind stop_soon;
3178
3179   if (ecs->ws.kind == TARGET_WAITKIND_IGNORE)
3180     {
3181       /* We had an event in the inferior, but we are not interested in
3182          handling it at this level.  The lower layers have already
3183          done what needs to be done, if anything.
3184
3185          One of the possible circumstances for this is when the
3186          inferior produces output for the console.  The inferior has
3187          not stopped, and we are ignoring the event.  Another possible
3188          circumstance is any event which the lower level knows will be
3189          reported multiple times without an intervening resume.  */
3190       if (debug_infrun)
3191         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_IGNORE\n");
3192       prepare_to_wait (ecs);
3193       return;
3194     }
3195
3196   if (ecs->ws.kind == TARGET_WAITKIND_NO_RESUMED
3197       && target_can_async_p () && !sync_execution)
3198     {
3199       /* There were no unwaited-for children left in the target, but,
3200          we're not synchronously waiting for events either.  Just
3201          ignore.  Otherwise, if we were running a synchronous
3202          execution command, we need to cancel it and give the user
3203          back the terminal.  */
3204       if (debug_infrun)
3205         fprintf_unfiltered (gdb_stdlog,
3206                             "infrun: TARGET_WAITKIND_NO_RESUMED (ignoring)\n");
3207       prepare_to_wait (ecs);
3208       return;
3209     }
3210
3211   if (ecs->ws.kind != TARGET_WAITKIND_EXITED
3212       && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
3213       && ecs->ws.kind != TARGET_WAITKIND_NO_RESUMED)
3214     {
3215       struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
3216
3217       gdb_assert (inf);
3218       stop_soon = inf->control.stop_soon;
3219     }
3220   else
3221     stop_soon = NO_STOP_QUIETLY;
3222
3223   /* Cache the last pid/waitstatus.  */
3224   target_last_wait_ptid = ecs->ptid;
3225   target_last_waitstatus = ecs->ws;
3226
3227   /* Always clear state belonging to the previous time we stopped.  */
3228   stop_stack_dummy = STOP_NONE;
3229
3230   if (ecs->ws.kind == TARGET_WAITKIND_NO_RESUMED)
3231     {
3232       /* No unwaited-for children left.  IOW, all resumed children
3233          have exited.  */
3234       if (debug_infrun)
3235         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_NO_RESUMED\n");
3236
3237       stop_print_frame = 0;
3238       stop_stepping (ecs);
3239       return;
3240     }
3241
3242   if (ecs->ws.kind != TARGET_WAITKIND_EXITED
3243       && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED)
3244     {
3245       ecs->event_thread = find_thread_ptid (ecs->ptid);
3246       /* If it's a new thread, add it to the thread database.  */
3247       if (ecs->event_thread == NULL)
3248         ecs->event_thread = add_thread (ecs->ptid);
3249
3250       /* Disable range stepping.  If the next step request could use a
3251          range, this will be end up re-enabled then.  */
3252       ecs->event_thread->control.may_range_step = 0;
3253     }
3254
3255   /* Dependent on valid ECS->EVENT_THREAD.  */
3256   adjust_pc_after_break (ecs);
3257
3258   /* Dependent on the current PC value modified by adjust_pc_after_break.  */
3259   reinit_frame_cache ();
3260
3261   breakpoint_retire_moribund ();
3262
3263   /* First, distinguish signals caused by the debugger from signals
3264      that have to do with the program's own actions.  Note that
3265      breakpoint insns may cause SIGTRAP or SIGILL or SIGEMT, depending
3266      on the operating system version.  Here we detect when a SIGILL or
3267      SIGEMT is really a breakpoint and change it to SIGTRAP.  We do
3268      something similar for SIGSEGV, since a SIGSEGV will be generated
3269      when we're trying to execute a breakpoint instruction on a
3270      non-executable stack.  This happens for call dummy breakpoints
3271      for architectures like SPARC that place call dummies on the
3272      stack.  */
3273   if (ecs->ws.kind == TARGET_WAITKIND_STOPPED
3274       && (ecs->ws.value.sig == GDB_SIGNAL_ILL
3275           || ecs->ws.value.sig == GDB_SIGNAL_SEGV
3276           || ecs->ws.value.sig == GDB_SIGNAL_EMT))
3277     {
3278       struct regcache *regcache = get_thread_regcache (ecs->ptid);
3279
3280       if (breakpoint_inserted_here_p (get_regcache_aspace (regcache),
3281                                       regcache_read_pc (regcache)))
3282         {
3283           if (debug_infrun)
3284             fprintf_unfiltered (gdb_stdlog,
3285                                 "infrun: Treating signal as SIGTRAP\n");
3286           ecs->ws.value.sig = GDB_SIGNAL_TRAP;
3287         }
3288     }
3289
3290   /* Mark the non-executing threads accordingly.  In all-stop, all
3291      threads of all processes are stopped when we get any event
3292      reported.  In non-stop mode, only the event thread stops.  If
3293      we're handling a process exit in non-stop mode, there's nothing
3294      to do, as threads of the dead process are gone, and threads of
3295      any other process were left running.  */
3296   if (!non_stop)
3297     set_executing (minus_one_ptid, 0);
3298   else if (ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
3299            && ecs->ws.kind != TARGET_WAITKIND_EXITED)
3300     set_executing (ecs->ptid, 0);
3301
3302   switch (infwait_state)
3303     {
3304     case infwait_thread_hop_state:
3305       if (debug_infrun)
3306         fprintf_unfiltered (gdb_stdlog, "infrun: infwait_thread_hop_state\n");
3307       break;
3308
3309     case infwait_normal_state:
3310       if (debug_infrun)
3311         fprintf_unfiltered (gdb_stdlog, "infrun: infwait_normal_state\n");
3312       break;
3313
3314     case infwait_step_watch_state:
3315       if (debug_infrun)
3316         fprintf_unfiltered (gdb_stdlog,
3317                             "infrun: infwait_step_watch_state\n");
3318
3319       stepped_after_stopped_by_watchpoint = 1;
3320       break;
3321
3322     case infwait_nonstep_watch_state:
3323       if (debug_infrun)
3324         fprintf_unfiltered (gdb_stdlog,
3325                             "infrun: infwait_nonstep_watch_state\n");
3326       insert_breakpoints ();
3327
3328       /* FIXME-maybe: is this cleaner than setting a flag?  Does it
3329          handle things like signals arriving and other things happening
3330          in combination correctly?  */
3331       stepped_after_stopped_by_watchpoint = 1;
3332       break;
3333
3334     default:
3335       internal_error (__FILE__, __LINE__, _("bad switch"));
3336     }
3337
3338   infwait_state = infwait_normal_state;
3339   waiton_ptid = pid_to_ptid (-1);
3340
3341   switch (ecs->ws.kind)
3342     {
3343     case TARGET_WAITKIND_LOADED:
3344       if (debug_infrun)
3345         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_LOADED\n");
3346       /* Ignore gracefully during startup of the inferior, as it might
3347          be the shell which has just loaded some objects, otherwise
3348          add the symbols for the newly loaded objects.  Also ignore at
3349          the beginning of an attach or remote session; we will query
3350          the full list of libraries once the connection is
3351          established.  */
3352       if (stop_soon == NO_STOP_QUIETLY)
3353         {
3354           struct regcache *regcache;
3355           enum bpstat_signal_value sval;
3356
3357           if (!ptid_equal (ecs->ptid, inferior_ptid))
3358             context_switch (ecs->ptid);
3359           regcache = get_thread_regcache (ecs->ptid);
3360
3361           handle_solib_event ();
3362
3363           ecs->event_thread->control.stop_bpstat
3364             = bpstat_stop_status (get_regcache_aspace (regcache),
3365                                   stop_pc, ecs->ptid, &ecs->ws);
3366
3367           sval
3368             = bpstat_explains_signal (ecs->event_thread->control.stop_bpstat);
3369           ecs->random_signal = sval == BPSTAT_SIGNAL_NO;
3370
3371           if (!ecs->random_signal)
3372             {
3373               /* A catchpoint triggered.  */
3374               ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_TRAP;
3375               goto process_event_stop_test;
3376             }
3377
3378           /* If requested, stop when the dynamic linker notifies
3379              gdb of events.  This allows the user to get control
3380              and place breakpoints in initializer routines for
3381              dynamically loaded objects (among other things).  */
3382           ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3383           if (stop_on_solib_events)
3384             {
3385               /* Make sure we print "Stopped due to solib-event" in
3386                  normal_stop.  */
3387               stop_print_frame = 1;
3388
3389               stop_stepping (ecs);
3390               return;
3391             }
3392         }
3393
3394       /* If we are skipping through a shell, or through shared library
3395          loading that we aren't interested in, resume the program.  If
3396          we're running the program normally, also resume.  But stop if
3397          we're attaching or setting up a remote connection.  */
3398       if (stop_soon == STOP_QUIETLY || stop_soon == NO_STOP_QUIETLY)
3399         {
3400           if (!ptid_equal (ecs->ptid, inferior_ptid))
3401             context_switch (ecs->ptid);
3402
3403           /* Loading of shared libraries might have changed breakpoint
3404              addresses.  Make sure new breakpoints are inserted.  */
3405           if (stop_soon == NO_STOP_QUIETLY
3406               && !breakpoints_always_inserted_mode ())
3407             insert_breakpoints ();
3408           resume (0, GDB_SIGNAL_0);
3409           prepare_to_wait (ecs);
3410           return;
3411         }
3412
3413       break;
3414
3415     case TARGET_WAITKIND_SPURIOUS:
3416       if (debug_infrun)
3417         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SPURIOUS\n");
3418       if (!ptid_equal (ecs->ptid, inferior_ptid))
3419         context_switch (ecs->ptid);
3420       resume (0, GDB_SIGNAL_0);
3421       prepare_to_wait (ecs);
3422       return;
3423
3424     case TARGET_WAITKIND_EXITED:
3425     case TARGET_WAITKIND_SIGNALLED:
3426       if (debug_infrun)
3427         {
3428           if (ecs->ws.kind == TARGET_WAITKIND_EXITED)
3429             fprintf_unfiltered (gdb_stdlog,
3430                                 "infrun: TARGET_WAITKIND_EXITED\n");
3431           else
3432             fprintf_unfiltered (gdb_stdlog,
3433                                 "infrun: TARGET_WAITKIND_SIGNALLED\n");
3434         }
3435
3436       inferior_ptid = ecs->ptid;
3437       set_current_inferior (find_inferior_pid (ptid_get_pid (ecs->ptid)));
3438       set_current_program_space (current_inferior ()->pspace);
3439       handle_vfork_child_exec_or_exit (0);
3440       target_terminal_ours ();  /* Must do this before mourn anyway.  */
3441
3442       if (ecs->ws.kind == TARGET_WAITKIND_EXITED)
3443         {
3444           /* Record the exit code in the convenience variable $_exitcode, so
3445              that the user can inspect this again later.  */
3446           set_internalvar_integer (lookup_internalvar ("_exitcode"),
3447                                    (LONGEST) ecs->ws.value.integer);
3448
3449           /* Also record this in the inferior itself.  */
3450           current_inferior ()->has_exit_code = 1;
3451           current_inferior ()->exit_code = (LONGEST) ecs->ws.value.integer;
3452
3453           print_exited_reason (ecs->ws.value.integer);
3454         }
3455       else
3456         print_signal_exited_reason (ecs->ws.value.sig);
3457
3458       gdb_flush (gdb_stdout);
3459       target_mourn_inferior ();
3460       singlestep_breakpoints_inserted_p = 0;
3461       cancel_single_step_breakpoints ();
3462       stop_print_frame = 0;
3463       stop_stepping (ecs);
3464       return;
3465
3466       /* The following are the only cases in which we keep going;
3467          the above cases end in a continue or goto.  */
3468     case TARGET_WAITKIND_FORKED:
3469     case TARGET_WAITKIND_VFORKED:
3470       if (debug_infrun)
3471         {
3472           if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
3473             fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_FORKED\n");
3474           else
3475             fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_VFORKED\n");
3476         }
3477
3478       /* Check whether the inferior is displaced stepping.  */
3479       {
3480         struct regcache *regcache = get_thread_regcache (ecs->ptid);
3481         struct gdbarch *gdbarch = get_regcache_arch (regcache);
3482         struct displaced_step_inferior_state *displaced
3483           = get_displaced_stepping_state (ptid_get_pid (ecs->ptid));
3484
3485         /* If checking displaced stepping is supported, and thread
3486            ecs->ptid is displaced stepping.  */
3487         if (displaced && ptid_equal (displaced->step_ptid, ecs->ptid))
3488           {
3489             struct inferior *parent_inf
3490               = find_inferior_pid (ptid_get_pid (ecs->ptid));
3491             struct regcache *child_regcache;
3492             CORE_ADDR parent_pc;
3493
3494             /* GDB has got TARGET_WAITKIND_FORKED or TARGET_WAITKIND_VFORKED,
3495                indicating that the displaced stepping of syscall instruction
3496                has been done.  Perform cleanup for parent process here.  Note
3497                that this operation also cleans up the child process for vfork,
3498                because their pages are shared.  */
3499             displaced_step_fixup (ecs->ptid, GDB_SIGNAL_TRAP);
3500
3501             if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
3502               {
3503                 /* Restore scratch pad for child process.  */
3504                 displaced_step_restore (displaced, ecs->ws.value.related_pid);
3505               }
3506
3507             /* Since the vfork/fork syscall instruction was executed in the scratchpad,
3508                the child's PC is also within the scratchpad.  Set the child's PC
3509                to the parent's PC value, which has already been fixed up.
3510                FIXME: we use the parent's aspace here, although we're touching
3511                the child, because the child hasn't been added to the inferior
3512                list yet at this point.  */
3513
3514             child_regcache
3515               = get_thread_arch_aspace_regcache (ecs->ws.value.related_pid,
3516                                                  gdbarch,
3517                                                  parent_inf->aspace);
3518             /* Read PC value of parent process.  */
3519             parent_pc = regcache_read_pc (regcache);
3520
3521             if (debug_displaced)
3522               fprintf_unfiltered (gdb_stdlog,
3523                                   "displaced: write child pc from %s to %s\n",
3524                                   paddress (gdbarch,
3525                                             regcache_read_pc (child_regcache)),
3526                                   paddress (gdbarch, parent_pc));
3527
3528             regcache_write_pc (child_regcache, parent_pc);
3529           }
3530       }
3531
3532       if (!ptid_equal (ecs->ptid, inferior_ptid))
3533         context_switch (ecs->ptid);
3534
3535       /* Immediately detach breakpoints from the child before there's
3536          any chance of letting the user delete breakpoints from the
3537          breakpoint lists.  If we don't do this early, it's easy to
3538          leave left over traps in the child, vis: "break foo; catch
3539          fork; c; <fork>; del; c; <child calls foo>".  We only follow
3540          the fork on the last `continue', and by that time the
3541          breakpoint at "foo" is long gone from the breakpoint table.
3542          If we vforked, then we don't need to unpatch here, since both
3543          parent and child are sharing the same memory pages; we'll
3544          need to unpatch at follow/detach time instead to be certain
3545          that new breakpoints added between catchpoint hit time and
3546          vfork follow are detached.  */
3547       if (ecs->ws.kind != TARGET_WAITKIND_VFORKED)
3548         {
3549           /* This won't actually modify the breakpoint list, but will
3550              physically remove the breakpoints from the child.  */
3551           detach_breakpoints (ecs->ws.value.related_pid);
3552         }
3553
3554       if (singlestep_breakpoints_inserted_p)
3555         {
3556           /* Pull the single step breakpoints out of the target.  */
3557           remove_single_step_breakpoints ();
3558           singlestep_breakpoints_inserted_p = 0;
3559         }
3560
3561       /* In case the event is caught by a catchpoint, remember that
3562          the event is to be followed at the next resume of the thread,
3563          and not immediately.  */
3564       ecs->event_thread->pending_follow = ecs->ws;
3565
3566       stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3567
3568       ecs->event_thread->control.stop_bpstat
3569         = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
3570                               stop_pc, ecs->ptid, &ecs->ws);
3571
3572       /* Note that we're interested in knowing the bpstat actually
3573          causes a stop, not just if it may explain the signal.
3574          Software watchpoints, for example, always appear in the
3575          bpstat.  */
3576       ecs->random_signal
3577         = !bpstat_causes_stop (ecs->event_thread->control.stop_bpstat);
3578
3579       /* If no catchpoint triggered for this, then keep going.  */
3580       if (ecs->random_signal)
3581         {
3582           ptid_t parent;
3583           ptid_t child;
3584           int should_resume;
3585           int follow_child
3586             = (follow_fork_mode_string == follow_fork_mode_child);
3587
3588           ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3589
3590           should_resume = follow_fork ();
3591
3592           parent = ecs->ptid;
3593           child = ecs->ws.value.related_pid;
3594
3595           /* In non-stop mode, also resume the other branch.  */
3596           if (non_stop && !detach_fork)
3597             {
3598               if (follow_child)
3599                 switch_to_thread (parent);
3600               else
3601                 switch_to_thread (child);
3602
3603               ecs->event_thread = inferior_thread ();
3604               ecs->ptid = inferior_ptid;
3605               keep_going (ecs);
3606             }
3607
3608           if (follow_child)
3609             switch_to_thread (child);
3610           else
3611             switch_to_thread (parent);
3612
3613           ecs->event_thread = inferior_thread ();
3614           ecs->ptid = inferior_ptid;
3615
3616           if (should_resume)
3617             keep_going (ecs);
3618           else
3619             stop_stepping (ecs);
3620           return;
3621         }
3622       ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_TRAP;
3623       goto process_event_stop_test;
3624
3625     case TARGET_WAITKIND_VFORK_DONE:
3626       /* Done with the shared memory region.  Re-insert breakpoints in
3627          the parent, and keep going.  */
3628
3629       if (debug_infrun)
3630         fprintf_unfiltered (gdb_stdlog,
3631                             "infrun: TARGET_WAITKIND_VFORK_DONE\n");
3632
3633       if (!ptid_equal (ecs->ptid, inferior_ptid))
3634         context_switch (ecs->ptid);
3635
3636       current_inferior ()->waiting_for_vfork_done = 0;
3637       current_inferior ()->pspace->breakpoints_not_allowed = 0;
3638       /* This also takes care of reinserting breakpoints in the
3639          previously locked inferior.  */
3640       keep_going (ecs);
3641       return;
3642
3643     case TARGET_WAITKIND_EXECD:
3644       if (debug_infrun)
3645         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXECD\n");
3646
3647       if (!ptid_equal (ecs->ptid, inferior_ptid))
3648         context_switch (ecs->ptid);
3649
3650       singlestep_breakpoints_inserted_p = 0;
3651       cancel_single_step_breakpoints ();
3652
3653       stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3654
3655       /* Do whatever is necessary to the parent branch of the vfork.  */
3656       handle_vfork_child_exec_or_exit (1);
3657
3658       /* This causes the eventpoints and symbol table to be reset.
3659          Must do this now, before trying to determine whether to
3660          stop.  */
3661       follow_exec (inferior_ptid, ecs->ws.value.execd_pathname);
3662
3663       ecs->event_thread->control.stop_bpstat
3664         = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
3665                               stop_pc, ecs->ptid, &ecs->ws);
3666       ecs->random_signal
3667         = (bpstat_explains_signal (ecs->event_thread->control.stop_bpstat)
3668            == BPSTAT_SIGNAL_NO);
3669
3670       /* Note that this may be referenced from inside
3671          bpstat_stop_status above, through inferior_has_execd.  */
3672       xfree (ecs->ws.value.execd_pathname);
3673       ecs->ws.value.execd_pathname = NULL;
3674
3675       /* If no catchpoint triggered for this, then keep going.  */
3676       if (ecs->random_signal)
3677         {
3678           ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3679           keep_going (ecs);
3680           return;
3681         }
3682       ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_TRAP;
3683       goto process_event_stop_test;
3684
3685       /* Be careful not to try to gather much state about a thread
3686          that's in a syscall.  It's frequently a losing proposition.  */
3687     case TARGET_WAITKIND_SYSCALL_ENTRY:
3688       if (debug_infrun)
3689         fprintf_unfiltered (gdb_stdlog,
3690                             "infrun: TARGET_WAITKIND_SYSCALL_ENTRY\n");
3691       /* Getting the current syscall number.  */
3692       if (handle_syscall_event (ecs) != 0)
3693         return;
3694       goto process_event_stop_test;
3695
3696       /* Before examining the threads further, step this thread to
3697          get it entirely out of the syscall.  (We get notice of the
3698          event when the thread is just on the verge of exiting a
3699          syscall.  Stepping one instruction seems to get it back
3700          into user code.)  */
3701     case TARGET_WAITKIND_SYSCALL_RETURN:
3702       if (debug_infrun)
3703         fprintf_unfiltered (gdb_stdlog,
3704                             "infrun: TARGET_WAITKIND_SYSCALL_RETURN\n");
3705       if (handle_syscall_event (ecs) != 0)
3706         return;
3707       goto process_event_stop_test;
3708
3709     case TARGET_WAITKIND_STOPPED:
3710       if (debug_infrun)
3711         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_STOPPED\n");
3712       ecs->event_thread->suspend.stop_signal = ecs->ws.value.sig;
3713       break;
3714
3715     case TARGET_WAITKIND_NO_HISTORY:
3716       if (debug_infrun)
3717         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_NO_HISTORY\n");
3718       /* Reverse execution: target ran out of history info.  */
3719
3720       /* Pull the single step breakpoints out of the target.  */
3721       if (singlestep_breakpoints_inserted_p)
3722         {
3723           if (!ptid_equal (ecs->ptid, inferior_ptid))
3724             context_switch (ecs->ptid);
3725           remove_single_step_breakpoints ();
3726           singlestep_breakpoints_inserted_p = 0;
3727         }
3728       stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3729       print_no_history_reason ();
3730       stop_stepping (ecs);
3731       return;
3732     }
3733
3734   if (ecs->ws.kind == TARGET_WAITKIND_STOPPED)
3735     {
3736       /* Do we need to clean up the state of a thread that has
3737          completed a displaced single-step?  (Doing so usually affects
3738          the PC, so do it here, before we set stop_pc.)  */
3739       displaced_step_fixup (ecs->ptid,
3740                             ecs->event_thread->suspend.stop_signal);
3741
3742       /* If we either finished a single-step or hit a breakpoint, but
3743          the user wanted this thread to be stopped, pretend we got a
3744          SIG0 (generic unsignaled stop).  */
3745
3746       if (ecs->event_thread->stop_requested
3747           && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
3748         ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3749     }
3750
3751   stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
3752
3753   if (debug_infrun)
3754     {
3755       struct regcache *regcache = get_thread_regcache (ecs->ptid);
3756       struct gdbarch *gdbarch = get_regcache_arch (regcache);
3757       struct cleanup *old_chain = save_inferior_ptid ();
3758
3759       inferior_ptid = ecs->ptid;
3760
3761       fprintf_unfiltered (gdb_stdlog, "infrun: stop_pc = %s\n",
3762                           paddress (gdbarch, stop_pc));
3763       if (target_stopped_by_watchpoint ())
3764         {
3765           CORE_ADDR addr;
3766
3767           fprintf_unfiltered (gdb_stdlog, "infrun: stopped by watchpoint\n");
3768
3769           if (target_stopped_data_address (&current_target, &addr))
3770             fprintf_unfiltered (gdb_stdlog,
3771                                 "infrun: stopped data address = %s\n",
3772                                 paddress (gdbarch, addr));
3773           else
3774             fprintf_unfiltered (gdb_stdlog,
3775                                 "infrun: (no data address available)\n");
3776         }
3777
3778       do_cleanups (old_chain);
3779     }
3780
3781   if (stepping_past_singlestep_breakpoint)
3782     {
3783       gdb_assert (singlestep_breakpoints_inserted_p);
3784       gdb_assert (ptid_equal (singlestep_ptid, ecs->ptid));
3785       gdb_assert (!ptid_equal (singlestep_ptid, saved_singlestep_ptid));
3786
3787       stepping_past_singlestep_breakpoint = 0;
3788
3789       /* We've either finished single-stepping past the single-step
3790          breakpoint, or stopped for some other reason.  It would be nice if
3791          we could tell, but we can't reliably.  */
3792       if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
3793         {
3794           if (debug_infrun)
3795             fprintf_unfiltered (gdb_stdlog,
3796                                 "infrun: stepping_past_"
3797                                 "singlestep_breakpoint\n");
3798           /* Pull the single step breakpoints out of the target.  */
3799           if (!ptid_equal (ecs->ptid, inferior_ptid))
3800             context_switch (ecs->ptid);
3801           remove_single_step_breakpoints ();
3802           singlestep_breakpoints_inserted_p = 0;
3803
3804           ecs->random_signal = 0;
3805           ecs->event_thread->control.trap_expected = 0;
3806
3807           context_switch (saved_singlestep_ptid);
3808           if (deprecated_context_hook)
3809             deprecated_context_hook (pid_to_thread_id (saved_singlestep_ptid));
3810
3811           resume (1, GDB_SIGNAL_0);
3812           prepare_to_wait (ecs);
3813           return;
3814         }
3815     }
3816
3817   if (!ptid_equal (deferred_step_ptid, null_ptid))
3818     {
3819       /* In non-stop mode, there's never a deferred_step_ptid set.  */
3820       gdb_assert (!non_stop);
3821
3822       /* If we stopped for some other reason than single-stepping, ignore
3823          the fact that we were supposed to switch back.  */
3824       if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
3825         {
3826           if (debug_infrun)
3827             fprintf_unfiltered (gdb_stdlog,
3828                                 "infrun: handling deferred step\n");
3829
3830           /* Pull the single step breakpoints out of the target.  */
3831           if (singlestep_breakpoints_inserted_p)
3832             {
3833               if (!ptid_equal (ecs->ptid, inferior_ptid))
3834                 context_switch (ecs->ptid);
3835               remove_single_step_breakpoints ();
3836               singlestep_breakpoints_inserted_p = 0;
3837             }
3838
3839           ecs->event_thread->control.trap_expected = 0;
3840
3841           context_switch (deferred_step_ptid);
3842           deferred_step_ptid = null_ptid;
3843           /* Suppress spurious "Switching to ..." message.  */
3844           previous_inferior_ptid = inferior_ptid;
3845
3846           resume (1, GDB_SIGNAL_0);
3847           prepare_to_wait (ecs);
3848           return;
3849         }
3850
3851       deferred_step_ptid = null_ptid;
3852     }
3853
3854   /* See if a thread hit a thread-specific breakpoint that was meant for
3855      another thread.  If so, then step that thread past the breakpoint,
3856      and continue it.  */
3857
3858   if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
3859     {
3860       int thread_hop_needed = 0;
3861       struct address_space *aspace = 
3862         get_regcache_aspace (get_thread_regcache (ecs->ptid));
3863
3864       /* Check if a regular breakpoint has been hit before checking
3865          for a potential single step breakpoint.  Otherwise, GDB will
3866          not see this breakpoint hit when stepping onto breakpoints.  */
3867       if (regular_breakpoint_inserted_here_p (aspace, stop_pc))
3868         {
3869           ecs->random_signal = 0;
3870           if (!breakpoint_thread_match (aspace, stop_pc, ecs->ptid))
3871             thread_hop_needed = 1;
3872         }
3873       else if (singlestep_breakpoints_inserted_p)
3874         {
3875           /* We have not context switched yet, so this should be true
3876              no matter which thread hit the singlestep breakpoint.  */
3877           gdb_assert (ptid_equal (inferior_ptid, singlestep_ptid));
3878           if (debug_infrun)
3879             fprintf_unfiltered (gdb_stdlog, "infrun: software single step "
3880                                 "trap for %s\n",
3881                                 target_pid_to_str (ecs->ptid));
3882
3883           ecs->random_signal = 0;
3884           /* The call to in_thread_list is necessary because PTIDs sometimes
3885              change when we go from single-threaded to multi-threaded.  If
3886              the singlestep_ptid is still in the list, assume that it is
3887              really different from ecs->ptid.  */
3888           if (!ptid_equal (singlestep_ptid, ecs->ptid)
3889               && in_thread_list (singlestep_ptid))
3890             {
3891               /* If the PC of the thread we were trying to single-step
3892                  has changed, discard this event (which we were going
3893                  to ignore anyway), and pretend we saw that thread
3894                  trap.  This prevents us continuously moving the
3895                  single-step breakpoint forward, one instruction at a
3896                  time.  If the PC has changed, then the thread we were
3897                  trying to single-step has trapped or been signalled,
3898                  but the event has not been reported to GDB yet.
3899
3900                  There might be some cases where this loses signal
3901                  information, if a signal has arrived at exactly the
3902                  same time that the PC changed, but this is the best
3903                  we can do with the information available.  Perhaps we
3904                  should arrange to report all events for all threads
3905                  when they stop, or to re-poll the remote looking for
3906                  this particular thread (i.e. temporarily enable
3907                  schedlock).  */
3908
3909              CORE_ADDR new_singlestep_pc
3910                = regcache_read_pc (get_thread_regcache (singlestep_ptid));
3911
3912              if (new_singlestep_pc != singlestep_pc)
3913                {
3914                  enum gdb_signal stop_signal;
3915
3916                  if (debug_infrun)
3917                    fprintf_unfiltered (gdb_stdlog, "infrun: unexpected thread,"
3918                                        " but expected thread advanced also\n");
3919
3920                  /* The current context still belongs to
3921                     singlestep_ptid.  Don't swap here, since that's
3922                     the context we want to use.  Just fudge our
3923                     state and continue.  */
3924                  stop_signal = ecs->event_thread->suspend.stop_signal;
3925                  ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
3926                  ecs->ptid = singlestep_ptid;
3927                  ecs->event_thread = find_thread_ptid (ecs->ptid);
3928                  ecs->event_thread->suspend.stop_signal = stop_signal;
3929                  stop_pc = new_singlestep_pc;
3930                }
3931              else
3932                {
3933                  if (debug_infrun)
3934                    fprintf_unfiltered (gdb_stdlog,
3935                                        "infrun: unexpected thread\n");
3936
3937                  thread_hop_needed = 1;
3938                  stepping_past_singlestep_breakpoint = 1;
3939                  saved_singlestep_ptid = singlestep_ptid;
3940                }
3941             }
3942         }
3943
3944       if (thread_hop_needed)
3945         {
3946           struct regcache *thread_regcache;
3947           int remove_status = 0;
3948
3949           if (debug_infrun)
3950             fprintf_unfiltered (gdb_stdlog, "infrun: thread_hop_needed\n");
3951
3952           /* Switch context before touching inferior memory, the
3953              previous thread may have exited.  */
3954           if (!ptid_equal (inferior_ptid, ecs->ptid))
3955             context_switch (ecs->ptid);
3956
3957           /* Saw a breakpoint, but it was hit by the wrong thread.
3958              Just continue.  */
3959
3960           if (singlestep_breakpoints_inserted_p)
3961             {
3962               /* Pull the single step breakpoints out of the target.  */
3963               remove_single_step_breakpoints ();
3964               singlestep_breakpoints_inserted_p = 0;
3965             }
3966
3967           /* If the arch can displace step, don't remove the
3968              breakpoints.  */
3969           thread_regcache = get_thread_regcache (ecs->ptid);
3970           if (!use_displaced_stepping (get_regcache_arch (thread_regcache)))
3971             remove_status = remove_breakpoints ();
3972
3973           /* Did we fail to remove breakpoints?  If so, try
3974              to set the PC past the bp.  (There's at least
3975              one situation in which we can fail to remove
3976              the bp's: On HP-UX's that use ttrace, we can't
3977              change the address space of a vforking child
3978              process until the child exits (well, okay, not
3979              then either :-) or execs.  */
3980           if (remove_status != 0)
3981             error (_("Cannot step over breakpoint hit in wrong thread"));
3982           else
3983             {                   /* Single step */
3984               if (!non_stop)
3985                 {
3986                   /* Only need to require the next event from this
3987                      thread in all-stop mode.  */
3988                   waiton_ptid = ecs->ptid;
3989                   infwait_state = infwait_thread_hop_state;
3990                 }
3991
3992               ecs->event_thread->stepping_over_breakpoint = 1;
3993               keep_going (ecs);
3994               return;
3995             }
3996         }
3997       else if (singlestep_breakpoints_inserted_p)
3998         {
3999           ecs->random_signal = 0;
4000         }
4001     }
4002   else
4003     ecs->random_signal = 1;
4004
4005   /* See if something interesting happened to the non-current thread.  If
4006      so, then switch to that thread.  */
4007   if (!ptid_equal (ecs->ptid, inferior_ptid))
4008     {
4009       if (debug_infrun)
4010         fprintf_unfiltered (gdb_stdlog, "infrun: context switch\n");
4011
4012       context_switch (ecs->ptid);
4013
4014       if (deprecated_context_hook)
4015         deprecated_context_hook (pid_to_thread_id (ecs->ptid));
4016     }
4017
4018   /* At this point, get hold of the now-current thread's frame.  */
4019   frame = get_current_frame ();
4020   gdbarch = get_frame_arch (frame);
4021
4022   if (singlestep_breakpoints_inserted_p)
4023     {
4024       /* Pull the single step breakpoints out of the target.  */
4025       remove_single_step_breakpoints ();
4026       singlestep_breakpoints_inserted_p = 0;
4027     }
4028
4029   if (stepped_after_stopped_by_watchpoint)
4030     stopped_by_watchpoint = 0;
4031   else
4032     stopped_by_watchpoint = watchpoints_triggered (&ecs->ws);
4033
4034   /* If necessary, step over this watchpoint.  We'll be back to display
4035      it in a moment.  */
4036   if (stopped_by_watchpoint
4037       && (target_have_steppable_watchpoint
4038           || gdbarch_have_nonsteppable_watchpoint (gdbarch)))
4039     {
4040       /* At this point, we are stopped at an instruction which has
4041          attempted to write to a piece of memory under control of
4042          a watchpoint.  The instruction hasn't actually executed
4043          yet.  If we were to evaluate the watchpoint expression
4044          now, we would get the old value, and therefore no change
4045          would seem to have occurred.
4046
4047          In order to make watchpoints work `right', we really need
4048          to complete the memory write, and then evaluate the
4049          watchpoint expression.  We do this by single-stepping the
4050          target.
4051
4052          It may not be necessary to disable the watchpoint to stop over
4053          it.  For example, the PA can (with some kernel cooperation)
4054          single step over a watchpoint without disabling the watchpoint.
4055
4056          It is far more common to need to disable a watchpoint to step
4057          the inferior over it.  If we have non-steppable watchpoints,
4058          we must disable the current watchpoint; it's simplest to
4059          disable all watchpoints and breakpoints.  */
4060       int hw_step = 1;
4061
4062       if (!target_have_steppable_watchpoint)
4063         {
4064           remove_breakpoints ();
4065           /* See comment in resume why we need to stop bypassing signals
4066              while breakpoints have been removed.  */
4067           target_pass_signals (0, NULL);
4068         }
4069         /* Single step */
4070       hw_step = maybe_software_singlestep (gdbarch, stop_pc);
4071       target_resume (ecs->ptid, hw_step, GDB_SIGNAL_0);
4072       waiton_ptid = ecs->ptid;
4073       if (target_have_steppable_watchpoint)
4074         infwait_state = infwait_step_watch_state;
4075       else
4076         infwait_state = infwait_nonstep_watch_state;
4077       prepare_to_wait (ecs);
4078       return;
4079     }
4080
4081   clear_stop_func (ecs);
4082   ecs->event_thread->stepping_over_breakpoint = 0;
4083   bpstat_clear (&ecs->event_thread->control.stop_bpstat);
4084   ecs->event_thread->control.stop_step = 0;
4085   stop_print_frame = 1;
4086   ecs->random_signal = 0;
4087   stopped_by_random_signal = 0;
4088
4089   /* Hide inlined functions starting here, unless we just performed stepi or
4090      nexti.  After stepi and nexti, always show the innermost frame (not any
4091      inline function call sites).  */
4092   if (ecs->event_thread->control.step_range_end != 1)
4093     {
4094       struct address_space *aspace = 
4095         get_regcache_aspace (get_thread_regcache (ecs->ptid));
4096
4097       /* skip_inline_frames is expensive, so we avoid it if we can
4098          determine that the address is one where functions cannot have
4099          been inlined.  This improves performance with inferiors that
4100          load a lot of shared libraries, because the solib event
4101          breakpoint is defined as the address of a function (i.e. not
4102          inline).  Note that we have to check the previous PC as well
4103          as the current one to catch cases when we have just
4104          single-stepped off a breakpoint prior to reinstating it.
4105          Note that we're assuming that the code we single-step to is
4106          not inline, but that's not definitive: there's nothing
4107          preventing the event breakpoint function from containing
4108          inlined code, and the single-step ending up there.  If the
4109          user had set a breakpoint on that inlined code, the missing
4110          skip_inline_frames call would break things.  Fortunately
4111          that's an extremely unlikely scenario.  */
4112       if (!pc_at_non_inline_function (aspace, stop_pc, &ecs->ws)
4113           && !(ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4114                && ecs->event_thread->control.trap_expected
4115                && pc_at_non_inline_function (aspace,
4116                                              ecs->event_thread->prev_pc,
4117                                              &ecs->ws)))
4118         {
4119           skip_inline_frames (ecs->ptid);
4120
4121           /* Re-fetch current thread's frame in case that invalidated
4122              the frame cache.  */
4123           frame = get_current_frame ();
4124           gdbarch = get_frame_arch (frame);
4125         }
4126     }
4127
4128   if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4129       && ecs->event_thread->control.trap_expected
4130       && gdbarch_single_step_through_delay_p (gdbarch)
4131       && currently_stepping (ecs->event_thread))
4132     {
4133       /* We're trying to step off a breakpoint.  Turns out that we're
4134          also on an instruction that needs to be stepped multiple
4135          times before it's been fully executing.  E.g., architectures
4136          with a delay slot.  It needs to be stepped twice, once for
4137          the instruction and once for the delay slot.  */
4138       int step_through_delay
4139         = gdbarch_single_step_through_delay (gdbarch, frame);
4140
4141       if (debug_infrun && step_through_delay)
4142         fprintf_unfiltered (gdb_stdlog, "infrun: step through delay\n");
4143       if (ecs->event_thread->control.step_range_end == 0
4144           && step_through_delay)
4145         {
4146           /* The user issued a continue when stopped at a breakpoint.
4147              Set up for another trap and get out of here.  */
4148          ecs->event_thread->stepping_over_breakpoint = 1;
4149          keep_going (ecs);
4150          return;
4151         }
4152       else if (step_through_delay)
4153         {
4154           /* The user issued a step when stopped at a breakpoint.
4155              Maybe we should stop, maybe we should not - the delay
4156              slot *might* correspond to a line of source.  In any
4157              case, don't decide that here, just set 
4158              ecs->stepping_over_breakpoint, making sure we 
4159              single-step again before breakpoints are re-inserted.  */
4160           ecs->event_thread->stepping_over_breakpoint = 1;
4161         }
4162     }
4163
4164   /* Look at the cause of the stop, and decide what to do.
4165      The alternatives are:
4166      1) stop_stepping and return; to really stop and return to the debugger,
4167      2) keep_going and return to start up again
4168      (set ecs->event_thread->stepping_over_breakpoint to 1 to single step once)
4169      3) set ecs->random_signal to 1, and the decision between 1 and 2
4170      will be made according to the signal handling tables.  */
4171
4172   if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4173       && stop_after_trap)
4174     {
4175       if (debug_infrun)
4176         fprintf_unfiltered (gdb_stdlog, "infrun: stopped\n");
4177       stop_print_frame = 0;
4178       stop_stepping (ecs);
4179       return;
4180     }
4181
4182   /* This is originated from start_remote(), start_inferior() and
4183      shared libraries hook functions.  */
4184   if (stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_REMOTE)
4185     {
4186       if (debug_infrun)
4187         fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
4188       stop_stepping (ecs);
4189       return;
4190     }
4191
4192   /* This originates from attach_command().  We need to overwrite
4193      the stop_signal here, because some kernels don't ignore a
4194      SIGSTOP in a subsequent ptrace(PTRACE_CONT,SIGSTOP) call.
4195      See more comments in inferior.h.  On the other hand, if we
4196      get a non-SIGSTOP, report it to the user - assume the backend
4197      will handle the SIGSTOP if it should show up later.
4198
4199      Also consider that the attach is complete when we see a
4200      SIGTRAP.  Some systems (e.g. Windows), and stubs supporting
4201      target extended-remote report it instead of a SIGSTOP
4202      (e.g. gdbserver).  We already rely on SIGTRAP being our
4203      signal, so this is no exception.
4204
4205      Also consider that the attach is complete when we see a
4206      GDB_SIGNAL_0.  In non-stop mode, GDB will explicitly tell
4207      the target to stop all threads of the inferior, in case the
4208      low level attach operation doesn't stop them implicitly.  If
4209      they weren't stopped implicitly, then the stub will report a
4210      GDB_SIGNAL_0, meaning: stopped for no particular reason
4211      other than GDB's request.  */
4212   if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
4213       && (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_STOP
4214           || ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4215           || ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_0))
4216     {
4217       stop_stepping (ecs);
4218       ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
4219       return;
4220     }
4221
4222   /* See if there is a breakpoint/watchpoint/catchpoint/etc. that
4223      handles this event.  */
4224   ecs->event_thread->control.stop_bpstat
4225     = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
4226                           stop_pc, ecs->ptid, &ecs->ws);
4227
4228   /* Following in case break condition called a
4229      function.  */
4230   stop_print_frame = 1;
4231
4232   /* This is where we handle "moribund" watchpoints.  Unlike
4233      software breakpoints traps, hardware watchpoint traps are
4234      always distinguishable from random traps.  If no high-level
4235      watchpoint is associated with the reported stop data address
4236      anymore, then the bpstat does not explain the signal ---
4237      simply make sure to ignore it if `stopped_by_watchpoint' is
4238      set.  */
4239
4240   if (debug_infrun
4241       && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
4242       && (bpstat_explains_signal (ecs->event_thread->control.stop_bpstat)
4243           == BPSTAT_SIGNAL_NO)
4244       && stopped_by_watchpoint)
4245     fprintf_unfiltered (gdb_stdlog,
4246                         "infrun: no user watchpoint explains "
4247                         "watchpoint SIGTRAP, ignoring\n");
4248
4249   /* NOTE: cagney/2003-03-29: These two checks for a random signal
4250      at one stage in the past included checks for an inferior
4251      function call's call dummy's return breakpoint.  The original
4252      comment, that went with the test, read:
4253
4254      ``End of a stack dummy.  Some systems (e.g. Sony news) give
4255      another signal besides SIGTRAP, so check here as well as
4256      above.''
4257
4258      If someone ever tries to get call dummys on a
4259      non-executable stack to work (where the target would stop
4260      with something like a SIGSEGV), then those tests might need
4261      to be re-instated.  Given, however, that the tests were only
4262      enabled when momentary breakpoints were not being used, I
4263      suspect that it won't be the case.
4264
4265      NOTE: kettenis/2004-02-05: Indeed such checks don't seem to
4266      be necessary for call dummies on a non-executable stack on
4267      SPARC.  */
4268
4269   if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
4270     ecs->random_signal
4271       = !((bpstat_explains_signal (ecs->event_thread->control.stop_bpstat)
4272            != BPSTAT_SIGNAL_NO)
4273           || stopped_by_watchpoint
4274           || ecs->event_thread->control.trap_expected
4275           || (ecs->event_thread->control.step_range_end
4276               && (ecs->event_thread->control.step_resume_breakpoint
4277                   == NULL)));
4278   else
4279     {
4280       enum bpstat_signal_value sval;
4281
4282       sval = bpstat_explains_signal (ecs->event_thread->control.stop_bpstat);
4283       ecs->random_signal = (sval == BPSTAT_SIGNAL_NO);
4284
4285       if (sval == BPSTAT_SIGNAL_HIDE)
4286         ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_TRAP;
4287     }
4288
4289 process_event_stop_test:
4290
4291   /* Re-fetch current thread's frame in case we did a
4292      "goto process_event_stop_test" above.  */
4293   frame = get_current_frame ();
4294   gdbarch = get_frame_arch (frame);
4295
4296   /* For the program's own signals, act according to
4297      the signal handling tables.  */
4298
4299   if (ecs->random_signal)
4300     {
4301       /* Signal not for debugging purposes.  */
4302       int printed = 0;
4303       struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
4304
4305       if (debug_infrun)
4306          fprintf_unfiltered (gdb_stdlog, "infrun: random signal %d\n",
4307                              ecs->event_thread->suspend.stop_signal);
4308
4309       stopped_by_random_signal = 1;
4310
4311       if (signal_print[ecs->event_thread->suspend.stop_signal])
4312         {
4313           printed = 1;
4314           target_terminal_ours_for_output ();
4315           print_signal_received_reason
4316                                      (ecs->event_thread->suspend.stop_signal);
4317         }
4318       /* Always stop on signals if we're either just gaining control
4319          of the program, or the user explicitly requested this thread
4320          to remain stopped.  */
4321       if (stop_soon != NO_STOP_QUIETLY
4322           || ecs->event_thread->stop_requested
4323           || (!inf->detaching
4324               && signal_stop_state (ecs->event_thread->suspend.stop_signal)))
4325         {
4326           stop_stepping (ecs);
4327           return;
4328         }
4329       /* If not going to stop, give terminal back
4330          if we took it away.  */
4331       else if (printed)
4332         target_terminal_inferior ();
4333
4334       /* Clear the signal if it should not be passed.  */
4335       if (signal_program[ecs->event_thread->suspend.stop_signal] == 0)
4336         ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
4337
4338       if (ecs->event_thread->prev_pc == stop_pc
4339           && ecs->event_thread->control.trap_expected
4340           && ecs->event_thread->control.step_resume_breakpoint == NULL)
4341         {
4342           /* We were just starting a new sequence, attempting to
4343              single-step off of a breakpoint and expecting a SIGTRAP.
4344              Instead this signal arrives.  This signal will take us out
4345              of the stepping range so GDB needs to remember to, when
4346              the signal handler returns, resume stepping off that
4347              breakpoint.  */
4348           /* To simplify things, "continue" is forced to use the same
4349              code paths as single-step - set a breakpoint at the
4350              signal return address and then, once hit, step off that
4351              breakpoint.  */
4352           if (debug_infrun)
4353             fprintf_unfiltered (gdb_stdlog,
4354                                 "infrun: signal arrived while stepping over "
4355                                 "breakpoint\n");
4356
4357           insert_hp_step_resume_breakpoint_at_frame (frame);
4358           ecs->event_thread->step_after_step_resume_breakpoint = 1;
4359           /* Reset trap_expected to ensure breakpoints are re-inserted.  */
4360           ecs->event_thread->control.trap_expected = 0;
4361           keep_going (ecs);
4362           return;
4363         }
4364
4365       if (ecs->event_thread->control.step_range_end != 0
4366           && ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_0
4367           && pc_in_thread_step_range (stop_pc, ecs->event_thread)
4368           && frame_id_eq (get_stack_frame_id (frame),
4369                           ecs->event_thread->control.step_stack_frame_id)
4370           && ecs->event_thread->control.step_resume_breakpoint == NULL)
4371         {
4372           /* The inferior is about to take a signal that will take it
4373              out of the single step range.  Set a breakpoint at the
4374              current PC (which is presumably where the signal handler
4375              will eventually return) and then allow the inferior to
4376              run free.
4377
4378              Note that this is only needed for a signal delivered
4379              while in the single-step range.  Nested signals aren't a
4380              problem as they eventually all return.  */
4381           if (debug_infrun)
4382             fprintf_unfiltered (gdb_stdlog,
4383                                 "infrun: signal may take us out of "
4384                                 "single-step range\n");
4385
4386           insert_hp_step_resume_breakpoint_at_frame (frame);
4387           /* Reset trap_expected to ensure breakpoints are re-inserted.  */
4388           ecs->event_thread->control.trap_expected = 0;
4389           keep_going (ecs);
4390           return;
4391         }
4392
4393       /* Note: step_resume_breakpoint may be non-NULL.  This occures
4394          when either there's a nested signal, or when there's a
4395          pending signal enabled just as the signal handler returns
4396          (leaving the inferior at the step-resume-breakpoint without
4397          actually executing it).  Either way continue until the
4398          breakpoint is really hit.  */
4399     }
4400   else
4401     {
4402       /* Handle cases caused by hitting a breakpoint.  */
4403
4404       CORE_ADDR jmp_buf_pc;
4405       struct bpstat_what what;
4406
4407       what = bpstat_what (ecs->event_thread->control.stop_bpstat);
4408
4409       if (what.call_dummy)
4410         {
4411           stop_stack_dummy = what.call_dummy;
4412         }
4413
4414       /* If we hit an internal event that triggers symbol changes, the
4415          current frame will be invalidated within bpstat_what (e.g.,
4416          if we hit an internal solib event).  Re-fetch it.  */
4417       frame = get_current_frame ();
4418       gdbarch = get_frame_arch (frame);
4419
4420       switch (what.main_action)
4421         {
4422         case BPSTAT_WHAT_SET_LONGJMP_RESUME:
4423           /* If we hit the breakpoint at longjmp while stepping, we
4424              install a momentary breakpoint at the target of the
4425              jmp_buf.  */
4426
4427           if (debug_infrun)
4428             fprintf_unfiltered (gdb_stdlog,
4429                                 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME\n");
4430
4431           ecs->event_thread->stepping_over_breakpoint = 1;
4432
4433           if (what.is_longjmp)
4434             {
4435               struct value *arg_value;
4436
4437               /* If we set the longjmp breakpoint via a SystemTap
4438                  probe, then use it to extract the arguments.  The
4439                  destination PC is the third argument to the
4440                  probe.  */
4441               arg_value = probe_safe_evaluate_at_pc (frame, 2);
4442               if (arg_value)
4443                 jmp_buf_pc = value_as_address (arg_value);
4444               else if (!gdbarch_get_longjmp_target_p (gdbarch)
4445                        || !gdbarch_get_longjmp_target (gdbarch,
4446                                                        frame, &jmp_buf_pc))
4447                 {
4448                   if (debug_infrun)
4449                     fprintf_unfiltered (gdb_stdlog,
4450                                         "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME "
4451                                         "(!gdbarch_get_longjmp_target)\n");
4452                   keep_going (ecs);
4453                   return;
4454                 }
4455
4456               /* Insert a breakpoint at resume address.  */
4457               insert_longjmp_resume_breakpoint (gdbarch, jmp_buf_pc);
4458             }
4459           else
4460             check_exception_resume (ecs, frame);
4461           keep_going (ecs);
4462           return;
4463
4464         case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
4465           {
4466             struct frame_info *init_frame;
4467
4468             /* There are several cases to consider.
4469
4470                1. The initiating frame no longer exists.  In this case
4471                we must stop, because the exception or longjmp has gone
4472                too far.
4473
4474                2. The initiating frame exists, and is the same as the
4475                current frame.  We stop, because the exception or
4476                longjmp has been caught.
4477
4478                3. The initiating frame exists and is different from
4479                the current frame.  This means the exception or longjmp
4480                has been caught beneath the initiating frame, so keep
4481                going.
4482
4483                4. longjmp breakpoint has been placed just to protect
4484                against stale dummy frames and user is not interested
4485                in stopping around longjmps.  */
4486
4487             if (debug_infrun)
4488               fprintf_unfiltered (gdb_stdlog,
4489                                   "infrun: BPSTAT_WHAT_CLEAR_LONGJMP_RESUME\n");
4490
4491             gdb_assert (ecs->event_thread->control.exception_resume_breakpoint
4492                         != NULL);
4493             delete_exception_resume_breakpoint (ecs->event_thread);
4494
4495             if (what.is_longjmp)
4496               {
4497                 check_longjmp_breakpoint_for_call_dummy (ecs->event_thread->num);
4498
4499                 if (!frame_id_p (ecs->event_thread->initiating_frame))
4500                   {
4501                     /* Case 4.  */
4502                     keep_going (ecs);
4503                     return;
4504                   }
4505               }
4506
4507             init_frame = frame_find_by_id (ecs->event_thread->initiating_frame);
4508
4509             if (init_frame)
4510               {
4511                 struct frame_id current_id
4512                   = get_frame_id (get_current_frame ());
4513                 if (frame_id_eq (current_id,
4514                                  ecs->event_thread->initiating_frame))
4515                   {
4516                     /* Case 2.  Fall through.  */
4517                   }
4518                 else
4519                   {
4520                     /* Case 3.  */
4521                     keep_going (ecs);
4522                     return;
4523                   }
4524               }
4525
4526             /* For Cases 1 and 2, remove the step-resume breakpoint,
4527                if it exists.  */
4528             delete_step_resume_breakpoint (ecs->event_thread);
4529
4530             ecs->event_thread->control.stop_step = 1;
4531             print_end_stepping_range_reason ();
4532             stop_stepping (ecs);
4533           }
4534           return;
4535
4536         case BPSTAT_WHAT_SINGLE:
4537           if (debug_infrun)
4538             fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_SINGLE\n");
4539           ecs->event_thread->stepping_over_breakpoint = 1;
4540           /* Still need to check other stuff, at least the case where
4541              we are stepping and step out of the right range.  */
4542           break;
4543
4544         case BPSTAT_WHAT_STEP_RESUME:
4545           if (debug_infrun)
4546             fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STEP_RESUME\n");
4547
4548           delete_step_resume_breakpoint (ecs->event_thread);
4549           if (ecs->event_thread->control.proceed_to_finish
4550               && execution_direction == EXEC_REVERSE)
4551             {
4552               struct thread_info *tp = ecs->event_thread;
4553
4554               /* We are finishing a function in reverse, and just hit
4555                  the step-resume breakpoint at the start address of
4556                  the function, and we're almost there -- just need to
4557                  back up by one more single-step, which should take us
4558                  back to the function call.  */
4559               tp->control.step_range_start = tp->control.step_range_end = 1;
4560               keep_going (ecs);
4561               return;
4562             }
4563           fill_in_stop_func (gdbarch, ecs);
4564           if (stop_pc == ecs->stop_func_start
4565               && execution_direction == EXEC_REVERSE)
4566             {
4567               /* We are stepping over a function call in reverse, and
4568                  just hit the step-resume breakpoint at the start
4569                  address of the function.  Go back to single-stepping,
4570                  which should take us back to the function call.  */
4571               ecs->event_thread->stepping_over_breakpoint = 1;
4572               keep_going (ecs);
4573               return;
4574             }
4575           break;
4576
4577         case BPSTAT_WHAT_STOP_NOISY:
4578           if (debug_infrun)
4579             fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_NOISY\n");
4580           stop_print_frame = 1;
4581
4582           /* We are about to nuke the step_resume_breakpointt via the
4583              cleanup chain, so no need to worry about it here.  */
4584
4585           stop_stepping (ecs);
4586           return;
4587
4588         case BPSTAT_WHAT_STOP_SILENT:
4589           if (debug_infrun)
4590             fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_SILENT\n");
4591           stop_print_frame = 0;
4592
4593           /* We are about to nuke the step_resume_breakpoin via the
4594              cleanup chain, so no need to worry about it here.  */
4595
4596           stop_stepping (ecs);
4597           return;
4598
4599         case BPSTAT_WHAT_HP_STEP_RESUME:
4600           if (debug_infrun)
4601             fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_HP_STEP_RESUME\n");
4602
4603           delete_step_resume_breakpoint (ecs->event_thread);
4604           if (ecs->event_thread->step_after_step_resume_breakpoint)
4605             {
4606               /* Back when the step-resume breakpoint was inserted, we
4607                  were trying to single-step off a breakpoint.  Go back
4608                  to doing that.  */
4609               ecs->event_thread->step_after_step_resume_breakpoint = 0;
4610               ecs->event_thread->stepping_over_breakpoint = 1;
4611               keep_going (ecs);
4612               return;
4613             }
4614           break;
4615
4616         case BPSTAT_WHAT_KEEP_CHECKING:
4617           break;
4618         }
4619     }
4620
4621   /* We come here if we hit a breakpoint but should not
4622      stop for it.  Possibly we also were stepping
4623      and should stop for that.  So fall through and
4624      test for stepping.  But, if not stepping,
4625      do not stop.  */
4626
4627   /* In all-stop mode, if we're currently stepping but have stopped in
4628      some other thread, we need to switch back to the stepped thread.  */
4629   if (!non_stop)
4630     {
4631       struct thread_info *tp;
4632
4633       tp = iterate_over_threads (currently_stepping_or_nexting_callback,
4634                                  ecs->event_thread);
4635       if (tp)
4636         {
4637           /* However, if the current thread is blocked on some internal
4638              breakpoint, and we simply need to step over that breakpoint
4639              to get it going again, do that first.  */
4640           if ((ecs->event_thread->control.trap_expected
4641                && ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_TRAP)
4642               || ecs->event_thread->stepping_over_breakpoint)
4643             {
4644               keep_going (ecs);
4645               return;
4646             }
4647
4648           /* If the stepping thread exited, then don't try to switch
4649              back and resume it, which could fail in several different
4650              ways depending on the target.  Instead, just keep going.
4651
4652              We can find a stepping dead thread in the thread list in
4653              two cases:
4654
4655              - The target supports thread exit events, and when the
4656              target tries to delete the thread from the thread list,
4657              inferior_ptid pointed at the exiting thread.  In such
4658              case, calling delete_thread does not really remove the
4659              thread from the list; instead, the thread is left listed,
4660              with 'exited' state.
4661
4662              - The target's debug interface does not support thread
4663              exit events, and so we have no idea whatsoever if the
4664              previously stepping thread is still alive.  For that
4665              reason, we need to synchronously query the target
4666              now.  */
4667           if (is_exited (tp->ptid)
4668               || !target_thread_alive (tp->ptid))
4669             {
4670               if (debug_infrun)
4671                 fprintf_unfiltered (gdb_stdlog,
4672                                     "infrun: not switching back to "
4673                                     "stepped thread, it has vanished\n");
4674
4675               delete_thread (tp->ptid);
4676               keep_going (ecs);
4677               return;
4678             }
4679
4680           /* Otherwise, we no longer expect a trap in the current thread.
4681              Clear the trap_expected flag before switching back -- this is
4682              what keep_going would do as well, if we called it.  */
4683           ecs->event_thread->control.trap_expected = 0;
4684
4685           if (debug_infrun)
4686             fprintf_unfiltered (gdb_stdlog,
4687                                 "infrun: switching back to stepped thread\n");
4688
4689           ecs->event_thread = tp;
4690           ecs->ptid = tp->ptid;
4691           context_switch (ecs->ptid);
4692           keep_going (ecs);
4693           return;
4694         }
4695     }
4696
4697   if (ecs->event_thread->control.step_resume_breakpoint)
4698     {
4699       if (debug_infrun)
4700          fprintf_unfiltered (gdb_stdlog,
4701                              "infrun: step-resume breakpoint is inserted\n");
4702
4703       /* Having a step-resume breakpoint overrides anything
4704          else having to do with stepping commands until
4705          that breakpoint is reached.  */
4706       keep_going (ecs);
4707       return;
4708     }
4709
4710   if (ecs->event_thread->control.step_range_end == 0)
4711     {
4712       if (debug_infrun)
4713          fprintf_unfiltered (gdb_stdlog, "infrun: no stepping, continue\n");
4714       /* Likewise if we aren't even stepping.  */
4715       keep_going (ecs);
4716       return;
4717     }
4718
4719   /* Re-fetch current thread's frame in case the code above caused
4720      the frame cache to be re-initialized, making our FRAME variable
4721      a dangling pointer.  */
4722   frame = get_current_frame ();
4723   gdbarch = get_frame_arch (frame);
4724   fill_in_stop_func (gdbarch, ecs);
4725
4726   /* If stepping through a line, keep going if still within it.
4727
4728      Note that step_range_end is the address of the first instruction
4729      beyond the step range, and NOT the address of the last instruction
4730      within it!
4731
4732      Note also that during reverse execution, we may be stepping
4733      through a function epilogue and therefore must detect when
4734      the current-frame changes in the middle of a line.  */
4735
4736   if (pc_in_thread_step_range (stop_pc, ecs->event_thread)
4737       && (execution_direction != EXEC_REVERSE
4738           || frame_id_eq (get_frame_id (frame),
4739                           ecs->event_thread->control.step_frame_id)))
4740     {
4741       if (debug_infrun)
4742         fprintf_unfiltered
4743           (gdb_stdlog, "infrun: stepping inside range [%s-%s]\n",
4744            paddress (gdbarch, ecs->event_thread->control.step_range_start),
4745            paddress (gdbarch, ecs->event_thread->control.step_range_end));
4746
4747       /* Tentatively re-enable range stepping; `resume' disables it if
4748          necessary (e.g., if we're stepping over a breakpoint or we
4749          have software watchpoints).  */
4750       ecs->event_thread->control.may_range_step = 1;
4751
4752       /* When stepping backward, stop at beginning of line range
4753          (unless it's the function entry point, in which case
4754          keep going back to the call point).  */
4755       if (stop_pc == ecs->event_thread->control.step_range_start
4756           && stop_pc != ecs->stop_func_start
4757           && execution_direction == EXEC_REVERSE)
4758         {
4759           ecs->event_thread->control.stop_step = 1;
4760           print_end_stepping_range_reason ();
4761           stop_stepping (ecs);
4762         }
4763       else
4764         keep_going (ecs);
4765
4766       return;
4767     }
4768
4769   /* We stepped out of the stepping range.  */
4770
4771   /* If we are stepping at the source level and entered the runtime
4772      loader dynamic symbol resolution code...
4773
4774      EXEC_FORWARD: we keep on single stepping until we exit the run
4775      time loader code and reach the callee's address.
4776
4777      EXEC_REVERSE: we've already executed the callee (backward), and
4778      the runtime loader code is handled just like any other
4779      undebuggable function call.  Now we need only keep stepping
4780      backward through the trampoline code, and that's handled further
4781      down, so there is nothing for us to do here.  */
4782
4783   if (execution_direction != EXEC_REVERSE
4784       && ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
4785       && in_solib_dynsym_resolve_code (stop_pc))
4786     {
4787       CORE_ADDR pc_after_resolver =
4788         gdbarch_skip_solib_resolver (gdbarch, stop_pc);
4789
4790       if (debug_infrun)
4791          fprintf_unfiltered (gdb_stdlog,
4792                              "infrun: stepped into dynsym resolve code\n");
4793
4794       if (pc_after_resolver)
4795         {
4796           /* Set up a step-resume breakpoint at the address
4797              indicated by SKIP_SOLIB_RESOLVER.  */
4798           struct symtab_and_line sr_sal;
4799
4800           init_sal (&sr_sal);
4801           sr_sal.pc = pc_after_resolver;
4802           sr_sal.pspace = get_frame_program_space (frame);
4803
4804           insert_step_resume_breakpoint_at_sal (gdbarch,
4805                                                 sr_sal, null_frame_id);
4806         }
4807
4808       keep_going (ecs);
4809       return;
4810     }
4811
4812   if (ecs->event_thread->control.step_range_end != 1
4813       && (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
4814           || ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
4815       && get_frame_type (frame) == SIGTRAMP_FRAME)
4816     {
4817       if (debug_infrun)
4818          fprintf_unfiltered (gdb_stdlog,
4819                              "infrun: stepped into signal trampoline\n");
4820       /* The inferior, while doing a "step" or "next", has ended up in
4821          a signal trampoline (either by a signal being delivered or by
4822          the signal handler returning).  Just single-step until the
4823          inferior leaves the trampoline (either by calling the handler
4824          or returning).  */
4825       keep_going (ecs);
4826       return;
4827     }
4828
4829   /* If we're in the return path from a shared library trampoline,
4830      we want to proceed through the trampoline when stepping.  */
4831   /* macro/2012-04-25: This needs to come before the subroutine
4832      call check below as on some targets return trampolines look
4833      like subroutine calls (MIPS16 return thunks).  */
4834   if (gdbarch_in_solib_return_trampoline (gdbarch,
4835                                           stop_pc, ecs->stop_func_name)
4836       && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
4837     {
4838       /* Determine where this trampoline returns.  */
4839       CORE_ADDR real_stop_pc;
4840
4841       real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
4842
4843       if (debug_infrun)
4844          fprintf_unfiltered (gdb_stdlog,
4845                              "infrun: stepped into solib return tramp\n");
4846
4847       /* Only proceed through if we know where it's going.  */
4848       if (real_stop_pc)
4849         {
4850           /* And put the step-breakpoint there and go until there.  */
4851           struct symtab_and_line sr_sal;
4852
4853           init_sal (&sr_sal);   /* initialize to zeroes */
4854           sr_sal.pc = real_stop_pc;
4855           sr_sal.section = find_pc_overlay (sr_sal.pc);
4856           sr_sal.pspace = get_frame_program_space (frame);
4857
4858           /* Do not specify what the fp should be when we stop since
4859              on some machines the prologue is where the new fp value
4860              is established.  */
4861           insert_step_resume_breakpoint_at_sal (gdbarch,
4862                                                 sr_sal, null_frame_id);
4863
4864           /* Restart without fiddling with the step ranges or
4865              other state.  */
4866           keep_going (ecs);
4867           return;
4868         }
4869     }
4870
4871   /* Check for subroutine calls.  The check for the current frame
4872      equalling the step ID is not necessary - the check of the
4873      previous frame's ID is sufficient - but it is a common case and
4874      cheaper than checking the previous frame's ID.
4875
4876      NOTE: frame_id_eq will never report two invalid frame IDs as
4877      being equal, so to get into this block, both the current and
4878      previous frame must have valid frame IDs.  */
4879   /* The outer_frame_id check is a heuristic to detect stepping
4880      through startup code.  If we step over an instruction which
4881      sets the stack pointer from an invalid value to a valid value,
4882      we may detect that as a subroutine call from the mythical
4883      "outermost" function.  This could be fixed by marking
4884      outermost frames as !stack_p,code_p,special_p.  Then the
4885      initial outermost frame, before sp was valid, would
4886      have code_addr == &_start.  See the comment in frame_id_eq
4887      for more.  */
4888   if (!frame_id_eq (get_stack_frame_id (frame),
4889                     ecs->event_thread->control.step_stack_frame_id)
4890       && (frame_id_eq (frame_unwind_caller_id (get_current_frame ()),
4891                        ecs->event_thread->control.step_stack_frame_id)
4892           && (!frame_id_eq (ecs->event_thread->control.step_stack_frame_id,
4893                             outer_frame_id)
4894               || step_start_function != find_pc_function (stop_pc))))
4895     {
4896       CORE_ADDR real_stop_pc;
4897
4898       if (debug_infrun)
4899          fprintf_unfiltered (gdb_stdlog, "infrun: stepped into subroutine\n");
4900
4901       if ((ecs->event_thread->control.step_over_calls == STEP_OVER_NONE)
4902           || ((ecs->event_thread->control.step_range_end == 1)
4903               && in_prologue (gdbarch, ecs->event_thread->prev_pc,
4904                               ecs->stop_func_start)))
4905         {
4906           /* I presume that step_over_calls is only 0 when we're
4907              supposed to be stepping at the assembly language level
4908              ("stepi").  Just stop.  */
4909           /* Also, maybe we just did a "nexti" inside a prolog, so we
4910              thought it was a subroutine call but it was not.  Stop as
4911              well.  FENN */
4912           /* And this works the same backward as frontward.  MVS */
4913           ecs->event_thread->control.stop_step = 1;
4914           print_end_stepping_range_reason ();
4915           stop_stepping (ecs);
4916           return;
4917         }
4918
4919       /* Reverse stepping through solib trampolines.  */
4920
4921       if (execution_direction == EXEC_REVERSE
4922           && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE
4923           && (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
4924               || (ecs->stop_func_start == 0
4925                   && in_solib_dynsym_resolve_code (stop_pc))))
4926         {
4927           /* Any solib trampoline code can be handled in reverse
4928              by simply continuing to single-step.  We have already
4929              executed the solib function (backwards), and a few 
4930              steps will take us back through the trampoline to the
4931              caller.  */
4932           keep_going (ecs);
4933           return;
4934         }
4935
4936       if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
4937         {
4938           /* We're doing a "next".
4939
4940              Normal (forward) execution: set a breakpoint at the
4941              callee's return address (the address at which the caller
4942              will resume).
4943
4944              Reverse (backward) execution.  set the step-resume
4945              breakpoint at the start of the function that we just
4946              stepped into (backwards), and continue to there.  When we
4947              get there, we'll need to single-step back to the caller.  */
4948
4949           if (execution_direction == EXEC_REVERSE)
4950             {
4951               /* If we're already at the start of the function, we've either
4952                  just stepped backward into a single instruction function,
4953                  or stepped back out of a signal handler to the first instruction
4954                  of the function.  Just keep going, which will single-step back
4955                  to the caller.  */
4956               if (ecs->stop_func_start != stop_pc)
4957                 {
4958                   struct symtab_and_line sr_sal;
4959
4960                   /* Normal function call return (static or dynamic).  */
4961                   init_sal (&sr_sal);
4962                   sr_sal.pc = ecs->stop_func_start;
4963                   sr_sal.pspace = get_frame_program_space (frame);
4964                   insert_step_resume_breakpoint_at_sal (gdbarch,
4965                                                         sr_sal, null_frame_id);
4966                 }
4967             }
4968           else
4969             insert_step_resume_breakpoint_at_caller (frame);
4970
4971           keep_going (ecs);
4972           return;
4973         }
4974
4975       /* If we are in a function call trampoline (a stub between the
4976          calling routine and the real function), locate the real
4977          function.  That's what tells us (a) whether we want to step
4978          into it at all, and (b) what prologue we want to run to the
4979          end of, if we do step into it.  */
4980       real_stop_pc = skip_language_trampoline (frame, stop_pc);
4981       if (real_stop_pc == 0)
4982         real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
4983       if (real_stop_pc != 0)
4984         ecs->stop_func_start = real_stop_pc;
4985
4986       if (real_stop_pc != 0 && in_solib_dynsym_resolve_code (real_stop_pc))
4987         {
4988           struct symtab_and_line sr_sal;
4989
4990           init_sal (&sr_sal);
4991           sr_sal.pc = ecs->stop_func_start;
4992           sr_sal.pspace = get_frame_program_space (frame);
4993
4994           insert_step_resume_breakpoint_at_sal (gdbarch,
4995                                                 sr_sal, null_frame_id);
4996           keep_going (ecs);
4997           return;
4998         }
4999
5000       /* If we have line number information for the function we are
5001          thinking of stepping into and the function isn't on the skip
5002          list, step into it.
5003
5004          If there are several symtabs at that PC (e.g. with include
5005          files), just want to know whether *any* of them have line
5006          numbers.  find_pc_line handles this.  */
5007       {
5008         struct symtab_and_line tmp_sal;
5009
5010         tmp_sal = find_pc_line (ecs->stop_func_start, 0);
5011         if (tmp_sal.line != 0
5012             && !function_name_is_marked_for_skip (ecs->stop_func_name,
5013                                                   &tmp_sal))
5014           {
5015             if (execution_direction == EXEC_REVERSE)
5016               handle_step_into_function_backward (gdbarch, ecs);
5017             else
5018               handle_step_into_function (gdbarch, ecs);
5019             return;
5020           }
5021       }
5022
5023       /* If we have no line number and the step-stop-if-no-debug is
5024          set, we stop the step so that the user has a chance to switch
5025          in assembly mode.  */
5026       if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
5027           && step_stop_if_no_debug)
5028         {
5029           ecs->event_thread->control.stop_step = 1;
5030           print_end_stepping_range_reason ();
5031           stop_stepping (ecs);
5032           return;
5033         }
5034
5035       if (execution_direction == EXEC_REVERSE)
5036         {
5037           /* If we're already at the start of the function, we've either just
5038              stepped backward into a single instruction function without line
5039              number info, or stepped back out of a signal handler to the first
5040              instruction of the function without line number info.  Just keep
5041              going, which will single-step back to the caller.  */
5042           if (ecs->stop_func_start != stop_pc)
5043             {
5044               /* Set a breakpoint at callee's start address.
5045                  From there we can step once and be back in the caller.  */
5046               struct symtab_and_line sr_sal;
5047
5048               init_sal (&sr_sal);
5049               sr_sal.pc = ecs->stop_func_start;
5050               sr_sal.pspace = get_frame_program_space (frame);
5051               insert_step_resume_breakpoint_at_sal (gdbarch,
5052                                                     sr_sal, null_frame_id);
5053             }
5054         }
5055       else
5056         /* Set a breakpoint at callee's return address (the address
5057            at which the caller will resume).  */
5058         insert_step_resume_breakpoint_at_caller (frame);
5059
5060       keep_going (ecs);
5061       return;
5062     }
5063
5064   /* Reverse stepping through solib trampolines.  */
5065
5066   if (execution_direction == EXEC_REVERSE
5067       && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
5068     {
5069       if (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
5070           || (ecs->stop_func_start == 0
5071               && in_solib_dynsym_resolve_code (stop_pc)))
5072         {
5073           /* Any solib trampoline code can be handled in reverse
5074              by simply continuing to single-step.  We have already
5075              executed the solib function (backwards), and a few 
5076              steps will take us back through the trampoline to the
5077              caller.  */
5078           keep_going (ecs);
5079           return;
5080         }
5081       else if (in_solib_dynsym_resolve_code (stop_pc))
5082         {
5083           /* Stepped backward into the solib dynsym resolver.
5084              Set a breakpoint at its start and continue, then
5085              one more step will take us out.  */
5086           struct symtab_and_line sr_sal;
5087
5088           init_sal (&sr_sal);
5089           sr_sal.pc = ecs->stop_func_start;
5090           sr_sal.pspace = get_frame_program_space (frame);
5091           insert_step_resume_breakpoint_at_sal (gdbarch, 
5092                                                 sr_sal, null_frame_id);
5093           keep_going (ecs);
5094           return;
5095         }
5096     }
5097
5098   stop_pc_sal = find_pc_line (stop_pc, 0);
5099
5100   /* NOTE: tausq/2004-05-24: This if block used to be done before all
5101      the trampoline processing logic, however, there are some trampolines 
5102      that have no names, so we should do trampoline handling first.  */
5103   if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
5104       && ecs->stop_func_name == NULL
5105       && stop_pc_sal.line == 0)
5106     {
5107       if (debug_infrun)
5108          fprintf_unfiltered (gdb_stdlog,
5109                              "infrun: stepped into undebuggable function\n");
5110
5111       /* The inferior just stepped into, or returned to, an
5112          undebuggable function (where there is no debugging information
5113          and no line number corresponding to the address where the
5114          inferior stopped).  Since we want to skip this kind of code,
5115          we keep going until the inferior returns from this
5116          function - unless the user has asked us not to (via
5117          set step-mode) or we no longer know how to get back
5118          to the call site.  */
5119       if (step_stop_if_no_debug
5120           || !frame_id_p (frame_unwind_caller_id (frame)))
5121         {
5122           /* If we have no line number and the step-stop-if-no-debug
5123              is set, we stop the step so that the user has a chance to
5124              switch in assembly mode.  */
5125           ecs->event_thread->control.stop_step = 1;
5126           print_end_stepping_range_reason ();
5127           stop_stepping (ecs);
5128           return;
5129         }
5130       else
5131         {
5132           /* Set a breakpoint at callee's return address (the address
5133              at which the caller will resume).  */
5134           insert_step_resume_breakpoint_at_caller (frame);
5135           keep_going (ecs);
5136           return;
5137         }
5138     }
5139
5140   if (ecs->event_thread->control.step_range_end == 1)
5141     {
5142       /* It is stepi or nexti.  We always want to stop stepping after
5143          one instruction.  */
5144       if (debug_infrun)
5145          fprintf_unfiltered (gdb_stdlog, "infrun: stepi/nexti\n");
5146       ecs->event_thread->control.stop_step = 1;
5147       print_end_stepping_range_reason ();
5148       stop_stepping (ecs);
5149       return;
5150     }
5151
5152   if (stop_pc_sal.line == 0)
5153     {
5154       /* We have no line number information.  That means to stop
5155          stepping (does this always happen right after one instruction,
5156          when we do "s" in a function with no line numbers,
5157          or can this happen as a result of a return or longjmp?).  */
5158       if (debug_infrun)
5159          fprintf_unfiltered (gdb_stdlog, "infrun: no line number info\n");
5160       ecs->event_thread->control.stop_step = 1;
5161       print_end_stepping_range_reason ();
5162       stop_stepping (ecs);
5163       return;
5164     }
5165
5166   /* Look for "calls" to inlined functions, part one.  If the inline
5167      frame machinery detected some skipped call sites, we have entered
5168      a new inline function.  */
5169
5170   if (frame_id_eq (get_frame_id (get_current_frame ()),
5171                    ecs->event_thread->control.step_frame_id)
5172       && inline_skipped_frames (ecs->ptid))
5173     {
5174       struct symtab_and_line call_sal;
5175
5176       if (debug_infrun)
5177         fprintf_unfiltered (gdb_stdlog,
5178                             "infrun: stepped into inlined function\n");
5179
5180       find_frame_sal (get_current_frame (), &call_sal);
5181
5182       if (ecs->event_thread->control.step_over_calls != STEP_OVER_ALL)
5183         {
5184           /* For "step", we're going to stop.  But if the call site
5185              for this inlined function is on the same source line as
5186              we were previously stepping, go down into the function
5187              first.  Otherwise stop at the call site.  */
5188
5189           if (call_sal.line == ecs->event_thread->current_line
5190               && call_sal.symtab == ecs->event_thread->current_symtab)
5191             step_into_inline_frame (ecs->ptid);
5192
5193           ecs->event_thread->control.stop_step = 1;
5194           print_end_stepping_range_reason ();
5195           stop_stepping (ecs);
5196           return;
5197         }
5198       else
5199         {
5200           /* For "next", we should stop at the call site if it is on a
5201              different source line.  Otherwise continue through the
5202              inlined function.  */
5203           if (call_sal.line == ecs->event_thread->current_line
5204               && call_sal.symtab == ecs->event_thread->current_symtab)
5205             keep_going (ecs);
5206           else
5207             {
5208               ecs->event_thread->control.stop_step = 1;
5209               print_end_stepping_range_reason ();
5210               stop_stepping (ecs);
5211             }
5212           return;
5213         }
5214     }
5215
5216   /* Look for "calls" to inlined functions, part two.  If we are still
5217      in the same real function we were stepping through, but we have
5218      to go further up to find the exact frame ID, we are stepping
5219      through a more inlined call beyond its call site.  */
5220
5221   if (get_frame_type (get_current_frame ()) == INLINE_FRAME
5222       && !frame_id_eq (get_frame_id (get_current_frame ()),
5223                        ecs->event_thread->control.step_frame_id)
5224       && stepped_in_from (get_current_frame (),
5225                           ecs->event_thread->control.step_frame_id))
5226     {
5227       if (debug_infrun)
5228         fprintf_unfiltered (gdb_stdlog,
5229                             "infrun: stepping through inlined function\n");
5230
5231       if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
5232         keep_going (ecs);
5233       else
5234         {
5235           ecs->event_thread->control.stop_step = 1;
5236           print_end_stepping_range_reason ();
5237           stop_stepping (ecs);
5238         }
5239       return;
5240     }
5241
5242   if ((stop_pc == stop_pc_sal.pc)
5243       && (ecs->event_thread->current_line != stop_pc_sal.line
5244           || ecs->event_thread->current_symtab != stop_pc_sal.symtab))
5245     {
5246       /* We are at the start of a different line.  So stop.  Note that
5247          we don't stop if we step into the middle of a different line.
5248          That is said to make things like for (;;) statements work
5249          better.  */
5250       if (debug_infrun)
5251          fprintf_unfiltered (gdb_stdlog,
5252                              "infrun: stepped to a different line\n");
5253       ecs->event_thread->control.stop_step = 1;
5254       print_end_stepping_range_reason ();
5255       stop_stepping (ecs);
5256       return;
5257     }
5258
5259   /* We aren't done stepping.
5260
5261      Optimize by setting the stepping range to the line.
5262      (We might not be in the original line, but if we entered a
5263      new line in mid-statement, we continue stepping.  This makes
5264      things like for(;;) statements work better.)  */
5265
5266   ecs->event_thread->control.step_range_start = stop_pc_sal.pc;
5267   ecs->event_thread->control.step_range_end = stop_pc_sal.end;
5268   ecs->event_thread->control.may_range_step = 1;
5269   set_step_info (frame, stop_pc_sal);
5270
5271   if (debug_infrun)
5272      fprintf_unfiltered (gdb_stdlog, "infrun: keep going\n");
5273   keep_going (ecs);
5274 }
5275
5276 /* Is thread TP in the middle of single-stepping?  */
5277
5278 static int
5279 currently_stepping (struct thread_info *tp)
5280 {
5281   return ((tp->control.step_range_end
5282            && tp->control.step_resume_breakpoint == NULL)
5283           || tp->control.trap_expected
5284           || bpstat_should_step ());
5285 }
5286
5287 /* Returns true if any thread *but* the one passed in "data" is in the
5288    middle of stepping or of handling a "next".  */
5289
5290 static int
5291 currently_stepping_or_nexting_callback (struct thread_info *tp, void *data)
5292 {
5293   if (tp == data)
5294     return 0;
5295
5296   return (tp->control.step_range_end
5297           || tp->control.trap_expected);
5298 }
5299
5300 /* Inferior has stepped into a subroutine call with source code that
5301    we should not step over.  Do step to the first line of code in
5302    it.  */
5303
5304 static void
5305 handle_step_into_function (struct gdbarch *gdbarch,
5306                            struct execution_control_state *ecs)
5307 {
5308   struct symtab *s;
5309   struct symtab_and_line stop_func_sal, sr_sal;
5310
5311   fill_in_stop_func (gdbarch, ecs);
5312
5313   s = find_pc_symtab (stop_pc);
5314   if (s && s->language != language_asm)
5315     ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
5316                                                   ecs->stop_func_start);
5317
5318   stop_func_sal = find_pc_line (ecs->stop_func_start, 0);
5319   /* Use the step_resume_break to step until the end of the prologue,
5320      even if that involves jumps (as it seems to on the vax under
5321      4.2).  */
5322   /* If the prologue ends in the middle of a source line, continue to
5323      the end of that source line (if it is still within the function).
5324      Otherwise, just go to end of prologue.  */
5325   if (stop_func_sal.end
5326       && stop_func_sal.pc != ecs->stop_func_start
5327       && stop_func_sal.end < ecs->stop_func_end)
5328     ecs->stop_func_start = stop_func_sal.end;
5329
5330   /* Architectures which require breakpoint adjustment might not be able
5331      to place a breakpoint at the computed address.  If so, the test
5332      ``ecs->stop_func_start == stop_pc'' will never succeed.  Adjust
5333      ecs->stop_func_start to an address at which a breakpoint may be
5334      legitimately placed.
5335
5336      Note:  kevinb/2004-01-19:  On FR-V, if this adjustment is not
5337      made, GDB will enter an infinite loop when stepping through
5338      optimized code consisting of VLIW instructions which contain
5339      subinstructions corresponding to different source lines.  On
5340      FR-V, it's not permitted to place a breakpoint on any but the
5341      first subinstruction of a VLIW instruction.  When a breakpoint is
5342      set, GDB will adjust the breakpoint address to the beginning of
5343      the VLIW instruction.  Thus, we need to make the corresponding
5344      adjustment here when computing the stop address.  */
5345
5346   if (gdbarch_adjust_breakpoint_address_p (gdbarch))
5347     {
5348       ecs->stop_func_start
5349         = gdbarch_adjust_breakpoint_address (gdbarch,
5350                                              ecs->stop_func_start);
5351     }
5352
5353   if (ecs->stop_func_start == stop_pc)
5354     {
5355       /* We are already there: stop now.  */
5356       ecs->event_thread->control.stop_step = 1;
5357       print_end_stepping_range_reason ();
5358       stop_stepping (ecs);
5359       return;
5360     }
5361   else
5362     {
5363       /* Put the step-breakpoint there and go until there.  */
5364       init_sal (&sr_sal);       /* initialize to zeroes */
5365       sr_sal.pc = ecs->stop_func_start;
5366       sr_sal.section = find_pc_overlay (ecs->stop_func_start);
5367       sr_sal.pspace = get_frame_program_space (get_current_frame ());
5368
5369       /* Do not specify what the fp should be when we stop since on
5370          some machines the prologue is where the new fp value is
5371          established.  */
5372       insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal, null_frame_id);
5373
5374       /* And make sure stepping stops right away then.  */
5375       ecs->event_thread->control.step_range_end
5376         = ecs->event_thread->control.step_range_start;
5377     }
5378   keep_going (ecs);
5379 }
5380
5381 /* Inferior has stepped backward into a subroutine call with source
5382    code that we should not step over.  Do step to the beginning of the
5383    last line of code in it.  */
5384
5385 static void
5386 handle_step_into_function_backward (struct gdbarch *gdbarch,
5387                                     struct execution_control_state *ecs)
5388 {
5389   struct symtab *s;
5390   struct symtab_and_line stop_func_sal;
5391
5392   fill_in_stop_func (gdbarch, ecs);
5393
5394   s = find_pc_symtab (stop_pc);
5395   if (s && s->language != language_asm)
5396     ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
5397                                                   ecs->stop_func_start);
5398
5399   stop_func_sal = find_pc_line (stop_pc, 0);
5400
5401   /* OK, we're just going to keep stepping here.  */
5402   if (stop_func_sal.pc == stop_pc)
5403     {
5404       /* We're there already.  Just stop stepping now.  */
5405       ecs->event_thread->control.stop_step = 1;
5406       print_end_stepping_range_reason ();
5407       stop_stepping (ecs);
5408     }
5409   else
5410     {
5411       /* Else just reset the step range and keep going.
5412          No step-resume breakpoint, they don't work for
5413          epilogues, which can have multiple entry paths.  */
5414       ecs->event_thread->control.step_range_start = stop_func_sal.pc;
5415       ecs->event_thread->control.step_range_end = stop_func_sal.end;
5416       keep_going (ecs);
5417     }
5418   return;
5419 }
5420
5421 /* Insert a "step-resume breakpoint" at SR_SAL with frame ID SR_ID.
5422    This is used to both functions and to skip over code.  */
5423
5424 static void
5425 insert_step_resume_breakpoint_at_sal_1 (struct gdbarch *gdbarch,
5426                                         struct symtab_and_line sr_sal,
5427                                         struct frame_id sr_id,
5428                                         enum bptype sr_type)
5429 {
5430   /* There should never be more than one step-resume or longjmp-resume
5431      breakpoint per thread, so we should never be setting a new
5432      step_resume_breakpoint when one is already active.  */
5433   gdb_assert (inferior_thread ()->control.step_resume_breakpoint == NULL);
5434   gdb_assert (sr_type == bp_step_resume || sr_type == bp_hp_step_resume);
5435
5436   if (debug_infrun)
5437     fprintf_unfiltered (gdb_stdlog,
5438                         "infrun: inserting step-resume breakpoint at %s\n",
5439                         paddress (gdbarch, sr_sal.pc));
5440
5441   inferior_thread ()->control.step_resume_breakpoint
5442     = set_momentary_breakpoint (gdbarch, sr_sal, sr_id, sr_type);
5443 }
5444
5445 void
5446 insert_step_resume_breakpoint_at_sal (struct gdbarch *gdbarch,
5447                                       struct symtab_and_line sr_sal,
5448                                       struct frame_id sr_id)
5449 {
5450   insert_step_resume_breakpoint_at_sal_1 (gdbarch,
5451                                           sr_sal, sr_id,
5452                                           bp_step_resume);
5453 }
5454
5455 /* Insert a "high-priority step-resume breakpoint" at RETURN_FRAME.pc.
5456    This is used to skip a potential signal handler.
5457
5458    This is called with the interrupted function's frame.  The signal
5459    handler, when it returns, will resume the interrupted function at
5460    RETURN_FRAME.pc.  */
5461
5462 static void
5463 insert_hp_step_resume_breakpoint_at_frame (struct frame_info *return_frame)
5464 {
5465   struct symtab_and_line sr_sal;
5466   struct gdbarch *gdbarch;
5467
5468   gdb_assert (return_frame != NULL);
5469   init_sal (&sr_sal);           /* initialize to zeros */
5470
5471   gdbarch = get_frame_arch (return_frame);
5472   sr_sal.pc = gdbarch_addr_bits_remove (gdbarch, get_frame_pc (return_frame));
5473   sr_sal.section = find_pc_overlay (sr_sal.pc);
5474   sr_sal.pspace = get_frame_program_space (return_frame);
5475
5476   insert_step_resume_breakpoint_at_sal_1 (gdbarch, sr_sal,
5477                                           get_stack_frame_id (return_frame),
5478                                           bp_hp_step_resume);
5479 }
5480
5481 /* Insert a "step-resume breakpoint" at the previous frame's PC.  This
5482    is used to skip a function after stepping into it (for "next" or if
5483    the called function has no debugging information).
5484
5485    The current function has almost always been reached by single
5486    stepping a call or return instruction.  NEXT_FRAME belongs to the
5487    current function, and the breakpoint will be set at the caller's
5488    resume address.
5489
5490    This is a separate function rather than reusing
5491    insert_hp_step_resume_breakpoint_at_frame in order to avoid
5492    get_prev_frame, which may stop prematurely (see the implementation
5493    of frame_unwind_caller_id for an example).  */
5494
5495 static void
5496 insert_step_resume_breakpoint_at_caller (struct frame_info *next_frame)
5497 {
5498   struct symtab_and_line sr_sal;
5499   struct gdbarch *gdbarch;
5500
5501   /* We shouldn't have gotten here if we don't know where the call site
5502      is.  */
5503   gdb_assert (frame_id_p (frame_unwind_caller_id (next_frame)));
5504
5505   init_sal (&sr_sal);           /* initialize to zeros */
5506
5507   gdbarch = frame_unwind_caller_arch (next_frame);
5508   sr_sal.pc = gdbarch_addr_bits_remove (gdbarch,
5509                                         frame_unwind_caller_pc (next_frame));
5510   sr_sal.section = find_pc_overlay (sr_sal.pc);
5511   sr_sal.pspace = frame_unwind_program_space (next_frame);
5512
5513   insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal,
5514                                         frame_unwind_caller_id (next_frame));
5515 }
5516
5517 /* Insert a "longjmp-resume" breakpoint at PC.  This is used to set a
5518    new breakpoint at the target of a jmp_buf.  The handling of
5519    longjmp-resume uses the same mechanisms used for handling
5520    "step-resume" breakpoints.  */
5521
5522 static void
5523 insert_longjmp_resume_breakpoint (struct gdbarch *gdbarch, CORE_ADDR pc)
5524 {
5525   /* There should never be more than one longjmp-resume breakpoint per
5526      thread, so we should never be setting a new
5527      longjmp_resume_breakpoint when one is already active.  */
5528   gdb_assert (inferior_thread ()->control.exception_resume_breakpoint == NULL);
5529
5530   if (debug_infrun)
5531     fprintf_unfiltered (gdb_stdlog,
5532                         "infrun: inserting longjmp-resume breakpoint at %s\n",
5533                         paddress (gdbarch, pc));
5534
5535   inferior_thread ()->control.exception_resume_breakpoint =
5536     set_momentary_breakpoint_at_pc (gdbarch, pc, bp_longjmp_resume);
5537 }
5538
5539 /* Insert an exception resume breakpoint.  TP is the thread throwing
5540    the exception.  The block B is the block of the unwinder debug hook
5541    function.  FRAME is the frame corresponding to the call to this
5542    function.  SYM is the symbol of the function argument holding the
5543    target PC of the exception.  */
5544
5545 static void
5546 insert_exception_resume_breakpoint (struct thread_info *tp,
5547                                     struct block *b,
5548                                     struct frame_info *frame,
5549                                     struct symbol *sym)
5550 {
5551   volatile struct gdb_exception e;
5552
5553   /* We want to ignore errors here.  */
5554   TRY_CATCH (e, RETURN_MASK_ERROR)
5555     {
5556       struct symbol *vsym;
5557       struct value *value;
5558       CORE_ADDR handler;
5559       struct breakpoint *bp;
5560
5561       vsym = lookup_symbol (SYMBOL_LINKAGE_NAME (sym), b, VAR_DOMAIN, NULL);
5562       value = read_var_value (vsym, frame);
5563       /* If the value was optimized out, revert to the old behavior.  */
5564       if (! value_optimized_out (value))
5565         {
5566           handler = value_as_address (value);
5567
5568           if (debug_infrun)
5569             fprintf_unfiltered (gdb_stdlog,
5570                                 "infrun: exception resume at %lx\n",
5571                                 (unsigned long) handler);
5572
5573           bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
5574                                                handler, bp_exception_resume);
5575
5576           /* set_momentary_breakpoint_at_pc invalidates FRAME.  */
5577           frame = NULL;
5578
5579           bp->thread = tp->num;
5580           inferior_thread ()->control.exception_resume_breakpoint = bp;
5581         }
5582     }
5583 }
5584
5585 /* A helper for check_exception_resume that sets an
5586    exception-breakpoint based on a SystemTap probe.  */
5587
5588 static void
5589 insert_exception_resume_from_probe (struct thread_info *tp,
5590                                     const struct probe *probe,
5591                                     struct frame_info *frame)
5592 {
5593   struct value *arg_value;
5594   CORE_ADDR handler;
5595   struct breakpoint *bp;
5596
5597   arg_value = probe_safe_evaluate_at_pc (frame, 1);
5598   if (!arg_value)
5599     return;
5600
5601   handler = value_as_address (arg_value);
5602
5603   if (debug_infrun)
5604     fprintf_unfiltered (gdb_stdlog,
5605                         "infrun: exception resume at %s\n",
5606                         paddress (get_objfile_arch (probe->objfile),
5607                                   handler));
5608
5609   bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
5610                                        handler, bp_exception_resume);
5611   bp->thread = tp->num;
5612   inferior_thread ()->control.exception_resume_breakpoint = bp;
5613 }
5614
5615 /* This is called when an exception has been intercepted.  Check to
5616    see whether the exception's destination is of interest, and if so,
5617    set an exception resume breakpoint there.  */
5618
5619 static void
5620 check_exception_resume (struct execution_control_state *ecs,
5621                         struct frame_info *frame)
5622 {
5623   volatile struct gdb_exception e;
5624   const struct probe *probe;
5625   struct symbol *func;
5626
5627   /* First see if this exception unwinding breakpoint was set via a
5628      SystemTap probe point.  If so, the probe has two arguments: the
5629      CFA and the HANDLER.  We ignore the CFA, extract the handler, and
5630      set a breakpoint there.  */
5631   probe = find_probe_by_pc (get_frame_pc (frame));
5632   if (probe)
5633     {
5634       insert_exception_resume_from_probe (ecs->event_thread, probe, frame);
5635       return;
5636     }
5637
5638   func = get_frame_function (frame);
5639   if (!func)
5640     return;
5641
5642   TRY_CATCH (e, RETURN_MASK_ERROR)
5643     {
5644       struct block *b;
5645       struct block_iterator iter;
5646       struct symbol *sym;
5647       int argno = 0;
5648
5649       /* The exception breakpoint is a thread-specific breakpoint on
5650          the unwinder's debug hook, declared as:
5651          
5652          void _Unwind_DebugHook (void *cfa, void *handler);
5653          
5654          The CFA argument indicates the frame to which control is
5655          about to be transferred.  HANDLER is the destination PC.
5656          
5657          We ignore the CFA and set a temporary breakpoint at HANDLER.
5658          This is not extremely efficient but it avoids issues in gdb
5659          with computing the DWARF CFA, and it also works even in weird
5660          cases such as throwing an exception from inside a signal
5661          handler.  */
5662
5663       b = SYMBOL_BLOCK_VALUE (func);
5664       ALL_BLOCK_SYMBOLS (b, iter, sym)
5665         {
5666           if (!SYMBOL_IS_ARGUMENT (sym))
5667             continue;
5668
5669           if (argno == 0)
5670             ++argno;
5671           else
5672             {
5673               insert_exception_resume_breakpoint (ecs->event_thread,
5674                                                   b, frame, sym);
5675               break;
5676             }
5677         }
5678     }
5679 }
5680
5681 static void
5682 stop_stepping (struct execution_control_state *ecs)
5683 {
5684   if (debug_infrun)
5685     fprintf_unfiltered (gdb_stdlog, "infrun: stop_stepping\n");
5686
5687   /* Let callers know we don't want to wait for the inferior anymore.  */
5688   ecs->wait_some_more = 0;
5689 }
5690
5691 /* This function handles various cases where we need to continue
5692    waiting for the inferior.  */
5693 /* (Used to be the keep_going: label in the old wait_for_inferior).  */
5694
5695 static void
5696 keep_going (struct execution_control_state *ecs)
5697 {
5698   /* Make sure normal_stop is called if we get a QUIT handled before
5699      reaching resume.  */
5700   struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
5701
5702   /* Save the pc before execution, to compare with pc after stop.  */
5703   ecs->event_thread->prev_pc
5704     = regcache_read_pc (get_thread_regcache (ecs->ptid));
5705
5706   /* If we did not do break;, it means we should keep running the
5707      inferior and not return to debugger.  */
5708
5709   if (ecs->event_thread->control.trap_expected
5710       && ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_TRAP)
5711     {
5712       /* We took a signal (which we are supposed to pass through to
5713          the inferior, else we'd not get here) and we haven't yet
5714          gotten our trap.  Simply continue.  */
5715
5716       discard_cleanups (old_cleanups);
5717       resume (currently_stepping (ecs->event_thread),
5718               ecs->event_thread->suspend.stop_signal);
5719     }
5720   else
5721     {
5722       /* Either the trap was not expected, but we are continuing
5723          anyway (the user asked that this signal be passed to the
5724          child)
5725          -- or --
5726          The signal was SIGTRAP, e.g. it was our signal, but we
5727          decided we should resume from it.
5728
5729          We're going to run this baby now!  
5730
5731          Note that insert_breakpoints won't try to re-insert
5732          already inserted breakpoints.  Therefore, we don't
5733          care if breakpoints were already inserted, or not.  */
5734       
5735       if (ecs->event_thread->stepping_over_breakpoint)
5736         {
5737           struct regcache *thread_regcache = get_thread_regcache (ecs->ptid);
5738
5739           if (!use_displaced_stepping (get_regcache_arch (thread_regcache)))
5740             /* Since we can't do a displaced step, we have to remove
5741                the breakpoint while we step it.  To keep things
5742                simple, we remove them all.  */
5743             remove_breakpoints ();
5744         }
5745       else
5746         {
5747           volatile struct gdb_exception e;
5748
5749           /* Stop stepping when inserting breakpoints
5750              has failed.  */
5751           TRY_CATCH (e, RETURN_MASK_ERROR)
5752             {
5753               insert_breakpoints ();
5754             }
5755           if (e.reason < 0)
5756             {
5757               exception_print (gdb_stderr, e);
5758               stop_stepping (ecs);
5759               return;
5760             }
5761         }
5762
5763       ecs->event_thread->control.trap_expected
5764         = ecs->event_thread->stepping_over_breakpoint;
5765
5766       /* Do not deliver SIGNAL_TRAP (except when the user explicitly
5767          specifies that such a signal should be delivered to the
5768          target program).
5769
5770          Typically, this would occure when a user is debugging a
5771          target monitor on a simulator: the target monitor sets a
5772          breakpoint; the simulator encounters this break-point and
5773          halts the simulation handing control to GDB; GDB, noteing
5774          that the break-point isn't valid, returns control back to the
5775          simulator; the simulator then delivers the hardware
5776          equivalent of a SIGNAL_TRAP to the program being debugged.  */
5777
5778       if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5779           && !signal_program[ecs->event_thread->suspend.stop_signal])
5780         ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5781
5782       discard_cleanups (old_cleanups);
5783       resume (currently_stepping (ecs->event_thread),
5784               ecs->event_thread->suspend.stop_signal);
5785     }
5786
5787   prepare_to_wait (ecs);
5788 }
5789
5790 /* This function normally comes after a resume, before
5791    handle_inferior_event exits.  It takes care of any last bits of
5792    housekeeping, and sets the all-important wait_some_more flag.  */
5793
5794 static void
5795 prepare_to_wait (struct execution_control_state *ecs)
5796 {
5797   if (debug_infrun)
5798     fprintf_unfiltered (gdb_stdlog, "infrun: prepare_to_wait\n");
5799
5800   /* This is the old end of the while loop.  Let everybody know we
5801      want to wait for the inferior some more and get called again
5802      soon.  */
5803   ecs->wait_some_more = 1;
5804 }
5805
5806 /* Several print_*_reason functions to print why the inferior has stopped.
5807    We always print something when the inferior exits, or receives a signal.
5808    The rest of the cases are dealt with later on in normal_stop and
5809    print_it_typical.  Ideally there should be a call to one of these
5810    print_*_reason functions functions from handle_inferior_event each time
5811    stop_stepping is called.  */
5812
5813 /* Print why the inferior has stopped.  
5814    We are done with a step/next/si/ni command, print why the inferior has
5815    stopped.  For now print nothing.  Print a message only if not in the middle
5816    of doing a "step n" operation for n > 1.  */
5817
5818 static void
5819 print_end_stepping_range_reason (void)
5820 {
5821   if ((!inferior_thread ()->step_multi
5822        || !inferior_thread ()->control.stop_step)
5823       && ui_out_is_mi_like_p (current_uiout))
5824     ui_out_field_string (current_uiout, "reason",
5825                          async_reason_lookup (EXEC_ASYNC_END_STEPPING_RANGE));
5826 }
5827
5828 /* The inferior was terminated by a signal, print why it stopped.  */
5829
5830 static void
5831 print_signal_exited_reason (enum gdb_signal siggnal)
5832 {
5833   struct ui_out *uiout = current_uiout;
5834
5835   annotate_signalled ();
5836   if (ui_out_is_mi_like_p (uiout))
5837     ui_out_field_string
5838       (uiout, "reason", async_reason_lookup (EXEC_ASYNC_EXITED_SIGNALLED));
5839   ui_out_text (uiout, "\nProgram terminated with signal ");
5840   annotate_signal_name ();
5841   ui_out_field_string (uiout, "signal-name",
5842                        gdb_signal_to_name (siggnal));
5843   annotate_signal_name_end ();
5844   ui_out_text (uiout, ", ");
5845   annotate_signal_string ();
5846   ui_out_field_string (uiout, "signal-meaning",
5847                        gdb_signal_to_string (siggnal));
5848   annotate_signal_string_end ();
5849   ui_out_text (uiout, ".\n");
5850   ui_out_text (uiout, "The program no longer exists.\n");
5851 }
5852
5853 /* The inferior program is finished, print why it stopped.  */
5854
5855 static void
5856 print_exited_reason (int exitstatus)
5857 {
5858   struct inferior *inf = current_inferior ();
5859   const char *pidstr = target_pid_to_str (pid_to_ptid (inf->pid));
5860   struct ui_out *uiout = current_uiout;
5861
5862   annotate_exited (exitstatus);
5863   if (exitstatus)
5864     {
5865       if (ui_out_is_mi_like_p (uiout))
5866         ui_out_field_string (uiout, "reason", 
5867                              async_reason_lookup (EXEC_ASYNC_EXITED));
5868       ui_out_text (uiout, "[Inferior ");
5869       ui_out_text (uiout, plongest (inf->num));
5870       ui_out_text (uiout, " (");
5871       ui_out_text (uiout, pidstr);
5872       ui_out_text (uiout, ") exited with code ");
5873       ui_out_field_fmt (uiout, "exit-code", "0%o", (unsigned int) exitstatus);
5874       ui_out_text (uiout, "]\n");
5875     }
5876   else
5877     {
5878       if (ui_out_is_mi_like_p (uiout))
5879         ui_out_field_string
5880           (uiout, "reason", async_reason_lookup (EXEC_ASYNC_EXITED_NORMALLY));
5881       ui_out_text (uiout, "[Inferior ");
5882       ui_out_text (uiout, plongest (inf->num));
5883       ui_out_text (uiout, " (");
5884       ui_out_text (uiout, pidstr);
5885       ui_out_text (uiout, ") exited normally]\n");
5886     }
5887   /* Support the --return-child-result option.  */
5888   return_child_result_value = exitstatus;
5889 }
5890
5891 /* Signal received, print why the inferior has stopped.  The signal table
5892    tells us to print about it.  */
5893
5894 static void
5895 print_signal_received_reason (enum gdb_signal siggnal)
5896 {
5897   struct ui_out *uiout = current_uiout;
5898
5899   annotate_signal ();
5900
5901   if (siggnal == GDB_SIGNAL_0 && !ui_out_is_mi_like_p (uiout))
5902     {
5903       struct thread_info *t = inferior_thread ();
5904
5905       ui_out_text (uiout, "\n[");
5906       ui_out_field_string (uiout, "thread-name",
5907                            target_pid_to_str (t->ptid));
5908       ui_out_field_fmt (uiout, "thread-id", "] #%d", t->num);
5909       ui_out_text (uiout, " stopped");
5910     }
5911   else
5912     {
5913       ui_out_text (uiout, "\nProgram received signal ");
5914       annotate_signal_name ();
5915       if (ui_out_is_mi_like_p (uiout))
5916         ui_out_field_string
5917           (uiout, "reason", async_reason_lookup (EXEC_ASYNC_SIGNAL_RECEIVED));
5918       ui_out_field_string (uiout, "signal-name",
5919                            gdb_signal_to_name (siggnal));
5920       annotate_signal_name_end ();
5921       ui_out_text (uiout, ", ");
5922       annotate_signal_string ();
5923       ui_out_field_string (uiout, "signal-meaning",
5924                            gdb_signal_to_string (siggnal));
5925       annotate_signal_string_end ();
5926     }
5927   ui_out_text (uiout, ".\n");
5928 }
5929
5930 /* Reverse execution: target ran out of history info, print why the inferior
5931    has stopped.  */
5932
5933 static void
5934 print_no_history_reason (void)
5935 {
5936   ui_out_text (current_uiout, "\nNo more reverse-execution history.\n");
5937 }
5938
5939 /* Here to return control to GDB when the inferior stops for real.
5940    Print appropriate messages, remove breakpoints, give terminal our modes.
5941
5942    STOP_PRINT_FRAME nonzero means print the executing frame
5943    (pc, function, args, file, line number and line text).
5944    BREAKPOINTS_FAILED nonzero means stop was due to error
5945    attempting to insert breakpoints.  */
5946
5947 void
5948 normal_stop (void)
5949 {
5950   struct target_waitstatus last;
5951   ptid_t last_ptid;
5952   struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
5953
5954   get_last_target_status (&last_ptid, &last);
5955
5956   /* If an exception is thrown from this point on, make sure to
5957      propagate GDB's knowledge of the executing state to the
5958      frontend/user running state.  A QUIT is an easy exception to see
5959      here, so do this before any filtered output.  */
5960   if (!non_stop)
5961     make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
5962   else if (last.kind != TARGET_WAITKIND_SIGNALLED
5963            && last.kind != TARGET_WAITKIND_EXITED
5964            && last.kind != TARGET_WAITKIND_NO_RESUMED)
5965     make_cleanup (finish_thread_state_cleanup, &inferior_ptid);
5966
5967   /* In non-stop mode, we don't want GDB to switch threads behind the
5968      user's back, to avoid races where the user is typing a command to
5969      apply to thread x, but GDB switches to thread y before the user
5970      finishes entering the command.  */
5971
5972   /* As with the notification of thread events, we want to delay
5973      notifying the user that we've switched thread context until
5974      the inferior actually stops.
5975
5976      There's no point in saying anything if the inferior has exited.
5977      Note that SIGNALLED here means "exited with a signal", not
5978      "received a signal".  */
5979   if (!non_stop
5980       && !ptid_equal (previous_inferior_ptid, inferior_ptid)
5981       && target_has_execution
5982       && last.kind != TARGET_WAITKIND_SIGNALLED
5983       && last.kind != TARGET_WAITKIND_EXITED
5984       && last.kind != TARGET_WAITKIND_NO_RESUMED)
5985     {
5986       target_terminal_ours_for_output ();
5987       printf_filtered (_("[Switching to %s]\n"),
5988                        target_pid_to_str (inferior_ptid));
5989       annotate_thread_changed ();
5990       previous_inferior_ptid = inferior_ptid;
5991     }
5992
5993   if (last.kind == TARGET_WAITKIND_NO_RESUMED)
5994     {
5995       gdb_assert (sync_execution || !target_can_async_p ());
5996
5997       target_terminal_ours_for_output ();
5998       printf_filtered (_("No unwaited-for children left.\n"));
5999     }
6000
6001   if (!breakpoints_always_inserted_mode () && target_has_execution)
6002     {
6003       if (remove_breakpoints ())
6004         {
6005           target_terminal_ours_for_output ();
6006           printf_filtered (_("Cannot remove breakpoints because "
6007                              "program is no longer writable.\nFurther "
6008                              "execution is probably impossible.\n"));
6009         }
6010     }
6011
6012   /* If an auto-display called a function and that got a signal,
6013      delete that auto-display to avoid an infinite recursion.  */
6014
6015   if (stopped_by_random_signal)
6016     disable_current_display ();
6017
6018   /* Don't print a message if in the middle of doing a "step n"
6019      operation for n > 1 */
6020   if (target_has_execution
6021       && last.kind != TARGET_WAITKIND_SIGNALLED
6022       && last.kind != TARGET_WAITKIND_EXITED
6023       && inferior_thread ()->step_multi
6024       && inferior_thread ()->control.stop_step)
6025     goto done;
6026
6027   target_terminal_ours ();
6028   async_enable_stdin ();
6029
6030   /* Set the current source location.  This will also happen if we
6031      display the frame below, but the current SAL will be incorrect
6032      during a user hook-stop function.  */
6033   if (has_stack_frames () && !stop_stack_dummy)
6034     set_current_sal_from_frame (get_current_frame (), 1);
6035
6036   /* Let the user/frontend see the threads as stopped.  */
6037   do_cleanups (old_chain);
6038
6039   /* Look up the hook_stop and run it (CLI internally handles problem
6040      of stop_command's pre-hook not existing).  */
6041   if (stop_command)
6042     catch_errors (hook_stop_stub, stop_command,
6043                   "Error while running hook_stop:\n", RETURN_MASK_ALL);
6044
6045   if (!has_stack_frames ())
6046     goto done;
6047
6048   if (last.kind == TARGET_WAITKIND_SIGNALLED
6049       || last.kind == TARGET_WAITKIND_EXITED)
6050     goto done;
6051
6052   /* Select innermost stack frame - i.e., current frame is frame 0,
6053      and current location is based on that.
6054      Don't do this on return from a stack dummy routine,
6055      or if the program has exited.  */
6056
6057   if (!stop_stack_dummy)
6058     {
6059       select_frame (get_current_frame ());
6060
6061       /* Print current location without a level number, if
6062          we have changed functions or hit a breakpoint.
6063          Print source line if we have one.
6064          bpstat_print() contains the logic deciding in detail
6065          what to print, based on the event(s) that just occurred.  */
6066
6067       /* If --batch-silent is enabled then there's no need to print the current
6068          source location, and to try risks causing an error message about
6069          missing source files.  */
6070       if (stop_print_frame && !batch_silent)
6071         {
6072           int bpstat_ret;
6073           int source_flag;
6074           int do_frame_printing = 1;
6075           struct thread_info *tp = inferior_thread ();
6076
6077           bpstat_ret = bpstat_print (tp->control.stop_bpstat, last.kind);
6078           switch (bpstat_ret)
6079             {
6080             case PRINT_UNKNOWN:
6081               /* FIXME: cagney/2002-12-01: Given that a frame ID does
6082                  (or should) carry around the function and does (or
6083                  should) use that when doing a frame comparison.  */
6084               if (tp->control.stop_step
6085                   && frame_id_eq (tp->control.step_frame_id,
6086                                   get_frame_id (get_current_frame ()))
6087                   && step_start_function == find_pc_function (stop_pc))
6088                 source_flag = SRC_LINE;         /* Finished step, just
6089                                                    print source line.  */
6090               else
6091                 source_flag = SRC_AND_LOC;      /* Print location and
6092                                                    source line.  */
6093               break;
6094             case PRINT_SRC_AND_LOC:
6095               source_flag = SRC_AND_LOC;        /* Print location and
6096                                                    source line.  */
6097               break;
6098             case PRINT_SRC_ONLY:
6099               source_flag = SRC_LINE;
6100               break;
6101             case PRINT_NOTHING:
6102               source_flag = SRC_LINE;   /* something bogus */
6103               do_frame_printing = 0;
6104               break;
6105             default:
6106               internal_error (__FILE__, __LINE__, _("Unknown value."));
6107             }
6108
6109           /* The behavior of this routine with respect to the source
6110              flag is:
6111              SRC_LINE: Print only source line
6112              LOCATION: Print only location
6113              SRC_AND_LOC: Print location and source line.  */
6114           if (do_frame_printing)
6115             print_stack_frame (get_selected_frame (NULL), 0, source_flag);
6116
6117           /* Display the auto-display expressions.  */
6118           do_displays ();
6119         }
6120     }
6121
6122   /* Save the function value return registers, if we care.
6123      We might be about to restore their previous contents.  */
6124   if (inferior_thread ()->control.proceed_to_finish
6125       && execution_direction != EXEC_REVERSE)
6126     {
6127       /* This should not be necessary.  */
6128       if (stop_registers)
6129         regcache_xfree (stop_registers);
6130
6131       /* NB: The copy goes through to the target picking up the value of
6132          all the registers.  */
6133       stop_registers = regcache_dup (get_current_regcache ());
6134     }
6135
6136   if (stop_stack_dummy == STOP_STACK_DUMMY)
6137     {
6138       /* Pop the empty frame that contains the stack dummy.
6139          This also restores inferior state prior to the call
6140          (struct infcall_suspend_state).  */
6141       struct frame_info *frame = get_current_frame ();
6142
6143       gdb_assert (get_frame_type (frame) == DUMMY_FRAME);
6144       frame_pop (frame);
6145       /* frame_pop() calls reinit_frame_cache as the last thing it
6146          does which means there's currently no selected frame.  We
6147          don't need to re-establish a selected frame if the dummy call
6148          returns normally, that will be done by
6149          restore_infcall_control_state.  However, we do have to handle
6150          the case where the dummy call is returning after being
6151          stopped (e.g. the dummy call previously hit a breakpoint).
6152          We can't know which case we have so just always re-establish
6153          a selected frame here.  */
6154       select_frame (get_current_frame ());
6155     }
6156
6157 done:
6158   annotate_stopped ();
6159
6160   /* Suppress the stop observer if we're in the middle of:
6161
6162      - a step n (n > 1), as there still more steps to be done.
6163
6164      - a "finish" command, as the observer will be called in
6165        finish_command_continuation, so it can include the inferior
6166        function's return value.
6167
6168      - calling an inferior function, as we pretend we inferior didn't
6169        run at all.  The return value of the call is handled by the
6170        expression evaluator, through call_function_by_hand.  */
6171
6172   if (!target_has_execution
6173       || last.kind == TARGET_WAITKIND_SIGNALLED
6174       || last.kind == TARGET_WAITKIND_EXITED
6175       || last.kind == TARGET_WAITKIND_NO_RESUMED
6176       || (!(inferior_thread ()->step_multi
6177             && inferior_thread ()->control.stop_step)
6178           && !(inferior_thread ()->control.stop_bpstat
6179                && inferior_thread ()->control.proceed_to_finish)
6180           && !inferior_thread ()->control.in_infcall))
6181     {
6182       if (!ptid_equal (inferior_ptid, null_ptid))
6183         observer_notify_normal_stop (inferior_thread ()->control.stop_bpstat,
6184                                      stop_print_frame);
6185       else
6186         observer_notify_normal_stop (NULL, stop_print_frame);
6187     }
6188
6189   if (target_has_execution)
6190     {
6191       if (last.kind != TARGET_WAITKIND_SIGNALLED
6192           && last.kind != TARGET_WAITKIND_EXITED)
6193         /* Delete the breakpoint we stopped at, if it wants to be deleted.
6194            Delete any breakpoint that is to be deleted at the next stop.  */
6195         breakpoint_auto_delete (inferior_thread ()->control.stop_bpstat);
6196     }
6197
6198   /* Try to get rid of automatically added inferiors that are no
6199      longer needed.  Keeping those around slows down things linearly.
6200      Note that this never removes the current inferior.  */
6201   prune_inferiors ();
6202 }
6203
6204 static int
6205 hook_stop_stub (void *cmd)
6206 {
6207   execute_cmd_pre_hook ((struct cmd_list_element *) cmd);
6208   return (0);
6209 }
6210 \f
6211 int
6212 signal_stop_state (int signo)
6213 {
6214   return signal_stop[signo];
6215 }
6216
6217 int
6218 signal_print_state (int signo)
6219 {
6220   return signal_print[signo];
6221 }
6222
6223 int
6224 signal_pass_state (int signo)
6225 {
6226   return signal_program[signo];
6227 }
6228
6229 static void
6230 signal_cache_update (int signo)
6231 {
6232   if (signo == -1)
6233     {
6234       for (signo = 0; signo < (int) GDB_SIGNAL_LAST; signo++)
6235         signal_cache_update (signo);
6236
6237       return;
6238     }
6239
6240   signal_pass[signo] = (signal_stop[signo] == 0
6241                         && signal_print[signo] == 0
6242                         && signal_program[signo] == 1
6243                         && signal_catch[signo] == 0);
6244 }
6245
6246 int
6247 signal_stop_update (int signo, int state)
6248 {
6249   int ret = signal_stop[signo];
6250
6251   signal_stop[signo] = state;
6252   signal_cache_update (signo);
6253   return ret;
6254 }
6255
6256 int
6257 signal_print_update (int signo, int state)
6258 {
6259   int ret = signal_print[signo];
6260
6261   signal_print[signo] = state;
6262   signal_cache_update (signo);
6263   return ret;
6264 }
6265
6266 int
6267 signal_pass_update (int signo, int state)
6268 {
6269   int ret = signal_program[signo];
6270
6271   signal_program[signo] = state;
6272   signal_cache_update (signo);
6273   return ret;
6274 }
6275
6276 /* Update the global 'signal_catch' from INFO and notify the
6277    target.  */
6278
6279 void
6280 signal_catch_update (const unsigned int *info)
6281 {
6282   int i;
6283
6284   for (i = 0; i < GDB_SIGNAL_LAST; ++i)
6285     signal_catch[i] = info[i] > 0;
6286   signal_cache_update (-1);
6287   target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
6288 }
6289
6290 static void
6291 sig_print_header (void)
6292 {
6293   printf_filtered (_("Signal        Stop\tPrint\tPass "
6294                      "to program\tDescription\n"));
6295 }
6296
6297 static void
6298 sig_print_info (enum gdb_signal oursig)
6299 {
6300   const char *name = gdb_signal_to_name (oursig);
6301   int name_padding = 13 - strlen (name);
6302
6303   if (name_padding <= 0)
6304     name_padding = 0;
6305
6306   printf_filtered ("%s", name);
6307   printf_filtered ("%*.*s ", name_padding, name_padding, "                 ");
6308   printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
6309   printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
6310   printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
6311   printf_filtered ("%s\n", gdb_signal_to_string (oursig));
6312 }
6313
6314 /* Specify how various signals in the inferior should be handled.  */
6315
6316 static void
6317 handle_command (char *args, int from_tty)
6318 {
6319   char **argv;
6320   int digits, wordlen;
6321   int sigfirst, signum, siglast;
6322   enum gdb_signal oursig;
6323   int allsigs;
6324   int nsigs;
6325   unsigned char *sigs;
6326   struct cleanup *old_chain;
6327
6328   if (args == NULL)
6329     {
6330       error_no_arg (_("signal to handle"));
6331     }
6332
6333   /* Allocate and zero an array of flags for which signals to handle.  */
6334
6335   nsigs = (int) GDB_SIGNAL_LAST;
6336   sigs = (unsigned char *) alloca (nsigs);
6337   memset (sigs, 0, nsigs);
6338
6339   /* Break the command line up into args.  */
6340
6341   argv = gdb_buildargv (args);
6342   old_chain = make_cleanup_freeargv (argv);
6343
6344   /* Walk through the args, looking for signal oursigs, signal names, and
6345      actions.  Signal numbers and signal names may be interspersed with
6346      actions, with the actions being performed for all signals cumulatively
6347      specified.  Signal ranges can be specified as <LOW>-<HIGH>.  */
6348
6349   while (*argv != NULL)
6350     {
6351       wordlen = strlen (*argv);
6352       for (digits = 0; isdigit ((*argv)[digits]); digits++)
6353         {;
6354         }
6355       allsigs = 0;
6356       sigfirst = siglast = -1;
6357
6358       if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
6359         {
6360           /* Apply action to all signals except those used by the
6361              debugger.  Silently skip those.  */
6362           allsigs = 1;
6363           sigfirst = 0;
6364           siglast = nsigs - 1;
6365         }
6366       else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
6367         {
6368           SET_SIGS (nsigs, sigs, signal_stop);
6369           SET_SIGS (nsigs, sigs, signal_print);
6370         }
6371       else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
6372         {
6373           UNSET_SIGS (nsigs, sigs, signal_program);
6374         }
6375       else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
6376         {
6377           SET_SIGS (nsigs, sigs, signal_print);
6378         }
6379       else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
6380         {
6381           SET_SIGS (nsigs, sigs, signal_program);
6382         }
6383       else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
6384         {
6385           UNSET_SIGS (nsigs, sigs, signal_stop);
6386         }
6387       else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
6388         {
6389           SET_SIGS (nsigs, sigs, signal_program);
6390         }
6391       else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
6392         {
6393           UNSET_SIGS (nsigs, sigs, signal_print);
6394           UNSET_SIGS (nsigs, sigs, signal_stop);
6395         }
6396       else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
6397         {
6398           UNSET_SIGS (nsigs, sigs, signal_program);
6399         }
6400       else if (digits > 0)
6401         {
6402           /* It is numeric.  The numeric signal refers to our own
6403              internal signal numbering from target.h, not to host/target
6404              signal  number.  This is a feature; users really should be
6405              using symbolic names anyway, and the common ones like
6406              SIGHUP, SIGINT, SIGALRM, etc. will work right anyway.  */
6407
6408           sigfirst = siglast = (int)
6409             gdb_signal_from_command (atoi (*argv));
6410           if ((*argv)[digits] == '-')
6411             {
6412               siglast = (int)
6413                 gdb_signal_from_command (atoi ((*argv) + digits + 1));
6414             }
6415           if (sigfirst > siglast)
6416             {
6417               /* Bet he didn't figure we'd think of this case...  */
6418               signum = sigfirst;
6419               sigfirst = siglast;
6420               siglast = signum;
6421             }
6422         }
6423       else
6424         {
6425           oursig = gdb_signal_from_name (*argv);
6426           if (oursig != GDB_SIGNAL_UNKNOWN)
6427             {
6428               sigfirst = siglast = (int) oursig;
6429             }
6430           else
6431             {
6432               /* Not a number and not a recognized flag word => complain.  */
6433               error (_("Unrecognized or ambiguous flag word: \"%s\"."), *argv);
6434             }
6435         }
6436
6437       /* If any signal numbers or symbol names were found, set flags for
6438          which signals to apply actions to.  */
6439
6440       for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
6441         {
6442           switch ((enum gdb_signal) signum)
6443             {
6444             case GDB_SIGNAL_TRAP:
6445             case GDB_SIGNAL_INT:
6446               if (!allsigs && !sigs[signum])
6447                 {
6448                   if (query (_("%s is used by the debugger.\n\
6449 Are you sure you want to change it? "),
6450                              gdb_signal_to_name ((enum gdb_signal) signum)))
6451                     {
6452                       sigs[signum] = 1;
6453                     }
6454                   else
6455                     {
6456                       printf_unfiltered (_("Not confirmed, unchanged.\n"));
6457                       gdb_flush (gdb_stdout);
6458                     }
6459                 }
6460               break;
6461             case GDB_SIGNAL_0:
6462             case GDB_SIGNAL_DEFAULT:
6463             case GDB_SIGNAL_UNKNOWN:
6464               /* Make sure that "all" doesn't print these.  */
6465               break;
6466             default:
6467               sigs[signum] = 1;
6468               break;
6469             }
6470         }
6471
6472       argv++;
6473     }
6474
6475   for (signum = 0; signum < nsigs; signum++)
6476     if (sigs[signum])
6477       {
6478         signal_cache_update (-1);
6479         target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
6480         target_program_signals ((int) GDB_SIGNAL_LAST, signal_program);
6481
6482         if (from_tty)
6483           {
6484             /* Show the results.  */
6485             sig_print_header ();
6486             for (; signum < nsigs; signum++)
6487               if (sigs[signum])
6488                 sig_print_info (signum);
6489           }
6490
6491         break;
6492       }
6493
6494   do_cleanups (old_chain);
6495 }
6496
6497 /* Complete the "handle" command.  */
6498
6499 static VEC (char_ptr) *
6500 handle_completer (struct cmd_list_element *ignore,
6501                   const char *text, const char *word)
6502 {
6503   VEC (char_ptr) *vec_signals, *vec_keywords, *return_val;
6504   static const char * const keywords[] =
6505     {
6506       "all",
6507       "stop",
6508       "ignore",
6509       "print",
6510       "pass",
6511       "nostop",
6512       "noignore",
6513       "noprint",
6514       "nopass",
6515       NULL,
6516     };
6517
6518   vec_signals = signal_completer (ignore, text, word);
6519   vec_keywords = complete_on_enum (keywords, word, word);
6520
6521   return_val = VEC_merge (char_ptr, vec_signals, vec_keywords);
6522   VEC_free (char_ptr, vec_signals);
6523   VEC_free (char_ptr, vec_keywords);
6524   return return_val;
6525 }
6526
6527 static void
6528 xdb_handle_command (char *args, int from_tty)
6529 {
6530   char **argv;
6531   struct cleanup *old_chain;
6532
6533   if (args == NULL)
6534     error_no_arg (_("xdb command"));
6535
6536   /* Break the command line up into args.  */
6537
6538   argv = gdb_buildargv (args);
6539   old_chain = make_cleanup_freeargv (argv);
6540   if (argv[1] != (char *) NULL)
6541     {
6542       char *argBuf;
6543       int bufLen;
6544
6545       bufLen = strlen (argv[0]) + 20;
6546       argBuf = (char *) xmalloc (bufLen);
6547       if (argBuf)
6548         {
6549           int validFlag = 1;
6550           enum gdb_signal oursig;
6551
6552           oursig = gdb_signal_from_name (argv[0]);
6553           memset (argBuf, 0, bufLen);
6554           if (strcmp (argv[1], "Q") == 0)
6555             sprintf (argBuf, "%s %s", argv[0], "noprint");
6556           else
6557             {
6558               if (strcmp (argv[1], "s") == 0)
6559                 {
6560                   if (!signal_stop[oursig])
6561                     sprintf (argBuf, "%s %s", argv[0], "stop");
6562                   else
6563                     sprintf (argBuf, "%s %s", argv[0], "nostop");
6564                 }
6565               else if (strcmp (argv[1], "i") == 0)
6566                 {
6567                   if (!signal_program[oursig])
6568                     sprintf (argBuf, "%s %s", argv[0], "pass");
6569                   else
6570                     sprintf (argBuf, "%s %s", argv[0], "nopass");
6571                 }
6572               else if (strcmp (argv[1], "r") == 0)
6573                 {
6574                   if (!signal_print[oursig])
6575                     sprintf (argBuf, "%s %s", argv[0], "print");
6576                   else
6577                     sprintf (argBuf, "%s %s", argv[0], "noprint");
6578                 }
6579               else
6580                 validFlag = 0;
6581             }
6582           if (validFlag)
6583             handle_command (argBuf, from_tty);
6584           else
6585             printf_filtered (_("Invalid signal handling flag.\n"));
6586           if (argBuf)
6587             xfree (argBuf);
6588         }
6589     }
6590   do_cleanups (old_chain);
6591 }
6592
6593 enum gdb_signal
6594 gdb_signal_from_command (int num)
6595 {
6596   if (num >= 1 && num <= 15)
6597     return (enum gdb_signal) num;
6598   error (_("Only signals 1-15 are valid as numeric signals.\n\
6599 Use \"info signals\" for a list of symbolic signals."));
6600 }
6601
6602 /* Print current contents of the tables set by the handle command.
6603    It is possible we should just be printing signals actually used
6604    by the current target (but for things to work right when switching
6605    targets, all signals should be in the signal tables).  */
6606
6607 static void
6608 signals_info (char *signum_exp, int from_tty)
6609 {
6610   enum gdb_signal oursig;
6611
6612   sig_print_header ();
6613
6614   if (signum_exp)
6615     {
6616       /* First see if this is a symbol name.  */
6617       oursig = gdb_signal_from_name (signum_exp);
6618       if (oursig == GDB_SIGNAL_UNKNOWN)
6619         {
6620           /* No, try numeric.  */
6621           oursig =
6622             gdb_signal_from_command (parse_and_eval_long (signum_exp));
6623         }
6624       sig_print_info (oursig);
6625       return;
6626     }
6627
6628   printf_filtered ("\n");
6629   /* These ugly casts brought to you by the native VAX compiler.  */
6630   for (oursig = GDB_SIGNAL_FIRST;
6631        (int) oursig < (int) GDB_SIGNAL_LAST;
6632        oursig = (enum gdb_signal) ((int) oursig + 1))
6633     {
6634       QUIT;
6635
6636       if (oursig != GDB_SIGNAL_UNKNOWN
6637           && oursig != GDB_SIGNAL_DEFAULT && oursig != GDB_SIGNAL_0)
6638         sig_print_info (oursig);
6639     }
6640
6641   printf_filtered (_("\nUse the \"handle\" command "
6642                      "to change these tables.\n"));
6643 }
6644
6645 /* Check if it makes sense to read $_siginfo from the current thread
6646    at this point.  If not, throw an error.  */
6647
6648 static void
6649 validate_siginfo_access (void)
6650 {
6651   /* No current inferior, no siginfo.  */
6652   if (ptid_equal (inferior_ptid, null_ptid))
6653     error (_("No thread selected."));
6654
6655   /* Don't try to read from a dead thread.  */
6656   if (is_exited (inferior_ptid))
6657     error (_("The current thread has terminated"));
6658
6659   /* ... or from a spinning thread.  */
6660   if (is_running (inferior_ptid))
6661     error (_("Selected thread is running."));
6662 }
6663
6664 /* The $_siginfo convenience variable is a bit special.  We don't know
6665    for sure the type of the value until we actually have a chance to
6666    fetch the data.  The type can change depending on gdbarch, so it is
6667    also dependent on which thread you have selected.
6668
6669      1. making $_siginfo be an internalvar that creates a new value on
6670      access.
6671
6672      2. making the value of $_siginfo be an lval_computed value.  */
6673
6674 /* This function implements the lval_computed support for reading a
6675    $_siginfo value.  */
6676
6677 static void
6678 siginfo_value_read (struct value *v)
6679 {
6680   LONGEST transferred;
6681
6682   validate_siginfo_access ();
6683
6684   transferred =
6685     target_read (&current_target, TARGET_OBJECT_SIGNAL_INFO,
6686                  NULL,
6687                  value_contents_all_raw (v),
6688                  value_offset (v),
6689                  TYPE_LENGTH (value_type (v)));
6690
6691   if (transferred != TYPE_LENGTH (value_type (v)))
6692     error (_("Unable to read siginfo"));
6693 }
6694
6695 /* This function implements the lval_computed support for writing a
6696    $_siginfo value.  */
6697
6698 static void
6699 siginfo_value_write (struct value *v, struct value *fromval)
6700 {
6701   LONGEST transferred;
6702
6703   validate_siginfo_access ();
6704
6705   transferred = target_write (&current_target,
6706                               TARGET_OBJECT_SIGNAL_INFO,
6707                               NULL,
6708                               value_contents_all_raw (fromval),
6709                               value_offset (v),
6710                               TYPE_LENGTH (value_type (fromval)));
6711
6712   if (transferred != TYPE_LENGTH (value_type (fromval)))
6713     error (_("Unable to write siginfo"));
6714 }
6715
6716 static const struct lval_funcs siginfo_value_funcs =
6717   {
6718     siginfo_value_read,
6719     siginfo_value_write
6720   };
6721
6722 /* Return a new value with the correct type for the siginfo object of
6723    the current thread using architecture GDBARCH.  Return a void value
6724    if there's no object available.  */
6725
6726 static struct value *
6727 siginfo_make_value (struct gdbarch *gdbarch, struct internalvar *var,
6728                     void *ignore)
6729 {
6730   if (target_has_stack
6731       && !ptid_equal (inferior_ptid, null_ptid)
6732       && gdbarch_get_siginfo_type_p (gdbarch))
6733     {
6734       struct type *type = gdbarch_get_siginfo_type (gdbarch);
6735
6736       return allocate_computed_value (type, &siginfo_value_funcs, NULL);
6737     }
6738
6739   return allocate_value (builtin_type (gdbarch)->builtin_void);
6740 }
6741
6742 \f
6743 /* infcall_suspend_state contains state about the program itself like its
6744    registers and any signal it received when it last stopped.
6745    This state must be restored regardless of how the inferior function call
6746    ends (either successfully, or after it hits a breakpoint or signal)
6747    if the program is to properly continue where it left off.  */
6748
6749 struct infcall_suspend_state
6750 {
6751   struct thread_suspend_state thread_suspend;
6752 #if 0 /* Currently unused and empty structures are not valid C.  */
6753   struct inferior_suspend_state inferior_suspend;
6754 #endif
6755
6756   /* Other fields:  */
6757   CORE_ADDR stop_pc;
6758   struct regcache *registers;
6759
6760   /* Format of SIGINFO_DATA or NULL if it is not present.  */
6761   struct gdbarch *siginfo_gdbarch;
6762
6763   /* The inferior format depends on SIGINFO_GDBARCH and it has a length of
6764      TYPE_LENGTH (gdbarch_get_siginfo_type ()).  For different gdbarch the
6765      content would be invalid.  */
6766   gdb_byte *siginfo_data;
6767 };
6768
6769 struct infcall_suspend_state *
6770 save_infcall_suspend_state (void)
6771 {
6772   struct infcall_suspend_state *inf_state;
6773   struct thread_info *tp = inferior_thread ();
6774 #if 0
6775   struct inferior *inf = current_inferior ();
6776 #endif
6777   struct regcache *regcache = get_current_regcache ();
6778   struct gdbarch *gdbarch = get_regcache_arch (regcache);
6779   gdb_byte *siginfo_data = NULL;
6780
6781   if (gdbarch_get_siginfo_type_p (gdbarch))
6782     {
6783       struct type *type = gdbarch_get_siginfo_type (gdbarch);
6784       size_t len = TYPE_LENGTH (type);
6785       struct cleanup *back_to;
6786
6787       siginfo_data = xmalloc (len);
6788       back_to = make_cleanup (xfree, siginfo_data);
6789
6790       if (target_read (&current_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
6791                        siginfo_data, 0, len) == len)
6792         discard_cleanups (back_to);
6793       else
6794         {
6795           /* Errors ignored.  */
6796           do_cleanups (back_to);
6797           siginfo_data = NULL;
6798         }
6799     }
6800
6801   inf_state = XZALLOC (struct infcall_suspend_state);
6802
6803   if (siginfo_data)
6804     {
6805       inf_state->siginfo_gdbarch = gdbarch;
6806       inf_state->siginfo_data = siginfo_data;
6807     }
6808
6809   inf_state->thread_suspend = tp->suspend;
6810 #if 0 /* Currently unused and empty structures are not valid C.  */
6811   inf_state->inferior_suspend = inf->suspend;
6812 #endif
6813
6814   /* run_inferior_call will not use the signal due to its `proceed' call with
6815      GDB_SIGNAL_0 anyway.  */
6816   tp->suspend.stop_signal = GDB_SIGNAL_0;
6817
6818   inf_state->stop_pc = stop_pc;
6819
6820   inf_state->registers = regcache_dup (regcache);
6821
6822   return inf_state;
6823 }
6824
6825 /* Restore inferior session state to INF_STATE.  */
6826
6827 void
6828 restore_infcall_suspend_state (struct infcall_suspend_state *inf_state)
6829 {
6830   struct thread_info *tp = inferior_thread ();
6831 #if 0
6832   struct inferior *inf = current_inferior ();
6833 #endif
6834   struct regcache *regcache = get_current_regcache ();
6835   struct gdbarch *gdbarch = get_regcache_arch (regcache);
6836
6837   tp->suspend = inf_state->thread_suspend;
6838 #if 0 /* Currently unused and empty structures are not valid C.  */
6839   inf->suspend = inf_state->inferior_suspend;
6840 #endif
6841
6842   stop_pc = inf_state->stop_pc;
6843
6844   if (inf_state->siginfo_gdbarch == gdbarch)
6845     {
6846       struct type *type = gdbarch_get_siginfo_type (gdbarch);
6847
6848       /* Errors ignored.  */
6849       target_write (&current_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
6850                     inf_state->siginfo_data, 0, TYPE_LENGTH (type));
6851     }
6852
6853   /* The inferior can be gone if the user types "print exit(0)"
6854      (and perhaps other times).  */
6855   if (target_has_execution)
6856     /* NB: The register write goes through to the target.  */
6857     regcache_cpy (regcache, inf_state->registers);
6858
6859   discard_infcall_suspend_state (inf_state);
6860 }
6861
6862 static void
6863 do_restore_infcall_suspend_state_cleanup (void *state)
6864 {
6865   restore_infcall_suspend_state (state);
6866 }
6867
6868 struct cleanup *
6869 make_cleanup_restore_infcall_suspend_state
6870   (struct infcall_suspend_state *inf_state)
6871 {
6872   return make_cleanup (do_restore_infcall_suspend_state_cleanup, inf_state);
6873 }
6874
6875 void
6876 discard_infcall_suspend_state (struct infcall_suspend_state *inf_state)
6877 {
6878   regcache_xfree (inf_state->registers);
6879   xfree (inf_state->siginfo_data);
6880   xfree (inf_state);
6881 }
6882
6883 struct regcache *
6884 get_infcall_suspend_state_regcache (struct infcall_suspend_state *inf_state)
6885 {
6886   return inf_state->registers;
6887 }
6888
6889 /* infcall_control_state contains state regarding gdb's control of the
6890    inferior itself like stepping control.  It also contains session state like
6891    the user's currently selected frame.  */
6892
6893 struct infcall_control_state
6894 {
6895   struct thread_control_state thread_control;
6896   struct inferior_control_state inferior_control;
6897
6898   /* Other fields:  */
6899   enum stop_stack_kind stop_stack_dummy;
6900   int stopped_by_random_signal;
6901   int stop_after_trap;
6902
6903   /* ID if the selected frame when the inferior function call was made.  */
6904   struct frame_id selected_frame_id;
6905 };
6906
6907 /* Save all of the information associated with the inferior<==>gdb
6908    connection.  */
6909
6910 struct infcall_control_state *
6911 save_infcall_control_state (void)
6912 {
6913   struct infcall_control_state *inf_status = xmalloc (sizeof (*inf_status));
6914   struct thread_info *tp = inferior_thread ();
6915   struct inferior *inf = current_inferior ();
6916
6917   inf_status->thread_control = tp->control;
6918   inf_status->inferior_control = inf->control;
6919
6920   tp->control.step_resume_breakpoint = NULL;
6921   tp->control.exception_resume_breakpoint = NULL;
6922
6923   /* Save original bpstat chain to INF_STATUS; replace it in TP with copy of
6924      chain.  If caller's caller is walking the chain, they'll be happier if we
6925      hand them back the original chain when restore_infcall_control_state is
6926      called.  */
6927   tp->control.stop_bpstat = bpstat_copy (tp->control.stop_bpstat);
6928
6929   /* Other fields:  */
6930   inf_status->stop_stack_dummy = stop_stack_dummy;
6931   inf_status->stopped_by_random_signal = stopped_by_random_signal;
6932   inf_status->stop_after_trap = stop_after_trap;
6933
6934   inf_status->selected_frame_id = get_frame_id (get_selected_frame (NULL));
6935
6936   return inf_status;
6937 }
6938
6939 static int
6940 restore_selected_frame (void *args)
6941 {
6942   struct frame_id *fid = (struct frame_id *) args;
6943   struct frame_info *frame;
6944
6945   frame = frame_find_by_id (*fid);
6946
6947   /* If inf_status->selected_frame_id is NULL, there was no previously
6948      selected frame.  */
6949   if (frame == NULL)
6950     {
6951       warning (_("Unable to restore previously selected frame."));
6952       return 0;
6953     }
6954
6955   select_frame (frame);
6956
6957   return (1);
6958 }
6959
6960 /* Restore inferior session state to INF_STATUS.  */
6961
6962 void
6963 restore_infcall_control_state (struct infcall_control_state *inf_status)
6964 {
6965   struct thread_info *tp = inferior_thread ();
6966   struct inferior *inf = current_inferior ();
6967
6968   if (tp->control.step_resume_breakpoint)
6969     tp->control.step_resume_breakpoint->disposition = disp_del_at_next_stop;
6970
6971   if (tp->control.exception_resume_breakpoint)
6972     tp->control.exception_resume_breakpoint->disposition
6973       = disp_del_at_next_stop;
6974
6975   /* Handle the bpstat_copy of the chain.  */
6976   bpstat_clear (&tp->control.stop_bpstat);
6977
6978   tp->control = inf_status->thread_control;
6979   inf->control = inf_status->inferior_control;
6980
6981   /* Other fields:  */
6982   stop_stack_dummy = inf_status->stop_stack_dummy;
6983   stopped_by_random_signal = inf_status->stopped_by_random_signal;
6984   stop_after_trap = inf_status->stop_after_trap;
6985
6986   if (target_has_stack)
6987     {
6988       /* The point of catch_errors is that if the stack is clobbered,
6989          walking the stack might encounter a garbage pointer and
6990          error() trying to dereference it.  */
6991       if (catch_errors
6992           (restore_selected_frame, &inf_status->selected_frame_id,
6993            "Unable to restore previously selected frame:\n",
6994            RETURN_MASK_ERROR) == 0)
6995         /* Error in restoring the selected frame.  Select the innermost
6996            frame.  */
6997         select_frame (get_current_frame ());
6998     }
6999
7000   xfree (inf_status);
7001 }
7002
7003 static void
7004 do_restore_infcall_control_state_cleanup (void *sts)
7005 {
7006   restore_infcall_control_state (sts);
7007 }
7008
7009 struct cleanup *
7010 make_cleanup_restore_infcall_control_state
7011   (struct infcall_control_state *inf_status)
7012 {
7013   return make_cleanup (do_restore_infcall_control_state_cleanup, inf_status);
7014 }
7015
7016 void
7017 discard_infcall_control_state (struct infcall_control_state *inf_status)
7018 {
7019   if (inf_status->thread_control.step_resume_breakpoint)
7020     inf_status->thread_control.step_resume_breakpoint->disposition
7021       = disp_del_at_next_stop;
7022
7023   if (inf_status->thread_control.exception_resume_breakpoint)
7024     inf_status->thread_control.exception_resume_breakpoint->disposition
7025       = disp_del_at_next_stop;
7026
7027   /* See save_infcall_control_state for info on stop_bpstat.  */
7028   bpstat_clear (&inf_status->thread_control.stop_bpstat);
7029
7030   xfree (inf_status);
7031 }
7032 \f
7033 int
7034 ptid_match (ptid_t ptid, ptid_t filter)
7035 {
7036   if (ptid_equal (filter, minus_one_ptid))
7037     return 1;
7038   if (ptid_is_pid (filter)
7039       && ptid_get_pid (ptid) == ptid_get_pid (filter))
7040     return 1;
7041   else if (ptid_equal (ptid, filter))
7042     return 1;
7043
7044   return 0;
7045 }
7046
7047 /* restore_inferior_ptid() will be used by the cleanup machinery
7048    to restore the inferior_ptid value saved in a call to
7049    save_inferior_ptid().  */
7050
7051 static void
7052 restore_inferior_ptid (void *arg)
7053 {
7054   ptid_t *saved_ptid_ptr = arg;
7055
7056   inferior_ptid = *saved_ptid_ptr;
7057   xfree (arg);
7058 }
7059
7060 /* Save the value of inferior_ptid so that it may be restored by a
7061    later call to do_cleanups().  Returns the struct cleanup pointer
7062    needed for later doing the cleanup.  */
7063
7064 struct cleanup *
7065 save_inferior_ptid (void)
7066 {
7067   ptid_t *saved_ptid_ptr;
7068
7069   saved_ptid_ptr = xmalloc (sizeof (ptid_t));
7070   *saved_ptid_ptr = inferior_ptid;
7071   return make_cleanup (restore_inferior_ptid, saved_ptid_ptr);
7072 }
7073 \f
7074
7075 /* User interface for reverse debugging:
7076    Set exec-direction / show exec-direction commands
7077    (returns error unless target implements to_set_exec_direction method).  */
7078
7079 int execution_direction = EXEC_FORWARD;
7080 static const char exec_forward[] = "forward";
7081 static const char exec_reverse[] = "reverse";
7082 static const char *exec_direction = exec_forward;
7083 static const char *const exec_direction_names[] = {
7084   exec_forward,
7085   exec_reverse,
7086   NULL
7087 };
7088
7089 static void
7090 set_exec_direction_func (char *args, int from_tty,
7091                          struct cmd_list_element *cmd)
7092 {
7093   if (target_can_execute_reverse)
7094     {
7095       if (!strcmp (exec_direction, exec_forward))
7096         execution_direction = EXEC_FORWARD;
7097       else if (!strcmp (exec_direction, exec_reverse))
7098         execution_direction = EXEC_REVERSE;
7099     }
7100   else
7101     {
7102       exec_direction = exec_forward;
7103       error (_("Target does not support this operation."));
7104     }
7105 }
7106
7107 static void
7108 show_exec_direction_func (struct ui_file *out, int from_tty,
7109                           struct cmd_list_element *cmd, const char *value)
7110 {
7111   switch (execution_direction) {
7112   case EXEC_FORWARD:
7113     fprintf_filtered (out, _("Forward.\n"));
7114     break;
7115   case EXEC_REVERSE:
7116     fprintf_filtered (out, _("Reverse.\n"));
7117     break;
7118   default:
7119     internal_error (__FILE__, __LINE__,
7120                     _("bogus execution_direction value: %d"),
7121                     (int) execution_direction);
7122   }
7123 }
7124
7125 /* User interface for non-stop mode.  */
7126
7127 int non_stop = 0;
7128
7129 static void
7130 set_non_stop (char *args, int from_tty,
7131               struct cmd_list_element *c)
7132 {
7133   if (target_has_execution)
7134     {
7135       non_stop_1 = non_stop;
7136       error (_("Cannot change this setting while the inferior is running."));
7137     }
7138
7139   non_stop = non_stop_1;
7140 }
7141
7142 static void
7143 show_non_stop (struct ui_file *file, int from_tty,
7144                struct cmd_list_element *c, const char *value)
7145 {
7146   fprintf_filtered (file,
7147                     _("Controlling the inferior in non-stop mode is %s.\n"),
7148                     value);
7149 }
7150
7151 static void
7152 show_schedule_multiple (struct ui_file *file, int from_tty,
7153                         struct cmd_list_element *c, const char *value)
7154 {
7155   fprintf_filtered (file, _("Resuming the execution of threads "
7156                             "of all processes is %s.\n"), value);
7157 }
7158
7159 /* Implementation of `siginfo' variable.  */
7160
7161 static const struct internalvar_funcs siginfo_funcs =
7162 {
7163   siginfo_make_value,
7164   NULL,
7165   NULL
7166 };
7167
7168 void
7169 _initialize_infrun (void)
7170 {
7171   int i;
7172   int numsigs;
7173   struct cmd_list_element *c;
7174
7175   add_info ("signals", signals_info, _("\
7176 What debugger does when program gets various signals.\n\
7177 Specify a signal as argument to print info on that signal only."));
7178   add_info_alias ("handle", "signals", 0);
7179
7180   c = add_com ("handle", class_run, handle_command, _("\
7181 Specify how to handle signals.\n\
7182 Usage: handle SIGNAL [ACTIONS]\n\
7183 Args are signals and actions to apply to those signals.\n\
7184 If no actions are specified, the current settings for the specified signals\n\
7185 will be displayed instead.\n\
7186 \n\
7187 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
7188 from 1-15 are allowed for compatibility with old versions of GDB.\n\
7189 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
7190 The special arg \"all\" is recognized to mean all signals except those\n\
7191 used by the debugger, typically SIGTRAP and SIGINT.\n\
7192 \n\
7193 Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
7194 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
7195 Stop means reenter debugger if this signal happens (implies print).\n\
7196 Print means print a message if this signal happens.\n\
7197 Pass means let program see this signal; otherwise program doesn't know.\n\
7198 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
7199 Pass and Stop may be combined.\n\
7200 \n\
7201 Multiple signals may be specified.  Signal numbers and signal names\n\
7202 may be interspersed with actions, with the actions being performed for\n\
7203 all signals cumulatively specified."));
7204   set_cmd_completer (c, handle_completer);
7205
7206   if (xdb_commands)
7207     {
7208       add_com ("lz", class_info, signals_info, _("\
7209 What debugger does when program gets various signals.\n\
7210 Specify a signal as argument to print info on that signal only."));
7211       add_com ("z", class_run, xdb_handle_command, _("\
7212 Specify how to handle a signal.\n\
7213 Args are signals and actions to apply to those signals.\n\
7214 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
7215 from 1-15 are allowed for compatibility with old versions of GDB.\n\
7216 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
7217 The special arg \"all\" is recognized to mean all signals except those\n\
7218 used by the debugger, typically SIGTRAP and SIGINT.\n\
7219 Recognized actions include \"s\" (toggles between stop and nostop),\n\
7220 \"r\" (toggles between print and noprint), \"i\" (toggles between pass and \
7221 nopass), \"Q\" (noprint)\n\
7222 Stop means reenter debugger if this signal happens (implies print).\n\
7223 Print means print a message if this signal happens.\n\
7224 Pass means let program see this signal; otherwise program doesn't know.\n\
7225 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
7226 Pass and Stop may be combined."));
7227     }
7228
7229   if (!dbx_commands)
7230     stop_command = add_cmd ("stop", class_obscure,
7231                             not_just_help_class_command, _("\
7232 There is no `stop' command, but you can set a hook on `stop'.\n\
7233 This allows you to set a list of commands to be run each time execution\n\
7234 of the program stops."), &cmdlist);
7235
7236   add_setshow_zuinteger_cmd ("infrun", class_maintenance, &debug_infrun, _("\
7237 Set inferior debugging."), _("\
7238 Show inferior debugging."), _("\
7239 When non-zero, inferior specific debugging is enabled."),
7240                              NULL,
7241                              show_debug_infrun,
7242                              &setdebuglist, &showdebuglist);
7243
7244   add_setshow_boolean_cmd ("displaced", class_maintenance,
7245                            &debug_displaced, _("\
7246 Set displaced stepping debugging."), _("\
7247 Show displaced stepping debugging."), _("\
7248 When non-zero, displaced stepping specific debugging is enabled."),
7249                             NULL,
7250                             show_debug_displaced,
7251                             &setdebuglist, &showdebuglist);
7252
7253   add_setshow_boolean_cmd ("non-stop", no_class,
7254                            &non_stop_1, _("\
7255 Set whether gdb controls the inferior in non-stop mode."), _("\
7256 Show whether gdb controls the inferior in non-stop mode."), _("\
7257 When debugging a multi-threaded program and this setting is\n\
7258 off (the default, also called all-stop mode), when one thread stops\n\
7259 (for a breakpoint, watchpoint, exception, or similar events), GDB stops\n\
7260 all other threads in the program while you interact with the thread of\n\
7261 interest.  When you continue or step a thread, you can allow the other\n\
7262 threads to run, or have them remain stopped, but while you inspect any\n\
7263 thread's state, all threads stop.\n\
7264 \n\
7265 In non-stop mode, when one thread stops, other threads can continue\n\
7266 to run freely.  You'll be able to step each thread independently,\n\
7267 leave it stopped or free to run as needed."),
7268                            set_non_stop,
7269                            show_non_stop,
7270                            &setlist,
7271                            &showlist);
7272
7273   numsigs = (int) GDB_SIGNAL_LAST;
7274   signal_stop = (unsigned char *) xmalloc (sizeof (signal_stop[0]) * numsigs);
7275   signal_print = (unsigned char *)
7276     xmalloc (sizeof (signal_print[0]) * numsigs);
7277   signal_program = (unsigned char *)
7278     xmalloc (sizeof (signal_program[0]) * numsigs);
7279   signal_catch = (unsigned char *)
7280     xmalloc (sizeof (signal_catch[0]) * numsigs);
7281   signal_pass = (unsigned char *)
7282     xmalloc (sizeof (signal_program[0]) * numsigs);
7283   for (i = 0; i < numsigs; i++)
7284     {
7285       signal_stop[i] = 1;
7286       signal_print[i] = 1;
7287       signal_program[i] = 1;
7288       signal_catch[i] = 0;
7289     }
7290
7291   /* Signals caused by debugger's own actions
7292      should not be given to the program afterwards.  */
7293   signal_program[GDB_SIGNAL_TRAP] = 0;
7294   signal_program[GDB_SIGNAL_INT] = 0;
7295
7296   /* Signals that are not errors should not normally enter the debugger.  */
7297   signal_stop[GDB_SIGNAL_ALRM] = 0;
7298   signal_print[GDB_SIGNAL_ALRM] = 0;
7299   signal_stop[GDB_SIGNAL_VTALRM] = 0;
7300   signal_print[GDB_SIGNAL_VTALRM] = 0;
7301   signal_stop[GDB_SIGNAL_PROF] = 0;
7302   signal_print[GDB_SIGNAL_PROF] = 0;
7303   signal_stop[GDB_SIGNAL_CHLD] = 0;
7304   signal_print[GDB_SIGNAL_CHLD] = 0;
7305   signal_stop[GDB_SIGNAL_IO] = 0;
7306   signal_print[GDB_SIGNAL_IO] = 0;
7307   signal_stop[GDB_SIGNAL_POLL] = 0;
7308   signal_print[GDB_SIGNAL_POLL] = 0;
7309   signal_stop[GDB_SIGNAL_URG] = 0;
7310   signal_print[GDB_SIGNAL_URG] = 0;
7311   signal_stop[GDB_SIGNAL_WINCH] = 0;
7312   signal_print[GDB_SIGNAL_WINCH] = 0;
7313   signal_stop[GDB_SIGNAL_PRIO] = 0;
7314   signal_print[GDB_SIGNAL_PRIO] = 0;
7315
7316   /* These signals are used internally by user-level thread
7317      implementations.  (See signal(5) on Solaris.)  Like the above
7318      signals, a healthy program receives and handles them as part of
7319      its normal operation.  */
7320   signal_stop[GDB_SIGNAL_LWP] = 0;
7321   signal_print[GDB_SIGNAL_LWP] = 0;
7322   signal_stop[GDB_SIGNAL_WAITING] = 0;
7323   signal_print[GDB_SIGNAL_WAITING] = 0;
7324   signal_stop[GDB_SIGNAL_CANCEL] = 0;
7325   signal_print[GDB_SIGNAL_CANCEL] = 0;
7326
7327   /* Update cached state.  */
7328   signal_cache_update (-1);
7329
7330   add_setshow_zinteger_cmd ("stop-on-solib-events", class_support,
7331                             &stop_on_solib_events, _("\
7332 Set stopping for shared library events."), _("\
7333 Show stopping for shared library events."), _("\
7334 If nonzero, gdb will give control to the user when the dynamic linker\n\
7335 notifies gdb of shared library events.  The most common event of interest\n\
7336 to the user would be loading/unloading of a new library."),
7337                             NULL,
7338                             show_stop_on_solib_events,
7339                             &setlist, &showlist);
7340
7341   add_setshow_enum_cmd ("follow-fork-mode", class_run,
7342                         follow_fork_mode_kind_names,
7343                         &follow_fork_mode_string, _("\
7344 Set debugger response to a program call of fork or vfork."), _("\
7345 Show debugger response to a program call of fork or vfork."), _("\
7346 A fork or vfork creates a new process.  follow-fork-mode can be:\n\
7347   parent  - the original process is debugged after a fork\n\
7348   child   - the new process is debugged after a fork\n\
7349 The unfollowed process will continue to run.\n\
7350 By default, the debugger will follow the parent process."),
7351                         NULL,
7352                         show_follow_fork_mode_string,
7353                         &setlist, &showlist);
7354
7355   add_setshow_enum_cmd ("follow-exec-mode", class_run,
7356                         follow_exec_mode_names,
7357                         &follow_exec_mode_string, _("\
7358 Set debugger response to a program call of exec."), _("\
7359 Show debugger response to a program call of exec."), _("\
7360 An exec call replaces the program image of a process.\n\
7361 \n\
7362 follow-exec-mode can be:\n\
7363 \n\
7364   new - the debugger creates a new inferior and rebinds the process\n\
7365 to this new inferior.  The program the process was running before\n\
7366 the exec call can be restarted afterwards by restarting the original\n\
7367 inferior.\n\
7368 \n\
7369   same - the debugger keeps the process bound to the same inferior.\n\
7370 The new executable image replaces the previous executable loaded in\n\
7371 the inferior.  Restarting the inferior after the exec call restarts\n\
7372 the executable the process was running after the exec call.\n\
7373 \n\
7374 By default, the debugger will use the same inferior."),
7375                         NULL,
7376                         show_follow_exec_mode_string,
7377                         &setlist, &showlist);
7378
7379   add_setshow_enum_cmd ("scheduler-locking", class_run, 
7380                         scheduler_enums, &scheduler_mode, _("\
7381 Set mode for locking scheduler during execution."), _("\
7382 Show mode for locking scheduler during execution."), _("\
7383 off  == no locking (threads may preempt at any time)\n\
7384 on   == full locking (no thread except the current thread may run)\n\
7385 step == scheduler locked during every single-step operation.\n\
7386         In this mode, no other thread may run during a step command.\n\
7387         Other threads may run while stepping over a function call ('next')."), 
7388                         set_schedlock_func,     /* traps on target vector */
7389                         show_scheduler_mode,
7390                         &setlist, &showlist);
7391
7392   add_setshow_boolean_cmd ("schedule-multiple", class_run, &sched_multi, _("\
7393 Set mode for resuming threads of all processes."), _("\
7394 Show mode for resuming threads of all processes."), _("\
7395 When on, execution commands (such as 'continue' or 'next') resume all\n\
7396 threads of all processes.  When off (which is the default), execution\n\
7397 commands only resume the threads of the current process.  The set of\n\
7398 threads that are resumed is further refined by the scheduler-locking\n\
7399 mode (see help set scheduler-locking)."),
7400                            NULL,
7401                            show_schedule_multiple,
7402                            &setlist, &showlist);
7403
7404   add_setshow_boolean_cmd ("step-mode", class_run, &step_stop_if_no_debug, _("\
7405 Set mode of the step operation."), _("\
7406 Show mode of the step operation."), _("\
7407 When set, doing a step over a function without debug line information\n\
7408 will stop at the first instruction of that function. Otherwise, the\n\
7409 function is skipped and the step command stops at a different source line."),
7410                            NULL,
7411                            show_step_stop_if_no_debug,
7412                            &setlist, &showlist);
7413
7414   add_setshow_auto_boolean_cmd ("displaced-stepping", class_run,
7415                                 &can_use_displaced_stepping, _("\
7416 Set debugger's willingness to use displaced stepping."), _("\
7417 Show debugger's willingness to use displaced stepping."), _("\
7418 If on, gdb will use displaced stepping to step over breakpoints if it is\n\
7419 supported by the target architecture.  If off, gdb will not use displaced\n\
7420 stepping to step over breakpoints, even if such is supported by the target\n\
7421 architecture.  If auto (which is the default), gdb will use displaced stepping\n\
7422 if the target architecture supports it and non-stop mode is active, but will not\n\
7423 use it in all-stop mode (see help set non-stop)."),
7424                                 NULL,
7425                                 show_can_use_displaced_stepping,
7426                                 &setlist, &showlist);
7427
7428   add_setshow_enum_cmd ("exec-direction", class_run, exec_direction_names,
7429                         &exec_direction, _("Set direction of execution.\n\
7430 Options are 'forward' or 'reverse'."),
7431                         _("Show direction of execution (forward/reverse)."),
7432                         _("Tells gdb whether to execute forward or backward."),
7433                         set_exec_direction_func, show_exec_direction_func,
7434                         &setlist, &showlist);
7435
7436   /* Set/show detach-on-fork: user-settable mode.  */
7437
7438   add_setshow_boolean_cmd ("detach-on-fork", class_run, &detach_fork, _("\
7439 Set whether gdb will detach the child of a fork."), _("\
7440 Show whether gdb will detach the child of a fork."), _("\
7441 Tells gdb whether to detach the child of a fork."),
7442                            NULL, NULL, &setlist, &showlist);
7443
7444   /* Set/show disable address space randomization mode.  */
7445
7446   add_setshow_boolean_cmd ("disable-randomization", class_support,
7447                            &disable_randomization, _("\
7448 Set disabling of debuggee's virtual address space randomization."), _("\
7449 Show disabling of debuggee's virtual address space randomization."), _("\
7450 When this mode is on (which is the default), randomization of the virtual\n\
7451 address space is disabled.  Standalone programs run with the randomization\n\
7452 enabled by default on some platforms."),
7453                            &set_disable_randomization,
7454                            &show_disable_randomization,
7455                            &setlist, &showlist);
7456
7457   /* ptid initializations */
7458   inferior_ptid = null_ptid;
7459   target_last_wait_ptid = minus_one_ptid;
7460
7461   observer_attach_thread_ptid_changed (infrun_thread_ptid_changed);
7462   observer_attach_thread_stop_requested (infrun_thread_stop_requested);
7463   observer_attach_thread_exit (infrun_thread_thread_exit);
7464   observer_attach_inferior_exit (infrun_inferior_exit);
7465
7466   /* Explicitly create without lookup, since that tries to create a
7467      value with a void typed value, and when we get here, gdbarch
7468      isn't initialized yet.  At this point, we're quite sure there
7469      isn't another convenience variable of the same name.  */
7470   create_internalvar_type_lazy ("_siginfo", &siginfo_funcs, NULL);
7471
7472   add_setshow_boolean_cmd ("observer", no_class,
7473                            &observer_mode_1, _("\
7474 Set whether gdb controls the inferior in observer mode."), _("\
7475 Show whether gdb controls the inferior in observer mode."), _("\
7476 In observer mode, GDB can get data from the inferior, but not\n\
7477 affect its execution.  Registers and memory may not be changed,\n\
7478 breakpoints may not be set, and the program cannot be interrupted\n\
7479 or signalled."),
7480                            set_observer_mode,
7481                            show_observer_mode,
7482                            &setlist,
7483                            &showlist);
7484 }