1 /* Target-struct-independent code to start (run) and stop an inferior
4 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
5 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
6 2008, 2009 Free Software Foundation, Inc.
8 This file is part of GDB.
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "gdb_string.h"
29 #include "exceptions.h"
30 #include "breakpoint.h"
34 #include "cli/cli-script.h"
36 #include "gdbthread.h"
48 #include "gdb_assert.h"
49 #include "mi/mi-common.h"
50 #include "event-top.h"
53 /* Prototypes for local functions */
55 static void signals_info (char *, int);
57 static void handle_command (char *, int);
59 static void sig_print_info (enum target_signal);
61 static void sig_print_header (void);
63 static void resume_cleanups (void *);
65 static int hook_stop_stub (void *);
67 static int restore_selected_frame (void *);
69 static void build_infrun (void);
71 static int follow_fork (void);
73 static void set_schedlock_func (char *args, int from_tty,
74 struct cmd_list_element *c);
76 static int currently_stepping (struct thread_info *tp);
78 static int currently_stepping_callback (struct thread_info *tp, void *data);
80 static void xdb_handle_command (char *args, int from_tty);
82 static int prepare_to_proceed (int);
84 void _initialize_infrun (void);
86 /* When set, stop the 'step' command if we enter a function which has
87 no line number information. The normal behavior is that we step
88 over such function. */
89 int step_stop_if_no_debug = 0;
91 show_step_stop_if_no_debug (struct ui_file *file, int from_tty,
92 struct cmd_list_element *c, const char *value)
94 fprintf_filtered (file, _("Mode of the step operation is %s.\n"), value);
97 /* In asynchronous mode, but simulating synchronous execution. */
99 int sync_execution = 0;
101 /* wait_for_inferior and normal_stop use this to notify the user
102 when the inferior stopped in a different thread than it had been
105 static ptid_t previous_inferior_ptid;
107 int debug_displaced = 0;
109 show_debug_displaced (struct ui_file *file, int from_tty,
110 struct cmd_list_element *c, const char *value)
112 fprintf_filtered (file, _("Displace stepping debugging is %s.\n"), value);
115 static int debug_infrun = 0;
117 show_debug_infrun (struct ui_file *file, int from_tty,
118 struct cmd_list_element *c, const char *value)
120 fprintf_filtered (file, _("Inferior debugging is %s.\n"), value);
123 /* If the program uses ELF-style shared libraries, then calls to
124 functions in shared libraries go through stubs, which live in a
125 table called the PLT (Procedure Linkage Table). The first time the
126 function is called, the stub sends control to the dynamic linker,
127 which looks up the function's real address, patches the stub so
128 that future calls will go directly to the function, and then passes
129 control to the function.
131 If we are stepping at the source level, we don't want to see any of
132 this --- we just want to skip over the stub and the dynamic linker.
133 The simple approach is to single-step until control leaves the
136 However, on some systems (e.g., Red Hat's 5.2 distribution) the
137 dynamic linker calls functions in the shared C library, so you
138 can't tell from the PC alone whether the dynamic linker is still
139 running. In this case, we use a step-resume breakpoint to get us
140 past the dynamic linker, as if we were using "next" to step over a
143 in_solib_dynsym_resolve_code() says whether we're in the dynamic
144 linker code or not. Normally, this means we single-step. However,
145 if SKIP_SOLIB_RESOLVER then returns non-zero, then its value is an
146 address where we can place a step-resume breakpoint to get past the
147 linker's symbol resolution function.
149 in_solib_dynsym_resolve_code() can generally be implemented in a
150 pretty portable way, by comparing the PC against the address ranges
151 of the dynamic linker's sections.
153 SKIP_SOLIB_RESOLVER is generally going to be system-specific, since
154 it depends on internal details of the dynamic linker. It's usually
155 not too hard to figure out where to put a breakpoint, but it
156 certainly isn't portable. SKIP_SOLIB_RESOLVER should do plenty of
157 sanity checking. If it can't figure things out, returning zero and
158 getting the (possibly confusing) stepping behavior is better than
159 signalling an error, which will obscure the change in the
162 /* This function returns TRUE if pc is the address of an instruction
163 that lies within the dynamic linker (such as the event hook, or the
166 This function must be used only when a dynamic linker event has
167 been caught, and the inferior is being stepped out of the hook, or
168 undefined results are guaranteed. */
170 #ifndef SOLIB_IN_DYNAMIC_LINKER
171 #define SOLIB_IN_DYNAMIC_LINKER(pid,pc) 0
175 /* Convert the #defines into values. This is temporary until wfi control
176 flow is completely sorted out. */
178 #ifndef CANNOT_STEP_HW_WATCHPOINTS
179 #define CANNOT_STEP_HW_WATCHPOINTS 0
181 #undef CANNOT_STEP_HW_WATCHPOINTS
182 #define CANNOT_STEP_HW_WATCHPOINTS 1
185 /* Tables of how to react to signals; the user sets them. */
187 static unsigned char *signal_stop;
188 static unsigned char *signal_print;
189 static unsigned char *signal_program;
191 #define SET_SIGS(nsigs,sigs,flags) \
193 int signum = (nsigs); \
194 while (signum-- > 0) \
195 if ((sigs)[signum]) \
196 (flags)[signum] = 1; \
199 #define UNSET_SIGS(nsigs,sigs,flags) \
201 int signum = (nsigs); \
202 while (signum-- > 0) \
203 if ((sigs)[signum]) \
204 (flags)[signum] = 0; \
207 /* Value to pass to target_resume() to cause all threads to resume */
209 #define RESUME_ALL (pid_to_ptid (-1))
211 /* Command list pointer for the "stop" placeholder. */
213 static struct cmd_list_element *stop_command;
215 /* Function inferior was in as of last step command. */
217 static struct symbol *step_start_function;
219 /* Nonzero if we want to give control to the user when we're notified
220 of shared library events by the dynamic linker. */
221 static int stop_on_solib_events;
223 show_stop_on_solib_events (struct ui_file *file, int from_tty,
224 struct cmd_list_element *c, const char *value)
226 fprintf_filtered (file, _("Stopping for shared library events is %s.\n"),
230 /* Nonzero means expecting a trace trap
231 and should stop the inferior and return silently when it happens. */
235 /* Save register contents here when executing a "finish" command or are
236 about to pop a stack dummy frame, if-and-only-if proceed_to_finish is set.
237 Thus this contains the return value from the called function (assuming
238 values are returned in a register). */
240 struct regcache *stop_registers;
242 /* Nonzero after stop if current stack frame should be printed. */
244 static int stop_print_frame;
246 /* This is a cached copy of the pid/waitstatus of the last event
247 returned by target_wait()/deprecated_target_wait_hook(). This
248 information is returned by get_last_target_status(). */
249 static ptid_t target_last_wait_ptid;
250 static struct target_waitstatus target_last_waitstatus;
252 static void context_switch (ptid_t ptid);
254 void init_thread_stepping_state (struct thread_info *tss);
256 void init_infwait_state (void);
258 /* This is used to remember when a fork or vfork event was caught by a
259 catchpoint, and thus the event is to be followed at the next resume
260 of the inferior, and not immediately. */
263 enum target_waitkind kind;
273 static const char follow_fork_mode_child[] = "child";
274 static const char follow_fork_mode_parent[] = "parent";
276 static const char *follow_fork_mode_kind_names[] = {
277 follow_fork_mode_child,
278 follow_fork_mode_parent,
282 static const char *follow_fork_mode_string = follow_fork_mode_parent;
284 show_follow_fork_mode_string (struct ui_file *file, int from_tty,
285 struct cmd_list_element *c, const char *value)
287 fprintf_filtered (file, _("\
288 Debugger response to a program call of fork or vfork is \"%s\".\n"),
296 int follow_child = (follow_fork_mode_string == follow_fork_mode_child);
298 return target_follow_fork (follow_child);
302 follow_inferior_reset_breakpoints (void)
304 struct thread_info *tp = inferior_thread ();
306 /* Was there a step_resume breakpoint? (There was if the user
307 did a "next" at the fork() call.) If so, explicitly reset its
310 step_resumes are a form of bp that are made to be per-thread.
311 Since we created the step_resume bp when the parent process
312 was being debugged, and now are switching to the child process,
313 from the breakpoint package's viewpoint, that's a switch of
314 "threads". We must update the bp's notion of which thread
315 it is for, or it'll be ignored when it triggers. */
317 if (tp->step_resume_breakpoint)
318 breakpoint_re_set_thread (tp->step_resume_breakpoint);
320 /* Reinsert all breakpoints in the child. The user may have set
321 breakpoints after catching the fork, in which case those
322 were never set in the child, but only in the parent. This makes
323 sure the inserted breakpoints match the breakpoint list. */
325 breakpoint_re_set ();
326 insert_breakpoints ();
329 /* EXECD_PATHNAME is assumed to be non-NULL. */
332 follow_exec (ptid_t pid, char *execd_pathname)
334 struct target_ops *tgt;
335 struct thread_info *th = inferior_thread ();
337 /* This is an exec event that we actually wish to pay attention to.
338 Refresh our symbol table to the newly exec'd program, remove any
341 If there are breakpoints, they aren't really inserted now,
342 since the exec() transformed our inferior into a fresh set
345 We want to preserve symbolic breakpoints on the list, since
346 we have hopes that they can be reset after the new a.out's
347 symbol table is read.
349 However, any "raw" breakpoints must be removed from the list
350 (e.g., the solib bp's), since their address is probably invalid
353 And, we DON'T want to call delete_breakpoints() here, since
354 that may write the bp's "shadow contents" (the instruction
355 value that was overwritten witha TRAP instruction). Since
356 we now have a new a.out, those shadow contents aren't valid. */
357 update_breakpoints_after_exec ();
359 /* If there was one, it's gone now. We cannot truly step-to-next
360 statement through an exec(). */
361 th->step_resume_breakpoint = NULL;
362 th->step_range_start = 0;
363 th->step_range_end = 0;
365 /* What is this a.out's name? */
366 printf_unfiltered (_("Executing new program: %s\n"), execd_pathname);
368 /* We've followed the inferior through an exec. Therefore, the
369 inferior has essentially been killed & reborn. */
371 gdb_flush (gdb_stdout);
373 breakpoint_init_inferior (inf_execd);
375 if (gdb_sysroot && *gdb_sysroot)
377 char *name = alloca (strlen (gdb_sysroot)
378 + strlen (execd_pathname)
380 strcpy (name, gdb_sysroot);
381 strcat (name, execd_pathname);
382 execd_pathname = name;
385 /* That a.out is now the one to use. */
386 exec_file_attach (execd_pathname, 0);
388 /* Reset the shared library package. This ensures that we get a
389 shlib event when the child reaches "_start", at which point the
390 dld will have had a chance to initialize the child. */
391 /* Also, loading a symbol file below may trigger symbol lookups, and
392 we don't want those to be satisfied by the libraries of the
393 previous incarnation of this process. */
394 no_shared_libraries (NULL, 0);
396 /* Load the main file's symbols. */
397 symbol_file_add_main (execd_pathname, 0);
399 #ifdef SOLIB_CREATE_INFERIOR_HOOK
400 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
402 solib_create_inferior_hook ();
405 /* Reinsert all breakpoints. (Those which were symbolic have
406 been reset to the proper address in the new a.out, thanks
407 to symbol_file_command...) */
408 insert_breakpoints ();
410 /* The next resume of this inferior should bring it to the shlib
411 startup breakpoints. (If the user had also set bp's on
412 "main" from the old (parent) process, then they'll auto-
413 matically get reset there in the new process.) */
416 /* Non-zero if we just simulating a single-step. This is needed
417 because we cannot remove the breakpoints in the inferior process
418 until after the `wait' in `wait_for_inferior'. */
419 static int singlestep_breakpoints_inserted_p = 0;
421 /* The thread we inserted single-step breakpoints for. */
422 static ptid_t singlestep_ptid;
424 /* PC when we started this single-step. */
425 static CORE_ADDR singlestep_pc;
427 /* If another thread hit the singlestep breakpoint, we save the original
428 thread here so that we can resume single-stepping it later. */
429 static ptid_t saved_singlestep_ptid;
430 static int stepping_past_singlestep_breakpoint;
432 /* If not equal to null_ptid, this means that after stepping over breakpoint
433 is finished, we need to switch to deferred_step_ptid, and step it.
435 The use case is when one thread has hit a breakpoint, and then the user
436 has switched to another thread and issued 'step'. We need to step over
437 breakpoint in the thread which hit the breakpoint, but then continue
438 stepping the thread user has selected. */
439 static ptid_t deferred_step_ptid;
441 /* Displaced stepping. */
443 /* In non-stop debugging mode, we must take special care to manage
444 breakpoints properly; in particular, the traditional strategy for
445 stepping a thread past a breakpoint it has hit is unsuitable.
446 'Displaced stepping' is a tactic for stepping one thread past a
447 breakpoint it has hit while ensuring that other threads running
448 concurrently will hit the breakpoint as they should.
450 The traditional way to step a thread T off a breakpoint in a
451 multi-threaded program in all-stop mode is as follows:
453 a0) Initially, all threads are stopped, and breakpoints are not
455 a1) We single-step T, leaving breakpoints uninserted.
456 a2) We insert breakpoints, and resume all threads.
458 In non-stop debugging, however, this strategy is unsuitable: we
459 don't want to have to stop all threads in the system in order to
460 continue or step T past a breakpoint. Instead, we use displaced
463 n0) Initially, T is stopped, other threads are running, and
464 breakpoints are inserted.
465 n1) We copy the instruction "under" the breakpoint to a separate
466 location, outside the main code stream, making any adjustments
467 to the instruction, register, and memory state as directed by
469 n2) We single-step T over the instruction at its new location.
470 n3) We adjust the resulting register and memory state as directed
471 by T's architecture. This includes resetting T's PC to point
472 back into the main instruction stream.
475 This approach depends on the following gdbarch methods:
477 - gdbarch_max_insn_length and gdbarch_displaced_step_location
478 indicate where to copy the instruction, and how much space must
479 be reserved there. We use these in step n1.
481 - gdbarch_displaced_step_copy_insn copies a instruction to a new
482 address, and makes any necessary adjustments to the instruction,
483 register contents, and memory. We use this in step n1.
485 - gdbarch_displaced_step_fixup adjusts registers and memory after
486 we have successfuly single-stepped the instruction, to yield the
487 same effect the instruction would have had if we had executed it
488 at its original address. We use this in step n3.
490 - gdbarch_displaced_step_free_closure provides cleanup.
492 The gdbarch_displaced_step_copy_insn and
493 gdbarch_displaced_step_fixup functions must be written so that
494 copying an instruction with gdbarch_displaced_step_copy_insn,
495 single-stepping across the copied instruction, and then applying
496 gdbarch_displaced_insn_fixup should have the same effects on the
497 thread's memory and registers as stepping the instruction in place
498 would have. Exactly which responsibilities fall to the copy and
499 which fall to the fixup is up to the author of those functions.
501 See the comments in gdbarch.sh for details.
503 Note that displaced stepping and software single-step cannot
504 currently be used in combination, although with some care I think
505 they could be made to. Software single-step works by placing
506 breakpoints on all possible subsequent instructions; if the
507 displaced instruction is a PC-relative jump, those breakpoints
508 could fall in very strange places --- on pages that aren't
509 executable, or at addresses that are not proper instruction
510 boundaries. (We do generally let other threads run while we wait
511 to hit the software single-step breakpoint, and they might
512 encounter such a corrupted instruction.) One way to work around
513 this would be to have gdbarch_displaced_step_copy_insn fully
514 simulate the effect of PC-relative instructions (and return NULL)
515 on architectures that use software single-stepping.
517 In non-stop mode, we can have independent and simultaneous step
518 requests, so more than one thread may need to simultaneously step
519 over a breakpoint. The current implementation assumes there is
520 only one scratch space per process. In this case, we have to
521 serialize access to the scratch space. If thread A wants to step
522 over a breakpoint, but we are currently waiting for some other
523 thread to complete a displaced step, we leave thread A stopped and
524 place it in the displaced_step_request_queue. Whenever a displaced
525 step finishes, we pick the next thread in the queue and start a new
526 displaced step operation on it. See displaced_step_prepare and
527 displaced_step_fixup for details. */
529 /* If this is not null_ptid, this is the thread carrying out a
530 displaced single-step. This thread's state will require fixing up
531 once it has completed its step. */
532 static ptid_t displaced_step_ptid;
534 struct displaced_step_request
537 struct displaced_step_request *next;
540 /* A queue of pending displaced stepping requests. */
541 struct displaced_step_request *displaced_step_request_queue;
543 /* The architecture the thread had when we stepped it. */
544 static struct gdbarch *displaced_step_gdbarch;
546 /* The closure provided gdbarch_displaced_step_copy_insn, to be used
547 for post-step cleanup. */
548 static struct displaced_step_closure *displaced_step_closure;
550 /* The address of the original instruction, and the copy we made. */
551 static CORE_ADDR displaced_step_original, displaced_step_copy;
553 /* Saved contents of copy area. */
554 static gdb_byte *displaced_step_saved_copy;
556 /* Enum strings for "set|show displaced-stepping". */
558 static const char can_use_displaced_stepping_auto[] = "auto";
559 static const char can_use_displaced_stepping_on[] = "on";
560 static const char can_use_displaced_stepping_off[] = "off";
561 static const char *can_use_displaced_stepping_enum[] =
563 can_use_displaced_stepping_auto,
564 can_use_displaced_stepping_on,
565 can_use_displaced_stepping_off,
569 /* If ON, and the architecture supports it, GDB will use displaced
570 stepping to step over breakpoints. If OFF, or if the architecture
571 doesn't support it, GDB will instead use the traditional
572 hold-and-step approach. If AUTO (which is the default), GDB will
573 decide which technique to use to step over breakpoints depending on
574 which of all-stop or non-stop mode is active --- displaced stepping
575 in non-stop mode; hold-and-step in all-stop mode. */
577 static const char *can_use_displaced_stepping =
578 can_use_displaced_stepping_auto;
581 show_can_use_displaced_stepping (struct ui_file *file, int from_tty,
582 struct cmd_list_element *c,
585 if (can_use_displaced_stepping == can_use_displaced_stepping_auto)
586 fprintf_filtered (file, _("\
587 Debugger's willingness to use displaced stepping to step over \
588 breakpoints is %s (currently %s).\n"),
589 value, non_stop ? "on" : "off");
591 fprintf_filtered (file, _("\
592 Debugger's willingness to use displaced stepping to step over \
593 breakpoints is %s.\n"), value);
596 /* Return non-zero if displaced stepping can/should be used to step
600 use_displaced_stepping (struct gdbarch *gdbarch)
602 return (((can_use_displaced_stepping == can_use_displaced_stepping_auto
604 || can_use_displaced_stepping == can_use_displaced_stepping_on)
605 && gdbarch_displaced_step_copy_insn_p (gdbarch)
609 /* Clean out any stray displaced stepping state. */
611 displaced_step_clear (void)
613 /* Indicate that there is no cleanup pending. */
614 displaced_step_ptid = null_ptid;
616 if (displaced_step_closure)
618 gdbarch_displaced_step_free_closure (displaced_step_gdbarch,
619 displaced_step_closure);
620 displaced_step_closure = NULL;
625 cleanup_displaced_step_closure (void *ptr)
627 struct displaced_step_closure *closure = ptr;
629 gdbarch_displaced_step_free_closure (current_gdbarch, closure);
632 /* Dump LEN bytes at BUF in hex to FILE, followed by a newline. */
634 displaced_step_dump_bytes (struct ui_file *file,
640 for (i = 0; i < len; i++)
641 fprintf_unfiltered (file, "%02x ", buf[i]);
642 fputs_unfiltered ("\n", file);
645 /* Prepare to single-step, using displaced stepping.
647 Note that we cannot use displaced stepping when we have a signal to
648 deliver. If we have a signal to deliver and an instruction to step
649 over, then after the step, there will be no indication from the
650 target whether the thread entered a signal handler or ignored the
651 signal and stepped over the instruction successfully --- both cases
652 result in a simple SIGTRAP. In the first case we mustn't do a
653 fixup, and in the second case we must --- but we can't tell which.
654 Comments in the code for 'random signals' in handle_inferior_event
655 explain how we handle this case instead.
657 Returns 1 if preparing was successful -- this thread is going to be
658 stepped now; or 0 if displaced stepping this thread got queued. */
660 displaced_step_prepare (ptid_t ptid)
662 struct cleanup *old_cleanups, *ignore_cleanups;
663 struct regcache *regcache = get_thread_regcache (ptid);
664 struct gdbarch *gdbarch = get_regcache_arch (regcache);
665 CORE_ADDR original, copy;
667 struct displaced_step_closure *closure;
669 /* We should never reach this function if the architecture does not
670 support displaced stepping. */
671 gdb_assert (gdbarch_displaced_step_copy_insn_p (gdbarch));
673 /* For the first cut, we're displaced stepping one thread at a
676 if (!ptid_equal (displaced_step_ptid, null_ptid))
678 /* Already waiting for a displaced step to finish. Defer this
679 request and place in queue. */
680 struct displaced_step_request *req, *new_req;
683 fprintf_unfiltered (gdb_stdlog,
684 "displaced: defering step of %s\n",
685 target_pid_to_str (ptid));
687 new_req = xmalloc (sizeof (*new_req));
688 new_req->ptid = ptid;
689 new_req->next = NULL;
691 if (displaced_step_request_queue)
693 for (req = displaced_step_request_queue;
700 displaced_step_request_queue = new_req;
707 fprintf_unfiltered (gdb_stdlog,
708 "displaced: stepping %s now\n",
709 target_pid_to_str (ptid));
712 displaced_step_clear ();
714 old_cleanups = save_inferior_ptid ();
715 inferior_ptid = ptid;
717 original = regcache_read_pc (regcache);
719 copy = gdbarch_displaced_step_location (gdbarch);
720 len = gdbarch_max_insn_length (gdbarch);
722 /* Save the original contents of the copy area. */
723 displaced_step_saved_copy = xmalloc (len);
724 ignore_cleanups = make_cleanup (free_current_contents,
725 &displaced_step_saved_copy);
726 read_memory (copy, displaced_step_saved_copy, len);
729 fprintf_unfiltered (gdb_stdlog, "displaced: saved 0x%s: ",
731 displaced_step_dump_bytes (gdb_stdlog, displaced_step_saved_copy, len);
734 closure = gdbarch_displaced_step_copy_insn (gdbarch,
735 original, copy, regcache);
737 /* We don't support the fully-simulated case at present. */
738 gdb_assert (closure);
740 make_cleanup (cleanup_displaced_step_closure, closure);
742 /* Resume execution at the copy. */
743 regcache_write_pc (regcache, copy);
745 discard_cleanups (ignore_cleanups);
747 do_cleanups (old_cleanups);
750 fprintf_unfiltered (gdb_stdlog, "displaced: displaced pc to 0x%s\n",
753 /* Save the information we need to fix things up if the step
755 displaced_step_ptid = ptid;
756 displaced_step_gdbarch = gdbarch;
757 displaced_step_closure = closure;
758 displaced_step_original = original;
759 displaced_step_copy = copy;
764 displaced_step_clear_cleanup (void *ignore)
766 displaced_step_clear ();
770 write_memory_ptid (ptid_t ptid, CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
772 struct cleanup *ptid_cleanup = save_inferior_ptid ();
773 inferior_ptid = ptid;
774 write_memory (memaddr, myaddr, len);
775 do_cleanups (ptid_cleanup);
779 displaced_step_fixup (ptid_t event_ptid, enum target_signal signal)
781 struct cleanup *old_cleanups;
783 /* Was this event for the pid we displaced? */
784 if (ptid_equal (displaced_step_ptid, null_ptid)
785 || ! ptid_equal (displaced_step_ptid, event_ptid))
788 old_cleanups = make_cleanup (displaced_step_clear_cleanup, 0);
790 /* Restore the contents of the copy area. */
792 ULONGEST len = gdbarch_max_insn_length (displaced_step_gdbarch);
793 write_memory_ptid (displaced_step_ptid, displaced_step_copy,
794 displaced_step_saved_copy, len);
796 fprintf_unfiltered (gdb_stdlog, "displaced: restored 0x%s\n",
797 paddr_nz (displaced_step_copy));
800 /* Did the instruction complete successfully? */
801 if (signal == TARGET_SIGNAL_TRAP)
803 /* Fix up the resulting state. */
804 gdbarch_displaced_step_fixup (displaced_step_gdbarch,
805 displaced_step_closure,
806 displaced_step_original,
808 get_thread_regcache (displaced_step_ptid));
812 /* Since the instruction didn't complete, all we can do is
814 struct regcache *regcache = get_thread_regcache (event_ptid);
815 CORE_ADDR pc = regcache_read_pc (regcache);
816 pc = displaced_step_original + (pc - displaced_step_copy);
817 regcache_write_pc (regcache, pc);
820 do_cleanups (old_cleanups);
822 displaced_step_ptid = null_ptid;
824 /* Are there any pending displaced stepping requests? If so, run
826 while (displaced_step_request_queue)
828 struct displaced_step_request *head;
832 head = displaced_step_request_queue;
834 displaced_step_request_queue = head->next;
837 context_switch (ptid);
839 actual_pc = regcache_read_pc (get_thread_regcache (ptid));
841 if (breakpoint_here_p (actual_pc))
844 fprintf_unfiltered (gdb_stdlog,
845 "displaced: stepping queued %s now\n",
846 target_pid_to_str (ptid));
848 displaced_step_prepare (ptid);
854 fprintf_unfiltered (gdb_stdlog, "displaced: run 0x%s: ",
855 paddr_nz (actual_pc));
856 read_memory (actual_pc, buf, sizeof (buf));
857 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
860 target_resume (ptid, 1, TARGET_SIGNAL_0);
862 /* Done, we're stepping a thread. */
868 struct thread_info *tp = inferior_thread ();
870 /* The breakpoint we were sitting under has since been
872 tp->trap_expected = 0;
874 /* Go back to what we were trying to do. */
875 step = currently_stepping (tp);
878 fprintf_unfiltered (gdb_stdlog, "breakpoint is gone %s: step(%d)\n",
879 target_pid_to_str (tp->ptid), step);
881 target_resume (ptid, step, TARGET_SIGNAL_0);
882 tp->stop_signal = TARGET_SIGNAL_0;
884 /* This request was discarded. See if there's any other
885 thread waiting for its turn. */
890 /* Update global variables holding ptids to hold NEW_PTID if they were
893 infrun_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
895 struct displaced_step_request *it;
897 if (ptid_equal (inferior_ptid, old_ptid))
898 inferior_ptid = new_ptid;
900 if (ptid_equal (singlestep_ptid, old_ptid))
901 singlestep_ptid = new_ptid;
903 if (ptid_equal (displaced_step_ptid, old_ptid))
904 displaced_step_ptid = new_ptid;
906 if (ptid_equal (deferred_step_ptid, old_ptid))
907 deferred_step_ptid = new_ptid;
909 for (it = displaced_step_request_queue; it; it = it->next)
910 if (ptid_equal (it->ptid, old_ptid))
917 /* Things to clean up if we QUIT out of resume (). */
919 resume_cleanups (void *ignore)
924 static const char schedlock_off[] = "off";
925 static const char schedlock_on[] = "on";
926 static const char schedlock_step[] = "step";
927 static const char *scheduler_enums[] = {
933 static const char *scheduler_mode = schedlock_off;
935 show_scheduler_mode (struct ui_file *file, int from_tty,
936 struct cmd_list_element *c, const char *value)
938 fprintf_filtered (file, _("\
939 Mode for locking scheduler during execution is \"%s\".\n"),
944 set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
946 if (!target_can_lock_scheduler)
948 scheduler_mode = schedlock_off;
949 error (_("Target '%s' cannot support this command."), target_shortname);
953 /* Try to setup for software single stepping over the specified location.
954 Return 1 if target_resume() should use hardware single step.
956 GDBARCH the current gdbarch.
957 PC the location to step over. */
960 maybe_software_singlestep (struct gdbarch *gdbarch, CORE_ADDR pc)
964 if (gdbarch_software_single_step_p (gdbarch)
965 && gdbarch_software_single_step (gdbarch, get_current_frame ()))
968 /* Do not pull these breakpoints until after a `wait' in
969 `wait_for_inferior' */
970 singlestep_breakpoints_inserted_p = 1;
971 singlestep_ptid = inferior_ptid;
977 /* Resume the inferior, but allow a QUIT. This is useful if the user
978 wants to interrupt some lengthy single-stepping operation
979 (for child processes, the SIGINT goes to the inferior, and so
980 we get a SIGINT random_signal, but for remote debugging and perhaps
981 other targets, that's not true).
983 STEP nonzero if we should step (zero to continue instead).
984 SIG is the signal to give the inferior (zero for none). */
986 resume (int step, enum target_signal sig)
988 int should_resume = 1;
989 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
991 /* Note that these must be reset if we follow a fork below. */
992 struct regcache *regcache = get_current_regcache ();
993 struct gdbarch *gdbarch = get_regcache_arch (regcache);
994 struct thread_info *tp = inferior_thread ();
995 CORE_ADDR pc = regcache_read_pc (regcache);
1000 fprintf_unfiltered (gdb_stdlog,
1001 "infrun: resume (step=%d, signal=%d), "
1002 "trap_expected=%d\n",
1003 step, sig, tp->trap_expected);
1005 /* Some targets (e.g. Solaris x86) have a kernel bug when stepping
1006 over an instruction that causes a page fault without triggering
1007 a hardware watchpoint. The kernel properly notices that it shouldn't
1008 stop, because the hardware watchpoint is not triggered, but it forgets
1009 the step request and continues the program normally.
1010 Work around the problem by removing hardware watchpoints if a step is
1011 requested, GDB will check for a hardware watchpoint trigger after the
1013 if (CANNOT_STEP_HW_WATCHPOINTS && step)
1014 remove_hw_watchpoints ();
1017 /* Normally, by the time we reach `resume', the breakpoints are either
1018 removed or inserted, as appropriate. The exception is if we're sitting
1019 at a permanent breakpoint; we need to step over it, but permanent
1020 breakpoints can't be removed. So we have to test for it here. */
1021 if (breakpoint_here_p (pc) == permanent_breakpoint_here)
1023 if (gdbarch_skip_permanent_breakpoint_p (gdbarch))
1024 gdbarch_skip_permanent_breakpoint (gdbarch, regcache);
1027 The program is stopped at a permanent breakpoint, but GDB does not know\n\
1028 how to step past a permanent breakpoint on this architecture. Try using\n\
1029 a command like `return' or `jump' to continue execution."));
1032 /* If enabled, step over breakpoints by executing a copy of the
1033 instruction at a different address.
1035 We can't use displaced stepping when we have a signal to deliver;
1036 the comments for displaced_step_prepare explain why. The
1037 comments in the handle_inferior event for dealing with 'random
1038 signals' explain what we do instead. */
1039 if (use_displaced_stepping (gdbarch)
1040 && tp->trap_expected
1041 && sig == TARGET_SIGNAL_0)
1043 if (!displaced_step_prepare (inferior_ptid))
1045 /* Got placed in displaced stepping queue. Will be resumed
1046 later when all the currently queued displaced stepping
1047 requests finish. The thread is not executing at this point,
1048 and the call to set_executing will be made later. But we
1049 need to call set_running here, since from frontend point of view,
1050 the thread is running. */
1051 set_running (inferior_ptid, 1);
1052 discard_cleanups (old_cleanups);
1057 /* Do we need to do it the hard way, w/temp breakpoints? */
1059 step = maybe_software_singlestep (gdbarch, pc);
1061 /* If there were any forks/vforks/execs that were caught and are
1062 now to be followed, then do so. */
1063 switch (pending_follow.kind)
1065 case TARGET_WAITKIND_FORKED:
1066 case TARGET_WAITKIND_VFORKED:
1067 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
1071 /* Following a child fork will change our notion of current
1073 tp = inferior_thread ();
1074 regcache = get_current_regcache ();
1075 gdbarch = get_regcache_arch (regcache);
1076 pc = regcache_read_pc (regcache);
1083 /* Install inferior's terminal modes. */
1084 target_terminal_inferior ();
1090 resume_ptid = RESUME_ALL; /* Default */
1092 /* If STEP is set, it's a request to use hardware stepping
1093 facilities. But in that case, we should never
1094 use singlestep breakpoint. */
1095 gdb_assert (!(singlestep_breakpoints_inserted_p && step));
1097 if (singlestep_breakpoints_inserted_p
1098 && stepping_past_singlestep_breakpoint)
1100 /* The situation here is as follows. In thread T1 we wanted to
1101 single-step. Lacking hardware single-stepping we've
1102 set breakpoint at the PC of the next instruction -- call it
1103 P. After resuming, we've hit that breakpoint in thread T2.
1104 Now we've removed original breakpoint, inserted breakpoint
1105 at P+1, and try to step to advance T2 past breakpoint.
1106 We need to step only T2, as if T1 is allowed to freely run,
1107 it can run past P, and if other threads are allowed to run,
1108 they can hit breakpoint at P+1, and nested hits of single-step
1109 breakpoints is not something we'd want -- that's complicated
1110 to support, and has no value. */
1111 resume_ptid = inferior_ptid;
1114 if ((step || singlestep_breakpoints_inserted_p)
1115 && tp->trap_expected)
1117 /* We're allowing a thread to run past a breakpoint it has
1118 hit, by single-stepping the thread with the breakpoint
1119 removed. In which case, we need to single-step only this
1120 thread, and keep others stopped, as they can miss this
1121 breakpoint if allowed to run.
1123 The current code actually removes all breakpoints when
1124 doing this, not just the one being stepped over, so if we
1125 let other threads run, we can actually miss any
1126 breakpoint, not just the one at PC. */
1127 resume_ptid = inferior_ptid;
1132 /* With non-stop mode on, threads are always handled
1134 resume_ptid = inferior_ptid;
1136 else if ((scheduler_mode == schedlock_on)
1137 || (scheduler_mode == schedlock_step
1138 && (step || singlestep_breakpoints_inserted_p)))
1140 /* User-settable 'scheduler' mode requires solo thread resume. */
1141 resume_ptid = inferior_ptid;
1144 if (gdbarch_cannot_step_breakpoint (gdbarch))
1146 /* Most targets can step a breakpoint instruction, thus
1147 executing it normally. But if this one cannot, just
1148 continue and we will hit it anyway. */
1149 if (step && breakpoint_inserted_here_p (pc))
1154 && use_displaced_stepping (gdbarch)
1155 && tp->trap_expected)
1157 struct regcache *resume_regcache = get_thread_regcache (resume_ptid);
1158 CORE_ADDR actual_pc = regcache_read_pc (resume_regcache);
1161 fprintf_unfiltered (gdb_stdlog, "displaced: run 0x%s: ",
1162 paddr_nz (actual_pc));
1163 read_memory (actual_pc, buf, sizeof (buf));
1164 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
1167 /* Avoid confusing the next resume, if the next stop/resume
1168 happens to apply to another thread. */
1169 tp->stop_signal = TARGET_SIGNAL_0;
1171 target_resume (resume_ptid, step, sig);
1174 discard_cleanups (old_cleanups);
1179 /* Clear out all variables saying what to do when inferior is continued.
1180 First do this, then set the ones you want, then call `proceed'. */
1183 clear_proceed_status_thread (struct thread_info *tp)
1186 fprintf_unfiltered (gdb_stdlog,
1187 "infrun: clear_proceed_status_thread (%s)\n",
1188 target_pid_to_str (tp->ptid));
1190 tp->trap_expected = 0;
1191 tp->step_range_start = 0;
1192 tp->step_range_end = 0;
1193 tp->step_frame_id = null_frame_id;
1194 tp->step_over_calls = STEP_OVER_UNDEBUGGABLE;
1195 tp->stop_requested = 0;
1199 tp->proceed_to_finish = 0;
1201 /* Discard any remaining commands or status from previous stop. */
1202 bpstat_clear (&tp->stop_bpstat);
1206 clear_proceed_status_callback (struct thread_info *tp, void *data)
1208 if (is_exited (tp->ptid))
1211 clear_proceed_status_thread (tp);
1216 clear_proceed_status (void)
1218 if (!ptid_equal (inferior_ptid, null_ptid))
1220 struct inferior *inferior;
1224 /* If in non-stop mode, only delete the per-thread status
1225 of the current thread. */
1226 clear_proceed_status_thread (inferior_thread ());
1230 /* In all-stop mode, delete the per-thread status of
1232 iterate_over_threads (clear_proceed_status_callback, NULL);
1235 inferior = current_inferior ();
1236 inferior->stop_soon = NO_STOP_QUIETLY;
1239 stop_after_trap = 0;
1241 observer_notify_about_to_proceed ();
1245 regcache_xfree (stop_registers);
1246 stop_registers = NULL;
1250 /* This should be suitable for any targets that support threads. */
1253 prepare_to_proceed (int step)
1256 struct target_waitstatus wait_status;
1258 /* Get the last target status returned by target_wait(). */
1259 get_last_target_status (&wait_ptid, &wait_status);
1261 /* Make sure we were stopped at a breakpoint. */
1262 if (wait_status.kind != TARGET_WAITKIND_STOPPED
1263 || wait_status.value.sig != TARGET_SIGNAL_TRAP)
1268 /* Switched over from WAIT_PID. */
1269 if (!ptid_equal (wait_ptid, minus_one_ptid)
1270 && !ptid_equal (inferior_ptid, wait_ptid))
1272 struct regcache *regcache = get_thread_regcache (wait_ptid);
1274 if (breakpoint_here_p (regcache_read_pc (regcache)))
1276 /* If stepping, remember current thread to switch back to. */
1278 deferred_step_ptid = inferior_ptid;
1280 /* Switch back to WAIT_PID thread. */
1281 switch_to_thread (wait_ptid);
1283 /* We return 1 to indicate that there is a breakpoint here,
1284 so we need to step over it before continuing to avoid
1285 hitting it straight away. */
1293 /* Basic routine for continuing the program in various fashions.
1295 ADDR is the address to resume at, or -1 for resume where stopped.
1296 SIGGNAL is the signal to give it, or 0 for none,
1297 or -1 for act according to how it stopped.
1298 STEP is nonzero if should trap after one instruction.
1299 -1 means return after that and print nothing.
1300 You should probably set various step_... variables
1301 before calling here, if you are stepping.
1303 You should call clear_proceed_status before calling proceed. */
1306 proceed (CORE_ADDR addr, enum target_signal siggnal, int step)
1308 struct regcache *regcache = get_current_regcache ();
1309 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1310 struct thread_info *tp;
1311 CORE_ADDR pc = regcache_read_pc (regcache);
1315 step_start_function = find_pc_function (pc);
1317 stop_after_trap = 1;
1319 if (addr == (CORE_ADDR) -1)
1321 if (pc == stop_pc && breakpoint_here_p (pc)
1322 && execution_direction != EXEC_REVERSE)
1323 /* There is a breakpoint at the address we will resume at,
1324 step one instruction before inserting breakpoints so that
1325 we do not stop right away (and report a second hit at this
1328 Note, we don't do this in reverse, because we won't
1329 actually be executing the breakpoint insn anyway.
1330 We'll be (un-)executing the previous instruction. */
1333 else if (gdbarch_single_step_through_delay_p (gdbarch)
1334 && gdbarch_single_step_through_delay (gdbarch,
1335 get_current_frame ()))
1336 /* We stepped onto an instruction that needs to be stepped
1337 again before re-inserting the breakpoint, do so. */
1342 regcache_write_pc (regcache, addr);
1346 fprintf_unfiltered (gdb_stdlog,
1347 "infrun: proceed (addr=0x%s, signal=%d, step=%d)\n",
1348 paddr_nz (addr), siggnal, step);
1351 /* In non-stop, each thread is handled individually. The context
1352 must already be set to the right thread here. */
1356 /* In a multi-threaded task we may select another thread and
1357 then continue or step.
1359 But if the old thread was stopped at a breakpoint, it will
1360 immediately cause another breakpoint stop without any
1361 execution (i.e. it will report a breakpoint hit incorrectly).
1362 So we must step over it first.
1364 prepare_to_proceed checks the current thread against the
1365 thread that reported the most recent event. If a step-over
1366 is required it returns TRUE and sets the current thread to
1368 if (prepare_to_proceed (step))
1372 /* prepare_to_proceed may change the current thread. */
1373 tp = inferior_thread ();
1377 tp->trap_expected = 1;
1378 /* If displaced stepping is enabled, we can step over the
1379 breakpoint without hitting it, so leave all breakpoints
1380 inserted. Otherwise we need to disable all breakpoints, step
1381 one instruction, and then re-add them when that step is
1383 if (!use_displaced_stepping (gdbarch))
1384 remove_breakpoints ();
1387 /* We can insert breakpoints if we're not trying to step over one,
1388 or if we are stepping over one but we're using displaced stepping
1390 if (! tp->trap_expected || use_displaced_stepping (gdbarch))
1391 insert_breakpoints ();
1395 /* Pass the last stop signal to the thread we're resuming,
1396 irrespective of whether the current thread is the thread that
1397 got the last event or not. This was historically GDB's
1398 behaviour before keeping a stop_signal per thread. */
1400 struct thread_info *last_thread;
1402 struct target_waitstatus last_status;
1404 get_last_target_status (&last_ptid, &last_status);
1405 if (!ptid_equal (inferior_ptid, last_ptid)
1406 && !ptid_equal (last_ptid, null_ptid)
1407 && !ptid_equal (last_ptid, minus_one_ptid))
1409 last_thread = find_thread_pid (last_ptid);
1412 tp->stop_signal = last_thread->stop_signal;
1413 last_thread->stop_signal = TARGET_SIGNAL_0;
1418 if (siggnal != TARGET_SIGNAL_DEFAULT)
1419 tp->stop_signal = siggnal;
1420 /* If this signal should not be seen by program,
1421 give it zero. Used for debugging signals. */
1422 else if (!signal_program[tp->stop_signal])
1423 tp->stop_signal = TARGET_SIGNAL_0;
1425 annotate_starting ();
1427 /* Make sure that output from GDB appears before output from the
1429 gdb_flush (gdb_stdout);
1431 /* Refresh prev_pc value just prior to resuming. This used to be
1432 done in stop_stepping, however, setting prev_pc there did not handle
1433 scenarios such as inferior function calls or returning from
1434 a function via the return command. In those cases, the prev_pc
1435 value was not set properly for subsequent commands. The prev_pc value
1436 is used to initialize the starting line number in the ecs. With an
1437 invalid value, the gdb next command ends up stopping at the position
1438 represented by the next line table entry past our start position.
1439 On platforms that generate one line table entry per line, this
1440 is not a problem. However, on the ia64, the compiler generates
1441 extraneous line table entries that do not increase the line number.
1442 When we issue the gdb next command on the ia64 after an inferior call
1443 or a return command, we often end up a few instructions forward, still
1444 within the original line we started.
1446 An attempt was made to have init_execution_control_state () refresh
1447 the prev_pc value before calculating the line number. This approach
1448 did not work because on platforms that use ptrace, the pc register
1449 cannot be read unless the inferior is stopped. At that point, we
1450 are not guaranteed the inferior is stopped and so the regcache_read_pc ()
1451 call can fail. Setting the prev_pc value here ensures the value is
1452 updated correctly when the inferior is stopped. */
1453 tp->prev_pc = regcache_read_pc (get_current_regcache ());
1455 /* Fill in with reasonable starting values. */
1456 init_thread_stepping_state (tp);
1458 /* Reset to normal state. */
1459 init_infwait_state ();
1461 /* Resume inferior. */
1462 resume (oneproc || step || bpstat_should_step (), tp->stop_signal);
1464 /* Wait for it to stop (if not standalone)
1465 and in any case decode why it stopped, and act accordingly. */
1466 /* Do this only if we are not using the event loop, or if the target
1467 does not support asynchronous execution. */
1468 if (!target_can_async_p ())
1470 wait_for_inferior (0);
1476 /* Start remote-debugging of a machine over a serial link. */
1479 start_remote (int from_tty)
1481 struct inferior *inferior;
1482 init_wait_for_inferior ();
1484 inferior = current_inferior ();
1485 inferior->stop_soon = STOP_QUIETLY_REMOTE;
1487 /* Always go on waiting for the target, regardless of the mode. */
1488 /* FIXME: cagney/1999-09-23: At present it isn't possible to
1489 indicate to wait_for_inferior that a target should timeout if
1490 nothing is returned (instead of just blocking). Because of this,
1491 targets expecting an immediate response need to, internally, set
1492 things up so that the target_wait() is forced to eventually
1494 /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
1495 differentiate to its caller what the state of the target is after
1496 the initial open has been performed. Here we're assuming that
1497 the target has stopped. It should be possible to eventually have
1498 target_open() return to the caller an indication that the target
1499 is currently running and GDB state should be set to the same as
1500 for an async run. */
1501 wait_for_inferior (0);
1503 /* Now that the inferior has stopped, do any bookkeeping like
1504 loading shared libraries. We want to do this before normal_stop,
1505 so that the displayed frame is up to date. */
1506 post_create_inferior (¤t_target, from_tty);
1511 /* Initialize static vars when a new inferior begins. */
1514 init_wait_for_inferior (void)
1516 /* These are meaningless until the first time through wait_for_inferior. */
1518 breakpoint_init_inferior (inf_starting);
1520 /* The first resume is not following a fork/vfork/exec. */
1521 pending_follow.kind = TARGET_WAITKIND_SPURIOUS; /* I.e., none. */
1523 clear_proceed_status ();
1525 stepping_past_singlestep_breakpoint = 0;
1526 deferred_step_ptid = null_ptid;
1528 target_last_wait_ptid = minus_one_ptid;
1530 previous_inferior_ptid = null_ptid;
1531 init_infwait_state ();
1533 displaced_step_clear ();
1537 /* This enum encodes possible reasons for doing a target_wait, so that
1538 wfi can call target_wait in one place. (Ultimately the call will be
1539 moved out of the infinite loop entirely.) */
1543 infwait_normal_state,
1544 infwait_thread_hop_state,
1545 infwait_step_watch_state,
1546 infwait_nonstep_watch_state
1549 /* Why did the inferior stop? Used to print the appropriate messages
1550 to the interface from within handle_inferior_event(). */
1551 enum inferior_stop_reason
1553 /* Step, next, nexti, stepi finished. */
1555 /* Inferior terminated by signal. */
1557 /* Inferior exited. */
1559 /* Inferior received signal, and user asked to be notified. */
1561 /* Reverse execution -- target ran out of history info. */
1565 /* The PTID we'll do a target_wait on.*/
1568 /* Current inferior wait state. */
1569 enum infwait_states infwait_state;
1571 /* Data to be passed around while handling an event. This data is
1572 discarded between events. */
1573 struct execution_control_state
1576 /* The thread that got the event, if this was a thread event; NULL
1578 struct thread_info *event_thread;
1580 struct target_waitstatus ws;
1582 CORE_ADDR stop_func_start;
1583 CORE_ADDR stop_func_end;
1584 char *stop_func_name;
1585 int new_thread_event;
1589 void init_execution_control_state (struct execution_control_state *ecs);
1591 void handle_inferior_event (struct execution_control_state *ecs);
1593 static void handle_step_into_function (struct execution_control_state *ecs);
1594 static void handle_step_into_function_backward (struct execution_control_state *ecs);
1595 static void insert_step_resume_breakpoint_at_frame (struct frame_info *step_frame);
1596 static void insert_step_resume_breakpoint_at_caller (struct frame_info *);
1597 static void insert_step_resume_breakpoint_at_sal (struct symtab_and_line sr_sal,
1598 struct frame_id sr_id);
1599 static void insert_longjmp_resume_breakpoint (CORE_ADDR);
1601 static void stop_stepping (struct execution_control_state *ecs);
1602 static void prepare_to_wait (struct execution_control_state *ecs);
1603 static void keep_going (struct execution_control_state *ecs);
1604 static void print_stop_reason (enum inferior_stop_reason stop_reason,
1607 /* Callback for iterate over threads. If the thread is stopped, but
1608 the user/frontend doesn't know about that yet, go through
1609 normal_stop, as if the thread had just stopped now. ARG points at
1610 a ptid. If PTID is MINUS_ONE_PTID, applies to all threads. If
1611 ptid_is_pid(PTID) is true, applies to all threads of the process
1612 pointed at by PTID. Otherwise, apply only to the thread pointed by
1616 infrun_thread_stop_requested_callback (struct thread_info *info, void *arg)
1618 ptid_t ptid = * (ptid_t *) arg;
1620 if ((ptid_equal (info->ptid, ptid)
1621 || ptid_equal (minus_one_ptid, ptid)
1622 || (ptid_is_pid (ptid)
1623 && ptid_get_pid (ptid) == ptid_get_pid (info->ptid)))
1624 && is_running (info->ptid)
1625 && !is_executing (info->ptid))
1627 struct cleanup *old_chain;
1628 struct execution_control_state ecss;
1629 struct execution_control_state *ecs = &ecss;
1631 memset (ecs, 0, sizeof (*ecs));
1633 old_chain = make_cleanup_restore_current_thread ();
1635 switch_to_thread (info->ptid);
1637 /* Go through handle_inferior_event/normal_stop, so we always
1638 have consistent output as if the stop event had been
1640 ecs->ptid = info->ptid;
1641 ecs->event_thread = find_thread_pid (info->ptid);
1642 ecs->ws.kind = TARGET_WAITKIND_STOPPED;
1643 ecs->ws.value.sig = TARGET_SIGNAL_0;
1645 handle_inferior_event (ecs);
1647 if (!ecs->wait_some_more)
1649 struct thread_info *tp;
1653 /* Finish off the continuations. The continations
1654 themselves are responsible for realising the thread
1655 didn't finish what it was supposed to do. */
1656 tp = inferior_thread ();
1657 do_all_intermediate_continuations_thread (tp);
1658 do_all_continuations_thread (tp);
1661 do_cleanups (old_chain);
1667 /* This function is attached as a "thread_stop_requested" observer.
1668 Cleanup local state that assumed the PTID was to be resumed, and
1669 report the stop to the frontend. */
1672 infrun_thread_stop_requested (ptid_t ptid)
1674 struct displaced_step_request *it, *next, *prev = NULL;
1676 /* PTID was requested to stop. Remove it from the displaced
1677 stepping queue, so we don't try to resume it automatically. */
1678 for (it = displaced_step_request_queue; it; it = next)
1682 if (ptid_equal (it->ptid, ptid)
1683 || ptid_equal (minus_one_ptid, ptid)
1684 || (ptid_is_pid (ptid)
1685 && ptid_get_pid (ptid) == ptid_get_pid (it->ptid)))
1687 if (displaced_step_request_queue == it)
1688 displaced_step_request_queue = it->next;
1690 prev->next = it->next;
1698 iterate_over_threads (infrun_thread_stop_requested_callback, &ptid);
1701 void nullify_last_target_wait_ptid (void);
1704 infrun_thread_thread_exit (struct thread_info *tp, int silent)
1706 if (ptid_equal (target_last_wait_ptid, tp->ptid))
1707 nullify_last_target_wait_ptid ();
1710 /* Callback for iterate_over_threads. */
1713 delete_step_resume_breakpoint_callback (struct thread_info *info, void *data)
1715 if (is_exited (info->ptid))
1718 delete_step_resume_breakpoint (info);
1722 /* In all-stop, delete the step resume breakpoint of any thread that
1723 had one. In non-stop, delete the step resume breakpoint of the
1724 thread that just stopped. */
1727 delete_step_thread_step_resume_breakpoint (void)
1729 if (!target_has_execution
1730 || ptid_equal (inferior_ptid, null_ptid))
1731 /* If the inferior has exited, we have already deleted the step
1732 resume breakpoints out of GDB's lists. */
1737 /* If in non-stop mode, only delete the step-resume or
1738 longjmp-resume breakpoint of the thread that just stopped
1740 struct thread_info *tp = inferior_thread ();
1741 delete_step_resume_breakpoint (tp);
1744 /* In all-stop mode, delete all step-resume and longjmp-resume
1745 breakpoints of any thread that had them. */
1746 iterate_over_threads (delete_step_resume_breakpoint_callback, NULL);
1749 /* A cleanup wrapper. */
1752 delete_step_thread_step_resume_breakpoint_cleanup (void *arg)
1754 delete_step_thread_step_resume_breakpoint ();
1757 /* Pretty print the results of target_wait, for debugging purposes. */
1760 print_target_wait_results (ptid_t waiton_ptid, ptid_t result_ptid,
1761 const struct target_waitstatus *ws)
1763 char *status_string = target_waitstatus_to_string (ws);
1764 struct ui_file *tmp_stream = mem_fileopen ();
1768 /* The text is split over several lines because it was getting too long.
1769 Call fprintf_unfiltered (gdb_stdlog) once so that the text is still
1770 output as a unit; we want only one timestamp printed if debug_timestamp
1773 fprintf_unfiltered (tmp_stream,
1774 "infrun: target_wait (%d", PIDGET (waiton_ptid));
1775 if (PIDGET (waiton_ptid) != -1)
1776 fprintf_unfiltered (tmp_stream,
1777 " [%s]", target_pid_to_str (waiton_ptid));
1778 fprintf_unfiltered (tmp_stream, ", status) =\n");
1779 fprintf_unfiltered (tmp_stream,
1780 "infrun: %d [%s],\n",
1781 PIDGET (result_ptid), target_pid_to_str (result_ptid));
1782 fprintf_unfiltered (tmp_stream,
1786 text = ui_file_xstrdup (tmp_stream, &len);
1788 /* This uses %s in part to handle %'s in the text, but also to avoid
1789 a gcc error: the format attribute requires a string literal. */
1790 fprintf_unfiltered (gdb_stdlog, "%s", text);
1792 xfree (status_string);
1794 ui_file_delete (tmp_stream);
1797 /* Wait for control to return from inferior to debugger.
1799 If TREAT_EXEC_AS_SIGTRAP is non-zero, then handle EXEC signals
1800 as if they were SIGTRAP signals. This can be useful during
1801 the startup sequence on some targets such as HP/UX, where
1802 we receive an EXEC event instead of the expected SIGTRAP.
1804 If inferior gets a signal, we may decide to start it up again
1805 instead of returning. That is why there is a loop in this function.
1806 When this function actually returns it means the inferior
1807 should be left stopped and GDB should read more commands. */
1810 wait_for_inferior (int treat_exec_as_sigtrap)
1812 struct cleanup *old_cleanups;
1813 struct execution_control_state ecss;
1814 struct execution_control_state *ecs;
1818 (gdb_stdlog, "infrun: wait_for_inferior (treat_exec_as_sigtrap=%d)\n",
1819 treat_exec_as_sigtrap);
1822 make_cleanup (delete_step_thread_step_resume_breakpoint_cleanup, NULL);
1825 memset (ecs, 0, sizeof (*ecs));
1827 overlay_cache_invalid = 1;
1829 /* We'll update this if & when we switch to a new thread. */
1830 previous_inferior_ptid = inferior_ptid;
1832 /* We have to invalidate the registers BEFORE calling target_wait
1833 because they can be loaded from the target while in target_wait.
1834 This makes remote debugging a bit more efficient for those
1835 targets that provide critical registers as part of their normal
1836 status mechanism. */
1838 registers_changed ();
1842 struct cleanup *old_chain;
1844 if (deprecated_target_wait_hook)
1845 ecs->ptid = deprecated_target_wait_hook (waiton_ptid, &ecs->ws);
1847 ecs->ptid = target_wait (waiton_ptid, &ecs->ws);
1850 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
1852 if (treat_exec_as_sigtrap && ecs->ws.kind == TARGET_WAITKIND_EXECD)
1854 xfree (ecs->ws.value.execd_pathname);
1855 ecs->ws.kind = TARGET_WAITKIND_STOPPED;
1856 ecs->ws.value.sig = TARGET_SIGNAL_TRAP;
1859 /* If an error happens while handling the event, propagate GDB's
1860 knowledge of the executing state to the frontend/user running
1862 old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
1864 /* Now figure out what to do with the result of the result. */
1865 handle_inferior_event (ecs);
1867 /* No error, don't finish the state yet. */
1868 discard_cleanups (old_chain);
1870 if (!ecs->wait_some_more)
1874 do_cleanups (old_cleanups);
1877 /* Asynchronous version of wait_for_inferior. It is called by the
1878 event loop whenever a change of state is detected on the file
1879 descriptor corresponding to the target. It can be called more than
1880 once to complete a single execution command. In such cases we need
1881 to keep the state in a global variable ECSS. If it is the last time
1882 that this function is called for a single execution command, then
1883 report to the user that the inferior has stopped, and do the
1884 necessary cleanups. */
1887 fetch_inferior_event (void *client_data)
1889 struct execution_control_state ecss;
1890 struct execution_control_state *ecs = &ecss;
1891 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
1892 struct cleanup *ts_old_chain;
1893 int was_sync = sync_execution;
1895 memset (ecs, 0, sizeof (*ecs));
1897 overlay_cache_invalid = 1;
1899 /* We can only rely on wait_for_more being correct before handling
1900 the event in all-stop, but previous_inferior_ptid isn't used in
1902 if (!ecs->wait_some_more)
1903 /* We'll update this if & when we switch to a new thread. */
1904 previous_inferior_ptid = inferior_ptid;
1907 /* In non-stop mode, the user/frontend should not notice a thread
1908 switch due to internal events. Make sure we reverse to the
1909 user selected thread and frame after handling the event and
1910 running any breakpoint commands. */
1911 make_cleanup_restore_current_thread ();
1913 /* We have to invalidate the registers BEFORE calling target_wait
1914 because they can be loaded from the target while in target_wait.
1915 This makes remote debugging a bit more efficient for those
1916 targets that provide critical registers as part of their normal
1917 status mechanism. */
1919 registers_changed ();
1921 if (deprecated_target_wait_hook)
1923 deprecated_target_wait_hook (waiton_ptid, &ecs->ws);
1925 ecs->ptid = target_wait (waiton_ptid, &ecs->ws);
1928 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
1931 && ecs->ws.kind != TARGET_WAITKIND_IGNORE
1932 && ecs->ws.kind != TARGET_WAITKIND_EXITED
1933 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED)
1934 /* In non-stop mode, each thread is handled individually. Switch
1935 early, so the global state is set correctly for this
1937 context_switch (ecs->ptid);
1939 /* If an error happens while handling the event, propagate GDB's
1940 knowledge of the executing state to the frontend/user running
1943 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
1945 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &ecs->ptid);
1947 /* Now figure out what to do with the result of the result. */
1948 handle_inferior_event (ecs);
1950 if (!ecs->wait_some_more)
1952 struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
1954 delete_step_thread_step_resume_breakpoint ();
1956 /* We may not find an inferior if this was a process exit. */
1957 if (inf == NULL || inf->stop_soon == NO_STOP_QUIETLY)
1960 if (target_has_execution
1961 && ecs->ws.kind != TARGET_WAITKIND_EXITED
1962 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
1963 && ecs->event_thread->step_multi
1964 && ecs->event_thread->stop_step)
1965 inferior_event_handler (INF_EXEC_CONTINUE, NULL);
1967 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
1970 /* No error, don't finish the thread states yet. */
1971 discard_cleanups (ts_old_chain);
1973 /* Revert thread and frame. */
1974 do_cleanups (old_chain);
1976 /* If the inferior was in sync execution mode, and now isn't,
1977 restore the prompt. */
1978 if (was_sync && !sync_execution)
1979 display_gdb_prompt (0);
1982 /* Prepare an execution control state for looping through a
1983 wait_for_inferior-type loop. */
1986 init_execution_control_state (struct execution_control_state *ecs)
1988 ecs->random_signal = 0;
1991 /* Clear context switchable stepping state. */
1994 init_thread_stepping_state (struct thread_info *tss)
1996 struct symtab_and_line sal;
1998 tss->stepping_over_breakpoint = 0;
1999 tss->step_after_step_resume_breakpoint = 0;
2000 tss->stepping_through_solib_after_catch = 0;
2001 tss->stepping_through_solib_catchpoints = NULL;
2003 sal = find_pc_line (tss->prev_pc, 0);
2004 tss->current_line = sal.line;
2005 tss->current_symtab = sal.symtab;
2008 /* Return the cached copy of the last pid/waitstatus returned by
2009 target_wait()/deprecated_target_wait_hook(). The data is actually
2010 cached by handle_inferior_event(), which gets called immediately
2011 after target_wait()/deprecated_target_wait_hook(). */
2014 get_last_target_status (ptid_t *ptidp, struct target_waitstatus *status)
2016 *ptidp = target_last_wait_ptid;
2017 *status = target_last_waitstatus;
2021 nullify_last_target_wait_ptid (void)
2023 target_last_wait_ptid = minus_one_ptid;
2026 /* Switch thread contexts. */
2029 context_switch (ptid_t ptid)
2033 fprintf_unfiltered (gdb_stdlog, "infrun: Switching context from %s ",
2034 target_pid_to_str (inferior_ptid));
2035 fprintf_unfiltered (gdb_stdlog, "to %s\n",
2036 target_pid_to_str (ptid));
2039 switch_to_thread (ptid);
2043 adjust_pc_after_break (struct execution_control_state *ecs)
2045 struct regcache *regcache;
2046 struct gdbarch *gdbarch;
2047 CORE_ADDR breakpoint_pc;
2049 /* If we've hit a breakpoint, we'll normally be stopped with SIGTRAP. If
2050 we aren't, just return.
2052 We assume that waitkinds other than TARGET_WAITKIND_STOPPED are not
2053 affected by gdbarch_decr_pc_after_break. Other waitkinds which are
2054 implemented by software breakpoints should be handled through the normal
2057 NOTE drow/2004-01-31: On some targets, breakpoints may generate
2058 different signals (SIGILL or SIGEMT for instance), but it is less
2059 clear where the PC is pointing afterwards. It may not match
2060 gdbarch_decr_pc_after_break. I don't know any specific target that
2061 generates these signals at breakpoints (the code has been in GDB since at
2062 least 1992) so I can not guess how to handle them here.
2064 In earlier versions of GDB, a target with
2065 gdbarch_have_nonsteppable_watchpoint would have the PC after hitting a
2066 watchpoint affected by gdbarch_decr_pc_after_break. I haven't found any
2067 target with both of these set in GDB history, and it seems unlikely to be
2068 correct, so gdbarch_have_nonsteppable_watchpoint is not checked here. */
2070 if (ecs->ws.kind != TARGET_WAITKIND_STOPPED)
2073 if (ecs->ws.value.sig != TARGET_SIGNAL_TRAP)
2076 /* In reverse execution, when a breakpoint is hit, the instruction
2077 under it has already been de-executed. The reported PC always
2078 points at the breakpoint address, so adjusting it further would
2079 be wrong. E.g., consider this case on a decr_pc_after_break == 1
2082 B1 0x08000000 : INSN1
2083 B2 0x08000001 : INSN2
2085 PC -> 0x08000003 : INSN4
2087 Say you're stopped at 0x08000003 as above. Reverse continuing
2088 from that point should hit B2 as below. Reading the PC when the
2089 SIGTRAP is reported should read 0x08000001 and INSN2 should have
2090 been de-executed already.
2092 B1 0x08000000 : INSN1
2093 B2 PC -> 0x08000001 : INSN2
2097 We can't apply the same logic as for forward execution, because
2098 we would wrongly adjust the PC to 0x08000000, since there's a
2099 breakpoint at PC - 1. We'd then report a hit on B1, although
2100 INSN1 hadn't been de-executed yet. Doing nothing is the correct
2102 if (execution_direction == EXEC_REVERSE)
2105 /* If this target does not decrement the PC after breakpoints, then
2106 we have nothing to do. */
2107 regcache = get_thread_regcache (ecs->ptid);
2108 gdbarch = get_regcache_arch (regcache);
2109 if (gdbarch_decr_pc_after_break (gdbarch) == 0)
2112 /* Find the location where (if we've hit a breakpoint) the
2113 breakpoint would be. */
2114 breakpoint_pc = regcache_read_pc (regcache)
2115 - gdbarch_decr_pc_after_break (gdbarch);
2117 /* Check whether there actually is a software breakpoint inserted at
2120 If in non-stop mode, a race condition is possible where we've
2121 removed a breakpoint, but stop events for that breakpoint were
2122 already queued and arrive later. To suppress those spurious
2123 SIGTRAPs, we keep a list of such breakpoint locations for a bit,
2124 and retire them after a number of stop events are reported. */
2125 if (software_breakpoint_inserted_here_p (breakpoint_pc)
2126 || (non_stop && moribund_breakpoint_here_p (breakpoint_pc)))
2128 struct cleanup *old_cleanups = NULL;
2130 old_cleanups = record_gdb_operation_disable_set ();
2132 /* When using hardware single-step, a SIGTRAP is reported for both
2133 a completed single-step and a software breakpoint. Need to
2134 differentiate between the two, as the latter needs adjusting
2135 but the former does not.
2137 The SIGTRAP can be due to a completed hardware single-step only if
2138 - we didn't insert software single-step breakpoints
2139 - the thread to be examined is still the current thread
2140 - this thread is currently being stepped
2142 If any of these events did not occur, we must have stopped due
2143 to hitting a software breakpoint, and have to back up to the
2146 As a special case, we could have hardware single-stepped a
2147 software breakpoint. In this case (prev_pc == breakpoint_pc),
2148 we also need to back up to the breakpoint address. */
2150 if (singlestep_breakpoints_inserted_p
2151 || !ptid_equal (ecs->ptid, inferior_ptid)
2152 || !currently_stepping (ecs->event_thread)
2153 || ecs->event_thread->prev_pc == breakpoint_pc)
2154 regcache_write_pc (regcache, breakpoint_pc);
2157 do_cleanups (old_cleanups);
2162 init_infwait_state (void)
2164 waiton_ptid = pid_to_ptid (-1);
2165 infwait_state = infwait_normal_state;
2169 error_is_running (void)
2172 Cannot execute this command while the selected thread is running."));
2176 ensure_not_running (void)
2178 if (is_running (inferior_ptid))
2179 error_is_running ();
2182 /* Given an execution control state that has been freshly filled in
2183 by an event from the inferior, figure out what it means and take
2184 appropriate action. */
2187 handle_inferior_event (struct execution_control_state *ecs)
2189 int sw_single_step_trap_p = 0;
2190 int stopped_by_watchpoint;
2191 int stepped_after_stopped_by_watchpoint = 0;
2192 struct symtab_and_line stop_pc_sal;
2193 enum stop_kind stop_soon;
2195 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
2196 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
2197 && ecs->ws.kind != TARGET_WAITKIND_IGNORE)
2199 struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
2201 stop_soon = inf->stop_soon;
2204 stop_soon = NO_STOP_QUIETLY;
2206 /* Cache the last pid/waitstatus. */
2207 target_last_wait_ptid = ecs->ptid;
2208 target_last_waitstatus = ecs->ws;
2210 /* Always clear state belonging to the previous time we stopped. */
2211 stop_stack_dummy = 0;
2213 /* If it's a new process, add it to the thread database */
2215 ecs->new_thread_event = (!ptid_equal (ecs->ptid, inferior_ptid)
2216 && !ptid_equal (ecs->ptid, minus_one_ptid)
2217 && !in_thread_list (ecs->ptid));
2219 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
2220 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED && ecs->new_thread_event)
2221 add_thread (ecs->ptid);
2223 ecs->event_thread = find_thread_pid (ecs->ptid);
2225 /* Dependent on valid ECS->EVENT_THREAD. */
2226 adjust_pc_after_break (ecs);
2228 /* Dependent on the current PC value modified by adjust_pc_after_break. */
2229 reinit_frame_cache ();
2231 if (ecs->ws.kind != TARGET_WAITKIND_IGNORE)
2233 breakpoint_retire_moribund ();
2235 /* Mark the non-executing threads accordingly. In all-stop, all
2236 threads of all processes are stopped when we get any event
2237 reported. In non-stop mode, only the event thread stops. If
2238 we're handling a process exit in non-stop mode, there's
2239 nothing to do, as threads of the dead process are gone, and
2240 threads of any other process were left running. */
2242 set_executing (minus_one_ptid, 0);
2243 else if (ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
2244 && ecs->ws.kind != TARGET_WAITKIND_EXITED)
2245 set_executing (inferior_ptid, 0);
2248 switch (infwait_state)
2250 case infwait_thread_hop_state:
2252 fprintf_unfiltered (gdb_stdlog, "infrun: infwait_thread_hop_state\n");
2253 /* Cancel the waiton_ptid. */
2254 waiton_ptid = pid_to_ptid (-1);
2257 case infwait_normal_state:
2259 fprintf_unfiltered (gdb_stdlog, "infrun: infwait_normal_state\n");
2262 case infwait_step_watch_state:
2264 fprintf_unfiltered (gdb_stdlog,
2265 "infrun: infwait_step_watch_state\n");
2267 stepped_after_stopped_by_watchpoint = 1;
2270 case infwait_nonstep_watch_state:
2272 fprintf_unfiltered (gdb_stdlog,
2273 "infrun: infwait_nonstep_watch_state\n");
2274 insert_breakpoints ();
2276 /* FIXME-maybe: is this cleaner than setting a flag? Does it
2277 handle things like signals arriving and other things happening
2278 in combination correctly? */
2279 stepped_after_stopped_by_watchpoint = 1;
2283 internal_error (__FILE__, __LINE__, _("bad switch"));
2285 infwait_state = infwait_normal_state;
2287 switch (ecs->ws.kind)
2289 case TARGET_WAITKIND_LOADED:
2291 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_LOADED\n");
2292 /* Ignore gracefully during startup of the inferior, as it might
2293 be the shell which has just loaded some objects, otherwise
2294 add the symbols for the newly loaded objects. Also ignore at
2295 the beginning of an attach or remote session; we will query
2296 the full list of libraries once the connection is
2298 if (stop_soon == NO_STOP_QUIETLY)
2300 /* Check for any newly added shared libraries if we're
2301 supposed to be adding them automatically. Switch
2302 terminal for any messages produced by
2303 breakpoint_re_set. */
2304 target_terminal_ours_for_output ();
2305 /* NOTE: cagney/2003-11-25: Make certain that the target
2306 stack's section table is kept up-to-date. Architectures,
2307 (e.g., PPC64), use the section table to perform
2308 operations such as address => section name and hence
2309 require the table to contain all sections (including
2310 those found in shared libraries). */
2311 /* NOTE: cagney/2003-11-25: Pass current_target and not
2312 exec_ops to SOLIB_ADD. This is because current GDB is
2313 only tooled to propagate section_table changes out from
2314 the "current_target" (see target_resize_to_sections), and
2315 not up from the exec stratum. This, of course, isn't
2316 right. "infrun.c" should only interact with the
2317 exec/process stratum, instead relying on the target stack
2318 to propagate relevant changes (stop, section table
2319 changed, ...) up to other layers. */
2321 SOLIB_ADD (NULL, 0, ¤t_target, auto_solib_add);
2323 solib_add (NULL, 0, ¤t_target, auto_solib_add);
2325 target_terminal_inferior ();
2327 /* If requested, stop when the dynamic linker notifies
2328 gdb of events. This allows the user to get control
2329 and place breakpoints in initializer routines for
2330 dynamically loaded objects (among other things). */
2331 if (stop_on_solib_events)
2333 stop_stepping (ecs);
2337 /* NOTE drow/2007-05-11: This might be a good place to check
2338 for "catch load". */
2341 /* If we are skipping through a shell, or through shared library
2342 loading that we aren't interested in, resume the program. If
2343 we're running the program normally, also resume. But stop if
2344 we're attaching or setting up a remote connection. */
2345 if (stop_soon == STOP_QUIETLY || stop_soon == NO_STOP_QUIETLY)
2347 /* Loading of shared libraries might have changed breakpoint
2348 addresses. Make sure new breakpoints are inserted. */
2349 if (stop_soon == NO_STOP_QUIETLY
2350 && !breakpoints_always_inserted_mode ())
2351 insert_breakpoints ();
2352 resume (0, TARGET_SIGNAL_0);
2353 prepare_to_wait (ecs);
2359 case TARGET_WAITKIND_SPURIOUS:
2361 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SPURIOUS\n");
2362 resume (0, TARGET_SIGNAL_0);
2363 prepare_to_wait (ecs);
2366 case TARGET_WAITKIND_EXITED:
2368 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXITED\n");
2369 inferior_ptid = ecs->ptid;
2370 target_terminal_ours (); /* Must do this before mourn anyway */
2371 print_stop_reason (EXITED, ecs->ws.value.integer);
2373 /* Record the exit code in the convenience variable $_exitcode, so
2374 that the user can inspect this again later. */
2375 set_internalvar (lookup_internalvar ("_exitcode"),
2376 value_from_longest (builtin_type_int32,
2377 (LONGEST) ecs->ws.value.integer));
2378 gdb_flush (gdb_stdout);
2379 target_mourn_inferior ();
2380 singlestep_breakpoints_inserted_p = 0;
2381 stop_print_frame = 0;
2382 stop_stepping (ecs);
2385 case TARGET_WAITKIND_SIGNALLED:
2387 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SIGNALLED\n");
2388 inferior_ptid = ecs->ptid;
2389 stop_print_frame = 0;
2390 target_terminal_ours (); /* Must do this before mourn anyway */
2392 /* Note: By definition of TARGET_WAITKIND_SIGNALLED, we shouldn't
2393 reach here unless the inferior is dead. However, for years
2394 target_kill() was called here, which hints that fatal signals aren't
2395 really fatal on some systems. If that's true, then some changes
2397 target_mourn_inferior ();
2399 print_stop_reason (SIGNAL_EXITED, ecs->ws.value.sig);
2400 singlestep_breakpoints_inserted_p = 0;
2401 stop_stepping (ecs);
2404 /* The following are the only cases in which we keep going;
2405 the above cases end in a continue or goto. */
2406 case TARGET_WAITKIND_FORKED:
2407 case TARGET_WAITKIND_VFORKED:
2409 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_FORKED\n");
2410 pending_follow.kind = ecs->ws.kind;
2412 pending_follow.fork_event.parent_pid = ecs->ptid;
2413 pending_follow.fork_event.child_pid = ecs->ws.value.related_pid;
2415 if (!ptid_equal (ecs->ptid, inferior_ptid))
2417 context_switch (ecs->ptid);
2418 reinit_frame_cache ();
2421 /* Immediately detach breakpoints from the child before there's
2422 any chance of letting the user delete breakpoints from the
2423 breakpoint lists. If we don't do this early, it's easy to
2424 leave left over traps in the child, vis: "break foo; catch
2425 fork; c; <fork>; del; c; <child calls foo>". We only follow
2426 the fork on the last `continue', and by that time the
2427 breakpoint at "foo" is long gone from the breakpoint table.
2428 If we vforked, then we don't need to unpatch here, since both
2429 parent and child are sharing the same memory pages; we'll
2430 need to unpatch at follow/detach time instead to be certain
2431 that new breakpoints added between catchpoint hit time and
2432 vfork follow are detached. */
2433 if (ecs->ws.kind != TARGET_WAITKIND_VFORKED)
2435 int child_pid = ptid_get_pid (ecs->ws.value.related_pid);
2437 /* This won't actually modify the breakpoint list, but will
2438 physically remove the breakpoints from the child. */
2439 detach_breakpoints (child_pid);
2442 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
2444 ecs->event_thread->stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid);
2446 ecs->random_signal = !bpstat_explains_signal (ecs->event_thread->stop_bpstat);
2448 /* If no catchpoint triggered for this, then keep going. */
2449 if (ecs->random_signal)
2451 ecs->event_thread->stop_signal = TARGET_SIGNAL_0;
2455 ecs->event_thread->stop_signal = TARGET_SIGNAL_TRAP;
2456 goto process_event_stop_test;
2458 case TARGET_WAITKIND_EXECD:
2460 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXECD\n");
2462 if (!ptid_equal (ecs->ptid, inferior_ptid))
2464 context_switch (ecs->ptid);
2465 reinit_frame_cache ();
2468 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
2470 /* This causes the eventpoints and symbol table to be reset.
2471 Must do this now, before trying to determine whether to
2473 follow_exec (inferior_ptid, ecs->ws.value.execd_pathname);
2475 ecs->event_thread->stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid);
2476 ecs->random_signal = !bpstat_explains_signal (ecs->event_thread->stop_bpstat);
2478 /* Note that this may be referenced from inside
2479 bpstat_stop_status above, through inferior_has_execd. */
2480 xfree (ecs->ws.value.execd_pathname);
2481 ecs->ws.value.execd_pathname = NULL;
2483 /* If no catchpoint triggered for this, then keep going. */
2484 if (ecs->random_signal)
2486 ecs->event_thread->stop_signal = TARGET_SIGNAL_0;
2490 ecs->event_thread->stop_signal = TARGET_SIGNAL_TRAP;
2491 goto process_event_stop_test;
2493 /* Be careful not to try to gather much state about a thread
2494 that's in a syscall. It's frequently a losing proposition. */
2495 case TARGET_WAITKIND_SYSCALL_ENTRY:
2497 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SYSCALL_ENTRY\n");
2498 resume (0, TARGET_SIGNAL_0);
2499 prepare_to_wait (ecs);
2502 /* Before examining the threads further, step this thread to
2503 get it entirely out of the syscall. (We get notice of the
2504 event when the thread is just on the verge of exiting a
2505 syscall. Stepping one instruction seems to get it back
2507 case TARGET_WAITKIND_SYSCALL_RETURN:
2509 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SYSCALL_RETURN\n");
2510 target_resume (ecs->ptid, 1, TARGET_SIGNAL_0);
2511 prepare_to_wait (ecs);
2514 case TARGET_WAITKIND_STOPPED:
2516 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_STOPPED\n");
2517 ecs->event_thread->stop_signal = ecs->ws.value.sig;
2520 case TARGET_WAITKIND_NO_HISTORY:
2521 /* Reverse execution: target ran out of history info. */
2522 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
2523 print_stop_reason (NO_HISTORY, 0);
2524 stop_stepping (ecs);
2527 /* We had an event in the inferior, but we are not interested
2528 in handling it at this level. The lower layers have already
2529 done what needs to be done, if anything.
2531 One of the possible circumstances for this is when the
2532 inferior produces output for the console. The inferior has
2533 not stopped, and we are ignoring the event. Another possible
2534 circumstance is any event which the lower level knows will be
2535 reported multiple times without an intervening resume. */
2536 case TARGET_WAITKIND_IGNORE:
2538 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_IGNORE\n");
2539 prepare_to_wait (ecs);
2543 if (ecs->new_thread_event)
2546 /* Non-stop assumes that the target handles adding new threads
2547 to the thread list. */
2548 internal_error (__FILE__, __LINE__, "\
2549 targets should add new threads to the thread list themselves in non-stop mode.");
2551 /* We may want to consider not doing a resume here in order to
2552 give the user a chance to play with the new thread. It might
2553 be good to make that a user-settable option. */
2555 /* At this point, all threads are stopped (happens automatically
2556 in either the OS or the native code). Therefore we need to
2557 continue all threads in order to make progress. */
2559 target_resume (RESUME_ALL, 0, TARGET_SIGNAL_0);
2560 prepare_to_wait (ecs);
2564 if (ecs->ws.kind == TARGET_WAITKIND_STOPPED)
2566 /* Do we need to clean up the state of a thread that has
2567 completed a displaced single-step? (Doing so usually affects
2568 the PC, so do it here, before we set stop_pc.) */
2569 displaced_step_fixup (ecs->ptid, ecs->event_thread->stop_signal);
2571 /* If we either finished a single-step or hit a breakpoint, but
2572 the user wanted this thread to be stopped, pretend we got a
2573 SIG0 (generic unsignaled stop). */
2575 if (ecs->event_thread->stop_requested
2576 && ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP)
2577 ecs->event_thread->stop_signal = TARGET_SIGNAL_0;
2580 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
2584 fprintf_unfiltered (gdb_stdlog, "infrun: stop_pc = 0x%s\n",
2585 paddr_nz (stop_pc));
2586 if (target_stopped_by_watchpoint ())
2589 fprintf_unfiltered (gdb_stdlog, "infrun: stopped by watchpoint\n");
2591 if (target_stopped_data_address (¤t_target, &addr))
2592 fprintf_unfiltered (gdb_stdlog,
2593 "infrun: stopped data address = 0x%s\n",
2596 fprintf_unfiltered (gdb_stdlog,
2597 "infrun: (no data address available)\n");
2601 if (stepping_past_singlestep_breakpoint)
2603 gdb_assert (singlestep_breakpoints_inserted_p);
2604 gdb_assert (ptid_equal (singlestep_ptid, ecs->ptid));
2605 gdb_assert (!ptid_equal (singlestep_ptid, saved_singlestep_ptid));
2607 stepping_past_singlestep_breakpoint = 0;
2609 /* We've either finished single-stepping past the single-step
2610 breakpoint, or stopped for some other reason. It would be nice if
2611 we could tell, but we can't reliably. */
2612 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP)
2615 fprintf_unfiltered (gdb_stdlog, "infrun: stepping_past_singlestep_breakpoint\n");
2616 /* Pull the single step breakpoints out of the target. */
2617 remove_single_step_breakpoints ();
2618 singlestep_breakpoints_inserted_p = 0;
2620 ecs->random_signal = 0;
2622 context_switch (saved_singlestep_ptid);
2623 if (deprecated_context_hook)
2624 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
2626 resume (1, TARGET_SIGNAL_0);
2627 prepare_to_wait (ecs);
2632 if (!ptid_equal (deferred_step_ptid, null_ptid))
2634 /* In non-stop mode, there's never a deferred_step_ptid set. */
2635 gdb_assert (!non_stop);
2637 /* If we stopped for some other reason than single-stepping, ignore
2638 the fact that we were supposed to switch back. */
2639 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP)
2642 fprintf_unfiltered (gdb_stdlog,
2643 "infrun: handling deferred step\n");
2645 /* Pull the single step breakpoints out of the target. */
2646 if (singlestep_breakpoints_inserted_p)
2648 remove_single_step_breakpoints ();
2649 singlestep_breakpoints_inserted_p = 0;
2652 /* Note: We do not call context_switch at this point, as the
2653 context is already set up for stepping the original thread. */
2654 switch_to_thread (deferred_step_ptid);
2655 deferred_step_ptid = null_ptid;
2656 /* Suppress spurious "Switching to ..." message. */
2657 previous_inferior_ptid = inferior_ptid;
2659 resume (1, TARGET_SIGNAL_0);
2660 prepare_to_wait (ecs);
2664 deferred_step_ptid = null_ptid;
2667 /* See if a thread hit a thread-specific breakpoint that was meant for
2668 another thread. If so, then step that thread past the breakpoint,
2671 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP)
2673 int thread_hop_needed = 0;
2675 /* Check if a regular breakpoint has been hit before checking
2676 for a potential single step breakpoint. Otherwise, GDB will
2677 not see this breakpoint hit when stepping onto breakpoints. */
2678 if (regular_breakpoint_inserted_here_p (stop_pc))
2680 ecs->random_signal = 0;
2681 if (!breakpoint_thread_match (stop_pc, ecs->ptid))
2682 thread_hop_needed = 1;
2684 else if (singlestep_breakpoints_inserted_p)
2686 /* We have not context switched yet, so this should be true
2687 no matter which thread hit the singlestep breakpoint. */
2688 gdb_assert (ptid_equal (inferior_ptid, singlestep_ptid));
2690 fprintf_unfiltered (gdb_stdlog, "infrun: software single step "
2692 target_pid_to_str (ecs->ptid));
2694 ecs->random_signal = 0;
2695 /* The call to in_thread_list is necessary because PTIDs sometimes
2696 change when we go from single-threaded to multi-threaded. If
2697 the singlestep_ptid is still in the list, assume that it is
2698 really different from ecs->ptid. */
2699 if (!ptid_equal (singlestep_ptid, ecs->ptid)
2700 && in_thread_list (singlestep_ptid))
2702 /* If the PC of the thread we were trying to single-step
2703 has changed, discard this event (which we were going
2704 to ignore anyway), and pretend we saw that thread
2705 trap. This prevents us continuously moving the
2706 single-step breakpoint forward, one instruction at a
2707 time. If the PC has changed, then the thread we were
2708 trying to single-step has trapped or been signalled,
2709 but the event has not been reported to GDB yet.
2711 There might be some cases where this loses signal
2712 information, if a signal has arrived at exactly the
2713 same time that the PC changed, but this is the best
2714 we can do with the information available. Perhaps we
2715 should arrange to report all events for all threads
2716 when they stop, or to re-poll the remote looking for
2717 this particular thread (i.e. temporarily enable
2720 CORE_ADDR new_singlestep_pc
2721 = regcache_read_pc (get_thread_regcache (singlestep_ptid));
2723 if (new_singlestep_pc != singlestep_pc)
2725 enum target_signal stop_signal;
2728 fprintf_unfiltered (gdb_stdlog, "infrun: unexpected thread,"
2729 " but expected thread advanced also\n");
2731 /* The current context still belongs to
2732 singlestep_ptid. Don't swap here, since that's
2733 the context we want to use. Just fudge our
2734 state and continue. */
2735 stop_signal = ecs->event_thread->stop_signal;
2736 ecs->event_thread->stop_signal = TARGET_SIGNAL_0;
2737 ecs->ptid = singlestep_ptid;
2738 ecs->event_thread = find_thread_pid (ecs->ptid);
2739 ecs->event_thread->stop_signal = stop_signal;
2740 stop_pc = new_singlestep_pc;
2745 fprintf_unfiltered (gdb_stdlog,
2746 "infrun: unexpected thread\n");
2748 thread_hop_needed = 1;
2749 stepping_past_singlestep_breakpoint = 1;
2750 saved_singlestep_ptid = singlestep_ptid;
2755 if (thread_hop_needed)
2757 int remove_status = 0;
2760 fprintf_unfiltered (gdb_stdlog, "infrun: thread_hop_needed\n");
2762 /* Saw a breakpoint, but it was hit by the wrong thread.
2765 if (singlestep_breakpoints_inserted_p)
2767 /* Pull the single step breakpoints out of the target. */
2768 remove_single_step_breakpoints ();
2769 singlestep_breakpoints_inserted_p = 0;
2772 /* If the arch can displace step, don't remove the
2774 if (!use_displaced_stepping (current_gdbarch))
2775 remove_status = remove_breakpoints ();
2777 /* Did we fail to remove breakpoints? If so, try
2778 to set the PC past the bp. (There's at least
2779 one situation in which we can fail to remove
2780 the bp's: On HP-UX's that use ttrace, we can't
2781 change the address space of a vforking child
2782 process until the child exits (well, okay, not
2783 then either :-) or execs. */
2784 if (remove_status != 0)
2785 error (_("Cannot step over breakpoint hit in wrong thread"));
2788 if (!ptid_equal (inferior_ptid, ecs->ptid))
2789 context_switch (ecs->ptid);
2793 /* Only need to require the next event from this
2794 thread in all-stop mode. */
2795 waiton_ptid = ecs->ptid;
2796 infwait_state = infwait_thread_hop_state;
2799 ecs->event_thread->stepping_over_breakpoint = 1;
2801 registers_changed ();
2805 else if (singlestep_breakpoints_inserted_p)
2807 sw_single_step_trap_p = 1;
2808 ecs->random_signal = 0;
2812 ecs->random_signal = 1;
2814 /* See if something interesting happened to the non-current thread. If
2815 so, then switch to that thread. */
2816 if (!ptid_equal (ecs->ptid, inferior_ptid))
2819 fprintf_unfiltered (gdb_stdlog, "infrun: context switch\n");
2821 context_switch (ecs->ptid);
2823 if (deprecated_context_hook)
2824 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
2827 if (singlestep_breakpoints_inserted_p)
2829 /* Pull the single step breakpoints out of the target. */
2830 remove_single_step_breakpoints ();
2831 singlestep_breakpoints_inserted_p = 0;
2834 if (stepped_after_stopped_by_watchpoint)
2835 stopped_by_watchpoint = 0;
2837 stopped_by_watchpoint = watchpoints_triggered (&ecs->ws);
2839 /* If necessary, step over this watchpoint. We'll be back to display
2841 if (stopped_by_watchpoint
2842 && (target_have_steppable_watchpoint
2843 || gdbarch_have_nonsteppable_watchpoint (current_gdbarch)))
2845 /* At this point, we are stopped at an instruction which has
2846 attempted to write to a piece of memory under control of
2847 a watchpoint. The instruction hasn't actually executed
2848 yet. If we were to evaluate the watchpoint expression
2849 now, we would get the old value, and therefore no change
2850 would seem to have occurred.
2852 In order to make watchpoints work `right', we really need
2853 to complete the memory write, and then evaluate the
2854 watchpoint expression. We do this by single-stepping the
2857 It may not be necessary to disable the watchpoint to stop over
2858 it. For example, the PA can (with some kernel cooperation)
2859 single step over a watchpoint without disabling the watchpoint.
2861 It is far more common to need to disable a watchpoint to step
2862 the inferior over it. If we have non-steppable watchpoints,
2863 we must disable the current watchpoint; it's simplest to
2864 disable all watchpoints and breakpoints. */
2867 if (!target_have_steppable_watchpoint)
2868 remove_breakpoints ();
2870 hw_step = maybe_software_singlestep (current_gdbarch, stop_pc);
2871 target_resume (ecs->ptid, hw_step, TARGET_SIGNAL_0);
2872 registers_changed ();
2873 waiton_ptid = ecs->ptid;
2874 if (target_have_steppable_watchpoint)
2875 infwait_state = infwait_step_watch_state;
2877 infwait_state = infwait_nonstep_watch_state;
2878 prepare_to_wait (ecs);
2882 ecs->stop_func_start = 0;
2883 ecs->stop_func_end = 0;
2884 ecs->stop_func_name = 0;
2885 /* Don't care about return value; stop_func_start and stop_func_name
2886 will both be 0 if it doesn't work. */
2887 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
2888 &ecs->stop_func_start, &ecs->stop_func_end);
2889 ecs->stop_func_start
2890 += gdbarch_deprecated_function_start_offset (current_gdbarch);
2891 ecs->event_thread->stepping_over_breakpoint = 0;
2892 bpstat_clear (&ecs->event_thread->stop_bpstat);
2893 ecs->event_thread->stop_step = 0;
2894 stop_print_frame = 1;
2895 ecs->random_signal = 0;
2896 stopped_by_random_signal = 0;
2898 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP
2899 && ecs->event_thread->trap_expected
2900 && gdbarch_single_step_through_delay_p (current_gdbarch)
2901 && currently_stepping (ecs->event_thread))
2903 /* We're trying to step off a breakpoint. Turns out that we're
2904 also on an instruction that needs to be stepped multiple
2905 times before it's been fully executing. E.g., architectures
2906 with a delay slot. It needs to be stepped twice, once for
2907 the instruction and once for the delay slot. */
2908 int step_through_delay
2909 = gdbarch_single_step_through_delay (current_gdbarch,
2910 get_current_frame ());
2911 if (debug_infrun && step_through_delay)
2912 fprintf_unfiltered (gdb_stdlog, "infrun: step through delay\n");
2913 if (ecs->event_thread->step_range_end == 0 && step_through_delay)
2915 /* The user issued a continue when stopped at a breakpoint.
2916 Set up for another trap and get out of here. */
2917 ecs->event_thread->stepping_over_breakpoint = 1;
2921 else if (step_through_delay)
2923 /* The user issued a step when stopped at a breakpoint.
2924 Maybe we should stop, maybe we should not - the delay
2925 slot *might* correspond to a line of source. In any
2926 case, don't decide that here, just set
2927 ecs->stepping_over_breakpoint, making sure we
2928 single-step again before breakpoints are re-inserted. */
2929 ecs->event_thread->stepping_over_breakpoint = 1;
2933 /* Look at the cause of the stop, and decide what to do.
2934 The alternatives are:
2935 1) stop_stepping and return; to really stop and return to the debugger,
2936 2) keep_going and return to start up again
2937 (set ecs->event_thread->stepping_over_breakpoint to 1 to single step once)
2938 3) set ecs->random_signal to 1, and the decision between 1 and 2
2939 will be made according to the signal handling tables. */
2941 /* First, distinguish signals caused by the debugger from signals
2942 that have to do with the program's own actions. Note that
2943 breakpoint insns may cause SIGTRAP or SIGILL or SIGEMT, depending
2944 on the operating system version. Here we detect when a SIGILL or
2945 SIGEMT is really a breakpoint and change it to SIGTRAP. We do
2946 something similar for SIGSEGV, since a SIGSEGV will be generated
2947 when we're trying to execute a breakpoint instruction on a
2948 non-executable stack. This happens for call dummy breakpoints
2949 for architectures like SPARC that place call dummies on the
2952 If we're doing a displaced step past a breakpoint, then the
2953 breakpoint is always inserted at the original instruction;
2954 non-standard signals can't be explained by the breakpoint. */
2955 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP
2956 || (! ecs->event_thread->trap_expected
2957 && breakpoint_inserted_here_p (stop_pc)
2958 && (ecs->event_thread->stop_signal == TARGET_SIGNAL_ILL
2959 || ecs->event_thread->stop_signal == TARGET_SIGNAL_SEGV
2960 || ecs->event_thread->stop_signal == TARGET_SIGNAL_EMT))
2961 || stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_NO_SIGSTOP
2962 || stop_soon == STOP_QUIETLY_REMOTE)
2964 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP && stop_after_trap)
2967 fprintf_unfiltered (gdb_stdlog, "infrun: stopped\n");
2968 stop_print_frame = 0;
2969 stop_stepping (ecs);
2973 /* This is originated from start_remote(), start_inferior() and
2974 shared libraries hook functions. */
2975 if (stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_REMOTE)
2978 fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
2979 stop_stepping (ecs);
2983 /* This originates from attach_command(). We need to overwrite
2984 the stop_signal here, because some kernels don't ignore a
2985 SIGSTOP in a subsequent ptrace(PTRACE_CONT,SIGSTOP) call.
2986 See more comments in inferior.h. On the other hand, if we
2987 get a non-SIGSTOP, report it to the user - assume the backend
2988 will handle the SIGSTOP if it should show up later.
2990 Also consider that the attach is complete when we see a
2991 SIGTRAP. Some systems (e.g. Windows), and stubs supporting
2992 target extended-remote report it instead of a SIGSTOP
2993 (e.g. gdbserver). We already rely on SIGTRAP being our
2994 signal, so this is no exception.
2996 Also consider that the attach is complete when we see a
2997 TARGET_SIGNAL_0. In non-stop mode, GDB will explicitly tell
2998 the target to stop all threads of the inferior, in case the
2999 low level attach operation doesn't stop them implicitly. If
3000 they weren't stopped implicitly, then the stub will report a
3001 TARGET_SIGNAL_0, meaning: stopped for no particular reason
3002 other than GDB's request. */
3003 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
3004 && (ecs->event_thread->stop_signal == TARGET_SIGNAL_STOP
3005 || ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP
3006 || ecs->event_thread->stop_signal == TARGET_SIGNAL_0))
3008 stop_stepping (ecs);
3009 ecs->event_thread->stop_signal = TARGET_SIGNAL_0;
3013 /* See if there is a breakpoint at the current PC. */
3014 ecs->event_thread->stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid);
3016 /* Following in case break condition called a
3018 stop_print_frame = 1;
3020 /* NOTE: cagney/2003-03-29: These two checks for a random signal
3021 at one stage in the past included checks for an inferior
3022 function call's call dummy's return breakpoint. The original
3023 comment, that went with the test, read:
3025 ``End of a stack dummy. Some systems (e.g. Sony news) give
3026 another signal besides SIGTRAP, so check here as well as
3029 If someone ever tries to get call dummys on a
3030 non-executable stack to work (where the target would stop
3031 with something like a SIGSEGV), then those tests might need
3032 to be re-instated. Given, however, that the tests were only
3033 enabled when momentary breakpoints were not being used, I
3034 suspect that it won't be the case.
3036 NOTE: kettenis/2004-02-05: Indeed such checks don't seem to
3037 be necessary for call dummies on a non-executable stack on
3040 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP)
3042 = !(bpstat_explains_signal (ecs->event_thread->stop_bpstat)
3043 || ecs->event_thread->trap_expected
3044 || (ecs->event_thread->step_range_end
3045 && ecs->event_thread->step_resume_breakpoint == NULL));
3048 ecs->random_signal = !bpstat_explains_signal (ecs->event_thread->stop_bpstat);
3049 if (!ecs->random_signal)
3050 ecs->event_thread->stop_signal = TARGET_SIGNAL_TRAP;
3054 /* When we reach this point, we've pretty much decided
3055 that the reason for stopping must've been a random
3056 (unexpected) signal. */
3059 ecs->random_signal = 1;
3061 process_event_stop_test:
3062 /* For the program's own signals, act according to
3063 the signal handling tables. */
3065 if (ecs->random_signal)
3067 /* Signal not for debugging purposes. */
3071 fprintf_unfiltered (gdb_stdlog, "infrun: random signal %d\n",
3072 ecs->event_thread->stop_signal);
3074 stopped_by_random_signal = 1;
3076 if (signal_print[ecs->event_thread->stop_signal])
3079 target_terminal_ours_for_output ();
3080 print_stop_reason (SIGNAL_RECEIVED, ecs->event_thread->stop_signal);
3082 /* Always stop on signals if we're either just gaining control
3083 of the program, or the user explicitly requested this thread
3084 to remain stopped. */
3085 if (stop_soon != NO_STOP_QUIETLY
3086 || ecs->event_thread->stop_requested
3087 || signal_stop_state (ecs->event_thread->stop_signal))
3089 stop_stepping (ecs);
3092 /* If not going to stop, give terminal back
3093 if we took it away. */
3095 target_terminal_inferior ();
3097 /* Clear the signal if it should not be passed. */
3098 if (signal_program[ecs->event_thread->stop_signal] == 0)
3099 ecs->event_thread->stop_signal = TARGET_SIGNAL_0;
3101 if (ecs->event_thread->prev_pc == stop_pc
3102 && ecs->event_thread->trap_expected
3103 && ecs->event_thread->step_resume_breakpoint == NULL)
3105 /* We were just starting a new sequence, attempting to
3106 single-step off of a breakpoint and expecting a SIGTRAP.
3107 Instead this signal arrives. This signal will take us out
3108 of the stepping range so GDB needs to remember to, when
3109 the signal handler returns, resume stepping off that
3111 /* To simplify things, "continue" is forced to use the same
3112 code paths as single-step - set a breakpoint at the
3113 signal return address and then, once hit, step off that
3116 fprintf_unfiltered (gdb_stdlog,
3117 "infrun: signal arrived while stepping over "
3120 insert_step_resume_breakpoint_at_frame (get_current_frame ());
3121 ecs->event_thread->step_after_step_resume_breakpoint = 1;
3126 if (ecs->event_thread->step_range_end != 0
3127 && ecs->event_thread->stop_signal != TARGET_SIGNAL_0
3128 && (ecs->event_thread->step_range_start <= stop_pc
3129 && stop_pc < ecs->event_thread->step_range_end)
3130 && frame_id_eq (get_frame_id (get_current_frame ()),
3131 ecs->event_thread->step_frame_id)
3132 && ecs->event_thread->step_resume_breakpoint == NULL)
3134 /* The inferior is about to take a signal that will take it
3135 out of the single step range. Set a breakpoint at the
3136 current PC (which is presumably where the signal handler
3137 will eventually return) and then allow the inferior to
3140 Note that this is only needed for a signal delivered
3141 while in the single-step range. Nested signals aren't a
3142 problem as they eventually all return. */
3144 fprintf_unfiltered (gdb_stdlog,
3145 "infrun: signal may take us out of "
3146 "single-step range\n");
3148 insert_step_resume_breakpoint_at_frame (get_current_frame ());
3153 /* Note: step_resume_breakpoint may be non-NULL. This occures
3154 when either there's a nested signal, or when there's a
3155 pending signal enabled just as the signal handler returns
3156 (leaving the inferior at the step-resume-breakpoint without
3157 actually executing it). Either way continue until the
3158 breakpoint is really hit. */
3163 /* Handle cases caused by hitting a breakpoint. */
3165 CORE_ADDR jmp_buf_pc;
3166 struct bpstat_what what;
3168 what = bpstat_what (ecs->event_thread->stop_bpstat);
3170 if (what.call_dummy)
3172 stop_stack_dummy = 1;
3175 switch (what.main_action)
3177 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
3178 /* If we hit the breakpoint at longjmp while stepping, we
3179 install a momentary breakpoint at the target of the
3183 fprintf_unfiltered (gdb_stdlog,
3184 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME\n");
3186 ecs->event_thread->stepping_over_breakpoint = 1;
3188 if (!gdbarch_get_longjmp_target_p (current_gdbarch)
3189 || !gdbarch_get_longjmp_target (current_gdbarch,
3190 get_current_frame (), &jmp_buf_pc))
3193 fprintf_unfiltered (gdb_stdlog, "\
3194 infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME (!gdbarch_get_longjmp_target)\n");
3199 /* We're going to replace the current step-resume breakpoint
3200 with a longjmp-resume breakpoint. */
3201 delete_step_resume_breakpoint (ecs->event_thread);
3203 /* Insert a breakpoint at resume address. */
3204 insert_longjmp_resume_breakpoint (jmp_buf_pc);
3209 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
3211 fprintf_unfiltered (gdb_stdlog,
3212 "infrun: BPSTAT_WHAT_CLEAR_LONGJMP_RESUME\n");
3214 gdb_assert (ecs->event_thread->step_resume_breakpoint != NULL);
3215 delete_step_resume_breakpoint (ecs->event_thread);
3217 ecs->event_thread->stop_step = 1;
3218 print_stop_reason (END_STEPPING_RANGE, 0);
3219 stop_stepping (ecs);
3222 case BPSTAT_WHAT_SINGLE:
3224 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_SINGLE\n");
3225 ecs->event_thread->stepping_over_breakpoint = 1;
3226 /* Still need to check other stuff, at least the case
3227 where we are stepping and step out of the right range. */
3230 case BPSTAT_WHAT_STOP_NOISY:
3232 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_NOISY\n");
3233 stop_print_frame = 1;
3235 /* We are about to nuke the step_resume_breakpointt via the
3236 cleanup chain, so no need to worry about it here. */
3238 stop_stepping (ecs);
3241 case BPSTAT_WHAT_STOP_SILENT:
3243 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_SILENT\n");
3244 stop_print_frame = 0;
3246 /* We are about to nuke the step_resume_breakpoin via the
3247 cleanup chain, so no need to worry about it here. */
3249 stop_stepping (ecs);
3252 case BPSTAT_WHAT_STEP_RESUME:
3254 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STEP_RESUME\n");
3256 delete_step_resume_breakpoint (ecs->event_thread);
3257 if (ecs->event_thread->step_after_step_resume_breakpoint)
3259 /* Back when the step-resume breakpoint was inserted, we
3260 were trying to single-step off a breakpoint. Go back
3262 ecs->event_thread->step_after_step_resume_breakpoint = 0;
3263 ecs->event_thread->stepping_over_breakpoint = 1;
3267 if (stop_pc == ecs->stop_func_start
3268 && execution_direction == EXEC_REVERSE)
3270 /* We are stepping over a function call in reverse, and
3271 just hit the step-resume breakpoint at the start
3272 address of the function. Go back to single-stepping,
3273 which should take us back to the function call. */
3274 ecs->event_thread->stepping_over_breakpoint = 1;
3280 case BPSTAT_WHAT_CHECK_SHLIBS:
3283 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_CHECK_SHLIBS\n");
3285 /* Check for any newly added shared libraries if we're
3286 supposed to be adding them automatically. Switch
3287 terminal for any messages produced by
3288 breakpoint_re_set. */
3289 target_terminal_ours_for_output ();
3290 /* NOTE: cagney/2003-11-25: Make certain that the target
3291 stack's section table is kept up-to-date. Architectures,
3292 (e.g., PPC64), use the section table to perform
3293 operations such as address => section name and hence
3294 require the table to contain all sections (including
3295 those found in shared libraries). */
3296 /* NOTE: cagney/2003-11-25: Pass current_target and not
3297 exec_ops to SOLIB_ADD. This is because current GDB is
3298 only tooled to propagate section_table changes out from
3299 the "current_target" (see target_resize_to_sections), and
3300 not up from the exec stratum. This, of course, isn't
3301 right. "infrun.c" should only interact with the
3302 exec/process stratum, instead relying on the target stack
3303 to propagate relevant changes (stop, section table
3304 changed, ...) up to other layers. */
3306 SOLIB_ADD (NULL, 0, ¤t_target, auto_solib_add);
3308 solib_add (NULL, 0, ¤t_target, auto_solib_add);
3310 target_terminal_inferior ();
3312 /* If requested, stop when the dynamic linker notifies
3313 gdb of events. This allows the user to get control
3314 and place breakpoints in initializer routines for
3315 dynamically loaded objects (among other things). */
3316 if (stop_on_solib_events || stop_stack_dummy)
3318 stop_stepping (ecs);
3323 /* We want to step over this breakpoint, then keep going. */
3324 ecs->event_thread->stepping_over_breakpoint = 1;
3330 case BPSTAT_WHAT_LAST:
3331 /* Not a real code, but listed here to shut up gcc -Wall. */
3333 case BPSTAT_WHAT_KEEP_CHECKING:
3338 /* We come here if we hit a breakpoint but should not
3339 stop for it. Possibly we also were stepping
3340 and should stop for that. So fall through and
3341 test for stepping. But, if not stepping,
3344 /* In all-stop mode, if we're currently stepping but have stopped in
3345 some other thread, we need to switch back to the stepped thread. */
3348 struct thread_info *tp;
3349 tp = iterate_over_threads (currently_stepping_callback,
3353 /* However, if the current thread is blocked on some internal
3354 breakpoint, and we simply need to step over that breakpoint
3355 to get it going again, do that first. */
3356 if ((ecs->event_thread->trap_expected
3357 && ecs->event_thread->stop_signal != TARGET_SIGNAL_TRAP)
3358 || ecs->event_thread->stepping_over_breakpoint)
3364 /* Otherwise, we no longer expect a trap in the current thread.
3365 Clear the trap_expected flag before switching back -- this is
3366 what keep_going would do as well, if we called it. */
3367 ecs->event_thread->trap_expected = 0;
3370 fprintf_unfiltered (gdb_stdlog,
3371 "infrun: switching back to stepped thread\n");
3373 ecs->event_thread = tp;
3374 ecs->ptid = tp->ptid;
3375 context_switch (ecs->ptid);
3381 /* Are we stepping to get the inferior out of the dynamic linker's
3382 hook (and possibly the dld itself) after catching a shlib
3384 if (ecs->event_thread->stepping_through_solib_after_catch)
3386 #if defined(SOLIB_ADD)
3387 /* Have we reached our destination? If not, keep going. */
3388 if (SOLIB_IN_DYNAMIC_LINKER (PIDGET (ecs->ptid), stop_pc))
3391 fprintf_unfiltered (gdb_stdlog, "infrun: stepping in dynamic linker\n");
3392 ecs->event_thread->stepping_over_breakpoint = 1;
3398 fprintf_unfiltered (gdb_stdlog, "infrun: step past dynamic linker\n");
3399 /* Else, stop and report the catchpoint(s) whose triggering
3400 caused us to begin stepping. */
3401 ecs->event_thread->stepping_through_solib_after_catch = 0;
3402 bpstat_clear (&ecs->event_thread->stop_bpstat);
3403 ecs->event_thread->stop_bpstat
3404 = bpstat_copy (ecs->event_thread->stepping_through_solib_catchpoints);
3405 bpstat_clear (&ecs->event_thread->stepping_through_solib_catchpoints);
3406 stop_print_frame = 1;
3407 stop_stepping (ecs);
3411 if (ecs->event_thread->step_resume_breakpoint)
3414 fprintf_unfiltered (gdb_stdlog,
3415 "infrun: step-resume breakpoint is inserted\n");
3417 /* Having a step-resume breakpoint overrides anything
3418 else having to do with stepping commands until
3419 that breakpoint is reached. */
3424 if (ecs->event_thread->step_range_end == 0)
3427 fprintf_unfiltered (gdb_stdlog, "infrun: no stepping, continue\n");
3428 /* Likewise if we aren't even stepping. */
3433 /* If stepping through a line, keep going if still within it.
3435 Note that step_range_end is the address of the first instruction
3436 beyond the step range, and NOT the address of the last instruction
3438 if (stop_pc >= ecs->event_thread->step_range_start
3439 && stop_pc < ecs->event_thread->step_range_end)
3442 fprintf_unfiltered (gdb_stdlog, "infrun: stepping inside range [0x%s-0x%s]\n",
3443 paddr_nz (ecs->event_thread->step_range_start),
3444 paddr_nz (ecs->event_thread->step_range_end));
3446 /* When stepping backward, stop at beginning of line range
3447 (unless it's the function entry point, in which case
3448 keep going back to the call point). */
3449 if (stop_pc == ecs->event_thread->step_range_start
3450 && stop_pc != ecs->stop_func_start
3451 && execution_direction == EXEC_REVERSE)
3453 ecs->event_thread->stop_step = 1;
3454 print_stop_reason (END_STEPPING_RANGE, 0);
3455 stop_stepping (ecs);
3463 /* We stepped out of the stepping range. */
3465 /* If we are stepping at the source level and entered the runtime
3466 loader dynamic symbol resolution code, we keep on single stepping
3467 until we exit the run time loader code and reach the callee's
3469 if (ecs->event_thread->step_over_calls == STEP_OVER_UNDEBUGGABLE
3470 && in_solib_dynsym_resolve_code (stop_pc))
3472 CORE_ADDR pc_after_resolver =
3473 gdbarch_skip_solib_resolver (current_gdbarch, stop_pc);
3476 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into dynsym resolve code\n");
3478 if (pc_after_resolver)
3480 /* Set up a step-resume breakpoint at the address
3481 indicated by SKIP_SOLIB_RESOLVER. */
3482 struct symtab_and_line sr_sal;
3484 sr_sal.pc = pc_after_resolver;
3486 insert_step_resume_breakpoint_at_sal (sr_sal, null_frame_id);
3493 if (ecs->event_thread->step_range_end != 1
3494 && (ecs->event_thread->step_over_calls == STEP_OVER_UNDEBUGGABLE
3495 || ecs->event_thread->step_over_calls == STEP_OVER_ALL)
3496 && get_frame_type (get_current_frame ()) == SIGTRAMP_FRAME)
3499 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into signal trampoline\n");
3500 /* The inferior, while doing a "step" or "next", has ended up in
3501 a signal trampoline (either by a signal being delivered or by
3502 the signal handler returning). Just single-step until the
3503 inferior leaves the trampoline (either by calling the handler
3509 /* Check for subroutine calls. The check for the current frame
3510 equalling the step ID is not necessary - the check of the
3511 previous frame's ID is sufficient - but it is a common case and
3512 cheaper than checking the previous frame's ID.
3514 NOTE: frame_id_eq will never report two invalid frame IDs as
3515 being equal, so to get into this block, both the current and
3516 previous frame must have valid frame IDs. */
3517 if (!frame_id_eq (get_frame_id (get_current_frame ()),
3518 ecs->event_thread->step_frame_id)
3519 && (frame_id_eq (frame_unwind_id (get_current_frame ()),
3520 ecs->event_thread->step_frame_id)
3521 || execution_direction == EXEC_REVERSE))
3523 CORE_ADDR real_stop_pc;
3526 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into subroutine\n");
3528 if ((ecs->event_thread->step_over_calls == STEP_OVER_NONE)
3529 || ((ecs->event_thread->step_range_end == 1)
3530 && in_prologue (ecs->event_thread->prev_pc,
3531 ecs->stop_func_start)))
3533 /* I presume that step_over_calls is only 0 when we're
3534 supposed to be stepping at the assembly language level
3535 ("stepi"). Just stop. */
3536 /* Also, maybe we just did a "nexti" inside a prolog, so we
3537 thought it was a subroutine call but it was not. Stop as
3539 ecs->event_thread->stop_step = 1;
3540 print_stop_reason (END_STEPPING_RANGE, 0);
3541 stop_stepping (ecs);
3545 if (ecs->event_thread->step_over_calls == STEP_OVER_ALL)
3547 /* We're doing a "next".
3549 Normal (forward) execution: set a breakpoint at the
3550 callee's return address (the address at which the caller
3553 Reverse (backward) execution. set the step-resume
3554 breakpoint at the start of the function that we just
3555 stepped into (backwards), and continue to there. When we
3556 get there, we'll need to single-step back to the caller. */
3558 if (execution_direction == EXEC_REVERSE)
3560 struct symtab_and_line sr_sal;
3562 if (ecs->stop_func_start == 0
3563 && in_solib_dynsym_resolve_code (stop_pc))
3565 /* Stepped into runtime loader dynamic symbol
3566 resolution code. Since we're in reverse,
3567 we have already backed up through the runtime
3568 loader and the dynamic function. This is just
3569 the trampoline (jump table).
3571 Just keep stepping, we'll soon be home.
3576 /* Normal (staticly linked) function call return. */
3578 sr_sal.pc = ecs->stop_func_start;
3579 insert_step_resume_breakpoint_at_sal (sr_sal, null_frame_id);
3582 insert_step_resume_breakpoint_at_caller (get_current_frame ());
3588 /* If we are in a function call trampoline (a stub between the
3589 calling routine and the real function), locate the real
3590 function. That's what tells us (a) whether we want to step
3591 into it at all, and (b) what prologue we want to run to the
3592 end of, if we do step into it. */
3593 real_stop_pc = skip_language_trampoline (get_current_frame (), stop_pc);
3594 if (real_stop_pc == 0)
3595 real_stop_pc = gdbarch_skip_trampoline_code
3596 (current_gdbarch, get_current_frame (), stop_pc);
3597 if (real_stop_pc != 0)
3598 ecs->stop_func_start = real_stop_pc;
3600 if (real_stop_pc != 0 && in_solib_dynsym_resolve_code (real_stop_pc))
3602 struct symtab_and_line sr_sal;
3604 sr_sal.pc = ecs->stop_func_start;
3606 insert_step_resume_breakpoint_at_sal (sr_sal, null_frame_id);
3611 /* If we have line number information for the function we are
3612 thinking of stepping into, step into it.
3614 If there are several symtabs at that PC (e.g. with include
3615 files), just want to know whether *any* of them have line
3616 numbers. find_pc_line handles this. */
3618 struct symtab_and_line tmp_sal;
3620 tmp_sal = find_pc_line (ecs->stop_func_start, 0);
3621 if (tmp_sal.line != 0)
3623 if (execution_direction == EXEC_REVERSE)
3624 handle_step_into_function_backward (ecs);
3626 handle_step_into_function (ecs);
3631 /* If we have no line number and the step-stop-if-no-debug is
3632 set, we stop the step so that the user has a chance to switch
3633 in assembly mode. */
3634 if (ecs->event_thread->step_over_calls == STEP_OVER_UNDEBUGGABLE
3635 && step_stop_if_no_debug)
3637 ecs->event_thread->stop_step = 1;
3638 print_stop_reason (END_STEPPING_RANGE, 0);
3639 stop_stepping (ecs);
3643 if (execution_direction == EXEC_REVERSE)
3645 /* Set a breakpoint at callee's start address.
3646 From there we can step once and be back in the caller. */
3647 struct symtab_and_line sr_sal;
3649 sr_sal.pc = ecs->stop_func_start;
3650 insert_step_resume_breakpoint_at_sal (sr_sal, null_frame_id);
3653 /* Set a breakpoint at callee's return address (the address
3654 at which the caller will resume). */
3655 insert_step_resume_breakpoint_at_caller (get_current_frame ());
3661 /* If we're in the return path from a shared library trampoline,
3662 we want to proceed through the trampoline when stepping. */
3663 if (gdbarch_in_solib_return_trampoline (current_gdbarch,
3664 stop_pc, ecs->stop_func_name))
3666 /* Determine where this trampoline returns. */
3667 CORE_ADDR real_stop_pc;
3668 real_stop_pc = gdbarch_skip_trampoline_code
3669 (current_gdbarch, get_current_frame (), stop_pc);
3672 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into solib return tramp\n");
3674 /* Only proceed through if we know where it's going. */
3677 /* And put the step-breakpoint there and go until there. */
3678 struct symtab_and_line sr_sal;
3680 init_sal (&sr_sal); /* initialize to zeroes */
3681 sr_sal.pc = real_stop_pc;
3682 sr_sal.section = find_pc_overlay (sr_sal.pc);
3684 /* Do not specify what the fp should be when we stop since
3685 on some machines the prologue is where the new fp value
3687 insert_step_resume_breakpoint_at_sal (sr_sal, null_frame_id);
3689 /* Restart without fiddling with the step ranges or
3696 stop_pc_sal = find_pc_line (stop_pc, 0);
3698 /* NOTE: tausq/2004-05-24: This if block used to be done before all
3699 the trampoline processing logic, however, there are some trampolines
3700 that have no names, so we should do trampoline handling first. */
3701 if (ecs->event_thread->step_over_calls == STEP_OVER_UNDEBUGGABLE
3702 && ecs->stop_func_name == NULL
3703 && stop_pc_sal.line == 0)
3706 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into undebuggable function\n");
3708 /* The inferior just stepped into, or returned to, an
3709 undebuggable function (where there is no debugging information
3710 and no line number corresponding to the address where the
3711 inferior stopped). Since we want to skip this kind of code,
3712 we keep going until the inferior returns from this
3713 function - unless the user has asked us not to (via
3714 set step-mode) or we no longer know how to get back
3715 to the call site. */
3716 if (step_stop_if_no_debug
3717 || !frame_id_p (frame_unwind_id (get_current_frame ())))
3719 /* If we have no line number and the step-stop-if-no-debug
3720 is set, we stop the step so that the user has a chance to
3721 switch in assembly mode. */
3722 ecs->event_thread->stop_step = 1;
3723 print_stop_reason (END_STEPPING_RANGE, 0);
3724 stop_stepping (ecs);
3729 /* Set a breakpoint at callee's return address (the address
3730 at which the caller will resume). */
3731 insert_step_resume_breakpoint_at_caller (get_current_frame ());
3737 if (ecs->event_thread->step_range_end == 1)
3739 /* It is stepi or nexti. We always want to stop stepping after
3742 fprintf_unfiltered (gdb_stdlog, "infrun: stepi/nexti\n");
3743 ecs->event_thread->stop_step = 1;
3744 print_stop_reason (END_STEPPING_RANGE, 0);
3745 stop_stepping (ecs);
3749 if (stop_pc_sal.line == 0)
3751 /* We have no line number information. That means to stop
3752 stepping (does this always happen right after one instruction,
3753 when we do "s" in a function with no line numbers,
3754 or can this happen as a result of a return or longjmp?). */
3756 fprintf_unfiltered (gdb_stdlog, "infrun: no line number info\n");
3757 ecs->event_thread->stop_step = 1;
3758 print_stop_reason (END_STEPPING_RANGE, 0);
3759 stop_stepping (ecs);
3763 if ((stop_pc == stop_pc_sal.pc)
3764 && (ecs->event_thread->current_line != stop_pc_sal.line
3765 || ecs->event_thread->current_symtab != stop_pc_sal.symtab))
3767 /* We are at the start of a different line. So stop. Note that
3768 we don't stop if we step into the middle of a different line.
3769 That is said to make things like for (;;) statements work
3772 fprintf_unfiltered (gdb_stdlog, "infrun: stepped to a different line\n");
3773 ecs->event_thread->stop_step = 1;
3774 print_stop_reason (END_STEPPING_RANGE, 0);
3775 stop_stepping (ecs);
3779 /* We aren't done stepping.
3781 Optimize by setting the stepping range to the line.
3782 (We might not be in the original line, but if we entered a
3783 new line in mid-statement, we continue stepping. This makes
3784 things like for(;;) statements work better.) */
3786 ecs->event_thread->step_range_start = stop_pc_sal.pc;
3787 ecs->event_thread->step_range_end = stop_pc_sal.end;
3788 ecs->event_thread->step_frame_id = get_frame_id (get_current_frame ());
3789 ecs->event_thread->current_line = stop_pc_sal.line;
3790 ecs->event_thread->current_symtab = stop_pc_sal.symtab;
3793 fprintf_unfiltered (gdb_stdlog, "infrun: keep going\n");
3797 /* Are we in the middle of stepping? */
3800 currently_stepping_thread (struct thread_info *tp)
3802 return (tp->step_range_end && tp->step_resume_breakpoint == NULL)
3803 || tp->trap_expected
3804 || tp->stepping_through_solib_after_catch;
3808 currently_stepping_callback (struct thread_info *tp, void *data)
3810 /* Return true if any thread *but* the one passed in "data" is
3811 in the middle of stepping. */
3812 return tp != data && currently_stepping_thread (tp);
3816 currently_stepping (struct thread_info *tp)
3818 return currently_stepping_thread (tp) || bpstat_should_step ();
3821 /* Inferior has stepped into a subroutine call with source code that
3822 we should not step over. Do step to the first line of code in
3826 handle_step_into_function (struct execution_control_state *ecs)
3829 struct symtab_and_line stop_func_sal, sr_sal;
3831 s = find_pc_symtab (stop_pc);
3832 if (s && s->language != language_asm)
3833 ecs->stop_func_start = gdbarch_skip_prologue (current_gdbarch,
3834 ecs->stop_func_start);
3836 stop_func_sal = find_pc_line (ecs->stop_func_start, 0);
3837 /* Use the step_resume_break to step until the end of the prologue,
3838 even if that involves jumps (as it seems to on the vax under
3840 /* If the prologue ends in the middle of a source line, continue to
3841 the end of that source line (if it is still within the function).
3842 Otherwise, just go to end of prologue. */
3843 if (stop_func_sal.end
3844 && stop_func_sal.pc != ecs->stop_func_start
3845 && stop_func_sal.end < ecs->stop_func_end)
3846 ecs->stop_func_start = stop_func_sal.end;
3848 /* Architectures which require breakpoint adjustment might not be able
3849 to place a breakpoint at the computed address. If so, the test
3850 ``ecs->stop_func_start == stop_pc'' will never succeed. Adjust
3851 ecs->stop_func_start to an address at which a breakpoint may be
3852 legitimately placed.
3854 Note: kevinb/2004-01-19: On FR-V, if this adjustment is not
3855 made, GDB will enter an infinite loop when stepping through
3856 optimized code consisting of VLIW instructions which contain
3857 subinstructions corresponding to different source lines. On
3858 FR-V, it's not permitted to place a breakpoint on any but the
3859 first subinstruction of a VLIW instruction. When a breakpoint is
3860 set, GDB will adjust the breakpoint address to the beginning of
3861 the VLIW instruction. Thus, we need to make the corresponding
3862 adjustment here when computing the stop address. */
3864 if (gdbarch_adjust_breakpoint_address_p (current_gdbarch))
3866 ecs->stop_func_start
3867 = gdbarch_adjust_breakpoint_address (current_gdbarch,
3868 ecs->stop_func_start);
3871 if (ecs->stop_func_start == stop_pc)
3873 /* We are already there: stop now. */
3874 ecs->event_thread->stop_step = 1;
3875 print_stop_reason (END_STEPPING_RANGE, 0);
3876 stop_stepping (ecs);
3881 /* Put the step-breakpoint there and go until there. */
3882 init_sal (&sr_sal); /* initialize to zeroes */
3883 sr_sal.pc = ecs->stop_func_start;
3884 sr_sal.section = find_pc_overlay (ecs->stop_func_start);
3886 /* Do not specify what the fp should be when we stop since on
3887 some machines the prologue is where the new fp value is
3889 insert_step_resume_breakpoint_at_sal (sr_sal, null_frame_id);
3891 /* And make sure stepping stops right away then. */
3892 ecs->event_thread->step_range_end = ecs->event_thread->step_range_start;
3897 /* Inferior has stepped backward into a subroutine call with source
3898 code that we should not step over. Do step to the beginning of the
3899 last line of code in it. */
3902 handle_step_into_function_backward (struct execution_control_state *ecs)
3905 struct symtab_and_line stop_func_sal, sr_sal;
3907 s = find_pc_symtab (stop_pc);
3908 if (s && s->language != language_asm)
3909 ecs->stop_func_start = gdbarch_skip_prologue (current_gdbarch,
3910 ecs->stop_func_start);
3912 stop_func_sal = find_pc_line (stop_pc, 0);
3914 /* OK, we're just going to keep stepping here. */
3915 if (stop_func_sal.pc == stop_pc)
3917 /* We're there already. Just stop stepping now. */
3918 ecs->event_thread->stop_step = 1;
3919 print_stop_reason (END_STEPPING_RANGE, 0);
3920 stop_stepping (ecs);
3924 /* Else just reset the step range and keep going.
3925 No step-resume breakpoint, they don't work for
3926 epilogues, which can have multiple entry paths. */
3927 ecs->event_thread->step_range_start = stop_func_sal.pc;
3928 ecs->event_thread->step_range_end = stop_func_sal.end;
3934 /* Insert a "step-resume breakpoint" at SR_SAL with frame ID SR_ID.
3935 This is used to both functions and to skip over code. */
3938 insert_step_resume_breakpoint_at_sal (struct symtab_and_line sr_sal,
3939 struct frame_id sr_id)
3941 /* There should never be more than one step-resume or longjmp-resume
3942 breakpoint per thread, so we should never be setting a new
3943 step_resume_breakpoint when one is already active. */
3944 gdb_assert (inferior_thread ()->step_resume_breakpoint == NULL);
3947 fprintf_unfiltered (gdb_stdlog,
3948 "infrun: inserting step-resume breakpoint at 0x%s\n",
3949 paddr_nz (sr_sal.pc));
3951 inferior_thread ()->step_resume_breakpoint
3952 = set_momentary_breakpoint (sr_sal, sr_id, bp_step_resume);
3955 /* Insert a "step-resume breakpoint" at RETURN_FRAME.pc. This is used
3956 to skip a potential signal handler.
3958 This is called with the interrupted function's frame. The signal
3959 handler, when it returns, will resume the interrupted function at
3963 insert_step_resume_breakpoint_at_frame (struct frame_info *return_frame)
3965 struct symtab_and_line sr_sal;
3967 gdb_assert (return_frame != NULL);
3968 init_sal (&sr_sal); /* initialize to zeros */
3970 sr_sal.pc = gdbarch_addr_bits_remove
3971 (current_gdbarch, get_frame_pc (return_frame));
3972 sr_sal.section = find_pc_overlay (sr_sal.pc);
3974 insert_step_resume_breakpoint_at_sal (sr_sal, get_frame_id (return_frame));
3977 /* Similar to insert_step_resume_breakpoint_at_frame, except
3978 but a breakpoint at the previous frame's PC. This is used to
3979 skip a function after stepping into it (for "next" or if the called
3980 function has no debugging information).
3982 The current function has almost always been reached by single
3983 stepping a call or return instruction. NEXT_FRAME belongs to the
3984 current function, and the breakpoint will be set at the caller's
3987 This is a separate function rather than reusing
3988 insert_step_resume_breakpoint_at_frame in order to avoid
3989 get_prev_frame, which may stop prematurely (see the implementation
3990 of frame_unwind_id for an example). */
3993 insert_step_resume_breakpoint_at_caller (struct frame_info *next_frame)
3995 struct symtab_and_line sr_sal;
3997 /* We shouldn't have gotten here if we don't know where the call site
3999 gdb_assert (frame_id_p (frame_unwind_id (next_frame)));
4001 init_sal (&sr_sal); /* initialize to zeros */
4003 sr_sal.pc = gdbarch_addr_bits_remove
4004 (current_gdbarch, frame_pc_unwind (next_frame));
4005 sr_sal.section = find_pc_overlay (sr_sal.pc);
4007 insert_step_resume_breakpoint_at_sal (sr_sal, frame_unwind_id (next_frame));
4010 /* Insert a "longjmp-resume" breakpoint at PC. This is used to set a
4011 new breakpoint at the target of a jmp_buf. The handling of
4012 longjmp-resume uses the same mechanisms used for handling
4013 "step-resume" breakpoints. */
4016 insert_longjmp_resume_breakpoint (CORE_ADDR pc)
4018 /* There should never be more than one step-resume or longjmp-resume
4019 breakpoint per thread, so we should never be setting a new
4020 longjmp_resume_breakpoint when one is already active. */
4021 gdb_assert (inferior_thread ()->step_resume_breakpoint == NULL);
4024 fprintf_unfiltered (gdb_stdlog,
4025 "infrun: inserting longjmp-resume breakpoint at 0x%s\n",
4028 inferior_thread ()->step_resume_breakpoint =
4029 set_momentary_breakpoint_at_pc (pc, bp_longjmp_resume);
4033 stop_stepping (struct execution_control_state *ecs)
4036 fprintf_unfiltered (gdb_stdlog, "infrun: stop_stepping\n");
4038 /* Let callers know we don't want to wait for the inferior anymore. */
4039 ecs->wait_some_more = 0;
4042 /* This function handles various cases where we need to continue
4043 waiting for the inferior. */
4044 /* (Used to be the keep_going: label in the old wait_for_inferior) */
4047 keep_going (struct execution_control_state *ecs)
4049 /* Save the pc before execution, to compare with pc after stop. */
4050 ecs->event_thread->prev_pc
4051 = regcache_read_pc (get_thread_regcache (ecs->ptid));
4053 /* If we did not do break;, it means we should keep running the
4054 inferior and not return to debugger. */
4056 if (ecs->event_thread->trap_expected
4057 && ecs->event_thread->stop_signal != TARGET_SIGNAL_TRAP)
4059 /* We took a signal (which we are supposed to pass through to
4060 the inferior, else we'd not get here) and we haven't yet
4061 gotten our trap. Simply continue. */
4062 resume (currently_stepping (ecs->event_thread),
4063 ecs->event_thread->stop_signal);
4067 /* Either the trap was not expected, but we are continuing
4068 anyway (the user asked that this signal be passed to the
4071 The signal was SIGTRAP, e.g. it was our signal, but we
4072 decided we should resume from it.
4074 We're going to run this baby now!
4076 Note that insert_breakpoints won't try to re-insert
4077 already inserted breakpoints. Therefore, we don't
4078 care if breakpoints were already inserted, or not. */
4080 if (ecs->event_thread->stepping_over_breakpoint)
4082 if (! use_displaced_stepping (current_gdbarch))
4083 /* Since we can't do a displaced step, we have to remove
4084 the breakpoint while we step it. To keep things
4085 simple, we remove them all. */
4086 remove_breakpoints ();
4090 struct gdb_exception e;
4091 /* Stop stepping when inserting breakpoints
4093 TRY_CATCH (e, RETURN_MASK_ERROR)
4095 insert_breakpoints ();
4099 stop_stepping (ecs);
4104 ecs->event_thread->trap_expected = ecs->event_thread->stepping_over_breakpoint;
4106 /* Do not deliver SIGNAL_TRAP (except when the user explicitly
4107 specifies that such a signal should be delivered to the
4110 Typically, this would occure when a user is debugging a
4111 target monitor on a simulator: the target monitor sets a
4112 breakpoint; the simulator encounters this break-point and
4113 halts the simulation handing control to GDB; GDB, noteing
4114 that the break-point isn't valid, returns control back to the
4115 simulator; the simulator then delivers the hardware
4116 equivalent of a SIGNAL_TRAP to the program being debugged. */
4118 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP
4119 && !signal_program[ecs->event_thread->stop_signal])
4120 ecs->event_thread->stop_signal = TARGET_SIGNAL_0;
4122 resume (currently_stepping (ecs->event_thread),
4123 ecs->event_thread->stop_signal);
4126 prepare_to_wait (ecs);
4129 /* This function normally comes after a resume, before
4130 handle_inferior_event exits. It takes care of any last bits of
4131 housekeeping, and sets the all-important wait_some_more flag. */
4134 prepare_to_wait (struct execution_control_state *ecs)
4137 fprintf_unfiltered (gdb_stdlog, "infrun: prepare_to_wait\n");
4138 if (infwait_state == infwait_normal_state)
4140 overlay_cache_invalid = 1;
4142 /* We have to invalidate the registers BEFORE calling
4143 target_wait because they can be loaded from the target while
4144 in target_wait. This makes remote debugging a bit more
4145 efficient for those targets that provide critical registers
4146 as part of their normal status mechanism. */
4148 registers_changed ();
4149 waiton_ptid = pid_to_ptid (-1);
4151 /* This is the old end of the while loop. Let everybody know we
4152 want to wait for the inferior some more and get called again
4154 ecs->wait_some_more = 1;
4157 /* Print why the inferior has stopped. We always print something when
4158 the inferior exits, or receives a signal. The rest of the cases are
4159 dealt with later on in normal_stop() and print_it_typical(). Ideally
4160 there should be a call to this function from handle_inferior_event()
4161 each time stop_stepping() is called.*/
4163 print_stop_reason (enum inferior_stop_reason stop_reason, int stop_info)
4165 switch (stop_reason)
4167 case END_STEPPING_RANGE:
4168 /* We are done with a step/next/si/ni command. */
4169 /* For now print nothing. */
4170 /* Print a message only if not in the middle of doing a "step n"
4171 operation for n > 1 */
4172 if (!inferior_thread ()->step_multi
4173 || !inferior_thread ()->stop_step)
4174 if (ui_out_is_mi_like_p (uiout))
4177 async_reason_lookup (EXEC_ASYNC_END_STEPPING_RANGE));
4180 /* The inferior was terminated by a signal. */
4181 annotate_signalled ();
4182 if (ui_out_is_mi_like_p (uiout))
4185 async_reason_lookup (EXEC_ASYNC_EXITED_SIGNALLED));
4186 ui_out_text (uiout, "\nProgram terminated with signal ");
4187 annotate_signal_name ();
4188 ui_out_field_string (uiout, "signal-name",
4189 target_signal_to_name (stop_info));
4190 annotate_signal_name_end ();
4191 ui_out_text (uiout, ", ");
4192 annotate_signal_string ();
4193 ui_out_field_string (uiout, "signal-meaning",
4194 target_signal_to_string (stop_info));
4195 annotate_signal_string_end ();
4196 ui_out_text (uiout, ".\n");
4197 ui_out_text (uiout, "The program no longer exists.\n");
4200 /* The inferior program is finished. */
4201 annotate_exited (stop_info);
4204 if (ui_out_is_mi_like_p (uiout))
4205 ui_out_field_string (uiout, "reason",
4206 async_reason_lookup (EXEC_ASYNC_EXITED));
4207 ui_out_text (uiout, "\nProgram exited with code ");
4208 ui_out_field_fmt (uiout, "exit-code", "0%o",
4209 (unsigned int) stop_info);
4210 ui_out_text (uiout, ".\n");
4214 if (ui_out_is_mi_like_p (uiout))
4217 async_reason_lookup (EXEC_ASYNC_EXITED_NORMALLY));
4218 ui_out_text (uiout, "\nProgram exited normally.\n");
4220 /* Support the --return-child-result option. */
4221 return_child_result_value = stop_info;
4223 case SIGNAL_RECEIVED:
4224 /* Signal received. The signal table tells us to print about
4228 if (stop_info == TARGET_SIGNAL_0 && !ui_out_is_mi_like_p (uiout))
4230 struct thread_info *t = inferior_thread ();
4232 ui_out_text (uiout, "\n[");
4233 ui_out_field_string (uiout, "thread-name",
4234 target_pid_to_str (t->ptid));
4235 ui_out_field_fmt (uiout, "thread-id", "] #%d", t->num);
4236 ui_out_text (uiout, " stopped");
4240 ui_out_text (uiout, "\nProgram received signal ");
4241 annotate_signal_name ();
4242 if (ui_out_is_mi_like_p (uiout))
4244 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_SIGNAL_RECEIVED));
4245 ui_out_field_string (uiout, "signal-name",
4246 target_signal_to_name (stop_info));
4247 annotate_signal_name_end ();
4248 ui_out_text (uiout, ", ");
4249 annotate_signal_string ();
4250 ui_out_field_string (uiout, "signal-meaning",
4251 target_signal_to_string (stop_info));
4252 annotate_signal_string_end ();
4254 ui_out_text (uiout, ".\n");
4257 /* Reverse execution: target ran out of history info. */
4258 ui_out_text (uiout, "\nNo more reverse-execution history.\n");
4261 internal_error (__FILE__, __LINE__,
4262 _("print_stop_reason: unrecognized enum value"));
4268 /* Here to return control to GDB when the inferior stops for real.
4269 Print appropriate messages, remove breakpoints, give terminal our modes.
4271 STOP_PRINT_FRAME nonzero means print the executing frame
4272 (pc, function, args, file, line number and line text).
4273 BREAKPOINTS_FAILED nonzero means stop was due to error
4274 attempting to insert breakpoints. */
4279 struct target_waitstatus last;
4281 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
4283 get_last_target_status (&last_ptid, &last);
4285 /* If an exception is thrown from this point on, make sure to
4286 propagate GDB's knowledge of the executing state to the
4287 frontend/user running state. A QUIT is an easy exception to see
4288 here, so do this before any filtered output. */
4289 if (target_has_execution)
4292 make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
4293 else if (last.kind != TARGET_WAITKIND_SIGNALLED
4294 && last.kind != TARGET_WAITKIND_EXITED)
4295 make_cleanup (finish_thread_state_cleanup, &inferior_ptid);
4298 /* In non-stop mode, we don't want GDB to switch threads behind the
4299 user's back, to avoid races where the user is typing a command to
4300 apply to thread x, but GDB switches to thread y before the user
4301 finishes entering the command. */
4303 /* As with the notification of thread events, we want to delay
4304 notifying the user that we've switched thread context until
4305 the inferior actually stops.
4307 There's no point in saying anything if the inferior has exited.
4308 Note that SIGNALLED here means "exited with a signal", not
4309 "received a signal". */
4311 && !ptid_equal (previous_inferior_ptid, inferior_ptid)
4312 && target_has_execution
4313 && last.kind != TARGET_WAITKIND_SIGNALLED
4314 && last.kind != TARGET_WAITKIND_EXITED)
4316 target_terminal_ours_for_output ();
4317 printf_filtered (_("[Switching to %s]\n"),
4318 target_pid_to_str (inferior_ptid));
4319 annotate_thread_changed ();
4320 previous_inferior_ptid = inferior_ptid;
4323 if (!breakpoints_always_inserted_mode () && target_has_execution)
4325 if (remove_breakpoints ())
4327 target_terminal_ours_for_output ();
4328 printf_filtered (_("\
4329 Cannot remove breakpoints because program is no longer writable.\n\
4330 Further execution is probably impossible.\n"));
4334 /* If an auto-display called a function and that got a signal,
4335 delete that auto-display to avoid an infinite recursion. */
4337 if (stopped_by_random_signal)
4338 disable_current_display ();
4340 /* Don't print a message if in the middle of doing a "step n"
4341 operation for n > 1 */
4342 if (target_has_execution
4343 && last.kind != TARGET_WAITKIND_SIGNALLED
4344 && last.kind != TARGET_WAITKIND_EXITED
4345 && inferior_thread ()->step_multi
4346 && inferior_thread ()->stop_step)
4349 target_terminal_ours ();
4351 /* Set the current source location. This will also happen if we
4352 display the frame below, but the current SAL will be incorrect
4353 during a user hook-stop function. */
4354 if (has_stack_frames () && !stop_stack_dummy)
4355 set_current_sal_from_frame (get_current_frame (), 1);
4357 /* Let the user/frontend see the threads as stopped. */
4358 do_cleanups (old_chain);
4360 /* Look up the hook_stop and run it (CLI internally handles problem
4361 of stop_command's pre-hook not existing). */
4363 catch_errors (hook_stop_stub, stop_command,
4364 "Error while running hook_stop:\n", RETURN_MASK_ALL);
4366 if (!has_stack_frames ())
4369 if (last.kind == TARGET_WAITKIND_SIGNALLED
4370 || last.kind == TARGET_WAITKIND_EXITED)
4373 /* Select innermost stack frame - i.e., current frame is frame 0,
4374 and current location is based on that.
4375 Don't do this on return from a stack dummy routine,
4376 or if the program has exited. */
4378 if (!stop_stack_dummy)
4380 select_frame (get_current_frame ());
4382 /* Print current location without a level number, if
4383 we have changed functions or hit a breakpoint.
4384 Print source line if we have one.
4385 bpstat_print() contains the logic deciding in detail
4386 what to print, based on the event(s) that just occurred. */
4388 /* If --batch-silent is enabled then there's no need to print the current
4389 source location, and to try risks causing an error message about
4390 missing source files. */
4391 if (stop_print_frame && !batch_silent)
4395 int do_frame_printing = 1;
4396 struct thread_info *tp = inferior_thread ();
4398 bpstat_ret = bpstat_print (tp->stop_bpstat);
4402 /* If we had hit a shared library event breakpoint,
4403 bpstat_print would print out this message. If we hit
4404 an OS-level shared library event, do the same
4406 if (last.kind == TARGET_WAITKIND_LOADED)
4408 printf_filtered (_("Stopped due to shared library event\n"));
4409 source_flag = SRC_LINE; /* something bogus */
4410 do_frame_printing = 0;
4414 /* FIXME: cagney/2002-12-01: Given that a frame ID does
4415 (or should) carry around the function and does (or
4416 should) use that when doing a frame comparison. */
4418 && frame_id_eq (tp->step_frame_id,
4419 get_frame_id (get_current_frame ()))
4420 && step_start_function == find_pc_function (stop_pc))
4421 source_flag = SRC_LINE; /* finished step, just print source line */
4423 source_flag = SRC_AND_LOC; /* print location and source line */
4425 case PRINT_SRC_AND_LOC:
4426 source_flag = SRC_AND_LOC; /* print location and source line */
4428 case PRINT_SRC_ONLY:
4429 source_flag = SRC_LINE;
4432 source_flag = SRC_LINE; /* something bogus */
4433 do_frame_printing = 0;
4436 internal_error (__FILE__, __LINE__, _("Unknown value."));
4439 /* The behavior of this routine with respect to the source
4441 SRC_LINE: Print only source line
4442 LOCATION: Print only location
4443 SRC_AND_LOC: Print location and source line */
4444 if (do_frame_printing)
4445 print_stack_frame (get_selected_frame (NULL), 0, source_flag);
4447 /* Display the auto-display expressions. */
4452 /* Save the function value return registers, if we care.
4453 We might be about to restore their previous contents. */
4454 if (inferior_thread ()->proceed_to_finish)
4456 /* This should not be necessary. */
4458 regcache_xfree (stop_registers);
4460 /* NB: The copy goes through to the target picking up the value of
4461 all the registers. */
4462 stop_registers = regcache_dup (get_current_regcache ());
4465 if (stop_stack_dummy)
4467 /* Pop the empty frame that contains the stack dummy.
4468 This also restores inferior state prior to the call
4469 (struct inferior_thread_state). */
4470 struct frame_info *frame = get_current_frame ();
4471 gdb_assert (get_frame_type (frame) == DUMMY_FRAME);
4473 /* frame_pop() calls reinit_frame_cache as the last thing it does
4474 which means there's currently no selected frame. We don't need
4475 to re-establish a selected frame if the dummy call returns normally,
4476 that will be done by restore_inferior_status. However, we do have
4477 to handle the case where the dummy call is returning after being
4478 stopped (e.g. the dummy call previously hit a breakpoint). We
4479 can't know which case we have so just always re-establish a
4480 selected frame here. */
4481 select_frame (get_current_frame ());
4485 annotate_stopped ();
4487 /* Suppress the stop observer if we're in the middle of:
4489 - a step n (n > 1), as there still more steps to be done.
4491 - a "finish" command, as the observer will be called in
4492 finish_command_continuation, so it can include the inferior
4493 function's return value.
4495 - calling an inferior function, as we pretend we inferior didn't
4496 run at all. The return value of the call is handled by the
4497 expression evaluator, through call_function_by_hand. */
4499 if (!target_has_execution
4500 || last.kind == TARGET_WAITKIND_SIGNALLED
4501 || last.kind == TARGET_WAITKIND_EXITED
4502 || (!inferior_thread ()->step_multi
4503 && !(inferior_thread ()->stop_bpstat
4504 && inferior_thread ()->proceed_to_finish)
4505 && !inferior_thread ()->in_infcall))
4507 if (!ptid_equal (inferior_ptid, null_ptid))
4508 observer_notify_normal_stop (inferior_thread ()->stop_bpstat,
4511 observer_notify_normal_stop (NULL, stop_print_frame);
4514 if (target_has_execution)
4516 if (last.kind != TARGET_WAITKIND_SIGNALLED
4517 && last.kind != TARGET_WAITKIND_EXITED)
4518 /* Delete the breakpoint we stopped at, if it wants to be deleted.
4519 Delete any breakpoint that is to be deleted at the next stop. */
4520 breakpoint_auto_delete (inferior_thread ()->stop_bpstat);
4525 hook_stop_stub (void *cmd)
4527 execute_cmd_pre_hook ((struct cmd_list_element *) cmd);
4532 signal_stop_state (int signo)
4534 return signal_stop[signo];
4538 signal_print_state (int signo)
4540 return signal_print[signo];
4544 signal_pass_state (int signo)
4546 return signal_program[signo];
4550 signal_stop_update (int signo, int state)
4552 int ret = signal_stop[signo];
4553 signal_stop[signo] = state;
4558 signal_print_update (int signo, int state)
4560 int ret = signal_print[signo];
4561 signal_print[signo] = state;
4566 signal_pass_update (int signo, int state)
4568 int ret = signal_program[signo];
4569 signal_program[signo] = state;
4574 sig_print_header (void)
4576 printf_filtered (_("\
4577 Signal Stop\tPrint\tPass to program\tDescription\n"));
4581 sig_print_info (enum target_signal oursig)
4583 const char *name = target_signal_to_name (oursig);
4584 int name_padding = 13 - strlen (name);
4586 if (name_padding <= 0)
4589 printf_filtered ("%s", name);
4590 printf_filtered ("%*.*s ", name_padding, name_padding, " ");
4591 printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
4592 printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
4593 printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
4594 printf_filtered ("%s\n", target_signal_to_string (oursig));
4597 /* Specify how various signals in the inferior should be handled. */
4600 handle_command (char *args, int from_tty)
4603 int digits, wordlen;
4604 int sigfirst, signum, siglast;
4605 enum target_signal oursig;
4608 unsigned char *sigs;
4609 struct cleanup *old_chain;
4613 error_no_arg (_("signal to handle"));
4616 /* Allocate and zero an array of flags for which signals to handle. */
4618 nsigs = (int) TARGET_SIGNAL_LAST;
4619 sigs = (unsigned char *) alloca (nsigs);
4620 memset (sigs, 0, nsigs);
4622 /* Break the command line up into args. */
4624 argv = gdb_buildargv (args);
4625 old_chain = make_cleanup_freeargv (argv);
4627 /* Walk through the args, looking for signal oursigs, signal names, and
4628 actions. Signal numbers and signal names may be interspersed with
4629 actions, with the actions being performed for all signals cumulatively
4630 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
4632 while (*argv != NULL)
4634 wordlen = strlen (*argv);
4635 for (digits = 0; isdigit ((*argv)[digits]); digits++)
4639 sigfirst = siglast = -1;
4641 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
4643 /* Apply action to all signals except those used by the
4644 debugger. Silently skip those. */
4647 siglast = nsigs - 1;
4649 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
4651 SET_SIGS (nsigs, sigs, signal_stop);
4652 SET_SIGS (nsigs, sigs, signal_print);
4654 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
4656 UNSET_SIGS (nsigs, sigs, signal_program);
4658 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
4660 SET_SIGS (nsigs, sigs, signal_print);
4662 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
4664 SET_SIGS (nsigs, sigs, signal_program);
4666 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
4668 UNSET_SIGS (nsigs, sigs, signal_stop);
4670 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
4672 SET_SIGS (nsigs, sigs, signal_program);
4674 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
4676 UNSET_SIGS (nsigs, sigs, signal_print);
4677 UNSET_SIGS (nsigs, sigs, signal_stop);
4679 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
4681 UNSET_SIGS (nsigs, sigs, signal_program);
4683 else if (digits > 0)
4685 /* It is numeric. The numeric signal refers to our own
4686 internal signal numbering from target.h, not to host/target
4687 signal number. This is a feature; users really should be
4688 using symbolic names anyway, and the common ones like
4689 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
4691 sigfirst = siglast = (int)
4692 target_signal_from_command (atoi (*argv));
4693 if ((*argv)[digits] == '-')
4696 target_signal_from_command (atoi ((*argv) + digits + 1));
4698 if (sigfirst > siglast)
4700 /* Bet he didn't figure we'd think of this case... */
4708 oursig = target_signal_from_name (*argv);
4709 if (oursig != TARGET_SIGNAL_UNKNOWN)
4711 sigfirst = siglast = (int) oursig;
4715 /* Not a number and not a recognized flag word => complain. */
4716 error (_("Unrecognized or ambiguous flag word: \"%s\"."), *argv);
4720 /* If any signal numbers or symbol names were found, set flags for
4721 which signals to apply actions to. */
4723 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
4725 switch ((enum target_signal) signum)
4727 case TARGET_SIGNAL_TRAP:
4728 case TARGET_SIGNAL_INT:
4729 if (!allsigs && !sigs[signum])
4731 if (query (_("%s is used by the debugger.\n\
4732 Are you sure you want to change it? "), target_signal_to_name ((enum target_signal) signum)))
4738 printf_unfiltered (_("Not confirmed, unchanged.\n"));
4739 gdb_flush (gdb_stdout);
4743 case TARGET_SIGNAL_0:
4744 case TARGET_SIGNAL_DEFAULT:
4745 case TARGET_SIGNAL_UNKNOWN:
4746 /* Make sure that "all" doesn't print these. */
4757 for (signum = 0; signum < nsigs; signum++)
4760 target_notice_signals (inferior_ptid);
4764 /* Show the results. */
4765 sig_print_header ();
4766 for (; signum < nsigs; signum++)
4768 sig_print_info (signum);
4774 do_cleanups (old_chain);
4778 xdb_handle_command (char *args, int from_tty)
4781 struct cleanup *old_chain;
4784 error_no_arg (_("xdb command"));
4786 /* Break the command line up into args. */
4788 argv = gdb_buildargv (args);
4789 old_chain = make_cleanup_freeargv (argv);
4790 if (argv[1] != (char *) NULL)
4795 bufLen = strlen (argv[0]) + 20;
4796 argBuf = (char *) xmalloc (bufLen);
4800 enum target_signal oursig;
4802 oursig = target_signal_from_name (argv[0]);
4803 memset (argBuf, 0, bufLen);
4804 if (strcmp (argv[1], "Q") == 0)
4805 sprintf (argBuf, "%s %s", argv[0], "noprint");
4808 if (strcmp (argv[1], "s") == 0)
4810 if (!signal_stop[oursig])
4811 sprintf (argBuf, "%s %s", argv[0], "stop");
4813 sprintf (argBuf, "%s %s", argv[0], "nostop");
4815 else if (strcmp (argv[1], "i") == 0)
4817 if (!signal_program[oursig])
4818 sprintf (argBuf, "%s %s", argv[0], "pass");
4820 sprintf (argBuf, "%s %s", argv[0], "nopass");
4822 else if (strcmp (argv[1], "r") == 0)
4824 if (!signal_print[oursig])
4825 sprintf (argBuf, "%s %s", argv[0], "print");
4827 sprintf (argBuf, "%s %s", argv[0], "noprint");
4833 handle_command (argBuf, from_tty);
4835 printf_filtered (_("Invalid signal handling flag.\n"));
4840 do_cleanups (old_chain);
4843 /* Print current contents of the tables set by the handle command.
4844 It is possible we should just be printing signals actually used
4845 by the current target (but for things to work right when switching
4846 targets, all signals should be in the signal tables). */
4849 signals_info (char *signum_exp, int from_tty)
4851 enum target_signal oursig;
4852 sig_print_header ();
4856 /* First see if this is a symbol name. */
4857 oursig = target_signal_from_name (signum_exp);
4858 if (oursig == TARGET_SIGNAL_UNKNOWN)
4860 /* No, try numeric. */
4862 target_signal_from_command (parse_and_eval_long (signum_exp));
4864 sig_print_info (oursig);
4868 printf_filtered ("\n");
4869 /* These ugly casts brought to you by the native VAX compiler. */
4870 for (oursig = TARGET_SIGNAL_FIRST;
4871 (int) oursig < (int) TARGET_SIGNAL_LAST;
4872 oursig = (enum target_signal) ((int) oursig + 1))
4876 if (oursig != TARGET_SIGNAL_UNKNOWN
4877 && oursig != TARGET_SIGNAL_DEFAULT && oursig != TARGET_SIGNAL_0)
4878 sig_print_info (oursig);
4881 printf_filtered (_("\nUse the \"handle\" command to change these tables.\n"));
4884 /* The $_siginfo convenience variable is a bit special. We don't know
4885 for sure the type of the value until we actually have a chance to
4886 fetch the data. The type can change depending on gdbarch, so it it
4887 also dependent on which thread you have selected.
4889 1. making $_siginfo be an internalvar that creates a new value on
4892 2. making the value of $_siginfo be an lval_computed value. */
4894 /* This function implements the lval_computed support for reading a
4898 siginfo_value_read (struct value *v)
4900 LONGEST transferred;
4903 target_read (¤t_target, TARGET_OBJECT_SIGNAL_INFO,
4905 value_contents_all_raw (v),
4907 TYPE_LENGTH (value_type (v)));
4909 if (transferred != TYPE_LENGTH (value_type (v)))
4910 error (_("Unable to read siginfo"));
4913 /* This function implements the lval_computed support for writing a
4917 siginfo_value_write (struct value *v, struct value *fromval)
4919 LONGEST transferred;
4921 transferred = target_write (¤t_target,
4922 TARGET_OBJECT_SIGNAL_INFO,
4924 value_contents_all_raw (fromval),
4926 TYPE_LENGTH (value_type (fromval)));
4928 if (transferred != TYPE_LENGTH (value_type (fromval)))
4929 error (_("Unable to write siginfo"));
4932 static struct lval_funcs siginfo_value_funcs =
4938 /* Return a new value with the correct type for the siginfo object of
4939 the current thread. Return a void value if there's no object
4942 static struct value *
4943 siginfo_make_value (struct internalvar *var)
4946 struct gdbarch *gdbarch;
4948 if (target_has_stack
4949 && !ptid_equal (inferior_ptid, null_ptid))
4951 gdbarch = get_frame_arch (get_current_frame ());
4953 if (gdbarch_get_siginfo_type_p (gdbarch))
4955 type = gdbarch_get_siginfo_type (gdbarch);
4957 return allocate_computed_value (type, &siginfo_value_funcs, NULL);
4961 return allocate_value (builtin_type_void);
4965 /* Inferior thread state.
4966 These are details related to the inferior itself, and don't include
4967 things like what frame the user had selected or what gdb was doing
4968 with the target at the time.
4969 For inferior function calls these are things we want to restore
4970 regardless of whether the function call successfully completes
4971 or the dummy frame has to be manually popped. */
4973 struct inferior_thread_state
4975 enum target_signal stop_signal;
4977 struct regcache *registers;
4980 struct inferior_thread_state *
4981 save_inferior_thread_state (void)
4983 struct inferior_thread_state *inf_state = XMALLOC (struct inferior_thread_state);
4984 struct thread_info *tp = inferior_thread ();
4986 inf_state->stop_signal = tp->stop_signal;
4987 inf_state->stop_pc = stop_pc;
4989 inf_state->registers = regcache_dup (get_current_regcache ());
4994 /* Restore inferior session state to INF_STATE. */
4997 restore_inferior_thread_state (struct inferior_thread_state *inf_state)
4999 struct thread_info *tp = inferior_thread ();
5001 tp->stop_signal = inf_state->stop_signal;
5002 stop_pc = inf_state->stop_pc;
5004 /* The inferior can be gone if the user types "print exit(0)"
5005 (and perhaps other times). */
5006 if (target_has_execution)
5007 /* NB: The register write goes through to the target. */
5008 regcache_cpy (get_current_regcache (), inf_state->registers);
5009 regcache_xfree (inf_state->registers);
5014 do_restore_inferior_thread_state_cleanup (void *state)
5016 restore_inferior_thread_state (state);
5020 make_cleanup_restore_inferior_thread_state (struct inferior_thread_state *inf_state)
5022 return make_cleanup (do_restore_inferior_thread_state_cleanup, inf_state);
5026 discard_inferior_thread_state (struct inferior_thread_state *inf_state)
5028 regcache_xfree (inf_state->registers);
5033 get_inferior_thread_state_regcache (struct inferior_thread_state *inf_state)
5035 return inf_state->registers;
5038 /* Session related state for inferior function calls.
5039 These are the additional bits of state that need to be restored
5040 when an inferior function call successfully completes. */
5042 struct inferior_status
5046 int stop_stack_dummy;
5047 int stopped_by_random_signal;
5048 int stepping_over_breakpoint;
5049 CORE_ADDR step_range_start;
5050 CORE_ADDR step_range_end;
5051 struct frame_id step_frame_id;
5052 enum step_over_calls_kind step_over_calls;
5053 CORE_ADDR step_resume_break_address;
5054 int stop_after_trap;
5057 /* ID if the selected frame when the inferior function call was made. */
5058 struct frame_id selected_frame_id;
5060 int proceed_to_finish;
5064 /* Save all of the information associated with the inferior<==>gdb
5067 struct inferior_status *
5068 save_inferior_status (void)
5070 struct inferior_status *inf_status = XMALLOC (struct inferior_status);
5071 struct thread_info *tp = inferior_thread ();
5072 struct inferior *inf = current_inferior ();
5074 inf_status->stop_step = tp->stop_step;
5075 inf_status->stop_stack_dummy = stop_stack_dummy;
5076 inf_status->stopped_by_random_signal = stopped_by_random_signal;
5077 inf_status->stepping_over_breakpoint = tp->trap_expected;
5078 inf_status->step_range_start = tp->step_range_start;
5079 inf_status->step_range_end = tp->step_range_end;
5080 inf_status->step_frame_id = tp->step_frame_id;
5081 inf_status->step_over_calls = tp->step_over_calls;
5082 inf_status->stop_after_trap = stop_after_trap;
5083 inf_status->stop_soon = inf->stop_soon;
5084 /* Save original bpstat chain here; replace it with copy of chain.
5085 If caller's caller is walking the chain, they'll be happier if we
5086 hand them back the original chain when restore_inferior_status is
5088 inf_status->stop_bpstat = tp->stop_bpstat;
5089 tp->stop_bpstat = bpstat_copy (tp->stop_bpstat);
5090 inf_status->proceed_to_finish = tp->proceed_to_finish;
5091 inf_status->in_infcall = tp->in_infcall;
5093 inf_status->selected_frame_id = get_frame_id (get_selected_frame (NULL));
5099 restore_selected_frame (void *args)
5101 struct frame_id *fid = (struct frame_id *) args;
5102 struct frame_info *frame;
5104 frame = frame_find_by_id (*fid);
5106 /* If inf_status->selected_frame_id is NULL, there was no previously
5110 warning (_("Unable to restore previously selected frame."));
5114 select_frame (frame);
5119 /* Restore inferior session state to INF_STATUS. */
5122 restore_inferior_status (struct inferior_status *inf_status)
5124 struct thread_info *tp = inferior_thread ();
5125 struct inferior *inf = current_inferior ();
5127 tp->stop_step = inf_status->stop_step;
5128 stop_stack_dummy = inf_status->stop_stack_dummy;
5129 stopped_by_random_signal = inf_status->stopped_by_random_signal;
5130 tp->trap_expected = inf_status->stepping_over_breakpoint;
5131 tp->step_range_start = inf_status->step_range_start;
5132 tp->step_range_end = inf_status->step_range_end;
5133 tp->step_frame_id = inf_status->step_frame_id;
5134 tp->step_over_calls = inf_status->step_over_calls;
5135 stop_after_trap = inf_status->stop_after_trap;
5136 inf->stop_soon = inf_status->stop_soon;
5137 bpstat_clear (&tp->stop_bpstat);
5138 tp->stop_bpstat = inf_status->stop_bpstat;
5139 inf_status->stop_bpstat = NULL;
5140 tp->proceed_to_finish = inf_status->proceed_to_finish;
5141 tp->in_infcall = inf_status->in_infcall;
5143 if (target_has_stack)
5145 /* The point of catch_errors is that if the stack is clobbered,
5146 walking the stack might encounter a garbage pointer and
5147 error() trying to dereference it. */
5149 (restore_selected_frame, &inf_status->selected_frame_id,
5150 "Unable to restore previously selected frame:\n",
5151 RETURN_MASK_ERROR) == 0)
5152 /* Error in restoring the selected frame. Select the innermost
5154 select_frame (get_current_frame ());
5161 do_restore_inferior_status_cleanup (void *sts)
5163 restore_inferior_status (sts);
5167 make_cleanup_restore_inferior_status (struct inferior_status *inf_status)
5169 return make_cleanup (do_restore_inferior_status_cleanup, inf_status);
5173 discard_inferior_status (struct inferior_status *inf_status)
5175 /* See save_inferior_status for info on stop_bpstat. */
5176 bpstat_clear (&inf_status->stop_bpstat);
5181 inferior_has_forked (ptid_t pid, ptid_t *child_pid)
5183 struct target_waitstatus last;
5186 get_last_target_status (&last_ptid, &last);
5188 if (last.kind != TARGET_WAITKIND_FORKED)
5191 if (!ptid_equal (last_ptid, pid))
5194 *child_pid = last.value.related_pid;
5199 inferior_has_vforked (ptid_t pid, ptid_t *child_pid)
5201 struct target_waitstatus last;
5204 get_last_target_status (&last_ptid, &last);
5206 if (last.kind != TARGET_WAITKIND_VFORKED)
5209 if (!ptid_equal (last_ptid, pid))
5212 *child_pid = last.value.related_pid;
5217 inferior_has_execd (ptid_t pid, char **execd_pathname)
5219 struct target_waitstatus last;
5222 get_last_target_status (&last_ptid, &last);
5224 if (last.kind != TARGET_WAITKIND_EXECD)
5227 if (!ptid_equal (last_ptid, pid))
5230 *execd_pathname = xstrdup (last.value.execd_pathname);
5234 /* Oft used ptids */
5236 ptid_t minus_one_ptid;
5238 /* Create a ptid given the necessary PID, LWP, and TID components. */
5241 ptid_build (int pid, long lwp, long tid)
5251 /* Create a ptid from just a pid. */
5254 pid_to_ptid (int pid)
5256 return ptid_build (pid, 0, 0);
5259 /* Fetch the pid (process id) component from a ptid. */
5262 ptid_get_pid (ptid_t ptid)
5267 /* Fetch the lwp (lightweight process) component from a ptid. */
5270 ptid_get_lwp (ptid_t ptid)
5275 /* Fetch the tid (thread id) component from a ptid. */
5278 ptid_get_tid (ptid_t ptid)
5283 /* ptid_equal() is used to test equality of two ptids. */
5286 ptid_equal (ptid_t ptid1, ptid_t ptid2)
5288 return (ptid1.pid == ptid2.pid && ptid1.lwp == ptid2.lwp
5289 && ptid1.tid == ptid2.tid);
5292 /* Returns true if PTID represents a process. */
5295 ptid_is_pid (ptid_t ptid)
5297 if (ptid_equal (minus_one_ptid, ptid))
5299 if (ptid_equal (null_ptid, ptid))
5302 return (ptid_get_lwp (ptid) == 0 && ptid_get_tid (ptid) == 0);
5305 /* restore_inferior_ptid() will be used by the cleanup machinery
5306 to restore the inferior_ptid value saved in a call to
5307 save_inferior_ptid(). */
5310 restore_inferior_ptid (void *arg)
5312 ptid_t *saved_ptid_ptr = arg;
5313 inferior_ptid = *saved_ptid_ptr;
5317 /* Save the value of inferior_ptid so that it may be restored by a
5318 later call to do_cleanups(). Returns the struct cleanup pointer
5319 needed for later doing the cleanup. */
5322 save_inferior_ptid (void)
5324 ptid_t *saved_ptid_ptr;
5326 saved_ptid_ptr = xmalloc (sizeof (ptid_t));
5327 *saved_ptid_ptr = inferior_ptid;
5328 return make_cleanup (restore_inferior_ptid, saved_ptid_ptr);
5332 /* User interface for reverse debugging:
5333 Set exec-direction / show exec-direction commands
5334 (returns error unless target implements to_set_exec_direction method). */
5336 enum exec_direction_kind execution_direction = EXEC_FORWARD;
5337 static const char exec_forward[] = "forward";
5338 static const char exec_reverse[] = "reverse";
5339 static const char *exec_direction = exec_forward;
5340 static const char *exec_direction_names[] = {
5347 set_exec_direction_func (char *args, int from_tty,
5348 struct cmd_list_element *cmd)
5350 if (target_can_execute_reverse)
5352 if (!strcmp (exec_direction, exec_forward))
5353 execution_direction = EXEC_FORWARD;
5354 else if (!strcmp (exec_direction, exec_reverse))
5355 execution_direction = EXEC_REVERSE;
5360 show_exec_direction_func (struct ui_file *out, int from_tty,
5361 struct cmd_list_element *cmd, const char *value)
5363 switch (execution_direction) {
5365 fprintf_filtered (out, _("Forward.\n"));
5368 fprintf_filtered (out, _("Reverse.\n"));
5372 fprintf_filtered (out,
5373 _("Forward (target `%s' does not support exec-direction).\n"),
5379 /* User interface for non-stop mode. */
5382 static int non_stop_1 = 0;
5385 set_non_stop (char *args, int from_tty,
5386 struct cmd_list_element *c)
5388 if (target_has_execution)
5390 non_stop_1 = non_stop;
5391 error (_("Cannot change this setting while the inferior is running."));
5394 non_stop = non_stop_1;
5398 show_non_stop (struct ui_file *file, int from_tty,
5399 struct cmd_list_element *c, const char *value)
5401 fprintf_filtered (file,
5402 _("Controlling the inferior in non-stop mode is %s.\n"),
5408 _initialize_infrun (void)
5412 struct cmd_list_element *c;
5414 add_info ("signals", signals_info, _("\
5415 What debugger does when program gets various signals.\n\
5416 Specify a signal as argument to print info on that signal only."));
5417 add_info_alias ("handle", "signals", 0);
5419 add_com ("handle", class_run, handle_command, _("\
5420 Specify how to handle a signal.\n\
5421 Args are signals and actions to apply to those signals.\n\
5422 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
5423 from 1-15 are allowed for compatibility with old versions of GDB.\n\
5424 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
5425 The special arg \"all\" is recognized to mean all signals except those\n\
5426 used by the debugger, typically SIGTRAP and SIGINT.\n\
5427 Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
5428 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
5429 Stop means reenter debugger if this signal happens (implies print).\n\
5430 Print means print a message if this signal happens.\n\
5431 Pass means let program see this signal; otherwise program doesn't know.\n\
5432 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
5433 Pass and Stop may be combined."));
5436 add_com ("lz", class_info, signals_info, _("\
5437 What debugger does when program gets various signals.\n\
5438 Specify a signal as argument to print info on that signal only."));
5439 add_com ("z", class_run, xdb_handle_command, _("\
5440 Specify how to handle a signal.\n\
5441 Args are signals and actions to apply to those signals.\n\
5442 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
5443 from 1-15 are allowed for compatibility with old versions of GDB.\n\
5444 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
5445 The special arg \"all\" is recognized to mean all signals except those\n\
5446 used by the debugger, typically SIGTRAP and SIGINT.\n\
5447 Recognized actions include \"s\" (toggles between stop and nostop), \n\
5448 \"r\" (toggles between print and noprint), \"i\" (toggles between pass and \
5449 nopass), \"Q\" (noprint)\n\
5450 Stop means reenter debugger if this signal happens (implies print).\n\
5451 Print means print a message if this signal happens.\n\
5452 Pass means let program see this signal; otherwise program doesn't know.\n\
5453 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
5454 Pass and Stop may be combined."));
5458 stop_command = add_cmd ("stop", class_obscure,
5459 not_just_help_class_command, _("\
5460 There is no `stop' command, but you can set a hook on `stop'.\n\
5461 This allows you to set a list of commands to be run each time execution\n\
5462 of the program stops."), &cmdlist);
5464 add_setshow_zinteger_cmd ("infrun", class_maintenance, &debug_infrun, _("\
5465 Set inferior debugging."), _("\
5466 Show inferior debugging."), _("\
5467 When non-zero, inferior specific debugging is enabled."),
5470 &setdebuglist, &showdebuglist);
5472 add_setshow_boolean_cmd ("displaced", class_maintenance, &debug_displaced, _("\
5473 Set displaced stepping debugging."), _("\
5474 Show displaced stepping debugging."), _("\
5475 When non-zero, displaced stepping specific debugging is enabled."),
5477 show_debug_displaced,
5478 &setdebuglist, &showdebuglist);
5480 add_setshow_boolean_cmd ("non-stop", no_class,
5482 Set whether gdb controls the inferior in non-stop mode."), _("\
5483 Show whether gdb controls the inferior in non-stop mode."), _("\
5484 When debugging a multi-threaded program and this setting is\n\
5485 off (the default, also called all-stop mode), when one thread stops\n\
5486 (for a breakpoint, watchpoint, exception, or similar events), GDB stops\n\
5487 all other threads in the program while you interact with the thread of\n\
5488 interest. When you continue or step a thread, you can allow the other\n\
5489 threads to run, or have them remain stopped, but while you inspect any\n\
5490 thread's state, all threads stop.\n\
5492 In non-stop mode, when one thread stops, other threads can continue\n\
5493 to run freely. You'll be able to step each thread independently,\n\
5494 leave it stopped or free to run as needed."),
5500 numsigs = (int) TARGET_SIGNAL_LAST;
5501 signal_stop = (unsigned char *) xmalloc (sizeof (signal_stop[0]) * numsigs);
5502 signal_print = (unsigned char *)
5503 xmalloc (sizeof (signal_print[0]) * numsigs);
5504 signal_program = (unsigned char *)
5505 xmalloc (sizeof (signal_program[0]) * numsigs);
5506 for (i = 0; i < numsigs; i++)
5509 signal_print[i] = 1;
5510 signal_program[i] = 1;
5513 /* Signals caused by debugger's own actions
5514 should not be given to the program afterwards. */
5515 signal_program[TARGET_SIGNAL_TRAP] = 0;
5516 signal_program[TARGET_SIGNAL_INT] = 0;
5518 /* Signals that are not errors should not normally enter the debugger. */
5519 signal_stop[TARGET_SIGNAL_ALRM] = 0;
5520 signal_print[TARGET_SIGNAL_ALRM] = 0;
5521 signal_stop[TARGET_SIGNAL_VTALRM] = 0;
5522 signal_print[TARGET_SIGNAL_VTALRM] = 0;
5523 signal_stop[TARGET_SIGNAL_PROF] = 0;
5524 signal_print[TARGET_SIGNAL_PROF] = 0;
5525 signal_stop[TARGET_SIGNAL_CHLD] = 0;
5526 signal_print[TARGET_SIGNAL_CHLD] = 0;
5527 signal_stop[TARGET_SIGNAL_IO] = 0;
5528 signal_print[TARGET_SIGNAL_IO] = 0;
5529 signal_stop[TARGET_SIGNAL_POLL] = 0;
5530 signal_print[TARGET_SIGNAL_POLL] = 0;
5531 signal_stop[TARGET_SIGNAL_URG] = 0;
5532 signal_print[TARGET_SIGNAL_URG] = 0;
5533 signal_stop[TARGET_SIGNAL_WINCH] = 0;
5534 signal_print[TARGET_SIGNAL_WINCH] = 0;
5536 /* These signals are used internally by user-level thread
5537 implementations. (See signal(5) on Solaris.) Like the above
5538 signals, a healthy program receives and handles them as part of
5539 its normal operation. */
5540 signal_stop[TARGET_SIGNAL_LWP] = 0;
5541 signal_print[TARGET_SIGNAL_LWP] = 0;
5542 signal_stop[TARGET_SIGNAL_WAITING] = 0;
5543 signal_print[TARGET_SIGNAL_WAITING] = 0;
5544 signal_stop[TARGET_SIGNAL_CANCEL] = 0;
5545 signal_print[TARGET_SIGNAL_CANCEL] = 0;
5547 add_setshow_zinteger_cmd ("stop-on-solib-events", class_support,
5548 &stop_on_solib_events, _("\
5549 Set stopping for shared library events."), _("\
5550 Show stopping for shared library events."), _("\
5551 If nonzero, gdb will give control to the user when the dynamic linker\n\
5552 notifies gdb of shared library events. The most common event of interest\n\
5553 to the user would be loading/unloading of a new library."),
5555 show_stop_on_solib_events,
5556 &setlist, &showlist);
5558 add_setshow_enum_cmd ("follow-fork-mode", class_run,
5559 follow_fork_mode_kind_names,
5560 &follow_fork_mode_string, _("\
5561 Set debugger response to a program call of fork or vfork."), _("\
5562 Show debugger response to a program call of fork or vfork."), _("\
5563 A fork or vfork creates a new process. follow-fork-mode can be:\n\
5564 parent - the original process is debugged after a fork\n\
5565 child - the new process is debugged after a fork\n\
5566 The unfollowed process will continue to run.\n\
5567 By default, the debugger will follow the parent process."),
5569 show_follow_fork_mode_string,
5570 &setlist, &showlist);
5572 add_setshow_enum_cmd ("scheduler-locking", class_run,
5573 scheduler_enums, &scheduler_mode, _("\
5574 Set mode for locking scheduler during execution."), _("\
5575 Show mode for locking scheduler during execution."), _("\
5576 off == no locking (threads may preempt at any time)\n\
5577 on == full locking (no thread except the current thread may run)\n\
5578 step == scheduler locked during every single-step operation.\n\
5579 In this mode, no other thread may run during a step command.\n\
5580 Other threads may run while stepping over a function call ('next')."),
5581 set_schedlock_func, /* traps on target vector */
5582 show_scheduler_mode,
5583 &setlist, &showlist);
5585 add_setshow_boolean_cmd ("step-mode", class_run, &step_stop_if_no_debug, _("\
5586 Set mode of the step operation."), _("\
5587 Show mode of the step operation."), _("\
5588 When set, doing a step over a function without debug line information\n\
5589 will stop at the first instruction of that function. Otherwise, the\n\
5590 function is skipped and the step command stops at a different source line."),
5592 show_step_stop_if_no_debug,
5593 &setlist, &showlist);
5595 add_setshow_enum_cmd ("displaced-stepping", class_run,
5596 can_use_displaced_stepping_enum,
5597 &can_use_displaced_stepping, _("\
5598 Set debugger's willingness to use displaced stepping."), _("\
5599 Show debugger's willingness to use displaced stepping."), _("\
5600 If on, gdb will use displaced stepping to step over breakpoints if it is\n\
5601 supported by the target architecture. If off, gdb will not use displaced\n\
5602 stepping to step over breakpoints, even if such is supported by the target\n\
5603 architecture. If auto (which is the default), gdb will use displaced stepping\n\
5604 if the target architecture supports it and non-stop mode is active, but will not\n\
5605 use it in all-stop mode (see help set non-stop)."),
5607 show_can_use_displaced_stepping,
5608 &setlist, &showlist);
5610 add_setshow_enum_cmd ("exec-direction", class_run, exec_direction_names,
5611 &exec_direction, _("Set direction of execution.\n\
5612 Options are 'forward' or 'reverse'."),
5613 _("Show direction of execution (forward/reverse)."),
5614 _("Tells gdb whether to execute forward or backward."),
5615 set_exec_direction_func, show_exec_direction_func,
5616 &setlist, &showlist);
5618 /* ptid initializations */
5619 null_ptid = ptid_build (0, 0, 0);
5620 minus_one_ptid = ptid_build (-1, 0, 0);
5621 inferior_ptid = null_ptid;
5622 target_last_wait_ptid = minus_one_ptid;
5623 displaced_step_ptid = null_ptid;
5625 observer_attach_thread_ptid_changed (infrun_thread_ptid_changed);
5626 observer_attach_thread_stop_requested (infrun_thread_stop_requested);
5627 observer_attach_thread_exit (infrun_thread_thread_exit);
5629 /* Explicitly create without lookup, since that tries to create a
5630 value with a void typed value, and when we get here, gdbarch
5631 isn't initialized yet. At this point, we're quite sure there
5632 isn't another convenience variable of the same name. */
5633 create_internalvar_type_lazy ("_siginfo", siginfo_make_value);