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