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