main: Don't add int to string
[external/binutils.git] / gdb / infrun.c
1 /* Target-struct-independent code to start (run) and stop an inferior
2    process.
3
4    Copyright (C) 1986-2017 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 "infrun.h"
23 #include <ctype.h>
24 #include "symtab.h"
25 #include "frame.h"
26 #include "inferior.h"
27 #include "breakpoint.h"
28 #include "gdb_wait.h"
29 #include "gdbcore.h"
30 #include "gdbcmd.h"
31 #include "cli/cli-script.h"
32 #include "target.h"
33 #include "gdbthread.h"
34 #include "annotate.h"
35 #include "symfile.h"
36 #include "top.h"
37 #include <signal.h>
38 #include "inf-loop.h"
39 #include "regcache.h"
40 #include "value.h"
41 #include "observer.h"
42 #include "language.h"
43 #include "solib.h"
44 #include "main.h"
45 #include "dictionary.h"
46 #include "block.h"
47 #include "mi/mi-common.h"
48 #include "event-top.h"
49 #include "record.h"
50 #include "record-full.h"
51 #include "inline-frame.h"
52 #include "jit.h"
53 #include "tracepoint.h"
54 #include "continuations.h"
55 #include "interps.h"
56 #include "skip.h"
57 #include "probe.h"
58 #include "objfiles.h"
59 #include "completer.h"
60 #include "target-descriptions.h"
61 #include "target-dcache.h"
62 #include "terminal.h"
63 #include "solist.h"
64 #include "event-loop.h"
65 #include "thread-fsm.h"
66 #include "common/enum-flags.h"
67 #include "progspace-and-thread.h"
68 #include "common/gdb_optional.h"
69
70 /* Prototypes for local functions */
71
72 static void signals_info (char *, int);
73
74 static void handle_command (char *, int);
75
76 static void sig_print_info (enum gdb_signal);
77
78 static void sig_print_header (void);
79
80 static void resume_cleanups (void *);
81
82 static int hook_stop_stub (void *);
83
84 static int restore_selected_frame (void *);
85
86 static int follow_fork (void);
87
88 static int follow_fork_inferior (int follow_child, int detach_fork);
89
90 static void follow_inferior_reset_breakpoints (void);
91
92 static void set_schedlock_func (char *args, int from_tty,
93                                 struct cmd_list_element *c);
94
95 static int currently_stepping (struct thread_info *tp);
96
97 void _initialize_infrun (void);
98
99 void nullify_last_target_wait_ptid (void);
100
101 static void insert_hp_step_resume_breakpoint_at_frame (struct frame_info *);
102
103 static void insert_step_resume_breakpoint_at_caller (struct frame_info *);
104
105 static void insert_longjmp_resume_breakpoint (struct gdbarch *, CORE_ADDR);
106
107 static int maybe_software_singlestep (struct gdbarch *gdbarch, CORE_ADDR pc);
108
109 /* Asynchronous signal handler registered as event loop source for
110    when we have pending events ready to be passed to the core.  */
111 static struct async_event_handler *infrun_async_inferior_event_token;
112
113 /* Stores whether infrun_async was previously enabled or disabled.
114    Starts off as -1, indicating "never enabled/disabled".  */
115 static int infrun_is_async = -1;
116
117 /* See infrun.h.  */
118
119 void
120 infrun_async (int enable)
121 {
122   if (infrun_is_async != enable)
123     {
124       infrun_is_async = enable;
125
126       if (debug_infrun)
127         fprintf_unfiltered (gdb_stdlog,
128                             "infrun: infrun_async(%d)\n",
129                             enable);
130
131       if (enable)
132         mark_async_event_handler (infrun_async_inferior_event_token);
133       else
134         clear_async_event_handler (infrun_async_inferior_event_token);
135     }
136 }
137
138 /* See infrun.h.  */
139
140 void
141 mark_infrun_async_event_handler (void)
142 {
143   mark_async_event_handler (infrun_async_inferior_event_token);
144 }
145
146 /* When set, stop the 'step' command if we enter a function which has
147    no line number information.  The normal behavior is that we step
148    over such function.  */
149 int step_stop_if_no_debug = 0;
150 static void
151 show_step_stop_if_no_debug (struct ui_file *file, int from_tty,
152                             struct cmd_list_element *c, const char *value)
153 {
154   fprintf_filtered (file, _("Mode of the step operation is %s.\n"), value);
155 }
156
157 /* proceed and normal_stop use this to notify the user when the
158    inferior stopped in a different thread than it had been running
159    in.  */
160
161 static ptid_t previous_inferior_ptid;
162
163 /* If set (default for legacy reasons), when following a fork, GDB
164    will detach from one of the fork branches, child or parent.
165    Exactly which branch is detached depends on 'set follow-fork-mode'
166    setting.  */
167
168 static int detach_fork = 1;
169
170 int debug_displaced = 0;
171 static void
172 show_debug_displaced (struct ui_file *file, int from_tty,
173                       struct cmd_list_element *c, const char *value)
174 {
175   fprintf_filtered (file, _("Displace stepping debugging is %s.\n"), value);
176 }
177
178 unsigned int debug_infrun = 0;
179 static void
180 show_debug_infrun (struct ui_file *file, int from_tty,
181                    struct cmd_list_element *c, const char *value)
182 {
183   fprintf_filtered (file, _("Inferior debugging is %s.\n"), value);
184 }
185
186
187 /* Support for disabling address space randomization.  */
188
189 int disable_randomization = 1;
190
191 static void
192 show_disable_randomization (struct ui_file *file, int from_tty,
193                             struct cmd_list_element *c, const char *value)
194 {
195   if (target_supports_disable_randomization ())
196     fprintf_filtered (file,
197                       _("Disabling randomization of debuggee's "
198                         "virtual address space is %s.\n"),
199                       value);
200   else
201     fputs_filtered (_("Disabling randomization of debuggee's "
202                       "virtual address space is unsupported on\n"
203                       "this platform.\n"), file);
204 }
205
206 static void
207 set_disable_randomization (char *args, int from_tty,
208                            struct cmd_list_element *c)
209 {
210   if (!target_supports_disable_randomization ())
211     error (_("Disabling randomization of debuggee's "
212              "virtual address space is unsupported on\n"
213              "this platform."));
214 }
215
216 /* User interface for non-stop mode.  */
217
218 int non_stop = 0;
219 static int non_stop_1 = 0;
220
221 static void
222 set_non_stop (char *args, int from_tty,
223               struct cmd_list_element *c)
224 {
225   if (target_has_execution)
226     {
227       non_stop_1 = non_stop;
228       error (_("Cannot change this setting while the inferior is running."));
229     }
230
231   non_stop = non_stop_1;
232 }
233
234 static void
235 show_non_stop (struct ui_file *file, int from_tty,
236                struct cmd_list_element *c, const char *value)
237 {
238   fprintf_filtered (file,
239                     _("Controlling the inferior in non-stop mode is %s.\n"),
240                     value);
241 }
242
243 /* "Observer mode" is somewhat like a more extreme version of
244    non-stop, in which all GDB operations that might affect the
245    target's execution have been disabled.  */
246
247 int observer_mode = 0;
248 static int observer_mode_1 = 0;
249
250 static void
251 set_observer_mode (char *args, int from_tty,
252                    struct cmd_list_element *c)
253 {
254   if (target_has_execution)
255     {
256       observer_mode_1 = observer_mode;
257       error (_("Cannot change this setting while the inferior is running."));
258     }
259
260   observer_mode = observer_mode_1;
261
262   may_write_registers = !observer_mode;
263   may_write_memory = !observer_mode;
264   may_insert_breakpoints = !observer_mode;
265   may_insert_tracepoints = !observer_mode;
266   /* We can insert fast tracepoints in or out of observer mode,
267      but enable them if we're going into this mode.  */
268   if (observer_mode)
269     may_insert_fast_tracepoints = 1;
270   may_stop = !observer_mode;
271   update_target_permissions ();
272
273   /* Going *into* observer mode we must force non-stop, then
274      going out we leave it that way.  */
275   if (observer_mode)
276     {
277       pagination_enabled = 0;
278       non_stop = non_stop_1 = 1;
279     }
280
281   if (from_tty)
282     printf_filtered (_("Observer mode is now %s.\n"),
283                      (observer_mode ? "on" : "off"));
284 }
285
286 static void
287 show_observer_mode (struct ui_file *file, int from_tty,
288                     struct cmd_list_element *c, const char *value)
289 {
290   fprintf_filtered (file, _("Observer mode is %s.\n"), value);
291 }
292
293 /* This updates the value of observer mode based on changes in
294    permissions.  Note that we are deliberately ignoring the values of
295    may-write-registers and may-write-memory, since the user may have
296    reason to enable these during a session, for instance to turn on a
297    debugging-related global.  */
298
299 void
300 update_observer_mode (void)
301 {
302   int newval;
303
304   newval = (!may_insert_breakpoints
305             && !may_insert_tracepoints
306             && may_insert_fast_tracepoints
307             && !may_stop
308             && non_stop);
309
310   /* Let the user know if things change.  */
311   if (newval != observer_mode)
312     printf_filtered (_("Observer mode is now %s.\n"),
313                      (newval ? "on" : "off"));
314
315   observer_mode = observer_mode_1 = newval;
316 }
317
318 /* Tables of how to react to signals; the user sets them.  */
319
320 static unsigned char *signal_stop;
321 static unsigned char *signal_print;
322 static unsigned char *signal_program;
323
324 /* Table of signals that are registered with "catch signal".  A
325    non-zero entry indicates that the signal is caught by some "catch
326    signal" command.  This has size GDB_SIGNAL_LAST, to accommodate all
327    signals.  */
328 static unsigned char *signal_catch;
329
330 /* Table of signals that the target may silently handle.
331    This is automatically determined from the flags above,
332    and simply cached here.  */
333 static unsigned char *signal_pass;
334
335 #define SET_SIGS(nsigs,sigs,flags) \
336   do { \
337     int signum = (nsigs); \
338     while (signum-- > 0) \
339       if ((sigs)[signum]) \
340         (flags)[signum] = 1; \
341   } while (0)
342
343 #define UNSET_SIGS(nsigs,sigs,flags) \
344   do { \
345     int signum = (nsigs); \
346     while (signum-- > 0) \
347       if ((sigs)[signum]) \
348         (flags)[signum] = 0; \
349   } while (0)
350
351 /* Update the target's copy of SIGNAL_PROGRAM.  The sole purpose of
352    this function is to avoid exporting `signal_program'.  */
353
354 void
355 update_signals_program_target (void)
356 {
357   target_program_signals ((int) GDB_SIGNAL_LAST, signal_program);
358 }
359
360 /* Value to pass to target_resume() to cause all threads to resume.  */
361
362 #define RESUME_ALL minus_one_ptid
363
364 /* Command list pointer for the "stop" placeholder.  */
365
366 static struct cmd_list_element *stop_command;
367
368 /* Nonzero if we want to give control to the user when we're notified
369    of shared library events by the dynamic linker.  */
370 int stop_on_solib_events;
371
372 /* Enable or disable optional shared library event breakpoints
373    as appropriate when the above flag is changed.  */
374
375 static void
376 set_stop_on_solib_events (char *args, int from_tty, struct cmd_list_element *c)
377 {
378   update_solib_breakpoints ();
379 }
380
381 static void
382 show_stop_on_solib_events (struct ui_file *file, int from_tty,
383                            struct cmd_list_element *c, const char *value)
384 {
385   fprintf_filtered (file, _("Stopping for shared library events is %s.\n"),
386                     value);
387 }
388
389 /* Nonzero after stop if current stack frame should be printed.  */
390
391 static int stop_print_frame;
392
393 /* This is a cached copy of the pid/waitstatus of the last event
394    returned by target_wait()/deprecated_target_wait_hook().  This
395    information is returned by get_last_target_status().  */
396 static ptid_t target_last_wait_ptid;
397 static struct target_waitstatus target_last_waitstatus;
398
399 static void context_switch (ptid_t ptid);
400
401 void init_thread_stepping_state (struct thread_info *tss);
402
403 static const char follow_fork_mode_child[] = "child";
404 static const char follow_fork_mode_parent[] = "parent";
405
406 static const char *const follow_fork_mode_kind_names[] = {
407   follow_fork_mode_child,
408   follow_fork_mode_parent,
409   NULL
410 };
411
412 static const char *follow_fork_mode_string = follow_fork_mode_parent;
413 static void
414 show_follow_fork_mode_string (struct ui_file *file, int from_tty,
415                               struct cmd_list_element *c, const char *value)
416 {
417   fprintf_filtered (file,
418                     _("Debugger response to a program "
419                       "call of fork or vfork is \"%s\".\n"),
420                     value);
421 }
422 \f
423
424 /* Handle changes to the inferior list based on the type of fork,
425    which process is being followed, and whether the other process
426    should be detached.  On entry inferior_ptid must be the ptid of
427    the fork parent.  At return inferior_ptid is the ptid of the
428    followed inferior.  */
429
430 static int
431 follow_fork_inferior (int follow_child, int detach_fork)
432 {
433   int has_vforked;
434   ptid_t parent_ptid, child_ptid;
435
436   has_vforked = (inferior_thread ()->pending_follow.kind
437                  == TARGET_WAITKIND_VFORKED);
438   parent_ptid = inferior_ptid;
439   child_ptid = inferior_thread ()->pending_follow.value.related_pid;
440
441   if (has_vforked
442       && !non_stop /* Non-stop always resumes both branches.  */
443       && current_ui->prompt_state == PROMPT_BLOCKED
444       && !(follow_child || detach_fork || sched_multi))
445     {
446       /* The parent stays blocked inside the vfork syscall until the
447          child execs or exits.  If we don't let the child run, then
448          the parent stays blocked.  If we're telling the parent to run
449          in the foreground, the user will not be able to ctrl-c to get
450          back the terminal, effectively hanging the debug session.  */
451       fprintf_filtered (gdb_stderr, _("\
452 Can not resume the parent process over vfork in the foreground while\n\
453 holding the child stopped.  Try \"set detach-on-fork\" or \
454 \"set schedule-multiple\".\n"));
455       /* FIXME output string > 80 columns.  */
456       return 1;
457     }
458
459   if (!follow_child)
460     {
461       /* Detach new forked process?  */
462       if (detach_fork)
463         {
464           /* Before detaching from the child, remove all breakpoints
465              from it.  If we forked, then this has already been taken
466              care of by infrun.c.  If we vforked however, any
467              breakpoint inserted in the parent is visible in the
468              child, even those added while stopped in a vfork
469              catchpoint.  This will remove the breakpoints from the
470              parent also, but they'll be reinserted below.  */
471           if (has_vforked)
472             {
473               /* Keep breakpoints list in sync.  */
474               remove_breakpoints_pid (ptid_get_pid (inferior_ptid));
475             }
476
477           if (info_verbose || debug_infrun)
478             {
479               /* Ensure that we have a process ptid.  */
480               ptid_t process_ptid = pid_to_ptid (ptid_get_pid (child_ptid));
481
482               target_terminal_ours_for_output ();
483               fprintf_filtered (gdb_stdlog,
484                                 _("Detaching after %s from child %s.\n"),
485                                 has_vforked ? "vfork" : "fork",
486                                 target_pid_to_str (process_ptid));
487             }
488         }
489       else
490         {
491           struct inferior *parent_inf, *child_inf;
492
493           /* Add process to GDB's tables.  */
494           child_inf = add_inferior (ptid_get_pid (child_ptid));
495
496           parent_inf = current_inferior ();
497           child_inf->attach_flag = parent_inf->attach_flag;
498           copy_terminal_info (child_inf, parent_inf);
499           child_inf->gdbarch = parent_inf->gdbarch;
500           copy_inferior_target_desc_info (child_inf, parent_inf);
501
502           scoped_restore_current_pspace_and_thread restore_pspace_thread;
503
504           inferior_ptid = child_ptid;
505           add_thread (inferior_ptid);
506           set_current_inferior (child_inf);
507           child_inf->symfile_flags = SYMFILE_NO_READ;
508
509           /* If this is a vfork child, then the address-space is
510              shared with the parent.  */
511           if (has_vforked)
512             {
513               child_inf->pspace = parent_inf->pspace;
514               child_inf->aspace = parent_inf->aspace;
515
516               /* The parent will be frozen until the child is done
517                  with the shared region.  Keep track of the
518                  parent.  */
519               child_inf->vfork_parent = parent_inf;
520               child_inf->pending_detach = 0;
521               parent_inf->vfork_child = child_inf;
522               parent_inf->pending_detach = 0;
523             }
524           else
525             {
526               child_inf->aspace = new_address_space ();
527               child_inf->pspace = add_program_space (child_inf->aspace);
528               child_inf->removable = 1;
529               set_current_program_space (child_inf->pspace);
530               clone_program_space (child_inf->pspace, parent_inf->pspace);
531
532               /* Let the shared library layer (e.g., solib-svr4) learn
533                  about this new process, relocate the cloned exec, pull
534                  in shared libraries, and install the solib event
535                  breakpoint.  If a "cloned-VM" event was propagated
536                  better throughout the core, this wouldn't be
537                  required.  */
538               solib_create_inferior_hook (0);
539             }
540         }
541
542       if (has_vforked)
543         {
544           struct inferior *parent_inf;
545
546           parent_inf = current_inferior ();
547
548           /* If we detached from the child, then we have to be careful
549              to not insert breakpoints in the parent until the child
550              is done with the shared memory region.  However, if we're
551              staying attached to the child, then we can and should
552              insert breakpoints, so that we can debug it.  A
553              subsequent child exec or exit is enough to know when does
554              the child stops using the parent's address space.  */
555           parent_inf->waiting_for_vfork_done = detach_fork;
556           parent_inf->pspace->breakpoints_not_allowed = detach_fork;
557         }
558     }
559   else
560     {
561       /* Follow the child.  */
562       struct inferior *parent_inf, *child_inf;
563       struct program_space *parent_pspace;
564
565       if (info_verbose || debug_infrun)
566         {
567           target_terminal_ours_for_output ();
568           fprintf_filtered (gdb_stdlog,
569                             _("Attaching after %s %s to child %s.\n"),
570                             target_pid_to_str (parent_ptid),
571                             has_vforked ? "vfork" : "fork",
572                             target_pid_to_str (child_ptid));
573         }
574
575       /* Add the new inferior first, so that the target_detach below
576          doesn't unpush the target.  */
577
578       child_inf = add_inferior (ptid_get_pid (child_ptid));
579
580       parent_inf = current_inferior ();
581       child_inf->attach_flag = parent_inf->attach_flag;
582       copy_terminal_info (child_inf, parent_inf);
583       child_inf->gdbarch = parent_inf->gdbarch;
584       copy_inferior_target_desc_info (child_inf, parent_inf);
585
586       parent_pspace = parent_inf->pspace;
587
588       /* If we're vforking, we want to hold on to the parent until the
589          child exits or execs.  At child exec or exit time we can
590          remove the old breakpoints from the parent and detach or
591          resume debugging it.  Otherwise, detach the parent now; we'll
592          want to reuse it's program/address spaces, but we can't set
593          them to the child before removing breakpoints from the
594          parent, otherwise, the breakpoints module could decide to
595          remove breakpoints from the wrong process (since they'd be
596          assigned to the same address space).  */
597
598       if (has_vforked)
599         {
600           gdb_assert (child_inf->vfork_parent == NULL);
601           gdb_assert (parent_inf->vfork_child == NULL);
602           child_inf->vfork_parent = parent_inf;
603           child_inf->pending_detach = 0;
604           parent_inf->vfork_child = child_inf;
605           parent_inf->pending_detach = detach_fork;
606           parent_inf->waiting_for_vfork_done = 0;
607         }
608       else if (detach_fork)
609         {
610           if (info_verbose || debug_infrun)
611             {
612               /* Ensure that we have a process ptid.  */
613               ptid_t process_ptid = pid_to_ptid (ptid_get_pid (child_ptid));
614
615               target_terminal_ours_for_output ();
616               fprintf_filtered (gdb_stdlog,
617                                 _("Detaching after fork from "
618                                   "child %s.\n"),
619                                 target_pid_to_str (process_ptid));
620             }
621
622           target_detach (NULL, 0);
623         }
624
625       /* Note that the detach above makes PARENT_INF dangling.  */
626
627       /* Add the child thread to the appropriate lists, and switch to
628          this new thread, before cloning the program space, and
629          informing the solib layer about this new process.  */
630
631       inferior_ptid = child_ptid;
632       add_thread (inferior_ptid);
633       set_current_inferior (child_inf);
634
635       /* If this is a vfork child, then the address-space is shared
636          with the parent.  If we detached from the parent, then we can
637          reuse the parent's program/address spaces.  */
638       if (has_vforked || detach_fork)
639         {
640           child_inf->pspace = parent_pspace;
641           child_inf->aspace = child_inf->pspace->aspace;
642         }
643       else
644         {
645           child_inf->aspace = new_address_space ();
646           child_inf->pspace = add_program_space (child_inf->aspace);
647           child_inf->removable = 1;
648           child_inf->symfile_flags = SYMFILE_NO_READ;
649           set_current_program_space (child_inf->pspace);
650           clone_program_space (child_inf->pspace, parent_pspace);
651
652           /* Let the shared library layer (e.g., solib-svr4) learn
653              about this new process, relocate the cloned exec, pull in
654              shared libraries, and install the solib event breakpoint.
655              If a "cloned-VM" event was propagated better throughout
656              the core, this wouldn't be required.  */
657           solib_create_inferior_hook (0);
658         }
659     }
660
661   return target_follow_fork (follow_child, detach_fork);
662 }
663
664 /* Tell the target to follow the fork we're stopped at.  Returns true
665    if the inferior should be resumed; false, if the target for some
666    reason decided it's best not to resume.  */
667
668 static int
669 follow_fork (void)
670 {
671   int follow_child = (follow_fork_mode_string == follow_fork_mode_child);
672   int should_resume = 1;
673   struct thread_info *tp;
674
675   /* Copy user stepping state to the new inferior thread.  FIXME: the
676      followed fork child thread should have a copy of most of the
677      parent thread structure's run control related fields, not just these.
678      Initialized to avoid "may be used uninitialized" warnings from gcc.  */
679   struct breakpoint *step_resume_breakpoint = NULL;
680   struct breakpoint *exception_resume_breakpoint = NULL;
681   CORE_ADDR step_range_start = 0;
682   CORE_ADDR step_range_end = 0;
683   struct frame_id step_frame_id = { 0 };
684   struct thread_fsm *thread_fsm = NULL;
685
686   if (!non_stop)
687     {
688       ptid_t wait_ptid;
689       struct target_waitstatus wait_status;
690
691       /* Get the last target status returned by target_wait().  */
692       get_last_target_status (&wait_ptid, &wait_status);
693
694       /* If not stopped at a fork event, then there's nothing else to
695          do.  */
696       if (wait_status.kind != TARGET_WAITKIND_FORKED
697           && wait_status.kind != TARGET_WAITKIND_VFORKED)
698         return 1;
699
700       /* Check if we switched over from WAIT_PTID, since the event was
701          reported.  */
702       if (!ptid_equal (wait_ptid, minus_one_ptid)
703           && !ptid_equal (inferior_ptid, wait_ptid))
704         {
705           /* We did.  Switch back to WAIT_PTID thread, to tell the
706              target to follow it (in either direction).  We'll
707              afterwards refuse to resume, and inform the user what
708              happened.  */
709           switch_to_thread (wait_ptid);
710           should_resume = 0;
711         }
712     }
713
714   tp = inferior_thread ();
715
716   /* If there were any forks/vforks that were caught and are now to be
717      followed, then do so now.  */
718   switch (tp->pending_follow.kind)
719     {
720     case TARGET_WAITKIND_FORKED:
721     case TARGET_WAITKIND_VFORKED:
722       {
723         ptid_t parent, child;
724
725         /* If the user did a next/step, etc, over a fork call,
726            preserve the stepping state in the fork child.  */
727         if (follow_child && should_resume)
728           {
729             step_resume_breakpoint = clone_momentary_breakpoint
730                                          (tp->control.step_resume_breakpoint);
731             step_range_start = tp->control.step_range_start;
732             step_range_end = tp->control.step_range_end;
733             step_frame_id = tp->control.step_frame_id;
734             exception_resume_breakpoint
735               = clone_momentary_breakpoint (tp->control.exception_resume_breakpoint);
736             thread_fsm = tp->thread_fsm;
737
738             /* For now, delete the parent's sr breakpoint, otherwise,
739                parent/child sr breakpoints are considered duplicates,
740                and the child version will not be installed.  Remove
741                this when the breakpoints module becomes aware of
742                inferiors and address spaces.  */
743             delete_step_resume_breakpoint (tp);
744             tp->control.step_range_start = 0;
745             tp->control.step_range_end = 0;
746             tp->control.step_frame_id = null_frame_id;
747             delete_exception_resume_breakpoint (tp);
748             tp->thread_fsm = NULL;
749           }
750
751         parent = inferior_ptid;
752         child = tp->pending_follow.value.related_pid;
753
754         /* Set up inferior(s) as specified by the caller, and tell the
755            target to do whatever is necessary to follow either parent
756            or child.  */
757         if (follow_fork_inferior (follow_child, detach_fork))
758           {
759             /* Target refused to follow, or there's some other reason
760                we shouldn't resume.  */
761             should_resume = 0;
762           }
763         else
764           {
765             /* This pending follow fork event is now handled, one way
766                or another.  The previous selected thread may be gone
767                from the lists by now, but if it is still around, need
768                to clear the pending follow request.  */
769             tp = find_thread_ptid (parent);
770             if (tp)
771               tp->pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
772
773             /* This makes sure we don't try to apply the "Switched
774                over from WAIT_PID" logic above.  */
775             nullify_last_target_wait_ptid ();
776
777             /* If we followed the child, switch to it...  */
778             if (follow_child)
779               {
780                 switch_to_thread (child);
781
782                 /* ... and preserve the stepping state, in case the
783                    user was stepping over the fork call.  */
784                 if (should_resume)
785                   {
786                     tp = inferior_thread ();
787                     tp->control.step_resume_breakpoint
788                       = step_resume_breakpoint;
789                     tp->control.step_range_start = step_range_start;
790                     tp->control.step_range_end = step_range_end;
791                     tp->control.step_frame_id = step_frame_id;
792                     tp->control.exception_resume_breakpoint
793                       = exception_resume_breakpoint;
794                     tp->thread_fsm = thread_fsm;
795                   }
796                 else
797                   {
798                     /* If we get here, it was because we're trying to
799                        resume from a fork catchpoint, but, the user
800                        has switched threads away from the thread that
801                        forked.  In that case, the resume command
802                        issued is most likely not applicable to the
803                        child, so just warn, and refuse to resume.  */
804                     warning (_("Not resuming: switched threads "
805                                "before following fork child."));
806                   }
807
808                 /* Reset breakpoints in the child as appropriate.  */
809                 follow_inferior_reset_breakpoints ();
810               }
811             else
812               switch_to_thread (parent);
813           }
814       }
815       break;
816     case TARGET_WAITKIND_SPURIOUS:
817       /* Nothing to follow.  */
818       break;
819     default:
820       internal_error (__FILE__, __LINE__,
821                       "Unexpected pending_follow.kind %d\n",
822                       tp->pending_follow.kind);
823       break;
824     }
825
826   return should_resume;
827 }
828
829 static void
830 follow_inferior_reset_breakpoints (void)
831 {
832   struct thread_info *tp = inferior_thread ();
833
834   /* Was there a step_resume breakpoint?  (There was if the user
835      did a "next" at the fork() call.)  If so, explicitly reset its
836      thread number.  Cloned step_resume breakpoints are disabled on
837      creation, so enable it here now that it is associated with the
838      correct thread.
839
840      step_resumes are a form of bp that are made to be per-thread.
841      Since we created the step_resume bp when the parent process
842      was being debugged, and now are switching to the child process,
843      from the breakpoint package's viewpoint, that's a switch of
844      "threads".  We must update the bp's notion of which thread
845      it is for, or it'll be ignored when it triggers.  */
846
847   if (tp->control.step_resume_breakpoint)
848     {
849       breakpoint_re_set_thread (tp->control.step_resume_breakpoint);
850       tp->control.step_resume_breakpoint->loc->enabled = 1;
851     }
852
853   /* Treat exception_resume breakpoints like step_resume breakpoints.  */
854   if (tp->control.exception_resume_breakpoint)
855     {
856       breakpoint_re_set_thread (tp->control.exception_resume_breakpoint);
857       tp->control.exception_resume_breakpoint->loc->enabled = 1;
858     }
859
860   /* Reinsert all breakpoints in the child.  The user may have set
861      breakpoints after catching the fork, in which case those
862      were never set in the child, but only in the parent.  This makes
863      sure the inserted breakpoints match the breakpoint list.  */
864
865   breakpoint_re_set ();
866   insert_breakpoints ();
867 }
868
869 /* The child has exited or execed: resume threads of the parent the
870    user wanted to be executing.  */
871
872 static int
873 proceed_after_vfork_done (struct thread_info *thread,
874                           void *arg)
875 {
876   int pid = * (int *) arg;
877
878   if (ptid_get_pid (thread->ptid) == pid
879       && is_running (thread->ptid)
880       && !is_executing (thread->ptid)
881       && !thread->stop_requested
882       && thread->suspend.stop_signal == GDB_SIGNAL_0)
883     {
884       if (debug_infrun)
885         fprintf_unfiltered (gdb_stdlog,
886                             "infrun: resuming vfork parent thread %s\n",
887                             target_pid_to_str (thread->ptid));
888
889       switch_to_thread (thread->ptid);
890       clear_proceed_status (0);
891       proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
892     }
893
894   return 0;
895 }
896
897 /* Save/restore inferior_ptid, current program space and current
898    inferior.  Only use this if the current context points at an exited
899    inferior (and therefore there's no current thread to save).  */
900 class scoped_restore_exited_inferior
901 {
902 public:
903   scoped_restore_exited_inferior ()
904     : m_saved_ptid (&inferior_ptid)
905   {}
906
907 private:
908   scoped_restore_tmpl<ptid_t> m_saved_ptid;
909   scoped_restore_current_program_space m_pspace;
910   scoped_restore_current_inferior m_inferior;
911 };
912
913 /* Called whenever we notice an exec or exit event, to handle
914    detaching or resuming a vfork parent.  */
915
916 static void
917 handle_vfork_child_exec_or_exit (int exec)
918 {
919   struct inferior *inf = current_inferior ();
920
921   if (inf->vfork_parent)
922     {
923       int resume_parent = -1;
924
925       /* This exec or exit marks the end of the shared memory region
926          between the parent and the child.  If the user wanted to
927          detach from the parent, now is the time.  */
928
929       if (inf->vfork_parent->pending_detach)
930         {
931           struct thread_info *tp;
932           struct program_space *pspace;
933           struct address_space *aspace;
934
935           /* follow-fork child, detach-on-fork on.  */
936
937           inf->vfork_parent->pending_detach = 0;
938
939           gdb::optional<scoped_restore_exited_inferior>
940             maybe_restore_inferior;
941           gdb::optional<scoped_restore_current_pspace_and_thread>
942             maybe_restore_thread;
943
944           /* If we're handling a child exit, then inferior_ptid points
945              at the inferior's pid, not to a thread.  */
946           if (!exec)
947             maybe_restore_inferior.emplace ();
948           else
949             maybe_restore_thread.emplace ();
950
951           /* We're letting loose of the parent.  */
952           tp = any_live_thread_of_process (inf->vfork_parent->pid);
953           switch_to_thread (tp->ptid);
954
955           /* We're about to detach from the parent, which implicitly
956              removes breakpoints from its address space.  There's a
957              catch here: we want to reuse the spaces for the child,
958              but, parent/child are still sharing the pspace at this
959              point, although the exec in reality makes the kernel give
960              the child a fresh set of new pages.  The problem here is
961              that the breakpoints module being unaware of this, would
962              likely chose the child process to write to the parent
963              address space.  Swapping the child temporarily away from
964              the spaces has the desired effect.  Yes, this is "sort
965              of" a hack.  */
966
967           pspace = inf->pspace;
968           aspace = inf->aspace;
969           inf->aspace = NULL;
970           inf->pspace = NULL;
971
972           if (debug_infrun || info_verbose)
973             {
974               target_terminal_ours_for_output ();
975
976               if (exec)
977                 {
978                   fprintf_filtered (gdb_stdlog,
979                                     _("Detaching vfork parent process "
980                                       "%d after child exec.\n"),
981                                     inf->vfork_parent->pid);
982                 }
983               else
984                 {
985                   fprintf_filtered (gdb_stdlog,
986                                     _("Detaching vfork parent process "
987                                       "%d after child exit.\n"),
988                                     inf->vfork_parent->pid);
989                 }
990             }
991
992           target_detach (NULL, 0);
993
994           /* Put it back.  */
995           inf->pspace = pspace;
996           inf->aspace = aspace;
997         }
998       else if (exec)
999         {
1000           /* We're staying attached to the parent, so, really give the
1001              child a new address space.  */
1002           inf->pspace = add_program_space (maybe_new_address_space ());
1003           inf->aspace = inf->pspace->aspace;
1004           inf->removable = 1;
1005           set_current_program_space (inf->pspace);
1006
1007           resume_parent = inf->vfork_parent->pid;
1008
1009           /* Break the bonds.  */
1010           inf->vfork_parent->vfork_child = NULL;
1011         }
1012       else
1013         {
1014           struct program_space *pspace;
1015
1016           /* If this is a vfork child exiting, then the pspace and
1017              aspaces were shared with the parent.  Since we're
1018              reporting the process exit, we'll be mourning all that is
1019              found in the address space, and switching to null_ptid,
1020              preparing to start a new inferior.  But, since we don't
1021              want to clobber the parent's address/program spaces, we
1022              go ahead and create a new one for this exiting
1023              inferior.  */
1024
1025           /* Switch to null_ptid while running clone_program_space, so
1026              that clone_program_space doesn't want to read the
1027              selected frame of a dead process.  */
1028           scoped_restore restore_ptid
1029             = make_scoped_restore (&inferior_ptid, null_ptid);
1030
1031           /* This inferior is dead, so avoid giving the breakpoints
1032              module the option to write through to it (cloning a
1033              program space resets breakpoints).  */
1034           inf->aspace = NULL;
1035           inf->pspace = NULL;
1036           pspace = add_program_space (maybe_new_address_space ());
1037           set_current_program_space (pspace);
1038           inf->removable = 1;
1039           inf->symfile_flags = SYMFILE_NO_READ;
1040           clone_program_space (pspace, inf->vfork_parent->pspace);
1041           inf->pspace = pspace;
1042           inf->aspace = pspace->aspace;
1043
1044           resume_parent = inf->vfork_parent->pid;
1045           /* Break the bonds.  */
1046           inf->vfork_parent->vfork_child = NULL;
1047         }
1048
1049       inf->vfork_parent = NULL;
1050
1051       gdb_assert (current_program_space == inf->pspace);
1052
1053       if (non_stop && resume_parent != -1)
1054         {
1055           /* If the user wanted the parent to be running, let it go
1056              free now.  */
1057           scoped_restore_current_thread restore_thread;
1058
1059           if (debug_infrun)
1060             fprintf_unfiltered (gdb_stdlog,
1061                                 "infrun: resuming vfork parent process %d\n",
1062                                 resume_parent);
1063
1064           iterate_over_threads (proceed_after_vfork_done, &resume_parent);
1065         }
1066     }
1067 }
1068
1069 /* Enum strings for "set|show follow-exec-mode".  */
1070
1071 static const char follow_exec_mode_new[] = "new";
1072 static const char follow_exec_mode_same[] = "same";
1073 static const char *const follow_exec_mode_names[] =
1074 {
1075   follow_exec_mode_new,
1076   follow_exec_mode_same,
1077   NULL,
1078 };
1079
1080 static const char *follow_exec_mode_string = follow_exec_mode_same;
1081 static void
1082 show_follow_exec_mode_string (struct ui_file *file, int from_tty,
1083                               struct cmd_list_element *c, const char *value)
1084 {
1085   fprintf_filtered (file, _("Follow exec mode is \"%s\".\n"),  value);
1086 }
1087
1088 /* EXEC_FILE_TARGET is assumed to be non-NULL.  */
1089
1090 static void
1091 follow_exec (ptid_t ptid, char *exec_file_target)
1092 {
1093   struct thread_info *th, *tmp;
1094   struct inferior *inf = current_inferior ();
1095   int pid = ptid_get_pid (ptid);
1096   ptid_t process_ptid;
1097   char *exec_file_host;
1098   struct cleanup *old_chain;
1099
1100   /* This is an exec event that we actually wish to pay attention to.
1101      Refresh our symbol table to the newly exec'd program, remove any
1102      momentary bp's, etc.
1103
1104      If there are breakpoints, they aren't really inserted now,
1105      since the exec() transformed our inferior into a fresh set
1106      of instructions.
1107
1108      We want to preserve symbolic breakpoints on the list, since
1109      we have hopes that they can be reset after the new a.out's
1110      symbol table is read.
1111
1112      However, any "raw" breakpoints must be removed from the list
1113      (e.g., the solib bp's), since their address is probably invalid
1114      now.
1115
1116      And, we DON'T want to call delete_breakpoints() here, since
1117      that may write the bp's "shadow contents" (the instruction
1118      value that was overwritten witha TRAP instruction).  Since
1119      we now have a new a.out, those shadow contents aren't valid.  */
1120
1121   mark_breakpoints_out ();
1122
1123   /* The target reports the exec event to the main thread, even if
1124      some other thread does the exec, and even if the main thread was
1125      stopped or already gone.  We may still have non-leader threads of
1126      the process on our list.  E.g., on targets that don't have thread
1127      exit events (like remote); or on native Linux in non-stop mode if
1128      there were only two threads in the inferior and the non-leader
1129      one is the one that execs (and nothing forces an update of the
1130      thread list up to here).  When debugging remotely, it's best to
1131      avoid extra traffic, when possible, so avoid syncing the thread
1132      list with the target, and instead go ahead and delete all threads
1133      of the process but one that reported the event.  Note this must
1134      be done before calling update_breakpoints_after_exec, as
1135      otherwise clearing the threads' resources would reference stale
1136      thread breakpoints -- it may have been one of these threads that
1137      stepped across the exec.  We could just clear their stepping
1138      states, but as long as we're iterating, might as well delete
1139      them.  Deleting them now rather than at the next user-visible
1140      stop provides a nicer sequence of events for user and MI
1141      notifications.  */
1142   ALL_THREADS_SAFE (th, tmp)
1143     if (ptid_get_pid (th->ptid) == pid && !ptid_equal (th->ptid, ptid))
1144       delete_thread (th->ptid);
1145
1146   /* We also need to clear any left over stale state for the
1147      leader/event thread.  E.g., if there was any step-resume
1148      breakpoint or similar, it's gone now.  We cannot truly
1149      step-to-next statement through an exec().  */
1150   th = inferior_thread ();
1151   th->control.step_resume_breakpoint = NULL;
1152   th->control.exception_resume_breakpoint = NULL;
1153   th->control.single_step_breakpoints = NULL;
1154   th->control.step_range_start = 0;
1155   th->control.step_range_end = 0;
1156
1157   /* The user may have had the main thread held stopped in the
1158      previous image (e.g., schedlock on, or non-stop).  Release
1159      it now.  */
1160   th->stop_requested = 0;
1161
1162   update_breakpoints_after_exec ();
1163
1164   /* What is this a.out's name?  */
1165   process_ptid = pid_to_ptid (pid);
1166   printf_unfiltered (_("%s is executing new program: %s\n"),
1167                      target_pid_to_str (process_ptid),
1168                      exec_file_target);
1169
1170   /* We've followed the inferior through an exec.  Therefore, the
1171      inferior has essentially been killed & reborn.  */
1172
1173   gdb_flush (gdb_stdout);
1174
1175   breakpoint_init_inferior (inf_execd);
1176
1177   exec_file_host = exec_file_find (exec_file_target, NULL);
1178   old_chain = make_cleanup (xfree, exec_file_host);
1179
1180   /* If we were unable to map the executable target pathname onto a host
1181      pathname, tell the user that.  Otherwise GDB's subsequent behavior
1182      is confusing.  Maybe it would even be better to stop at this point
1183      so that the user can specify a file manually before continuing.  */
1184   if (exec_file_host == NULL)
1185     warning (_("Could not load symbols for executable %s.\n"
1186                "Do you need \"set sysroot\"?"),
1187              exec_file_target);
1188
1189   /* Reset the shared library package.  This ensures that we get a
1190      shlib event when the child reaches "_start", at which point the
1191      dld will have had a chance to initialize the child.  */
1192   /* Also, loading a symbol file below may trigger symbol lookups, and
1193      we don't want those to be satisfied by the libraries of the
1194      previous incarnation of this process.  */
1195   no_shared_libraries (NULL, 0);
1196
1197   if (follow_exec_mode_string == follow_exec_mode_new)
1198     {
1199       /* The user wants to keep the old inferior and program spaces
1200          around.  Create a new fresh one, and switch to it.  */
1201
1202       /* Do exit processing for the original inferior before adding
1203          the new inferior so we don't have two active inferiors with
1204          the same ptid, which can confuse find_inferior_ptid.  */
1205       exit_inferior_num_silent (current_inferior ()->num);
1206
1207       inf = add_inferior_with_spaces ();
1208       inf->pid = pid;
1209       target_follow_exec (inf, exec_file_target);
1210
1211       set_current_inferior (inf);
1212       set_current_program_space (inf->pspace);
1213       add_thread (ptid);
1214     }
1215   else
1216     {
1217       /* The old description may no longer be fit for the new image.
1218          E.g, a 64-bit process exec'ed a 32-bit process.  Clear the
1219          old description; we'll read a new one below.  No need to do
1220          this on "follow-exec-mode new", as the old inferior stays
1221          around (its description is later cleared/refetched on
1222          restart).  */
1223       target_clear_description ();
1224     }
1225
1226   gdb_assert (current_program_space == inf->pspace);
1227
1228   /* Attempt to open the exec file.  SYMFILE_DEFER_BP_RESET is used
1229      because the proper displacement for a PIE (Position Independent
1230      Executable) main symbol file will only be computed by
1231      solib_create_inferior_hook below.  breakpoint_re_set would fail
1232      to insert the breakpoints with the zero displacement.  */
1233   try_open_exec_file (exec_file_host, inf, SYMFILE_DEFER_BP_RESET);
1234
1235   do_cleanups (old_chain);
1236
1237   /* If the target can specify a description, read it.  Must do this
1238      after flipping to the new executable (because the target supplied
1239      description must be compatible with the executable's
1240      architecture, and the old executable may e.g., be 32-bit, while
1241      the new one 64-bit), and before anything involving memory or
1242      registers.  */
1243   target_find_description ();
1244
1245   solib_create_inferior_hook (0);
1246
1247   jit_inferior_created_hook ();
1248
1249   breakpoint_re_set ();
1250
1251   /* Reinsert all breakpoints.  (Those which were symbolic have
1252      been reset to the proper address in the new a.out, thanks
1253      to symbol_file_command...).  */
1254   insert_breakpoints ();
1255
1256   /* The next resume of this inferior should bring it to the shlib
1257      startup breakpoints.  (If the user had also set bp's on
1258      "main" from the old (parent) process, then they'll auto-
1259      matically get reset there in the new process.).  */
1260 }
1261
1262 /* The queue of threads that need to do a step-over operation to get
1263    past e.g., a breakpoint.  What technique is used to step over the
1264    breakpoint/watchpoint does not matter -- all threads end up in the
1265    same queue, to maintain rough temporal order of execution, in order
1266    to avoid starvation, otherwise, we could e.g., find ourselves
1267    constantly stepping the same couple threads past their breakpoints
1268    over and over, if the single-step finish fast enough.  */
1269 struct thread_info *step_over_queue_head;
1270
1271 /* Bit flags indicating what the thread needs to step over.  */
1272
1273 enum step_over_what_flag
1274   {
1275     /* Step over a breakpoint.  */
1276     STEP_OVER_BREAKPOINT = 1,
1277
1278     /* Step past a non-continuable watchpoint, in order to let the
1279        instruction execute so we can evaluate the watchpoint
1280        expression.  */
1281     STEP_OVER_WATCHPOINT = 2
1282   };
1283 DEF_ENUM_FLAGS_TYPE (enum step_over_what_flag, step_over_what);
1284
1285 /* Info about an instruction that is being stepped over.  */
1286
1287 struct step_over_info
1288 {
1289   /* If we're stepping past a breakpoint, this is the address space
1290      and address of the instruction the breakpoint is set at.  We'll
1291      skip inserting all breakpoints here.  Valid iff ASPACE is
1292      non-NULL.  */
1293   struct address_space *aspace;
1294   CORE_ADDR address;
1295
1296   /* The instruction being stepped over triggers a nonsteppable
1297      watchpoint.  If true, we'll skip inserting watchpoints.  */
1298   int nonsteppable_watchpoint_p;
1299
1300   /* The thread's global number.  */
1301   int thread;
1302 };
1303
1304 /* The step-over info of the location that is being stepped over.
1305
1306    Note that with async/breakpoint always-inserted mode, a user might
1307    set a new breakpoint/watchpoint/etc. exactly while a breakpoint is
1308    being stepped over.  As setting a new breakpoint inserts all
1309    breakpoints, we need to make sure the breakpoint being stepped over
1310    isn't inserted then.  We do that by only clearing the step-over
1311    info when the step-over is actually finished (or aborted).
1312
1313    Presently GDB can only step over one breakpoint at any given time.
1314    Given threads that can't run code in the same address space as the
1315    breakpoint's can't really miss the breakpoint, GDB could be taught
1316    to step-over at most one breakpoint per address space (so this info
1317    could move to the address space object if/when GDB is extended).
1318    The set of breakpoints being stepped over will normally be much
1319    smaller than the set of all breakpoints, so a flag in the
1320    breakpoint location structure would be wasteful.  A separate list
1321    also saves complexity and run-time, as otherwise we'd have to go
1322    through all breakpoint locations clearing their flag whenever we
1323    start a new sequence.  Similar considerations weigh against storing
1324    this info in the thread object.  Plus, not all step overs actually
1325    have breakpoint locations -- e.g., stepping past a single-step
1326    breakpoint, or stepping to complete a non-continuable
1327    watchpoint.  */
1328 static struct step_over_info step_over_info;
1329
1330 /* Record the address of the breakpoint/instruction we're currently
1331    stepping over.
1332    N.B. We record the aspace and address now, instead of say just the thread,
1333    because when we need the info later the thread may be running.  */
1334
1335 static void
1336 set_step_over_info (struct address_space *aspace, CORE_ADDR address,
1337                     int nonsteppable_watchpoint_p,
1338                     int thread)
1339 {
1340   step_over_info.aspace = aspace;
1341   step_over_info.address = address;
1342   step_over_info.nonsteppable_watchpoint_p = nonsteppable_watchpoint_p;
1343   step_over_info.thread = thread;
1344 }
1345
1346 /* Called when we're not longer stepping over a breakpoint / an
1347    instruction, so all breakpoints are free to be (re)inserted.  */
1348
1349 static void
1350 clear_step_over_info (void)
1351 {
1352   if (debug_infrun)
1353     fprintf_unfiltered (gdb_stdlog,
1354                         "infrun: clear_step_over_info\n");
1355   step_over_info.aspace = NULL;
1356   step_over_info.address = 0;
1357   step_over_info.nonsteppable_watchpoint_p = 0;
1358   step_over_info.thread = -1;
1359 }
1360
1361 /* See infrun.h.  */
1362
1363 int
1364 stepping_past_instruction_at (struct address_space *aspace,
1365                               CORE_ADDR address)
1366 {
1367   return (step_over_info.aspace != NULL
1368           && breakpoint_address_match (aspace, address,
1369                                        step_over_info.aspace,
1370                                        step_over_info.address));
1371 }
1372
1373 /* See infrun.h.  */
1374
1375 int
1376 thread_is_stepping_over_breakpoint (int thread)
1377 {
1378   return (step_over_info.thread != -1
1379           && thread == step_over_info.thread);
1380 }
1381
1382 /* See infrun.h.  */
1383
1384 int
1385 stepping_past_nonsteppable_watchpoint (void)
1386 {
1387   return step_over_info.nonsteppable_watchpoint_p;
1388 }
1389
1390 /* Returns true if step-over info is valid.  */
1391
1392 static int
1393 step_over_info_valid_p (void)
1394 {
1395   return (step_over_info.aspace != NULL
1396           || stepping_past_nonsteppable_watchpoint ());
1397 }
1398
1399 \f
1400 /* Displaced stepping.  */
1401
1402 /* In non-stop debugging mode, we must take special care to manage
1403    breakpoints properly; in particular, the traditional strategy for
1404    stepping a thread past a breakpoint it has hit is unsuitable.
1405    'Displaced stepping' is a tactic for stepping one thread past a
1406    breakpoint it has hit while ensuring that other threads running
1407    concurrently will hit the breakpoint as they should.
1408
1409    The traditional way to step a thread T off a breakpoint in a
1410    multi-threaded program in all-stop mode is as follows:
1411
1412    a0) Initially, all threads are stopped, and breakpoints are not
1413        inserted.
1414    a1) We single-step T, leaving breakpoints uninserted.
1415    a2) We insert breakpoints, and resume all threads.
1416
1417    In non-stop debugging, however, this strategy is unsuitable: we
1418    don't want to have to stop all threads in the system in order to
1419    continue or step T past a breakpoint.  Instead, we use displaced
1420    stepping:
1421
1422    n0) Initially, T is stopped, other threads are running, and
1423        breakpoints are inserted.
1424    n1) We copy the instruction "under" the breakpoint to a separate
1425        location, outside the main code stream, making any adjustments
1426        to the instruction, register, and memory state as directed by
1427        T's architecture.
1428    n2) We single-step T over the instruction at its new location.
1429    n3) We adjust the resulting register and memory state as directed
1430        by T's architecture.  This includes resetting T's PC to point
1431        back into the main instruction stream.
1432    n4) We resume T.
1433
1434    This approach depends on the following gdbarch methods:
1435
1436    - gdbarch_max_insn_length and gdbarch_displaced_step_location
1437      indicate where to copy the instruction, and how much space must
1438      be reserved there.  We use these in step n1.
1439
1440    - gdbarch_displaced_step_copy_insn copies a instruction to a new
1441      address, and makes any necessary adjustments to the instruction,
1442      register contents, and memory.  We use this in step n1.
1443
1444    - gdbarch_displaced_step_fixup adjusts registers and memory after
1445      we have successfuly single-stepped the instruction, to yield the
1446      same effect the instruction would have had if we had executed it
1447      at its original address.  We use this in step n3.
1448
1449    - gdbarch_displaced_step_free_closure provides cleanup.
1450
1451    The gdbarch_displaced_step_copy_insn and
1452    gdbarch_displaced_step_fixup functions must be written so that
1453    copying an instruction with gdbarch_displaced_step_copy_insn,
1454    single-stepping across the copied instruction, and then applying
1455    gdbarch_displaced_insn_fixup should have the same effects on the
1456    thread's memory and registers as stepping the instruction in place
1457    would have.  Exactly which responsibilities fall to the copy and
1458    which fall to the fixup is up to the author of those functions.
1459
1460    See the comments in gdbarch.sh for details.
1461
1462    Note that displaced stepping and software single-step cannot
1463    currently be used in combination, although with some care I think
1464    they could be made to.  Software single-step works by placing
1465    breakpoints on all possible subsequent instructions; if the
1466    displaced instruction is a PC-relative jump, those breakpoints
1467    could fall in very strange places --- on pages that aren't
1468    executable, or at addresses that are not proper instruction
1469    boundaries.  (We do generally let other threads run while we wait
1470    to hit the software single-step breakpoint, and they might
1471    encounter such a corrupted instruction.)  One way to work around
1472    this would be to have gdbarch_displaced_step_copy_insn fully
1473    simulate the effect of PC-relative instructions (and return NULL)
1474    on architectures that use software single-stepping.
1475
1476    In non-stop mode, we can have independent and simultaneous step
1477    requests, so more than one thread may need to simultaneously step
1478    over a breakpoint.  The current implementation assumes there is
1479    only one scratch space per process.  In this case, we have to
1480    serialize access to the scratch space.  If thread A wants to step
1481    over a breakpoint, but we are currently waiting for some other
1482    thread to complete a displaced step, we leave thread A stopped and
1483    place it in the displaced_step_request_queue.  Whenever a displaced
1484    step finishes, we pick the next thread in the queue and start a new
1485    displaced step operation on it.  See displaced_step_prepare and
1486    displaced_step_fixup for details.  */
1487
1488 /* Per-inferior displaced stepping state.  */
1489 struct displaced_step_inferior_state
1490 {
1491   /* Pointer to next in linked list.  */
1492   struct displaced_step_inferior_state *next;
1493
1494   /* The process this displaced step state refers to.  */
1495   int pid;
1496
1497   /* True if preparing a displaced step ever failed.  If so, we won't
1498      try displaced stepping for this inferior again.  */
1499   int failed_before;
1500
1501   /* If this is not null_ptid, this is the thread carrying out a
1502      displaced single-step in process PID.  This thread's state will
1503      require fixing up once it has completed its step.  */
1504   ptid_t step_ptid;
1505
1506   /* The architecture the thread had when we stepped it.  */
1507   struct gdbarch *step_gdbarch;
1508
1509   /* The closure provided gdbarch_displaced_step_copy_insn, to be used
1510      for post-step cleanup.  */
1511   struct displaced_step_closure *step_closure;
1512
1513   /* The address of the original instruction, and the copy we
1514      made.  */
1515   CORE_ADDR step_original, step_copy;
1516
1517   /* Saved contents of copy area.  */
1518   gdb_byte *step_saved_copy;
1519 };
1520
1521 /* The list of states of processes involved in displaced stepping
1522    presently.  */
1523 static struct displaced_step_inferior_state *displaced_step_inferior_states;
1524
1525 /* Get the displaced stepping state of process PID.  */
1526
1527 static struct displaced_step_inferior_state *
1528 get_displaced_stepping_state (int pid)
1529 {
1530   struct displaced_step_inferior_state *state;
1531
1532   for (state = displaced_step_inferior_states;
1533        state != NULL;
1534        state = state->next)
1535     if (state->pid == pid)
1536       return state;
1537
1538   return NULL;
1539 }
1540
1541 /* Returns true if any inferior has a thread doing a displaced
1542    step.  */
1543
1544 static int
1545 displaced_step_in_progress_any_inferior (void)
1546 {
1547   struct displaced_step_inferior_state *state;
1548
1549   for (state = displaced_step_inferior_states;
1550        state != NULL;
1551        state = state->next)
1552     if (!ptid_equal (state->step_ptid, null_ptid))
1553       return 1;
1554
1555   return 0;
1556 }
1557
1558 /* Return true if thread represented by PTID is doing a displaced
1559    step.  */
1560
1561 static int
1562 displaced_step_in_progress_thread (ptid_t ptid)
1563 {
1564   struct displaced_step_inferior_state *displaced;
1565
1566   gdb_assert (!ptid_equal (ptid, null_ptid));
1567
1568   displaced = get_displaced_stepping_state (ptid_get_pid (ptid));
1569
1570   return (displaced != NULL && ptid_equal (displaced->step_ptid, ptid));
1571 }
1572
1573 /* Return true if process PID has a thread doing a displaced step.  */
1574
1575 static int
1576 displaced_step_in_progress (int pid)
1577 {
1578   struct displaced_step_inferior_state *displaced;
1579
1580   displaced = get_displaced_stepping_state (pid);
1581   if (displaced != NULL && !ptid_equal (displaced->step_ptid, null_ptid))
1582     return 1;
1583
1584   return 0;
1585 }
1586
1587 /* Add a new displaced stepping state for process PID to the displaced
1588    stepping state list, or return a pointer to an already existing
1589    entry, if it already exists.  Never returns NULL.  */
1590
1591 static struct displaced_step_inferior_state *
1592 add_displaced_stepping_state (int pid)
1593 {
1594   struct displaced_step_inferior_state *state;
1595
1596   for (state = displaced_step_inferior_states;
1597        state != NULL;
1598        state = state->next)
1599     if (state->pid == pid)
1600       return state;
1601
1602   state = XCNEW (struct displaced_step_inferior_state);
1603   state->pid = pid;
1604   state->next = displaced_step_inferior_states;
1605   displaced_step_inferior_states = state;
1606
1607   return state;
1608 }
1609
1610 /* If inferior is in displaced stepping, and ADDR equals to starting address
1611    of copy area, return corresponding displaced_step_closure.  Otherwise,
1612    return NULL.  */
1613
1614 struct displaced_step_closure*
1615 get_displaced_step_closure_by_addr (CORE_ADDR addr)
1616 {
1617   struct displaced_step_inferior_state *displaced
1618     = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
1619
1620   /* If checking the mode of displaced instruction in copy area.  */
1621   if (displaced && !ptid_equal (displaced->step_ptid, null_ptid)
1622      && (displaced->step_copy == addr))
1623     return displaced->step_closure;
1624
1625   return NULL;
1626 }
1627
1628 /* Remove the displaced stepping state of process PID.  */
1629
1630 static void
1631 remove_displaced_stepping_state (int pid)
1632 {
1633   struct displaced_step_inferior_state *it, **prev_next_p;
1634
1635   gdb_assert (pid != 0);
1636
1637   it = displaced_step_inferior_states;
1638   prev_next_p = &displaced_step_inferior_states;
1639   while (it)
1640     {
1641       if (it->pid == pid)
1642         {
1643           *prev_next_p = it->next;
1644           xfree (it);
1645           return;
1646         }
1647
1648       prev_next_p = &it->next;
1649       it = *prev_next_p;
1650     }
1651 }
1652
1653 static void
1654 infrun_inferior_exit (struct inferior *inf)
1655 {
1656   remove_displaced_stepping_state (inf->pid);
1657 }
1658
1659 /* If ON, and the architecture supports it, GDB will use displaced
1660    stepping to step over breakpoints.  If OFF, or if the architecture
1661    doesn't support it, GDB will instead use the traditional
1662    hold-and-step approach.  If AUTO (which is the default), GDB will
1663    decide which technique to use to step over breakpoints depending on
1664    which of all-stop or non-stop mode is active --- displaced stepping
1665    in non-stop mode; hold-and-step in all-stop mode.  */
1666
1667 static enum auto_boolean can_use_displaced_stepping = AUTO_BOOLEAN_AUTO;
1668
1669 static void
1670 show_can_use_displaced_stepping (struct ui_file *file, int from_tty,
1671                                  struct cmd_list_element *c,
1672                                  const char *value)
1673 {
1674   if (can_use_displaced_stepping == AUTO_BOOLEAN_AUTO)
1675     fprintf_filtered (file,
1676                       _("Debugger's willingness to use displaced stepping "
1677                         "to step over breakpoints is %s (currently %s).\n"),
1678                       value, target_is_non_stop_p () ? "on" : "off");
1679   else
1680     fprintf_filtered (file,
1681                       _("Debugger's willingness to use displaced stepping "
1682                         "to step over breakpoints is %s.\n"), value);
1683 }
1684
1685 /* Return non-zero if displaced stepping can/should be used to step
1686    over breakpoints of thread TP.  */
1687
1688 static int
1689 use_displaced_stepping (struct thread_info *tp)
1690 {
1691   struct regcache *regcache = get_thread_regcache (tp->ptid);
1692   struct gdbarch *gdbarch = get_regcache_arch (regcache);
1693   struct displaced_step_inferior_state *displaced_state;
1694
1695   displaced_state = get_displaced_stepping_state (ptid_get_pid (tp->ptid));
1696
1697   return (((can_use_displaced_stepping == AUTO_BOOLEAN_AUTO
1698             && target_is_non_stop_p ())
1699            || can_use_displaced_stepping == AUTO_BOOLEAN_TRUE)
1700           && gdbarch_displaced_step_copy_insn_p (gdbarch)
1701           && find_record_target () == NULL
1702           && (displaced_state == NULL
1703               || !displaced_state->failed_before));
1704 }
1705
1706 /* Clean out any stray displaced stepping state.  */
1707 static void
1708 displaced_step_clear (struct displaced_step_inferior_state *displaced)
1709 {
1710   /* Indicate that there is no cleanup pending.  */
1711   displaced->step_ptid = null_ptid;
1712
1713   xfree (displaced->step_closure);
1714   displaced->step_closure = NULL;
1715 }
1716
1717 static void
1718 displaced_step_clear_cleanup (void *arg)
1719 {
1720   struct displaced_step_inferior_state *state
1721     = (struct displaced_step_inferior_state *) arg;
1722
1723   displaced_step_clear (state);
1724 }
1725
1726 /* Dump LEN bytes at BUF in hex to FILE, followed by a newline.  */
1727 void
1728 displaced_step_dump_bytes (struct ui_file *file,
1729                            const gdb_byte *buf,
1730                            size_t len)
1731 {
1732   int i;
1733
1734   for (i = 0; i < len; i++)
1735     fprintf_unfiltered (file, "%02x ", buf[i]);
1736   fputs_unfiltered ("\n", file);
1737 }
1738
1739 /* Prepare to single-step, using displaced stepping.
1740
1741    Note that we cannot use displaced stepping when we have a signal to
1742    deliver.  If we have a signal to deliver and an instruction to step
1743    over, then after the step, there will be no indication from the
1744    target whether the thread entered a signal handler or ignored the
1745    signal and stepped over the instruction successfully --- both cases
1746    result in a simple SIGTRAP.  In the first case we mustn't do a
1747    fixup, and in the second case we must --- but we can't tell which.
1748    Comments in the code for 'random signals' in handle_inferior_event
1749    explain how we handle this case instead.
1750
1751    Returns 1 if preparing was successful -- this thread is going to be
1752    stepped now; 0 if displaced stepping this thread got queued; or -1
1753    if this instruction can't be displaced stepped.  */
1754
1755 static int
1756 displaced_step_prepare_throw (ptid_t ptid)
1757 {
1758   struct cleanup *old_cleanups, *ignore_cleanups;
1759   struct thread_info *tp = find_thread_ptid (ptid);
1760   struct regcache *regcache = get_thread_regcache (ptid);
1761   struct gdbarch *gdbarch = get_regcache_arch (regcache);
1762   struct address_space *aspace = get_regcache_aspace (regcache);
1763   CORE_ADDR original, copy;
1764   ULONGEST len;
1765   struct displaced_step_closure *closure;
1766   struct displaced_step_inferior_state *displaced;
1767   int status;
1768
1769   /* We should never reach this function if the architecture does not
1770      support displaced stepping.  */
1771   gdb_assert (gdbarch_displaced_step_copy_insn_p (gdbarch));
1772
1773   /* Nor if the thread isn't meant to step over a breakpoint.  */
1774   gdb_assert (tp->control.trap_expected);
1775
1776   /* Disable range stepping while executing in the scratch pad.  We
1777      want a single-step even if executing the displaced instruction in
1778      the scratch buffer lands within the stepping range (e.g., a
1779      jump/branch).  */
1780   tp->control.may_range_step = 0;
1781
1782   /* We have to displaced step one thread at a time, as we only have
1783      access to a single scratch space per inferior.  */
1784
1785   displaced = add_displaced_stepping_state (ptid_get_pid (ptid));
1786
1787   if (!ptid_equal (displaced->step_ptid, null_ptid))
1788     {
1789       /* Already waiting for a displaced step to finish.  Defer this
1790          request and place in queue.  */
1791
1792       if (debug_displaced)
1793         fprintf_unfiltered (gdb_stdlog,
1794                             "displaced: deferring step of %s\n",
1795                             target_pid_to_str (ptid));
1796
1797       thread_step_over_chain_enqueue (tp);
1798       return 0;
1799     }
1800   else
1801     {
1802       if (debug_displaced)
1803         fprintf_unfiltered (gdb_stdlog,
1804                             "displaced: stepping %s now\n",
1805                             target_pid_to_str (ptid));
1806     }
1807
1808   displaced_step_clear (displaced);
1809
1810   old_cleanups = save_inferior_ptid ();
1811   inferior_ptid = ptid;
1812
1813   original = regcache_read_pc (regcache);
1814
1815   copy = gdbarch_displaced_step_location (gdbarch);
1816   len = gdbarch_max_insn_length (gdbarch);
1817
1818   if (breakpoint_in_range_p (aspace, copy, len))
1819     {
1820       /* There's a breakpoint set in the scratch pad location range
1821          (which is usually around the entry point).  We'd either
1822          install it before resuming, which would overwrite/corrupt the
1823          scratch pad, or if it was already inserted, this displaced
1824          step would overwrite it.  The latter is OK in the sense that
1825          we already assume that no thread is going to execute the code
1826          in the scratch pad range (after initial startup) anyway, but
1827          the former is unacceptable.  Simply punt and fallback to
1828          stepping over this breakpoint in-line.  */
1829       if (debug_displaced)
1830         {
1831           fprintf_unfiltered (gdb_stdlog,
1832                               "displaced: breakpoint set in scratch pad.  "
1833                               "Stepping over breakpoint in-line instead.\n");
1834         }
1835
1836       do_cleanups (old_cleanups);
1837       return -1;
1838     }
1839
1840   /* Save the original contents of the copy area.  */
1841   displaced->step_saved_copy = (gdb_byte *) xmalloc (len);
1842   ignore_cleanups = make_cleanup (free_current_contents,
1843                                   &displaced->step_saved_copy);
1844   status = target_read_memory (copy, displaced->step_saved_copy, len);
1845   if (status != 0)
1846     throw_error (MEMORY_ERROR,
1847                  _("Error accessing memory address %s (%s) for "
1848                    "displaced-stepping scratch space."),
1849                  paddress (gdbarch, copy), safe_strerror (status));
1850   if (debug_displaced)
1851     {
1852       fprintf_unfiltered (gdb_stdlog, "displaced: saved %s: ",
1853                           paddress (gdbarch, copy));
1854       displaced_step_dump_bytes (gdb_stdlog,
1855                                  displaced->step_saved_copy,
1856                                  len);
1857     };
1858
1859   closure = gdbarch_displaced_step_copy_insn (gdbarch,
1860                                               original, copy, regcache);
1861   if (closure == NULL)
1862     {
1863       /* The architecture doesn't know how or want to displaced step
1864          this instruction or instruction sequence.  Fallback to
1865          stepping over the breakpoint in-line.  */
1866       do_cleanups (old_cleanups);
1867       return -1;
1868     }
1869
1870   /* Save the information we need to fix things up if the step
1871      succeeds.  */
1872   displaced->step_ptid = ptid;
1873   displaced->step_gdbarch = gdbarch;
1874   displaced->step_closure = closure;
1875   displaced->step_original = original;
1876   displaced->step_copy = copy;
1877
1878   make_cleanup (displaced_step_clear_cleanup, displaced);
1879
1880   /* Resume execution at the copy.  */
1881   regcache_write_pc (regcache, copy);
1882
1883   discard_cleanups (ignore_cleanups);
1884
1885   do_cleanups (old_cleanups);
1886
1887   if (debug_displaced)
1888     fprintf_unfiltered (gdb_stdlog, "displaced: displaced pc to %s\n",
1889                         paddress (gdbarch, copy));
1890
1891   return 1;
1892 }
1893
1894 /* Wrapper for displaced_step_prepare_throw that disabled further
1895    attempts at displaced stepping if we get a memory error.  */
1896
1897 static int
1898 displaced_step_prepare (ptid_t ptid)
1899 {
1900   int prepared = -1;
1901
1902   TRY
1903     {
1904       prepared = displaced_step_prepare_throw (ptid);
1905     }
1906   CATCH (ex, RETURN_MASK_ERROR)
1907     {
1908       struct displaced_step_inferior_state *displaced_state;
1909
1910       if (ex.error != MEMORY_ERROR
1911           && ex.error != NOT_SUPPORTED_ERROR)
1912         throw_exception (ex);
1913
1914       if (debug_infrun)
1915         {
1916           fprintf_unfiltered (gdb_stdlog,
1917                               "infrun: disabling displaced stepping: %s\n",
1918                               ex.message);
1919         }
1920
1921       /* Be verbose if "set displaced-stepping" is "on", silent if
1922          "auto".  */
1923       if (can_use_displaced_stepping == AUTO_BOOLEAN_TRUE)
1924         {
1925           warning (_("disabling displaced stepping: %s"),
1926                    ex.message);
1927         }
1928
1929       /* Disable further displaced stepping attempts.  */
1930       displaced_state
1931         = get_displaced_stepping_state (ptid_get_pid (ptid));
1932       displaced_state->failed_before = 1;
1933     }
1934   END_CATCH
1935
1936   return prepared;
1937 }
1938
1939 static void
1940 write_memory_ptid (ptid_t ptid, CORE_ADDR memaddr,
1941                    const gdb_byte *myaddr, int len)
1942 {
1943   struct cleanup *ptid_cleanup = save_inferior_ptid ();
1944
1945   inferior_ptid = ptid;
1946   write_memory (memaddr, myaddr, len);
1947   do_cleanups (ptid_cleanup);
1948 }
1949
1950 /* Restore the contents of the copy area for thread PTID.  */
1951
1952 static void
1953 displaced_step_restore (struct displaced_step_inferior_state *displaced,
1954                         ptid_t ptid)
1955 {
1956   ULONGEST len = gdbarch_max_insn_length (displaced->step_gdbarch);
1957
1958   write_memory_ptid (ptid, displaced->step_copy,
1959                      displaced->step_saved_copy, len);
1960   if (debug_displaced)
1961     fprintf_unfiltered (gdb_stdlog, "displaced: restored %s %s\n",
1962                         target_pid_to_str (ptid),
1963                         paddress (displaced->step_gdbarch,
1964                                   displaced->step_copy));
1965 }
1966
1967 /* If we displaced stepped an instruction successfully, adjust
1968    registers and memory to yield the same effect the instruction would
1969    have had if we had executed it at its original address, and return
1970    1.  If the instruction didn't complete, relocate the PC and return
1971    -1.  If the thread wasn't displaced stepping, return 0.  */
1972
1973 static int
1974 displaced_step_fixup (ptid_t event_ptid, enum gdb_signal signal)
1975 {
1976   struct cleanup *old_cleanups;
1977   struct displaced_step_inferior_state *displaced
1978     = get_displaced_stepping_state (ptid_get_pid (event_ptid));
1979   int ret;
1980
1981   /* Was any thread of this process doing a displaced step?  */
1982   if (displaced == NULL)
1983     return 0;
1984
1985   /* Was this event for the pid we displaced?  */
1986   if (ptid_equal (displaced->step_ptid, null_ptid)
1987       || ! ptid_equal (displaced->step_ptid, event_ptid))
1988     return 0;
1989
1990   old_cleanups = make_cleanup (displaced_step_clear_cleanup, displaced);
1991
1992   displaced_step_restore (displaced, displaced->step_ptid);
1993
1994   /* Fixup may need to read memory/registers.  Switch to the thread
1995      that we're fixing up.  Also, target_stopped_by_watchpoint checks
1996      the current thread.  */
1997   switch_to_thread (event_ptid);
1998
1999   /* Did the instruction complete successfully?  */
2000   if (signal == GDB_SIGNAL_TRAP
2001       && !(target_stopped_by_watchpoint ()
2002            && (gdbarch_have_nonsteppable_watchpoint (displaced->step_gdbarch)
2003                || target_have_steppable_watchpoint)))
2004     {
2005       /* Fix up the resulting state.  */
2006       gdbarch_displaced_step_fixup (displaced->step_gdbarch,
2007                                     displaced->step_closure,
2008                                     displaced->step_original,
2009                                     displaced->step_copy,
2010                                     get_thread_regcache (displaced->step_ptid));
2011       ret = 1;
2012     }
2013   else
2014     {
2015       /* Since the instruction didn't complete, all we can do is
2016          relocate the PC.  */
2017       struct regcache *regcache = get_thread_regcache (event_ptid);
2018       CORE_ADDR pc = regcache_read_pc (regcache);
2019
2020       pc = displaced->step_original + (pc - displaced->step_copy);
2021       regcache_write_pc (regcache, pc);
2022       ret = -1;
2023     }
2024
2025   do_cleanups (old_cleanups);
2026
2027   displaced->step_ptid = null_ptid;
2028
2029   return ret;
2030 }
2031
2032 /* Data to be passed around while handling an event.  This data is
2033    discarded between events.  */
2034 struct execution_control_state
2035 {
2036   ptid_t ptid;
2037   /* The thread that got the event, if this was a thread event; NULL
2038      otherwise.  */
2039   struct thread_info *event_thread;
2040
2041   struct target_waitstatus ws;
2042   int stop_func_filled_in;
2043   CORE_ADDR stop_func_start;
2044   CORE_ADDR stop_func_end;
2045   const char *stop_func_name;
2046   int wait_some_more;
2047
2048   /* True if the event thread hit the single-step breakpoint of
2049      another thread.  Thus the event doesn't cause a stop, the thread
2050      needs to be single-stepped past the single-step breakpoint before
2051      we can switch back to the original stepping thread.  */
2052   int hit_singlestep_breakpoint;
2053 };
2054
2055 /* Clear ECS and set it to point at TP.  */
2056
2057 static void
2058 reset_ecs (struct execution_control_state *ecs, struct thread_info *tp)
2059 {
2060   memset (ecs, 0, sizeof (*ecs));
2061   ecs->event_thread = tp;
2062   ecs->ptid = tp->ptid;
2063 }
2064
2065 static void keep_going_pass_signal (struct execution_control_state *ecs);
2066 static void prepare_to_wait (struct execution_control_state *ecs);
2067 static int keep_going_stepped_thread (struct thread_info *tp);
2068 static step_over_what thread_still_needs_step_over (struct thread_info *tp);
2069
2070 /* Are there any pending step-over requests?  If so, run all we can
2071    now and return true.  Otherwise, return false.  */
2072
2073 static int
2074 start_step_over (void)
2075 {
2076   struct thread_info *tp, *next;
2077
2078   /* Don't start a new step-over if we already have an in-line
2079      step-over operation ongoing.  */
2080   if (step_over_info_valid_p ())
2081     return 0;
2082
2083   for (tp = step_over_queue_head; tp != NULL; tp = next)
2084     {
2085       struct execution_control_state ecss;
2086       struct execution_control_state *ecs = &ecss;
2087       step_over_what step_what;
2088       int must_be_in_line;
2089
2090       gdb_assert (!tp->stop_requested);
2091
2092       next = thread_step_over_chain_next (tp);
2093
2094       /* If this inferior already has a displaced step in process,
2095          don't start a new one.  */
2096       if (displaced_step_in_progress (ptid_get_pid (tp->ptid)))
2097         continue;
2098
2099       step_what = thread_still_needs_step_over (tp);
2100       must_be_in_line = ((step_what & STEP_OVER_WATCHPOINT)
2101                          || ((step_what & STEP_OVER_BREAKPOINT)
2102                              && !use_displaced_stepping (tp)));
2103
2104       /* We currently stop all threads of all processes to step-over
2105          in-line.  If we need to start a new in-line step-over, let
2106          any pending displaced steps finish first.  */
2107       if (must_be_in_line && displaced_step_in_progress_any_inferior ())
2108         return 0;
2109
2110       thread_step_over_chain_remove (tp);
2111
2112       if (step_over_queue_head == NULL)
2113         {
2114           if (debug_infrun)
2115             fprintf_unfiltered (gdb_stdlog,
2116                                 "infrun: step-over queue now empty\n");
2117         }
2118
2119       if (tp->control.trap_expected
2120           || tp->resumed
2121           || tp->executing)
2122         {
2123           internal_error (__FILE__, __LINE__,
2124                           "[%s] has inconsistent state: "
2125                           "trap_expected=%d, resumed=%d, executing=%d\n",
2126                           target_pid_to_str (tp->ptid),
2127                           tp->control.trap_expected,
2128                           tp->resumed,
2129                           tp->executing);
2130         }
2131
2132       if (debug_infrun)
2133         fprintf_unfiltered (gdb_stdlog,
2134                             "infrun: resuming [%s] for step-over\n",
2135                             target_pid_to_str (tp->ptid));
2136
2137       /* keep_going_pass_signal skips the step-over if the breakpoint
2138          is no longer inserted.  In all-stop, we want to keep looking
2139          for a thread that needs a step-over instead of resuming TP,
2140          because we wouldn't be able to resume anything else until the
2141          target stops again.  In non-stop, the resume always resumes
2142          only TP, so it's OK to let the thread resume freely.  */
2143       if (!target_is_non_stop_p () && !step_what)
2144         continue;
2145
2146       switch_to_thread (tp->ptid);
2147       reset_ecs (ecs, tp);
2148       keep_going_pass_signal (ecs);
2149
2150       if (!ecs->wait_some_more)
2151         error (_("Command aborted."));
2152
2153       gdb_assert (tp->resumed);
2154
2155       /* If we started a new in-line step-over, we're done.  */
2156       if (step_over_info_valid_p ())
2157         {
2158           gdb_assert (tp->control.trap_expected);
2159           return 1;
2160         }
2161
2162       if (!target_is_non_stop_p ())
2163         {
2164           /* On all-stop, shouldn't have resumed unless we needed a
2165              step over.  */
2166           gdb_assert (tp->control.trap_expected
2167                       || tp->step_after_step_resume_breakpoint);
2168
2169           /* With remote targets (at least), in all-stop, we can't
2170              issue any further remote commands until the program stops
2171              again.  */
2172           return 1;
2173         }
2174
2175       /* Either the thread no longer needed a step-over, or a new
2176          displaced stepping sequence started.  Even in the latter
2177          case, continue looking.  Maybe we can also start another
2178          displaced step on a thread of other process. */
2179     }
2180
2181   return 0;
2182 }
2183
2184 /* Update global variables holding ptids to hold NEW_PTID if they were
2185    holding OLD_PTID.  */
2186 static void
2187 infrun_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
2188 {
2189   struct displaced_step_inferior_state *displaced;
2190
2191   if (ptid_equal (inferior_ptid, old_ptid))
2192     inferior_ptid = new_ptid;
2193
2194   for (displaced = displaced_step_inferior_states;
2195        displaced;
2196        displaced = displaced->next)
2197     {
2198       if (ptid_equal (displaced->step_ptid, old_ptid))
2199         displaced->step_ptid = new_ptid;
2200     }
2201 }
2202
2203 \f
2204 /* Resuming.  */
2205
2206 /* Things to clean up if we QUIT out of resume ().  */
2207 static void
2208 resume_cleanups (void *ignore)
2209 {
2210   if (!ptid_equal (inferior_ptid, null_ptid))
2211     delete_single_step_breakpoints (inferior_thread ());
2212
2213   normal_stop ();
2214 }
2215
2216 static const char schedlock_off[] = "off";
2217 static const char schedlock_on[] = "on";
2218 static const char schedlock_step[] = "step";
2219 static const char schedlock_replay[] = "replay";
2220 static const char *const scheduler_enums[] = {
2221   schedlock_off,
2222   schedlock_on,
2223   schedlock_step,
2224   schedlock_replay,
2225   NULL
2226 };
2227 static const char *scheduler_mode = schedlock_replay;
2228 static void
2229 show_scheduler_mode (struct ui_file *file, int from_tty,
2230                      struct cmd_list_element *c, const char *value)
2231 {
2232   fprintf_filtered (file,
2233                     _("Mode for locking scheduler "
2234                       "during execution is \"%s\".\n"),
2235                     value);
2236 }
2237
2238 static void
2239 set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
2240 {
2241   if (!target_can_lock_scheduler)
2242     {
2243       scheduler_mode = schedlock_off;
2244       error (_("Target '%s' cannot support this command."), target_shortname);
2245     }
2246 }
2247
2248 /* True if execution commands resume all threads of all processes by
2249    default; otherwise, resume only threads of the current inferior
2250    process.  */
2251 int sched_multi = 0;
2252
2253 /* Try to setup for software single stepping over the specified location.
2254    Return 1 if target_resume() should use hardware single step.
2255
2256    GDBARCH the current gdbarch.
2257    PC the location to step over.  */
2258
2259 static int
2260 maybe_software_singlestep (struct gdbarch *gdbarch, CORE_ADDR pc)
2261 {
2262   int hw_step = 1;
2263
2264   if (execution_direction == EXEC_FORWARD
2265       && gdbarch_software_single_step_p (gdbarch))
2266     hw_step = !insert_single_step_breakpoints (gdbarch);
2267
2268   return hw_step;
2269 }
2270
2271 /* See infrun.h.  */
2272
2273 ptid_t
2274 user_visible_resume_ptid (int step)
2275 {
2276   ptid_t resume_ptid;
2277
2278   if (non_stop)
2279     {
2280       /* With non-stop mode on, threads are always handled
2281          individually.  */
2282       resume_ptid = inferior_ptid;
2283     }
2284   else if ((scheduler_mode == schedlock_on)
2285            || (scheduler_mode == schedlock_step && step))
2286     {
2287       /* User-settable 'scheduler' mode requires solo thread
2288          resume.  */
2289       resume_ptid = inferior_ptid;
2290     }
2291   else if ((scheduler_mode == schedlock_replay)
2292            && target_record_will_replay (minus_one_ptid, execution_direction))
2293     {
2294       /* User-settable 'scheduler' mode requires solo thread resume in replay
2295          mode.  */
2296       resume_ptid = inferior_ptid;
2297     }
2298   else if (!sched_multi && target_supports_multi_process ())
2299     {
2300       /* Resume all threads of the current process (and none of other
2301          processes).  */
2302       resume_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
2303     }
2304   else
2305     {
2306       /* Resume all threads of all processes.  */
2307       resume_ptid = RESUME_ALL;
2308     }
2309
2310   return resume_ptid;
2311 }
2312
2313 /* Return a ptid representing the set of threads that we will resume,
2314    in the perspective of the target, assuming run control handling
2315    does not require leaving some threads stopped (e.g., stepping past
2316    breakpoint).  USER_STEP indicates whether we're about to start the
2317    target for a stepping command.  */
2318
2319 static ptid_t
2320 internal_resume_ptid (int user_step)
2321 {
2322   /* In non-stop, we always control threads individually.  Note that
2323      the target may always work in non-stop mode even with "set
2324      non-stop off", in which case user_visible_resume_ptid could
2325      return a wildcard ptid.  */
2326   if (target_is_non_stop_p ())
2327     return inferior_ptid;
2328   else
2329     return user_visible_resume_ptid (user_step);
2330 }
2331
2332 /* Wrapper for target_resume, that handles infrun-specific
2333    bookkeeping.  */
2334
2335 static void
2336 do_target_resume (ptid_t resume_ptid, int step, enum gdb_signal sig)
2337 {
2338   struct thread_info *tp = inferior_thread ();
2339
2340   gdb_assert (!tp->stop_requested);
2341
2342   /* Install inferior's terminal modes.  */
2343   target_terminal_inferior ();
2344
2345   /* Avoid confusing the next resume, if the next stop/resume
2346      happens to apply to another thread.  */
2347   tp->suspend.stop_signal = GDB_SIGNAL_0;
2348
2349   /* Advise target which signals may be handled silently.
2350
2351      If we have removed breakpoints because we are stepping over one
2352      in-line (in any thread), we need to receive all signals to avoid
2353      accidentally skipping a breakpoint during execution of a signal
2354      handler.
2355
2356      Likewise if we're displaced stepping, otherwise a trap for a
2357      breakpoint in a signal handler might be confused with the
2358      displaced step finishing.  We don't make the displaced_step_fixup
2359      step distinguish the cases instead, because:
2360
2361      - a backtrace while stopped in the signal handler would show the
2362        scratch pad as frame older than the signal handler, instead of
2363        the real mainline code.
2364
2365      - when the thread is later resumed, the signal handler would
2366        return to the scratch pad area, which would no longer be
2367        valid.  */
2368   if (step_over_info_valid_p ()
2369       || displaced_step_in_progress (ptid_get_pid (tp->ptid)))
2370     target_pass_signals (0, NULL);
2371   else
2372     target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
2373
2374   target_resume (resume_ptid, step, sig);
2375
2376   target_commit_resume ();
2377 }
2378
2379 /* Resume the inferior, but allow a QUIT.  This is useful if the user
2380    wants to interrupt some lengthy single-stepping operation
2381    (for child processes, the SIGINT goes to the inferior, and so
2382    we get a SIGINT random_signal, but for remote debugging and perhaps
2383    other targets, that's not true).
2384
2385    SIG is the signal to give the inferior (zero for none).  */
2386 void
2387 resume (enum gdb_signal sig)
2388 {
2389   struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
2390   struct regcache *regcache = get_current_regcache ();
2391   struct gdbarch *gdbarch = get_regcache_arch (regcache);
2392   struct thread_info *tp = inferior_thread ();
2393   CORE_ADDR pc = regcache_read_pc (regcache);
2394   struct address_space *aspace = get_regcache_aspace (regcache);
2395   ptid_t resume_ptid;
2396   /* This represents the user's step vs continue request.  When
2397      deciding whether "set scheduler-locking step" applies, it's the
2398      user's intention that counts.  */
2399   const int user_step = tp->control.stepping_command;
2400   /* This represents what we'll actually request the target to do.
2401      This can decay from a step to a continue, if e.g., we need to
2402      implement single-stepping with breakpoints (software
2403      single-step).  */
2404   int step;
2405
2406   gdb_assert (!tp->stop_requested);
2407   gdb_assert (!thread_is_in_step_over_chain (tp));
2408
2409   QUIT;
2410
2411   if (tp->suspend.waitstatus_pending_p)
2412     {
2413       if (debug_infrun)
2414         {
2415           char *statstr;
2416
2417           statstr = target_waitstatus_to_string (&tp->suspend.waitstatus);
2418           fprintf_unfiltered (gdb_stdlog,
2419                               "infrun: resume: thread %s has pending wait status %s "
2420                               "(currently_stepping=%d).\n",
2421                               target_pid_to_str (tp->ptid),  statstr,
2422                               currently_stepping (tp));
2423           xfree (statstr);
2424         }
2425
2426       tp->resumed = 1;
2427
2428       /* FIXME: What should we do if we are supposed to resume this
2429          thread with a signal?  Maybe we should maintain a queue of
2430          pending signals to deliver.  */
2431       if (sig != GDB_SIGNAL_0)
2432         {
2433           warning (_("Couldn't deliver signal %s to %s."),
2434                    gdb_signal_to_name (sig), target_pid_to_str (tp->ptid));
2435         }
2436
2437       tp->suspend.stop_signal = GDB_SIGNAL_0;
2438       discard_cleanups (old_cleanups);
2439
2440       if (target_can_async_p ())
2441         target_async (1);
2442       return;
2443     }
2444
2445   tp->stepped_breakpoint = 0;
2446
2447   /* Depends on stepped_breakpoint.  */
2448   step = currently_stepping (tp);
2449
2450   if (current_inferior ()->waiting_for_vfork_done)
2451     {
2452       /* Don't try to single-step a vfork parent that is waiting for
2453          the child to get out of the shared memory region (by exec'ing
2454          or exiting).  This is particularly important on software
2455          single-step archs, as the child process would trip on the
2456          software single step breakpoint inserted for the parent
2457          process.  Since the parent will not actually execute any
2458          instruction until the child is out of the shared region (such
2459          are vfork's semantics), it is safe to simply continue it.
2460          Eventually, we'll see a TARGET_WAITKIND_VFORK_DONE event for
2461          the parent, and tell it to `keep_going', which automatically
2462          re-sets it stepping.  */
2463       if (debug_infrun)
2464         fprintf_unfiltered (gdb_stdlog,
2465                             "infrun: resume : clear step\n");
2466       step = 0;
2467     }
2468
2469   if (debug_infrun)
2470     fprintf_unfiltered (gdb_stdlog,
2471                         "infrun: resume (step=%d, signal=%s), "
2472                         "trap_expected=%d, current thread [%s] at %s\n",
2473                         step, gdb_signal_to_symbol_string (sig),
2474                         tp->control.trap_expected,
2475                         target_pid_to_str (inferior_ptid),
2476                         paddress (gdbarch, pc));
2477
2478   /* Normally, by the time we reach `resume', the breakpoints are either
2479      removed or inserted, as appropriate.  The exception is if we're sitting
2480      at a permanent breakpoint; we need to step over it, but permanent
2481      breakpoints can't be removed.  So we have to test for it here.  */
2482   if (breakpoint_here_p (aspace, pc) == permanent_breakpoint_here)
2483     {
2484       if (sig != GDB_SIGNAL_0)
2485         {
2486           /* We have a signal to pass to the inferior.  The resume
2487              may, or may not take us to the signal handler.  If this
2488              is a step, we'll need to stop in the signal handler, if
2489              there's one, (if the target supports stepping into
2490              handlers), or in the next mainline instruction, if
2491              there's no handler.  If this is a continue, we need to be
2492              sure to run the handler with all breakpoints inserted.
2493              In all cases, set a breakpoint at the current address
2494              (where the handler returns to), and once that breakpoint
2495              is hit, resume skipping the permanent breakpoint.  If
2496              that breakpoint isn't hit, then we've stepped into the
2497              signal handler (or hit some other event).  We'll delete
2498              the step-resume breakpoint then.  */
2499
2500           if (debug_infrun)
2501             fprintf_unfiltered (gdb_stdlog,
2502                                 "infrun: resume: skipping permanent breakpoint, "
2503                                 "deliver signal first\n");
2504
2505           clear_step_over_info ();
2506           tp->control.trap_expected = 0;
2507
2508           if (tp->control.step_resume_breakpoint == NULL)
2509             {
2510               /* Set a "high-priority" step-resume, as we don't want
2511                  user breakpoints at PC to trigger (again) when this
2512                  hits.  */
2513               insert_hp_step_resume_breakpoint_at_frame (get_current_frame ());
2514               gdb_assert (tp->control.step_resume_breakpoint->loc->permanent);
2515
2516               tp->step_after_step_resume_breakpoint = step;
2517             }
2518
2519           insert_breakpoints ();
2520         }
2521       else
2522         {
2523           /* There's no signal to pass, we can go ahead and skip the
2524              permanent breakpoint manually.  */
2525           if (debug_infrun)
2526             fprintf_unfiltered (gdb_stdlog,
2527                                 "infrun: resume: skipping permanent breakpoint\n");
2528           gdbarch_skip_permanent_breakpoint (gdbarch, regcache);
2529           /* Update pc to reflect the new address from which we will
2530              execute instructions.  */
2531           pc = regcache_read_pc (regcache);
2532
2533           if (step)
2534             {
2535               /* We've already advanced the PC, so the stepping part
2536                  is done.  Now we need to arrange for a trap to be
2537                  reported to handle_inferior_event.  Set a breakpoint
2538                  at the current PC, and run to it.  Don't update
2539                  prev_pc, because if we end in
2540                  switch_back_to_stepped_thread, we want the "expected
2541                  thread advanced also" branch to be taken.  IOW, we
2542                  don't want this thread to step further from PC
2543                  (overstep).  */
2544               gdb_assert (!step_over_info_valid_p ());
2545               insert_single_step_breakpoint (gdbarch, aspace, pc);
2546               insert_breakpoints ();
2547
2548               resume_ptid = internal_resume_ptid (user_step);
2549               do_target_resume (resume_ptid, 0, GDB_SIGNAL_0);
2550               discard_cleanups (old_cleanups);
2551               tp->resumed = 1;
2552               return;
2553             }
2554         }
2555     }
2556
2557   /* If we have a breakpoint to step over, make sure to do a single
2558      step only.  Same if we have software watchpoints.  */
2559   if (tp->control.trap_expected || bpstat_should_step ())
2560     tp->control.may_range_step = 0;
2561
2562   /* If enabled, step over breakpoints by executing a copy of the
2563      instruction at a different address.
2564
2565      We can't use displaced stepping when we have a signal to deliver;
2566      the comments for displaced_step_prepare explain why.  The
2567      comments in the handle_inferior event for dealing with 'random
2568      signals' explain what we do instead.
2569
2570      We can't use displaced stepping when we are waiting for vfork_done
2571      event, displaced stepping breaks the vfork child similarly as single
2572      step software breakpoint.  */
2573   if (tp->control.trap_expected
2574       && use_displaced_stepping (tp)
2575       && !step_over_info_valid_p ()
2576       && sig == GDB_SIGNAL_0
2577       && !current_inferior ()->waiting_for_vfork_done)
2578     {
2579       int prepared = displaced_step_prepare (inferior_ptid);
2580
2581       if (prepared == 0)
2582         {
2583           if (debug_infrun)
2584             fprintf_unfiltered (gdb_stdlog,
2585                                 "Got placed in step-over queue\n");
2586
2587           tp->control.trap_expected = 0;
2588           discard_cleanups (old_cleanups);
2589           return;
2590         }
2591       else if (prepared < 0)
2592         {
2593           /* Fallback to stepping over the breakpoint in-line.  */
2594
2595           if (target_is_non_stop_p ())
2596             stop_all_threads ();
2597
2598           set_step_over_info (get_regcache_aspace (regcache),
2599                               regcache_read_pc (regcache), 0, tp->global_num);
2600
2601           step = maybe_software_singlestep (gdbarch, pc);
2602
2603           insert_breakpoints ();
2604         }
2605       else if (prepared > 0)
2606         {
2607           struct displaced_step_inferior_state *displaced;
2608
2609           /* Update pc to reflect the new address from which we will
2610              execute instructions due to displaced stepping.  */
2611           pc = regcache_read_pc (get_thread_regcache (inferior_ptid));
2612
2613           displaced = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
2614           step = gdbarch_displaced_step_hw_singlestep (gdbarch,
2615                                                        displaced->step_closure);
2616         }
2617     }
2618
2619   /* Do we need to do it the hard way, w/temp breakpoints?  */
2620   else if (step)
2621     step = maybe_software_singlestep (gdbarch, pc);
2622
2623   /* Currently, our software single-step implementation leads to different
2624      results than hardware single-stepping in one situation: when stepping
2625      into delivering a signal which has an associated signal handler,
2626      hardware single-step will stop at the first instruction of the handler,
2627      while software single-step will simply skip execution of the handler.
2628
2629      For now, this difference in behavior is accepted since there is no
2630      easy way to actually implement single-stepping into a signal handler
2631      without kernel support.
2632
2633      However, there is one scenario where this difference leads to follow-on
2634      problems: if we're stepping off a breakpoint by removing all breakpoints
2635      and then single-stepping.  In this case, the software single-step
2636      behavior means that even if there is a *breakpoint* in the signal
2637      handler, GDB still would not stop.
2638
2639      Fortunately, we can at least fix this particular issue.  We detect
2640      here the case where we are about to deliver a signal while software
2641      single-stepping with breakpoints removed.  In this situation, we
2642      revert the decisions to remove all breakpoints and insert single-
2643      step breakpoints, and instead we install a step-resume breakpoint
2644      at the current address, deliver the signal without stepping, and
2645      once we arrive back at the step-resume breakpoint, actually step
2646      over the breakpoint we originally wanted to step over.  */
2647   if (thread_has_single_step_breakpoints_set (tp)
2648       && sig != GDB_SIGNAL_0
2649       && step_over_info_valid_p ())
2650     {
2651       /* If we have nested signals or a pending signal is delivered
2652          immediately after a handler returns, might might already have
2653          a step-resume breakpoint set on the earlier handler.  We cannot
2654          set another step-resume breakpoint; just continue on until the
2655          original breakpoint is hit.  */
2656       if (tp->control.step_resume_breakpoint == NULL)
2657         {
2658           insert_hp_step_resume_breakpoint_at_frame (get_current_frame ());
2659           tp->step_after_step_resume_breakpoint = 1;
2660         }
2661
2662       delete_single_step_breakpoints (tp);
2663
2664       clear_step_over_info ();
2665       tp->control.trap_expected = 0;
2666
2667       insert_breakpoints ();
2668     }
2669
2670   /* If STEP is set, it's a request to use hardware stepping
2671      facilities.  But in that case, we should never
2672      use singlestep breakpoint.  */
2673   gdb_assert (!(thread_has_single_step_breakpoints_set (tp) && step));
2674
2675   /* Decide the set of threads to ask the target to resume.  */
2676   if (tp->control.trap_expected)
2677     {
2678       /* We're allowing a thread to run past a breakpoint it has
2679          hit, either by single-stepping the thread with the breakpoint
2680          removed, or by displaced stepping, with the breakpoint inserted.
2681          In the former case, we need to single-step only this thread,
2682          and keep others stopped, as they can miss this breakpoint if
2683          allowed to run.  That's not really a problem for displaced
2684          stepping, but, we still keep other threads stopped, in case
2685          another thread is also stopped for a breakpoint waiting for
2686          its turn in the displaced stepping queue.  */
2687       resume_ptid = inferior_ptid;
2688     }
2689   else
2690     resume_ptid = internal_resume_ptid (user_step);
2691
2692   if (execution_direction != EXEC_REVERSE
2693       && step && breakpoint_inserted_here_p (aspace, pc))
2694     {
2695       /* There are two cases where we currently need to step a
2696          breakpoint instruction when we have a signal to deliver:
2697
2698          - See handle_signal_stop where we handle random signals that
2699          could take out us out of the stepping range.  Normally, in
2700          that case we end up continuing (instead of stepping) over the
2701          signal handler with a breakpoint at PC, but there are cases
2702          where we should _always_ single-step, even if we have a
2703          step-resume breakpoint, like when a software watchpoint is
2704          set.  Assuming single-stepping and delivering a signal at the
2705          same time would takes us to the signal handler, then we could
2706          have removed the breakpoint at PC to step over it.  However,
2707          some hardware step targets (like e.g., Mac OS) can't step
2708          into signal handlers, and for those, we need to leave the
2709          breakpoint at PC inserted, as otherwise if the handler
2710          recurses and executes PC again, it'll miss the breakpoint.
2711          So we leave the breakpoint inserted anyway, but we need to
2712          record that we tried to step a breakpoint instruction, so
2713          that adjust_pc_after_break doesn't end up confused.
2714
2715          - In non-stop if we insert a breakpoint (e.g., a step-resume)
2716          in one thread after another thread that was stepping had been
2717          momentarily paused for a step-over.  When we re-resume the
2718          stepping thread, it may be resumed from that address with a
2719          breakpoint that hasn't trapped yet.  Seen with
2720          gdb.threads/non-stop-fair-events.exp, on targets that don't
2721          do displaced stepping.  */
2722
2723       if (debug_infrun)
2724         fprintf_unfiltered (gdb_stdlog,
2725                             "infrun: resume: [%s] stepped breakpoint\n",
2726                             target_pid_to_str (tp->ptid));
2727
2728       tp->stepped_breakpoint = 1;
2729
2730       /* Most targets can step a breakpoint instruction, thus
2731          executing it normally.  But if this one cannot, just
2732          continue and we will hit it anyway.  */
2733       if (gdbarch_cannot_step_breakpoint (gdbarch))
2734         step = 0;
2735     }
2736
2737   if (debug_displaced
2738       && tp->control.trap_expected
2739       && use_displaced_stepping (tp)
2740       && !step_over_info_valid_p ())
2741     {
2742       struct regcache *resume_regcache = get_thread_regcache (tp->ptid);
2743       struct gdbarch *resume_gdbarch = get_regcache_arch (resume_regcache);
2744       CORE_ADDR actual_pc = regcache_read_pc (resume_regcache);
2745       gdb_byte buf[4];
2746
2747       fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
2748                           paddress (resume_gdbarch, actual_pc));
2749       read_memory (actual_pc, buf, sizeof (buf));
2750       displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
2751     }
2752
2753   if (tp->control.may_range_step)
2754     {
2755       /* If we're resuming a thread with the PC out of the step
2756          range, then we're doing some nested/finer run control
2757          operation, like stepping the thread out of the dynamic
2758          linker or the displaced stepping scratch pad.  We
2759          shouldn't have allowed a range step then.  */
2760       gdb_assert (pc_in_thread_step_range (pc, tp));
2761     }
2762
2763   do_target_resume (resume_ptid, step, sig);
2764   tp->resumed = 1;
2765   discard_cleanups (old_cleanups);
2766 }
2767 \f
2768 /* Proceeding.  */
2769
2770 /* See infrun.h.  */
2771
2772 /* Counter that tracks number of user visible stops.  This can be used
2773    to tell whether a command has proceeded the inferior past the
2774    current location.  This allows e.g., inferior function calls in
2775    breakpoint commands to not interrupt the command list.  When the
2776    call finishes successfully, the inferior is standing at the same
2777    breakpoint as if nothing happened (and so we don't call
2778    normal_stop).  */
2779 static ULONGEST current_stop_id;
2780
2781 /* See infrun.h.  */
2782
2783 ULONGEST
2784 get_stop_id (void)
2785 {
2786   return current_stop_id;
2787 }
2788
2789 /* Called when we report a user visible stop.  */
2790
2791 static void
2792 new_stop_id (void)
2793 {
2794   current_stop_id++;
2795 }
2796
2797 /* Clear out all variables saying what to do when inferior is continued.
2798    First do this, then set the ones you want, then call `proceed'.  */
2799
2800 static void
2801 clear_proceed_status_thread (struct thread_info *tp)
2802 {
2803   if (debug_infrun)
2804     fprintf_unfiltered (gdb_stdlog,
2805                         "infrun: clear_proceed_status_thread (%s)\n",
2806                         target_pid_to_str (tp->ptid));
2807
2808   /* If we're starting a new sequence, then the previous finished
2809      single-step is no longer relevant.  */
2810   if (tp->suspend.waitstatus_pending_p)
2811     {
2812       if (tp->suspend.stop_reason == TARGET_STOPPED_BY_SINGLE_STEP)
2813         {
2814           if (debug_infrun)
2815             fprintf_unfiltered (gdb_stdlog,
2816                                 "infrun: clear_proceed_status: pending "
2817                                 "event of %s was a finished step. "
2818                                 "Discarding.\n",
2819                                 target_pid_to_str (tp->ptid));
2820
2821           tp->suspend.waitstatus_pending_p = 0;
2822           tp->suspend.stop_reason = TARGET_STOPPED_BY_NO_REASON;
2823         }
2824       else if (debug_infrun)
2825         {
2826           char *statstr;
2827
2828           statstr = target_waitstatus_to_string (&tp->suspend.waitstatus);
2829           fprintf_unfiltered (gdb_stdlog,
2830                               "infrun: clear_proceed_status_thread: thread %s "
2831                               "has pending wait status %s "
2832                               "(currently_stepping=%d).\n",
2833                               target_pid_to_str (tp->ptid), statstr,
2834                               currently_stepping (tp));
2835           xfree (statstr);
2836         }
2837     }
2838
2839   /* If this signal should not be seen by program, give it zero.
2840      Used for debugging signals.  */
2841   if (!signal_pass_state (tp->suspend.stop_signal))
2842     tp->suspend.stop_signal = GDB_SIGNAL_0;
2843
2844   thread_fsm_delete (tp->thread_fsm);
2845   tp->thread_fsm = NULL;
2846
2847   tp->control.trap_expected = 0;
2848   tp->control.step_range_start = 0;
2849   tp->control.step_range_end = 0;
2850   tp->control.may_range_step = 0;
2851   tp->control.step_frame_id = null_frame_id;
2852   tp->control.step_stack_frame_id = null_frame_id;
2853   tp->control.step_over_calls = STEP_OVER_UNDEBUGGABLE;
2854   tp->control.step_start_function = NULL;
2855   tp->stop_requested = 0;
2856
2857   tp->control.stop_step = 0;
2858
2859   tp->control.proceed_to_finish = 0;
2860
2861   tp->control.stepping_command = 0;
2862
2863   /* Discard any remaining commands or status from previous stop.  */
2864   bpstat_clear (&tp->control.stop_bpstat);
2865 }
2866
2867 void
2868 clear_proceed_status (int step)
2869 {
2870   /* With scheduler-locking replay, stop replaying other threads if we're
2871      not replaying the user-visible resume ptid.
2872
2873      This is a convenience feature to not require the user to explicitly
2874      stop replaying the other threads.  We're assuming that the user's
2875      intent is to resume tracing the recorded process.  */
2876   if (!non_stop && scheduler_mode == schedlock_replay
2877       && target_record_is_replaying (minus_one_ptid)
2878       && !target_record_will_replay (user_visible_resume_ptid (step),
2879                                      execution_direction))
2880     target_record_stop_replaying ();
2881
2882   if (!non_stop)
2883     {
2884       struct thread_info *tp;
2885       ptid_t resume_ptid;
2886
2887       resume_ptid = user_visible_resume_ptid (step);
2888
2889       /* In all-stop mode, delete the per-thread status of all threads
2890          we're about to resume, implicitly and explicitly.  */
2891       ALL_NON_EXITED_THREADS (tp)
2892         {
2893           if (!ptid_match (tp->ptid, resume_ptid))
2894             continue;
2895           clear_proceed_status_thread (tp);
2896         }
2897     }
2898
2899   if (!ptid_equal (inferior_ptid, null_ptid))
2900     {
2901       struct inferior *inferior;
2902
2903       if (non_stop)
2904         {
2905           /* If in non-stop mode, only delete the per-thread status of
2906              the current thread.  */
2907           clear_proceed_status_thread (inferior_thread ());
2908         }
2909
2910       inferior = current_inferior ();
2911       inferior->control.stop_soon = NO_STOP_QUIETLY;
2912     }
2913
2914   observer_notify_about_to_proceed ();
2915 }
2916
2917 /* Returns true if TP is still stopped at a breakpoint that needs
2918    stepping-over in order to make progress.  If the breakpoint is gone
2919    meanwhile, we can skip the whole step-over dance.  */
2920
2921 static int
2922 thread_still_needs_step_over_bp (struct thread_info *tp)
2923 {
2924   if (tp->stepping_over_breakpoint)
2925     {
2926       struct regcache *regcache = get_thread_regcache (tp->ptid);
2927
2928       if (breakpoint_here_p (get_regcache_aspace (regcache),
2929                              regcache_read_pc (regcache))
2930           == ordinary_breakpoint_here)
2931         return 1;
2932
2933       tp->stepping_over_breakpoint = 0;
2934     }
2935
2936   return 0;
2937 }
2938
2939 /* Check whether thread TP still needs to start a step-over in order
2940    to make progress when resumed.  Returns an bitwise or of enum
2941    step_over_what bits, indicating what needs to be stepped over.  */
2942
2943 static step_over_what
2944 thread_still_needs_step_over (struct thread_info *tp)
2945 {
2946   step_over_what what = 0;
2947
2948   if (thread_still_needs_step_over_bp (tp))
2949     what |= STEP_OVER_BREAKPOINT;
2950
2951   if (tp->stepping_over_watchpoint
2952       && !target_have_steppable_watchpoint)
2953     what |= STEP_OVER_WATCHPOINT;
2954
2955   return what;
2956 }
2957
2958 /* Returns true if scheduler locking applies.  STEP indicates whether
2959    we're about to do a step/next-like command to a thread.  */
2960
2961 static int
2962 schedlock_applies (struct thread_info *tp)
2963 {
2964   return (scheduler_mode == schedlock_on
2965           || (scheduler_mode == schedlock_step
2966               && tp->control.stepping_command)
2967           || (scheduler_mode == schedlock_replay
2968               && target_record_will_replay (minus_one_ptid,
2969                                             execution_direction)));
2970 }
2971
2972 /* Basic routine for continuing the program in various fashions.
2973
2974    ADDR is the address to resume at, or -1 for resume where stopped.
2975    SIGGNAL is the signal to give it, or 0 for none,
2976    or -1 for act according to how it stopped.
2977    STEP is nonzero if should trap after one instruction.
2978    -1 means return after that and print nothing.
2979    You should probably set various step_... variables
2980    before calling here, if you are stepping.
2981
2982    You should call clear_proceed_status before calling proceed.  */
2983
2984 void
2985 proceed (CORE_ADDR addr, enum gdb_signal siggnal)
2986 {
2987   struct regcache *regcache;
2988   struct gdbarch *gdbarch;
2989   struct thread_info *tp;
2990   CORE_ADDR pc;
2991   struct address_space *aspace;
2992   ptid_t resume_ptid;
2993   struct execution_control_state ecss;
2994   struct execution_control_state *ecs = &ecss;
2995   struct cleanup *old_chain;
2996   struct cleanup *defer_resume_cleanup;
2997   int started;
2998
2999   /* If we're stopped at a fork/vfork, follow the branch set by the
3000      "set follow-fork-mode" command; otherwise, we'll just proceed
3001      resuming the current thread.  */
3002   if (!follow_fork ())
3003     {
3004       /* The target for some reason decided not to resume.  */
3005       normal_stop ();
3006       if (target_can_async_p ())
3007         inferior_event_handler (INF_EXEC_COMPLETE, NULL);
3008       return;
3009     }
3010
3011   /* We'll update this if & when we switch to a new thread.  */
3012   previous_inferior_ptid = inferior_ptid;
3013
3014   regcache = get_current_regcache ();
3015   gdbarch = get_regcache_arch (regcache);
3016   aspace = get_regcache_aspace (regcache);
3017   pc = regcache_read_pc (regcache);
3018   tp = inferior_thread ();
3019
3020   /* Fill in with reasonable starting values.  */
3021   init_thread_stepping_state (tp);
3022
3023   gdb_assert (!thread_is_in_step_over_chain (tp));
3024
3025   if (addr == (CORE_ADDR) -1)
3026     {
3027       if (pc == stop_pc
3028           && breakpoint_here_p (aspace, pc) == ordinary_breakpoint_here
3029           && execution_direction != EXEC_REVERSE)
3030         /* There is a breakpoint at the address we will resume at,
3031            step one instruction before inserting breakpoints so that
3032            we do not stop right away (and report a second hit at this
3033            breakpoint).
3034
3035            Note, we don't do this in reverse, because we won't
3036            actually be executing the breakpoint insn anyway.
3037            We'll be (un-)executing the previous instruction.  */
3038         tp->stepping_over_breakpoint = 1;
3039       else if (gdbarch_single_step_through_delay_p (gdbarch)
3040                && gdbarch_single_step_through_delay (gdbarch,
3041                                                      get_current_frame ()))
3042         /* We stepped onto an instruction that needs to be stepped
3043            again before re-inserting the breakpoint, do so.  */
3044         tp->stepping_over_breakpoint = 1;
3045     }
3046   else
3047     {
3048       regcache_write_pc (regcache, addr);
3049     }
3050
3051   if (siggnal != GDB_SIGNAL_DEFAULT)
3052     tp->suspend.stop_signal = siggnal;
3053
3054   resume_ptid = user_visible_resume_ptid (tp->control.stepping_command);
3055
3056   /* If an exception is thrown from this point on, make sure to
3057      propagate GDB's knowledge of the executing state to the
3058      frontend/user running state.  */
3059   old_chain = make_cleanup (finish_thread_state_cleanup, &resume_ptid);
3060
3061   /* Even if RESUME_PTID is a wildcard, and we end up resuming fewer
3062      threads (e.g., we might need to set threads stepping over
3063      breakpoints first), from the user/frontend's point of view, all
3064      threads in RESUME_PTID are now running.  Unless we're calling an
3065      inferior function, as in that case we pretend the inferior
3066      doesn't run at all.  */
3067   if (!tp->control.in_infcall)
3068    set_running (resume_ptid, 1);
3069
3070   if (debug_infrun)
3071     fprintf_unfiltered (gdb_stdlog,
3072                         "infrun: proceed (addr=%s, signal=%s)\n",
3073                         paddress (gdbarch, addr),
3074                         gdb_signal_to_symbol_string (siggnal));
3075
3076   annotate_starting ();
3077
3078   /* Make sure that output from GDB appears before output from the
3079      inferior.  */
3080   gdb_flush (gdb_stdout);
3081
3082   /* In a multi-threaded task we may select another thread and
3083      then continue or step.
3084
3085      But if a thread that we're resuming had stopped at a breakpoint,
3086      it will immediately cause another breakpoint stop without any
3087      execution (i.e. it will report a breakpoint hit incorrectly).  So
3088      we must step over it first.
3089
3090      Look for threads other than the current (TP) that reported a
3091      breakpoint hit and haven't been resumed yet since.  */
3092
3093   /* If scheduler locking applies, we can avoid iterating over all
3094      threads.  */
3095   if (!non_stop && !schedlock_applies (tp))
3096     {
3097       struct thread_info *current = tp;
3098
3099       ALL_NON_EXITED_THREADS (tp)
3100         {
3101           /* Ignore the current thread here.  It's handled
3102              afterwards.  */
3103           if (tp == current)
3104             continue;
3105
3106           /* Ignore threads of processes we're not resuming.  */
3107           if (!ptid_match (tp->ptid, resume_ptid))
3108             continue;
3109
3110           if (!thread_still_needs_step_over (tp))
3111             continue;
3112
3113           gdb_assert (!thread_is_in_step_over_chain (tp));
3114
3115           if (debug_infrun)
3116             fprintf_unfiltered (gdb_stdlog,
3117                                 "infrun: need to step-over [%s] first\n",
3118                                 target_pid_to_str (tp->ptid));
3119
3120           thread_step_over_chain_enqueue (tp);
3121         }
3122
3123       tp = current;
3124     }
3125
3126   /* Enqueue the current thread last, so that we move all other
3127      threads over their breakpoints first.  */
3128   if (tp->stepping_over_breakpoint)
3129     thread_step_over_chain_enqueue (tp);
3130
3131   /* If the thread isn't started, we'll still need to set its prev_pc,
3132      so that switch_back_to_stepped_thread knows the thread hasn't
3133      advanced.  Must do this before resuming any thread, as in
3134      all-stop/remote, once we resume we can't send any other packet
3135      until the target stops again.  */
3136   tp->prev_pc = regcache_read_pc (regcache);
3137
3138   defer_resume_cleanup = make_cleanup_defer_target_commit_resume ();
3139
3140   started = start_step_over ();
3141
3142   if (step_over_info_valid_p ())
3143     {
3144       /* Either this thread started a new in-line step over, or some
3145          other thread was already doing one.  In either case, don't
3146          resume anything else until the step-over is finished.  */
3147     }
3148   else if (started && !target_is_non_stop_p ())
3149     {
3150       /* A new displaced stepping sequence was started.  In all-stop,
3151          we can't talk to the target anymore until it next stops.  */
3152     }
3153   else if (!non_stop && target_is_non_stop_p ())
3154     {
3155       /* In all-stop, but the target is always in non-stop mode.
3156          Start all other threads that are implicitly resumed too.  */
3157       ALL_NON_EXITED_THREADS (tp)
3158         {
3159           /* Ignore threads of processes we're not resuming.  */
3160           if (!ptid_match (tp->ptid, resume_ptid))
3161             continue;
3162
3163           if (tp->resumed)
3164             {
3165               if (debug_infrun)
3166                 fprintf_unfiltered (gdb_stdlog,
3167                                     "infrun: proceed: [%s] resumed\n",
3168                                     target_pid_to_str (tp->ptid));
3169               gdb_assert (tp->executing || tp->suspend.waitstatus_pending_p);
3170               continue;
3171             }
3172
3173           if (thread_is_in_step_over_chain (tp))
3174             {
3175               if (debug_infrun)
3176                 fprintf_unfiltered (gdb_stdlog,
3177                                     "infrun: proceed: [%s] needs step-over\n",
3178                                     target_pid_to_str (tp->ptid));
3179               continue;
3180             }
3181
3182           if (debug_infrun)
3183             fprintf_unfiltered (gdb_stdlog,
3184                                 "infrun: proceed: resuming %s\n",
3185                                 target_pid_to_str (tp->ptid));
3186
3187           reset_ecs (ecs, tp);
3188           switch_to_thread (tp->ptid);
3189           keep_going_pass_signal (ecs);
3190           if (!ecs->wait_some_more)
3191             error (_("Command aborted."));
3192         }
3193     }
3194   else if (!tp->resumed && !thread_is_in_step_over_chain (tp))
3195     {
3196       /* The thread wasn't started, and isn't queued, run it now.  */
3197       reset_ecs (ecs, tp);
3198       switch_to_thread (tp->ptid);
3199       keep_going_pass_signal (ecs);
3200       if (!ecs->wait_some_more)
3201         error (_("Command aborted."));
3202     }
3203
3204   do_cleanups (defer_resume_cleanup);
3205   target_commit_resume ();
3206
3207   discard_cleanups (old_chain);
3208
3209   /* Tell the event loop to wait for it to stop.  If the target
3210      supports asynchronous execution, it'll do this from within
3211      target_resume.  */
3212   if (!target_can_async_p ())
3213     mark_async_event_handler (infrun_async_inferior_event_token);
3214 }
3215 \f
3216
3217 /* Start remote-debugging of a machine over a serial link.  */
3218
3219 void
3220 start_remote (int from_tty)
3221 {
3222   struct inferior *inferior;
3223
3224   inferior = current_inferior ();
3225   inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
3226
3227   /* Always go on waiting for the target, regardless of the mode.  */
3228   /* FIXME: cagney/1999-09-23: At present it isn't possible to
3229      indicate to wait_for_inferior that a target should timeout if
3230      nothing is returned (instead of just blocking).  Because of this,
3231      targets expecting an immediate response need to, internally, set
3232      things up so that the target_wait() is forced to eventually
3233      timeout.  */
3234   /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
3235      differentiate to its caller what the state of the target is after
3236      the initial open has been performed.  Here we're assuming that
3237      the target has stopped.  It should be possible to eventually have
3238      target_open() return to the caller an indication that the target
3239      is currently running and GDB state should be set to the same as
3240      for an async run.  */
3241   wait_for_inferior ();
3242
3243   /* Now that the inferior has stopped, do any bookkeeping like
3244      loading shared libraries.  We want to do this before normal_stop,
3245      so that the displayed frame is up to date.  */
3246   post_create_inferior (&current_target, from_tty);
3247
3248   normal_stop ();
3249 }
3250
3251 /* Initialize static vars when a new inferior begins.  */
3252
3253 void
3254 init_wait_for_inferior (void)
3255 {
3256   /* These are meaningless until the first time through wait_for_inferior.  */
3257
3258   breakpoint_init_inferior (inf_starting);
3259
3260   clear_proceed_status (0);
3261
3262   target_last_wait_ptid = minus_one_ptid;
3263
3264   previous_inferior_ptid = inferior_ptid;
3265
3266   /* Discard any skipped inlined frames.  */
3267   clear_inline_frame_state (minus_one_ptid);
3268 }
3269
3270 \f
3271
3272 static void handle_inferior_event (struct execution_control_state *ecs);
3273
3274 static void handle_step_into_function (struct gdbarch *gdbarch,
3275                                        struct execution_control_state *ecs);
3276 static void handle_step_into_function_backward (struct gdbarch *gdbarch,
3277                                                 struct execution_control_state *ecs);
3278 static void handle_signal_stop (struct execution_control_state *ecs);
3279 static void check_exception_resume (struct execution_control_state *,
3280                                     struct frame_info *);
3281
3282 static void end_stepping_range (struct execution_control_state *ecs);
3283 static void stop_waiting (struct execution_control_state *ecs);
3284 static void keep_going (struct execution_control_state *ecs);
3285 static void process_event_stop_test (struct execution_control_state *ecs);
3286 static int switch_back_to_stepped_thread (struct execution_control_state *ecs);
3287
3288 /* This function is attached as a "thread_stop_requested" observer.
3289    Cleanup local state that assumed the PTID was to be resumed, and
3290    report the stop to the frontend.  */
3291
3292 static void
3293 infrun_thread_stop_requested (ptid_t ptid)
3294 {
3295   struct thread_info *tp;
3296
3297   /* PTID was requested to stop.  If the thread was already stopped,
3298      but the user/frontend doesn't know about that yet (e.g., the
3299      thread had been temporarily paused for some step-over), set up
3300      for reporting the stop now.  */
3301   ALL_NON_EXITED_THREADS (tp)
3302     if (ptid_match (tp->ptid, ptid))
3303       {
3304         if (tp->state != THREAD_RUNNING)
3305           continue;
3306         if (tp->executing)
3307           continue;
3308
3309         /* Remove matching threads from the step-over queue, so
3310            start_step_over doesn't try to resume them
3311            automatically.  */
3312         if (thread_is_in_step_over_chain (tp))
3313           thread_step_over_chain_remove (tp);
3314
3315         /* If the thread is stopped, but the user/frontend doesn't
3316            know about that yet, queue a pending event, as if the
3317            thread had just stopped now.  Unless the thread already had
3318            a pending event.  */
3319         if (!tp->suspend.waitstatus_pending_p)
3320           {
3321             tp->suspend.waitstatus_pending_p = 1;
3322             tp->suspend.waitstatus.kind = TARGET_WAITKIND_STOPPED;
3323             tp->suspend.waitstatus.value.sig = GDB_SIGNAL_0;
3324           }
3325
3326         /* Clear the inline-frame state, since we're re-processing the
3327            stop.  */
3328         clear_inline_frame_state (tp->ptid);
3329
3330         /* If this thread was paused because some other thread was
3331            doing an inline-step over, let that finish first.  Once
3332            that happens, we'll restart all threads and consume pending
3333            stop events then.  */
3334         if (step_over_info_valid_p ())
3335           continue;
3336
3337         /* Otherwise we can process the (new) pending event now.  Set
3338            it so this pending event is considered by
3339            do_target_wait.  */
3340         tp->resumed = 1;
3341       }
3342 }
3343
3344 static void
3345 infrun_thread_thread_exit (struct thread_info *tp, int silent)
3346 {
3347   if (ptid_equal (target_last_wait_ptid, tp->ptid))
3348     nullify_last_target_wait_ptid ();
3349 }
3350
3351 /* Delete the step resume, single-step and longjmp/exception resume
3352    breakpoints of TP.  */
3353
3354 static void
3355 delete_thread_infrun_breakpoints (struct thread_info *tp)
3356 {
3357   delete_step_resume_breakpoint (tp);
3358   delete_exception_resume_breakpoint (tp);
3359   delete_single_step_breakpoints (tp);
3360 }
3361
3362 /* If the target still has execution, call FUNC for each thread that
3363    just stopped.  In all-stop, that's all the non-exited threads; in
3364    non-stop, that's the current thread, only.  */
3365
3366 typedef void (*for_each_just_stopped_thread_callback_func)
3367   (struct thread_info *tp);
3368
3369 static void
3370 for_each_just_stopped_thread (for_each_just_stopped_thread_callback_func func)
3371 {
3372   if (!target_has_execution || ptid_equal (inferior_ptid, null_ptid))
3373     return;
3374
3375   if (target_is_non_stop_p ())
3376     {
3377       /* If in non-stop mode, only the current thread stopped.  */
3378       func (inferior_thread ());
3379     }
3380   else
3381     {
3382       struct thread_info *tp;
3383
3384       /* In all-stop mode, all threads have stopped.  */
3385       ALL_NON_EXITED_THREADS (tp)
3386         {
3387           func (tp);
3388         }
3389     }
3390 }
3391
3392 /* Delete the step resume and longjmp/exception resume breakpoints of
3393    the threads that just stopped.  */
3394
3395 static void
3396 delete_just_stopped_threads_infrun_breakpoints (void)
3397 {
3398   for_each_just_stopped_thread (delete_thread_infrun_breakpoints);
3399 }
3400
3401 /* Delete the single-step breakpoints of the threads that just
3402    stopped.  */
3403
3404 static void
3405 delete_just_stopped_threads_single_step_breakpoints (void)
3406 {
3407   for_each_just_stopped_thread (delete_single_step_breakpoints);
3408 }
3409
3410 /* A cleanup wrapper.  */
3411
3412 static void
3413 delete_just_stopped_threads_infrun_breakpoints_cleanup (void *arg)
3414 {
3415   delete_just_stopped_threads_infrun_breakpoints ();
3416 }
3417
3418 /* See infrun.h.  */
3419
3420 void
3421 print_target_wait_results (ptid_t waiton_ptid, ptid_t result_ptid,
3422                            const struct target_waitstatus *ws)
3423 {
3424   char *status_string = target_waitstatus_to_string (ws);
3425   string_file stb;
3426
3427   /* The text is split over several lines because it was getting too long.
3428      Call fprintf_unfiltered (gdb_stdlog) once so that the text is still
3429      output as a unit; we want only one timestamp printed if debug_timestamp
3430      is set.  */
3431
3432   stb.printf ("infrun: target_wait (%d.%ld.%ld",
3433               ptid_get_pid (waiton_ptid),
3434               ptid_get_lwp (waiton_ptid),
3435               ptid_get_tid (waiton_ptid));
3436   if (ptid_get_pid (waiton_ptid) != -1)
3437     stb.printf (" [%s]", target_pid_to_str (waiton_ptid));
3438   stb.printf (", status) =\n");
3439   stb.printf ("infrun:   %d.%ld.%ld [%s],\n",
3440               ptid_get_pid (result_ptid),
3441               ptid_get_lwp (result_ptid),
3442               ptid_get_tid (result_ptid),
3443               target_pid_to_str (result_ptid));
3444   stb.printf ("infrun:   %s\n", status_string);
3445
3446   /* This uses %s in part to handle %'s in the text, but also to avoid
3447      a gcc error: the format attribute requires a string literal.  */
3448   fprintf_unfiltered (gdb_stdlog, "%s", stb.c_str ());
3449
3450   xfree (status_string);
3451 }
3452
3453 /* Select a thread at random, out of those which are resumed and have
3454    had events.  */
3455
3456 static struct thread_info *
3457 random_pending_event_thread (ptid_t waiton_ptid)
3458 {
3459   struct thread_info *event_tp;
3460   int num_events = 0;
3461   int random_selector;
3462
3463   /* First see how many events we have.  Count only resumed threads
3464      that have an event pending.  */
3465   ALL_NON_EXITED_THREADS (event_tp)
3466     if (ptid_match (event_tp->ptid, waiton_ptid)
3467         && event_tp->resumed
3468         && event_tp->suspend.waitstatus_pending_p)
3469       num_events++;
3470
3471   if (num_events == 0)
3472     return NULL;
3473
3474   /* Now randomly pick a thread out of those that have had events.  */
3475   random_selector = (int)
3476     ((num_events * (double) rand ()) / (RAND_MAX + 1.0));
3477
3478   if (debug_infrun && num_events > 1)
3479     fprintf_unfiltered (gdb_stdlog,
3480                         "infrun: Found %d events, selecting #%d\n",
3481                         num_events, random_selector);
3482
3483   /* Select the Nth thread that has had an event.  */
3484   ALL_NON_EXITED_THREADS (event_tp)
3485     if (ptid_match (event_tp->ptid, waiton_ptid)
3486         && event_tp->resumed
3487         && event_tp->suspend.waitstatus_pending_p)
3488       if (random_selector-- == 0)
3489         break;
3490
3491   return event_tp;
3492 }
3493
3494 /* Wrapper for target_wait that first checks whether threads have
3495    pending statuses to report before actually asking the target for
3496    more events.  */
3497
3498 static ptid_t
3499 do_target_wait (ptid_t ptid, struct target_waitstatus *status, int options)
3500 {
3501   ptid_t event_ptid;
3502   struct thread_info *tp;
3503
3504   /* First check if there is a resumed thread with a wait status
3505      pending.  */
3506   if (ptid_equal (ptid, minus_one_ptid) || ptid_is_pid (ptid))
3507     {
3508       tp = random_pending_event_thread (ptid);
3509     }
3510   else
3511     {
3512       if (debug_infrun)
3513         fprintf_unfiltered (gdb_stdlog,
3514                             "infrun: Waiting for specific thread %s.\n",
3515                             target_pid_to_str (ptid));
3516
3517       /* We have a specific thread to check.  */
3518       tp = find_thread_ptid (ptid);
3519       gdb_assert (tp != NULL);
3520       if (!tp->suspend.waitstatus_pending_p)
3521         tp = NULL;
3522     }
3523
3524   if (tp != NULL
3525       && (tp->suspend.stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT
3526           || tp->suspend.stop_reason == TARGET_STOPPED_BY_HW_BREAKPOINT))
3527     {
3528       struct regcache *regcache = get_thread_regcache (tp->ptid);
3529       struct gdbarch *gdbarch = get_regcache_arch (regcache);
3530       CORE_ADDR pc;
3531       int discard = 0;
3532
3533       pc = regcache_read_pc (regcache);
3534
3535       if (pc != tp->suspend.stop_pc)
3536         {
3537           if (debug_infrun)
3538             fprintf_unfiltered (gdb_stdlog,
3539                                 "infrun: PC of %s changed.  was=%s, now=%s\n",
3540                                 target_pid_to_str (tp->ptid),
3541                                 paddress (gdbarch, tp->prev_pc),
3542                                 paddress (gdbarch, pc));
3543           discard = 1;
3544         }
3545       else if (!breakpoint_inserted_here_p (get_regcache_aspace (regcache), pc))
3546         {
3547           if (debug_infrun)
3548             fprintf_unfiltered (gdb_stdlog,
3549                                 "infrun: previous breakpoint of %s, at %s gone\n",
3550                                 target_pid_to_str (tp->ptid),
3551                                 paddress (gdbarch, pc));
3552
3553           discard = 1;
3554         }
3555
3556       if (discard)
3557         {
3558           if (debug_infrun)
3559             fprintf_unfiltered (gdb_stdlog,
3560                                 "infrun: pending event of %s cancelled.\n",
3561                                 target_pid_to_str (tp->ptid));
3562
3563           tp->suspend.waitstatus.kind = TARGET_WAITKIND_SPURIOUS;
3564           tp->suspend.stop_reason = TARGET_STOPPED_BY_NO_REASON;
3565         }
3566     }
3567
3568   if (tp != NULL)
3569     {
3570       if (debug_infrun)
3571         {
3572           char *statstr;
3573
3574           statstr = target_waitstatus_to_string (&tp->suspend.waitstatus);
3575           fprintf_unfiltered (gdb_stdlog,
3576                               "infrun: Using pending wait status %s for %s.\n",
3577                               statstr,
3578                               target_pid_to_str (tp->ptid));
3579           xfree (statstr);
3580         }
3581
3582       /* Now that we've selected our final event LWP, un-adjust its PC
3583          if it was a software breakpoint (and the target doesn't
3584          always adjust the PC itself).  */
3585       if (tp->suspend.stop_reason == TARGET_STOPPED_BY_SW_BREAKPOINT
3586           && !target_supports_stopped_by_sw_breakpoint ())
3587         {
3588           struct regcache *regcache;
3589           struct gdbarch *gdbarch;
3590           int decr_pc;
3591
3592           regcache = get_thread_regcache (tp->ptid);
3593           gdbarch = get_regcache_arch (regcache);
3594
3595           decr_pc = gdbarch_decr_pc_after_break (gdbarch);
3596           if (decr_pc != 0)
3597             {
3598               CORE_ADDR pc;
3599
3600               pc = regcache_read_pc (regcache);
3601               regcache_write_pc (regcache, pc + decr_pc);
3602             }
3603         }
3604
3605       tp->suspend.stop_reason = TARGET_STOPPED_BY_NO_REASON;
3606       *status = tp->suspend.waitstatus;
3607       tp->suspend.waitstatus_pending_p = 0;
3608
3609       /* Wake up the event loop again, until all pending events are
3610          processed.  */
3611       if (target_is_async_p ())
3612         mark_async_event_handler (infrun_async_inferior_event_token);
3613       return tp->ptid;
3614     }
3615
3616   /* But if we don't find one, we'll have to wait.  */
3617
3618   if (deprecated_target_wait_hook)
3619     event_ptid = deprecated_target_wait_hook (ptid, status, options);
3620   else
3621     event_ptid = target_wait (ptid, status, options);
3622
3623   return event_ptid;
3624 }
3625
3626 /* Prepare and stabilize the inferior for detaching it.  E.g.,
3627    detaching while a thread is displaced stepping is a recipe for
3628    crashing it, as nothing would readjust the PC out of the scratch
3629    pad.  */
3630
3631 void
3632 prepare_for_detach (void)
3633 {
3634   struct inferior *inf = current_inferior ();
3635   ptid_t pid_ptid = pid_to_ptid (inf->pid);
3636   struct displaced_step_inferior_state *displaced;
3637
3638   displaced = get_displaced_stepping_state (inf->pid);
3639
3640   /* Is any thread of this process displaced stepping?  If not,
3641      there's nothing else to do.  */
3642   if (displaced == NULL || ptid_equal (displaced->step_ptid, null_ptid))
3643     return;
3644
3645   if (debug_infrun)
3646     fprintf_unfiltered (gdb_stdlog,
3647                         "displaced-stepping in-process while detaching");
3648
3649   scoped_restore restore_detaching = make_scoped_restore (&inf->detaching, true);
3650
3651   while (!ptid_equal (displaced->step_ptid, null_ptid))
3652     {
3653       struct cleanup *old_chain_2;
3654       struct execution_control_state ecss;
3655       struct execution_control_state *ecs;
3656
3657       ecs = &ecss;
3658       memset (ecs, 0, sizeof (*ecs));
3659
3660       overlay_cache_invalid = 1;
3661       /* Flush target cache before starting to handle each event.
3662          Target was running and cache could be stale.  This is just a
3663          heuristic.  Running threads may modify target memory, but we
3664          don't get any event.  */
3665       target_dcache_invalidate ();
3666
3667       ecs->ptid = do_target_wait (pid_ptid, &ecs->ws, 0);
3668
3669       if (debug_infrun)
3670         print_target_wait_results (pid_ptid, ecs->ptid, &ecs->ws);
3671
3672       /* If an error happens while handling the event, propagate GDB's
3673          knowledge of the executing state to the frontend/user running
3674          state.  */
3675       old_chain_2 = make_cleanup (finish_thread_state_cleanup,
3676                                   &minus_one_ptid);
3677
3678       /* Now figure out what to do with the result of the result.  */
3679       handle_inferior_event (ecs);
3680
3681       /* No error, don't finish the state yet.  */
3682       discard_cleanups (old_chain_2);
3683
3684       /* Breakpoints and watchpoints are not installed on the target
3685          at this point, and signals are passed directly to the
3686          inferior, so this must mean the process is gone.  */
3687       if (!ecs->wait_some_more)
3688         {
3689           restore_detaching.release ();
3690           error (_("Program exited while detaching"));
3691         }
3692     }
3693
3694   restore_detaching.release ();
3695 }
3696
3697 /* Wait for control to return from inferior to debugger.
3698
3699    If inferior gets a signal, we may decide to start it up again
3700    instead of returning.  That is why there is a loop in this function.
3701    When this function actually returns it means the inferior
3702    should be left stopped and GDB should read more commands.  */
3703
3704 void
3705 wait_for_inferior (void)
3706 {
3707   struct cleanup *old_cleanups;
3708   struct cleanup *thread_state_chain;
3709
3710   if (debug_infrun)
3711     fprintf_unfiltered
3712       (gdb_stdlog, "infrun: wait_for_inferior ()\n");
3713
3714   old_cleanups
3715     = make_cleanup (delete_just_stopped_threads_infrun_breakpoints_cleanup,
3716                     NULL);
3717
3718   /* If an error happens while handling the event, propagate GDB's
3719      knowledge of the executing state to the frontend/user running
3720      state.  */
3721   thread_state_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
3722
3723   while (1)
3724     {
3725       struct execution_control_state ecss;
3726       struct execution_control_state *ecs = &ecss;
3727       ptid_t waiton_ptid = minus_one_ptid;
3728
3729       memset (ecs, 0, sizeof (*ecs));
3730
3731       overlay_cache_invalid = 1;
3732
3733       /* Flush target cache before starting to handle each event.
3734          Target was running and cache could be stale.  This is just a
3735          heuristic.  Running threads may modify target memory, but we
3736          don't get any event.  */
3737       target_dcache_invalidate ();
3738
3739       ecs->ptid = do_target_wait (waiton_ptid, &ecs->ws, 0);
3740
3741       if (debug_infrun)
3742         print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
3743
3744       /* Now figure out what to do with the result of the result.  */
3745       handle_inferior_event (ecs);
3746
3747       if (!ecs->wait_some_more)
3748         break;
3749     }
3750
3751   /* No error, don't finish the state yet.  */
3752   discard_cleanups (thread_state_chain);
3753
3754   do_cleanups (old_cleanups);
3755 }
3756
3757 /* Cleanup that reinstalls the readline callback handler, if the
3758    target is running in the background.  If while handling the target
3759    event something triggered a secondary prompt, like e.g., a
3760    pagination prompt, we'll have removed the callback handler (see
3761    gdb_readline_wrapper_line).  Need to do this as we go back to the
3762    event loop, ready to process further input.  Note this has no
3763    effect if the handler hasn't actually been removed, because calling
3764    rl_callback_handler_install resets the line buffer, thus losing
3765    input.  */
3766
3767 static void
3768 reinstall_readline_callback_handler_cleanup (void *arg)
3769 {
3770   struct ui *ui = current_ui;
3771
3772   if (!ui->async)
3773     {
3774       /* We're not going back to the top level event loop yet.  Don't
3775          install the readline callback, as it'd prep the terminal,
3776          readline-style (raw, noecho) (e.g., --batch).  We'll install
3777          it the next time the prompt is displayed, when we're ready
3778          for input.  */
3779       return;
3780     }
3781
3782   if (ui->command_editing && ui->prompt_state != PROMPT_BLOCKED)
3783     gdb_rl_callback_handler_reinstall ();
3784 }
3785
3786 /* Clean up the FSMs of threads that are now stopped.  In non-stop,
3787    that's just the event thread.  In all-stop, that's all threads.  */
3788
3789 static void
3790 clean_up_just_stopped_threads_fsms (struct execution_control_state *ecs)
3791 {
3792   struct thread_info *thr = ecs->event_thread;
3793
3794   if (thr != NULL && thr->thread_fsm != NULL)
3795     thread_fsm_clean_up (thr->thread_fsm, thr);
3796
3797   if (!non_stop)
3798     {
3799       ALL_NON_EXITED_THREADS (thr)
3800         {
3801           if (thr->thread_fsm == NULL)
3802             continue;
3803           if (thr == ecs->event_thread)
3804             continue;
3805
3806           switch_to_thread (thr->ptid);
3807           thread_fsm_clean_up (thr->thread_fsm, thr);
3808         }
3809
3810       if (ecs->event_thread != NULL)
3811         switch_to_thread (ecs->event_thread->ptid);
3812     }
3813 }
3814
3815 /* Helper for all_uis_check_sync_execution_done that works on the
3816    current UI.  */
3817
3818 static void
3819 check_curr_ui_sync_execution_done (void)
3820 {
3821   struct ui *ui = current_ui;
3822
3823   if (ui->prompt_state == PROMPT_NEEDED
3824       && ui->async
3825       && !gdb_in_secondary_prompt_p (ui))
3826     {
3827       target_terminal_ours ();
3828       observer_notify_sync_execution_done ();
3829       ui_register_input_event_handler (ui);
3830     }
3831 }
3832
3833 /* See infrun.h.  */
3834
3835 void
3836 all_uis_check_sync_execution_done (void)
3837 {
3838   SWITCH_THRU_ALL_UIS ()
3839     {
3840       check_curr_ui_sync_execution_done ();
3841     }
3842 }
3843
3844 /* See infrun.h.  */
3845
3846 void
3847 all_uis_on_sync_execution_starting (void)
3848 {
3849   SWITCH_THRU_ALL_UIS ()
3850     {
3851       if (current_ui->prompt_state == PROMPT_NEEDED)
3852         async_disable_stdin ();
3853     }
3854 }
3855
3856 /* Asynchronous version of wait_for_inferior.  It is called by the
3857    event loop whenever a change of state is detected on the file
3858    descriptor corresponding to the target.  It can be called more than
3859    once to complete a single execution command.  In such cases we need
3860    to keep the state in a global variable ECSS.  If it is the last time
3861    that this function is called for a single execution command, then
3862    report to the user that the inferior has stopped, and do the
3863    necessary cleanups.  */
3864
3865 void
3866 fetch_inferior_event (void *client_data)
3867 {
3868   struct execution_control_state ecss;
3869   struct execution_control_state *ecs = &ecss;
3870   struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
3871   struct cleanup *ts_old_chain;
3872   int cmd_done = 0;
3873   ptid_t waiton_ptid = minus_one_ptid;
3874
3875   memset (ecs, 0, sizeof (*ecs));
3876
3877   /* Events are always processed with the main UI as current UI.  This
3878      way, warnings, debug output, etc. are always consistently sent to
3879      the main console.  */
3880   scoped_restore save_ui = make_scoped_restore (&current_ui, main_ui);
3881
3882   /* End up with readline processing input, if necessary.  */
3883   make_cleanup (reinstall_readline_callback_handler_cleanup, NULL);
3884
3885   /* We're handling a live event, so make sure we're doing live
3886      debugging.  If we're looking at traceframes while the target is
3887      running, we're going to need to get back to that mode after
3888      handling the event.  */
3889   if (non_stop)
3890     {
3891       make_cleanup_restore_current_traceframe ();
3892       set_current_traceframe (-1);
3893     }
3894
3895   gdb::optional<scoped_restore_current_thread> maybe_restore_thread;
3896
3897   if (non_stop)
3898     /* In non-stop mode, the user/frontend should not notice a thread
3899        switch due to internal events.  Make sure we reverse to the
3900        user selected thread and frame after handling the event and
3901        running any breakpoint commands.  */
3902     maybe_restore_thread.emplace ();
3903
3904   overlay_cache_invalid = 1;
3905   /* Flush target cache before starting to handle each event.  Target
3906      was running and cache could be stale.  This is just a heuristic.
3907      Running threads may modify target memory, but we don't get any
3908      event.  */
3909   target_dcache_invalidate ();
3910
3911   scoped_restore save_exec_dir
3912     = make_scoped_restore (&execution_direction, target_execution_direction ());
3913
3914   ecs->ptid = do_target_wait (waiton_ptid, &ecs->ws,
3915                               target_can_async_p () ? TARGET_WNOHANG : 0);
3916
3917   if (debug_infrun)
3918     print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
3919
3920   /* If an error happens while handling the event, propagate GDB's
3921      knowledge of the executing state to the frontend/user running
3922      state.  */
3923   if (!target_is_non_stop_p ())
3924     ts_old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
3925   else
3926     ts_old_chain = make_cleanup (finish_thread_state_cleanup, &ecs->ptid);
3927
3928   /* Get executed before make_cleanup_restore_current_thread above to apply
3929      still for the thread which has thrown the exception.  */
3930   make_bpstat_clear_actions_cleanup ();
3931
3932   make_cleanup (delete_just_stopped_threads_infrun_breakpoints_cleanup, NULL);
3933
3934   /* Now figure out what to do with the result of the result.  */
3935   handle_inferior_event (ecs);
3936
3937   if (!ecs->wait_some_more)
3938     {
3939       struct inferior *inf = find_inferior_ptid (ecs->ptid);
3940       int should_stop = 1;
3941       struct thread_info *thr = ecs->event_thread;
3942       int should_notify_stop = 1;
3943
3944       delete_just_stopped_threads_infrun_breakpoints ();
3945
3946       if (thr != NULL)
3947         {
3948           struct thread_fsm *thread_fsm = thr->thread_fsm;
3949
3950           if (thread_fsm != NULL)
3951             should_stop = thread_fsm_should_stop (thread_fsm, thr);
3952         }
3953
3954       if (!should_stop)
3955         {
3956           keep_going (ecs);
3957         }
3958       else
3959         {
3960           clean_up_just_stopped_threads_fsms (ecs);
3961
3962           if (thr != NULL && thr->thread_fsm != NULL)
3963             {
3964               should_notify_stop
3965                 = thread_fsm_should_notify_stop (thr->thread_fsm);
3966             }
3967
3968           if (should_notify_stop)
3969             {
3970               int proceeded = 0;
3971
3972               /* We may not find an inferior if this was a process exit.  */
3973               if (inf == NULL || inf->control.stop_soon == NO_STOP_QUIETLY)
3974                 proceeded = normal_stop ();
3975
3976               if (!proceeded)
3977                 {
3978                   inferior_event_handler (INF_EXEC_COMPLETE, NULL);
3979                   cmd_done = 1;
3980                 }
3981             }
3982         }
3983     }
3984
3985   /* No error, don't finish the thread states yet.  */
3986   discard_cleanups (ts_old_chain);
3987
3988   /* Revert thread and frame.  */
3989   do_cleanups (old_chain);
3990
3991   /* If a UI was in sync execution mode, and now isn't, restore its
3992      prompt (a synchronous execution command has finished, and we're
3993      ready for input).  */
3994   all_uis_check_sync_execution_done ();
3995
3996   if (cmd_done
3997       && exec_done_display_p
3998       && (ptid_equal (inferior_ptid, null_ptid)
3999           || !is_running (inferior_ptid)))
4000     printf_unfiltered (_("completed.\n"));
4001 }
4002
4003 /* Record the frame and location we're currently stepping through.  */
4004 void
4005 set_step_info (struct frame_info *frame, struct symtab_and_line sal)
4006 {
4007   struct thread_info *tp = inferior_thread ();
4008
4009   tp->control.step_frame_id = get_frame_id (frame);
4010   tp->control.step_stack_frame_id = get_stack_frame_id (frame);
4011
4012   tp->current_symtab = sal.symtab;
4013   tp->current_line = sal.line;
4014 }
4015
4016 /* Clear context switchable stepping state.  */
4017
4018 void
4019 init_thread_stepping_state (struct thread_info *tss)
4020 {
4021   tss->stepped_breakpoint = 0;
4022   tss->stepping_over_breakpoint = 0;
4023   tss->stepping_over_watchpoint = 0;
4024   tss->step_after_step_resume_breakpoint = 0;
4025 }
4026
4027 /* Set the cached copy of the last ptid/waitstatus.  */
4028
4029 void
4030 set_last_target_status (ptid_t ptid, struct target_waitstatus status)
4031 {
4032   target_last_wait_ptid = ptid;
4033   target_last_waitstatus = status;
4034 }
4035
4036 /* Return the cached copy of the last pid/waitstatus returned by
4037    target_wait()/deprecated_target_wait_hook().  The data is actually
4038    cached by handle_inferior_event(), which gets called immediately
4039    after target_wait()/deprecated_target_wait_hook().  */
4040
4041 void
4042 get_last_target_status (ptid_t *ptidp, struct target_waitstatus *status)
4043 {
4044   *ptidp = target_last_wait_ptid;
4045   *status = target_last_waitstatus;
4046 }
4047
4048 void
4049 nullify_last_target_wait_ptid (void)
4050 {
4051   target_last_wait_ptid = minus_one_ptid;
4052 }
4053
4054 /* Switch thread contexts.  */
4055
4056 static void
4057 context_switch (ptid_t ptid)
4058 {
4059   if (debug_infrun && !ptid_equal (ptid, inferior_ptid))
4060     {
4061       fprintf_unfiltered (gdb_stdlog, "infrun: Switching context from %s ",
4062                           target_pid_to_str (inferior_ptid));
4063       fprintf_unfiltered (gdb_stdlog, "to %s\n",
4064                           target_pid_to_str (ptid));
4065     }
4066
4067   switch_to_thread (ptid);
4068 }
4069
4070 /* If the target can't tell whether we've hit breakpoints
4071    (target_supports_stopped_by_sw_breakpoint), and we got a SIGTRAP,
4072    check whether that could have been caused by a breakpoint.  If so,
4073    adjust the PC, per gdbarch_decr_pc_after_break.  */
4074
4075 static void
4076 adjust_pc_after_break (struct thread_info *thread,
4077                        struct target_waitstatus *ws)
4078 {
4079   struct regcache *regcache;
4080   struct gdbarch *gdbarch;
4081   struct address_space *aspace;
4082   CORE_ADDR breakpoint_pc, decr_pc;
4083
4084   /* If we've hit a breakpoint, we'll normally be stopped with SIGTRAP.  If
4085      we aren't, just return.
4086
4087      We assume that waitkinds other than TARGET_WAITKIND_STOPPED are not
4088      affected by gdbarch_decr_pc_after_break.  Other waitkinds which are
4089      implemented by software breakpoints should be handled through the normal
4090      breakpoint layer.
4091
4092      NOTE drow/2004-01-31: On some targets, breakpoints may generate
4093      different signals (SIGILL or SIGEMT for instance), but it is less
4094      clear where the PC is pointing afterwards.  It may not match
4095      gdbarch_decr_pc_after_break.  I don't know any specific target that
4096      generates these signals at breakpoints (the code has been in GDB since at
4097      least 1992) so I can not guess how to handle them here.
4098
4099      In earlier versions of GDB, a target with 
4100      gdbarch_have_nonsteppable_watchpoint would have the PC after hitting a
4101      watchpoint affected by gdbarch_decr_pc_after_break.  I haven't found any
4102      target with both of these set in GDB history, and it seems unlikely to be
4103      correct, so gdbarch_have_nonsteppable_watchpoint is not checked here.  */
4104
4105   if (ws->kind != TARGET_WAITKIND_STOPPED)
4106     return;
4107
4108   if (ws->value.sig != GDB_SIGNAL_TRAP)
4109     return;
4110
4111   /* In reverse execution, when a breakpoint is hit, the instruction
4112      under it has already been de-executed.  The reported PC always
4113      points at the breakpoint address, so adjusting it further would
4114      be wrong.  E.g., consider this case on a decr_pc_after_break == 1
4115      architecture:
4116
4117        B1         0x08000000 :   INSN1
4118        B2         0x08000001 :   INSN2
4119                   0x08000002 :   INSN3
4120             PC -> 0x08000003 :   INSN4
4121
4122      Say you're stopped at 0x08000003 as above.  Reverse continuing
4123      from that point should hit B2 as below.  Reading the PC when the
4124      SIGTRAP is reported should read 0x08000001 and INSN2 should have
4125      been de-executed already.
4126
4127        B1         0x08000000 :   INSN1
4128        B2   PC -> 0x08000001 :   INSN2
4129                   0x08000002 :   INSN3
4130                   0x08000003 :   INSN4
4131
4132      We can't apply the same logic as for forward execution, because
4133      we would wrongly adjust the PC to 0x08000000, since there's a
4134      breakpoint at PC - 1.  We'd then report a hit on B1, although
4135      INSN1 hadn't been de-executed yet.  Doing nothing is the correct
4136      behaviour.  */
4137   if (execution_direction == EXEC_REVERSE)
4138     return;
4139
4140   /* If the target can tell whether the thread hit a SW breakpoint,
4141      trust it.  Targets that can tell also adjust the PC
4142      themselves.  */
4143   if (target_supports_stopped_by_sw_breakpoint ())
4144     return;
4145
4146   /* Note that relying on whether a breakpoint is planted in memory to
4147      determine this can fail.  E.g,. the breakpoint could have been
4148      removed since.  Or the thread could have been told to step an
4149      instruction the size of a breakpoint instruction, and only
4150      _after_ was a breakpoint inserted at its address.  */
4151
4152   /* If this target does not decrement the PC after breakpoints, then
4153      we have nothing to do.  */
4154   regcache = get_thread_regcache (thread->ptid);
4155   gdbarch = get_regcache_arch (regcache);
4156
4157   decr_pc = gdbarch_decr_pc_after_break (gdbarch);
4158   if (decr_pc == 0)
4159     return;
4160
4161   aspace = get_regcache_aspace (regcache);
4162
4163   /* Find the location where (if we've hit a breakpoint) the
4164      breakpoint would be.  */
4165   breakpoint_pc = regcache_read_pc (regcache) - decr_pc;
4166
4167   /* If the target can't tell whether a software breakpoint triggered,
4168      fallback to figuring it out based on breakpoints we think were
4169      inserted in the target, and on whether the thread was stepped or
4170      continued.  */
4171
4172   /* Check whether there actually is a software breakpoint inserted at
4173      that location.
4174
4175      If in non-stop mode, a race condition is possible where we've
4176      removed a breakpoint, but stop events for that breakpoint were
4177      already queued and arrive later.  To suppress those spurious
4178      SIGTRAPs, we keep a list of such breakpoint locations for a bit,
4179      and retire them after a number of stop events are reported.  Note
4180      this is an heuristic and can thus get confused.  The real fix is
4181      to get the "stopped by SW BP and needs adjustment" info out of
4182      the target/kernel (and thus never reach here; see above).  */
4183   if (software_breakpoint_inserted_here_p (aspace, breakpoint_pc)
4184       || (target_is_non_stop_p ()
4185           && moribund_breakpoint_here_p (aspace, breakpoint_pc)))
4186     {
4187       struct cleanup *old_cleanups = make_cleanup (null_cleanup, NULL);
4188
4189       if (record_full_is_used ())
4190         record_full_gdb_operation_disable_set ();
4191
4192       /* When using hardware single-step, a SIGTRAP is reported for both
4193          a completed single-step and a software breakpoint.  Need to
4194          differentiate between the two, as the latter needs adjusting
4195          but the former does not.
4196
4197          The SIGTRAP can be due to a completed hardware single-step only if 
4198           - we didn't insert software single-step breakpoints
4199           - this thread is currently being stepped
4200
4201          If any of these events did not occur, we must have stopped due
4202          to hitting a software breakpoint, and have to back up to the
4203          breakpoint address.
4204
4205          As a special case, we could have hardware single-stepped a
4206          software breakpoint.  In this case (prev_pc == breakpoint_pc),
4207          we also need to back up to the breakpoint address.  */
4208
4209       if (thread_has_single_step_breakpoints_set (thread)
4210           || !currently_stepping (thread)
4211           || (thread->stepped_breakpoint
4212               && thread->prev_pc == breakpoint_pc))
4213         regcache_write_pc (regcache, breakpoint_pc);
4214
4215       do_cleanups (old_cleanups);
4216     }
4217 }
4218
4219 static int
4220 stepped_in_from (struct frame_info *frame, struct frame_id step_frame_id)
4221 {
4222   for (frame = get_prev_frame (frame);
4223        frame != NULL;
4224        frame = get_prev_frame (frame))
4225     {
4226       if (frame_id_eq (get_frame_id (frame), step_frame_id))
4227         return 1;
4228       if (get_frame_type (frame) != INLINE_FRAME)
4229         break;
4230     }
4231
4232   return 0;
4233 }
4234
4235 /* If the event thread has the stop requested flag set, pretend it
4236    stopped for a GDB_SIGNAL_0 (i.e., as if it stopped due to
4237    target_stop).  */
4238
4239 static bool
4240 handle_stop_requested (struct execution_control_state *ecs)
4241 {
4242   if (ecs->event_thread->stop_requested)
4243     {
4244       ecs->ws.kind = TARGET_WAITKIND_STOPPED;
4245       ecs->ws.value.sig = GDB_SIGNAL_0;
4246       handle_signal_stop (ecs);
4247       return true;
4248     }
4249   return false;
4250 }
4251
4252 /* Auxiliary function that handles syscall entry/return events.
4253    It returns 1 if the inferior should keep going (and GDB
4254    should ignore the event), or 0 if the event deserves to be
4255    processed.  */
4256
4257 static int
4258 handle_syscall_event (struct execution_control_state *ecs)
4259 {
4260   struct regcache *regcache;
4261   int syscall_number;
4262
4263   if (!ptid_equal (ecs->ptid, inferior_ptid))
4264     context_switch (ecs->ptid);
4265
4266   regcache = get_thread_regcache (ecs->ptid);
4267   syscall_number = ecs->ws.value.syscall_number;
4268   stop_pc = regcache_read_pc (regcache);
4269
4270   if (catch_syscall_enabled () > 0
4271       && catching_syscall_number (syscall_number) > 0)
4272     {
4273       if (debug_infrun)
4274         fprintf_unfiltered (gdb_stdlog, "infrun: syscall number = '%d'\n",
4275                             syscall_number);
4276
4277       ecs->event_thread->control.stop_bpstat
4278         = bpstat_stop_status (get_regcache_aspace (regcache),
4279                               stop_pc, ecs->ptid, &ecs->ws);
4280
4281       if (handle_stop_requested (ecs))
4282         return 0;
4283
4284       if (bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
4285         {
4286           /* Catchpoint hit.  */
4287           return 0;
4288         }
4289     }
4290
4291   if (handle_stop_requested (ecs))
4292     return 0;
4293
4294   /* If no catchpoint triggered for this, then keep going.  */
4295   keep_going (ecs);
4296   return 1;
4297 }
4298
4299 /* Lazily fill in the execution_control_state's stop_func_* fields.  */
4300
4301 static void
4302 fill_in_stop_func (struct gdbarch *gdbarch,
4303                    struct execution_control_state *ecs)
4304 {
4305   if (!ecs->stop_func_filled_in)
4306     {
4307       /* Don't care about return value; stop_func_start and stop_func_name
4308          will both be 0 if it doesn't work.  */
4309       find_pc_partial_function (stop_pc, &ecs->stop_func_name,
4310                                 &ecs->stop_func_start, &ecs->stop_func_end);
4311       ecs->stop_func_start
4312         += gdbarch_deprecated_function_start_offset (gdbarch);
4313
4314       if (gdbarch_skip_entrypoint_p (gdbarch))
4315         ecs->stop_func_start = gdbarch_skip_entrypoint (gdbarch,
4316                                                         ecs->stop_func_start);
4317
4318       ecs->stop_func_filled_in = 1;
4319     }
4320 }
4321
4322
4323 /* Return the STOP_SOON field of the inferior pointed at by PTID.  */
4324
4325 static enum stop_kind
4326 get_inferior_stop_soon (ptid_t ptid)
4327 {
4328   struct inferior *inf = find_inferior_ptid (ptid);
4329
4330   gdb_assert (inf != NULL);
4331   return inf->control.stop_soon;
4332 }
4333
4334 /* Wait for one event.  Store the resulting waitstatus in WS, and
4335    return the event ptid.  */
4336
4337 static ptid_t
4338 wait_one (struct target_waitstatus *ws)
4339 {
4340   ptid_t event_ptid;
4341   ptid_t wait_ptid = minus_one_ptid;
4342
4343   overlay_cache_invalid = 1;
4344
4345   /* Flush target cache before starting to handle each event.
4346      Target was running and cache could be stale.  This is just a
4347      heuristic.  Running threads may modify target memory, but we
4348      don't get any event.  */
4349   target_dcache_invalidate ();
4350
4351   if (deprecated_target_wait_hook)
4352     event_ptid = deprecated_target_wait_hook (wait_ptid, ws, 0);
4353   else
4354     event_ptid = target_wait (wait_ptid, ws, 0);
4355
4356   if (debug_infrun)
4357     print_target_wait_results (wait_ptid, event_ptid, ws);
4358
4359   return event_ptid;
4360 }
4361
4362 /* Generate a wrapper for target_stopped_by_REASON that works on PTID
4363    instead of the current thread.  */
4364 #define THREAD_STOPPED_BY(REASON)               \
4365 static int                                      \
4366 thread_stopped_by_ ## REASON (ptid_t ptid)      \
4367 {                                               \
4368   struct cleanup *old_chain;                    \
4369   int res;                                      \
4370                                                 \
4371   old_chain = save_inferior_ptid ();            \
4372   inferior_ptid = ptid;                         \
4373                                                 \
4374   res = target_stopped_by_ ## REASON ();        \
4375                                                 \
4376   do_cleanups (old_chain);                      \
4377                                                 \
4378   return res;                                   \
4379 }
4380
4381 /* Generate thread_stopped_by_watchpoint.  */
4382 THREAD_STOPPED_BY (watchpoint)
4383 /* Generate thread_stopped_by_sw_breakpoint.  */
4384 THREAD_STOPPED_BY (sw_breakpoint)
4385 /* Generate thread_stopped_by_hw_breakpoint.  */
4386 THREAD_STOPPED_BY (hw_breakpoint)
4387
4388 /* Cleanups that switches to the PTID pointed at by PTID_P.  */
4389
4390 static void
4391 switch_to_thread_cleanup (void *ptid_p)
4392 {
4393   ptid_t ptid = *(ptid_t *) ptid_p;
4394
4395   switch_to_thread (ptid);
4396 }
4397
4398 /* Save the thread's event and stop reason to process it later.  */
4399
4400 static void
4401 save_waitstatus (struct thread_info *tp, struct target_waitstatus *ws)
4402 {
4403   struct regcache *regcache;
4404   struct address_space *aspace;
4405
4406   if (debug_infrun)
4407     {
4408       char *statstr;
4409
4410       statstr = target_waitstatus_to_string (ws);
4411       fprintf_unfiltered (gdb_stdlog,
4412                           "infrun: saving status %s for %d.%ld.%ld\n",
4413                           statstr,
4414                           ptid_get_pid (tp->ptid),
4415                           ptid_get_lwp (tp->ptid),
4416                           ptid_get_tid (tp->ptid));
4417       xfree (statstr);
4418     }
4419
4420   /* Record for later.  */
4421   tp->suspend.waitstatus = *ws;
4422   tp->suspend.waitstatus_pending_p = 1;
4423
4424   regcache = get_thread_regcache (tp->ptid);
4425   aspace = get_regcache_aspace (regcache);
4426
4427   if (ws->kind == TARGET_WAITKIND_STOPPED
4428       && ws->value.sig == GDB_SIGNAL_TRAP)
4429     {
4430       CORE_ADDR pc = regcache_read_pc (regcache);
4431
4432       adjust_pc_after_break (tp, &tp->suspend.waitstatus);
4433
4434       if (thread_stopped_by_watchpoint (tp->ptid))
4435         {
4436           tp->suspend.stop_reason
4437             = TARGET_STOPPED_BY_WATCHPOINT;
4438         }
4439       else if (target_supports_stopped_by_sw_breakpoint ()
4440                && thread_stopped_by_sw_breakpoint (tp->ptid))
4441         {
4442           tp->suspend.stop_reason
4443             = TARGET_STOPPED_BY_SW_BREAKPOINT;
4444         }
4445       else if (target_supports_stopped_by_hw_breakpoint ()
4446                && thread_stopped_by_hw_breakpoint (tp->ptid))
4447         {
4448           tp->suspend.stop_reason
4449             = TARGET_STOPPED_BY_HW_BREAKPOINT;
4450         }
4451       else if (!target_supports_stopped_by_hw_breakpoint ()
4452                && hardware_breakpoint_inserted_here_p (aspace,
4453                                                        pc))
4454         {
4455           tp->suspend.stop_reason
4456             = TARGET_STOPPED_BY_HW_BREAKPOINT;
4457         }
4458       else if (!target_supports_stopped_by_sw_breakpoint ()
4459                && software_breakpoint_inserted_here_p (aspace,
4460                                                        pc))
4461         {
4462           tp->suspend.stop_reason
4463             = TARGET_STOPPED_BY_SW_BREAKPOINT;
4464         }
4465       else if (!thread_has_single_step_breakpoints_set (tp)
4466                && currently_stepping (tp))
4467         {
4468           tp->suspend.stop_reason
4469             = TARGET_STOPPED_BY_SINGLE_STEP;
4470         }
4471     }
4472 }
4473
4474 /* A cleanup that disables thread create/exit events.  */
4475
4476 static void
4477 disable_thread_events (void *arg)
4478 {
4479   target_thread_events (0);
4480 }
4481
4482 /* See infrun.h.  */
4483
4484 void
4485 stop_all_threads (void)
4486 {
4487   /* We may need multiple passes to discover all threads.  */
4488   int pass;
4489   int iterations = 0;
4490   ptid_t entry_ptid;
4491   struct cleanup *old_chain;
4492
4493   gdb_assert (target_is_non_stop_p ());
4494
4495   if (debug_infrun)
4496     fprintf_unfiltered (gdb_stdlog, "infrun: stop_all_threads\n");
4497
4498   entry_ptid = inferior_ptid;
4499   old_chain = make_cleanup (switch_to_thread_cleanup, &entry_ptid);
4500
4501   target_thread_events (1);
4502   make_cleanup (disable_thread_events, NULL);
4503
4504   /* Request threads to stop, and then wait for the stops.  Because
4505      threads we already know about can spawn more threads while we're
4506      trying to stop them, and we only learn about new threads when we
4507      update the thread list, do this in a loop, and keep iterating
4508      until two passes find no threads that need to be stopped.  */
4509   for (pass = 0; pass < 2; pass++, iterations++)
4510     {
4511       if (debug_infrun)
4512         fprintf_unfiltered (gdb_stdlog,
4513                             "infrun: stop_all_threads, pass=%d, "
4514                             "iterations=%d\n", pass, iterations);
4515       while (1)
4516         {
4517           ptid_t event_ptid;
4518           struct target_waitstatus ws;
4519           int need_wait = 0;
4520           struct thread_info *t;
4521
4522           update_thread_list ();
4523
4524           /* Go through all threads looking for threads that we need
4525              to tell the target to stop.  */
4526           ALL_NON_EXITED_THREADS (t)
4527             {
4528               if (t->executing)
4529                 {
4530                   /* If already stopping, don't request a stop again.
4531                      We just haven't seen the notification yet.  */
4532                   if (!t->stop_requested)
4533                     {
4534                       if (debug_infrun)
4535                         fprintf_unfiltered (gdb_stdlog,
4536                                             "infrun:   %s executing, "
4537                                             "need stop\n",
4538                                             target_pid_to_str (t->ptid));
4539                       target_stop (t->ptid);
4540                       t->stop_requested = 1;
4541                     }
4542                   else
4543                     {
4544                       if (debug_infrun)
4545                         fprintf_unfiltered (gdb_stdlog,
4546                                             "infrun:   %s executing, "
4547                                             "already stopping\n",
4548                                             target_pid_to_str (t->ptid));
4549                     }
4550
4551                   if (t->stop_requested)
4552                     need_wait = 1;
4553                 }
4554               else
4555                 {
4556                   if (debug_infrun)
4557                     fprintf_unfiltered (gdb_stdlog,
4558                                         "infrun:   %s not executing\n",
4559                                         target_pid_to_str (t->ptid));
4560
4561                   /* The thread may be not executing, but still be
4562                      resumed with a pending status to process.  */
4563                   t->resumed = 0;
4564                 }
4565             }
4566
4567           if (!need_wait)
4568             break;
4569
4570           /* If we find new threads on the second iteration, restart
4571              over.  We want to see two iterations in a row with all
4572              threads stopped.  */
4573           if (pass > 0)
4574             pass = -1;
4575
4576           event_ptid = wait_one (&ws);
4577           if (ws.kind == TARGET_WAITKIND_NO_RESUMED)
4578             {
4579               /* All resumed threads exited.  */
4580             }
4581           else if (ws.kind == TARGET_WAITKIND_THREAD_EXITED
4582                    || ws.kind == TARGET_WAITKIND_EXITED
4583                    || ws.kind == TARGET_WAITKIND_SIGNALLED)
4584             {
4585               if (debug_infrun)
4586                 {
4587                   ptid_t ptid = pid_to_ptid (ws.value.integer);
4588
4589                   fprintf_unfiltered (gdb_stdlog,
4590                                       "infrun: %s exited while "
4591                                       "stopping threads\n",
4592                                       target_pid_to_str (ptid));
4593                 }
4594             }
4595           else
4596             {
4597               struct inferior *inf;
4598
4599               t = find_thread_ptid (event_ptid);
4600               if (t == NULL)
4601                 t = add_thread (event_ptid);
4602
4603               t->stop_requested = 0;
4604               t->executing = 0;
4605               t->resumed = 0;
4606               t->control.may_range_step = 0;
4607
4608               /* This may be the first time we see the inferior report
4609                  a stop.  */
4610               inf = find_inferior_ptid (event_ptid);
4611               if (inf->needs_setup)
4612                 {
4613                   switch_to_thread_no_regs (t);
4614                   setup_inferior (0);
4615                 }
4616
4617               if (ws.kind == TARGET_WAITKIND_STOPPED
4618                   && ws.value.sig == GDB_SIGNAL_0)
4619                 {
4620                   /* We caught the event that we intended to catch, so
4621                      there's no event pending.  */
4622                   t->suspend.waitstatus.kind = TARGET_WAITKIND_IGNORE;
4623                   t->suspend.waitstatus_pending_p = 0;
4624
4625                   if (displaced_step_fixup (t->ptid, GDB_SIGNAL_0) < 0)
4626                     {
4627                       /* Add it back to the step-over queue.  */
4628                       if (debug_infrun)
4629                         {
4630                           fprintf_unfiltered (gdb_stdlog,
4631                                               "infrun: displaced-step of %s "
4632                                               "canceled: adding back to the "
4633                                               "step-over queue\n",
4634                                               target_pid_to_str (t->ptid));
4635                         }
4636                       t->control.trap_expected = 0;
4637                       thread_step_over_chain_enqueue (t);
4638                     }
4639                 }
4640               else
4641                 {
4642                   enum gdb_signal sig;
4643                   struct regcache *regcache;
4644
4645                   if (debug_infrun)
4646                     {
4647                       char *statstr;
4648
4649                       statstr = target_waitstatus_to_string (&ws);
4650                       fprintf_unfiltered (gdb_stdlog,
4651                                           "infrun: target_wait %s, saving "
4652                                           "status for %d.%ld.%ld\n",
4653                                           statstr,
4654                                           ptid_get_pid (t->ptid),
4655                                           ptid_get_lwp (t->ptid),
4656                                           ptid_get_tid (t->ptid));
4657                       xfree (statstr);
4658                     }
4659
4660                   /* Record for later.  */
4661                   save_waitstatus (t, &ws);
4662
4663                   sig = (ws.kind == TARGET_WAITKIND_STOPPED
4664                          ? ws.value.sig : GDB_SIGNAL_0);
4665
4666                   if (displaced_step_fixup (t->ptid, sig) < 0)
4667                     {
4668                       /* Add it back to the step-over queue.  */
4669                       t->control.trap_expected = 0;
4670                       thread_step_over_chain_enqueue (t);
4671                     }
4672
4673                   regcache = get_thread_regcache (t->ptid);
4674                   t->suspend.stop_pc = regcache_read_pc (regcache);
4675
4676                   if (debug_infrun)
4677                     {
4678                       fprintf_unfiltered (gdb_stdlog,
4679                                           "infrun: saved stop_pc=%s for %s "
4680                                           "(currently_stepping=%d)\n",
4681                                           paddress (target_gdbarch (),
4682                                                     t->suspend.stop_pc),
4683                                           target_pid_to_str (t->ptid),
4684                                           currently_stepping (t));
4685                     }
4686                 }
4687             }
4688         }
4689     }
4690
4691   do_cleanups (old_chain);
4692
4693   if (debug_infrun)
4694     fprintf_unfiltered (gdb_stdlog, "infrun: stop_all_threads done\n");
4695 }
4696
4697 /* Handle a TARGET_WAITKIND_NO_RESUMED event.  */
4698
4699 static int
4700 handle_no_resumed (struct execution_control_state *ecs)
4701 {
4702   struct inferior *inf;
4703   struct thread_info *thread;
4704
4705   if (target_can_async_p ())
4706     {
4707       struct ui *ui;
4708       int any_sync = 0;
4709
4710       ALL_UIS (ui)
4711         {
4712           if (ui->prompt_state == PROMPT_BLOCKED)
4713             {
4714               any_sync = 1;
4715               break;
4716             }
4717         }
4718       if (!any_sync)
4719         {
4720           /* There were no unwaited-for children left in the target, but,
4721              we're not synchronously waiting for events either.  Just
4722              ignore.  */
4723
4724           if (debug_infrun)
4725             fprintf_unfiltered (gdb_stdlog,
4726                                 "infrun: TARGET_WAITKIND_NO_RESUMED "
4727                                 "(ignoring: bg)\n");
4728           prepare_to_wait (ecs);
4729           return 1;
4730         }
4731     }
4732
4733   /* Otherwise, if we were running a synchronous execution command, we
4734      may need to cancel it and give the user back the terminal.
4735
4736      In non-stop mode, the target can't tell whether we've already
4737      consumed previous stop events, so it can end up sending us a
4738      no-resumed event like so:
4739
4740        #0 - thread 1 is left stopped
4741
4742        #1 - thread 2 is resumed and hits breakpoint
4743                -> TARGET_WAITKIND_STOPPED
4744
4745        #2 - thread 3 is resumed and exits
4746             this is the last resumed thread, so
4747                -> TARGET_WAITKIND_NO_RESUMED
4748
4749        #3 - gdb processes stop for thread 2 and decides to re-resume
4750             it.
4751
4752        #4 - gdb processes the TARGET_WAITKIND_NO_RESUMED event.
4753             thread 2 is now resumed, so the event should be ignored.
4754
4755      IOW, if the stop for thread 2 doesn't end a foreground command,
4756      then we need to ignore the following TARGET_WAITKIND_NO_RESUMED
4757      event.  But it could be that the event meant that thread 2 itself
4758      (or whatever other thread was the last resumed thread) exited.
4759
4760      To address this we refresh the thread list and check whether we
4761      have resumed threads _now_.  In the example above, this removes
4762      thread 3 from the thread list.  If thread 2 was re-resumed, we
4763      ignore this event.  If we find no thread resumed, then we cancel
4764      the synchronous command show "no unwaited-for " to the user.  */
4765   update_thread_list ();
4766
4767   ALL_NON_EXITED_THREADS (thread)
4768     {
4769       if (thread->executing
4770           || thread->suspend.waitstatus_pending_p)
4771         {
4772           /* There were no unwaited-for children left in the target at
4773              some point, but there are now.  Just ignore.  */
4774           if (debug_infrun)
4775             fprintf_unfiltered (gdb_stdlog,
4776                                 "infrun: TARGET_WAITKIND_NO_RESUMED "
4777                                 "(ignoring: found resumed)\n");
4778           prepare_to_wait (ecs);
4779           return 1;
4780         }
4781     }
4782
4783   /* Note however that we may find no resumed thread because the whole
4784      process exited meanwhile (thus updating the thread list results
4785      in an empty thread list).  In this case we know we'll be getting
4786      a process exit event shortly.  */
4787   ALL_INFERIORS (inf)
4788     {
4789       if (inf->pid == 0)
4790         continue;
4791
4792       thread = any_live_thread_of_process (inf->pid);
4793       if (thread == NULL)
4794         {
4795           if (debug_infrun)
4796             fprintf_unfiltered (gdb_stdlog,
4797                                 "infrun: TARGET_WAITKIND_NO_RESUMED "
4798                                 "(expect process exit)\n");
4799           prepare_to_wait (ecs);
4800           return 1;
4801         }
4802     }
4803
4804   /* Go ahead and report the event.  */
4805   return 0;
4806 }
4807
4808 /* Given an execution control state that has been freshly filled in by
4809    an event from the inferior, figure out what it means and take
4810    appropriate action.
4811
4812    The alternatives are:
4813
4814    1) stop_waiting and return; to really stop and return to the
4815    debugger.
4816
4817    2) keep_going and return; to wait for the next event (set
4818    ecs->event_thread->stepping_over_breakpoint to 1 to single step
4819    once).  */
4820
4821 static void
4822 handle_inferior_event_1 (struct execution_control_state *ecs)
4823 {
4824   enum stop_kind stop_soon;
4825
4826   if (ecs->ws.kind == TARGET_WAITKIND_IGNORE)
4827     {
4828       /* We had an event in the inferior, but we are not interested in
4829          handling it at this level.  The lower layers have already
4830          done what needs to be done, if anything.
4831
4832          One of the possible circumstances for this is when the
4833          inferior produces output for the console.  The inferior has
4834          not stopped, and we are ignoring the event.  Another possible
4835          circumstance is any event which the lower level knows will be
4836          reported multiple times without an intervening resume.  */
4837       if (debug_infrun)
4838         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_IGNORE\n");
4839       prepare_to_wait (ecs);
4840       return;
4841     }
4842
4843   if (ecs->ws.kind == TARGET_WAITKIND_THREAD_EXITED)
4844     {
4845       if (debug_infrun)
4846         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_THREAD_EXITED\n");
4847       prepare_to_wait (ecs);
4848       return;
4849     }
4850
4851   if (ecs->ws.kind == TARGET_WAITKIND_NO_RESUMED
4852       && handle_no_resumed (ecs))
4853     return;
4854
4855   /* Cache the last pid/waitstatus.  */
4856   set_last_target_status (ecs->ptid, ecs->ws);
4857
4858   /* Always clear state belonging to the previous time we stopped.  */
4859   stop_stack_dummy = STOP_NONE;
4860
4861   if (ecs->ws.kind == TARGET_WAITKIND_NO_RESUMED)
4862     {
4863       /* No unwaited-for children left.  IOW, all resumed children
4864          have exited.  */
4865       if (debug_infrun)
4866         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_NO_RESUMED\n");
4867
4868       stop_print_frame = 0;
4869       stop_waiting (ecs);
4870       return;
4871     }
4872
4873   if (ecs->ws.kind != TARGET_WAITKIND_EXITED
4874       && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED)
4875     {
4876       ecs->event_thread = find_thread_ptid (ecs->ptid);
4877       /* If it's a new thread, add it to the thread database.  */
4878       if (ecs->event_thread == NULL)
4879         ecs->event_thread = add_thread (ecs->ptid);
4880
4881       /* Disable range stepping.  If the next step request could use a
4882          range, this will be end up re-enabled then.  */
4883       ecs->event_thread->control.may_range_step = 0;
4884     }
4885
4886   /* Dependent on valid ECS->EVENT_THREAD.  */
4887   adjust_pc_after_break (ecs->event_thread, &ecs->ws);
4888
4889   /* Dependent on the current PC value modified by adjust_pc_after_break.  */
4890   reinit_frame_cache ();
4891
4892   breakpoint_retire_moribund ();
4893
4894   /* First, distinguish signals caused by the debugger from signals
4895      that have to do with the program's own actions.  Note that
4896      breakpoint insns may cause SIGTRAP or SIGILL or SIGEMT, depending
4897      on the operating system version.  Here we detect when a SIGILL or
4898      SIGEMT is really a breakpoint and change it to SIGTRAP.  We do
4899      something similar for SIGSEGV, since a SIGSEGV will be generated
4900      when we're trying to execute a breakpoint instruction on a
4901      non-executable stack.  This happens for call dummy breakpoints
4902      for architectures like SPARC that place call dummies on the
4903      stack.  */
4904   if (ecs->ws.kind == TARGET_WAITKIND_STOPPED
4905       && (ecs->ws.value.sig == GDB_SIGNAL_ILL
4906           || ecs->ws.value.sig == GDB_SIGNAL_SEGV
4907           || ecs->ws.value.sig == GDB_SIGNAL_EMT))
4908     {
4909       struct regcache *regcache = get_thread_regcache (ecs->ptid);
4910
4911       if (breakpoint_inserted_here_p (get_regcache_aspace (regcache),
4912                                       regcache_read_pc (regcache)))
4913         {
4914           if (debug_infrun)
4915             fprintf_unfiltered (gdb_stdlog,
4916                                 "infrun: Treating signal as SIGTRAP\n");
4917           ecs->ws.value.sig = GDB_SIGNAL_TRAP;
4918         }
4919     }
4920
4921   /* Mark the non-executing threads accordingly.  In all-stop, all
4922      threads of all processes are stopped when we get any event
4923      reported.  In non-stop mode, only the event thread stops.  */
4924   {
4925     ptid_t mark_ptid;
4926
4927     if (!target_is_non_stop_p ())
4928       mark_ptid = minus_one_ptid;
4929     else if (ecs->ws.kind == TARGET_WAITKIND_SIGNALLED
4930              || ecs->ws.kind == TARGET_WAITKIND_EXITED)
4931       {
4932         /* If we're handling a process exit in non-stop mode, even
4933            though threads haven't been deleted yet, one would think
4934            that there is nothing to do, as threads of the dead process
4935            will be soon deleted, and threads of any other process were
4936            left running.  However, on some targets, threads survive a
4937            process exit event.  E.g., for the "checkpoint" command,
4938            when the current checkpoint/fork exits, linux-fork.c
4939            automatically switches to another fork from within
4940            target_mourn_inferior, by associating the same
4941            inferior/thread to another fork.  We haven't mourned yet at
4942            this point, but we must mark any threads left in the
4943            process as not-executing so that finish_thread_state marks
4944            them stopped (in the user's perspective) if/when we present
4945            the stop to the user.  */
4946         mark_ptid = pid_to_ptid (ptid_get_pid (ecs->ptid));
4947       }
4948     else
4949       mark_ptid = ecs->ptid;
4950
4951     set_executing (mark_ptid, 0);
4952
4953     /* Likewise the resumed flag.  */
4954     set_resumed (mark_ptid, 0);
4955   }
4956
4957   switch (ecs->ws.kind)
4958     {
4959     case TARGET_WAITKIND_LOADED:
4960       if (debug_infrun)
4961         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_LOADED\n");
4962       if (!ptid_equal (ecs->ptid, inferior_ptid))
4963         context_switch (ecs->ptid);
4964       /* Ignore gracefully during startup of the inferior, as it might
4965          be the shell which has just loaded some objects, otherwise
4966          add the symbols for the newly loaded objects.  Also ignore at
4967          the beginning of an attach or remote session; we will query
4968          the full list of libraries once the connection is
4969          established.  */
4970
4971       stop_soon = get_inferior_stop_soon (ecs->ptid);
4972       if (stop_soon == NO_STOP_QUIETLY)
4973         {
4974           struct regcache *regcache;
4975
4976           regcache = get_thread_regcache (ecs->ptid);
4977
4978           handle_solib_event ();
4979
4980           ecs->event_thread->control.stop_bpstat
4981             = bpstat_stop_status (get_regcache_aspace (regcache),
4982                                   stop_pc, ecs->ptid, &ecs->ws);
4983
4984           if (handle_stop_requested (ecs))
4985             return;
4986
4987           if (bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
4988             {
4989               /* A catchpoint triggered.  */
4990               process_event_stop_test (ecs);
4991               return;
4992             }
4993
4994           /* If requested, stop when the dynamic linker notifies
4995              gdb of events.  This allows the user to get control
4996              and place breakpoints in initializer routines for
4997              dynamically loaded objects (among other things).  */
4998           ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
4999           if (stop_on_solib_events)
5000             {
5001               /* Make sure we print "Stopped due to solib-event" in
5002                  normal_stop.  */
5003               stop_print_frame = 1;
5004
5005               stop_waiting (ecs);
5006               return;
5007             }
5008         }
5009
5010       /* If we are skipping through a shell, or through shared library
5011          loading that we aren't interested in, resume the program.  If
5012          we're running the program normally, also resume.  */
5013       if (stop_soon == STOP_QUIETLY || stop_soon == NO_STOP_QUIETLY)
5014         {
5015           /* Loading of shared libraries might have changed breakpoint
5016              addresses.  Make sure new breakpoints are inserted.  */
5017           if (stop_soon == NO_STOP_QUIETLY)
5018             insert_breakpoints ();
5019           resume (GDB_SIGNAL_0);
5020           prepare_to_wait (ecs);
5021           return;
5022         }
5023
5024       /* But stop if we're attaching or setting up a remote
5025          connection.  */
5026       if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
5027           || stop_soon == STOP_QUIETLY_REMOTE)
5028         {
5029           if (debug_infrun)
5030             fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
5031           stop_waiting (ecs);
5032           return;
5033         }
5034
5035       internal_error (__FILE__, __LINE__,
5036                       _("unhandled stop_soon: %d"), (int) stop_soon);
5037
5038     case TARGET_WAITKIND_SPURIOUS:
5039       if (debug_infrun)
5040         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SPURIOUS\n");
5041       if (handle_stop_requested (ecs))
5042         return;
5043       if (!ptid_equal (ecs->ptid, inferior_ptid))
5044         context_switch (ecs->ptid);
5045       resume (GDB_SIGNAL_0);
5046       prepare_to_wait (ecs);
5047       return;
5048
5049     case TARGET_WAITKIND_THREAD_CREATED:
5050       if (debug_infrun)
5051         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_THREAD_CREATED\n");
5052       if (handle_stop_requested (ecs))
5053         return;
5054       if (!ptid_equal (ecs->ptid, inferior_ptid))
5055         context_switch (ecs->ptid);
5056       if (!switch_back_to_stepped_thread (ecs))
5057         keep_going (ecs);
5058       return;
5059
5060     case TARGET_WAITKIND_EXITED:
5061     case TARGET_WAITKIND_SIGNALLED:
5062       if (debug_infrun)
5063         {
5064           if (ecs->ws.kind == TARGET_WAITKIND_EXITED)
5065             fprintf_unfiltered (gdb_stdlog,
5066                                 "infrun: TARGET_WAITKIND_EXITED\n");
5067           else
5068             fprintf_unfiltered (gdb_stdlog,
5069                                 "infrun: TARGET_WAITKIND_SIGNALLED\n");
5070         }
5071
5072       inferior_ptid = ecs->ptid;
5073       set_current_inferior (find_inferior_ptid (ecs->ptid));
5074       set_current_program_space (current_inferior ()->pspace);
5075       handle_vfork_child_exec_or_exit (0);
5076       target_terminal_ours ();  /* Must do this before mourn anyway.  */
5077
5078       /* Clearing any previous state of convenience variables.  */
5079       clear_exit_convenience_vars ();
5080
5081       if (ecs->ws.kind == TARGET_WAITKIND_EXITED)
5082         {
5083           /* Record the exit code in the convenience variable $_exitcode, so
5084              that the user can inspect this again later.  */
5085           set_internalvar_integer (lookup_internalvar ("_exitcode"),
5086                                    (LONGEST) ecs->ws.value.integer);
5087
5088           /* Also record this in the inferior itself.  */
5089           current_inferior ()->has_exit_code = 1;
5090           current_inferior ()->exit_code = (LONGEST) ecs->ws.value.integer;
5091
5092           /* Support the --return-child-result option.  */
5093           return_child_result_value = ecs->ws.value.integer;
5094
5095           observer_notify_exited (ecs->ws.value.integer);
5096         }
5097       else
5098         {
5099           struct regcache *regcache = get_thread_regcache (ecs->ptid);
5100           struct gdbarch *gdbarch = get_regcache_arch (regcache);
5101
5102           if (gdbarch_gdb_signal_to_target_p (gdbarch))
5103             {
5104               /* Set the value of the internal variable $_exitsignal,
5105                  which holds the signal uncaught by the inferior.  */
5106               set_internalvar_integer (lookup_internalvar ("_exitsignal"),
5107                                        gdbarch_gdb_signal_to_target (gdbarch,
5108                                                           ecs->ws.value.sig));
5109             }
5110           else
5111             {
5112               /* We don't have access to the target's method used for
5113                  converting between signal numbers (GDB's internal
5114                  representation <-> target's representation).
5115                  Therefore, we cannot do a good job at displaying this
5116                  information to the user.  It's better to just warn
5117                  her about it (if infrun debugging is enabled), and
5118                  give up.  */
5119               if (debug_infrun)
5120                 fprintf_filtered (gdb_stdlog, _("\
5121 Cannot fill $_exitsignal with the correct signal number.\n"));
5122             }
5123
5124           observer_notify_signal_exited (ecs->ws.value.sig);
5125         }
5126
5127       gdb_flush (gdb_stdout);
5128       target_mourn_inferior (inferior_ptid);
5129       stop_print_frame = 0;
5130       stop_waiting (ecs);
5131       return;
5132
5133       /* The following are the only cases in which we keep going;
5134          the above cases end in a continue or goto.  */
5135     case TARGET_WAITKIND_FORKED:
5136     case TARGET_WAITKIND_VFORKED:
5137       if (debug_infrun)
5138         {
5139           if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
5140             fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_FORKED\n");
5141           else
5142             fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_VFORKED\n");
5143         }
5144
5145       /* Check whether the inferior is displaced stepping.  */
5146       {
5147         struct regcache *regcache = get_thread_regcache (ecs->ptid);
5148         struct gdbarch *gdbarch = get_regcache_arch (regcache);
5149
5150         /* If checking displaced stepping is supported, and thread
5151            ecs->ptid is displaced stepping.  */
5152         if (displaced_step_in_progress_thread (ecs->ptid))
5153           {
5154             struct inferior *parent_inf
5155               = find_inferior_ptid (ecs->ptid);
5156             struct regcache *child_regcache;
5157             CORE_ADDR parent_pc;
5158
5159             /* GDB has got TARGET_WAITKIND_FORKED or TARGET_WAITKIND_VFORKED,
5160                indicating that the displaced stepping of syscall instruction
5161                has been done.  Perform cleanup for parent process here.  Note
5162                that this operation also cleans up the child process for vfork,
5163                because their pages are shared.  */
5164             displaced_step_fixup (ecs->ptid, GDB_SIGNAL_TRAP);
5165             /* Start a new step-over in another thread if there's one
5166                that needs it.  */
5167             start_step_over ();
5168
5169             if (ecs->ws.kind == TARGET_WAITKIND_FORKED)
5170               {
5171                 struct displaced_step_inferior_state *displaced
5172                   = get_displaced_stepping_state (ptid_get_pid (ecs->ptid));
5173
5174                 /* Restore scratch pad for child process.  */
5175                 displaced_step_restore (displaced, ecs->ws.value.related_pid);
5176               }
5177
5178             /* Since the vfork/fork syscall instruction was executed in the scratchpad,
5179                the child's PC is also within the scratchpad.  Set the child's PC
5180                to the parent's PC value, which has already been fixed up.
5181                FIXME: we use the parent's aspace here, although we're touching
5182                the child, because the child hasn't been added to the inferior
5183                list yet at this point.  */
5184
5185             child_regcache
5186               = get_thread_arch_aspace_regcache (ecs->ws.value.related_pid,
5187                                                  gdbarch,
5188                                                  parent_inf->aspace);
5189             /* Read PC value of parent process.  */
5190             parent_pc = regcache_read_pc (regcache);
5191
5192             if (debug_displaced)
5193               fprintf_unfiltered (gdb_stdlog,
5194                                   "displaced: write child pc from %s to %s\n",
5195                                   paddress (gdbarch,
5196                                             regcache_read_pc (child_regcache)),
5197                                   paddress (gdbarch, parent_pc));
5198
5199             regcache_write_pc (child_regcache, parent_pc);
5200           }
5201       }
5202
5203       if (!ptid_equal (ecs->ptid, inferior_ptid))
5204         context_switch (ecs->ptid);
5205
5206       /* Immediately detach breakpoints from the child before there's
5207          any chance of letting the user delete breakpoints from the
5208          breakpoint lists.  If we don't do this early, it's easy to
5209          leave left over traps in the child, vis: "break foo; catch
5210          fork; c; <fork>; del; c; <child calls foo>".  We only follow
5211          the fork on the last `continue', and by that time the
5212          breakpoint at "foo" is long gone from the breakpoint table.
5213          If we vforked, then we don't need to unpatch here, since both
5214          parent and child are sharing the same memory pages; we'll
5215          need to unpatch at follow/detach time instead to be certain
5216          that new breakpoints added between catchpoint hit time and
5217          vfork follow are detached.  */
5218       if (ecs->ws.kind != TARGET_WAITKIND_VFORKED)
5219         {
5220           /* This won't actually modify the breakpoint list, but will
5221              physically remove the breakpoints from the child.  */
5222           detach_breakpoints (ecs->ws.value.related_pid);
5223         }
5224
5225       delete_just_stopped_threads_single_step_breakpoints ();
5226
5227       /* In case the event is caught by a catchpoint, remember that
5228          the event is to be followed at the next resume of the thread,
5229          and not immediately.  */
5230       ecs->event_thread->pending_follow = ecs->ws;
5231
5232       stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
5233
5234       ecs->event_thread->control.stop_bpstat
5235         = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
5236                               stop_pc, ecs->ptid, &ecs->ws);
5237
5238       if (handle_stop_requested (ecs))
5239         return;
5240
5241       /* If no catchpoint triggered for this, then keep going.  Note
5242          that we're interested in knowing the bpstat actually causes a
5243          stop, not just if it may explain the signal.  Software
5244          watchpoints, for example, always appear in the bpstat.  */
5245       if (!bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
5246         {
5247           ptid_t parent;
5248           ptid_t child;
5249           int should_resume;
5250           int follow_child
5251             = (follow_fork_mode_string == follow_fork_mode_child);
5252
5253           ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5254
5255           should_resume = follow_fork ();
5256
5257           parent = ecs->ptid;
5258           child = ecs->ws.value.related_pid;
5259
5260           /* At this point, the parent is marked running, and the
5261              child is marked stopped.  */
5262
5263           /* If not resuming the parent, mark it stopped.  */
5264           if (follow_child && !detach_fork && !non_stop && !sched_multi)
5265             set_running (parent, 0);
5266
5267           /* If resuming the child, mark it running.  */
5268           if (follow_child || (!detach_fork && (non_stop || sched_multi)))
5269             set_running (child, 1);
5270
5271           /* In non-stop mode, also resume the other branch.  */
5272           if (!detach_fork && (non_stop
5273                                || (sched_multi && target_is_non_stop_p ())))
5274             {
5275               if (follow_child)
5276                 switch_to_thread (parent);
5277               else
5278                 switch_to_thread (child);
5279
5280               ecs->event_thread = inferior_thread ();
5281               ecs->ptid = inferior_ptid;
5282               keep_going (ecs);
5283             }
5284
5285           if (follow_child)
5286             switch_to_thread (child);
5287           else
5288             switch_to_thread (parent);
5289
5290           ecs->event_thread = inferior_thread ();
5291           ecs->ptid = inferior_ptid;
5292
5293           if (should_resume)
5294             keep_going (ecs);
5295           else
5296             stop_waiting (ecs);
5297           return;
5298         }
5299       process_event_stop_test (ecs);
5300       return;
5301
5302     case TARGET_WAITKIND_VFORK_DONE:
5303       /* Done with the shared memory region.  Re-insert breakpoints in
5304          the parent, and keep going.  */
5305
5306       if (debug_infrun)
5307         fprintf_unfiltered (gdb_stdlog,
5308                             "infrun: TARGET_WAITKIND_VFORK_DONE\n");
5309
5310       if (!ptid_equal (ecs->ptid, inferior_ptid))
5311         context_switch (ecs->ptid);
5312
5313       current_inferior ()->waiting_for_vfork_done = 0;
5314       current_inferior ()->pspace->breakpoints_not_allowed = 0;
5315
5316       if (handle_stop_requested (ecs))
5317         return;
5318
5319       /* This also takes care of reinserting breakpoints in the
5320          previously locked inferior.  */
5321       keep_going (ecs);
5322       return;
5323
5324     case TARGET_WAITKIND_EXECD:
5325       if (debug_infrun)
5326         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXECD\n");
5327
5328       if (!ptid_equal (ecs->ptid, inferior_ptid))
5329         context_switch (ecs->ptid);
5330
5331       stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
5332
5333       /* Do whatever is necessary to the parent branch of the vfork.  */
5334       handle_vfork_child_exec_or_exit (1);
5335
5336       /* This causes the eventpoints and symbol table to be reset.
5337          Must do this now, before trying to determine whether to
5338          stop.  */
5339       follow_exec (inferior_ptid, ecs->ws.value.execd_pathname);
5340
5341       /* In follow_exec we may have deleted the original thread and
5342          created a new one.  Make sure that the event thread is the
5343          execd thread for that case (this is a nop otherwise).  */
5344       ecs->event_thread = inferior_thread ();
5345
5346       ecs->event_thread->control.stop_bpstat
5347         = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
5348                               stop_pc, ecs->ptid, &ecs->ws);
5349
5350       /* Note that this may be referenced from inside
5351          bpstat_stop_status above, through inferior_has_execd.  */
5352       xfree (ecs->ws.value.execd_pathname);
5353       ecs->ws.value.execd_pathname = NULL;
5354
5355       if (handle_stop_requested (ecs))
5356         return;
5357
5358       /* If no catchpoint triggered for this, then keep going.  */
5359       if (!bpstat_causes_stop (ecs->event_thread->control.stop_bpstat))
5360         {
5361           ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5362           keep_going (ecs);
5363           return;
5364         }
5365       process_event_stop_test (ecs);
5366       return;
5367
5368       /* Be careful not to try to gather much state about a thread
5369          that's in a syscall.  It's frequently a losing proposition.  */
5370     case TARGET_WAITKIND_SYSCALL_ENTRY:
5371       if (debug_infrun)
5372         fprintf_unfiltered (gdb_stdlog,
5373                             "infrun: TARGET_WAITKIND_SYSCALL_ENTRY\n");
5374       /* Getting the current syscall number.  */
5375       if (handle_syscall_event (ecs) == 0)
5376         process_event_stop_test (ecs);
5377       return;
5378
5379       /* Before examining the threads further, step this thread to
5380          get it entirely out of the syscall.  (We get notice of the
5381          event when the thread is just on the verge of exiting a
5382          syscall.  Stepping one instruction seems to get it back
5383          into user code.)  */
5384     case TARGET_WAITKIND_SYSCALL_RETURN:
5385       if (debug_infrun)
5386         fprintf_unfiltered (gdb_stdlog,
5387                             "infrun: TARGET_WAITKIND_SYSCALL_RETURN\n");
5388       if (handle_syscall_event (ecs) == 0)
5389         process_event_stop_test (ecs);
5390       return;
5391
5392     case TARGET_WAITKIND_STOPPED:
5393       if (debug_infrun)
5394         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_STOPPED\n");
5395       handle_signal_stop (ecs);
5396       return;
5397
5398     case TARGET_WAITKIND_NO_HISTORY:
5399       if (debug_infrun)
5400         fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_NO_HISTORY\n");
5401       /* Reverse execution: target ran out of history info.  */
5402
5403       /* Switch to the stopped thread.  */
5404       if (!ptid_equal (ecs->ptid, inferior_ptid))
5405         context_switch (ecs->ptid);
5406       if (debug_infrun)
5407         fprintf_unfiltered (gdb_stdlog, "infrun: stopped\n");
5408
5409       delete_just_stopped_threads_single_step_breakpoints ();
5410       stop_pc = regcache_read_pc (get_thread_regcache (inferior_ptid));
5411
5412       if (handle_stop_requested (ecs))
5413         return;
5414
5415       observer_notify_no_history ();
5416       stop_waiting (ecs);
5417       return;
5418     }
5419 }
5420
5421 /* A wrapper around handle_inferior_event_1, which also makes sure
5422    that all temporary struct value objects that were created during
5423    the handling of the event get deleted at the end.  */
5424
5425 static void
5426 handle_inferior_event (struct execution_control_state *ecs)
5427 {
5428   struct value *mark = value_mark ();
5429
5430   handle_inferior_event_1 (ecs);
5431   /* Purge all temporary values created during the event handling,
5432      as it could be a long time before we return to the command level
5433      where such values would otherwise be purged.  */
5434   value_free_to_mark (mark);
5435 }
5436
5437 /* Restart threads back to what they were trying to do back when we
5438    paused them for an in-line step-over.  The EVENT_THREAD thread is
5439    ignored.  */
5440
5441 static void
5442 restart_threads (struct thread_info *event_thread)
5443 {
5444   struct thread_info *tp;
5445
5446   /* In case the instruction just stepped spawned a new thread.  */
5447   update_thread_list ();
5448
5449   ALL_NON_EXITED_THREADS (tp)
5450     {
5451       if (tp == event_thread)
5452         {
5453           if (debug_infrun)
5454             fprintf_unfiltered (gdb_stdlog,
5455                                 "infrun: restart threads: "
5456                                 "[%s] is event thread\n",
5457                                 target_pid_to_str (tp->ptid));
5458           continue;
5459         }
5460
5461       if (!(tp->state == THREAD_RUNNING || tp->control.in_infcall))
5462         {
5463           if (debug_infrun)
5464             fprintf_unfiltered (gdb_stdlog,
5465                                 "infrun: restart threads: "
5466                                 "[%s] not meant to be running\n",
5467                                 target_pid_to_str (tp->ptid));
5468           continue;
5469         }
5470
5471       if (tp->resumed)
5472         {
5473           if (debug_infrun)
5474             fprintf_unfiltered (gdb_stdlog,
5475                                 "infrun: restart threads: [%s] resumed\n",
5476                                 target_pid_to_str (tp->ptid));
5477           gdb_assert (tp->executing || tp->suspend.waitstatus_pending_p);
5478           continue;
5479         }
5480
5481       if (thread_is_in_step_over_chain (tp))
5482         {
5483           if (debug_infrun)
5484             fprintf_unfiltered (gdb_stdlog,
5485                                 "infrun: restart threads: "
5486                                 "[%s] needs step-over\n",
5487                                 target_pid_to_str (tp->ptid));
5488           gdb_assert (!tp->resumed);
5489           continue;
5490         }
5491
5492
5493       if (tp->suspend.waitstatus_pending_p)
5494         {
5495           if (debug_infrun)
5496             fprintf_unfiltered (gdb_stdlog,
5497                                 "infrun: restart threads: "
5498                                 "[%s] has pending status\n",
5499                                 target_pid_to_str (tp->ptid));
5500           tp->resumed = 1;
5501           continue;
5502         }
5503
5504       gdb_assert (!tp->stop_requested);
5505
5506       /* If some thread needs to start a step-over at this point, it
5507          should still be in the step-over queue, and thus skipped
5508          above.  */
5509       if (thread_still_needs_step_over (tp))
5510         {
5511           internal_error (__FILE__, __LINE__,
5512                           "thread [%s] needs a step-over, but not in "
5513                           "step-over queue\n",
5514                           target_pid_to_str (tp->ptid));
5515         }
5516
5517       if (currently_stepping (tp))
5518         {
5519           if (debug_infrun)
5520             fprintf_unfiltered (gdb_stdlog,
5521                                 "infrun: restart threads: [%s] was stepping\n",
5522                                 target_pid_to_str (tp->ptid));
5523           keep_going_stepped_thread (tp);
5524         }
5525       else
5526         {
5527           struct execution_control_state ecss;
5528           struct execution_control_state *ecs = &ecss;
5529
5530           if (debug_infrun)
5531             fprintf_unfiltered (gdb_stdlog,
5532                                 "infrun: restart threads: [%s] continuing\n",
5533                                 target_pid_to_str (tp->ptid));
5534           reset_ecs (ecs, tp);
5535           switch_to_thread (tp->ptid);
5536           keep_going_pass_signal (ecs);
5537         }
5538     }
5539 }
5540
5541 /* Callback for iterate_over_threads.  Find a resumed thread that has
5542    a pending waitstatus.  */
5543
5544 static int
5545 resumed_thread_with_pending_status (struct thread_info *tp,
5546                                     void *arg)
5547 {
5548   return (tp->resumed
5549           && tp->suspend.waitstatus_pending_p);
5550 }
5551
5552 /* Called when we get an event that may finish an in-line or
5553    out-of-line (displaced stepping) step-over started previously.
5554    Return true if the event is processed and we should go back to the
5555    event loop; false if the caller should continue processing the
5556    event.  */
5557
5558 static int
5559 finish_step_over (struct execution_control_state *ecs)
5560 {
5561   int had_step_over_info;
5562
5563   displaced_step_fixup (ecs->ptid,
5564                         ecs->event_thread->suspend.stop_signal);
5565
5566   had_step_over_info = step_over_info_valid_p ();
5567
5568   if (had_step_over_info)
5569     {
5570       /* If we're stepping over a breakpoint with all threads locked,
5571          then only the thread that was stepped should be reporting
5572          back an event.  */
5573       gdb_assert (ecs->event_thread->control.trap_expected);
5574
5575       clear_step_over_info ();
5576     }
5577
5578   if (!target_is_non_stop_p ())
5579     return 0;
5580
5581   /* Start a new step-over in another thread if there's one that
5582      needs it.  */
5583   start_step_over ();
5584
5585   /* If we were stepping over a breakpoint before, and haven't started
5586      a new in-line step-over sequence, then restart all other threads
5587      (except the event thread).  We can't do this in all-stop, as then
5588      e.g., we wouldn't be able to issue any other remote packet until
5589      these other threads stop.  */
5590   if (had_step_over_info && !step_over_info_valid_p ())
5591     {
5592       struct thread_info *pending;
5593
5594       /* If we only have threads with pending statuses, the restart
5595          below won't restart any thread and so nothing re-inserts the
5596          breakpoint we just stepped over.  But we need it inserted
5597          when we later process the pending events, otherwise if
5598          another thread has a pending event for this breakpoint too,
5599          we'd discard its event (because the breakpoint that
5600          originally caused the event was no longer inserted).  */
5601       context_switch (ecs->ptid);
5602       insert_breakpoints ();
5603
5604       restart_threads (ecs->event_thread);
5605
5606       /* If we have events pending, go through handle_inferior_event
5607          again, picking up a pending event at random.  This avoids
5608          thread starvation.  */
5609
5610       /* But not if we just stepped over a watchpoint in order to let
5611          the instruction execute so we can evaluate its expression.
5612          The set of watchpoints that triggered is recorded in the
5613          breakpoint objects themselves (see bp->watchpoint_triggered).
5614          If we processed another event first, that other event could
5615          clobber this info.  */
5616       if (ecs->event_thread->stepping_over_watchpoint)
5617         return 0;
5618
5619       pending = iterate_over_threads (resumed_thread_with_pending_status,
5620                                       NULL);
5621       if (pending != NULL)
5622         {
5623           struct thread_info *tp = ecs->event_thread;
5624           struct regcache *regcache;
5625
5626           if (debug_infrun)
5627             {
5628               fprintf_unfiltered (gdb_stdlog,
5629                                   "infrun: found resumed threads with "
5630                                   "pending events, saving status\n");
5631             }
5632
5633           gdb_assert (pending != tp);
5634
5635           /* Record the event thread's event for later.  */
5636           save_waitstatus (tp, &ecs->ws);
5637           /* This was cleared early, by handle_inferior_event.  Set it
5638              so this pending event is considered by
5639              do_target_wait.  */
5640           tp->resumed = 1;
5641
5642           gdb_assert (!tp->executing);
5643
5644           regcache = get_thread_regcache (tp->ptid);
5645           tp->suspend.stop_pc = regcache_read_pc (regcache);
5646
5647           if (debug_infrun)
5648             {
5649               fprintf_unfiltered (gdb_stdlog,
5650                                   "infrun: saved stop_pc=%s for %s "
5651                                   "(currently_stepping=%d)\n",
5652                                   paddress (target_gdbarch (),
5653                                             tp->suspend.stop_pc),
5654                                   target_pid_to_str (tp->ptid),
5655                                   currently_stepping (tp));
5656             }
5657
5658           /* This in-line step-over finished; clear this so we won't
5659              start a new one.  This is what handle_signal_stop would
5660              do, if we returned false.  */
5661           tp->stepping_over_breakpoint = 0;
5662
5663           /* Wake up the event loop again.  */
5664           mark_async_event_handler (infrun_async_inferior_event_token);
5665
5666           prepare_to_wait (ecs);
5667           return 1;
5668         }
5669     }
5670
5671   return 0;
5672 }
5673
5674 /* Come here when the program has stopped with a signal.  */
5675
5676 static void
5677 handle_signal_stop (struct execution_control_state *ecs)
5678 {
5679   struct frame_info *frame;
5680   struct gdbarch *gdbarch;
5681   int stopped_by_watchpoint;
5682   enum stop_kind stop_soon;
5683   int random_signal;
5684
5685   gdb_assert (ecs->ws.kind == TARGET_WAITKIND_STOPPED);
5686
5687   ecs->event_thread->suspend.stop_signal = ecs->ws.value.sig;
5688
5689   /* Do we need to clean up the state of a thread that has
5690      completed a displaced single-step?  (Doing so usually affects
5691      the PC, so do it here, before we set stop_pc.)  */
5692   if (finish_step_over (ecs))
5693     return;
5694
5695   /* If we either finished a single-step or hit a breakpoint, but
5696      the user wanted this thread to be stopped, pretend we got a
5697      SIG0 (generic unsignaled stop).  */
5698   if (ecs->event_thread->stop_requested
5699       && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
5700     ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5701
5702   stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
5703
5704   if (debug_infrun)
5705     {
5706       struct regcache *regcache = get_thread_regcache (ecs->ptid);
5707       struct gdbarch *gdbarch = get_regcache_arch (regcache);
5708       struct cleanup *old_chain = save_inferior_ptid ();
5709
5710       inferior_ptid = ecs->ptid;
5711
5712       fprintf_unfiltered (gdb_stdlog, "infrun: stop_pc = %s\n",
5713                           paddress (gdbarch, stop_pc));
5714       if (target_stopped_by_watchpoint ())
5715         {
5716           CORE_ADDR addr;
5717
5718           fprintf_unfiltered (gdb_stdlog, "infrun: stopped by watchpoint\n");
5719
5720           if (target_stopped_data_address (&current_target, &addr))
5721             fprintf_unfiltered (gdb_stdlog,
5722                                 "infrun: stopped data address = %s\n",
5723                                 paddress (gdbarch, addr));
5724           else
5725             fprintf_unfiltered (gdb_stdlog,
5726                                 "infrun: (no data address available)\n");
5727         }
5728
5729       do_cleanups (old_chain);
5730     }
5731
5732   /* This is originated from start_remote(), start_inferior() and
5733      shared libraries hook functions.  */
5734   stop_soon = get_inferior_stop_soon (ecs->ptid);
5735   if (stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_REMOTE)
5736     {
5737       if (!ptid_equal (ecs->ptid, inferior_ptid))
5738         context_switch (ecs->ptid);
5739       if (debug_infrun)
5740         fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
5741       stop_print_frame = 1;
5742       stop_waiting (ecs);
5743       return;
5744     }
5745
5746   /* This originates from attach_command().  We need to overwrite
5747      the stop_signal here, because some kernels don't ignore a
5748      SIGSTOP in a subsequent ptrace(PTRACE_CONT,SIGSTOP) call.
5749      See more comments in inferior.h.  On the other hand, if we
5750      get a non-SIGSTOP, report it to the user - assume the backend
5751      will handle the SIGSTOP if it should show up later.
5752
5753      Also consider that the attach is complete when we see a
5754      SIGTRAP.  Some systems (e.g. Windows), and stubs supporting
5755      target extended-remote report it instead of a SIGSTOP
5756      (e.g. gdbserver).  We already rely on SIGTRAP being our
5757      signal, so this is no exception.
5758
5759      Also consider that the attach is complete when we see a
5760      GDB_SIGNAL_0.  In non-stop mode, GDB will explicitly tell
5761      the target to stop all threads of the inferior, in case the
5762      low level attach operation doesn't stop them implicitly.  If
5763      they weren't stopped implicitly, then the stub will report a
5764      GDB_SIGNAL_0, meaning: stopped for no particular reason
5765      other than GDB's request.  */
5766   if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
5767       && (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_STOP
5768           || ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5769           || ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_0))
5770     {
5771       stop_print_frame = 1;
5772       stop_waiting (ecs);
5773       ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
5774       return;
5775     }
5776
5777   /* See if something interesting happened to the non-current thread.  If
5778      so, then switch to that thread.  */
5779   if (!ptid_equal (ecs->ptid, inferior_ptid))
5780     {
5781       if (debug_infrun)
5782         fprintf_unfiltered (gdb_stdlog, "infrun: context switch\n");
5783
5784       context_switch (ecs->ptid);
5785
5786       if (deprecated_context_hook)
5787         deprecated_context_hook (ptid_to_global_thread_id (ecs->ptid));
5788     }
5789
5790   /* At this point, get hold of the now-current thread's frame.  */
5791   frame = get_current_frame ();
5792   gdbarch = get_frame_arch (frame);
5793
5794   /* Pull the single step breakpoints out of the target.  */
5795   if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
5796     {
5797       struct regcache *regcache;
5798       struct address_space *aspace;
5799       CORE_ADDR pc;
5800
5801       regcache = get_thread_regcache (ecs->ptid);
5802       aspace = get_regcache_aspace (regcache);
5803       pc = regcache_read_pc (regcache);
5804
5805       /* However, before doing so, if this single-step breakpoint was
5806          actually for another thread, set this thread up for moving
5807          past it.  */
5808       if (!thread_has_single_step_breakpoint_here (ecs->event_thread,
5809                                                    aspace, pc))
5810         {
5811           if (single_step_breakpoint_inserted_here_p (aspace, pc))
5812             {
5813               if (debug_infrun)
5814                 {
5815                   fprintf_unfiltered (gdb_stdlog,
5816                                       "infrun: [%s] hit another thread's "
5817                                       "single-step breakpoint\n",
5818                                       target_pid_to_str (ecs->ptid));
5819                 }
5820               ecs->hit_singlestep_breakpoint = 1;
5821             }
5822         }
5823       else
5824         {
5825           if (debug_infrun)
5826             {
5827               fprintf_unfiltered (gdb_stdlog,
5828                                   "infrun: [%s] hit its "
5829                                   "single-step breakpoint\n",
5830                                   target_pid_to_str (ecs->ptid));
5831             }
5832         }
5833     }
5834   delete_just_stopped_threads_single_step_breakpoints ();
5835
5836   if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5837       && ecs->event_thread->control.trap_expected
5838       && ecs->event_thread->stepping_over_watchpoint)
5839     stopped_by_watchpoint = 0;
5840   else
5841     stopped_by_watchpoint = watchpoints_triggered (&ecs->ws);
5842
5843   /* If necessary, step over this watchpoint.  We'll be back to display
5844      it in a moment.  */
5845   if (stopped_by_watchpoint
5846       && (target_have_steppable_watchpoint
5847           || gdbarch_have_nonsteppable_watchpoint (gdbarch)))
5848     {
5849       /* At this point, we are stopped at an instruction which has
5850          attempted to write to a piece of memory under control of
5851          a watchpoint.  The instruction hasn't actually executed
5852          yet.  If we were to evaluate the watchpoint expression
5853          now, we would get the old value, and therefore no change
5854          would seem to have occurred.
5855
5856          In order to make watchpoints work `right', we really need
5857          to complete the memory write, and then evaluate the
5858          watchpoint expression.  We do this by single-stepping the
5859          target.
5860
5861          It may not be necessary to disable the watchpoint to step over
5862          it.  For example, the PA can (with some kernel cooperation)
5863          single step over a watchpoint without disabling the watchpoint.
5864
5865          It is far more common to need to disable a watchpoint to step
5866          the inferior over it.  If we have non-steppable watchpoints,
5867          we must disable the current watchpoint; it's simplest to
5868          disable all watchpoints.
5869
5870          Any breakpoint at PC must also be stepped over -- if there's
5871          one, it will have already triggered before the watchpoint
5872          triggered, and we either already reported it to the user, or
5873          it didn't cause a stop and we called keep_going.  In either
5874          case, if there was a breakpoint at PC, we must be trying to
5875          step past it.  */
5876       ecs->event_thread->stepping_over_watchpoint = 1;
5877       keep_going (ecs);
5878       return;
5879     }
5880
5881   ecs->event_thread->stepping_over_breakpoint = 0;
5882   ecs->event_thread->stepping_over_watchpoint = 0;
5883   bpstat_clear (&ecs->event_thread->control.stop_bpstat);
5884   ecs->event_thread->control.stop_step = 0;
5885   stop_print_frame = 1;
5886   stopped_by_random_signal = 0;
5887
5888   /* Hide inlined functions starting here, unless we just performed stepi or
5889      nexti.  After stepi and nexti, always show the innermost frame (not any
5890      inline function call sites).  */
5891   if (ecs->event_thread->control.step_range_end != 1)
5892     {
5893       struct address_space *aspace = 
5894         get_regcache_aspace (get_thread_regcache (ecs->ptid));
5895
5896       /* skip_inline_frames is expensive, so we avoid it if we can
5897          determine that the address is one where functions cannot have
5898          been inlined.  This improves performance with inferiors that
5899          load a lot of shared libraries, because the solib event
5900          breakpoint is defined as the address of a function (i.e. not
5901          inline).  Note that we have to check the previous PC as well
5902          as the current one to catch cases when we have just
5903          single-stepped off a breakpoint prior to reinstating it.
5904          Note that we're assuming that the code we single-step to is
5905          not inline, but that's not definitive: there's nothing
5906          preventing the event breakpoint function from containing
5907          inlined code, and the single-step ending up there.  If the
5908          user had set a breakpoint on that inlined code, the missing
5909          skip_inline_frames call would break things.  Fortunately
5910          that's an extremely unlikely scenario.  */
5911       if (!pc_at_non_inline_function (aspace, stop_pc, &ecs->ws)
5912           && !(ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5913                && ecs->event_thread->control.trap_expected
5914                && pc_at_non_inline_function (aspace,
5915                                              ecs->event_thread->prev_pc,
5916                                              &ecs->ws)))
5917         {
5918           skip_inline_frames (ecs->ptid);
5919
5920           /* Re-fetch current thread's frame in case that invalidated
5921              the frame cache.  */
5922           frame = get_current_frame ();
5923           gdbarch = get_frame_arch (frame);
5924         }
5925     }
5926
5927   if (ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5928       && ecs->event_thread->control.trap_expected
5929       && gdbarch_single_step_through_delay_p (gdbarch)
5930       && currently_stepping (ecs->event_thread))
5931     {
5932       /* We're trying to step off a breakpoint.  Turns out that we're
5933          also on an instruction that needs to be stepped multiple
5934          times before it's been fully executing.  E.g., architectures
5935          with a delay slot.  It needs to be stepped twice, once for
5936          the instruction and once for the delay slot.  */
5937       int step_through_delay
5938         = gdbarch_single_step_through_delay (gdbarch, frame);
5939
5940       if (debug_infrun && step_through_delay)
5941         fprintf_unfiltered (gdb_stdlog, "infrun: step through delay\n");
5942       if (ecs->event_thread->control.step_range_end == 0
5943           && step_through_delay)
5944         {
5945           /* The user issued a continue when stopped at a breakpoint.
5946              Set up for another trap and get out of here.  */
5947          ecs->event_thread->stepping_over_breakpoint = 1;
5948          keep_going (ecs);
5949          return;
5950         }
5951       else if (step_through_delay)
5952         {
5953           /* The user issued a step when stopped at a breakpoint.
5954              Maybe we should stop, maybe we should not - the delay
5955              slot *might* correspond to a line of source.  In any
5956              case, don't decide that here, just set 
5957              ecs->stepping_over_breakpoint, making sure we 
5958              single-step again before breakpoints are re-inserted.  */
5959           ecs->event_thread->stepping_over_breakpoint = 1;
5960         }
5961     }
5962
5963   /* See if there is a breakpoint/watchpoint/catchpoint/etc. that
5964      handles this event.  */
5965   ecs->event_thread->control.stop_bpstat
5966     = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
5967                           stop_pc, ecs->ptid, &ecs->ws);
5968
5969   /* Following in case break condition called a
5970      function.  */
5971   stop_print_frame = 1;
5972
5973   /* This is where we handle "moribund" watchpoints.  Unlike
5974      software breakpoints traps, hardware watchpoint traps are
5975      always distinguishable from random traps.  If no high-level
5976      watchpoint is associated with the reported stop data address
5977      anymore, then the bpstat does not explain the signal ---
5978      simply make sure to ignore it if `stopped_by_watchpoint' is
5979      set.  */
5980
5981   if (debug_infrun
5982       && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
5983       && !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat,
5984                                   GDB_SIGNAL_TRAP)
5985       && stopped_by_watchpoint)
5986     fprintf_unfiltered (gdb_stdlog,
5987                         "infrun: no user watchpoint explains "
5988                         "watchpoint SIGTRAP, ignoring\n");
5989
5990   /* NOTE: cagney/2003-03-29: These checks for a random signal
5991      at one stage in the past included checks for an inferior
5992      function call's call dummy's return breakpoint.  The original
5993      comment, that went with the test, read:
5994
5995      ``End of a stack dummy.  Some systems (e.g. Sony news) give
5996      another signal besides SIGTRAP, so check here as well as
5997      above.''
5998
5999      If someone ever tries to get call dummys on a
6000      non-executable stack to work (where the target would stop
6001      with something like a SIGSEGV), then those tests might need
6002      to be re-instated.  Given, however, that the tests were only
6003      enabled when momentary breakpoints were not being used, I
6004      suspect that it won't be the case.
6005
6006      NOTE: kettenis/2004-02-05: Indeed such checks don't seem to
6007      be necessary for call dummies on a non-executable stack on
6008      SPARC.  */
6009
6010   /* See if the breakpoints module can explain the signal.  */
6011   random_signal
6012     = !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat,
6013                                ecs->event_thread->suspend.stop_signal);
6014
6015   /* Maybe this was a trap for a software breakpoint that has since
6016      been removed.  */
6017   if (random_signal && target_stopped_by_sw_breakpoint ())
6018     {
6019       if (program_breakpoint_here_p (gdbarch, stop_pc))
6020         {
6021           struct regcache *regcache;
6022           int decr_pc;
6023
6024           /* Re-adjust PC to what the program would see if GDB was not
6025              debugging it.  */
6026           regcache = get_thread_regcache (ecs->event_thread->ptid);
6027           decr_pc = gdbarch_decr_pc_after_break (gdbarch);
6028           if (decr_pc != 0)
6029             {
6030               struct cleanup *old_cleanups = make_cleanup (null_cleanup, NULL);
6031
6032               if (record_full_is_used ())
6033                 record_full_gdb_operation_disable_set ();
6034
6035               regcache_write_pc (regcache, stop_pc + decr_pc);
6036
6037               do_cleanups (old_cleanups);
6038             }
6039         }
6040       else
6041         {
6042           /* A delayed software breakpoint event.  Ignore the trap.  */
6043           if (debug_infrun)
6044             fprintf_unfiltered (gdb_stdlog,
6045                                 "infrun: delayed software breakpoint "
6046                                 "trap, ignoring\n");
6047           random_signal = 0;
6048         }
6049     }
6050
6051   /* Maybe this was a trap for a hardware breakpoint/watchpoint that
6052      has since been removed.  */
6053   if (random_signal && target_stopped_by_hw_breakpoint ())
6054     {
6055       /* A delayed hardware breakpoint event.  Ignore the trap.  */
6056       if (debug_infrun)
6057         fprintf_unfiltered (gdb_stdlog,
6058                             "infrun: delayed hardware breakpoint/watchpoint "
6059                             "trap, ignoring\n");
6060       random_signal = 0;
6061     }
6062
6063   /* If not, perhaps stepping/nexting can.  */
6064   if (random_signal)
6065     random_signal = !(ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP
6066                       && currently_stepping (ecs->event_thread));
6067
6068   /* Perhaps the thread hit a single-step breakpoint of _another_
6069      thread.  Single-step breakpoints are transparent to the
6070      breakpoints module.  */
6071   if (random_signal)
6072     random_signal = !ecs->hit_singlestep_breakpoint;
6073
6074   /* No?  Perhaps we got a moribund watchpoint.  */
6075   if (random_signal)
6076     random_signal = !stopped_by_watchpoint;
6077
6078   /* Always stop if the user explicitly requested this thread to
6079      remain stopped.  */
6080   if (ecs->event_thread->stop_requested)
6081     {
6082       random_signal = 1;
6083       if (debug_infrun)
6084         fprintf_unfiltered (gdb_stdlog, "infrun: user-requested stop\n");
6085     }
6086
6087   /* For the program's own signals, act according to
6088      the signal handling tables.  */
6089
6090   if (random_signal)
6091     {
6092       /* Signal not for debugging purposes.  */
6093       struct inferior *inf = find_inferior_ptid (ecs->ptid);
6094       enum gdb_signal stop_signal = ecs->event_thread->suspend.stop_signal;
6095
6096       if (debug_infrun)
6097          fprintf_unfiltered (gdb_stdlog, "infrun: random signal (%s)\n",
6098                              gdb_signal_to_symbol_string (stop_signal));
6099
6100       stopped_by_random_signal = 1;
6101
6102       /* Always stop on signals if we're either just gaining control
6103          of the program, or the user explicitly requested this thread
6104          to remain stopped.  */
6105       if (stop_soon != NO_STOP_QUIETLY
6106           || ecs->event_thread->stop_requested
6107           || (!inf->detaching
6108               && signal_stop_state (ecs->event_thread->suspend.stop_signal)))
6109         {
6110           stop_waiting (ecs);
6111           return;
6112         }
6113
6114       /* Notify observers the signal has "handle print" set.  Note we
6115          returned early above if stopping; normal_stop handles the
6116          printing in that case.  */
6117       if (signal_print[ecs->event_thread->suspend.stop_signal])
6118         {
6119           /* The signal table tells us to print about this signal.  */
6120           target_terminal_ours_for_output ();
6121           observer_notify_signal_received (ecs->event_thread->suspend.stop_signal);
6122           target_terminal_inferior ();
6123         }
6124
6125       /* Clear the signal if it should not be passed.  */
6126       if (signal_program[ecs->event_thread->suspend.stop_signal] == 0)
6127         ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
6128
6129       if (ecs->event_thread->prev_pc == stop_pc
6130           && ecs->event_thread->control.trap_expected
6131           && ecs->event_thread->control.step_resume_breakpoint == NULL)
6132         {
6133           /* We were just starting a new sequence, attempting to
6134              single-step off of a breakpoint and expecting a SIGTRAP.
6135              Instead this signal arrives.  This signal will take us out
6136              of the stepping range so GDB needs to remember to, when
6137              the signal handler returns, resume stepping off that
6138              breakpoint.  */
6139           /* To simplify things, "continue" is forced to use the same
6140              code paths as single-step - set a breakpoint at the
6141              signal return address and then, once hit, step off that
6142              breakpoint.  */
6143           if (debug_infrun)
6144             fprintf_unfiltered (gdb_stdlog,
6145                                 "infrun: signal arrived while stepping over "
6146                                 "breakpoint\n");
6147
6148           insert_hp_step_resume_breakpoint_at_frame (frame);
6149           ecs->event_thread->step_after_step_resume_breakpoint = 1;
6150           /* Reset trap_expected to ensure breakpoints are re-inserted.  */
6151           ecs->event_thread->control.trap_expected = 0;
6152
6153           /* If we were nexting/stepping some other thread, switch to
6154              it, so that we don't continue it, losing control.  */
6155           if (!switch_back_to_stepped_thread (ecs))
6156             keep_going (ecs);
6157           return;
6158         }
6159
6160       if (ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_0
6161           && (pc_in_thread_step_range (stop_pc, ecs->event_thread)
6162               || ecs->event_thread->control.step_range_end == 1)
6163           && frame_id_eq (get_stack_frame_id (frame),
6164                           ecs->event_thread->control.step_stack_frame_id)
6165           && ecs->event_thread->control.step_resume_breakpoint == NULL)
6166         {
6167           /* The inferior is about to take a signal that will take it
6168              out of the single step range.  Set a breakpoint at the
6169              current PC (which is presumably where the signal handler
6170              will eventually return) and then allow the inferior to
6171              run free.
6172
6173              Note that this is only needed for a signal delivered
6174              while in the single-step range.  Nested signals aren't a
6175              problem as they eventually all return.  */
6176           if (debug_infrun)
6177             fprintf_unfiltered (gdb_stdlog,
6178                                 "infrun: signal may take us out of "
6179                                 "single-step range\n");
6180
6181           clear_step_over_info ();
6182           insert_hp_step_resume_breakpoint_at_frame (frame);
6183           ecs->event_thread->step_after_step_resume_breakpoint = 1;
6184           /* Reset trap_expected to ensure breakpoints are re-inserted.  */
6185           ecs->event_thread->control.trap_expected = 0;
6186           keep_going (ecs);
6187           return;
6188         }
6189
6190       /* Note: step_resume_breakpoint may be non-NULL.  This occures
6191          when either there's a nested signal, or when there's a
6192          pending signal enabled just as the signal handler returns
6193          (leaving the inferior at the step-resume-breakpoint without
6194          actually executing it).  Either way continue until the
6195          breakpoint is really hit.  */
6196
6197       if (!switch_back_to_stepped_thread (ecs))
6198         {
6199           if (debug_infrun)
6200             fprintf_unfiltered (gdb_stdlog,
6201                                 "infrun: random signal, keep going\n");
6202
6203           keep_going (ecs);
6204         }
6205       return;
6206     }
6207
6208   process_event_stop_test (ecs);
6209 }
6210
6211 /* Come here when we've got some debug event / signal we can explain
6212    (IOW, not a random signal), and test whether it should cause a
6213    stop, or whether we should resume the inferior (transparently).
6214    E.g., could be a breakpoint whose condition evaluates false; we
6215    could be still stepping within the line; etc.  */
6216
6217 static void
6218 process_event_stop_test (struct execution_control_state *ecs)
6219 {
6220   struct symtab_and_line stop_pc_sal;
6221   struct frame_info *frame;
6222   struct gdbarch *gdbarch;
6223   CORE_ADDR jmp_buf_pc;
6224   struct bpstat_what what;
6225
6226   /* Handle cases caused by hitting a breakpoint.  */
6227
6228   frame = get_current_frame ();
6229   gdbarch = get_frame_arch (frame);
6230
6231   what = bpstat_what (ecs->event_thread->control.stop_bpstat);
6232
6233   if (what.call_dummy)
6234     {
6235       stop_stack_dummy = what.call_dummy;
6236     }
6237
6238   /* A few breakpoint types have callbacks associated (e.g.,
6239      bp_jit_event).  Run them now.  */
6240   bpstat_run_callbacks (ecs->event_thread->control.stop_bpstat);
6241
6242   /* If we hit an internal event that triggers symbol changes, the
6243      current frame will be invalidated within bpstat_what (e.g., if we
6244      hit an internal solib event).  Re-fetch it.  */
6245   frame = get_current_frame ();
6246   gdbarch = get_frame_arch (frame);
6247
6248   switch (what.main_action)
6249     {
6250     case BPSTAT_WHAT_SET_LONGJMP_RESUME:
6251       /* If we hit the breakpoint at longjmp while stepping, we
6252          install a momentary breakpoint at the target of the
6253          jmp_buf.  */
6254
6255       if (debug_infrun)
6256         fprintf_unfiltered (gdb_stdlog,
6257                             "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME\n");
6258
6259       ecs->event_thread->stepping_over_breakpoint = 1;
6260
6261       if (what.is_longjmp)
6262         {
6263           struct value *arg_value;
6264
6265           /* If we set the longjmp breakpoint via a SystemTap probe,
6266              then use it to extract the arguments.  The destination PC
6267              is the third argument to the probe.  */
6268           arg_value = probe_safe_evaluate_at_pc (frame, 2);
6269           if (arg_value)
6270             {
6271               jmp_buf_pc = value_as_address (arg_value);
6272               jmp_buf_pc = gdbarch_addr_bits_remove (gdbarch, jmp_buf_pc);
6273             }
6274           else if (!gdbarch_get_longjmp_target_p (gdbarch)
6275                    || !gdbarch_get_longjmp_target (gdbarch,
6276                                                    frame, &jmp_buf_pc))
6277             {
6278               if (debug_infrun)
6279                 fprintf_unfiltered (gdb_stdlog,
6280                                     "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME "
6281                                     "(!gdbarch_get_longjmp_target)\n");
6282               keep_going (ecs);
6283               return;
6284             }
6285
6286           /* Insert a breakpoint at resume address.  */
6287           insert_longjmp_resume_breakpoint (gdbarch, jmp_buf_pc);
6288         }
6289       else
6290         check_exception_resume (ecs, frame);
6291       keep_going (ecs);
6292       return;
6293
6294     case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
6295       {
6296         struct frame_info *init_frame;
6297
6298         /* There are several cases to consider.
6299
6300            1. The initiating frame no longer exists.  In this case we
6301            must stop, because the exception or longjmp has gone too
6302            far.
6303
6304            2. The initiating frame exists, and is the same as the
6305            current frame.  We stop, because the exception or longjmp
6306            has been caught.
6307
6308            3. The initiating frame exists and is different from the
6309            current frame.  This means the exception or longjmp has
6310            been caught beneath the initiating frame, so keep going.
6311
6312            4. longjmp breakpoint has been placed just to protect
6313            against stale dummy frames and user is not interested in
6314            stopping around longjmps.  */
6315
6316         if (debug_infrun)
6317           fprintf_unfiltered (gdb_stdlog,
6318                               "infrun: BPSTAT_WHAT_CLEAR_LONGJMP_RESUME\n");
6319
6320         gdb_assert (ecs->event_thread->control.exception_resume_breakpoint
6321                     != NULL);
6322         delete_exception_resume_breakpoint (ecs->event_thread);
6323
6324         if (what.is_longjmp)
6325           {
6326             check_longjmp_breakpoint_for_call_dummy (ecs->event_thread);
6327
6328             if (!frame_id_p (ecs->event_thread->initiating_frame))
6329               {
6330                 /* Case 4.  */
6331                 keep_going (ecs);
6332                 return;
6333               }
6334           }
6335
6336         init_frame = frame_find_by_id (ecs->event_thread->initiating_frame);
6337
6338         if (init_frame)
6339           {
6340             struct frame_id current_id
6341               = get_frame_id (get_current_frame ());
6342             if (frame_id_eq (current_id,
6343                              ecs->event_thread->initiating_frame))
6344               {
6345                 /* Case 2.  Fall through.  */
6346               }
6347             else
6348               {
6349                 /* Case 3.  */
6350                 keep_going (ecs);
6351                 return;
6352               }
6353           }
6354
6355         /* For Cases 1 and 2, remove the step-resume breakpoint, if it
6356            exists.  */
6357         delete_step_resume_breakpoint (ecs->event_thread);
6358
6359         end_stepping_range (ecs);
6360       }
6361       return;
6362
6363     case BPSTAT_WHAT_SINGLE:
6364       if (debug_infrun)
6365         fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_SINGLE\n");
6366       ecs->event_thread->stepping_over_breakpoint = 1;
6367       /* Still need to check other stuff, at least the case where we
6368          are stepping and step out of the right range.  */
6369       break;
6370
6371     case BPSTAT_WHAT_STEP_RESUME:
6372       if (debug_infrun)
6373         fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STEP_RESUME\n");
6374
6375       delete_step_resume_breakpoint (ecs->event_thread);
6376       if (ecs->event_thread->control.proceed_to_finish
6377           && execution_direction == EXEC_REVERSE)
6378         {
6379           struct thread_info *tp = ecs->event_thread;
6380
6381           /* We are finishing a function in reverse, and just hit the
6382              step-resume breakpoint at the start address of the
6383              function, and we're almost there -- just need to back up
6384              by one more single-step, which should take us back to the
6385              function call.  */
6386           tp->control.step_range_start = tp->control.step_range_end = 1;
6387           keep_going (ecs);
6388           return;
6389         }
6390       fill_in_stop_func (gdbarch, ecs);
6391       if (stop_pc == ecs->stop_func_start
6392           && execution_direction == EXEC_REVERSE)
6393         {
6394           /* We are stepping over a function call in reverse, and just
6395              hit the step-resume breakpoint at the start address of
6396              the function.  Go back to single-stepping, which should
6397              take us back to the function call.  */
6398           ecs->event_thread->stepping_over_breakpoint = 1;
6399           keep_going (ecs);
6400           return;
6401         }
6402       break;
6403
6404     case BPSTAT_WHAT_STOP_NOISY:
6405       if (debug_infrun)
6406         fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_NOISY\n");
6407       stop_print_frame = 1;
6408
6409       /* Assume the thread stopped for a breapoint.  We'll still check
6410          whether a/the breakpoint is there when the thread is next
6411          resumed.  */
6412       ecs->event_thread->stepping_over_breakpoint = 1;
6413
6414       stop_waiting (ecs);
6415       return;
6416
6417     case BPSTAT_WHAT_STOP_SILENT:
6418       if (debug_infrun)
6419         fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_SILENT\n");
6420       stop_print_frame = 0;
6421
6422       /* Assume the thread stopped for a breapoint.  We'll still check
6423          whether a/the breakpoint is there when the thread is next
6424          resumed.  */
6425       ecs->event_thread->stepping_over_breakpoint = 1;
6426       stop_waiting (ecs);
6427       return;
6428
6429     case BPSTAT_WHAT_HP_STEP_RESUME:
6430       if (debug_infrun)
6431         fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_HP_STEP_RESUME\n");
6432
6433       delete_step_resume_breakpoint (ecs->event_thread);
6434       if (ecs->event_thread->step_after_step_resume_breakpoint)
6435         {
6436           /* Back when the step-resume breakpoint was inserted, we
6437              were trying to single-step off a breakpoint.  Go back to
6438              doing that.  */
6439           ecs->event_thread->step_after_step_resume_breakpoint = 0;
6440           ecs->event_thread->stepping_over_breakpoint = 1;
6441           keep_going (ecs);
6442           return;
6443         }
6444       break;
6445
6446     case BPSTAT_WHAT_KEEP_CHECKING:
6447       break;
6448     }
6449
6450   /* If we stepped a permanent breakpoint and we had a high priority
6451      step-resume breakpoint for the address we stepped, but we didn't
6452      hit it, then we must have stepped into the signal handler.  The
6453      step-resume was only necessary to catch the case of _not_
6454      stepping into the handler, so delete it, and fall through to
6455      checking whether the step finished.  */
6456   if (ecs->event_thread->stepped_breakpoint)
6457     {
6458       struct breakpoint *sr_bp
6459         = ecs->event_thread->control.step_resume_breakpoint;
6460
6461       if (sr_bp != NULL
6462           && sr_bp->loc->permanent
6463           && sr_bp->type == bp_hp_step_resume
6464           && sr_bp->loc->address == ecs->event_thread->prev_pc)
6465         {
6466           if (debug_infrun)
6467             fprintf_unfiltered (gdb_stdlog,
6468                                 "infrun: stepped permanent breakpoint, stopped in "
6469                                 "handler\n");
6470           delete_step_resume_breakpoint (ecs->event_thread);
6471           ecs->event_thread->step_after_step_resume_breakpoint = 0;
6472         }
6473     }
6474
6475   /* We come here if we hit a breakpoint but should not stop for it.
6476      Possibly we also were stepping and should stop for that.  So fall
6477      through and test for stepping.  But, if not stepping, do not
6478      stop.  */
6479
6480   /* In all-stop mode, if we're currently stepping but have stopped in
6481      some other thread, we need to switch back to the stepped thread.  */
6482   if (switch_back_to_stepped_thread (ecs))
6483     return;
6484
6485   if (ecs->event_thread->control.step_resume_breakpoint)
6486     {
6487       if (debug_infrun)
6488          fprintf_unfiltered (gdb_stdlog,
6489                              "infrun: step-resume breakpoint is inserted\n");
6490
6491       /* Having a step-resume breakpoint overrides anything
6492          else having to do with stepping commands until
6493          that breakpoint is reached.  */
6494       keep_going (ecs);
6495       return;
6496     }
6497
6498   if (ecs->event_thread->control.step_range_end == 0)
6499     {
6500       if (debug_infrun)
6501          fprintf_unfiltered (gdb_stdlog, "infrun: no stepping, continue\n");
6502       /* Likewise if we aren't even stepping.  */
6503       keep_going (ecs);
6504       return;
6505     }
6506
6507   /* Re-fetch current thread's frame in case the code above caused
6508      the frame cache to be re-initialized, making our FRAME variable
6509      a dangling pointer.  */
6510   frame = get_current_frame ();
6511   gdbarch = get_frame_arch (frame);
6512   fill_in_stop_func (gdbarch, ecs);
6513
6514   /* If stepping through a line, keep going if still within it.
6515
6516      Note that step_range_end is the address of the first instruction
6517      beyond the step range, and NOT the address of the last instruction
6518      within it!
6519
6520      Note also that during reverse execution, we may be stepping
6521      through a function epilogue and therefore must detect when
6522      the current-frame changes in the middle of a line.  */
6523
6524   if (pc_in_thread_step_range (stop_pc, ecs->event_thread)
6525       && (execution_direction != EXEC_REVERSE
6526           || frame_id_eq (get_frame_id (frame),
6527                           ecs->event_thread->control.step_frame_id)))
6528     {
6529       if (debug_infrun)
6530         fprintf_unfiltered
6531           (gdb_stdlog, "infrun: stepping inside range [%s-%s]\n",
6532            paddress (gdbarch, ecs->event_thread->control.step_range_start),
6533            paddress (gdbarch, ecs->event_thread->control.step_range_end));
6534
6535       /* Tentatively re-enable range stepping; `resume' disables it if
6536          necessary (e.g., if we're stepping over a breakpoint or we
6537          have software watchpoints).  */
6538       ecs->event_thread->control.may_range_step = 1;
6539
6540       /* When stepping backward, stop at beginning of line range
6541          (unless it's the function entry point, in which case
6542          keep going back to the call point).  */
6543       if (stop_pc == ecs->event_thread->control.step_range_start
6544           && stop_pc != ecs->stop_func_start
6545           && execution_direction == EXEC_REVERSE)
6546         end_stepping_range (ecs);
6547       else
6548         keep_going (ecs);
6549
6550       return;
6551     }
6552
6553   /* We stepped out of the stepping range.  */
6554
6555   /* If we are stepping at the source level and entered the runtime
6556      loader dynamic symbol resolution code...
6557
6558      EXEC_FORWARD: we keep on single stepping until we exit the run
6559      time loader code and reach the callee's address.
6560
6561      EXEC_REVERSE: we've already executed the callee (backward), and
6562      the runtime loader code is handled just like any other
6563      undebuggable function call.  Now we need only keep stepping
6564      backward through the trampoline code, and that's handled further
6565      down, so there is nothing for us to do here.  */
6566
6567   if (execution_direction != EXEC_REVERSE
6568       && ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
6569       && in_solib_dynsym_resolve_code (stop_pc))
6570     {
6571       CORE_ADDR pc_after_resolver =
6572         gdbarch_skip_solib_resolver (gdbarch, stop_pc);
6573
6574       if (debug_infrun)
6575          fprintf_unfiltered (gdb_stdlog,
6576                              "infrun: stepped into dynsym resolve code\n");
6577
6578       if (pc_after_resolver)
6579         {
6580           /* Set up a step-resume breakpoint at the address
6581              indicated by SKIP_SOLIB_RESOLVER.  */
6582           struct symtab_and_line sr_sal;
6583
6584           init_sal (&sr_sal);
6585           sr_sal.pc = pc_after_resolver;
6586           sr_sal.pspace = get_frame_program_space (frame);
6587
6588           insert_step_resume_breakpoint_at_sal (gdbarch,
6589                                                 sr_sal, null_frame_id);
6590         }
6591
6592       keep_going (ecs);
6593       return;
6594     }
6595
6596   if (ecs->event_thread->control.step_range_end != 1
6597       && (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
6598           || ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
6599       && get_frame_type (frame) == SIGTRAMP_FRAME)
6600     {
6601       if (debug_infrun)
6602          fprintf_unfiltered (gdb_stdlog,
6603                              "infrun: stepped into signal trampoline\n");
6604       /* The inferior, while doing a "step" or "next", has ended up in
6605          a signal trampoline (either by a signal being delivered or by
6606          the signal handler returning).  Just single-step until the
6607          inferior leaves the trampoline (either by calling the handler
6608          or returning).  */
6609       keep_going (ecs);
6610       return;
6611     }
6612
6613   /* If we're in the return path from a shared library trampoline,
6614      we want to proceed through the trampoline when stepping.  */
6615   /* macro/2012-04-25: This needs to come before the subroutine
6616      call check below as on some targets return trampolines look
6617      like subroutine calls (MIPS16 return thunks).  */
6618   if (gdbarch_in_solib_return_trampoline (gdbarch,
6619                                           stop_pc, ecs->stop_func_name)
6620       && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
6621     {
6622       /* Determine where this trampoline returns.  */
6623       CORE_ADDR real_stop_pc;
6624
6625       real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
6626
6627       if (debug_infrun)
6628          fprintf_unfiltered (gdb_stdlog,
6629                              "infrun: stepped into solib return tramp\n");
6630
6631       /* Only proceed through if we know where it's going.  */
6632       if (real_stop_pc)
6633         {
6634           /* And put the step-breakpoint there and go until there.  */
6635           struct symtab_and_line sr_sal;
6636
6637           init_sal (&sr_sal);   /* initialize to zeroes */
6638           sr_sal.pc = real_stop_pc;
6639           sr_sal.section = find_pc_overlay (sr_sal.pc);
6640           sr_sal.pspace = get_frame_program_space (frame);
6641
6642           /* Do not specify what the fp should be when we stop since
6643              on some machines the prologue is where the new fp value
6644              is established.  */
6645           insert_step_resume_breakpoint_at_sal (gdbarch,
6646                                                 sr_sal, null_frame_id);
6647
6648           /* Restart without fiddling with the step ranges or
6649              other state.  */
6650           keep_going (ecs);
6651           return;
6652         }
6653     }
6654
6655   /* Check for subroutine calls.  The check for the current frame
6656      equalling the step ID is not necessary - the check of the
6657      previous frame's ID is sufficient - but it is a common case and
6658      cheaper than checking the previous frame's ID.
6659
6660      NOTE: frame_id_eq will never report two invalid frame IDs as
6661      being equal, so to get into this block, both the current and
6662      previous frame must have valid frame IDs.  */
6663   /* The outer_frame_id check is a heuristic to detect stepping
6664      through startup code.  If we step over an instruction which
6665      sets the stack pointer from an invalid value to a valid value,
6666      we may detect that as a subroutine call from the mythical
6667      "outermost" function.  This could be fixed by marking
6668      outermost frames as !stack_p,code_p,special_p.  Then the
6669      initial outermost frame, before sp was valid, would
6670      have code_addr == &_start.  See the comment in frame_id_eq
6671      for more.  */
6672   if (!frame_id_eq (get_stack_frame_id (frame),
6673                     ecs->event_thread->control.step_stack_frame_id)
6674       && (frame_id_eq (frame_unwind_caller_id (get_current_frame ()),
6675                        ecs->event_thread->control.step_stack_frame_id)
6676           && (!frame_id_eq (ecs->event_thread->control.step_stack_frame_id,
6677                             outer_frame_id)
6678               || (ecs->event_thread->control.step_start_function
6679                   != find_pc_function (stop_pc)))))
6680     {
6681       CORE_ADDR real_stop_pc;
6682
6683       if (debug_infrun)
6684          fprintf_unfiltered (gdb_stdlog, "infrun: stepped into subroutine\n");
6685
6686       if (ecs->event_thread->control.step_over_calls == STEP_OVER_NONE)
6687         {
6688           /* I presume that step_over_calls is only 0 when we're
6689              supposed to be stepping at the assembly language level
6690              ("stepi").  Just stop.  */
6691           /* And this works the same backward as frontward.  MVS */
6692           end_stepping_range (ecs);
6693           return;
6694         }
6695
6696       /* Reverse stepping through solib trampolines.  */
6697
6698       if (execution_direction == EXEC_REVERSE
6699           && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE
6700           && (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
6701               || (ecs->stop_func_start == 0
6702                   && in_solib_dynsym_resolve_code (stop_pc))))
6703         {
6704           /* Any solib trampoline code can be handled in reverse
6705              by simply continuing to single-step.  We have already
6706              executed the solib function (backwards), and a few 
6707              steps will take us back through the trampoline to the
6708              caller.  */
6709           keep_going (ecs);
6710           return;
6711         }
6712
6713       if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
6714         {
6715           /* We're doing a "next".
6716
6717              Normal (forward) execution: set a breakpoint at the
6718              callee's return address (the address at which the caller
6719              will resume).
6720
6721              Reverse (backward) execution.  set the step-resume
6722              breakpoint at the start of the function that we just
6723              stepped into (backwards), and continue to there.  When we
6724              get there, we'll need to single-step back to the caller.  */
6725
6726           if (execution_direction == EXEC_REVERSE)
6727             {
6728               /* If we're already at the start of the function, we've either
6729                  just stepped backward into a single instruction function,
6730                  or stepped back out of a signal handler to the first instruction
6731                  of the function.  Just keep going, which will single-step back
6732                  to the caller.  */
6733               if (ecs->stop_func_start != stop_pc && ecs->stop_func_start != 0)
6734                 {
6735                   struct symtab_and_line sr_sal;
6736
6737                   /* Normal function call return (static or dynamic).  */
6738                   init_sal (&sr_sal);
6739                   sr_sal.pc = ecs->stop_func_start;
6740                   sr_sal.pspace = get_frame_program_space (frame);
6741                   insert_step_resume_breakpoint_at_sal (gdbarch,
6742                                                         sr_sal, null_frame_id);
6743                 }
6744             }
6745           else
6746             insert_step_resume_breakpoint_at_caller (frame);
6747
6748           keep_going (ecs);
6749           return;
6750         }
6751
6752       /* If we are in a function call trampoline (a stub between the
6753          calling routine and the real function), locate the real
6754          function.  That's what tells us (a) whether we want to step
6755          into it at all, and (b) what prologue we want to run to the
6756          end of, if we do step into it.  */
6757       real_stop_pc = skip_language_trampoline (frame, stop_pc);
6758       if (real_stop_pc == 0)
6759         real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
6760       if (real_stop_pc != 0)
6761         ecs->stop_func_start = real_stop_pc;
6762
6763       if (real_stop_pc != 0 && in_solib_dynsym_resolve_code (real_stop_pc))
6764         {
6765           struct symtab_and_line sr_sal;
6766
6767           init_sal (&sr_sal);
6768           sr_sal.pc = ecs->stop_func_start;
6769           sr_sal.pspace = get_frame_program_space (frame);
6770
6771           insert_step_resume_breakpoint_at_sal (gdbarch,
6772                                                 sr_sal, null_frame_id);
6773           keep_going (ecs);
6774           return;
6775         }
6776
6777       /* If we have line number information for the function we are
6778          thinking of stepping into and the function isn't on the skip
6779          list, step into it.
6780
6781          If there are several symtabs at that PC (e.g. with include
6782          files), just want to know whether *any* of them have line
6783          numbers.  find_pc_line handles this.  */
6784       {
6785         struct symtab_and_line tmp_sal;
6786
6787         tmp_sal = find_pc_line (ecs->stop_func_start, 0);
6788         if (tmp_sal.line != 0
6789             && !function_name_is_marked_for_skip (ecs->stop_func_name,
6790                                                   &tmp_sal))
6791           {
6792             if (execution_direction == EXEC_REVERSE)
6793               handle_step_into_function_backward (gdbarch, ecs);
6794             else
6795               handle_step_into_function (gdbarch, ecs);
6796             return;
6797           }
6798       }
6799
6800       /* If we have no line number and the step-stop-if-no-debug is
6801          set, we stop the step so that the user has a chance to switch
6802          in assembly mode.  */
6803       if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
6804           && step_stop_if_no_debug)
6805         {
6806           end_stepping_range (ecs);
6807           return;
6808         }
6809
6810       if (execution_direction == EXEC_REVERSE)
6811         {
6812           /* If we're already at the start of the function, we've either just
6813              stepped backward into a single instruction function without line
6814              number info, or stepped back out of a signal handler to the first
6815              instruction of the function without line number info.  Just keep
6816              going, which will single-step back to the caller.  */
6817           if (ecs->stop_func_start != stop_pc)
6818             {
6819               /* Set a breakpoint at callee's start address.
6820                  From there we can step once and be back in the caller.  */
6821               struct symtab_and_line sr_sal;
6822
6823               init_sal (&sr_sal);
6824               sr_sal.pc = ecs->stop_func_start;
6825               sr_sal.pspace = get_frame_program_space (frame);
6826               insert_step_resume_breakpoint_at_sal (gdbarch,
6827                                                     sr_sal, null_frame_id);
6828             }
6829         }
6830       else
6831         /* Set a breakpoint at callee's return address (the address
6832            at which the caller will resume).  */
6833         insert_step_resume_breakpoint_at_caller (frame);
6834
6835       keep_going (ecs);
6836       return;
6837     }
6838
6839   /* Reverse stepping through solib trampolines.  */
6840
6841   if (execution_direction == EXEC_REVERSE
6842       && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
6843     {
6844       if (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
6845           || (ecs->stop_func_start == 0
6846               && in_solib_dynsym_resolve_code (stop_pc)))
6847         {
6848           /* Any solib trampoline code can be handled in reverse
6849              by simply continuing to single-step.  We have already
6850              executed the solib function (backwards), and a few 
6851              steps will take us back through the trampoline to the
6852              caller.  */
6853           keep_going (ecs);
6854           return;
6855         }
6856       else if (in_solib_dynsym_resolve_code (stop_pc))
6857         {
6858           /* Stepped backward into the solib dynsym resolver.
6859              Set a breakpoint at its start and continue, then
6860              one more step will take us out.  */
6861           struct symtab_and_line sr_sal;
6862
6863           init_sal (&sr_sal);
6864           sr_sal.pc = ecs->stop_func_start;
6865           sr_sal.pspace = get_frame_program_space (frame);
6866           insert_step_resume_breakpoint_at_sal (gdbarch, 
6867                                                 sr_sal, null_frame_id);
6868           keep_going (ecs);
6869           return;
6870         }
6871     }
6872
6873   stop_pc_sal = find_pc_line (stop_pc, 0);
6874
6875   /* NOTE: tausq/2004-05-24: This if block used to be done before all
6876      the trampoline processing logic, however, there are some trampolines 
6877      that have no names, so we should do trampoline handling first.  */
6878   if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
6879       && ecs->stop_func_name == NULL
6880       && stop_pc_sal.line == 0)
6881     {
6882       if (debug_infrun)
6883          fprintf_unfiltered (gdb_stdlog,
6884                              "infrun: stepped into undebuggable function\n");
6885
6886       /* The inferior just stepped into, or returned to, an
6887          undebuggable function (where there is no debugging information
6888          and no line number corresponding to the address where the
6889          inferior stopped).  Since we want to skip this kind of code,
6890          we keep going until the inferior returns from this
6891          function - unless the user has asked us not to (via
6892          set step-mode) or we no longer know how to get back
6893          to the call site.  */
6894       if (step_stop_if_no_debug
6895           || !frame_id_p (frame_unwind_caller_id (frame)))
6896         {
6897           /* If we have no line number and the step-stop-if-no-debug
6898              is set, we stop the step so that the user has a chance to
6899              switch in assembly mode.  */
6900           end_stepping_range (ecs);
6901           return;
6902         }
6903       else
6904         {
6905           /* Set a breakpoint at callee's return address (the address
6906              at which the caller will resume).  */
6907           insert_step_resume_breakpoint_at_caller (frame);
6908           keep_going (ecs);
6909           return;
6910         }
6911     }
6912
6913   if (ecs->event_thread->control.step_range_end == 1)
6914     {
6915       /* It is stepi or nexti.  We always want to stop stepping after
6916          one instruction.  */
6917       if (debug_infrun)
6918          fprintf_unfiltered (gdb_stdlog, "infrun: stepi/nexti\n");
6919       end_stepping_range (ecs);
6920       return;
6921     }
6922
6923   if (stop_pc_sal.line == 0)
6924     {
6925       /* We have no line number information.  That means to stop
6926          stepping (does this always happen right after one instruction,
6927          when we do "s" in a function with no line numbers,
6928          or can this happen as a result of a return or longjmp?).  */
6929       if (debug_infrun)
6930          fprintf_unfiltered (gdb_stdlog, "infrun: no line number info\n");
6931       end_stepping_range (ecs);
6932       return;
6933     }
6934
6935   /* Look for "calls" to inlined functions, part one.  If the inline
6936      frame machinery detected some skipped call sites, we have entered
6937      a new inline function.  */
6938
6939   if (frame_id_eq (get_frame_id (get_current_frame ()),
6940                    ecs->event_thread->control.step_frame_id)
6941       && inline_skipped_frames (ecs->ptid))
6942     {
6943       struct symtab_and_line call_sal;
6944
6945       if (debug_infrun)
6946         fprintf_unfiltered (gdb_stdlog,
6947                             "infrun: stepped into inlined function\n");
6948
6949       find_frame_sal (get_current_frame (), &call_sal);
6950
6951       if (ecs->event_thread->control.step_over_calls != STEP_OVER_ALL)
6952         {
6953           /* For "step", we're going to stop.  But if the call site
6954              for this inlined function is on the same source line as
6955              we were previously stepping, go down into the function
6956              first.  Otherwise stop at the call site.  */
6957
6958           if (call_sal.line == ecs->event_thread->current_line
6959               && call_sal.symtab == ecs->event_thread->current_symtab)
6960             step_into_inline_frame (ecs->ptid);
6961
6962           end_stepping_range (ecs);
6963           return;
6964         }
6965       else
6966         {
6967           /* For "next", we should stop at the call site if it is on a
6968              different source line.  Otherwise continue through the
6969              inlined function.  */
6970           if (call_sal.line == ecs->event_thread->current_line
6971               && call_sal.symtab == ecs->event_thread->current_symtab)
6972             keep_going (ecs);
6973           else
6974             end_stepping_range (ecs);
6975           return;
6976         }
6977     }
6978
6979   /* Look for "calls" to inlined functions, part two.  If we are still
6980      in the same real function we were stepping through, but we have
6981      to go further up to find the exact frame ID, we are stepping
6982      through a more inlined call beyond its call site.  */
6983
6984   if (get_frame_type (get_current_frame ()) == INLINE_FRAME
6985       && !frame_id_eq (get_frame_id (get_current_frame ()),
6986                        ecs->event_thread->control.step_frame_id)
6987       && stepped_in_from (get_current_frame (),
6988                           ecs->event_thread->control.step_frame_id))
6989     {
6990       if (debug_infrun)
6991         fprintf_unfiltered (gdb_stdlog,
6992                             "infrun: stepping through inlined function\n");
6993
6994       if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
6995         keep_going (ecs);
6996       else
6997         end_stepping_range (ecs);
6998       return;
6999     }
7000
7001   if ((stop_pc == stop_pc_sal.pc)
7002       && (ecs->event_thread->current_line != stop_pc_sal.line
7003           || ecs->event_thread->current_symtab != stop_pc_sal.symtab))
7004     {
7005       /* We are at the start of a different line.  So stop.  Note that
7006          we don't stop if we step into the middle of a different line.
7007          That is said to make things like for (;;) statements work
7008          better.  */
7009       if (debug_infrun)
7010          fprintf_unfiltered (gdb_stdlog,
7011                              "infrun: stepped to a different line\n");
7012       end_stepping_range (ecs);
7013       return;
7014     }
7015
7016   /* We aren't done stepping.
7017
7018      Optimize by setting the stepping range to the line.
7019      (We might not be in the original line, but if we entered a
7020      new line in mid-statement, we continue stepping.  This makes
7021      things like for(;;) statements work better.)  */
7022
7023   ecs->event_thread->control.step_range_start = stop_pc_sal.pc;
7024   ecs->event_thread->control.step_range_end = stop_pc_sal.end;
7025   ecs->event_thread->control.may_range_step = 1;
7026   set_step_info (frame, stop_pc_sal);
7027
7028   if (debug_infrun)
7029      fprintf_unfiltered (gdb_stdlog, "infrun: keep going\n");
7030   keep_going (ecs);
7031 }
7032
7033 /* In all-stop mode, if we're currently stepping but have stopped in
7034    some other thread, we may need to switch back to the stepped
7035    thread.  Returns true we set the inferior running, false if we left
7036    it stopped (and the event needs further processing).  */
7037
7038 static int
7039 switch_back_to_stepped_thread (struct execution_control_state *ecs)
7040 {
7041   if (!target_is_non_stop_p ())
7042     {
7043       struct thread_info *tp;
7044       struct thread_info *stepping_thread;
7045
7046       /* If any thread is blocked on some internal breakpoint, and we
7047          simply need to step over that breakpoint to get it going
7048          again, do that first.  */
7049
7050       /* However, if we see an event for the stepping thread, then we
7051          know all other threads have been moved past their breakpoints
7052          already.  Let the caller check whether the step is finished,
7053          etc., before deciding to move it past a breakpoint.  */
7054       if (ecs->event_thread->control.step_range_end != 0)
7055         return 0;
7056
7057       /* Check if the current thread is blocked on an incomplete
7058          step-over, interrupted by a random signal.  */
7059       if (ecs->event_thread->control.trap_expected
7060           && ecs->event_thread->suspend.stop_signal != GDB_SIGNAL_TRAP)
7061         {
7062           if (debug_infrun)
7063             {
7064               fprintf_unfiltered (gdb_stdlog,
7065                                   "infrun: need to finish step-over of [%s]\n",
7066                                   target_pid_to_str (ecs->event_thread->ptid));
7067             }
7068           keep_going (ecs);
7069           return 1;
7070         }
7071
7072       /* Check if the current thread is blocked by a single-step
7073          breakpoint of another thread.  */
7074       if (ecs->hit_singlestep_breakpoint)
7075        {
7076          if (debug_infrun)
7077            {
7078              fprintf_unfiltered (gdb_stdlog,
7079                                  "infrun: need to step [%s] over single-step "
7080                                  "breakpoint\n",
7081                                  target_pid_to_str (ecs->ptid));
7082            }
7083          keep_going (ecs);
7084          return 1;
7085        }
7086
7087       /* If this thread needs yet another step-over (e.g., stepping
7088          through a delay slot), do it first before moving on to
7089          another thread.  */
7090       if (thread_still_needs_step_over (ecs->event_thread))
7091         {
7092           if (debug_infrun)
7093             {
7094               fprintf_unfiltered (gdb_stdlog,
7095                                   "infrun: thread [%s] still needs step-over\n",
7096                                   target_pid_to_str (ecs->event_thread->ptid));
7097             }
7098           keep_going (ecs);
7099           return 1;
7100         }
7101
7102       /* If scheduler locking applies even if not stepping, there's no
7103          need to walk over threads.  Above we've checked whether the
7104          current thread is stepping.  If some other thread not the
7105          event thread is stepping, then it must be that scheduler
7106          locking is not in effect.  */
7107       if (schedlock_applies (ecs->event_thread))
7108         return 0;
7109
7110       /* Otherwise, we no longer expect a trap in the current thread.
7111          Clear the trap_expected flag before switching back -- this is
7112          what keep_going does as well, if we call it.  */
7113       ecs->event_thread->control.trap_expected = 0;
7114
7115       /* Likewise, clear the signal if it should not be passed.  */
7116       if (!signal_program[ecs->event_thread->suspend.stop_signal])
7117         ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
7118
7119       /* Do all pending step-overs before actually proceeding with
7120          step/next/etc.  */
7121       if (start_step_over ())
7122         {
7123           prepare_to_wait (ecs);
7124           return 1;
7125         }
7126
7127       /* Look for the stepping/nexting thread.  */
7128       stepping_thread = NULL;
7129
7130       ALL_NON_EXITED_THREADS (tp)
7131         {
7132           /* Ignore threads of processes the caller is not
7133              resuming.  */
7134           if (!sched_multi
7135               && ptid_get_pid (tp->ptid) != ptid_get_pid (ecs->ptid))
7136             continue;
7137
7138           /* When stepping over a breakpoint, we lock all threads
7139              except the one that needs to move past the breakpoint.
7140              If a non-event thread has this set, the "incomplete
7141              step-over" check above should have caught it earlier.  */
7142           if (tp->control.trap_expected)
7143             {
7144               internal_error (__FILE__, __LINE__,
7145                               "[%s] has inconsistent state: "
7146                               "trap_expected=%d\n",
7147                               target_pid_to_str (tp->ptid),
7148                               tp->control.trap_expected);
7149             }
7150
7151           /* Did we find the stepping thread?  */
7152           if (tp->control.step_range_end)
7153             {
7154               /* Yep.  There should only one though.  */
7155               gdb_assert (stepping_thread == NULL);
7156
7157               /* The event thread is handled at the top, before we
7158                  enter this loop.  */
7159               gdb_assert (tp != ecs->event_thread);
7160
7161               /* If some thread other than the event thread is
7162                  stepping, then scheduler locking can't be in effect,
7163                  otherwise we wouldn't have resumed the current event
7164                  thread in the first place.  */
7165               gdb_assert (!schedlock_applies (tp));
7166
7167               stepping_thread = tp;
7168             }
7169         }
7170
7171       if (stepping_thread != NULL)
7172         {
7173           if (debug_infrun)
7174             fprintf_unfiltered (gdb_stdlog,
7175                                 "infrun: switching back to stepped thread\n");
7176
7177           if (keep_going_stepped_thread (stepping_thread))
7178             {
7179               prepare_to_wait (ecs);
7180               return 1;
7181             }
7182         }
7183     }
7184
7185   return 0;
7186 }
7187
7188 /* Set a previously stepped thread back to stepping.  Returns true on
7189    success, false if the resume is not possible (e.g., the thread
7190    vanished).  */
7191
7192 static int
7193 keep_going_stepped_thread (struct thread_info *tp)
7194 {
7195   struct frame_info *frame;
7196   struct execution_control_state ecss;
7197   struct execution_control_state *ecs = &ecss;
7198
7199   /* If the stepping thread exited, then don't try to switch back and
7200      resume it, which could fail in several different ways depending
7201      on the target.  Instead, just keep going.
7202
7203      We can find a stepping dead thread in the thread list in two
7204      cases:
7205
7206      - The target supports thread exit events, and when the target
7207        tries to delete the thread from the thread list, inferior_ptid
7208        pointed at the exiting thread.  In such case, calling
7209        delete_thread does not really remove the thread from the list;
7210        instead, the thread is left listed, with 'exited' state.
7211
7212      - The target's debug interface does not support thread exit
7213        events, and so we have no idea whatsoever if the previously
7214        stepping thread is still alive.  For that reason, we need to
7215        synchronously query the target now.  */
7216
7217   if (is_exited (tp->ptid)
7218       || !target_thread_alive (tp->ptid))
7219     {
7220       if (debug_infrun)
7221         fprintf_unfiltered (gdb_stdlog,
7222                             "infrun: not resuming previously  "
7223                             "stepped thread, it has vanished\n");
7224
7225       delete_thread (tp->ptid);
7226       return 0;
7227     }
7228
7229   if (debug_infrun)
7230     fprintf_unfiltered (gdb_stdlog,
7231                         "infrun: resuming previously stepped thread\n");
7232
7233   reset_ecs (ecs, tp);
7234   switch_to_thread (tp->ptid);
7235
7236   stop_pc = regcache_read_pc (get_thread_regcache (tp->ptid));
7237   frame = get_current_frame ();
7238
7239   /* If the PC of the thread we were trying to single-step has
7240      changed, then that thread has trapped or been signaled, but the
7241      event has not been reported to GDB yet.  Re-poll the target
7242      looking for this particular thread's event (i.e. temporarily
7243      enable schedlock) by:
7244
7245      - setting a break at the current PC
7246      - resuming that particular thread, only (by setting trap
7247      expected)
7248
7249      This prevents us continuously moving the single-step breakpoint
7250      forward, one instruction at a time, overstepping.  */
7251
7252   if (stop_pc != tp->prev_pc)
7253     {
7254       ptid_t resume_ptid;
7255
7256       if (debug_infrun)
7257         fprintf_unfiltered (gdb_stdlog,
7258                             "infrun: expected thread advanced also (%s -> %s)\n",
7259                             paddress (target_gdbarch (), tp->prev_pc),
7260                             paddress (target_gdbarch (), stop_pc));
7261
7262       /* Clear the info of the previous step-over, as it's no longer
7263          valid (if the thread was trying to step over a breakpoint, it
7264          has already succeeded).  It's what keep_going would do too,
7265          if we called it.  Do this before trying to insert the sss
7266          breakpoint, otherwise if we were previously trying to step
7267          over this exact address in another thread, the breakpoint is
7268          skipped.  */
7269       clear_step_over_info ();
7270       tp->control.trap_expected = 0;
7271
7272       insert_single_step_breakpoint (get_frame_arch (frame),
7273                                      get_frame_address_space (frame),
7274                                      stop_pc);
7275
7276       tp->resumed = 1;
7277       resume_ptid = internal_resume_ptid (tp->control.stepping_command);
7278       do_target_resume (resume_ptid, 0, GDB_SIGNAL_0);
7279     }
7280   else
7281     {
7282       if (debug_infrun)
7283         fprintf_unfiltered (gdb_stdlog,
7284                             "infrun: expected thread still hasn't advanced\n");
7285
7286       keep_going_pass_signal (ecs);
7287     }
7288   return 1;
7289 }
7290
7291 /* Is thread TP in the middle of (software or hardware)
7292    single-stepping?  (Note the result of this function must never be
7293    passed directly as target_resume's STEP parameter.)  */
7294
7295 static int
7296 currently_stepping (struct thread_info *tp)
7297 {
7298   return ((tp->control.step_range_end
7299            && tp->control.step_resume_breakpoint == NULL)
7300           || tp->control.trap_expected
7301           || tp->stepped_breakpoint
7302           || bpstat_should_step ());
7303 }
7304
7305 /* Inferior has stepped into a subroutine call with source code that
7306    we should not step over.  Do step to the first line of code in
7307    it.  */
7308
7309 static void
7310 handle_step_into_function (struct gdbarch *gdbarch,
7311                            struct execution_control_state *ecs)
7312 {
7313   struct compunit_symtab *cust;
7314   struct symtab_and_line stop_func_sal, sr_sal;
7315
7316   fill_in_stop_func (gdbarch, ecs);
7317
7318   cust = find_pc_compunit_symtab (stop_pc);
7319   if (cust != NULL && compunit_language (cust) != language_asm)
7320     ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
7321                                                   ecs->stop_func_start);
7322
7323   stop_func_sal = find_pc_line (ecs->stop_func_start, 0);
7324   /* Use the step_resume_break to step until the end of the prologue,
7325      even if that involves jumps (as it seems to on the vax under
7326      4.2).  */
7327   /* If the prologue ends in the middle of a source line, continue to
7328      the end of that source line (if it is still within the function).
7329      Otherwise, just go to end of prologue.  */
7330   if (stop_func_sal.end
7331       && stop_func_sal.pc != ecs->stop_func_start
7332       && stop_func_sal.end < ecs->stop_func_end)
7333     ecs->stop_func_start = stop_func_sal.end;
7334
7335   /* Architectures which require breakpoint adjustment might not be able
7336      to place a breakpoint at the computed address.  If so, the test
7337      ``ecs->stop_func_start == stop_pc'' will never succeed.  Adjust
7338      ecs->stop_func_start to an address at which a breakpoint may be
7339      legitimately placed.
7340
7341      Note:  kevinb/2004-01-19:  On FR-V, if this adjustment is not
7342      made, GDB will enter an infinite loop when stepping through
7343      optimized code consisting of VLIW instructions which contain
7344      subinstructions corresponding to different source lines.  On
7345      FR-V, it's not permitted to place a breakpoint on any but the
7346      first subinstruction of a VLIW instruction.  When a breakpoint is
7347      set, GDB will adjust the breakpoint address to the beginning of
7348      the VLIW instruction.  Thus, we need to make the corresponding
7349      adjustment here when computing the stop address.  */
7350
7351   if (gdbarch_adjust_breakpoint_address_p (gdbarch))
7352     {
7353       ecs->stop_func_start
7354         = gdbarch_adjust_breakpoint_address (gdbarch,
7355                                              ecs->stop_func_start);
7356     }
7357
7358   if (ecs->stop_func_start == stop_pc)
7359     {
7360       /* We are already there: stop now.  */
7361       end_stepping_range (ecs);
7362       return;
7363     }
7364   else
7365     {
7366       /* Put the step-breakpoint there and go until there.  */
7367       init_sal (&sr_sal);       /* initialize to zeroes */
7368       sr_sal.pc = ecs->stop_func_start;
7369       sr_sal.section = find_pc_overlay (ecs->stop_func_start);
7370       sr_sal.pspace = get_frame_program_space (get_current_frame ());
7371
7372       /* Do not specify what the fp should be when we stop since on
7373          some machines the prologue is where the new fp value is
7374          established.  */
7375       insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal, null_frame_id);
7376
7377       /* And make sure stepping stops right away then.  */
7378       ecs->event_thread->control.step_range_end
7379         = ecs->event_thread->control.step_range_start;
7380     }
7381   keep_going (ecs);
7382 }
7383
7384 /* Inferior has stepped backward into a subroutine call with source
7385    code that we should not step over.  Do step to the beginning of the
7386    last line of code in it.  */
7387
7388 static void
7389 handle_step_into_function_backward (struct gdbarch *gdbarch,
7390                                     struct execution_control_state *ecs)
7391 {
7392   struct compunit_symtab *cust;
7393   struct symtab_and_line stop_func_sal;
7394
7395   fill_in_stop_func (gdbarch, ecs);
7396
7397   cust = find_pc_compunit_symtab (stop_pc);
7398   if (cust != NULL && compunit_language (cust) != language_asm)
7399     ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
7400                                                   ecs->stop_func_start);
7401
7402   stop_func_sal = find_pc_line (stop_pc, 0);
7403
7404   /* OK, we're just going to keep stepping here.  */
7405   if (stop_func_sal.pc == stop_pc)
7406     {
7407       /* We're there already.  Just stop stepping now.  */
7408       end_stepping_range (ecs);
7409     }
7410   else
7411     {
7412       /* Else just reset the step range and keep going.
7413          No step-resume breakpoint, they don't work for
7414          epilogues, which can have multiple entry paths.  */
7415       ecs->event_thread->control.step_range_start = stop_func_sal.pc;
7416       ecs->event_thread->control.step_range_end = stop_func_sal.end;
7417       keep_going (ecs);
7418     }
7419   return;
7420 }
7421
7422 /* Insert a "step-resume breakpoint" at SR_SAL with frame ID SR_ID.
7423    This is used to both functions and to skip over code.  */
7424
7425 static void
7426 insert_step_resume_breakpoint_at_sal_1 (struct gdbarch *gdbarch,
7427                                         struct symtab_and_line sr_sal,
7428                                         struct frame_id sr_id,
7429                                         enum bptype sr_type)
7430 {
7431   /* There should never be more than one step-resume or longjmp-resume
7432      breakpoint per thread, so we should never be setting a new
7433      step_resume_breakpoint when one is already active.  */
7434   gdb_assert (inferior_thread ()->control.step_resume_breakpoint == NULL);
7435   gdb_assert (sr_type == bp_step_resume || sr_type == bp_hp_step_resume);
7436
7437   if (debug_infrun)
7438     fprintf_unfiltered (gdb_stdlog,
7439                         "infrun: inserting step-resume breakpoint at %s\n",
7440                         paddress (gdbarch, sr_sal.pc));
7441
7442   inferior_thread ()->control.step_resume_breakpoint
7443     = set_momentary_breakpoint (gdbarch, sr_sal, sr_id, sr_type);
7444 }
7445
7446 void
7447 insert_step_resume_breakpoint_at_sal (struct gdbarch *gdbarch,
7448                                       struct symtab_and_line sr_sal,
7449                                       struct frame_id sr_id)
7450 {
7451   insert_step_resume_breakpoint_at_sal_1 (gdbarch,
7452                                           sr_sal, sr_id,
7453                                           bp_step_resume);
7454 }
7455
7456 /* Insert a "high-priority step-resume breakpoint" at RETURN_FRAME.pc.
7457    This is used to skip a potential signal handler.
7458
7459    This is called with the interrupted function's frame.  The signal
7460    handler, when it returns, will resume the interrupted function at
7461    RETURN_FRAME.pc.  */
7462
7463 static void
7464 insert_hp_step_resume_breakpoint_at_frame (struct frame_info *return_frame)
7465 {
7466   struct symtab_and_line sr_sal;
7467   struct gdbarch *gdbarch;
7468
7469   gdb_assert (return_frame != NULL);
7470   init_sal (&sr_sal);           /* initialize to zeros */
7471
7472   gdbarch = get_frame_arch (return_frame);
7473   sr_sal.pc = gdbarch_addr_bits_remove (gdbarch, get_frame_pc (return_frame));
7474   sr_sal.section = find_pc_overlay (sr_sal.pc);
7475   sr_sal.pspace = get_frame_program_space (return_frame);
7476
7477   insert_step_resume_breakpoint_at_sal_1 (gdbarch, sr_sal,
7478                                           get_stack_frame_id (return_frame),
7479                                           bp_hp_step_resume);
7480 }
7481
7482 /* Insert a "step-resume breakpoint" at the previous frame's PC.  This
7483    is used to skip a function after stepping into it (for "next" or if
7484    the called function has no debugging information).
7485
7486    The current function has almost always been reached by single
7487    stepping a call or return instruction.  NEXT_FRAME belongs to the
7488    current function, and the breakpoint will be set at the caller's
7489    resume address.
7490
7491    This is a separate function rather than reusing
7492    insert_hp_step_resume_breakpoint_at_frame in order to avoid
7493    get_prev_frame, which may stop prematurely (see the implementation
7494    of frame_unwind_caller_id for an example).  */
7495
7496 static void
7497 insert_step_resume_breakpoint_at_caller (struct frame_info *next_frame)
7498 {
7499   struct symtab_and_line sr_sal;
7500   struct gdbarch *gdbarch;
7501
7502   /* We shouldn't have gotten here if we don't know where the call site
7503      is.  */
7504   gdb_assert (frame_id_p (frame_unwind_caller_id (next_frame)));
7505
7506   init_sal (&sr_sal);           /* initialize to zeros */
7507
7508   gdbarch = frame_unwind_caller_arch (next_frame);
7509   sr_sal.pc = gdbarch_addr_bits_remove (gdbarch,
7510                                         frame_unwind_caller_pc (next_frame));
7511   sr_sal.section = find_pc_overlay (sr_sal.pc);
7512   sr_sal.pspace = frame_unwind_program_space (next_frame);
7513
7514   insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal,
7515                                         frame_unwind_caller_id (next_frame));
7516 }
7517
7518 /* Insert a "longjmp-resume" breakpoint at PC.  This is used to set a
7519    new breakpoint at the target of a jmp_buf.  The handling of
7520    longjmp-resume uses the same mechanisms used for handling
7521    "step-resume" breakpoints.  */
7522
7523 static void
7524 insert_longjmp_resume_breakpoint (struct gdbarch *gdbarch, CORE_ADDR pc)
7525 {
7526   /* There should never be more than one longjmp-resume breakpoint per
7527      thread, so we should never be setting a new
7528      longjmp_resume_breakpoint when one is already active.  */
7529   gdb_assert (inferior_thread ()->control.exception_resume_breakpoint == NULL);
7530
7531   if (debug_infrun)
7532     fprintf_unfiltered (gdb_stdlog,
7533                         "infrun: inserting longjmp-resume breakpoint at %s\n",
7534                         paddress (gdbarch, pc));
7535
7536   inferior_thread ()->control.exception_resume_breakpoint =
7537     set_momentary_breakpoint_at_pc (gdbarch, pc, bp_longjmp_resume);
7538 }
7539
7540 /* Insert an exception resume breakpoint.  TP is the thread throwing
7541    the exception.  The block B is the block of the unwinder debug hook
7542    function.  FRAME is the frame corresponding to the call to this
7543    function.  SYM is the symbol of the function argument holding the
7544    target PC of the exception.  */
7545
7546 static void
7547 insert_exception_resume_breakpoint (struct thread_info *tp,
7548                                     const struct block *b,
7549                                     struct frame_info *frame,
7550                                     struct symbol *sym)
7551 {
7552   TRY
7553     {
7554       struct block_symbol vsym;
7555       struct value *value;
7556       CORE_ADDR handler;
7557       struct breakpoint *bp;
7558
7559       vsym = lookup_symbol (SYMBOL_LINKAGE_NAME (sym), b, VAR_DOMAIN, NULL);
7560       value = read_var_value (vsym.symbol, vsym.block, frame);
7561       /* If the value was optimized out, revert to the old behavior.  */
7562       if (! value_optimized_out (value))
7563         {
7564           handler = value_as_address (value);
7565
7566           if (debug_infrun)
7567             fprintf_unfiltered (gdb_stdlog,
7568                                 "infrun: exception resume at %lx\n",
7569                                 (unsigned long) handler);
7570
7571           bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
7572                                                handler, bp_exception_resume);
7573
7574           /* set_momentary_breakpoint_at_pc invalidates FRAME.  */
7575           frame = NULL;
7576
7577           bp->thread = tp->global_num;
7578           inferior_thread ()->control.exception_resume_breakpoint = bp;
7579         }
7580     }
7581   CATCH (e, RETURN_MASK_ERROR)
7582     {
7583       /* We want to ignore errors here.  */
7584     }
7585   END_CATCH
7586 }
7587
7588 /* A helper for check_exception_resume that sets an
7589    exception-breakpoint based on a SystemTap probe.  */
7590
7591 static void
7592 insert_exception_resume_from_probe (struct thread_info *tp,
7593                                     const struct bound_probe *probe,
7594                                     struct frame_info *frame)
7595 {
7596   struct value *arg_value;
7597   CORE_ADDR handler;
7598   struct breakpoint *bp;
7599
7600   arg_value = probe_safe_evaluate_at_pc (frame, 1);
7601   if (!arg_value)
7602     return;
7603
7604   handler = value_as_address (arg_value);
7605
7606   if (debug_infrun)
7607     fprintf_unfiltered (gdb_stdlog,
7608                         "infrun: exception resume at %s\n",
7609                         paddress (get_objfile_arch (probe->objfile),
7610                                   handler));
7611
7612   bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
7613                                        handler, bp_exception_resume);
7614   bp->thread = tp->global_num;
7615   inferior_thread ()->control.exception_resume_breakpoint = bp;
7616 }
7617
7618 /* This is called when an exception has been intercepted.  Check to
7619    see whether the exception's destination is of interest, and if so,
7620    set an exception resume breakpoint there.  */
7621
7622 static void
7623 check_exception_resume (struct execution_control_state *ecs,
7624                         struct frame_info *frame)
7625 {
7626   struct bound_probe probe;
7627   struct symbol *func;
7628
7629   /* First see if this exception unwinding breakpoint was set via a
7630      SystemTap probe point.  If so, the probe has two arguments: the
7631      CFA and the HANDLER.  We ignore the CFA, extract the handler, and
7632      set a breakpoint there.  */
7633   probe = find_probe_by_pc (get_frame_pc (frame));
7634   if (probe.probe)
7635     {
7636       insert_exception_resume_from_probe (ecs->event_thread, &probe, frame);
7637       return;
7638     }
7639
7640   func = get_frame_function (frame);
7641   if (!func)
7642     return;
7643
7644   TRY
7645     {
7646       const struct block *b;
7647       struct block_iterator iter;
7648       struct symbol *sym;
7649       int argno = 0;
7650
7651       /* The exception breakpoint is a thread-specific breakpoint on
7652          the unwinder's debug hook, declared as:
7653          
7654          void _Unwind_DebugHook (void *cfa, void *handler);
7655          
7656          The CFA argument indicates the frame to which control is
7657          about to be transferred.  HANDLER is the destination PC.
7658          
7659          We ignore the CFA and set a temporary breakpoint at HANDLER.
7660          This is not extremely efficient but it avoids issues in gdb
7661          with computing the DWARF CFA, and it also works even in weird
7662          cases such as throwing an exception from inside a signal
7663          handler.  */
7664
7665       b = SYMBOL_BLOCK_VALUE (func);
7666       ALL_BLOCK_SYMBOLS (b, iter, sym)
7667         {
7668           if (!SYMBOL_IS_ARGUMENT (sym))
7669             continue;
7670
7671           if (argno == 0)
7672             ++argno;
7673           else
7674             {
7675               insert_exception_resume_breakpoint (ecs->event_thread,
7676                                                   b, frame, sym);
7677               break;
7678             }
7679         }
7680     }
7681   CATCH (e, RETURN_MASK_ERROR)
7682     {
7683     }
7684   END_CATCH
7685 }
7686
7687 static void
7688 stop_waiting (struct execution_control_state *ecs)
7689 {
7690   if (debug_infrun)
7691     fprintf_unfiltered (gdb_stdlog, "infrun: stop_waiting\n");
7692
7693   /* Let callers know we don't want to wait for the inferior anymore.  */
7694   ecs->wait_some_more = 0;
7695
7696   /* If all-stop, but the target is always in non-stop mode, stop all
7697      threads now that we're presenting the stop to the user.  */
7698   if (!non_stop && target_is_non_stop_p ())
7699     stop_all_threads ();
7700 }
7701
7702 /* Like keep_going, but passes the signal to the inferior, even if the
7703    signal is set to nopass.  */
7704
7705 static void
7706 keep_going_pass_signal (struct execution_control_state *ecs)
7707 {
7708   /* Make sure normal_stop is called if we get a QUIT handled before
7709      reaching resume.  */
7710   struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
7711
7712   gdb_assert (ptid_equal (ecs->event_thread->ptid, inferior_ptid));
7713   gdb_assert (!ecs->event_thread->resumed);
7714
7715   /* Save the pc before execution, to compare with pc after stop.  */
7716   ecs->event_thread->prev_pc
7717     = regcache_read_pc (get_thread_regcache (ecs->ptid));
7718
7719   if (ecs->event_thread->control.trap_expected)
7720     {
7721       struct thread_info *tp = ecs->event_thread;
7722
7723       if (debug_infrun)
7724         fprintf_unfiltered (gdb_stdlog,
7725                             "infrun: %s has trap_expected set, "
7726                             "resuming to collect trap\n",
7727                             target_pid_to_str (tp->ptid));
7728
7729       /* We haven't yet gotten our trap, and either: intercepted a
7730          non-signal event (e.g., a fork); or took a signal which we
7731          are supposed to pass through to the inferior.  Simply
7732          continue.  */
7733       discard_cleanups (old_cleanups);
7734       resume (ecs->event_thread->suspend.stop_signal);
7735     }
7736   else if (step_over_info_valid_p ())
7737     {
7738       /* Another thread is stepping over a breakpoint in-line.  If
7739          this thread needs a step-over too, queue the request.  In
7740          either case, this resume must be deferred for later.  */
7741       struct thread_info *tp = ecs->event_thread;
7742
7743       if (ecs->hit_singlestep_breakpoint
7744           || thread_still_needs_step_over (tp))
7745         {
7746           if (debug_infrun)
7747             fprintf_unfiltered (gdb_stdlog,
7748                                 "infrun: step-over already in progress: "
7749                                 "step-over for %s deferred\n",
7750                                 target_pid_to_str (tp->ptid));
7751           thread_step_over_chain_enqueue (tp);
7752         }
7753       else
7754         {
7755           if (debug_infrun)
7756             fprintf_unfiltered (gdb_stdlog,
7757                                 "infrun: step-over in progress: "
7758                                 "resume of %s deferred\n",
7759                                 target_pid_to_str (tp->ptid));
7760         }
7761
7762       discard_cleanups (old_cleanups);
7763     }
7764   else
7765     {
7766       struct regcache *regcache = get_current_regcache ();
7767       int remove_bp;
7768       int remove_wps;
7769       step_over_what step_what;
7770
7771       /* Either the trap was not expected, but we are continuing
7772          anyway (if we got a signal, the user asked it be passed to
7773          the child)
7774          -- or --
7775          We got our expected trap, but decided we should resume from
7776          it.
7777
7778          We're going to run this baby now!
7779
7780          Note that insert_breakpoints won't try to re-insert
7781          already inserted breakpoints.  Therefore, we don't
7782          care if breakpoints were already inserted, or not.  */
7783
7784       /* If we need to step over a breakpoint, and we're not using
7785          displaced stepping to do so, insert all breakpoints
7786          (watchpoints, etc.) but the one we're stepping over, step one
7787          instruction, and then re-insert the breakpoint when that step
7788          is finished.  */
7789
7790       step_what = thread_still_needs_step_over (ecs->event_thread);
7791
7792       remove_bp = (ecs->hit_singlestep_breakpoint
7793                    || (step_what & STEP_OVER_BREAKPOINT));
7794       remove_wps = (step_what & STEP_OVER_WATCHPOINT);
7795
7796       /* We can't use displaced stepping if we need to step past a
7797          watchpoint.  The instruction copied to the scratch pad would
7798          still trigger the watchpoint.  */
7799       if (remove_bp
7800           && (remove_wps || !use_displaced_stepping (ecs->event_thread)))
7801         {
7802           set_step_over_info (get_regcache_aspace (regcache),
7803                               regcache_read_pc (regcache), remove_wps,
7804                               ecs->event_thread->global_num);
7805         }
7806       else if (remove_wps)
7807         set_step_over_info (NULL, 0, remove_wps, -1);
7808
7809       /* If we now need to do an in-line step-over, we need to stop
7810          all other threads.  Note this must be done before
7811          insert_breakpoints below, because that removes the breakpoint
7812          we're about to step over, otherwise other threads could miss
7813          it.  */
7814       if (step_over_info_valid_p () && target_is_non_stop_p ())
7815         stop_all_threads ();
7816
7817       /* Stop stepping if inserting breakpoints fails.  */
7818       TRY
7819         {
7820           insert_breakpoints ();
7821         }
7822       CATCH (e, RETURN_MASK_ERROR)
7823         {
7824           exception_print (gdb_stderr, e);
7825           stop_waiting (ecs);
7826           discard_cleanups (old_cleanups);
7827           return;
7828         }
7829       END_CATCH
7830
7831       ecs->event_thread->control.trap_expected = (remove_bp || remove_wps);
7832
7833       discard_cleanups (old_cleanups);
7834       resume (ecs->event_thread->suspend.stop_signal);
7835     }
7836
7837   prepare_to_wait (ecs);
7838 }
7839
7840 /* Called when we should continue running the inferior, because the
7841    current event doesn't cause a user visible stop.  This does the
7842    resuming part; waiting for the next event is done elsewhere.  */
7843
7844 static void
7845 keep_going (struct execution_control_state *ecs)
7846 {
7847   if (ecs->event_thread->control.trap_expected
7848       && ecs->event_thread->suspend.stop_signal == GDB_SIGNAL_TRAP)
7849     ecs->event_thread->control.trap_expected = 0;
7850
7851   if (!signal_program[ecs->event_thread->suspend.stop_signal])
7852     ecs->event_thread->suspend.stop_signal = GDB_SIGNAL_0;
7853   keep_going_pass_signal (ecs);
7854 }
7855
7856 /* This function normally comes after a resume, before
7857    handle_inferior_event exits.  It takes care of any last bits of
7858    housekeeping, and sets the all-important wait_some_more flag.  */
7859
7860 static void
7861 prepare_to_wait (struct execution_control_state *ecs)
7862 {
7863   if (debug_infrun)
7864     fprintf_unfiltered (gdb_stdlog, "infrun: prepare_to_wait\n");
7865
7866   ecs->wait_some_more = 1;
7867
7868   if (!target_is_async_p ())
7869     mark_infrun_async_event_handler ();
7870 }
7871
7872 /* We are done with the step range of a step/next/si/ni command.
7873    Called once for each n of a "step n" operation.  */
7874
7875 static void
7876 end_stepping_range (struct execution_control_state *ecs)
7877 {
7878   ecs->event_thread->control.stop_step = 1;
7879   stop_waiting (ecs);
7880 }
7881
7882 /* Several print_*_reason functions to print why the inferior has stopped.
7883    We always print something when the inferior exits, or receives a signal.
7884    The rest of the cases are dealt with later on in normal_stop and
7885    print_it_typical.  Ideally there should be a call to one of these
7886    print_*_reason functions functions from handle_inferior_event each time
7887    stop_waiting is called.
7888
7889    Note that we don't call these directly, instead we delegate that to
7890    the interpreters, through observers.  Interpreters then call these
7891    with whatever uiout is right.  */
7892
7893 void
7894 print_end_stepping_range_reason (struct ui_out *uiout)
7895 {
7896   /* For CLI-like interpreters, print nothing.  */
7897
7898   if (uiout->is_mi_like_p ())
7899     {
7900       uiout->field_string ("reason",
7901                            async_reason_lookup (EXEC_ASYNC_END_STEPPING_RANGE));
7902     }
7903 }
7904
7905 void
7906 print_signal_exited_reason (struct ui_out *uiout, enum gdb_signal siggnal)
7907 {
7908   annotate_signalled ();
7909   if (uiout->is_mi_like_p ())
7910     uiout->field_string
7911       ("reason", async_reason_lookup (EXEC_ASYNC_EXITED_SIGNALLED));
7912   uiout->text ("\nProgram terminated with signal ");
7913   annotate_signal_name ();
7914   uiout->field_string ("signal-name",
7915                        gdb_signal_to_name (siggnal));
7916   annotate_signal_name_end ();
7917   uiout->text (", ");
7918   annotate_signal_string ();
7919   uiout->field_string ("signal-meaning",
7920                        gdb_signal_to_string (siggnal));
7921   annotate_signal_string_end ();
7922   uiout->text (".\n");
7923   uiout->text ("The program no longer exists.\n");
7924 }
7925
7926 void
7927 print_exited_reason (struct ui_out *uiout, int exitstatus)
7928 {
7929   struct inferior *inf = current_inferior ();
7930   const char *pidstr = target_pid_to_str (pid_to_ptid (inf->pid));
7931
7932   annotate_exited (exitstatus);
7933   if (exitstatus)
7934     {
7935       if (uiout->is_mi_like_p ())
7936         uiout->field_string ("reason", async_reason_lookup (EXEC_ASYNC_EXITED));
7937       uiout->text ("[Inferior ");
7938       uiout->text (plongest (inf->num));
7939       uiout->text (" (");
7940       uiout->text (pidstr);
7941       uiout->text (") exited with code ");
7942       uiout->field_fmt ("exit-code", "0%o", (unsigned int) exitstatus);
7943       uiout->text ("]\n");
7944     }
7945   else
7946     {
7947       if (uiout->is_mi_like_p ())
7948         uiout->field_string
7949           ("reason", async_reason_lookup (EXEC_ASYNC_EXITED_NORMALLY));
7950       uiout->text ("[Inferior ");
7951       uiout->text (plongest (inf->num));
7952       uiout->text (" (");
7953       uiout->text (pidstr);
7954       uiout->text (") exited normally]\n");
7955     }
7956 }
7957
7958 /* Some targets/architectures can do extra processing/display of
7959    segmentation faults.  E.g., Intel MPX boundary faults.
7960    Call the architecture dependent function to handle the fault.  */
7961
7962 static void
7963 handle_segmentation_fault (struct ui_out *uiout)
7964 {
7965   struct regcache *regcache = get_current_regcache ();
7966   struct gdbarch *gdbarch = get_regcache_arch (regcache);
7967
7968   if (gdbarch_handle_segmentation_fault_p (gdbarch))
7969     gdbarch_handle_segmentation_fault (gdbarch, uiout);
7970 }
7971
7972 void
7973 print_signal_received_reason (struct ui_out *uiout, enum gdb_signal siggnal)
7974 {
7975   struct thread_info *thr = inferior_thread ();
7976
7977   annotate_signal ();
7978
7979   if (uiout->is_mi_like_p ())
7980     ;
7981   else if (show_thread_that_caused_stop ())
7982     {
7983       const char *name;
7984
7985       uiout->text ("\nThread ");
7986       uiout->field_fmt ("thread-id", "%s", print_thread_id (thr));
7987
7988       name = thr->name != NULL ? thr->name : target_thread_name (thr);
7989       if (name != NULL)
7990         {
7991           uiout->text (" \"");
7992           uiout->field_fmt ("name", "%s", name);
7993           uiout->text ("\"");
7994         }
7995     }
7996   else
7997     uiout->text ("\nProgram");
7998
7999   if (siggnal == GDB_SIGNAL_0 && !uiout->is_mi_like_p ())
8000     uiout->text (" stopped");
8001   else
8002     {
8003       uiout->text (" received signal ");
8004       annotate_signal_name ();
8005       if (uiout->is_mi_like_p ())
8006         uiout->field_string
8007           ("reason", async_reason_lookup (EXEC_ASYNC_SIGNAL_RECEIVED));
8008       uiout->field_string ("signal-name", gdb_signal_to_name (siggnal));
8009       annotate_signal_name_end ();
8010       uiout->text (", ");
8011       annotate_signal_string ();
8012       uiout->field_string ("signal-meaning", gdb_signal_to_string (siggnal));
8013
8014       if (siggnal == GDB_SIGNAL_SEGV)
8015         handle_segmentation_fault (uiout);
8016
8017       annotate_signal_string_end ();
8018     }
8019   uiout->text (".\n");
8020 }
8021
8022 void
8023 print_no_history_reason (struct ui_out *uiout)
8024 {
8025   uiout->text ("\nNo more reverse-execution history.\n");
8026 }
8027
8028 /* Print current location without a level number, if we have changed
8029    functions or hit a breakpoint.  Print source line if we have one.
8030    bpstat_print contains the logic deciding in detail what to print,
8031    based on the event(s) that just occurred.  */
8032
8033 static void
8034 print_stop_location (struct target_waitstatus *ws)
8035 {
8036   int bpstat_ret;
8037   enum print_what source_flag;
8038   int do_frame_printing = 1;
8039   struct thread_info *tp = inferior_thread ();
8040
8041   bpstat_ret = bpstat_print (tp->control.stop_bpstat, ws->kind);
8042   switch (bpstat_ret)
8043     {
8044     case PRINT_UNKNOWN:
8045       /* FIXME: cagney/2002-12-01: Given that a frame ID does (or
8046          should) carry around the function and does (or should) use
8047          that when doing a frame comparison.  */
8048       if (tp->control.stop_step
8049           && frame_id_eq (tp->control.step_frame_id,
8050                           get_frame_id (get_current_frame ()))
8051           && tp->control.step_start_function == find_pc_function (stop_pc))
8052         {
8053           /* Finished step, just print source line.  */
8054           source_flag = SRC_LINE;
8055         }
8056       else
8057         {
8058           /* Print location and source line.  */
8059           source_flag = SRC_AND_LOC;
8060         }
8061       break;
8062     case PRINT_SRC_AND_LOC:
8063       /* Print location and source line.  */
8064       source_flag = SRC_AND_LOC;
8065       break;
8066     case PRINT_SRC_ONLY:
8067       source_flag = SRC_LINE;
8068       break;
8069     case PRINT_NOTHING:
8070       /* Something bogus.  */
8071       source_flag = SRC_LINE;
8072       do_frame_printing = 0;
8073       break;
8074     default:
8075       internal_error (__FILE__, __LINE__, _("Unknown value."));
8076     }
8077
8078   /* The behavior of this routine with respect to the source
8079      flag is:
8080      SRC_LINE: Print only source line
8081      LOCATION: Print only location
8082      SRC_AND_LOC: Print location and source line.  */
8083   if (do_frame_printing)
8084     print_stack_frame (get_selected_frame (NULL), 0, source_flag, 1);
8085 }
8086
8087 /* See infrun.h.  */
8088
8089 void
8090 print_stop_event (struct ui_out *uiout)
8091 {
8092   struct target_waitstatus last;
8093   ptid_t last_ptid;
8094   struct thread_info *tp;
8095
8096   get_last_target_status (&last_ptid, &last);
8097
8098   {
8099     scoped_restore save_uiout = make_scoped_restore (&current_uiout, uiout);
8100
8101     print_stop_location (&last);
8102
8103     /* Display the auto-display expressions.  */
8104     do_displays ();
8105   }
8106
8107   tp = inferior_thread ();
8108   if (tp->thread_fsm != NULL
8109       && thread_fsm_finished_p (tp->thread_fsm))
8110     {
8111       struct return_value_info *rv;
8112
8113       rv = thread_fsm_return_value (tp->thread_fsm);
8114       if (rv != NULL)
8115         print_return_value (uiout, rv);
8116     }
8117 }
8118
8119 /* See infrun.h.  */
8120
8121 void
8122 maybe_remove_breakpoints (void)
8123 {
8124   if (!breakpoints_should_be_inserted_now () && target_has_execution)
8125     {
8126       if (remove_breakpoints ())
8127         {
8128           target_terminal_ours_for_output ();
8129           printf_filtered (_("Cannot remove breakpoints because "
8130                              "program is no longer writable.\nFurther "
8131                              "execution is probably impossible.\n"));
8132         }
8133     }
8134 }
8135
8136 /* The execution context that just caused a normal stop.  */
8137
8138 struct stop_context
8139 {
8140   /* The stop ID.  */
8141   ULONGEST stop_id;
8142
8143   /* The event PTID.  */
8144
8145   ptid_t ptid;
8146
8147   /* If stopp for a thread event, this is the thread that caused the
8148      stop.  */
8149   struct thread_info *thread;
8150
8151   /* The inferior that caused the stop.  */
8152   int inf_num;
8153 };
8154
8155 /* Returns a new stop context.  If stopped for a thread event, this
8156    takes a strong reference to the thread.  */
8157
8158 static struct stop_context *
8159 save_stop_context (void)
8160 {
8161   struct stop_context *sc = XNEW (struct stop_context);
8162
8163   sc->stop_id = get_stop_id ();
8164   sc->ptid = inferior_ptid;
8165   sc->inf_num = current_inferior ()->num;
8166
8167   if (!ptid_equal (inferior_ptid, null_ptid))
8168     {
8169       /* Take a strong reference so that the thread can't be deleted
8170          yet.  */
8171       sc->thread = inferior_thread ();
8172       sc->thread->incref ();
8173     }
8174   else
8175     sc->thread = NULL;
8176
8177   return sc;
8178 }
8179
8180 /* Release a stop context previously created with save_stop_context.
8181    Releases the strong reference to the thread as well. */
8182
8183 static void
8184 release_stop_context_cleanup (void *arg)
8185 {
8186   struct stop_context *sc = (struct stop_context *) arg;
8187
8188   if (sc->thread != NULL)
8189     sc->thread->decref ();
8190   xfree (sc);
8191 }
8192
8193 /* Return true if the current context no longer matches the saved stop
8194    context.  */
8195
8196 static int
8197 stop_context_changed (struct stop_context *prev)
8198 {
8199   if (!ptid_equal (prev->ptid, inferior_ptid))
8200     return 1;
8201   if (prev->inf_num != current_inferior ()->num)
8202     return 1;
8203   if (prev->thread != NULL && prev->thread->state != THREAD_STOPPED)
8204     return 1;
8205   if (get_stop_id () != prev->stop_id)
8206     return 1;
8207   return 0;
8208 }
8209
8210 /* See infrun.h.  */
8211
8212 int
8213 normal_stop (void)
8214 {
8215   struct target_waitstatus last;
8216   ptid_t last_ptid;
8217   struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
8218   ptid_t pid_ptid;
8219
8220   get_last_target_status (&last_ptid, &last);
8221
8222   new_stop_id ();
8223
8224   /* If an exception is thrown from this point on, make sure to
8225      propagate GDB's knowledge of the executing state to the
8226      frontend/user running state.  A QUIT is an easy exception to see
8227      here, so do this before any filtered output.  */
8228   if (!non_stop)
8229     make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
8230   else if (last.kind == TARGET_WAITKIND_SIGNALLED
8231            || last.kind == TARGET_WAITKIND_EXITED)
8232     {
8233       /* On some targets, we may still have live threads in the
8234          inferior when we get a process exit event.  E.g., for
8235          "checkpoint", when the current checkpoint/fork exits,
8236          linux-fork.c automatically switches to another fork from
8237          within target_mourn_inferior.  */
8238       if (!ptid_equal (inferior_ptid, null_ptid))
8239         {
8240           pid_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
8241           make_cleanup (finish_thread_state_cleanup, &pid_ptid);
8242         }
8243     }
8244   else if (last.kind != TARGET_WAITKIND_NO_RESUMED)
8245     make_cleanup (finish_thread_state_cleanup, &inferior_ptid);
8246
8247   /* As we're presenting a stop, and potentially removing breakpoints,
8248      update the thread list so we can tell whether there are threads
8249      running on the target.  With target remote, for example, we can
8250      only learn about new threads when we explicitly update the thread
8251      list.  Do this before notifying the interpreters about signal
8252      stops, end of stepping ranges, etc., so that the "new thread"
8253      output is emitted before e.g., "Program received signal FOO",
8254      instead of after.  */
8255   update_thread_list ();
8256
8257   if (last.kind == TARGET_WAITKIND_STOPPED && stopped_by_random_signal)
8258     observer_notify_signal_received (inferior_thread ()->suspend.stop_signal);
8259
8260   /* As with the notification of thread events, we want to delay
8261      notifying the user that we've switched thread context until
8262      the inferior actually stops.
8263
8264      There's no point in saying anything if the inferior has exited.
8265      Note that SIGNALLED here means "exited with a signal", not
8266      "received a signal".
8267
8268      Also skip saying anything in non-stop mode.  In that mode, as we
8269      don't want GDB to switch threads behind the user's back, to avoid
8270      races where the user is typing a command to apply to thread x,
8271      but GDB switches to thread y before the user finishes entering
8272      the command, fetch_inferior_event installs a cleanup to restore
8273      the current thread back to the thread the user had selected right
8274      after this event is handled, so we're not really switching, only
8275      informing of a stop.  */
8276   if (!non_stop
8277       && !ptid_equal (previous_inferior_ptid, inferior_ptid)
8278       && target_has_execution
8279       && last.kind != TARGET_WAITKIND_SIGNALLED
8280       && last.kind != TARGET_WAITKIND_EXITED
8281       && last.kind != TARGET_WAITKIND_NO_RESUMED)
8282     {
8283       SWITCH_THRU_ALL_UIS ()
8284         {
8285           target_terminal_ours_for_output ();
8286           printf_filtered (_("[Switching to %s]\n"),
8287                            target_pid_to_str (inferior_ptid));
8288           annotate_thread_changed ();
8289         }
8290       previous_inferior_ptid = inferior_ptid;
8291     }
8292
8293   if (last.kind == TARGET_WAITKIND_NO_RESUMED)
8294     {
8295       SWITCH_THRU_ALL_UIS ()
8296         if (current_ui->prompt_state == PROMPT_BLOCKED)
8297           {
8298             target_terminal_ours_for_output ();
8299             printf_filtered (_("No unwaited-for children left.\n"));
8300           }
8301     }
8302
8303   /* Note: this depends on the update_thread_list call above.  */
8304   maybe_remove_breakpoints ();
8305
8306   /* If an auto-display called a function and that got a signal,
8307      delete that auto-display to avoid an infinite recursion.  */
8308
8309   if (stopped_by_random_signal)
8310     disable_current_display ();
8311
8312   SWITCH_THRU_ALL_UIS ()
8313     {
8314       async_enable_stdin ();
8315     }
8316
8317   /* Let the user/frontend see the threads as stopped.  */
8318   do_cleanups (old_chain);
8319
8320   /* Select innermost stack frame - i.e., current frame is frame 0,
8321      and current location is based on that.  Handle the case where the
8322      dummy call is returning after being stopped.  E.g. the dummy call
8323      previously hit a breakpoint.  (If the dummy call returns
8324      normally, we won't reach here.)  Do this before the stop hook is
8325      run, so that it doesn't get to see the temporary dummy frame,
8326      which is not where we'll present the stop.  */
8327   if (has_stack_frames ())
8328     {
8329       if (stop_stack_dummy == STOP_STACK_DUMMY)
8330         {
8331           /* Pop the empty frame that contains the stack dummy.  This
8332              also restores inferior state prior to the call (struct
8333              infcall_suspend_state).  */
8334           struct frame_info *frame = get_current_frame ();
8335
8336           gdb_assert (get_frame_type (frame) == DUMMY_FRAME);
8337           frame_pop (frame);
8338           /* frame_pop calls reinit_frame_cache as the last thing it
8339              does which means there's now no selected frame.  */
8340         }
8341
8342       select_frame (get_current_frame ());
8343
8344       /* Set the current source location.  */
8345       set_current_sal_from_frame (get_current_frame ());
8346     }
8347
8348   /* Look up the hook_stop and run it (CLI internally handles problem
8349      of stop_command's pre-hook not existing).  */
8350   if (stop_command != NULL)
8351     {
8352       struct stop_context *saved_context = save_stop_context ();
8353       struct cleanup *old_chain
8354         = make_cleanup (release_stop_context_cleanup, saved_context);
8355
8356       catch_errors (hook_stop_stub, stop_command,
8357                     "Error while running hook_stop:\n", RETURN_MASK_ALL);
8358
8359       /* If the stop hook resumes the target, then there's no point in
8360          trying to notify about the previous stop; its context is
8361          gone.  Likewise if the command switches thread or inferior --
8362          the observers would print a stop for the wrong
8363          thread/inferior.  */
8364       if (stop_context_changed (saved_context))
8365         {
8366           do_cleanups (old_chain);
8367           return 1;
8368         }
8369       do_cleanups (old_chain);
8370     }
8371
8372   /* Notify observers about the stop.  This is where the interpreters
8373      print the stop event.  */
8374   if (!ptid_equal (inferior_ptid, null_ptid))
8375     observer_notify_normal_stop (inferior_thread ()->control.stop_bpstat,
8376                                  stop_print_frame);
8377   else
8378     observer_notify_normal_stop (NULL, stop_print_frame);
8379
8380   annotate_stopped ();
8381
8382   if (target_has_execution)
8383     {
8384       if (last.kind != TARGET_WAITKIND_SIGNALLED
8385           && last.kind != TARGET_WAITKIND_EXITED)
8386         /* Delete the breakpoint we stopped at, if it wants to be deleted.
8387            Delete any breakpoint that is to be deleted at the next stop.  */
8388         breakpoint_auto_delete (inferior_thread ()->control.stop_bpstat);
8389     }
8390
8391   /* Try to get rid of automatically added inferiors that are no
8392      longer needed.  Keeping those around slows down things linearly.
8393      Note that this never removes the current inferior.  */
8394   prune_inferiors ();
8395
8396   return 0;
8397 }
8398
8399 static int
8400 hook_stop_stub (void *cmd)
8401 {
8402   execute_cmd_pre_hook ((struct cmd_list_element *) cmd);
8403   return (0);
8404 }
8405 \f
8406 int
8407 signal_stop_state (int signo)
8408 {
8409   return signal_stop[signo];
8410 }
8411
8412 int
8413 signal_print_state (int signo)
8414 {
8415   return signal_print[signo];
8416 }
8417
8418 int
8419 signal_pass_state (int signo)
8420 {
8421   return signal_program[signo];
8422 }
8423
8424 static void
8425 signal_cache_update (int signo)
8426 {
8427   if (signo == -1)
8428     {
8429       for (signo = 0; signo < (int) GDB_SIGNAL_LAST; signo++)
8430         signal_cache_update (signo);
8431
8432       return;
8433     }
8434
8435   signal_pass[signo] = (signal_stop[signo] == 0
8436                         && signal_print[signo] == 0
8437                         && signal_program[signo] == 1
8438                         && signal_catch[signo] == 0);
8439 }
8440
8441 int
8442 signal_stop_update (int signo, int state)
8443 {
8444   int ret = signal_stop[signo];
8445
8446   signal_stop[signo] = state;
8447   signal_cache_update (signo);
8448   return ret;
8449 }
8450
8451 int
8452 signal_print_update (int signo, int state)
8453 {
8454   int ret = signal_print[signo];
8455
8456   signal_print[signo] = state;
8457   signal_cache_update (signo);
8458   return ret;
8459 }
8460
8461 int
8462 signal_pass_update (int signo, int state)
8463 {
8464   int ret = signal_program[signo];
8465
8466   signal_program[signo] = state;
8467   signal_cache_update (signo);
8468   return ret;
8469 }
8470
8471 /* Update the global 'signal_catch' from INFO and notify the
8472    target.  */
8473
8474 void
8475 signal_catch_update (const unsigned int *info)
8476 {
8477   int i;
8478
8479   for (i = 0; i < GDB_SIGNAL_LAST; ++i)
8480     signal_catch[i] = info[i] > 0;
8481   signal_cache_update (-1);
8482   target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
8483 }
8484
8485 static void
8486 sig_print_header (void)
8487 {
8488   printf_filtered (_("Signal        Stop\tPrint\tPass "
8489                      "to program\tDescription\n"));
8490 }
8491
8492 static void
8493 sig_print_info (enum gdb_signal oursig)
8494 {
8495   const char *name = gdb_signal_to_name (oursig);
8496   int name_padding = 13 - strlen (name);
8497
8498   if (name_padding <= 0)
8499     name_padding = 0;
8500
8501   printf_filtered ("%s", name);
8502   printf_filtered ("%*.*s ", name_padding, name_padding, "                 ");
8503   printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
8504   printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
8505   printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
8506   printf_filtered ("%s\n", gdb_signal_to_string (oursig));
8507 }
8508
8509 /* Specify how various signals in the inferior should be handled.  */
8510
8511 static void
8512 handle_command (char *args, int from_tty)
8513 {
8514   char **argv;
8515   int digits, wordlen;
8516   int sigfirst, signum, siglast;
8517   enum gdb_signal oursig;
8518   int allsigs;
8519   int nsigs;
8520   unsigned char *sigs;
8521   struct cleanup *old_chain;
8522
8523   if (args == NULL)
8524     {
8525       error_no_arg (_("signal to handle"));
8526     }
8527
8528   /* Allocate and zero an array of flags for which signals to handle.  */
8529
8530   nsigs = (int) GDB_SIGNAL_LAST;
8531   sigs = (unsigned char *) alloca (nsigs);
8532   memset (sigs, 0, nsigs);
8533
8534   /* Break the command line up into args.  */
8535
8536   argv = gdb_buildargv (args);
8537   old_chain = make_cleanup_freeargv (argv);
8538
8539   /* Walk through the args, looking for signal oursigs, signal names, and
8540      actions.  Signal numbers and signal names may be interspersed with
8541      actions, with the actions being performed for all signals cumulatively
8542      specified.  Signal ranges can be specified as <LOW>-<HIGH>.  */
8543
8544   while (*argv != NULL)
8545     {
8546       wordlen = strlen (*argv);
8547       for (digits = 0; isdigit ((*argv)[digits]); digits++)
8548         {;
8549         }
8550       allsigs = 0;
8551       sigfirst = siglast = -1;
8552
8553       if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
8554         {
8555           /* Apply action to all signals except those used by the
8556              debugger.  Silently skip those.  */
8557           allsigs = 1;
8558           sigfirst = 0;
8559           siglast = nsigs - 1;
8560         }
8561       else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
8562         {
8563           SET_SIGS (nsigs, sigs, signal_stop);
8564           SET_SIGS (nsigs, sigs, signal_print);
8565         }
8566       else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
8567         {
8568           UNSET_SIGS (nsigs, sigs, signal_program);
8569         }
8570       else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
8571         {
8572           SET_SIGS (nsigs, sigs, signal_print);
8573         }
8574       else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
8575         {
8576           SET_SIGS (nsigs, sigs, signal_program);
8577         }
8578       else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
8579         {
8580           UNSET_SIGS (nsigs, sigs, signal_stop);
8581         }
8582       else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
8583         {
8584           SET_SIGS (nsigs, sigs, signal_program);
8585         }
8586       else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
8587         {
8588           UNSET_SIGS (nsigs, sigs, signal_print);
8589           UNSET_SIGS (nsigs, sigs, signal_stop);
8590         }
8591       else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
8592         {
8593           UNSET_SIGS (nsigs, sigs, signal_program);
8594         }
8595       else if (digits > 0)
8596         {
8597           /* It is numeric.  The numeric signal refers to our own
8598              internal signal numbering from target.h, not to host/target
8599              signal  number.  This is a feature; users really should be
8600              using symbolic names anyway, and the common ones like
8601              SIGHUP, SIGINT, SIGALRM, etc. will work right anyway.  */
8602
8603           sigfirst = siglast = (int)
8604             gdb_signal_from_command (atoi (*argv));
8605           if ((*argv)[digits] == '-')
8606             {
8607               siglast = (int)
8608                 gdb_signal_from_command (atoi ((*argv) + digits + 1));
8609             }
8610           if (sigfirst > siglast)
8611             {
8612               /* Bet he didn't figure we'd think of this case...  */
8613               signum = sigfirst;
8614               sigfirst = siglast;
8615               siglast = signum;
8616             }
8617         }
8618       else
8619         {
8620           oursig = gdb_signal_from_name (*argv);
8621           if (oursig != GDB_SIGNAL_UNKNOWN)
8622             {
8623               sigfirst = siglast = (int) oursig;
8624             }
8625           else
8626             {
8627               /* Not a number and not a recognized flag word => complain.  */
8628               error (_("Unrecognized or ambiguous flag word: \"%s\"."), *argv);
8629             }
8630         }
8631
8632       /* If any signal numbers or symbol names were found, set flags for
8633          which signals to apply actions to.  */
8634
8635       for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
8636         {
8637           switch ((enum gdb_signal) signum)
8638             {
8639             case GDB_SIGNAL_TRAP:
8640             case GDB_SIGNAL_INT:
8641               if (!allsigs && !sigs[signum])
8642                 {
8643                   if (query (_("%s is used by the debugger.\n\
8644 Are you sure you want to change it? "),
8645                              gdb_signal_to_name ((enum gdb_signal) signum)))
8646                     {
8647                       sigs[signum] = 1;
8648                     }
8649                   else
8650                     {
8651                       printf_unfiltered (_("Not confirmed, unchanged.\n"));
8652                       gdb_flush (gdb_stdout);
8653                     }
8654                 }
8655               break;
8656             case GDB_SIGNAL_0:
8657             case GDB_SIGNAL_DEFAULT:
8658             case GDB_SIGNAL_UNKNOWN:
8659               /* Make sure that "all" doesn't print these.  */
8660               break;
8661             default:
8662               sigs[signum] = 1;
8663               break;
8664             }
8665         }
8666
8667       argv++;
8668     }
8669
8670   for (signum = 0; signum < nsigs; signum++)
8671     if (sigs[signum])
8672       {
8673         signal_cache_update (-1);
8674         target_pass_signals ((int) GDB_SIGNAL_LAST, signal_pass);
8675         target_program_signals ((int) GDB_SIGNAL_LAST, signal_program);
8676
8677         if (from_tty)
8678           {
8679             /* Show the results.  */
8680             sig_print_header ();
8681             for (; signum < nsigs; signum++)
8682               if (sigs[signum])
8683                 sig_print_info ((enum gdb_signal) signum);
8684           }
8685
8686         break;
8687       }
8688
8689   do_cleanups (old_chain);
8690 }
8691
8692 /* Complete the "handle" command.  */
8693
8694 static VEC (char_ptr) *
8695 handle_completer (struct cmd_list_element *ignore,
8696                   const char *text, const char *word)
8697 {
8698   VEC (char_ptr) *vec_signals, *vec_keywords, *return_val;
8699   static const char * const keywords[] =
8700     {
8701       "all",
8702       "stop",
8703       "ignore",
8704       "print",
8705       "pass",
8706       "nostop",
8707       "noignore",
8708       "noprint",
8709       "nopass",
8710       NULL,
8711     };
8712
8713   vec_signals = signal_completer (ignore, text, word);
8714   vec_keywords = complete_on_enum (keywords, word, word);
8715
8716   return_val = VEC_merge (char_ptr, vec_signals, vec_keywords);
8717   VEC_free (char_ptr, vec_signals);
8718   VEC_free (char_ptr, vec_keywords);
8719   return return_val;
8720 }
8721
8722 enum gdb_signal
8723 gdb_signal_from_command (int num)
8724 {
8725   if (num >= 1 && num <= 15)
8726     return (enum gdb_signal) num;
8727   error (_("Only signals 1-15 are valid as numeric signals.\n\
8728 Use \"info signals\" for a list of symbolic signals."));
8729 }
8730
8731 /* Print current contents of the tables set by the handle command.
8732    It is possible we should just be printing signals actually used
8733    by the current target (but for things to work right when switching
8734    targets, all signals should be in the signal tables).  */
8735
8736 static void
8737 signals_info (char *signum_exp, int from_tty)
8738 {
8739   enum gdb_signal oursig;
8740
8741   sig_print_header ();
8742
8743   if (signum_exp)
8744     {
8745       /* First see if this is a symbol name.  */
8746       oursig = gdb_signal_from_name (signum_exp);
8747       if (oursig == GDB_SIGNAL_UNKNOWN)
8748         {
8749           /* No, try numeric.  */
8750           oursig =
8751             gdb_signal_from_command (parse_and_eval_long (signum_exp));
8752         }
8753       sig_print_info (oursig);
8754       return;
8755     }
8756
8757   printf_filtered ("\n");
8758   /* These ugly casts brought to you by the native VAX compiler.  */
8759   for (oursig = GDB_SIGNAL_FIRST;
8760        (int) oursig < (int) GDB_SIGNAL_LAST;
8761        oursig = (enum gdb_signal) ((int) oursig + 1))
8762     {
8763       QUIT;
8764
8765       if (oursig != GDB_SIGNAL_UNKNOWN
8766           && oursig != GDB_SIGNAL_DEFAULT && oursig != GDB_SIGNAL_0)
8767         sig_print_info (oursig);
8768     }
8769
8770   printf_filtered (_("\nUse the \"handle\" command "
8771                      "to change these tables.\n"));
8772 }
8773
8774 /* The $_siginfo convenience variable is a bit special.  We don't know
8775    for sure the type of the value until we actually have a chance to
8776    fetch the data.  The type can change depending on gdbarch, so it is
8777    also dependent on which thread you have selected.
8778
8779      1. making $_siginfo be an internalvar that creates a new value on
8780      access.
8781
8782      2. making the value of $_siginfo be an lval_computed value.  */
8783
8784 /* This function implements the lval_computed support for reading a
8785    $_siginfo value.  */
8786
8787 static void
8788 siginfo_value_read (struct value *v)
8789 {
8790   LONGEST transferred;
8791
8792   /* If we can access registers, so can we access $_siginfo.  Likewise
8793      vice versa.  */
8794   validate_registers_access ();
8795
8796   transferred =
8797     target_read (&current_target, TARGET_OBJECT_SIGNAL_INFO,
8798                  NULL,
8799                  value_contents_all_raw (v),
8800                  value_offset (v),
8801                  TYPE_LENGTH (value_type (v)));
8802
8803   if (transferred != TYPE_LENGTH (value_type (v)))
8804     error (_("Unable to read siginfo"));
8805 }
8806
8807 /* This function implements the lval_computed support for writing a
8808    $_siginfo value.  */
8809
8810 static void
8811 siginfo_value_write (struct value *v, struct value *fromval)
8812 {
8813   LONGEST transferred;
8814
8815   /* If we can access registers, so can we access $_siginfo.  Likewise
8816      vice versa.  */
8817   validate_registers_access ();
8818
8819   transferred = target_write (&current_target,
8820                               TARGET_OBJECT_SIGNAL_INFO,
8821                               NULL,
8822                               value_contents_all_raw (fromval),
8823                               value_offset (v),
8824                               TYPE_LENGTH (value_type (fromval)));
8825
8826   if (transferred != TYPE_LENGTH (value_type (fromval)))
8827     error (_("Unable to write siginfo"));
8828 }
8829
8830 static const struct lval_funcs siginfo_value_funcs =
8831   {
8832     siginfo_value_read,
8833     siginfo_value_write
8834   };
8835
8836 /* Return a new value with the correct type for the siginfo object of
8837    the current thread using architecture GDBARCH.  Return a void value
8838    if there's no object available.  */
8839
8840 static struct value *
8841 siginfo_make_value (struct gdbarch *gdbarch, struct internalvar *var,
8842                     void *ignore)
8843 {
8844   if (target_has_stack
8845       && !ptid_equal (inferior_ptid, null_ptid)
8846       && gdbarch_get_siginfo_type_p (gdbarch))
8847     {
8848       struct type *type = gdbarch_get_siginfo_type (gdbarch);
8849
8850       return allocate_computed_value (type, &siginfo_value_funcs, NULL);
8851     }
8852
8853   return allocate_value (builtin_type (gdbarch)->builtin_void);
8854 }
8855
8856 \f
8857 /* infcall_suspend_state contains state about the program itself like its
8858    registers and any signal it received when it last stopped.
8859    This state must be restored regardless of how the inferior function call
8860    ends (either successfully, or after it hits a breakpoint or signal)
8861    if the program is to properly continue where it left off.  */
8862
8863 struct infcall_suspend_state
8864 {
8865   struct thread_suspend_state thread_suspend;
8866
8867   /* Other fields:  */
8868   CORE_ADDR stop_pc;
8869   struct regcache *registers;
8870
8871   /* Format of SIGINFO_DATA or NULL if it is not present.  */
8872   struct gdbarch *siginfo_gdbarch;
8873
8874   /* The inferior format depends on SIGINFO_GDBARCH and it has a length of
8875      TYPE_LENGTH (gdbarch_get_siginfo_type ()).  For different gdbarch the
8876      content would be invalid.  */
8877   gdb_byte *siginfo_data;
8878 };
8879
8880 struct infcall_suspend_state *
8881 save_infcall_suspend_state (void)
8882 {
8883   struct infcall_suspend_state *inf_state;
8884   struct thread_info *tp = inferior_thread ();
8885   struct regcache *regcache = get_current_regcache ();
8886   struct gdbarch *gdbarch = get_regcache_arch (regcache);
8887   gdb_byte *siginfo_data = NULL;
8888
8889   if (gdbarch_get_siginfo_type_p (gdbarch))
8890     {
8891       struct type *type = gdbarch_get_siginfo_type (gdbarch);
8892       size_t len = TYPE_LENGTH (type);
8893       struct cleanup *back_to;
8894
8895       siginfo_data = (gdb_byte *) xmalloc (len);
8896       back_to = make_cleanup (xfree, siginfo_data);
8897
8898       if (target_read (&current_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
8899                        siginfo_data, 0, len) == len)
8900         discard_cleanups (back_to);
8901       else
8902         {
8903           /* Errors ignored.  */
8904           do_cleanups (back_to);
8905           siginfo_data = NULL;
8906         }
8907     }
8908
8909   inf_state = XCNEW (struct infcall_suspend_state);
8910
8911   if (siginfo_data)
8912     {
8913       inf_state->siginfo_gdbarch = gdbarch;
8914       inf_state->siginfo_data = siginfo_data;
8915     }
8916
8917   inf_state->thread_suspend = tp->suspend;
8918
8919   /* run_inferior_call will not use the signal due to its `proceed' call with
8920      GDB_SIGNAL_0 anyway.  */
8921   tp->suspend.stop_signal = GDB_SIGNAL_0;
8922
8923   inf_state->stop_pc = stop_pc;
8924
8925   inf_state->registers = regcache_dup (regcache);
8926
8927   return inf_state;
8928 }
8929
8930 /* Restore inferior session state to INF_STATE.  */
8931
8932 void
8933 restore_infcall_suspend_state (struct infcall_suspend_state *inf_state)
8934 {
8935   struct thread_info *tp = inferior_thread ();
8936   struct regcache *regcache = get_current_regcache ();
8937   struct gdbarch *gdbarch = get_regcache_arch (regcache);
8938
8939   tp->suspend = inf_state->thread_suspend;
8940
8941   stop_pc = inf_state->stop_pc;
8942
8943   if (inf_state->siginfo_gdbarch == gdbarch)
8944     {
8945       struct type *type = gdbarch_get_siginfo_type (gdbarch);
8946
8947       /* Errors ignored.  */
8948       target_write (&current_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
8949                     inf_state->siginfo_data, 0, TYPE_LENGTH (type));
8950     }
8951
8952   /* The inferior can be gone if the user types "print exit(0)"
8953      (and perhaps other times).  */
8954   if (target_has_execution)
8955     /* NB: The register write goes through to the target.  */
8956     regcache_cpy (regcache, inf_state->registers);
8957
8958   discard_infcall_suspend_state (inf_state);
8959 }
8960
8961 static void
8962 do_restore_infcall_suspend_state_cleanup (void *state)
8963 {
8964   restore_infcall_suspend_state ((struct infcall_suspend_state *) state);
8965 }
8966
8967 struct cleanup *
8968 make_cleanup_restore_infcall_suspend_state
8969   (struct infcall_suspend_state *inf_state)
8970 {
8971   return make_cleanup (do_restore_infcall_suspend_state_cleanup, inf_state);
8972 }
8973
8974 void
8975 discard_infcall_suspend_state (struct infcall_suspend_state *inf_state)
8976 {
8977   regcache_xfree (inf_state->registers);
8978   xfree (inf_state->siginfo_data);
8979   xfree (inf_state);
8980 }
8981
8982 struct regcache *
8983 get_infcall_suspend_state_regcache (struct infcall_suspend_state *inf_state)
8984 {
8985   return inf_state->registers;
8986 }
8987
8988 /* infcall_control_state contains state regarding gdb's control of the
8989    inferior itself like stepping control.  It also contains session state like
8990    the user's currently selected frame.  */
8991
8992 struct infcall_control_state
8993 {
8994   struct thread_control_state thread_control;
8995   struct inferior_control_state inferior_control;
8996
8997   /* Other fields:  */
8998   enum stop_stack_kind stop_stack_dummy;
8999   int stopped_by_random_signal;
9000
9001   /* ID if the selected frame when the inferior function call was made.  */
9002   struct frame_id selected_frame_id;
9003 };
9004
9005 /* Save all of the information associated with the inferior<==>gdb
9006    connection.  */
9007
9008 struct infcall_control_state *
9009 save_infcall_control_state (void)
9010 {
9011   struct infcall_control_state *inf_status =
9012     XNEW (struct infcall_control_state);
9013   struct thread_info *tp = inferior_thread ();
9014   struct inferior *inf = current_inferior ();
9015
9016   inf_status->thread_control = tp->control;
9017   inf_status->inferior_control = inf->control;
9018
9019   tp->control.step_resume_breakpoint = NULL;
9020   tp->control.exception_resume_breakpoint = NULL;
9021
9022   /* Save original bpstat chain to INF_STATUS; replace it in TP with copy of
9023      chain.  If caller's caller is walking the chain, they'll be happier if we
9024      hand them back the original chain when restore_infcall_control_state is
9025      called.  */
9026   tp->control.stop_bpstat = bpstat_copy (tp->control.stop_bpstat);
9027
9028   /* Other fields:  */
9029   inf_status->stop_stack_dummy = stop_stack_dummy;
9030   inf_status->stopped_by_random_signal = stopped_by_random_signal;
9031
9032   inf_status->selected_frame_id = get_frame_id (get_selected_frame (NULL));
9033
9034   return inf_status;
9035 }
9036
9037 static int
9038 restore_selected_frame (void *args)
9039 {
9040   struct frame_id *fid = (struct frame_id *) args;
9041   struct frame_info *frame;
9042
9043   frame = frame_find_by_id (*fid);
9044
9045   /* If inf_status->selected_frame_id is NULL, there was no previously
9046      selected frame.  */
9047   if (frame == NULL)
9048     {
9049       warning (_("Unable to restore previously selected frame."));
9050       return 0;
9051     }
9052
9053   select_frame (frame);
9054
9055   return (1);
9056 }
9057
9058 /* Restore inferior session state to INF_STATUS.  */
9059
9060 void
9061 restore_infcall_control_state (struct infcall_control_state *inf_status)
9062 {
9063   struct thread_info *tp = inferior_thread ();
9064   struct inferior *inf = current_inferior ();
9065
9066   if (tp->control.step_resume_breakpoint)
9067     tp->control.step_resume_breakpoint->disposition = disp_del_at_next_stop;
9068
9069   if (tp->control.exception_resume_breakpoint)
9070     tp->control.exception_resume_breakpoint->disposition
9071       = disp_del_at_next_stop;
9072
9073   /* Handle the bpstat_copy of the chain.  */
9074   bpstat_clear (&tp->control.stop_bpstat);
9075
9076   tp->control = inf_status->thread_control;
9077   inf->control = inf_status->inferior_control;
9078
9079   /* Other fields:  */
9080   stop_stack_dummy = inf_status->stop_stack_dummy;
9081   stopped_by_random_signal = inf_status->stopped_by_random_signal;
9082
9083   if (target_has_stack)
9084     {
9085       /* The point of catch_errors is that if the stack is clobbered,
9086          walking the stack might encounter a garbage pointer and
9087          error() trying to dereference it.  */
9088       if (catch_errors
9089           (restore_selected_frame, &inf_status->selected_frame_id,
9090            "Unable to restore previously selected frame:\n",
9091            RETURN_MASK_ERROR) == 0)
9092         /* Error in restoring the selected frame.  Select the innermost
9093            frame.  */
9094         select_frame (get_current_frame ());
9095     }
9096
9097   xfree (inf_status);
9098 }
9099
9100 static void
9101 do_restore_infcall_control_state_cleanup (void *sts)
9102 {
9103   restore_infcall_control_state ((struct infcall_control_state *) sts);
9104 }
9105
9106 struct cleanup *
9107 make_cleanup_restore_infcall_control_state
9108   (struct infcall_control_state *inf_status)
9109 {
9110   return make_cleanup (do_restore_infcall_control_state_cleanup, inf_status);
9111 }
9112
9113 void
9114 discard_infcall_control_state (struct infcall_control_state *inf_status)
9115 {
9116   if (inf_status->thread_control.step_resume_breakpoint)
9117     inf_status->thread_control.step_resume_breakpoint->disposition
9118       = disp_del_at_next_stop;
9119
9120   if (inf_status->thread_control.exception_resume_breakpoint)
9121     inf_status->thread_control.exception_resume_breakpoint->disposition
9122       = disp_del_at_next_stop;
9123
9124   /* See save_infcall_control_state for info on stop_bpstat.  */
9125   bpstat_clear (&inf_status->thread_control.stop_bpstat);
9126
9127   xfree (inf_status);
9128 }
9129 \f
9130 /* restore_inferior_ptid() will be used by the cleanup machinery
9131    to restore the inferior_ptid value saved in a call to
9132    save_inferior_ptid().  */
9133
9134 static void
9135 restore_inferior_ptid (void *arg)
9136 {
9137   ptid_t *saved_ptid_ptr = (ptid_t *) arg;
9138
9139   inferior_ptid = *saved_ptid_ptr;
9140   xfree (arg);
9141 }
9142
9143 /* Save the value of inferior_ptid so that it may be restored by a
9144    later call to do_cleanups().  Returns the struct cleanup pointer
9145    needed for later doing the cleanup.  */
9146
9147 struct cleanup *
9148 save_inferior_ptid (void)
9149 {
9150   ptid_t *saved_ptid_ptr = XNEW (ptid_t);
9151
9152   *saved_ptid_ptr = inferior_ptid;
9153   return make_cleanup (restore_inferior_ptid, saved_ptid_ptr);
9154 }
9155
9156 /* See infrun.h.  */
9157
9158 void
9159 clear_exit_convenience_vars (void)
9160 {
9161   clear_internalvar (lookup_internalvar ("_exitsignal"));
9162   clear_internalvar (lookup_internalvar ("_exitcode"));
9163 }
9164 \f
9165
9166 /* User interface for reverse debugging:
9167    Set exec-direction / show exec-direction commands
9168    (returns error unless target implements to_set_exec_direction method).  */
9169
9170 enum exec_direction_kind execution_direction = EXEC_FORWARD;
9171 static const char exec_forward[] = "forward";
9172 static const char exec_reverse[] = "reverse";
9173 static const char *exec_direction = exec_forward;
9174 static const char *const exec_direction_names[] = {
9175   exec_forward,
9176   exec_reverse,
9177   NULL
9178 };
9179
9180 static void
9181 set_exec_direction_func (char *args, int from_tty,
9182                          struct cmd_list_element *cmd)
9183 {
9184   if (target_can_execute_reverse)
9185     {
9186       if (!strcmp (exec_direction, exec_forward))
9187         execution_direction = EXEC_FORWARD;
9188       else if (!strcmp (exec_direction, exec_reverse))
9189         execution_direction = EXEC_REVERSE;
9190     }
9191   else
9192     {
9193       exec_direction = exec_forward;
9194       error (_("Target does not support this operation."));
9195     }
9196 }
9197
9198 static void
9199 show_exec_direction_func (struct ui_file *out, int from_tty,
9200                           struct cmd_list_element *cmd, const char *value)
9201 {
9202   switch (execution_direction) {
9203   case EXEC_FORWARD:
9204     fprintf_filtered (out, _("Forward.\n"));
9205     break;
9206   case EXEC_REVERSE:
9207     fprintf_filtered (out, _("Reverse.\n"));
9208     break;
9209   default:
9210     internal_error (__FILE__, __LINE__,
9211                     _("bogus execution_direction value: %d"),
9212                     (int) execution_direction);
9213   }
9214 }
9215
9216 static void
9217 show_schedule_multiple (struct ui_file *file, int from_tty,
9218                         struct cmd_list_element *c, const char *value)
9219 {
9220   fprintf_filtered (file, _("Resuming the execution of threads "
9221                             "of all processes is %s.\n"), value);
9222 }
9223
9224 /* Implementation of `siginfo' variable.  */
9225
9226 static const struct internalvar_funcs siginfo_funcs =
9227 {
9228   siginfo_make_value,
9229   NULL,
9230   NULL
9231 };
9232
9233 /* Callback for infrun's target events source.  This is marked when a
9234    thread has a pending status to process.  */
9235
9236 static void
9237 infrun_async_inferior_event_handler (gdb_client_data data)
9238 {
9239   inferior_event_handler (INF_REG_EVENT, NULL);
9240 }
9241
9242 void
9243 _initialize_infrun (void)
9244 {
9245   int i;
9246   int numsigs;
9247   struct cmd_list_element *c;
9248
9249   /* Register extra event sources in the event loop.  */
9250   infrun_async_inferior_event_token
9251     = create_async_event_handler (infrun_async_inferior_event_handler, NULL);
9252
9253   add_info ("signals", signals_info, _("\
9254 What debugger does when program gets various signals.\n\
9255 Specify a signal as argument to print info on that signal only."));
9256   add_info_alias ("handle", "signals", 0);
9257
9258   c = add_com ("handle", class_run, handle_command, _("\
9259 Specify how to handle signals.\n\
9260 Usage: handle SIGNAL [ACTIONS]\n\
9261 Args are signals and actions to apply to those signals.\n\
9262 If no actions are specified, the current settings for the specified signals\n\
9263 will be displayed instead.\n\
9264 \n\
9265 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
9266 from 1-15 are allowed for compatibility with old versions of GDB.\n\
9267 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
9268 The special arg \"all\" is recognized to mean all signals except those\n\
9269 used by the debugger, typically SIGTRAP and SIGINT.\n\
9270 \n\
9271 Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
9272 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
9273 Stop means reenter debugger if this signal happens (implies print).\n\
9274 Print means print a message if this signal happens.\n\
9275 Pass means let program see this signal; otherwise program doesn't know.\n\
9276 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
9277 Pass and Stop may be combined.\n\
9278 \n\
9279 Multiple signals may be specified.  Signal numbers and signal names\n\
9280 may be interspersed with actions, with the actions being performed for\n\
9281 all signals cumulatively specified."));
9282   set_cmd_completer (c, handle_completer);
9283
9284   if (!dbx_commands)
9285     stop_command = add_cmd ("stop", class_obscure,
9286                             not_just_help_class_command, _("\
9287 There is no `stop' command, but you can set a hook on `stop'.\n\
9288 This allows you to set a list of commands to be run each time execution\n\
9289 of the program stops."), &cmdlist);
9290
9291   add_setshow_zuinteger_cmd ("infrun", class_maintenance, &debug_infrun, _("\
9292 Set inferior debugging."), _("\
9293 Show inferior debugging."), _("\
9294 When non-zero, inferior specific debugging is enabled."),
9295                              NULL,
9296                              show_debug_infrun,
9297                              &setdebuglist, &showdebuglist);
9298
9299   add_setshow_boolean_cmd ("displaced", class_maintenance,
9300                            &debug_displaced, _("\
9301 Set displaced stepping debugging."), _("\
9302 Show displaced stepping debugging."), _("\
9303 When non-zero, displaced stepping specific debugging is enabled."),
9304                             NULL,
9305                             show_debug_displaced,
9306                             &setdebuglist, &showdebuglist);
9307
9308   add_setshow_boolean_cmd ("non-stop", no_class,
9309                            &non_stop_1, _("\
9310 Set whether gdb controls the inferior in non-stop mode."), _("\
9311 Show whether gdb controls the inferior in non-stop mode."), _("\
9312 When debugging a multi-threaded program and this setting is\n\
9313 off (the default, also called all-stop mode), when one thread stops\n\
9314 (for a breakpoint, watchpoint, exception, or similar events), GDB stops\n\
9315 all other threads in the program while you interact with the thread of\n\
9316 interest.  When you continue or step a thread, you can allow the other\n\
9317 threads to run, or have them remain stopped, but while you inspect any\n\
9318 thread's state, all threads stop.\n\
9319 \n\
9320 In non-stop mode, when one thread stops, other threads can continue\n\
9321 to run freely.  You'll be able to step each thread independently,\n\
9322 leave it stopped or free to run as needed."),
9323                            set_non_stop,
9324                            show_non_stop,
9325                            &setlist,
9326                            &showlist);
9327
9328   numsigs = (int) GDB_SIGNAL_LAST;
9329   signal_stop = XNEWVEC (unsigned char, numsigs);
9330   signal_print = XNEWVEC (unsigned char, numsigs);
9331   signal_program = XNEWVEC (unsigned char, numsigs);
9332   signal_catch = XNEWVEC (unsigned char, numsigs);
9333   signal_pass = XNEWVEC (unsigned char, numsigs);
9334   for (i = 0; i < numsigs; i++)
9335     {
9336       signal_stop[i] = 1;
9337       signal_print[i] = 1;
9338       signal_program[i] = 1;
9339       signal_catch[i] = 0;
9340     }
9341
9342   /* Signals caused by debugger's own actions should not be given to
9343      the program afterwards.
9344
9345      Do not deliver GDB_SIGNAL_TRAP by default, except when the user
9346      explicitly specifies that it should be delivered to the target
9347      program.  Typically, that would occur when a user is debugging a
9348      target monitor on a simulator: the target monitor sets a
9349      breakpoint; the simulator encounters this breakpoint and halts
9350      the simulation handing control to GDB; GDB, noting that the stop
9351      address doesn't map to any known breakpoint, returns control back
9352      to the simulator; the simulator then delivers the hardware
9353      equivalent of a GDB_SIGNAL_TRAP to the program being
9354      debugged.  */
9355   signal_program[GDB_SIGNAL_TRAP] = 0;
9356   signal_program[GDB_SIGNAL_INT] = 0;
9357
9358   /* Signals that are not errors should not normally enter the debugger.  */
9359   signal_stop[GDB_SIGNAL_ALRM] = 0;
9360   signal_print[GDB_SIGNAL_ALRM] = 0;
9361   signal_stop[GDB_SIGNAL_VTALRM] = 0;
9362   signal_print[GDB_SIGNAL_VTALRM] = 0;
9363   signal_stop[GDB_SIGNAL_PROF] = 0;
9364   signal_print[GDB_SIGNAL_PROF] = 0;
9365   signal_stop[GDB_SIGNAL_CHLD] = 0;
9366   signal_print[GDB_SIGNAL_CHLD] = 0;
9367   signal_stop[GDB_SIGNAL_IO] = 0;
9368   signal_print[GDB_SIGNAL_IO] = 0;
9369   signal_stop[GDB_SIGNAL_POLL] = 0;
9370   signal_print[GDB_SIGNAL_POLL] = 0;
9371   signal_stop[GDB_SIGNAL_URG] = 0;
9372   signal_print[GDB_SIGNAL_URG] = 0;
9373   signal_stop[GDB_SIGNAL_WINCH] = 0;
9374   signal_print[GDB_SIGNAL_WINCH] = 0;
9375   signal_stop[GDB_SIGNAL_PRIO] = 0;
9376   signal_print[GDB_SIGNAL_PRIO] = 0;
9377
9378   /* These signals are used internally by user-level thread
9379      implementations.  (See signal(5) on Solaris.)  Like the above
9380      signals, a healthy program receives and handles them as part of
9381      its normal operation.  */
9382   signal_stop[GDB_SIGNAL_LWP] = 0;
9383   signal_print[GDB_SIGNAL_LWP] = 0;
9384   signal_stop[GDB_SIGNAL_WAITING] = 0;
9385   signal_print[GDB_SIGNAL_WAITING] = 0;
9386   signal_stop[GDB_SIGNAL_CANCEL] = 0;
9387   signal_print[GDB_SIGNAL_CANCEL] = 0;
9388   signal_stop[GDB_SIGNAL_LIBRT] = 0;
9389   signal_print[GDB_SIGNAL_LIBRT] = 0;
9390
9391   /* Update cached state.  */
9392   signal_cache_update (-1);
9393
9394   add_setshow_zinteger_cmd ("stop-on-solib-events", class_support,
9395                             &stop_on_solib_events, _("\
9396 Set stopping for shared library events."), _("\
9397 Show stopping for shared library events."), _("\
9398 If nonzero, gdb will give control to the user when the dynamic linker\n\
9399 notifies gdb of shared library events.  The most common event of interest\n\
9400 to the user would be loading/unloading of a new library."),
9401                             set_stop_on_solib_events,
9402                             show_stop_on_solib_events,
9403                             &setlist, &showlist);
9404
9405   add_setshow_enum_cmd ("follow-fork-mode", class_run,
9406                         follow_fork_mode_kind_names,
9407                         &follow_fork_mode_string, _("\
9408 Set debugger response to a program call of fork or vfork."), _("\
9409 Show debugger response to a program call of fork or vfork."), _("\
9410 A fork or vfork creates a new process.  follow-fork-mode can be:\n\
9411   parent  - the original process is debugged after a fork\n\
9412   child   - the new process is debugged after a fork\n\
9413 The unfollowed process will continue to run.\n\
9414 By default, the debugger will follow the parent process."),
9415                         NULL,
9416                         show_follow_fork_mode_string,
9417                         &setlist, &showlist);
9418
9419   add_setshow_enum_cmd ("follow-exec-mode", class_run,
9420                         follow_exec_mode_names,
9421                         &follow_exec_mode_string, _("\
9422 Set debugger response to a program call of exec."), _("\
9423 Show debugger response to a program call of exec."), _("\
9424 An exec call replaces the program image of a process.\n\
9425 \n\
9426 follow-exec-mode can be:\n\
9427 \n\
9428   new - the debugger creates a new inferior and rebinds the process\n\
9429 to this new inferior.  The program the process was running before\n\
9430 the exec call can be restarted afterwards by restarting the original\n\
9431 inferior.\n\
9432 \n\
9433   same - the debugger keeps the process bound to the same inferior.\n\
9434 The new executable image replaces the previous executable loaded in\n\
9435 the inferior.  Restarting the inferior after the exec call restarts\n\
9436 the executable the process was running after the exec call.\n\
9437 \n\
9438 By default, the debugger will use the same inferior."),
9439                         NULL,
9440                         show_follow_exec_mode_string,
9441                         &setlist, &showlist);
9442
9443   add_setshow_enum_cmd ("scheduler-locking", class_run, 
9444                         scheduler_enums, &scheduler_mode, _("\
9445 Set mode for locking scheduler during execution."), _("\
9446 Show mode for locking scheduler during execution."), _("\
9447 off    == no locking (threads may preempt at any time)\n\
9448 on     == full locking (no thread except the current thread may run)\n\
9449           This applies to both normal execution and replay mode.\n\
9450 step   == scheduler locked during stepping commands (step, next, stepi, nexti).\n\
9451           In this mode, other threads may run during other commands.\n\
9452           This applies to both normal execution and replay mode.\n\
9453 replay == scheduler locked in replay mode and unlocked during normal execution."),
9454                         set_schedlock_func,     /* traps on target vector */
9455                         show_scheduler_mode,
9456                         &setlist, &showlist);
9457
9458   add_setshow_boolean_cmd ("schedule-multiple", class_run, &sched_multi, _("\
9459 Set mode for resuming threads of all processes."), _("\
9460 Show mode for resuming threads of all processes."), _("\
9461 When on, execution commands (such as 'continue' or 'next') resume all\n\
9462 threads of all processes.  When off (which is the default), execution\n\
9463 commands only resume the threads of the current process.  The set of\n\
9464 threads that are resumed is further refined by the scheduler-locking\n\
9465 mode (see help set scheduler-locking)."),
9466                            NULL,
9467                            show_schedule_multiple,
9468                            &setlist, &showlist);
9469
9470   add_setshow_boolean_cmd ("step-mode", class_run, &step_stop_if_no_debug, _("\
9471 Set mode of the step operation."), _("\
9472 Show mode of the step operation."), _("\
9473 When set, doing a step over a function without debug line information\n\
9474 will stop at the first instruction of that function. Otherwise, the\n\
9475 function is skipped and the step command stops at a different source line."),
9476                            NULL,
9477                            show_step_stop_if_no_debug,
9478                            &setlist, &showlist);
9479
9480   add_setshow_auto_boolean_cmd ("displaced-stepping", class_run,
9481                                 &can_use_displaced_stepping, _("\
9482 Set debugger's willingness to use displaced stepping."), _("\
9483 Show debugger's willingness to use displaced stepping."), _("\
9484 If on, gdb will use displaced stepping to step over breakpoints if it is\n\
9485 supported by the target architecture.  If off, gdb will not use displaced\n\
9486 stepping to step over breakpoints, even if such is supported by the target\n\
9487 architecture.  If auto (which is the default), gdb will use displaced stepping\n\
9488 if the target architecture supports it and non-stop mode is active, but will not\n\
9489 use it in all-stop mode (see help set non-stop)."),
9490                                 NULL,
9491                                 show_can_use_displaced_stepping,
9492                                 &setlist, &showlist);
9493
9494   add_setshow_enum_cmd ("exec-direction", class_run, exec_direction_names,
9495                         &exec_direction, _("Set direction of execution.\n\
9496 Options are 'forward' or 'reverse'."),
9497                         _("Show direction of execution (forward/reverse)."),
9498                         _("Tells gdb whether to execute forward or backward."),
9499                         set_exec_direction_func, show_exec_direction_func,
9500                         &setlist, &showlist);
9501
9502   /* Set/show detach-on-fork: user-settable mode.  */
9503
9504   add_setshow_boolean_cmd ("detach-on-fork", class_run, &detach_fork, _("\
9505 Set whether gdb will detach the child of a fork."), _("\
9506 Show whether gdb will detach the child of a fork."), _("\
9507 Tells gdb whether to detach the child of a fork."),
9508                            NULL, NULL, &setlist, &showlist);
9509
9510   /* Set/show disable address space randomization mode.  */
9511
9512   add_setshow_boolean_cmd ("disable-randomization", class_support,
9513                            &disable_randomization, _("\
9514 Set disabling of debuggee's virtual address space randomization."), _("\
9515 Show disabling of debuggee's virtual address space randomization."), _("\
9516 When this mode is on (which is the default), randomization of the virtual\n\
9517 address space is disabled.  Standalone programs run with the randomization\n\
9518 enabled by default on some platforms."),
9519                            &set_disable_randomization,
9520                            &show_disable_randomization,
9521                            &setlist, &showlist);
9522
9523   /* ptid initializations */
9524   inferior_ptid = null_ptid;
9525   target_last_wait_ptid = minus_one_ptid;
9526
9527   observer_attach_thread_ptid_changed (infrun_thread_ptid_changed);
9528   observer_attach_thread_stop_requested (infrun_thread_stop_requested);
9529   observer_attach_thread_exit (infrun_thread_thread_exit);
9530   observer_attach_inferior_exit (infrun_inferior_exit);
9531
9532   /* Explicitly create without lookup, since that tries to create a
9533      value with a void typed value, and when we get here, gdbarch
9534      isn't initialized yet.  At this point, we're quite sure there
9535      isn't another convenience variable of the same name.  */
9536   create_internalvar_type_lazy ("_siginfo", &siginfo_funcs, NULL);
9537
9538   add_setshow_boolean_cmd ("observer", no_class,
9539                            &observer_mode_1, _("\
9540 Set whether gdb controls the inferior in observer mode."), _("\
9541 Show whether gdb controls the inferior in observer mode."), _("\
9542 In observer mode, GDB can get data from the inferior, but not\n\
9543 affect its execution.  Registers and memory may not be changed,\n\
9544 breakpoints may not be set, and the program cannot be interrupted\n\
9545 or signalled."),
9546                            set_observer_mode,
9547                            show_observer_mode,
9548                            &setlist,
9549                            &showlist);
9550 }