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