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