* infrun.c (handle_inferior_event): Clear trap_expected after
[binutils-gdb.git] / gdb / infrun.c
1 /* Target-struct-independent code to start (run) and stop an inferior
2 process.
3
4 Copyright (C) 1986, 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.
7
8 This file is part of GDB.
9
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.
14
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.
19
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/>. */
22
23 #include "defs.h"
24 #include "gdb_string.h"
25 #include <ctype.h>
26 #include "symtab.h"
27 #include "frame.h"
28 #include "inferior.h"
29 #include "exceptions.h"
30 #include "breakpoint.h"
31 #include "gdb_wait.h"
32 #include "gdbcore.h"
33 #include "gdbcmd.h"
34 #include "cli/cli-script.h"
35 #include "target.h"
36 #include "gdbthread.h"
37 #include "annotate.h"
38 #include "symfile.h"
39 #include "top.h"
40 #include <signal.h>
41 #include "inf-loop.h"
42 #include "regcache.h"
43 #include "value.h"
44 #include "observer.h"
45 #include "language.h"
46 #include "solib.h"
47 #include "main.h"
48 #include "gdb_assert.h"
49 #include "mi/mi-common.h"
50 #include "event-top.h"
51 #include "record.h"
52 #include "inline-frame.h"
53
54 /* Prototypes for local functions */
55
56 static void signals_info (char *, int);
57
58 static void handle_command (char *, int);
59
60 static void sig_print_info (enum target_signal);
61
62 static void sig_print_header (void);
63
64 static void resume_cleanups (void *);
65
66 static int hook_stop_stub (void *);
67
68 static int restore_selected_frame (void *);
69
70 static void build_infrun (void);
71
72 static int follow_fork (void);
73
74 static void set_schedlock_func (char *args, int from_tty,
75 struct cmd_list_element *c);
76
77 static int currently_stepping (struct thread_info *tp);
78
79 static int currently_stepping_or_nexting_callback (struct thread_info *tp,
80 void *data);
81
82 static void xdb_handle_command (char *args, int from_tty);
83
84 static int prepare_to_proceed (int);
85
86 void _initialize_infrun (void);
87
88 void nullify_last_target_wait_ptid (void);
89
90 /* When set, stop the 'step' command if we enter a function which has
91 no line number information. The normal behavior is that we step
92 over such function. */
93 int step_stop_if_no_debug = 0;
94 static void
95 show_step_stop_if_no_debug (struct ui_file *file, int from_tty,
96 struct cmd_list_element *c, const char *value)
97 {
98 fprintf_filtered (file, _("Mode of the step operation is %s.\n"), value);
99 }
100
101 /* In asynchronous mode, but simulating synchronous execution. */
102
103 int sync_execution = 0;
104
105 /* wait_for_inferior and normal_stop use this to notify the user
106 when the inferior stopped in a different thread than it had been
107 running in. */
108
109 static ptid_t previous_inferior_ptid;
110
111 int debug_displaced = 0;
112 static void
113 show_debug_displaced (struct ui_file *file, int from_tty,
114 struct cmd_list_element *c, const char *value)
115 {
116 fprintf_filtered (file, _("Displace stepping debugging is %s.\n"), value);
117 }
118
119 static int debug_infrun = 0;
120 static void
121 show_debug_infrun (struct ui_file *file, int from_tty,
122 struct cmd_list_element *c, const char *value)
123 {
124 fprintf_filtered (file, _("Inferior debugging is %s.\n"), value);
125 }
126
127 /* If the program uses ELF-style shared libraries, then calls to
128 functions in shared libraries go through stubs, which live in a
129 table called the PLT (Procedure Linkage Table). The first time the
130 function is called, the stub sends control to the dynamic linker,
131 which looks up the function's real address, patches the stub so
132 that future calls will go directly to the function, and then passes
133 control to the function.
134
135 If we are stepping at the source level, we don't want to see any of
136 this --- we just want to skip over the stub and the dynamic linker.
137 The simple approach is to single-step until control leaves the
138 dynamic linker.
139
140 However, on some systems (e.g., Red Hat's 5.2 distribution) the
141 dynamic linker calls functions in the shared C library, so you
142 can't tell from the PC alone whether the dynamic linker is still
143 running. In this case, we use a step-resume breakpoint to get us
144 past the dynamic linker, as if we were using "next" to step over a
145 function call.
146
147 in_solib_dynsym_resolve_code() says whether we're in the dynamic
148 linker code or not. Normally, this means we single-step. However,
149 if SKIP_SOLIB_RESOLVER then returns non-zero, then its value is an
150 address where we can place a step-resume breakpoint to get past the
151 linker's symbol resolution function.
152
153 in_solib_dynsym_resolve_code() can generally be implemented in a
154 pretty portable way, by comparing the PC against the address ranges
155 of the dynamic linker's sections.
156
157 SKIP_SOLIB_RESOLVER is generally going to be system-specific, since
158 it depends on internal details of the dynamic linker. It's usually
159 not too hard to figure out where to put a breakpoint, but it
160 certainly isn't portable. SKIP_SOLIB_RESOLVER should do plenty of
161 sanity checking. If it can't figure things out, returning zero and
162 getting the (possibly confusing) stepping behavior is better than
163 signalling an error, which will obscure the change in the
164 inferior's state. */
165
166 /* This function returns TRUE if pc is the address of an instruction
167 that lies within the dynamic linker (such as the event hook, or the
168 dld itself).
169
170 This function must be used only when a dynamic linker event has
171 been caught, and the inferior is being stepped out of the hook, or
172 undefined results are guaranteed. */
173
174 #ifndef SOLIB_IN_DYNAMIC_LINKER
175 #define SOLIB_IN_DYNAMIC_LINKER(pid,pc) 0
176 #endif
177
178
179 /* Convert the #defines into values. This is temporary until wfi control
180 flow is completely sorted out. */
181
182 #ifndef CANNOT_STEP_HW_WATCHPOINTS
183 #define CANNOT_STEP_HW_WATCHPOINTS 0
184 #else
185 #undef CANNOT_STEP_HW_WATCHPOINTS
186 #define CANNOT_STEP_HW_WATCHPOINTS 1
187 #endif
188
189 /* Tables of how to react to signals; the user sets them. */
190
191 static unsigned char *signal_stop;
192 static unsigned char *signal_print;
193 static unsigned char *signal_program;
194
195 #define SET_SIGS(nsigs,sigs,flags) \
196 do { \
197 int signum = (nsigs); \
198 while (signum-- > 0) \
199 if ((sigs)[signum]) \
200 (flags)[signum] = 1; \
201 } while (0)
202
203 #define UNSET_SIGS(nsigs,sigs,flags) \
204 do { \
205 int signum = (nsigs); \
206 while (signum-- > 0) \
207 if ((sigs)[signum]) \
208 (flags)[signum] = 0; \
209 } while (0)
210
211 /* Value to pass to target_resume() to cause all threads to resume */
212
213 #define RESUME_ALL minus_one_ptid
214
215 /* Command list pointer for the "stop" placeholder. */
216
217 static struct cmd_list_element *stop_command;
218
219 /* Function inferior was in as of last step command. */
220
221 static struct symbol *step_start_function;
222
223 /* Nonzero if we want to give control to the user when we're notified
224 of shared library events by the dynamic linker. */
225 static int stop_on_solib_events;
226 static void
227 show_stop_on_solib_events (struct ui_file *file, int from_tty,
228 struct cmd_list_element *c, const char *value)
229 {
230 fprintf_filtered (file, _("Stopping for shared library events is %s.\n"),
231 value);
232 }
233
234 /* Nonzero means expecting a trace trap
235 and should stop the inferior and return silently when it happens. */
236
237 int stop_after_trap;
238
239 /* Save register contents here when executing a "finish" command or are
240 about to pop a stack dummy frame, if-and-only-if proceed_to_finish is set.
241 Thus this contains the return value from the called function (assuming
242 values are returned in a register). */
243
244 struct regcache *stop_registers;
245
246 /* Nonzero after stop if current stack frame should be printed. */
247
248 static int stop_print_frame;
249
250 /* This is a cached copy of the pid/waitstatus of the last event
251 returned by target_wait()/deprecated_target_wait_hook(). This
252 information is returned by get_last_target_status(). */
253 static ptid_t target_last_wait_ptid;
254 static struct target_waitstatus target_last_waitstatus;
255
256 static void context_switch (ptid_t ptid);
257
258 void init_thread_stepping_state (struct thread_info *tss);
259
260 void init_infwait_state (void);
261
262 static const char follow_fork_mode_child[] = "child";
263 static const char follow_fork_mode_parent[] = "parent";
264
265 static const char *follow_fork_mode_kind_names[] = {
266 follow_fork_mode_child,
267 follow_fork_mode_parent,
268 NULL
269 };
270
271 static const char *follow_fork_mode_string = follow_fork_mode_parent;
272 static void
273 show_follow_fork_mode_string (struct ui_file *file, int from_tty,
274 struct cmd_list_element *c, const char *value)
275 {
276 fprintf_filtered (file, _("\
277 Debugger response to a program call of fork or vfork is \"%s\".\n"),
278 value);
279 }
280 \f
281
282 /* Tell the target to follow the fork we're stopped at. Returns true
283 if the inferior should be resumed; false, if the target for some
284 reason decided it's best not to resume. */
285
286 static int
287 follow_fork (void)
288 {
289 int follow_child = (follow_fork_mode_string == follow_fork_mode_child);
290 int should_resume = 1;
291 struct thread_info *tp;
292
293 /* Copy user stepping state to the new inferior thread. FIXME: the
294 followed fork child thread should have a copy of most of the
295 parent thread structure's run control related fields, not just these.
296 Initialized to avoid "may be used uninitialized" warnings from gcc. */
297 struct breakpoint *step_resume_breakpoint = NULL;
298 CORE_ADDR step_range_start = 0;
299 CORE_ADDR step_range_end = 0;
300 struct frame_id step_frame_id = { 0 };
301
302 if (!non_stop)
303 {
304 ptid_t wait_ptid;
305 struct target_waitstatus wait_status;
306
307 /* Get the last target status returned by target_wait(). */
308 get_last_target_status (&wait_ptid, &wait_status);
309
310 /* If not stopped at a fork event, then there's nothing else to
311 do. */
312 if (wait_status.kind != TARGET_WAITKIND_FORKED
313 && wait_status.kind != TARGET_WAITKIND_VFORKED)
314 return 1;
315
316 /* Check if we switched over from WAIT_PTID, since the event was
317 reported. */
318 if (!ptid_equal (wait_ptid, minus_one_ptid)
319 && !ptid_equal (inferior_ptid, wait_ptid))
320 {
321 /* We did. Switch back to WAIT_PTID thread, to tell the
322 target to follow it (in either direction). We'll
323 afterwards refuse to resume, and inform the user what
324 happened. */
325 switch_to_thread (wait_ptid);
326 should_resume = 0;
327 }
328 }
329
330 tp = inferior_thread ();
331
332 /* If there were any forks/vforks that were caught and are now to be
333 followed, then do so now. */
334 switch (tp->pending_follow.kind)
335 {
336 case TARGET_WAITKIND_FORKED:
337 case TARGET_WAITKIND_VFORKED:
338 {
339 ptid_t parent, child;
340
341 /* If the user did a next/step, etc, over a fork call,
342 preserve the stepping state in the fork child. */
343 if (follow_child && should_resume)
344 {
345 step_resume_breakpoint
346 = clone_momentary_breakpoint (tp->step_resume_breakpoint);
347 step_range_start = tp->step_range_start;
348 step_range_end = tp->step_range_end;
349 step_frame_id = tp->step_frame_id;
350
351 /* For now, delete the parent's sr breakpoint, otherwise,
352 parent/child sr breakpoints are considered duplicates,
353 and the child version will not be installed. Remove
354 this when the breakpoints module becomes aware of
355 inferiors and address spaces. */
356 delete_step_resume_breakpoint (tp);
357 tp->step_range_start = 0;
358 tp->step_range_end = 0;
359 tp->step_frame_id = null_frame_id;
360 }
361
362 parent = inferior_ptid;
363 child = tp->pending_follow.value.related_pid;
364
365 /* Tell the target to do whatever is necessary to follow
366 either parent or child. */
367 if (target_follow_fork (follow_child))
368 {
369 /* Target refused to follow, or there's some other reason
370 we shouldn't resume. */
371 should_resume = 0;
372 }
373 else
374 {
375 /* This pending follow fork event is now handled, one way
376 or another. The previous selected thread may be gone
377 from the lists by now, but if it is still around, need
378 to clear the pending follow request. */
379 tp = find_thread_ptid (parent);
380 if (tp)
381 tp->pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
382
383 /* This makes sure we don't try to apply the "Switched
384 over from WAIT_PID" logic above. */
385 nullify_last_target_wait_ptid ();
386
387 /* If we followed the child, switch to it... */
388 if (follow_child)
389 {
390 switch_to_thread (child);
391
392 /* ... and preserve the stepping state, in case the
393 user was stepping over the fork call. */
394 if (should_resume)
395 {
396 tp = inferior_thread ();
397 tp->step_resume_breakpoint = step_resume_breakpoint;
398 tp->step_range_start = step_range_start;
399 tp->step_range_end = step_range_end;
400 tp->step_frame_id = step_frame_id;
401 }
402 else
403 {
404 /* If we get here, it was because we're trying to
405 resume from a fork catchpoint, but, the user
406 has switched threads away from the thread that
407 forked. In that case, the resume command
408 issued is most likely not applicable to the
409 child, so just warn, and refuse to resume. */
410 warning (_("\
411 Not resuming: switched threads before following fork child.\n"));
412 }
413
414 /* Reset breakpoints in the child as appropriate. */
415 follow_inferior_reset_breakpoints ();
416 }
417 else
418 switch_to_thread (parent);
419 }
420 }
421 break;
422 case TARGET_WAITKIND_SPURIOUS:
423 /* Nothing to follow. */
424 break;
425 default:
426 internal_error (__FILE__, __LINE__,
427 "Unexpected pending_follow.kind %d\n",
428 tp->pending_follow.kind);
429 break;
430 }
431
432 return should_resume;
433 }
434
435 void
436 follow_inferior_reset_breakpoints (void)
437 {
438 struct thread_info *tp = inferior_thread ();
439
440 /* Was there a step_resume breakpoint? (There was if the user
441 did a "next" at the fork() call.) If so, explicitly reset its
442 thread number.
443
444 step_resumes are a form of bp that are made to be per-thread.
445 Since we created the step_resume bp when the parent process
446 was being debugged, and now are switching to the child process,
447 from the breakpoint package's viewpoint, that's a switch of
448 "threads". We must update the bp's notion of which thread
449 it is for, or it'll be ignored when it triggers. */
450
451 if (tp->step_resume_breakpoint)
452 breakpoint_re_set_thread (tp->step_resume_breakpoint);
453
454 /* Reinsert all breakpoints in the child. The user may have set
455 breakpoints after catching the fork, in which case those
456 were never set in the child, but only in the parent. This makes
457 sure the inserted breakpoints match the breakpoint list. */
458
459 breakpoint_re_set ();
460 insert_breakpoints ();
461 }
462
463 /* EXECD_PATHNAME is assumed to be non-NULL. */
464
465 static void
466 follow_exec (ptid_t pid, char *execd_pathname)
467 {
468 struct target_ops *tgt;
469 struct thread_info *th = inferior_thread ();
470
471 /* This is an exec event that we actually wish to pay attention to.
472 Refresh our symbol table to the newly exec'd program, remove any
473 momentary bp's, etc.
474
475 If there are breakpoints, they aren't really inserted now,
476 since the exec() transformed our inferior into a fresh set
477 of instructions.
478
479 We want to preserve symbolic breakpoints on the list, since
480 we have hopes that they can be reset after the new a.out's
481 symbol table is read.
482
483 However, any "raw" breakpoints must be removed from the list
484 (e.g., the solib bp's), since their address is probably invalid
485 now.
486
487 And, we DON'T want to call delete_breakpoints() here, since
488 that may write the bp's "shadow contents" (the instruction
489 value that was overwritten witha TRAP instruction). Since
490 we now have a new a.out, those shadow contents aren't valid. */
491 update_breakpoints_after_exec ();
492
493 /* If there was one, it's gone now. We cannot truly step-to-next
494 statement through an exec(). */
495 th->step_resume_breakpoint = NULL;
496 th->step_range_start = 0;
497 th->step_range_end = 0;
498
499 /* The target reports the exec event to the main thread, even if
500 some other thread does the exec, and even if the main thread was
501 already stopped --- if debugging in non-stop mode, it's possible
502 the user had the main thread held stopped in the previous image
503 --- release it now. This is the same behavior as step-over-exec
504 with scheduler-locking on in all-stop mode. */
505 th->stop_requested = 0;
506
507 /* What is this a.out's name? */
508 printf_unfiltered (_("Executing new program: %s\n"), execd_pathname);
509
510 /* We've followed the inferior through an exec. Therefore, the
511 inferior has essentially been killed & reborn. */
512
513 gdb_flush (gdb_stdout);
514
515 breakpoint_init_inferior (inf_execd);
516
517 if (gdb_sysroot && *gdb_sysroot)
518 {
519 char *name = alloca (strlen (gdb_sysroot)
520 + strlen (execd_pathname)
521 + 1);
522 strcpy (name, gdb_sysroot);
523 strcat (name, execd_pathname);
524 execd_pathname = name;
525 }
526
527 /* That a.out is now the one to use. */
528 exec_file_attach (execd_pathname, 0);
529
530 /* Reset the shared library package. This ensures that we get a
531 shlib event when the child reaches "_start", at which point the
532 dld will have had a chance to initialize the child. */
533 /* Also, loading a symbol file below may trigger symbol lookups, and
534 we don't want those to be satisfied by the libraries of the
535 previous incarnation of this process. */
536 no_shared_libraries (NULL, 0);
537
538 /* Load the main file's symbols. */
539 symbol_file_add_main (execd_pathname, 0);
540
541 #ifdef SOLIB_CREATE_INFERIOR_HOOK
542 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
543 #else
544 solib_create_inferior_hook ();
545 #endif
546
547 /* Reinsert all breakpoints. (Those which were symbolic have
548 been reset to the proper address in the new a.out, thanks
549 to symbol_file_command...) */
550 insert_breakpoints ();
551
552 /* The next resume of this inferior should bring it to the shlib
553 startup breakpoints. (If the user had also set bp's on
554 "main" from the old (parent) process, then they'll auto-
555 matically get reset there in the new process.) */
556 }
557
558 /* Non-zero if we just simulating a single-step. This is needed
559 because we cannot remove the breakpoints in the inferior process
560 until after the `wait' in `wait_for_inferior'. */
561 static int singlestep_breakpoints_inserted_p = 0;
562
563 /* The thread we inserted single-step breakpoints for. */
564 static ptid_t singlestep_ptid;
565
566 /* PC when we started this single-step. */
567 static CORE_ADDR singlestep_pc;
568
569 /* If another thread hit the singlestep breakpoint, we save the original
570 thread here so that we can resume single-stepping it later. */
571 static ptid_t saved_singlestep_ptid;
572 static int stepping_past_singlestep_breakpoint;
573
574 /* If not equal to null_ptid, this means that after stepping over breakpoint
575 is finished, we need to switch to deferred_step_ptid, and step it.
576
577 The use case is when one thread has hit a breakpoint, and then the user
578 has switched to another thread and issued 'step'. We need to step over
579 breakpoint in the thread which hit the breakpoint, but then continue
580 stepping the thread user has selected. */
581 static ptid_t deferred_step_ptid;
582 \f
583 /* Displaced stepping. */
584
585 /* In non-stop debugging mode, we must take special care to manage
586 breakpoints properly; in particular, the traditional strategy for
587 stepping a thread past a breakpoint it has hit is unsuitable.
588 'Displaced stepping' is a tactic for stepping one thread past a
589 breakpoint it has hit while ensuring that other threads running
590 concurrently will hit the breakpoint as they should.
591
592 The traditional way to step a thread T off a breakpoint in a
593 multi-threaded program in all-stop mode is as follows:
594
595 a0) Initially, all threads are stopped, and breakpoints are not
596 inserted.
597 a1) We single-step T, leaving breakpoints uninserted.
598 a2) We insert breakpoints, and resume all threads.
599
600 In non-stop debugging, however, this strategy is unsuitable: we
601 don't want to have to stop all threads in the system in order to
602 continue or step T past a breakpoint. Instead, we use displaced
603 stepping:
604
605 n0) Initially, T is stopped, other threads are running, and
606 breakpoints are inserted.
607 n1) We copy the instruction "under" the breakpoint to a separate
608 location, outside the main code stream, making any adjustments
609 to the instruction, register, and memory state as directed by
610 T's architecture.
611 n2) We single-step T over the instruction at its new location.
612 n3) We adjust the resulting register and memory state as directed
613 by T's architecture. This includes resetting T's PC to point
614 back into the main instruction stream.
615 n4) We resume T.
616
617 This approach depends on the following gdbarch methods:
618
619 - gdbarch_max_insn_length and gdbarch_displaced_step_location
620 indicate where to copy the instruction, and how much space must
621 be reserved there. We use these in step n1.
622
623 - gdbarch_displaced_step_copy_insn copies a instruction to a new
624 address, and makes any necessary adjustments to the instruction,
625 register contents, and memory. We use this in step n1.
626
627 - gdbarch_displaced_step_fixup adjusts registers and memory after
628 we have successfuly single-stepped the instruction, to yield the
629 same effect the instruction would have had if we had executed it
630 at its original address. We use this in step n3.
631
632 - gdbarch_displaced_step_free_closure provides cleanup.
633
634 The gdbarch_displaced_step_copy_insn and
635 gdbarch_displaced_step_fixup functions must be written so that
636 copying an instruction with gdbarch_displaced_step_copy_insn,
637 single-stepping across the copied instruction, and then applying
638 gdbarch_displaced_insn_fixup should have the same effects on the
639 thread's memory and registers as stepping the instruction in place
640 would have. Exactly which responsibilities fall to the copy and
641 which fall to the fixup is up to the author of those functions.
642
643 See the comments in gdbarch.sh for details.
644
645 Note that displaced stepping and software single-step cannot
646 currently be used in combination, although with some care I think
647 they could be made to. Software single-step works by placing
648 breakpoints on all possible subsequent instructions; if the
649 displaced instruction is a PC-relative jump, those breakpoints
650 could fall in very strange places --- on pages that aren't
651 executable, or at addresses that are not proper instruction
652 boundaries. (We do generally let other threads run while we wait
653 to hit the software single-step breakpoint, and they might
654 encounter such a corrupted instruction.) One way to work around
655 this would be to have gdbarch_displaced_step_copy_insn fully
656 simulate the effect of PC-relative instructions (and return NULL)
657 on architectures that use software single-stepping.
658
659 In non-stop mode, we can have independent and simultaneous step
660 requests, so more than one thread may need to simultaneously step
661 over a breakpoint. The current implementation assumes there is
662 only one scratch space per process. In this case, we have to
663 serialize access to the scratch space. If thread A wants to step
664 over a breakpoint, but we are currently waiting for some other
665 thread to complete a displaced step, we leave thread A stopped and
666 place it in the displaced_step_request_queue. Whenever a displaced
667 step finishes, we pick the next thread in the queue and start a new
668 displaced step operation on it. See displaced_step_prepare and
669 displaced_step_fixup for details. */
670
671 /* If this is not null_ptid, this is the thread carrying out a
672 displaced single-step. This thread's state will require fixing up
673 once it has completed its step. */
674 static ptid_t displaced_step_ptid;
675
676 struct displaced_step_request
677 {
678 ptid_t ptid;
679 struct displaced_step_request *next;
680 };
681
682 /* A queue of pending displaced stepping requests. */
683 struct displaced_step_request *displaced_step_request_queue;
684
685 /* The architecture the thread had when we stepped it. */
686 static struct gdbarch *displaced_step_gdbarch;
687
688 /* The closure provided gdbarch_displaced_step_copy_insn, to be used
689 for post-step cleanup. */
690 static struct displaced_step_closure *displaced_step_closure;
691
692 /* The address of the original instruction, and the copy we made. */
693 static CORE_ADDR displaced_step_original, displaced_step_copy;
694
695 /* Saved contents of copy area. */
696 static gdb_byte *displaced_step_saved_copy;
697
698 /* Enum strings for "set|show displaced-stepping". */
699
700 static const char can_use_displaced_stepping_auto[] = "auto";
701 static const char can_use_displaced_stepping_on[] = "on";
702 static const char can_use_displaced_stepping_off[] = "off";
703 static const char *can_use_displaced_stepping_enum[] =
704 {
705 can_use_displaced_stepping_auto,
706 can_use_displaced_stepping_on,
707 can_use_displaced_stepping_off,
708 NULL,
709 };
710
711 /* If ON, and the architecture supports it, GDB will use displaced
712 stepping to step over breakpoints. If OFF, or if the architecture
713 doesn't support it, GDB will instead use the traditional
714 hold-and-step approach. If AUTO (which is the default), GDB will
715 decide which technique to use to step over breakpoints depending on
716 which of all-stop or non-stop mode is active --- displaced stepping
717 in non-stop mode; hold-and-step in all-stop mode. */
718
719 static const char *can_use_displaced_stepping =
720 can_use_displaced_stepping_auto;
721
722 static void
723 show_can_use_displaced_stepping (struct ui_file *file, int from_tty,
724 struct cmd_list_element *c,
725 const char *value)
726 {
727 if (can_use_displaced_stepping == can_use_displaced_stepping_auto)
728 fprintf_filtered (file, _("\
729 Debugger's willingness to use displaced stepping to step over \
730 breakpoints is %s (currently %s).\n"),
731 value, non_stop ? "on" : "off");
732 else
733 fprintf_filtered (file, _("\
734 Debugger's willingness to use displaced stepping to step over \
735 breakpoints is %s.\n"), value);
736 }
737
738 /* Return non-zero if displaced stepping can/should be used to step
739 over breakpoints. */
740
741 static int
742 use_displaced_stepping (struct gdbarch *gdbarch)
743 {
744 return (((can_use_displaced_stepping == can_use_displaced_stepping_auto
745 && non_stop)
746 || can_use_displaced_stepping == can_use_displaced_stepping_on)
747 && gdbarch_displaced_step_copy_insn_p (gdbarch)
748 && !RECORD_IS_USED);
749 }
750
751 /* Clean out any stray displaced stepping state. */
752 static void
753 displaced_step_clear (void)
754 {
755 /* Indicate that there is no cleanup pending. */
756 displaced_step_ptid = null_ptid;
757
758 if (displaced_step_closure)
759 {
760 gdbarch_displaced_step_free_closure (displaced_step_gdbarch,
761 displaced_step_closure);
762 displaced_step_closure = NULL;
763 }
764 }
765
766 static void
767 displaced_step_clear_cleanup (void *ignore)
768 {
769 displaced_step_clear ();
770 }
771
772 /* Dump LEN bytes at BUF in hex to FILE, followed by a newline. */
773 void
774 displaced_step_dump_bytes (struct ui_file *file,
775 const gdb_byte *buf,
776 size_t len)
777 {
778 int i;
779
780 for (i = 0; i < len; i++)
781 fprintf_unfiltered (file, "%02x ", buf[i]);
782 fputs_unfiltered ("\n", file);
783 }
784
785 /* Prepare to single-step, using displaced stepping.
786
787 Note that we cannot use displaced stepping when we have a signal to
788 deliver. If we have a signal to deliver and an instruction to step
789 over, then after the step, there will be no indication from the
790 target whether the thread entered a signal handler or ignored the
791 signal and stepped over the instruction successfully --- both cases
792 result in a simple SIGTRAP. In the first case we mustn't do a
793 fixup, and in the second case we must --- but we can't tell which.
794 Comments in the code for 'random signals' in handle_inferior_event
795 explain how we handle this case instead.
796
797 Returns 1 if preparing was successful -- this thread is going to be
798 stepped now; or 0 if displaced stepping this thread got queued. */
799 static int
800 displaced_step_prepare (ptid_t ptid)
801 {
802 struct cleanup *old_cleanups, *ignore_cleanups;
803 struct regcache *regcache = get_thread_regcache (ptid);
804 struct gdbarch *gdbarch = get_regcache_arch (regcache);
805 CORE_ADDR original, copy;
806 ULONGEST len;
807 struct displaced_step_closure *closure;
808
809 /* We should never reach this function if the architecture does not
810 support displaced stepping. */
811 gdb_assert (gdbarch_displaced_step_copy_insn_p (gdbarch));
812
813 /* For the first cut, we're displaced stepping one thread at a
814 time. */
815
816 if (!ptid_equal (displaced_step_ptid, null_ptid))
817 {
818 /* Already waiting for a displaced step to finish. Defer this
819 request and place in queue. */
820 struct displaced_step_request *req, *new_req;
821
822 if (debug_displaced)
823 fprintf_unfiltered (gdb_stdlog,
824 "displaced: defering step of %s\n",
825 target_pid_to_str (ptid));
826
827 new_req = xmalloc (sizeof (*new_req));
828 new_req->ptid = ptid;
829 new_req->next = NULL;
830
831 if (displaced_step_request_queue)
832 {
833 for (req = displaced_step_request_queue;
834 req && req->next;
835 req = req->next)
836 ;
837 req->next = new_req;
838 }
839 else
840 displaced_step_request_queue = new_req;
841
842 return 0;
843 }
844 else
845 {
846 if (debug_displaced)
847 fprintf_unfiltered (gdb_stdlog,
848 "displaced: stepping %s now\n",
849 target_pid_to_str (ptid));
850 }
851
852 displaced_step_clear ();
853
854 old_cleanups = save_inferior_ptid ();
855 inferior_ptid = ptid;
856
857 original = regcache_read_pc (regcache);
858
859 copy = gdbarch_displaced_step_location (gdbarch);
860 len = gdbarch_max_insn_length (gdbarch);
861
862 /* Save the original contents of the copy area. */
863 displaced_step_saved_copy = xmalloc (len);
864 ignore_cleanups = make_cleanup (free_current_contents,
865 &displaced_step_saved_copy);
866 read_memory (copy, displaced_step_saved_copy, len);
867 if (debug_displaced)
868 {
869 fprintf_unfiltered (gdb_stdlog, "displaced: saved %s: ",
870 paddress (gdbarch, copy));
871 displaced_step_dump_bytes (gdb_stdlog, displaced_step_saved_copy, len);
872 };
873
874 closure = gdbarch_displaced_step_copy_insn (gdbarch,
875 original, copy, regcache);
876
877 /* We don't support the fully-simulated case at present. */
878 gdb_assert (closure);
879
880 /* Save the information we need to fix things up if the step
881 succeeds. */
882 displaced_step_ptid = ptid;
883 displaced_step_gdbarch = gdbarch;
884 displaced_step_closure = closure;
885 displaced_step_original = original;
886 displaced_step_copy = copy;
887
888 make_cleanup (displaced_step_clear_cleanup, 0);
889
890 /* Resume execution at the copy. */
891 regcache_write_pc (regcache, copy);
892
893 discard_cleanups (ignore_cleanups);
894
895 do_cleanups (old_cleanups);
896
897 if (debug_displaced)
898 fprintf_unfiltered (gdb_stdlog, "displaced: displaced pc to %s\n",
899 paddress (gdbarch, copy));
900
901 return 1;
902 }
903
904 static void
905 write_memory_ptid (ptid_t ptid, CORE_ADDR memaddr, const gdb_byte *myaddr, int len)
906 {
907 struct cleanup *ptid_cleanup = save_inferior_ptid ();
908 inferior_ptid = ptid;
909 write_memory (memaddr, myaddr, len);
910 do_cleanups (ptid_cleanup);
911 }
912
913 static void
914 displaced_step_fixup (ptid_t event_ptid, enum target_signal signal)
915 {
916 struct cleanup *old_cleanups;
917
918 /* Was this event for the pid we displaced? */
919 if (ptid_equal (displaced_step_ptid, null_ptid)
920 || ! ptid_equal (displaced_step_ptid, event_ptid))
921 return;
922
923 old_cleanups = make_cleanup (displaced_step_clear_cleanup, 0);
924
925 /* Restore the contents of the copy area. */
926 {
927 ULONGEST len = gdbarch_max_insn_length (displaced_step_gdbarch);
928 write_memory_ptid (displaced_step_ptid, displaced_step_copy,
929 displaced_step_saved_copy, len);
930 if (debug_displaced)
931 fprintf_unfiltered (gdb_stdlog, "displaced: restored %s\n",
932 paddress (displaced_step_gdbarch,
933 displaced_step_copy));
934 }
935
936 /* Did the instruction complete successfully? */
937 if (signal == TARGET_SIGNAL_TRAP)
938 {
939 /* Fix up the resulting state. */
940 gdbarch_displaced_step_fixup (displaced_step_gdbarch,
941 displaced_step_closure,
942 displaced_step_original,
943 displaced_step_copy,
944 get_thread_regcache (displaced_step_ptid));
945 }
946 else
947 {
948 /* Since the instruction didn't complete, all we can do is
949 relocate the PC. */
950 struct regcache *regcache = get_thread_regcache (event_ptid);
951 CORE_ADDR pc = regcache_read_pc (regcache);
952 pc = displaced_step_original + (pc - displaced_step_copy);
953 regcache_write_pc (regcache, pc);
954 }
955
956 do_cleanups (old_cleanups);
957
958 displaced_step_ptid = null_ptid;
959
960 /* Are there any pending displaced stepping requests? If so, run
961 one now. */
962 while (displaced_step_request_queue)
963 {
964 struct displaced_step_request *head;
965 ptid_t ptid;
966 struct regcache *regcache;
967 CORE_ADDR actual_pc;
968
969 head = displaced_step_request_queue;
970 ptid = head->ptid;
971 displaced_step_request_queue = head->next;
972 xfree (head);
973
974 context_switch (ptid);
975
976 regcache = get_thread_regcache (ptid);
977 actual_pc = regcache_read_pc (regcache);
978
979 if (breakpoint_here_p (actual_pc))
980 {
981 if (debug_displaced)
982 fprintf_unfiltered (gdb_stdlog,
983 "displaced: stepping queued %s now\n",
984 target_pid_to_str (ptid));
985
986 displaced_step_prepare (ptid);
987
988 if (debug_displaced)
989 {
990 struct gdbarch *gdbarch = get_regcache_arch (regcache);
991 gdb_byte buf[4];
992
993 fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
994 paddress (gdbarch, actual_pc));
995 read_memory (actual_pc, buf, sizeof (buf));
996 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
997 }
998
999 target_resume (ptid, 1, TARGET_SIGNAL_0);
1000
1001 /* Done, we're stepping a thread. */
1002 break;
1003 }
1004 else
1005 {
1006 int step;
1007 struct thread_info *tp = inferior_thread ();
1008
1009 /* The breakpoint we were sitting under has since been
1010 removed. */
1011 tp->trap_expected = 0;
1012
1013 /* Go back to what we were trying to do. */
1014 step = currently_stepping (tp);
1015
1016 if (debug_displaced)
1017 fprintf_unfiltered (gdb_stdlog, "breakpoint is gone %s: step(%d)\n",
1018 target_pid_to_str (tp->ptid), step);
1019
1020 target_resume (ptid, step, TARGET_SIGNAL_0);
1021 tp->stop_signal = TARGET_SIGNAL_0;
1022
1023 /* This request was discarded. See if there's any other
1024 thread waiting for its turn. */
1025 }
1026 }
1027 }
1028
1029 /* Update global variables holding ptids to hold NEW_PTID if they were
1030 holding OLD_PTID. */
1031 static void
1032 infrun_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
1033 {
1034 struct displaced_step_request *it;
1035
1036 if (ptid_equal (inferior_ptid, old_ptid))
1037 inferior_ptid = new_ptid;
1038
1039 if (ptid_equal (singlestep_ptid, old_ptid))
1040 singlestep_ptid = new_ptid;
1041
1042 if (ptid_equal (displaced_step_ptid, old_ptid))
1043 displaced_step_ptid = new_ptid;
1044
1045 if (ptid_equal (deferred_step_ptid, old_ptid))
1046 deferred_step_ptid = new_ptid;
1047
1048 for (it = displaced_step_request_queue; it; it = it->next)
1049 if (ptid_equal (it->ptid, old_ptid))
1050 it->ptid = new_ptid;
1051 }
1052
1053 \f
1054 /* Resuming. */
1055
1056 /* Things to clean up if we QUIT out of resume (). */
1057 static void
1058 resume_cleanups (void *ignore)
1059 {
1060 normal_stop ();
1061 }
1062
1063 static const char schedlock_off[] = "off";
1064 static const char schedlock_on[] = "on";
1065 static const char schedlock_step[] = "step";
1066 static const char *scheduler_enums[] = {
1067 schedlock_off,
1068 schedlock_on,
1069 schedlock_step,
1070 NULL
1071 };
1072 static const char *scheduler_mode = schedlock_off;
1073 static void
1074 show_scheduler_mode (struct ui_file *file, int from_tty,
1075 struct cmd_list_element *c, const char *value)
1076 {
1077 fprintf_filtered (file, _("\
1078 Mode for locking scheduler during execution is \"%s\".\n"),
1079 value);
1080 }
1081
1082 static void
1083 set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
1084 {
1085 if (!target_can_lock_scheduler)
1086 {
1087 scheduler_mode = schedlock_off;
1088 error (_("Target '%s' cannot support this command."), target_shortname);
1089 }
1090 }
1091
1092 /* True if execution commands resume all threads of all processes by
1093 default; otherwise, resume only threads of the current inferior
1094 process. */
1095 int sched_multi = 0;
1096
1097 /* Try to setup for software single stepping over the specified location.
1098 Return 1 if target_resume() should use hardware single step.
1099
1100 GDBARCH the current gdbarch.
1101 PC the location to step over. */
1102
1103 static int
1104 maybe_software_singlestep (struct gdbarch *gdbarch, CORE_ADDR pc)
1105 {
1106 int hw_step = 1;
1107
1108 if (gdbarch_software_single_step_p (gdbarch)
1109 && gdbarch_software_single_step (gdbarch, get_current_frame ()))
1110 {
1111 hw_step = 0;
1112 /* Do not pull these breakpoints until after a `wait' in
1113 `wait_for_inferior' */
1114 singlestep_breakpoints_inserted_p = 1;
1115 singlestep_ptid = inferior_ptid;
1116 singlestep_pc = pc;
1117 }
1118 return hw_step;
1119 }
1120
1121 /* Resume the inferior, but allow a QUIT. This is useful if the user
1122 wants to interrupt some lengthy single-stepping operation
1123 (for child processes, the SIGINT goes to the inferior, and so
1124 we get a SIGINT random_signal, but for remote debugging and perhaps
1125 other targets, that's not true).
1126
1127 STEP nonzero if we should step (zero to continue instead).
1128 SIG is the signal to give the inferior (zero for none). */
1129 void
1130 resume (int step, enum target_signal sig)
1131 {
1132 int should_resume = 1;
1133 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
1134 struct regcache *regcache = get_current_regcache ();
1135 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1136 struct thread_info *tp = inferior_thread ();
1137 CORE_ADDR pc = regcache_read_pc (regcache);
1138
1139 QUIT;
1140
1141 if (debug_infrun)
1142 fprintf_unfiltered (gdb_stdlog,
1143 "infrun: resume (step=%d, signal=%d), "
1144 "trap_expected=%d\n",
1145 step, sig, tp->trap_expected);
1146
1147 /* Some targets (e.g. Solaris x86) have a kernel bug when stepping
1148 over an instruction that causes a page fault without triggering
1149 a hardware watchpoint. The kernel properly notices that it shouldn't
1150 stop, because the hardware watchpoint is not triggered, but it forgets
1151 the step request and continues the program normally.
1152 Work around the problem by removing hardware watchpoints if a step is
1153 requested, GDB will check for a hardware watchpoint trigger after the
1154 step anyway. */
1155 if (CANNOT_STEP_HW_WATCHPOINTS && step)
1156 remove_hw_watchpoints ();
1157
1158
1159 /* Normally, by the time we reach `resume', the breakpoints are either
1160 removed or inserted, as appropriate. The exception is if we're sitting
1161 at a permanent breakpoint; we need to step over it, but permanent
1162 breakpoints can't be removed. So we have to test for it here. */
1163 if (breakpoint_here_p (pc) == permanent_breakpoint_here)
1164 {
1165 if (gdbarch_skip_permanent_breakpoint_p (gdbarch))
1166 gdbarch_skip_permanent_breakpoint (gdbarch, regcache);
1167 else
1168 error (_("\
1169 The program is stopped at a permanent breakpoint, but GDB does not know\n\
1170 how to step past a permanent breakpoint on this architecture. Try using\n\
1171 a command like `return' or `jump' to continue execution."));
1172 }
1173
1174 /* If enabled, step over breakpoints by executing a copy of the
1175 instruction at a different address.
1176
1177 We can't use displaced stepping when we have a signal to deliver;
1178 the comments for displaced_step_prepare explain why. The
1179 comments in the handle_inferior event for dealing with 'random
1180 signals' explain what we do instead. */
1181 if (use_displaced_stepping (gdbarch)
1182 && tp->trap_expected
1183 && sig == TARGET_SIGNAL_0)
1184 {
1185 if (!displaced_step_prepare (inferior_ptid))
1186 {
1187 /* Got placed in displaced stepping queue. Will be resumed
1188 later when all the currently queued displaced stepping
1189 requests finish. The thread is not executing at this point,
1190 and the call to set_executing will be made later. But we
1191 need to call set_running here, since from frontend point of view,
1192 the thread is running. */
1193 set_running (inferior_ptid, 1);
1194 discard_cleanups (old_cleanups);
1195 return;
1196 }
1197 }
1198
1199 /* Do we need to do it the hard way, w/temp breakpoints? */
1200 if (step)
1201 step = maybe_software_singlestep (gdbarch, pc);
1202
1203 if (should_resume)
1204 {
1205 ptid_t resume_ptid;
1206
1207 /* If STEP is set, it's a request to use hardware stepping
1208 facilities. But in that case, we should never
1209 use singlestep breakpoint. */
1210 gdb_assert (!(singlestep_breakpoints_inserted_p && step));
1211
1212 /* Decide the set of threads to ask the target to resume. Start
1213 by assuming everything will be resumed, than narrow the set
1214 by applying increasingly restricting conditions. */
1215
1216 /* By default, resume all threads of all processes. */
1217 resume_ptid = RESUME_ALL;
1218
1219 /* Maybe resume only all threads of the current process. */
1220 if (!sched_multi && target_supports_multi_process ())
1221 {
1222 resume_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
1223 }
1224
1225 /* Maybe resume a single thread after all. */
1226 if (singlestep_breakpoints_inserted_p
1227 && stepping_past_singlestep_breakpoint)
1228 {
1229 /* The situation here is as follows. In thread T1 we wanted to
1230 single-step. Lacking hardware single-stepping we've
1231 set breakpoint at the PC of the next instruction -- call it
1232 P. After resuming, we've hit that breakpoint in thread T2.
1233 Now we've removed original breakpoint, inserted breakpoint
1234 at P+1, and try to step to advance T2 past breakpoint.
1235 We need to step only T2, as if T1 is allowed to freely run,
1236 it can run past P, and if other threads are allowed to run,
1237 they can hit breakpoint at P+1, and nested hits of single-step
1238 breakpoints is not something we'd want -- that's complicated
1239 to support, and has no value. */
1240 resume_ptid = inferior_ptid;
1241 }
1242 else if ((step || singlestep_breakpoints_inserted_p)
1243 && tp->trap_expected)
1244 {
1245 /* We're allowing a thread to run past a breakpoint it has
1246 hit, by single-stepping the thread with the breakpoint
1247 removed. In which case, we need to single-step only this
1248 thread, and keep others stopped, as they can miss this
1249 breakpoint if allowed to run.
1250
1251 The current code actually removes all breakpoints when
1252 doing this, not just the one being stepped over, so if we
1253 let other threads run, we can actually miss any
1254 breakpoint, not just the one at PC. */
1255 resume_ptid = inferior_ptid;
1256 }
1257 else if (non_stop)
1258 {
1259 /* With non-stop mode on, threads are always handled
1260 individually. */
1261 resume_ptid = inferior_ptid;
1262 }
1263 else if ((scheduler_mode == schedlock_on)
1264 || (scheduler_mode == schedlock_step
1265 && (step || singlestep_breakpoints_inserted_p)))
1266 {
1267 /* User-settable 'scheduler' mode requires solo thread resume. */
1268 resume_ptid = inferior_ptid;
1269 }
1270
1271 if (gdbarch_cannot_step_breakpoint (gdbarch))
1272 {
1273 /* Most targets can step a breakpoint instruction, thus
1274 executing it normally. But if this one cannot, just
1275 continue and we will hit it anyway. */
1276 if (step && breakpoint_inserted_here_p (pc))
1277 step = 0;
1278 }
1279
1280 if (debug_displaced
1281 && use_displaced_stepping (gdbarch)
1282 && tp->trap_expected)
1283 {
1284 struct regcache *resume_regcache = get_thread_regcache (resume_ptid);
1285 struct gdbarch *resume_gdbarch = get_regcache_arch (resume_regcache);
1286 CORE_ADDR actual_pc = regcache_read_pc (resume_regcache);
1287 gdb_byte buf[4];
1288
1289 fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
1290 paddress (resume_gdbarch, actual_pc));
1291 read_memory (actual_pc, buf, sizeof (buf));
1292 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
1293 }
1294
1295 /* Install inferior's terminal modes. */
1296 target_terminal_inferior ();
1297
1298 /* Avoid confusing the next resume, if the next stop/resume
1299 happens to apply to another thread. */
1300 tp->stop_signal = TARGET_SIGNAL_0;
1301
1302 target_resume (resume_ptid, step, sig);
1303 }
1304
1305 discard_cleanups (old_cleanups);
1306 }
1307 \f
1308 /* Proceeding. */
1309
1310 /* Clear out all variables saying what to do when inferior is continued.
1311 First do this, then set the ones you want, then call `proceed'. */
1312
1313 static void
1314 clear_proceed_status_thread (struct thread_info *tp)
1315 {
1316 if (debug_infrun)
1317 fprintf_unfiltered (gdb_stdlog,
1318 "infrun: clear_proceed_status_thread (%s)\n",
1319 target_pid_to_str (tp->ptid));
1320
1321 tp->trap_expected = 0;
1322 tp->step_range_start = 0;
1323 tp->step_range_end = 0;
1324 tp->step_frame_id = null_frame_id;
1325 tp->step_stack_frame_id = null_frame_id;
1326 tp->step_over_calls = STEP_OVER_UNDEBUGGABLE;
1327 tp->stop_requested = 0;
1328
1329 tp->stop_step = 0;
1330
1331 tp->proceed_to_finish = 0;
1332
1333 /* Discard any remaining commands or status from previous stop. */
1334 bpstat_clear (&tp->stop_bpstat);
1335 }
1336
1337 static int
1338 clear_proceed_status_callback (struct thread_info *tp, void *data)
1339 {
1340 if (is_exited (tp->ptid))
1341 return 0;
1342
1343 clear_proceed_status_thread (tp);
1344 return 0;
1345 }
1346
1347 void
1348 clear_proceed_status (void)
1349 {
1350 if (!ptid_equal (inferior_ptid, null_ptid))
1351 {
1352 struct inferior *inferior;
1353
1354 if (non_stop)
1355 {
1356 /* If in non-stop mode, only delete the per-thread status
1357 of the current thread. */
1358 clear_proceed_status_thread (inferior_thread ());
1359 }
1360 else
1361 {
1362 /* In all-stop mode, delete the per-thread status of
1363 *all* threads. */
1364 iterate_over_threads (clear_proceed_status_callback, NULL);
1365 }
1366
1367 inferior = current_inferior ();
1368 inferior->stop_soon = NO_STOP_QUIETLY;
1369 }
1370
1371 stop_after_trap = 0;
1372
1373 observer_notify_about_to_proceed ();
1374
1375 if (stop_registers)
1376 {
1377 regcache_xfree (stop_registers);
1378 stop_registers = NULL;
1379 }
1380 }
1381
1382 /* Check the current thread against the thread that reported the most recent
1383 event. If a step-over is required return TRUE and set the current thread
1384 to the old thread. Otherwise return FALSE.
1385
1386 This should be suitable for any targets that support threads. */
1387
1388 static int
1389 prepare_to_proceed (int step)
1390 {
1391 ptid_t wait_ptid;
1392 struct target_waitstatus wait_status;
1393 int schedlock_enabled;
1394
1395 /* With non-stop mode on, threads are always handled individually. */
1396 gdb_assert (! non_stop);
1397
1398 /* Get the last target status returned by target_wait(). */
1399 get_last_target_status (&wait_ptid, &wait_status);
1400
1401 /* Make sure we were stopped at a breakpoint. */
1402 if (wait_status.kind != TARGET_WAITKIND_STOPPED
1403 || wait_status.value.sig != TARGET_SIGNAL_TRAP)
1404 {
1405 return 0;
1406 }
1407
1408 schedlock_enabled = (scheduler_mode == schedlock_on
1409 || (scheduler_mode == schedlock_step
1410 && step));
1411
1412 /* Don't switch over to WAIT_PTID if scheduler locking is on. */
1413 if (schedlock_enabled)
1414 return 0;
1415
1416 /* Don't switch over if we're about to resume some other process
1417 other than WAIT_PTID's, and schedule-multiple is off. */
1418 if (!sched_multi
1419 && ptid_get_pid (wait_ptid) != ptid_get_pid (inferior_ptid))
1420 return 0;
1421
1422 /* Switched over from WAIT_PID. */
1423 if (!ptid_equal (wait_ptid, minus_one_ptid)
1424 && !ptid_equal (inferior_ptid, wait_ptid))
1425 {
1426 struct regcache *regcache = get_thread_regcache (wait_ptid);
1427
1428 if (breakpoint_here_p (regcache_read_pc (regcache)))
1429 {
1430 /* If stepping, remember current thread to switch back to. */
1431 if (step)
1432 deferred_step_ptid = inferior_ptid;
1433
1434 /* Switch back to WAIT_PID thread. */
1435 switch_to_thread (wait_ptid);
1436
1437 /* We return 1 to indicate that there is a breakpoint here,
1438 so we need to step over it before continuing to avoid
1439 hitting it straight away. */
1440 return 1;
1441 }
1442 }
1443
1444 return 0;
1445 }
1446
1447 /* Basic routine for continuing the program in various fashions.
1448
1449 ADDR is the address to resume at, or -1 for resume where stopped.
1450 SIGGNAL is the signal to give it, or 0 for none,
1451 or -1 for act according to how it stopped.
1452 STEP is nonzero if should trap after one instruction.
1453 -1 means return after that and print nothing.
1454 You should probably set various step_... variables
1455 before calling here, if you are stepping.
1456
1457 You should call clear_proceed_status before calling proceed. */
1458
1459 void
1460 proceed (CORE_ADDR addr, enum target_signal siggnal, int step)
1461 {
1462 struct regcache *regcache;
1463 struct gdbarch *gdbarch;
1464 struct thread_info *tp;
1465 CORE_ADDR pc;
1466 int oneproc = 0;
1467
1468 /* If we're stopped at a fork/vfork, follow the branch set by the
1469 "set follow-fork-mode" command; otherwise, we'll just proceed
1470 resuming the current thread. */
1471 if (!follow_fork ())
1472 {
1473 /* The target for some reason decided not to resume. */
1474 normal_stop ();
1475 return;
1476 }
1477
1478 regcache = get_current_regcache ();
1479 gdbarch = get_regcache_arch (regcache);
1480 pc = regcache_read_pc (regcache);
1481
1482 if (step > 0)
1483 step_start_function = find_pc_function (pc);
1484 if (step < 0)
1485 stop_after_trap = 1;
1486
1487 if (addr == (CORE_ADDR) -1)
1488 {
1489 if (pc == stop_pc && breakpoint_here_p (pc)
1490 && execution_direction != EXEC_REVERSE)
1491 /* There is a breakpoint at the address we will resume at,
1492 step one instruction before inserting breakpoints so that
1493 we do not stop right away (and report a second hit at this
1494 breakpoint).
1495
1496 Note, we don't do this in reverse, because we won't
1497 actually be executing the breakpoint insn anyway.
1498 We'll be (un-)executing the previous instruction. */
1499
1500 oneproc = 1;
1501 else if (gdbarch_single_step_through_delay_p (gdbarch)
1502 && gdbarch_single_step_through_delay (gdbarch,
1503 get_current_frame ()))
1504 /* We stepped onto an instruction that needs to be stepped
1505 again before re-inserting the breakpoint, do so. */
1506 oneproc = 1;
1507 }
1508 else
1509 {
1510 regcache_write_pc (regcache, addr);
1511 }
1512
1513 if (debug_infrun)
1514 fprintf_unfiltered (gdb_stdlog,
1515 "infrun: proceed (addr=%s, signal=%d, step=%d)\n",
1516 paddress (gdbarch, addr), siggnal, step);
1517
1518 if (non_stop)
1519 /* In non-stop, each thread is handled individually. The context
1520 must already be set to the right thread here. */
1521 ;
1522 else
1523 {
1524 /* In a multi-threaded task we may select another thread and
1525 then continue or step.
1526
1527 But if the old thread was stopped at a breakpoint, it will
1528 immediately cause another breakpoint stop without any
1529 execution (i.e. it will report a breakpoint hit incorrectly).
1530 So we must step over it first.
1531
1532 prepare_to_proceed checks the current thread against the
1533 thread that reported the most recent event. If a step-over
1534 is required it returns TRUE and sets the current thread to
1535 the old thread. */
1536 if (prepare_to_proceed (step))
1537 oneproc = 1;
1538 }
1539
1540 /* prepare_to_proceed may change the current thread. */
1541 tp = inferior_thread ();
1542
1543 if (oneproc)
1544 {
1545 tp->trap_expected = 1;
1546 /* If displaced stepping is enabled, we can step over the
1547 breakpoint without hitting it, so leave all breakpoints
1548 inserted. Otherwise we need to disable all breakpoints, step
1549 one instruction, and then re-add them when that step is
1550 finished. */
1551 if (!use_displaced_stepping (gdbarch))
1552 remove_breakpoints ();
1553 }
1554
1555 /* We can insert breakpoints if we're not trying to step over one,
1556 or if we are stepping over one but we're using displaced stepping
1557 to do so. */
1558 if (! tp->trap_expected || use_displaced_stepping (gdbarch))
1559 insert_breakpoints ();
1560
1561 if (!non_stop)
1562 {
1563 /* Pass the last stop signal to the thread we're resuming,
1564 irrespective of whether the current thread is the thread that
1565 got the last event or not. This was historically GDB's
1566 behaviour before keeping a stop_signal per thread. */
1567
1568 struct thread_info *last_thread;
1569 ptid_t last_ptid;
1570 struct target_waitstatus last_status;
1571
1572 get_last_target_status (&last_ptid, &last_status);
1573 if (!ptid_equal (inferior_ptid, last_ptid)
1574 && !ptid_equal (last_ptid, null_ptid)
1575 && !ptid_equal (last_ptid, minus_one_ptid))
1576 {
1577 last_thread = find_thread_ptid (last_ptid);
1578 if (last_thread)
1579 {
1580 tp->stop_signal = last_thread->stop_signal;
1581 last_thread->stop_signal = TARGET_SIGNAL_0;
1582 }
1583 }
1584 }
1585
1586 if (siggnal != TARGET_SIGNAL_DEFAULT)
1587 tp->stop_signal = siggnal;
1588 /* If this signal should not be seen by program,
1589 give it zero. Used for debugging signals. */
1590 else if (!signal_program[tp->stop_signal])
1591 tp->stop_signal = TARGET_SIGNAL_0;
1592
1593 annotate_starting ();
1594
1595 /* Make sure that output from GDB appears before output from the
1596 inferior. */
1597 gdb_flush (gdb_stdout);
1598
1599 /* Refresh prev_pc value just prior to resuming. This used to be
1600 done in stop_stepping, however, setting prev_pc there did not handle
1601 scenarios such as inferior function calls or returning from
1602 a function via the return command. In those cases, the prev_pc
1603 value was not set properly for subsequent commands. The prev_pc value
1604 is used to initialize the starting line number in the ecs. With an
1605 invalid value, the gdb next command ends up stopping at the position
1606 represented by the next line table entry past our start position.
1607 On platforms that generate one line table entry per line, this
1608 is not a problem. However, on the ia64, the compiler generates
1609 extraneous line table entries that do not increase the line number.
1610 When we issue the gdb next command on the ia64 after an inferior call
1611 or a return command, we often end up a few instructions forward, still
1612 within the original line we started.
1613
1614 An attempt was made to have init_execution_control_state () refresh
1615 the prev_pc value before calculating the line number. This approach
1616 did not work because on platforms that use ptrace, the pc register
1617 cannot be read unless the inferior is stopped. At that point, we
1618 are not guaranteed the inferior is stopped and so the regcache_read_pc ()
1619 call can fail. Setting the prev_pc value here ensures the value is
1620 updated correctly when the inferior is stopped. */
1621 tp->prev_pc = regcache_read_pc (get_current_regcache ());
1622
1623 /* Fill in with reasonable starting values. */
1624 init_thread_stepping_state (tp);
1625
1626 /* Reset to normal state. */
1627 init_infwait_state ();
1628
1629 /* Resume inferior. */
1630 resume (oneproc || step || bpstat_should_step (), tp->stop_signal);
1631
1632 /* Wait for it to stop (if not standalone)
1633 and in any case decode why it stopped, and act accordingly. */
1634 /* Do this only if we are not using the event loop, or if the target
1635 does not support asynchronous execution. */
1636 if (!target_can_async_p ())
1637 {
1638 wait_for_inferior (0);
1639 normal_stop ();
1640 }
1641 }
1642 \f
1643
1644 /* Start remote-debugging of a machine over a serial link. */
1645
1646 void
1647 start_remote (int from_tty)
1648 {
1649 struct inferior *inferior;
1650 init_wait_for_inferior ();
1651
1652 inferior = current_inferior ();
1653 inferior->stop_soon = STOP_QUIETLY_REMOTE;
1654
1655 /* Always go on waiting for the target, regardless of the mode. */
1656 /* FIXME: cagney/1999-09-23: At present it isn't possible to
1657 indicate to wait_for_inferior that a target should timeout if
1658 nothing is returned (instead of just blocking). Because of this,
1659 targets expecting an immediate response need to, internally, set
1660 things up so that the target_wait() is forced to eventually
1661 timeout. */
1662 /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
1663 differentiate to its caller what the state of the target is after
1664 the initial open has been performed. Here we're assuming that
1665 the target has stopped. It should be possible to eventually have
1666 target_open() return to the caller an indication that the target
1667 is currently running and GDB state should be set to the same as
1668 for an async run. */
1669 wait_for_inferior (0);
1670
1671 /* Now that the inferior has stopped, do any bookkeeping like
1672 loading shared libraries. We want to do this before normal_stop,
1673 so that the displayed frame is up to date. */
1674 post_create_inferior (&current_target, from_tty);
1675
1676 normal_stop ();
1677 }
1678
1679 /* Initialize static vars when a new inferior begins. */
1680
1681 void
1682 init_wait_for_inferior (void)
1683 {
1684 /* These are meaningless until the first time through wait_for_inferior. */
1685
1686 breakpoint_init_inferior (inf_starting);
1687
1688 clear_proceed_status ();
1689
1690 stepping_past_singlestep_breakpoint = 0;
1691 deferred_step_ptid = null_ptid;
1692
1693 target_last_wait_ptid = minus_one_ptid;
1694
1695 previous_inferior_ptid = null_ptid;
1696 init_infwait_state ();
1697
1698 displaced_step_clear ();
1699
1700 /* Discard any skipped inlined frames. */
1701 clear_inline_frame_state (minus_one_ptid);
1702 }
1703
1704 \f
1705 /* This enum encodes possible reasons for doing a target_wait, so that
1706 wfi can call target_wait in one place. (Ultimately the call will be
1707 moved out of the infinite loop entirely.) */
1708
1709 enum infwait_states
1710 {
1711 infwait_normal_state,
1712 infwait_thread_hop_state,
1713 infwait_step_watch_state,
1714 infwait_nonstep_watch_state
1715 };
1716
1717 /* Why did the inferior stop? Used to print the appropriate messages
1718 to the interface from within handle_inferior_event(). */
1719 enum inferior_stop_reason
1720 {
1721 /* Step, next, nexti, stepi finished. */
1722 END_STEPPING_RANGE,
1723 /* Inferior terminated by signal. */
1724 SIGNAL_EXITED,
1725 /* Inferior exited. */
1726 EXITED,
1727 /* Inferior received signal, and user asked to be notified. */
1728 SIGNAL_RECEIVED,
1729 /* Reverse execution -- target ran out of history info. */
1730 NO_HISTORY
1731 };
1732
1733 /* The PTID we'll do a target_wait on.*/
1734 ptid_t waiton_ptid;
1735
1736 /* Current inferior wait state. */
1737 enum infwait_states infwait_state;
1738
1739 /* Data to be passed around while handling an event. This data is
1740 discarded between events. */
1741 struct execution_control_state
1742 {
1743 ptid_t ptid;
1744 /* The thread that got the event, if this was a thread event; NULL
1745 otherwise. */
1746 struct thread_info *event_thread;
1747
1748 struct target_waitstatus ws;
1749 int random_signal;
1750 CORE_ADDR stop_func_start;
1751 CORE_ADDR stop_func_end;
1752 char *stop_func_name;
1753 int new_thread_event;
1754 int wait_some_more;
1755 };
1756
1757 static void init_execution_control_state (struct execution_control_state *ecs);
1758
1759 static void handle_inferior_event (struct execution_control_state *ecs);
1760
1761 static void handle_step_into_function (struct gdbarch *gdbarch,
1762 struct execution_control_state *ecs);
1763 static void handle_step_into_function_backward (struct gdbarch *gdbarch,
1764 struct execution_control_state *ecs);
1765 static void insert_step_resume_breakpoint_at_frame (struct frame_info *step_frame);
1766 static void insert_step_resume_breakpoint_at_caller (struct frame_info *);
1767 static void insert_step_resume_breakpoint_at_sal (struct gdbarch *gdbarch,
1768 struct symtab_and_line sr_sal,
1769 struct frame_id sr_id);
1770 static void insert_longjmp_resume_breakpoint (struct gdbarch *, CORE_ADDR);
1771
1772 static void stop_stepping (struct execution_control_state *ecs);
1773 static void prepare_to_wait (struct execution_control_state *ecs);
1774 static void keep_going (struct execution_control_state *ecs);
1775 static void print_stop_reason (enum inferior_stop_reason stop_reason,
1776 int stop_info);
1777
1778 /* Callback for iterate over threads. If the thread is stopped, but
1779 the user/frontend doesn't know about that yet, go through
1780 normal_stop, as if the thread had just stopped now. ARG points at
1781 a ptid. If PTID is MINUS_ONE_PTID, applies to all threads. If
1782 ptid_is_pid(PTID) is true, applies to all threads of the process
1783 pointed at by PTID. Otherwise, apply only to the thread pointed by
1784 PTID. */
1785
1786 static int
1787 infrun_thread_stop_requested_callback (struct thread_info *info, void *arg)
1788 {
1789 ptid_t ptid = * (ptid_t *) arg;
1790
1791 if ((ptid_equal (info->ptid, ptid)
1792 || ptid_equal (minus_one_ptid, ptid)
1793 || (ptid_is_pid (ptid)
1794 && ptid_get_pid (ptid) == ptid_get_pid (info->ptid)))
1795 && is_running (info->ptid)
1796 && !is_executing (info->ptid))
1797 {
1798 struct cleanup *old_chain;
1799 struct execution_control_state ecss;
1800 struct execution_control_state *ecs = &ecss;
1801
1802 memset (ecs, 0, sizeof (*ecs));
1803
1804 old_chain = make_cleanup_restore_current_thread ();
1805
1806 switch_to_thread (info->ptid);
1807
1808 /* Go through handle_inferior_event/normal_stop, so we always
1809 have consistent output as if the stop event had been
1810 reported. */
1811 ecs->ptid = info->ptid;
1812 ecs->event_thread = find_thread_ptid (info->ptid);
1813 ecs->ws.kind = TARGET_WAITKIND_STOPPED;
1814 ecs->ws.value.sig = TARGET_SIGNAL_0;
1815
1816 handle_inferior_event (ecs);
1817
1818 if (!ecs->wait_some_more)
1819 {
1820 struct thread_info *tp;
1821
1822 normal_stop ();
1823
1824 /* Finish off the continuations. The continations
1825 themselves are responsible for realising the thread
1826 didn't finish what it was supposed to do. */
1827 tp = inferior_thread ();
1828 do_all_intermediate_continuations_thread (tp);
1829 do_all_continuations_thread (tp);
1830 }
1831
1832 do_cleanups (old_chain);
1833 }
1834
1835 return 0;
1836 }
1837
1838 /* This function is attached as a "thread_stop_requested" observer.
1839 Cleanup local state that assumed the PTID was to be resumed, and
1840 report the stop to the frontend. */
1841
1842 static void
1843 infrun_thread_stop_requested (ptid_t ptid)
1844 {
1845 struct displaced_step_request *it, *next, *prev = NULL;
1846
1847 /* PTID was requested to stop. Remove it from the displaced
1848 stepping queue, so we don't try to resume it automatically. */
1849 for (it = displaced_step_request_queue; it; it = next)
1850 {
1851 next = it->next;
1852
1853 if (ptid_equal (it->ptid, ptid)
1854 || ptid_equal (minus_one_ptid, ptid)
1855 || (ptid_is_pid (ptid)
1856 && ptid_get_pid (ptid) == ptid_get_pid (it->ptid)))
1857 {
1858 if (displaced_step_request_queue == it)
1859 displaced_step_request_queue = it->next;
1860 else
1861 prev->next = it->next;
1862
1863 xfree (it);
1864 }
1865 else
1866 prev = it;
1867 }
1868
1869 iterate_over_threads (infrun_thread_stop_requested_callback, &ptid);
1870 }
1871
1872 static void
1873 infrun_thread_thread_exit (struct thread_info *tp, int silent)
1874 {
1875 if (ptid_equal (target_last_wait_ptid, tp->ptid))
1876 nullify_last_target_wait_ptid ();
1877 }
1878
1879 /* Callback for iterate_over_threads. */
1880
1881 static int
1882 delete_step_resume_breakpoint_callback (struct thread_info *info, void *data)
1883 {
1884 if (is_exited (info->ptid))
1885 return 0;
1886
1887 delete_step_resume_breakpoint (info);
1888 return 0;
1889 }
1890
1891 /* In all-stop, delete the step resume breakpoint of any thread that
1892 had one. In non-stop, delete the step resume breakpoint of the
1893 thread that just stopped. */
1894
1895 static void
1896 delete_step_thread_step_resume_breakpoint (void)
1897 {
1898 if (!target_has_execution
1899 || ptid_equal (inferior_ptid, null_ptid))
1900 /* If the inferior has exited, we have already deleted the step
1901 resume breakpoints out of GDB's lists. */
1902 return;
1903
1904 if (non_stop)
1905 {
1906 /* If in non-stop mode, only delete the step-resume or
1907 longjmp-resume breakpoint of the thread that just stopped
1908 stepping. */
1909 struct thread_info *tp = inferior_thread ();
1910 delete_step_resume_breakpoint (tp);
1911 }
1912 else
1913 /* In all-stop mode, delete all step-resume and longjmp-resume
1914 breakpoints of any thread that had them. */
1915 iterate_over_threads (delete_step_resume_breakpoint_callback, NULL);
1916 }
1917
1918 /* A cleanup wrapper. */
1919
1920 static void
1921 delete_step_thread_step_resume_breakpoint_cleanup (void *arg)
1922 {
1923 delete_step_thread_step_resume_breakpoint ();
1924 }
1925
1926 /* Pretty print the results of target_wait, for debugging purposes. */
1927
1928 static void
1929 print_target_wait_results (ptid_t waiton_ptid, ptid_t result_ptid,
1930 const struct target_waitstatus *ws)
1931 {
1932 char *status_string = target_waitstatus_to_string (ws);
1933 struct ui_file *tmp_stream = mem_fileopen ();
1934 char *text;
1935 long len;
1936
1937 /* The text is split over several lines because it was getting too long.
1938 Call fprintf_unfiltered (gdb_stdlog) once so that the text is still
1939 output as a unit; we want only one timestamp printed if debug_timestamp
1940 is set. */
1941
1942 fprintf_unfiltered (tmp_stream,
1943 "infrun: target_wait (%d", PIDGET (waiton_ptid));
1944 if (PIDGET (waiton_ptid) != -1)
1945 fprintf_unfiltered (tmp_stream,
1946 " [%s]", target_pid_to_str (waiton_ptid));
1947 fprintf_unfiltered (tmp_stream, ", status) =\n");
1948 fprintf_unfiltered (tmp_stream,
1949 "infrun: %d [%s],\n",
1950 PIDGET (result_ptid), target_pid_to_str (result_ptid));
1951 fprintf_unfiltered (tmp_stream,
1952 "infrun: %s\n",
1953 status_string);
1954
1955 text = ui_file_xstrdup (tmp_stream, &len);
1956
1957 /* This uses %s in part to handle %'s in the text, but also to avoid
1958 a gcc error: the format attribute requires a string literal. */
1959 fprintf_unfiltered (gdb_stdlog, "%s", text);
1960
1961 xfree (status_string);
1962 xfree (text);
1963 ui_file_delete (tmp_stream);
1964 }
1965
1966 /* Wait for control to return from inferior to debugger.
1967
1968 If TREAT_EXEC_AS_SIGTRAP is non-zero, then handle EXEC signals
1969 as if they were SIGTRAP signals. This can be useful during
1970 the startup sequence on some targets such as HP/UX, where
1971 we receive an EXEC event instead of the expected SIGTRAP.
1972
1973 If inferior gets a signal, we may decide to start it up again
1974 instead of returning. That is why there is a loop in this function.
1975 When this function actually returns it means the inferior
1976 should be left stopped and GDB should read more commands. */
1977
1978 void
1979 wait_for_inferior (int treat_exec_as_sigtrap)
1980 {
1981 struct cleanup *old_cleanups;
1982 struct execution_control_state ecss;
1983 struct execution_control_state *ecs;
1984
1985 if (debug_infrun)
1986 fprintf_unfiltered
1987 (gdb_stdlog, "infrun: wait_for_inferior (treat_exec_as_sigtrap=%d)\n",
1988 treat_exec_as_sigtrap);
1989
1990 old_cleanups =
1991 make_cleanup (delete_step_thread_step_resume_breakpoint_cleanup, NULL);
1992
1993 ecs = &ecss;
1994 memset (ecs, 0, sizeof (*ecs));
1995
1996 /* We'll update this if & when we switch to a new thread. */
1997 previous_inferior_ptid = inferior_ptid;
1998
1999 while (1)
2000 {
2001 struct cleanup *old_chain;
2002
2003 /* We have to invalidate the registers BEFORE calling target_wait
2004 because they can be loaded from the target while in target_wait.
2005 This makes remote debugging a bit more efficient for those
2006 targets that provide critical registers as part of their normal
2007 status mechanism. */
2008
2009 overlay_cache_invalid = 1;
2010 registers_changed ();
2011
2012 if (deprecated_target_wait_hook)
2013 ecs->ptid = deprecated_target_wait_hook (waiton_ptid, &ecs->ws, 0);
2014 else
2015 ecs->ptid = target_wait (waiton_ptid, &ecs->ws, 0);
2016
2017 if (debug_infrun)
2018 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
2019
2020 if (treat_exec_as_sigtrap && ecs->ws.kind == TARGET_WAITKIND_EXECD)
2021 {
2022 xfree (ecs->ws.value.execd_pathname);
2023 ecs->ws.kind = TARGET_WAITKIND_STOPPED;
2024 ecs->ws.value.sig = TARGET_SIGNAL_TRAP;
2025 }
2026
2027 /* If an error happens while handling the event, propagate GDB's
2028 knowledge of the executing state to the frontend/user running
2029 state. */
2030 old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
2031
2032 /* Now figure out what to do with the result of the result. */
2033 handle_inferior_event (ecs);
2034
2035 /* No error, don't finish the state yet. */
2036 discard_cleanups (old_chain);
2037
2038 if (!ecs->wait_some_more)
2039 break;
2040 }
2041
2042 do_cleanups (old_cleanups);
2043 }
2044
2045 /* Asynchronous version of wait_for_inferior. It is called by the
2046 event loop whenever a change of state is detected on the file
2047 descriptor corresponding to the target. It can be called more than
2048 once to complete a single execution command. In such cases we need
2049 to keep the state in a global variable ECSS. If it is the last time
2050 that this function is called for a single execution command, then
2051 report to the user that the inferior has stopped, and do the
2052 necessary cleanups. */
2053
2054 void
2055 fetch_inferior_event (void *client_data)
2056 {
2057 struct execution_control_state ecss;
2058 struct execution_control_state *ecs = &ecss;
2059 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
2060 struct cleanup *ts_old_chain;
2061 int was_sync = sync_execution;
2062
2063 memset (ecs, 0, sizeof (*ecs));
2064
2065 /* We'll update this if & when we switch to a new thread. */
2066 previous_inferior_ptid = inferior_ptid;
2067
2068 if (non_stop)
2069 /* In non-stop mode, the user/frontend should not notice a thread
2070 switch due to internal events. Make sure we reverse to the
2071 user selected thread and frame after handling the event and
2072 running any breakpoint commands. */
2073 make_cleanup_restore_current_thread ();
2074
2075 /* We have to invalidate the registers BEFORE calling target_wait
2076 because they can be loaded from the target while in target_wait.
2077 This makes remote debugging a bit more efficient for those
2078 targets that provide critical registers as part of their normal
2079 status mechanism. */
2080
2081 overlay_cache_invalid = 1;
2082 registers_changed ();
2083
2084 if (deprecated_target_wait_hook)
2085 ecs->ptid =
2086 deprecated_target_wait_hook (waiton_ptid, &ecs->ws, TARGET_WNOHANG);
2087 else
2088 ecs->ptid = target_wait (waiton_ptid, &ecs->ws, TARGET_WNOHANG);
2089
2090 if (debug_infrun)
2091 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
2092
2093 if (non_stop
2094 && ecs->ws.kind != TARGET_WAITKIND_IGNORE
2095 && ecs->ws.kind != TARGET_WAITKIND_EXITED
2096 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED)
2097 /* In non-stop mode, each thread is handled individually. Switch
2098 early, so the global state is set correctly for this
2099 thread. */
2100 context_switch (ecs->ptid);
2101
2102 /* If an error happens while handling the event, propagate GDB's
2103 knowledge of the executing state to the frontend/user running
2104 state. */
2105 if (!non_stop)
2106 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
2107 else
2108 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &ecs->ptid);
2109
2110 /* Now figure out what to do with the result of the result. */
2111 handle_inferior_event (ecs);
2112
2113 if (!ecs->wait_some_more)
2114 {
2115 struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
2116
2117 delete_step_thread_step_resume_breakpoint ();
2118
2119 /* We may not find an inferior if this was a process exit. */
2120 if (inf == NULL || inf->stop_soon == NO_STOP_QUIETLY)
2121 normal_stop ();
2122
2123 if (target_has_execution
2124 && ecs->ws.kind != TARGET_WAITKIND_EXITED
2125 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
2126 && ecs->event_thread->step_multi
2127 && ecs->event_thread->stop_step)
2128 inferior_event_handler (INF_EXEC_CONTINUE, NULL);
2129 else
2130 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
2131 }
2132
2133 /* No error, don't finish the thread states yet. */
2134 discard_cleanups (ts_old_chain);
2135
2136 /* Revert thread and frame. */
2137 do_cleanups (old_chain);
2138
2139 /* If the inferior was in sync execution mode, and now isn't,
2140 restore the prompt. */
2141 if (was_sync && !sync_execution)
2142 display_gdb_prompt (0);
2143 }
2144
2145 /* Record the frame and location we're currently stepping through. */
2146 void
2147 set_step_info (struct frame_info *frame, struct symtab_and_line sal)
2148 {
2149 struct thread_info *tp = inferior_thread ();
2150
2151 tp->step_frame_id = get_frame_id (frame);
2152 tp->step_stack_frame_id = get_stack_frame_id (frame);
2153
2154 tp->current_symtab = sal.symtab;
2155 tp->current_line = sal.line;
2156 }
2157
2158 /* Prepare an execution control state for looping through a
2159 wait_for_inferior-type loop. */
2160
2161 static void
2162 init_execution_control_state (struct execution_control_state *ecs)
2163 {
2164 ecs->random_signal = 0;
2165 }
2166
2167 /* Clear context switchable stepping state. */
2168
2169 void
2170 init_thread_stepping_state (struct thread_info *tss)
2171 {
2172 tss->stepping_over_breakpoint = 0;
2173 tss->step_after_step_resume_breakpoint = 0;
2174 tss->stepping_through_solib_after_catch = 0;
2175 tss->stepping_through_solib_catchpoints = NULL;
2176 }
2177
2178 /* Return the cached copy of the last pid/waitstatus returned by
2179 target_wait()/deprecated_target_wait_hook(). The data is actually
2180 cached by handle_inferior_event(), which gets called immediately
2181 after target_wait()/deprecated_target_wait_hook(). */
2182
2183 void
2184 get_last_target_status (ptid_t *ptidp, struct target_waitstatus *status)
2185 {
2186 *ptidp = target_last_wait_ptid;
2187 *status = target_last_waitstatus;
2188 }
2189
2190 void
2191 nullify_last_target_wait_ptid (void)
2192 {
2193 target_last_wait_ptid = minus_one_ptid;
2194 }
2195
2196 /* Switch thread contexts. */
2197
2198 static void
2199 context_switch (ptid_t ptid)
2200 {
2201 if (debug_infrun)
2202 {
2203 fprintf_unfiltered (gdb_stdlog, "infrun: Switching context from %s ",
2204 target_pid_to_str (inferior_ptid));
2205 fprintf_unfiltered (gdb_stdlog, "to %s\n",
2206 target_pid_to_str (ptid));
2207 }
2208
2209 switch_to_thread (ptid);
2210 }
2211
2212 static void
2213 adjust_pc_after_break (struct execution_control_state *ecs)
2214 {
2215 struct regcache *regcache;
2216 struct gdbarch *gdbarch;
2217 CORE_ADDR breakpoint_pc;
2218
2219 /* If we've hit a breakpoint, we'll normally be stopped with SIGTRAP. If
2220 we aren't, just return.
2221
2222 We assume that waitkinds other than TARGET_WAITKIND_STOPPED are not
2223 affected by gdbarch_decr_pc_after_break. Other waitkinds which are
2224 implemented by software breakpoints should be handled through the normal
2225 breakpoint layer.
2226
2227 NOTE drow/2004-01-31: On some targets, breakpoints may generate
2228 different signals (SIGILL or SIGEMT for instance), but it is less
2229 clear where the PC is pointing afterwards. It may not match
2230 gdbarch_decr_pc_after_break. I don't know any specific target that
2231 generates these signals at breakpoints (the code has been in GDB since at
2232 least 1992) so I can not guess how to handle them here.
2233
2234 In earlier versions of GDB, a target with
2235 gdbarch_have_nonsteppable_watchpoint would have the PC after hitting a
2236 watchpoint affected by gdbarch_decr_pc_after_break. I haven't found any
2237 target with both of these set in GDB history, and it seems unlikely to be
2238 correct, so gdbarch_have_nonsteppable_watchpoint is not checked here. */
2239
2240 if (ecs->ws.kind != TARGET_WAITKIND_STOPPED)
2241 return;
2242
2243 if (ecs->ws.value.sig != TARGET_SIGNAL_TRAP)
2244 return;
2245
2246 /* In reverse execution, when a breakpoint is hit, the instruction
2247 under it has already been de-executed. The reported PC always
2248 points at the breakpoint address, so adjusting it further would
2249 be wrong. E.g., consider this case on a decr_pc_after_break == 1
2250 architecture:
2251
2252 B1 0x08000000 : INSN1
2253 B2 0x08000001 : INSN2
2254 0x08000002 : INSN3
2255 PC -> 0x08000003 : INSN4
2256
2257 Say you're stopped at 0x08000003 as above. Reverse continuing
2258 from that point should hit B2 as below. Reading the PC when the
2259 SIGTRAP is reported should read 0x08000001 and INSN2 should have
2260 been de-executed already.
2261
2262 B1 0x08000000 : INSN1
2263 B2 PC -> 0x08000001 : INSN2
2264 0x08000002 : INSN3
2265 0x08000003 : INSN4
2266
2267 We can't apply the same logic as for forward execution, because
2268 we would wrongly adjust the PC to 0x08000000, since there's a
2269 breakpoint at PC - 1. We'd then report a hit on B1, although
2270 INSN1 hadn't been de-executed yet. Doing nothing is the correct
2271 behaviour. */
2272 if (execution_direction == EXEC_REVERSE)
2273 return;
2274
2275 /* If this target does not decrement the PC after breakpoints, then
2276 we have nothing to do. */
2277 regcache = get_thread_regcache (ecs->ptid);
2278 gdbarch = get_regcache_arch (regcache);
2279 if (gdbarch_decr_pc_after_break (gdbarch) == 0)
2280 return;
2281
2282 /* Find the location where (if we've hit a breakpoint) the
2283 breakpoint would be. */
2284 breakpoint_pc = regcache_read_pc (regcache)
2285 - gdbarch_decr_pc_after_break (gdbarch);
2286
2287 /* Check whether there actually is a software breakpoint inserted at
2288 that location.
2289
2290 If in non-stop mode, a race condition is possible where we've
2291 removed a breakpoint, but stop events for that breakpoint were
2292 already queued and arrive later. To suppress those spurious
2293 SIGTRAPs, we keep a list of such breakpoint locations for a bit,
2294 and retire them after a number of stop events are reported. */
2295 if (software_breakpoint_inserted_here_p (breakpoint_pc)
2296 || (non_stop && moribund_breakpoint_here_p (breakpoint_pc)))
2297 {
2298 struct cleanup *old_cleanups = NULL;
2299 if (RECORD_IS_USED)
2300 old_cleanups = record_gdb_operation_disable_set ();
2301
2302 /* When using hardware single-step, a SIGTRAP is reported for both
2303 a completed single-step and a software breakpoint. Need to
2304 differentiate between the two, as the latter needs adjusting
2305 but the former does not.
2306
2307 The SIGTRAP can be due to a completed hardware single-step only if
2308 - we didn't insert software single-step breakpoints
2309 - the thread to be examined is still the current thread
2310 - this thread is currently being stepped
2311
2312 If any of these events did not occur, we must have stopped due
2313 to hitting a software breakpoint, and have to back up to the
2314 breakpoint address.
2315
2316 As a special case, we could have hardware single-stepped a
2317 software breakpoint. In this case (prev_pc == breakpoint_pc),
2318 we also need to back up to the breakpoint address. */
2319
2320 if (singlestep_breakpoints_inserted_p
2321 || !ptid_equal (ecs->ptid, inferior_ptid)
2322 || !currently_stepping (ecs->event_thread)
2323 || ecs->event_thread->prev_pc == breakpoint_pc)
2324 regcache_write_pc (regcache, breakpoint_pc);
2325
2326 if (RECORD_IS_USED)
2327 do_cleanups (old_cleanups);
2328 }
2329 }
2330
2331 void
2332 init_infwait_state (void)
2333 {
2334 waiton_ptid = pid_to_ptid (-1);
2335 infwait_state = infwait_normal_state;
2336 }
2337
2338 void
2339 error_is_running (void)
2340 {
2341 error (_("\
2342 Cannot execute this command while the selected thread is running."));
2343 }
2344
2345 void
2346 ensure_not_running (void)
2347 {
2348 if (is_running (inferior_ptid))
2349 error_is_running ();
2350 }
2351
2352 static int
2353 stepped_in_from (struct frame_info *frame, struct frame_id step_frame_id)
2354 {
2355 for (frame = get_prev_frame (frame);
2356 frame != NULL;
2357 frame = get_prev_frame (frame))
2358 {
2359 if (frame_id_eq (get_frame_id (frame), step_frame_id))
2360 return 1;
2361 if (get_frame_type (frame) != INLINE_FRAME)
2362 break;
2363 }
2364
2365 return 0;
2366 }
2367
2368 /* Given an execution control state that has been freshly filled in
2369 by an event from the inferior, figure out what it means and take
2370 appropriate action. */
2371
2372 static void
2373 handle_inferior_event (struct execution_control_state *ecs)
2374 {
2375 struct frame_info *frame;
2376 struct gdbarch *gdbarch;
2377 int sw_single_step_trap_p = 0;
2378 int stopped_by_watchpoint;
2379 int stepped_after_stopped_by_watchpoint = 0;
2380 struct symtab_and_line stop_pc_sal;
2381 enum stop_kind stop_soon;
2382
2383 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
2384 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
2385 && ecs->ws.kind != TARGET_WAITKIND_IGNORE)
2386 {
2387 struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
2388 gdb_assert (inf);
2389 stop_soon = inf->stop_soon;
2390 }
2391 else
2392 stop_soon = NO_STOP_QUIETLY;
2393
2394 /* Cache the last pid/waitstatus. */
2395 target_last_wait_ptid = ecs->ptid;
2396 target_last_waitstatus = ecs->ws;
2397
2398 /* Always clear state belonging to the previous time we stopped. */
2399 stop_stack_dummy = 0;
2400
2401 /* If it's a new process, add it to the thread database */
2402
2403 ecs->new_thread_event = (!ptid_equal (ecs->ptid, inferior_ptid)
2404 && !ptid_equal (ecs->ptid, minus_one_ptid)
2405 && !in_thread_list (ecs->ptid));
2406
2407 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
2408 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED && ecs->new_thread_event)
2409 add_thread (ecs->ptid);
2410
2411 ecs->event_thread = find_thread_ptid (ecs->ptid);
2412
2413 /* Dependent on valid ECS->EVENT_THREAD. */
2414 adjust_pc_after_break (ecs);
2415
2416 /* Dependent on the current PC value modified by adjust_pc_after_break. */
2417 reinit_frame_cache ();
2418
2419 if (ecs->ws.kind != TARGET_WAITKIND_IGNORE)
2420 {
2421 breakpoint_retire_moribund ();
2422
2423 /* Mark the non-executing threads accordingly. In all-stop, all
2424 threads of all processes are stopped when we get any event
2425 reported. In non-stop mode, only the event thread stops. If
2426 we're handling a process exit in non-stop mode, there's
2427 nothing to do, as threads of the dead process are gone, and
2428 threads of any other process were left running. */
2429 if (!non_stop)
2430 set_executing (minus_one_ptid, 0);
2431 else if (ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
2432 && ecs->ws.kind != TARGET_WAITKIND_EXITED)
2433 set_executing (inferior_ptid, 0);
2434 }
2435
2436 switch (infwait_state)
2437 {
2438 case infwait_thread_hop_state:
2439 if (debug_infrun)
2440 fprintf_unfiltered (gdb_stdlog, "infrun: infwait_thread_hop_state\n");
2441 break;
2442
2443 case infwait_normal_state:
2444 if (debug_infrun)
2445 fprintf_unfiltered (gdb_stdlog, "infrun: infwait_normal_state\n");
2446 break;
2447
2448 case infwait_step_watch_state:
2449 if (debug_infrun)
2450 fprintf_unfiltered (gdb_stdlog,
2451 "infrun: infwait_step_watch_state\n");
2452
2453 stepped_after_stopped_by_watchpoint = 1;
2454 break;
2455
2456 case infwait_nonstep_watch_state:
2457 if (debug_infrun)
2458 fprintf_unfiltered (gdb_stdlog,
2459 "infrun: infwait_nonstep_watch_state\n");
2460 insert_breakpoints ();
2461
2462 /* FIXME-maybe: is this cleaner than setting a flag? Does it
2463 handle things like signals arriving and other things happening
2464 in combination correctly? */
2465 stepped_after_stopped_by_watchpoint = 1;
2466 break;
2467
2468 default:
2469 internal_error (__FILE__, __LINE__, _("bad switch"));
2470 }
2471
2472 infwait_state = infwait_normal_state;
2473 waiton_ptid = pid_to_ptid (-1);
2474
2475 switch (ecs->ws.kind)
2476 {
2477 case TARGET_WAITKIND_LOADED:
2478 if (debug_infrun)
2479 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_LOADED\n");
2480 /* Ignore gracefully during startup of the inferior, as it might
2481 be the shell which has just loaded some objects, otherwise
2482 add the symbols for the newly loaded objects. Also ignore at
2483 the beginning of an attach or remote session; we will query
2484 the full list of libraries once the connection is
2485 established. */
2486 if (stop_soon == NO_STOP_QUIETLY)
2487 {
2488 /* Check for any newly added shared libraries if we're
2489 supposed to be adding them automatically. Switch
2490 terminal for any messages produced by
2491 breakpoint_re_set. */
2492 target_terminal_ours_for_output ();
2493 /* NOTE: cagney/2003-11-25: Make certain that the target
2494 stack's section table is kept up-to-date. Architectures,
2495 (e.g., PPC64), use the section table to perform
2496 operations such as address => section name and hence
2497 require the table to contain all sections (including
2498 those found in shared libraries). */
2499 #ifdef SOLIB_ADD
2500 SOLIB_ADD (NULL, 0, &current_target, auto_solib_add);
2501 #else
2502 solib_add (NULL, 0, &current_target, auto_solib_add);
2503 #endif
2504 target_terminal_inferior ();
2505
2506 /* If requested, stop when the dynamic linker notifies
2507 gdb of events. This allows the user to get control
2508 and place breakpoints in initializer routines for
2509 dynamically loaded objects (among other things). */
2510 if (stop_on_solib_events)
2511 {
2512 stop_stepping (ecs);
2513 return;
2514 }
2515
2516 /* NOTE drow/2007-05-11: This might be a good place to check
2517 for "catch load". */
2518 }
2519
2520 /* If we are skipping through a shell, or through shared library
2521 loading that we aren't interested in, resume the program. If
2522 we're running the program normally, also resume. But stop if
2523 we're attaching or setting up a remote connection. */
2524 if (stop_soon == STOP_QUIETLY || stop_soon == NO_STOP_QUIETLY)
2525 {
2526 /* Loading of shared libraries might have changed breakpoint
2527 addresses. Make sure new breakpoints are inserted. */
2528 if (stop_soon == NO_STOP_QUIETLY
2529 && !breakpoints_always_inserted_mode ())
2530 insert_breakpoints ();
2531 resume (0, TARGET_SIGNAL_0);
2532 prepare_to_wait (ecs);
2533 return;
2534 }
2535
2536 break;
2537
2538 case TARGET_WAITKIND_SPURIOUS:
2539 if (debug_infrun)
2540 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SPURIOUS\n");
2541 resume (0, TARGET_SIGNAL_0);
2542 prepare_to_wait (ecs);
2543 return;
2544
2545 case TARGET_WAITKIND_EXITED:
2546 if (debug_infrun)
2547 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXITED\n");
2548 inferior_ptid = ecs->ptid;
2549 target_terminal_ours (); /* Must do this before mourn anyway */
2550 print_stop_reason (EXITED, ecs->ws.value.integer);
2551
2552 /* Record the exit code in the convenience variable $_exitcode, so
2553 that the user can inspect this again later. */
2554 set_internalvar_integer (lookup_internalvar ("_exitcode"),
2555 (LONGEST) ecs->ws.value.integer);
2556 gdb_flush (gdb_stdout);
2557 target_mourn_inferior ();
2558 singlestep_breakpoints_inserted_p = 0;
2559 stop_print_frame = 0;
2560 stop_stepping (ecs);
2561 return;
2562
2563 case TARGET_WAITKIND_SIGNALLED:
2564 if (debug_infrun)
2565 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SIGNALLED\n");
2566 inferior_ptid = ecs->ptid;
2567 stop_print_frame = 0;
2568 target_terminal_ours (); /* Must do this before mourn anyway */
2569
2570 /* Note: By definition of TARGET_WAITKIND_SIGNALLED, we shouldn't
2571 reach here unless the inferior is dead. However, for years
2572 target_kill() was called here, which hints that fatal signals aren't
2573 really fatal on some systems. If that's true, then some changes
2574 may be needed. */
2575 target_mourn_inferior ();
2576
2577 print_stop_reason (SIGNAL_EXITED, ecs->ws.value.sig);
2578 singlestep_breakpoints_inserted_p = 0;
2579 stop_stepping (ecs);
2580 return;
2581
2582 /* The following are the only cases in which we keep going;
2583 the above cases end in a continue or goto. */
2584 case TARGET_WAITKIND_FORKED:
2585 case TARGET_WAITKIND_VFORKED:
2586 if (debug_infrun)
2587 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_FORKED\n");
2588
2589 if (!ptid_equal (ecs->ptid, inferior_ptid))
2590 {
2591 context_switch (ecs->ptid);
2592 reinit_frame_cache ();
2593 }
2594
2595 /* Immediately detach breakpoints from the child before there's
2596 any chance of letting the user delete breakpoints from the
2597 breakpoint lists. If we don't do this early, it's easy to
2598 leave left over traps in the child, vis: "break foo; catch
2599 fork; c; <fork>; del; c; <child calls foo>". We only follow
2600 the fork on the last `continue', and by that time the
2601 breakpoint at "foo" is long gone from the breakpoint table.
2602 If we vforked, then we don't need to unpatch here, since both
2603 parent and child are sharing the same memory pages; we'll
2604 need to unpatch at follow/detach time instead to be certain
2605 that new breakpoints added between catchpoint hit time and
2606 vfork follow are detached. */
2607 if (ecs->ws.kind != TARGET_WAITKIND_VFORKED)
2608 {
2609 int child_pid = ptid_get_pid (ecs->ws.value.related_pid);
2610
2611 /* This won't actually modify the breakpoint list, but will
2612 physically remove the breakpoints from the child. */
2613 detach_breakpoints (child_pid);
2614 }
2615
2616 /* In case the event is caught by a catchpoint, remember that
2617 the event is to be followed at the next resume of the thread,
2618 and not immediately. */
2619 ecs->event_thread->pending_follow = ecs->ws;
2620
2621 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
2622
2623 ecs->event_thread->stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid);
2624
2625 ecs->random_signal = !bpstat_explains_signal (ecs->event_thread->stop_bpstat);
2626
2627 /* If no catchpoint triggered for this, then keep going. */
2628 if (ecs->random_signal)
2629 {
2630 int should_resume;
2631
2632 ecs->event_thread->stop_signal = TARGET_SIGNAL_0;
2633
2634 should_resume = follow_fork ();
2635
2636 ecs->event_thread = inferior_thread ();
2637 ecs->ptid = inferior_ptid;
2638
2639 if (should_resume)
2640 keep_going (ecs);
2641 else
2642 stop_stepping (ecs);
2643 return;
2644 }
2645 ecs->event_thread->stop_signal = TARGET_SIGNAL_TRAP;
2646 goto process_event_stop_test;
2647
2648 case TARGET_WAITKIND_EXECD:
2649 if (debug_infrun)
2650 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXECD\n");
2651
2652 if (!ptid_equal (ecs->ptid, inferior_ptid))
2653 {
2654 context_switch (ecs->ptid);
2655 reinit_frame_cache ();
2656 }
2657
2658 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
2659
2660 /* This causes the eventpoints and symbol table to be reset.
2661 Must do this now, before trying to determine whether to
2662 stop. */
2663 follow_exec (inferior_ptid, ecs->ws.value.execd_pathname);
2664
2665 ecs->event_thread->stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid);
2666 ecs->random_signal = !bpstat_explains_signal (ecs->event_thread->stop_bpstat);
2667
2668 /* Note that this may be referenced from inside
2669 bpstat_stop_status above, through inferior_has_execd. */
2670 xfree (ecs->ws.value.execd_pathname);
2671 ecs->ws.value.execd_pathname = NULL;
2672
2673 /* If no catchpoint triggered for this, then keep going. */
2674 if (ecs->random_signal)
2675 {
2676 ecs->event_thread->stop_signal = TARGET_SIGNAL_0;
2677 keep_going (ecs);
2678 return;
2679 }
2680 ecs->event_thread->stop_signal = TARGET_SIGNAL_TRAP;
2681 goto process_event_stop_test;
2682
2683 /* Be careful not to try to gather much state about a thread
2684 that's in a syscall. It's frequently a losing proposition. */
2685 case TARGET_WAITKIND_SYSCALL_ENTRY:
2686 if (debug_infrun)
2687 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SYSCALL_ENTRY\n");
2688 resume (0, TARGET_SIGNAL_0);
2689 prepare_to_wait (ecs);
2690 return;
2691
2692 /* Before examining the threads further, step this thread to
2693 get it entirely out of the syscall. (We get notice of the
2694 event when the thread is just on the verge of exiting a
2695 syscall. Stepping one instruction seems to get it back
2696 into user code.) */
2697 case TARGET_WAITKIND_SYSCALL_RETURN:
2698 if (debug_infrun)
2699 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SYSCALL_RETURN\n");
2700 target_resume (ecs->ptid, 1, TARGET_SIGNAL_0);
2701 prepare_to_wait (ecs);
2702 return;
2703
2704 case TARGET_WAITKIND_STOPPED:
2705 if (debug_infrun)
2706 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_STOPPED\n");
2707 ecs->event_thread->stop_signal = ecs->ws.value.sig;
2708 break;
2709
2710 case TARGET_WAITKIND_NO_HISTORY:
2711 /* Reverse execution: target ran out of history info. */
2712 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
2713 print_stop_reason (NO_HISTORY, 0);
2714 stop_stepping (ecs);
2715 return;
2716
2717 /* We had an event in the inferior, but we are not interested
2718 in handling it at this level. The lower layers have already
2719 done what needs to be done, if anything.
2720
2721 One of the possible circumstances for this is when the
2722 inferior produces output for the console. The inferior has
2723 not stopped, and we are ignoring the event. Another possible
2724 circumstance is any event which the lower level knows will be
2725 reported multiple times without an intervening resume. */
2726 case TARGET_WAITKIND_IGNORE:
2727 if (debug_infrun)
2728 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_IGNORE\n");
2729 prepare_to_wait (ecs);
2730 return;
2731 }
2732
2733 if (ecs->new_thread_event)
2734 {
2735 if (non_stop)
2736 /* Non-stop assumes that the target handles adding new threads
2737 to the thread list. */
2738 internal_error (__FILE__, __LINE__, "\
2739 targets should add new threads to the thread list themselves in non-stop mode.");
2740
2741 /* We may want to consider not doing a resume here in order to
2742 give the user a chance to play with the new thread. It might
2743 be good to make that a user-settable option. */
2744
2745 /* At this point, all threads are stopped (happens automatically
2746 in either the OS or the native code). Therefore we need to
2747 continue all threads in order to make progress. */
2748
2749 if (!ptid_equal (ecs->ptid, inferior_ptid))
2750 context_switch (ecs->ptid);
2751 target_resume (RESUME_ALL, 0, TARGET_SIGNAL_0);
2752 prepare_to_wait (ecs);
2753 return;
2754 }
2755
2756 if (ecs->ws.kind == TARGET_WAITKIND_STOPPED)
2757 {
2758 /* Do we need to clean up the state of a thread that has
2759 completed a displaced single-step? (Doing so usually affects
2760 the PC, so do it here, before we set stop_pc.) */
2761 displaced_step_fixup (ecs->ptid, ecs->event_thread->stop_signal);
2762
2763 /* If we either finished a single-step or hit a breakpoint, but
2764 the user wanted this thread to be stopped, pretend we got a
2765 SIG0 (generic unsignaled stop). */
2766
2767 if (ecs->event_thread->stop_requested
2768 && ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP)
2769 ecs->event_thread->stop_signal = TARGET_SIGNAL_0;
2770 }
2771
2772 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
2773
2774 if (debug_infrun)
2775 {
2776 struct regcache *regcache = get_thread_regcache (ecs->ptid);
2777 struct gdbarch *gdbarch = get_regcache_arch (regcache);
2778
2779 fprintf_unfiltered (gdb_stdlog, "infrun: stop_pc = %s\n",
2780 paddress (gdbarch, stop_pc));
2781 if (target_stopped_by_watchpoint ())
2782 {
2783 CORE_ADDR addr;
2784 fprintf_unfiltered (gdb_stdlog, "infrun: stopped by watchpoint\n");
2785
2786 if (target_stopped_data_address (&current_target, &addr))
2787 fprintf_unfiltered (gdb_stdlog,
2788 "infrun: stopped data address = %s\n",
2789 paddress (gdbarch, addr));
2790 else
2791 fprintf_unfiltered (gdb_stdlog,
2792 "infrun: (no data address available)\n");
2793 }
2794 }
2795
2796 if (stepping_past_singlestep_breakpoint)
2797 {
2798 gdb_assert (singlestep_breakpoints_inserted_p);
2799 gdb_assert (ptid_equal (singlestep_ptid, ecs->ptid));
2800 gdb_assert (!ptid_equal (singlestep_ptid, saved_singlestep_ptid));
2801
2802 stepping_past_singlestep_breakpoint = 0;
2803
2804 /* We've either finished single-stepping past the single-step
2805 breakpoint, or stopped for some other reason. It would be nice if
2806 we could tell, but we can't reliably. */
2807 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP)
2808 {
2809 if (debug_infrun)
2810 fprintf_unfiltered (gdb_stdlog, "infrun: stepping_past_singlestep_breakpoint\n");
2811 /* Pull the single step breakpoints out of the target. */
2812 remove_single_step_breakpoints ();
2813 singlestep_breakpoints_inserted_p = 0;
2814
2815 ecs->random_signal = 0;
2816 ecs->event_thread->trap_expected = 0;
2817
2818 context_switch (saved_singlestep_ptid);
2819 if (deprecated_context_hook)
2820 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
2821
2822 resume (1, TARGET_SIGNAL_0);
2823 prepare_to_wait (ecs);
2824 return;
2825 }
2826 }
2827
2828 if (!ptid_equal (deferred_step_ptid, null_ptid))
2829 {
2830 /* In non-stop mode, there's never a deferred_step_ptid set. */
2831 gdb_assert (!non_stop);
2832
2833 /* If we stopped for some other reason than single-stepping, ignore
2834 the fact that we were supposed to switch back. */
2835 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP)
2836 {
2837 if (debug_infrun)
2838 fprintf_unfiltered (gdb_stdlog,
2839 "infrun: handling deferred step\n");
2840
2841 /* Pull the single step breakpoints out of the target. */
2842 if (singlestep_breakpoints_inserted_p)
2843 {
2844 remove_single_step_breakpoints ();
2845 singlestep_breakpoints_inserted_p = 0;
2846 }
2847
2848 /* Note: We do not call context_switch at this point, as the
2849 context is already set up for stepping the original thread. */
2850 switch_to_thread (deferred_step_ptid);
2851 deferred_step_ptid = null_ptid;
2852 /* Suppress spurious "Switching to ..." message. */
2853 previous_inferior_ptid = inferior_ptid;
2854
2855 resume (1, TARGET_SIGNAL_0);
2856 prepare_to_wait (ecs);
2857 return;
2858 }
2859
2860 deferred_step_ptid = null_ptid;
2861 }
2862
2863 /* See if a thread hit a thread-specific breakpoint that was meant for
2864 another thread. If so, then step that thread past the breakpoint,
2865 and continue it. */
2866
2867 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP)
2868 {
2869 int thread_hop_needed = 0;
2870
2871 /* Check if a regular breakpoint has been hit before checking
2872 for a potential single step breakpoint. Otherwise, GDB will
2873 not see this breakpoint hit when stepping onto breakpoints. */
2874 if (regular_breakpoint_inserted_here_p (stop_pc))
2875 {
2876 ecs->random_signal = 0;
2877 if (!breakpoint_thread_match (stop_pc, ecs->ptid))
2878 thread_hop_needed = 1;
2879 }
2880 else if (singlestep_breakpoints_inserted_p)
2881 {
2882 /* We have not context switched yet, so this should be true
2883 no matter which thread hit the singlestep breakpoint. */
2884 gdb_assert (ptid_equal (inferior_ptid, singlestep_ptid));
2885 if (debug_infrun)
2886 fprintf_unfiltered (gdb_stdlog, "infrun: software single step "
2887 "trap for %s\n",
2888 target_pid_to_str (ecs->ptid));
2889
2890 ecs->random_signal = 0;
2891 /* The call to in_thread_list is necessary because PTIDs sometimes
2892 change when we go from single-threaded to multi-threaded. If
2893 the singlestep_ptid is still in the list, assume that it is
2894 really different from ecs->ptid. */
2895 if (!ptid_equal (singlestep_ptid, ecs->ptid)
2896 && in_thread_list (singlestep_ptid))
2897 {
2898 /* If the PC of the thread we were trying to single-step
2899 has changed, discard this event (which we were going
2900 to ignore anyway), and pretend we saw that thread
2901 trap. This prevents us continuously moving the
2902 single-step breakpoint forward, one instruction at a
2903 time. If the PC has changed, then the thread we were
2904 trying to single-step has trapped or been signalled,
2905 but the event has not been reported to GDB yet.
2906
2907 There might be some cases where this loses signal
2908 information, if a signal has arrived at exactly the
2909 same time that the PC changed, but this is the best
2910 we can do with the information available. Perhaps we
2911 should arrange to report all events for all threads
2912 when they stop, or to re-poll the remote looking for
2913 this particular thread (i.e. temporarily enable
2914 schedlock). */
2915
2916 CORE_ADDR new_singlestep_pc
2917 = regcache_read_pc (get_thread_regcache (singlestep_ptid));
2918
2919 if (new_singlestep_pc != singlestep_pc)
2920 {
2921 enum target_signal stop_signal;
2922
2923 if (debug_infrun)
2924 fprintf_unfiltered (gdb_stdlog, "infrun: unexpected thread,"
2925 " but expected thread advanced also\n");
2926
2927 /* The current context still belongs to
2928 singlestep_ptid. Don't swap here, since that's
2929 the context we want to use. Just fudge our
2930 state and continue. */
2931 stop_signal = ecs->event_thread->stop_signal;
2932 ecs->event_thread->stop_signal = TARGET_SIGNAL_0;
2933 ecs->ptid = singlestep_ptid;
2934 ecs->event_thread = find_thread_ptid (ecs->ptid);
2935 ecs->event_thread->stop_signal = stop_signal;
2936 stop_pc = new_singlestep_pc;
2937 }
2938 else
2939 {
2940 if (debug_infrun)
2941 fprintf_unfiltered (gdb_stdlog,
2942 "infrun: unexpected thread\n");
2943
2944 thread_hop_needed = 1;
2945 stepping_past_singlestep_breakpoint = 1;
2946 saved_singlestep_ptid = singlestep_ptid;
2947 }
2948 }
2949 }
2950
2951 if (thread_hop_needed)
2952 {
2953 struct regcache *thread_regcache;
2954 int remove_status = 0;
2955
2956 if (debug_infrun)
2957 fprintf_unfiltered (gdb_stdlog, "infrun: thread_hop_needed\n");
2958
2959 /* Switch context before touching inferior memory, the
2960 previous thread may have exited. */
2961 if (!ptid_equal (inferior_ptid, ecs->ptid))
2962 context_switch (ecs->ptid);
2963
2964 /* Saw a breakpoint, but it was hit by the wrong thread.
2965 Just continue. */
2966
2967 if (singlestep_breakpoints_inserted_p)
2968 {
2969 /* Pull the single step breakpoints out of the target. */
2970 remove_single_step_breakpoints ();
2971 singlestep_breakpoints_inserted_p = 0;
2972 }
2973
2974 /* If the arch can displace step, don't remove the
2975 breakpoints. */
2976 thread_regcache = get_thread_regcache (ecs->ptid);
2977 if (!use_displaced_stepping (get_regcache_arch (thread_regcache)))
2978 remove_status = remove_breakpoints ();
2979
2980 /* Did we fail to remove breakpoints? If so, try
2981 to set the PC past the bp. (There's at least
2982 one situation in which we can fail to remove
2983 the bp's: On HP-UX's that use ttrace, we can't
2984 change the address space of a vforking child
2985 process until the child exits (well, okay, not
2986 then either :-) or execs. */
2987 if (remove_status != 0)
2988 error (_("Cannot step over breakpoint hit in wrong thread"));
2989 else
2990 { /* Single step */
2991 if (!non_stop)
2992 {
2993 /* Only need to require the next event from this
2994 thread in all-stop mode. */
2995 waiton_ptid = ecs->ptid;
2996 infwait_state = infwait_thread_hop_state;
2997 }
2998
2999 ecs->event_thread->stepping_over_breakpoint = 1;
3000 keep_going (ecs);
3001 return;
3002 }
3003 }
3004 else if (singlestep_breakpoints_inserted_p)
3005 {
3006 sw_single_step_trap_p = 1;
3007 ecs->random_signal = 0;
3008 }
3009 }
3010 else
3011 ecs->random_signal = 1;
3012
3013 /* See if something interesting happened to the non-current thread. If
3014 so, then switch to that thread. */
3015 if (!ptid_equal (ecs->ptid, inferior_ptid))
3016 {
3017 if (debug_infrun)
3018 fprintf_unfiltered (gdb_stdlog, "infrun: context switch\n");
3019
3020 context_switch (ecs->ptid);
3021
3022 if (deprecated_context_hook)
3023 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
3024 }
3025
3026 /* At this point, get hold of the now-current thread's frame. */
3027 frame = get_current_frame ();
3028 gdbarch = get_frame_arch (frame);
3029
3030 if (singlestep_breakpoints_inserted_p)
3031 {
3032 /* Pull the single step breakpoints out of the target. */
3033 remove_single_step_breakpoints ();
3034 singlestep_breakpoints_inserted_p = 0;
3035 }
3036
3037 if (stepped_after_stopped_by_watchpoint)
3038 stopped_by_watchpoint = 0;
3039 else
3040 stopped_by_watchpoint = watchpoints_triggered (&ecs->ws);
3041
3042 /* If necessary, step over this watchpoint. We'll be back to display
3043 it in a moment. */
3044 if (stopped_by_watchpoint
3045 && (target_have_steppable_watchpoint
3046 || gdbarch_have_nonsteppable_watchpoint (gdbarch)))
3047 {
3048 /* At this point, we are stopped at an instruction which has
3049 attempted to write to a piece of memory under control of
3050 a watchpoint. The instruction hasn't actually executed
3051 yet. If we were to evaluate the watchpoint expression
3052 now, we would get the old value, and therefore no change
3053 would seem to have occurred.
3054
3055 In order to make watchpoints work `right', we really need
3056 to complete the memory write, and then evaluate the
3057 watchpoint expression. We do this by single-stepping the
3058 target.
3059
3060 It may not be necessary to disable the watchpoint to stop over
3061 it. For example, the PA can (with some kernel cooperation)
3062 single step over a watchpoint without disabling the watchpoint.
3063
3064 It is far more common to need to disable a watchpoint to step
3065 the inferior over it. If we have non-steppable watchpoints,
3066 we must disable the current watchpoint; it's simplest to
3067 disable all watchpoints and breakpoints. */
3068 int hw_step = 1;
3069
3070 if (!target_have_steppable_watchpoint)
3071 remove_breakpoints ();
3072 /* Single step */
3073 hw_step = maybe_software_singlestep (gdbarch, stop_pc);
3074 target_resume (ecs->ptid, hw_step, TARGET_SIGNAL_0);
3075 waiton_ptid = ecs->ptid;
3076 if (target_have_steppable_watchpoint)
3077 infwait_state = infwait_step_watch_state;
3078 else
3079 infwait_state = infwait_nonstep_watch_state;
3080 prepare_to_wait (ecs);
3081 return;
3082 }
3083
3084 ecs->stop_func_start = 0;
3085 ecs->stop_func_end = 0;
3086 ecs->stop_func_name = 0;
3087 /* Don't care about return value; stop_func_start and stop_func_name
3088 will both be 0 if it doesn't work. */
3089 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
3090 &ecs->stop_func_start, &ecs->stop_func_end);
3091 ecs->stop_func_start
3092 += gdbarch_deprecated_function_start_offset (gdbarch);
3093 ecs->event_thread->stepping_over_breakpoint = 0;
3094 bpstat_clear (&ecs->event_thread->stop_bpstat);
3095 ecs->event_thread->stop_step = 0;
3096 stop_print_frame = 1;
3097 ecs->random_signal = 0;
3098 stopped_by_random_signal = 0;
3099
3100 /* Hide inlined functions starting here, unless we just performed stepi or
3101 nexti. After stepi and nexti, always show the innermost frame (not any
3102 inline function call sites). */
3103 if (ecs->event_thread->step_range_end != 1)
3104 skip_inline_frames (ecs->ptid);
3105
3106 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP
3107 && ecs->event_thread->trap_expected
3108 && gdbarch_single_step_through_delay_p (gdbarch)
3109 && currently_stepping (ecs->event_thread))
3110 {
3111 /* We're trying to step off a breakpoint. Turns out that we're
3112 also on an instruction that needs to be stepped multiple
3113 times before it's been fully executing. E.g., architectures
3114 with a delay slot. It needs to be stepped twice, once for
3115 the instruction and once for the delay slot. */
3116 int step_through_delay
3117 = gdbarch_single_step_through_delay (gdbarch, frame);
3118 if (debug_infrun && step_through_delay)
3119 fprintf_unfiltered (gdb_stdlog, "infrun: step through delay\n");
3120 if (ecs->event_thread->step_range_end == 0 && step_through_delay)
3121 {
3122 /* The user issued a continue when stopped at a breakpoint.
3123 Set up for another trap and get out of here. */
3124 ecs->event_thread->stepping_over_breakpoint = 1;
3125 keep_going (ecs);
3126 return;
3127 }
3128 else if (step_through_delay)
3129 {
3130 /* The user issued a step when stopped at a breakpoint.
3131 Maybe we should stop, maybe we should not - the delay
3132 slot *might* correspond to a line of source. In any
3133 case, don't decide that here, just set
3134 ecs->stepping_over_breakpoint, making sure we
3135 single-step again before breakpoints are re-inserted. */
3136 ecs->event_thread->stepping_over_breakpoint = 1;
3137 }
3138 }
3139
3140 /* Look at the cause of the stop, and decide what to do.
3141 The alternatives are:
3142 1) stop_stepping and return; to really stop and return to the debugger,
3143 2) keep_going and return to start up again
3144 (set ecs->event_thread->stepping_over_breakpoint to 1 to single step once)
3145 3) set ecs->random_signal to 1, and the decision between 1 and 2
3146 will be made according to the signal handling tables. */
3147
3148 /* First, distinguish signals caused by the debugger from signals
3149 that have to do with the program's own actions. Note that
3150 breakpoint insns may cause SIGTRAP or SIGILL or SIGEMT, depending
3151 on the operating system version. Here we detect when a SIGILL or
3152 SIGEMT is really a breakpoint and change it to SIGTRAP. We do
3153 something similar for SIGSEGV, since a SIGSEGV will be generated
3154 when we're trying to execute a breakpoint instruction on a
3155 non-executable stack. This happens for call dummy breakpoints
3156 for architectures like SPARC that place call dummies on the
3157 stack.
3158
3159 If we're doing a displaced step past a breakpoint, then the
3160 breakpoint is always inserted at the original instruction;
3161 non-standard signals can't be explained by the breakpoint. */
3162 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP
3163 || (! ecs->event_thread->trap_expected
3164 && breakpoint_inserted_here_p (stop_pc)
3165 && (ecs->event_thread->stop_signal == TARGET_SIGNAL_ILL
3166 || ecs->event_thread->stop_signal == TARGET_SIGNAL_SEGV
3167 || ecs->event_thread->stop_signal == TARGET_SIGNAL_EMT))
3168 || stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_NO_SIGSTOP
3169 || stop_soon == STOP_QUIETLY_REMOTE)
3170 {
3171 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP && stop_after_trap)
3172 {
3173 if (debug_infrun)
3174 fprintf_unfiltered (gdb_stdlog, "infrun: stopped\n");
3175 stop_print_frame = 0;
3176 stop_stepping (ecs);
3177 return;
3178 }
3179
3180 /* This is originated from start_remote(), start_inferior() and
3181 shared libraries hook functions. */
3182 if (stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_REMOTE)
3183 {
3184 if (debug_infrun)
3185 fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
3186 stop_stepping (ecs);
3187 return;
3188 }
3189
3190 /* This originates from attach_command(). We need to overwrite
3191 the stop_signal here, because some kernels don't ignore a
3192 SIGSTOP in a subsequent ptrace(PTRACE_CONT,SIGSTOP) call.
3193 See more comments in inferior.h. On the other hand, if we
3194 get a non-SIGSTOP, report it to the user - assume the backend
3195 will handle the SIGSTOP if it should show up later.
3196
3197 Also consider that the attach is complete when we see a
3198 SIGTRAP. Some systems (e.g. Windows), and stubs supporting
3199 target extended-remote report it instead of a SIGSTOP
3200 (e.g. gdbserver). We already rely on SIGTRAP being our
3201 signal, so this is no exception.
3202
3203 Also consider that the attach is complete when we see a
3204 TARGET_SIGNAL_0. In non-stop mode, GDB will explicitly tell
3205 the target to stop all threads of the inferior, in case the
3206 low level attach operation doesn't stop them implicitly. If
3207 they weren't stopped implicitly, then the stub will report a
3208 TARGET_SIGNAL_0, meaning: stopped for no particular reason
3209 other than GDB's request. */
3210 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
3211 && (ecs->event_thread->stop_signal == TARGET_SIGNAL_STOP
3212 || ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP
3213 || ecs->event_thread->stop_signal == TARGET_SIGNAL_0))
3214 {
3215 stop_stepping (ecs);
3216 ecs->event_thread->stop_signal = TARGET_SIGNAL_0;
3217 return;
3218 }
3219
3220 /* See if there is a breakpoint at the current PC. */
3221 ecs->event_thread->stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid);
3222
3223 /* Following in case break condition called a
3224 function. */
3225 stop_print_frame = 1;
3226
3227 /* NOTE: cagney/2003-03-29: These two checks for a random signal
3228 at one stage in the past included checks for an inferior
3229 function call's call dummy's return breakpoint. The original
3230 comment, that went with the test, read:
3231
3232 ``End of a stack dummy. Some systems (e.g. Sony news) give
3233 another signal besides SIGTRAP, so check here as well as
3234 above.''
3235
3236 If someone ever tries to get call dummys on a
3237 non-executable stack to work (where the target would stop
3238 with something like a SIGSEGV), then those tests might need
3239 to be re-instated. Given, however, that the tests were only
3240 enabled when momentary breakpoints were not being used, I
3241 suspect that it won't be the case.
3242
3243 NOTE: kettenis/2004-02-05: Indeed such checks don't seem to
3244 be necessary for call dummies on a non-executable stack on
3245 SPARC. */
3246
3247 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP)
3248 ecs->random_signal
3249 = !(bpstat_explains_signal (ecs->event_thread->stop_bpstat)
3250 || ecs->event_thread->trap_expected
3251 || (ecs->event_thread->step_range_end
3252 && ecs->event_thread->step_resume_breakpoint == NULL));
3253 else
3254 {
3255 ecs->random_signal = !bpstat_explains_signal (ecs->event_thread->stop_bpstat);
3256 if (!ecs->random_signal)
3257 ecs->event_thread->stop_signal = TARGET_SIGNAL_TRAP;
3258 }
3259 }
3260
3261 /* When we reach this point, we've pretty much decided
3262 that the reason for stopping must've been a random
3263 (unexpected) signal. */
3264
3265 else
3266 ecs->random_signal = 1;
3267
3268 process_event_stop_test:
3269
3270 /* Re-fetch current thread's frame in case we did a
3271 "goto process_event_stop_test" above. */
3272 frame = get_current_frame ();
3273 gdbarch = get_frame_arch (frame);
3274
3275 /* For the program's own signals, act according to
3276 the signal handling tables. */
3277
3278 if (ecs->random_signal)
3279 {
3280 /* Signal not for debugging purposes. */
3281 int printed = 0;
3282
3283 if (debug_infrun)
3284 fprintf_unfiltered (gdb_stdlog, "infrun: random signal %d\n",
3285 ecs->event_thread->stop_signal);
3286
3287 stopped_by_random_signal = 1;
3288
3289 if (signal_print[ecs->event_thread->stop_signal])
3290 {
3291 printed = 1;
3292 target_terminal_ours_for_output ();
3293 print_stop_reason (SIGNAL_RECEIVED, ecs->event_thread->stop_signal);
3294 }
3295 /* Always stop on signals if we're either just gaining control
3296 of the program, or the user explicitly requested this thread
3297 to remain stopped. */
3298 if (stop_soon != NO_STOP_QUIETLY
3299 || ecs->event_thread->stop_requested
3300 || signal_stop_state (ecs->event_thread->stop_signal))
3301 {
3302 stop_stepping (ecs);
3303 return;
3304 }
3305 /* If not going to stop, give terminal back
3306 if we took it away. */
3307 else if (printed)
3308 target_terminal_inferior ();
3309
3310 /* Clear the signal if it should not be passed. */
3311 if (signal_program[ecs->event_thread->stop_signal] == 0)
3312 ecs->event_thread->stop_signal = TARGET_SIGNAL_0;
3313
3314 if (ecs->event_thread->prev_pc == stop_pc
3315 && ecs->event_thread->trap_expected
3316 && ecs->event_thread->step_resume_breakpoint == NULL)
3317 {
3318 /* We were just starting a new sequence, attempting to
3319 single-step off of a breakpoint and expecting a SIGTRAP.
3320 Instead this signal arrives. This signal will take us out
3321 of the stepping range so GDB needs to remember to, when
3322 the signal handler returns, resume stepping off that
3323 breakpoint. */
3324 /* To simplify things, "continue" is forced to use the same
3325 code paths as single-step - set a breakpoint at the
3326 signal return address and then, once hit, step off that
3327 breakpoint. */
3328 if (debug_infrun)
3329 fprintf_unfiltered (gdb_stdlog,
3330 "infrun: signal arrived while stepping over "
3331 "breakpoint\n");
3332
3333 insert_step_resume_breakpoint_at_frame (frame);
3334 ecs->event_thread->step_after_step_resume_breakpoint = 1;
3335 keep_going (ecs);
3336 return;
3337 }
3338
3339 if (ecs->event_thread->step_range_end != 0
3340 && ecs->event_thread->stop_signal != TARGET_SIGNAL_0
3341 && (ecs->event_thread->step_range_start <= stop_pc
3342 && stop_pc < ecs->event_thread->step_range_end)
3343 && frame_id_eq (get_stack_frame_id (frame),
3344 ecs->event_thread->step_stack_frame_id)
3345 && ecs->event_thread->step_resume_breakpoint == NULL)
3346 {
3347 /* The inferior is about to take a signal that will take it
3348 out of the single step range. Set a breakpoint at the
3349 current PC (which is presumably where the signal handler
3350 will eventually return) and then allow the inferior to
3351 run free.
3352
3353 Note that this is only needed for a signal delivered
3354 while in the single-step range. Nested signals aren't a
3355 problem as they eventually all return. */
3356 if (debug_infrun)
3357 fprintf_unfiltered (gdb_stdlog,
3358 "infrun: signal may take us out of "
3359 "single-step range\n");
3360
3361 insert_step_resume_breakpoint_at_frame (frame);
3362 keep_going (ecs);
3363 return;
3364 }
3365
3366 /* Note: step_resume_breakpoint may be non-NULL. This occures
3367 when either there's a nested signal, or when there's a
3368 pending signal enabled just as the signal handler returns
3369 (leaving the inferior at the step-resume-breakpoint without
3370 actually executing it). Either way continue until the
3371 breakpoint is really hit. */
3372 keep_going (ecs);
3373 return;
3374 }
3375
3376 /* Handle cases caused by hitting a breakpoint. */
3377 {
3378 CORE_ADDR jmp_buf_pc;
3379 struct bpstat_what what;
3380
3381 what = bpstat_what (ecs->event_thread->stop_bpstat);
3382
3383 if (what.call_dummy)
3384 {
3385 stop_stack_dummy = 1;
3386 }
3387
3388 switch (what.main_action)
3389 {
3390 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
3391 /* If we hit the breakpoint at longjmp while stepping, we
3392 install a momentary breakpoint at the target of the
3393 jmp_buf. */
3394
3395 if (debug_infrun)
3396 fprintf_unfiltered (gdb_stdlog,
3397 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME\n");
3398
3399 ecs->event_thread->stepping_over_breakpoint = 1;
3400
3401 if (!gdbarch_get_longjmp_target_p (gdbarch)
3402 || !gdbarch_get_longjmp_target (gdbarch, frame, &jmp_buf_pc))
3403 {
3404 if (debug_infrun)
3405 fprintf_unfiltered (gdb_stdlog, "\
3406 infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME (!gdbarch_get_longjmp_target)\n");
3407 keep_going (ecs);
3408 return;
3409 }
3410
3411 /* We're going to replace the current step-resume breakpoint
3412 with a longjmp-resume breakpoint. */
3413 delete_step_resume_breakpoint (ecs->event_thread);
3414
3415 /* Insert a breakpoint at resume address. */
3416 insert_longjmp_resume_breakpoint (gdbarch, jmp_buf_pc);
3417
3418 keep_going (ecs);
3419 return;
3420
3421 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
3422 if (debug_infrun)
3423 fprintf_unfiltered (gdb_stdlog,
3424 "infrun: BPSTAT_WHAT_CLEAR_LONGJMP_RESUME\n");
3425
3426 gdb_assert (ecs->event_thread->step_resume_breakpoint != NULL);
3427 delete_step_resume_breakpoint (ecs->event_thread);
3428
3429 ecs->event_thread->stop_step = 1;
3430 print_stop_reason (END_STEPPING_RANGE, 0);
3431 stop_stepping (ecs);
3432 return;
3433
3434 case BPSTAT_WHAT_SINGLE:
3435 if (debug_infrun)
3436 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_SINGLE\n");
3437 ecs->event_thread->stepping_over_breakpoint = 1;
3438 /* Still need to check other stuff, at least the case
3439 where we are stepping and step out of the right range. */
3440 break;
3441
3442 case BPSTAT_WHAT_STOP_NOISY:
3443 if (debug_infrun)
3444 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_NOISY\n");
3445 stop_print_frame = 1;
3446
3447 /* We are about to nuke the step_resume_breakpointt via the
3448 cleanup chain, so no need to worry about it here. */
3449
3450 stop_stepping (ecs);
3451 return;
3452
3453 case BPSTAT_WHAT_STOP_SILENT:
3454 if (debug_infrun)
3455 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_SILENT\n");
3456 stop_print_frame = 0;
3457
3458 /* We are about to nuke the step_resume_breakpoin via the
3459 cleanup chain, so no need to worry about it here. */
3460
3461 stop_stepping (ecs);
3462 return;
3463
3464 case BPSTAT_WHAT_STEP_RESUME:
3465 if (debug_infrun)
3466 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STEP_RESUME\n");
3467
3468 delete_step_resume_breakpoint (ecs->event_thread);
3469 if (ecs->event_thread->step_after_step_resume_breakpoint)
3470 {
3471 /* Back when the step-resume breakpoint was inserted, we
3472 were trying to single-step off a breakpoint. Go back
3473 to doing that. */
3474 ecs->event_thread->step_after_step_resume_breakpoint = 0;
3475 ecs->event_thread->stepping_over_breakpoint = 1;
3476 keep_going (ecs);
3477 return;
3478 }
3479 if (stop_pc == ecs->stop_func_start
3480 && execution_direction == EXEC_REVERSE)
3481 {
3482 /* We are stepping over a function call in reverse, and
3483 just hit the step-resume breakpoint at the start
3484 address of the function. Go back to single-stepping,
3485 which should take us back to the function call. */
3486 ecs->event_thread->stepping_over_breakpoint = 1;
3487 keep_going (ecs);
3488 return;
3489 }
3490 break;
3491
3492 case BPSTAT_WHAT_CHECK_SHLIBS:
3493 {
3494 if (debug_infrun)
3495 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_CHECK_SHLIBS\n");
3496
3497 /* Check for any newly added shared libraries if we're
3498 supposed to be adding them automatically. Switch
3499 terminal for any messages produced by
3500 breakpoint_re_set. */
3501 target_terminal_ours_for_output ();
3502 /* NOTE: cagney/2003-11-25: Make certain that the target
3503 stack's section table is kept up-to-date. Architectures,
3504 (e.g., PPC64), use the section table to perform
3505 operations such as address => section name and hence
3506 require the table to contain all sections (including
3507 those found in shared libraries). */
3508 #ifdef SOLIB_ADD
3509 SOLIB_ADD (NULL, 0, &current_target, auto_solib_add);
3510 #else
3511 solib_add (NULL, 0, &current_target, auto_solib_add);
3512 #endif
3513 target_terminal_inferior ();
3514
3515 /* If requested, stop when the dynamic linker notifies
3516 gdb of events. This allows the user to get control
3517 and place breakpoints in initializer routines for
3518 dynamically loaded objects (among other things). */
3519 if (stop_on_solib_events || stop_stack_dummy)
3520 {
3521 stop_stepping (ecs);
3522 return;
3523 }
3524 else
3525 {
3526 /* We want to step over this breakpoint, then keep going. */
3527 ecs->event_thread->stepping_over_breakpoint = 1;
3528 break;
3529 }
3530 }
3531 break;
3532
3533 case BPSTAT_WHAT_LAST:
3534 /* Not a real code, but listed here to shut up gcc -Wall. */
3535
3536 case BPSTAT_WHAT_KEEP_CHECKING:
3537 break;
3538 }
3539 }
3540
3541 /* We come here if we hit a breakpoint but should not
3542 stop for it. Possibly we also were stepping
3543 and should stop for that. So fall through and
3544 test for stepping. But, if not stepping,
3545 do not stop. */
3546
3547 /* In all-stop mode, if we're currently stepping but have stopped in
3548 some other thread, we need to switch back to the stepped thread. */
3549 if (!non_stop)
3550 {
3551 struct thread_info *tp;
3552 tp = iterate_over_threads (currently_stepping_or_nexting_callback,
3553 ecs->event_thread);
3554 if (tp)
3555 {
3556 /* However, if the current thread is blocked on some internal
3557 breakpoint, and we simply need to step over that breakpoint
3558 to get it going again, do that first. */
3559 if ((ecs->event_thread->trap_expected
3560 && ecs->event_thread->stop_signal != TARGET_SIGNAL_TRAP)
3561 || ecs->event_thread->stepping_over_breakpoint)
3562 {
3563 keep_going (ecs);
3564 return;
3565 }
3566
3567 /* If the stepping thread exited, then don't try to switch
3568 back and resume it, which could fail in several different
3569 ways depending on the target. Instead, just keep going.
3570
3571 We can find a stepping dead thread in the thread list in
3572 two cases:
3573
3574 - The target supports thread exit events, and when the
3575 target tries to delete the thread from the thread list,
3576 inferior_ptid pointed at the exiting thread. In such
3577 case, calling delete_thread does not really remove the
3578 thread from the list; instead, the thread is left listed,
3579 with 'exited' state.
3580
3581 - The target's debug interface does not support thread
3582 exit events, and so we have no idea whatsoever if the
3583 previously stepping thread is still alive. For that
3584 reason, we need to synchronously query the target
3585 now. */
3586 if (is_exited (tp->ptid)
3587 || !target_thread_alive (tp->ptid))
3588 {
3589 if (debug_infrun)
3590 fprintf_unfiltered (gdb_stdlog, "\
3591 infrun: not switching back to stepped thread, it has vanished\n");
3592
3593 delete_thread (tp->ptid);
3594 keep_going (ecs);
3595 return;
3596 }
3597
3598 /* Otherwise, we no longer expect a trap in the current thread.
3599 Clear the trap_expected flag before switching back -- this is
3600 what keep_going would do as well, if we called it. */
3601 ecs->event_thread->trap_expected = 0;
3602
3603 if (debug_infrun)
3604 fprintf_unfiltered (gdb_stdlog,
3605 "infrun: switching back to stepped thread\n");
3606
3607 ecs->event_thread = tp;
3608 ecs->ptid = tp->ptid;
3609 context_switch (ecs->ptid);
3610 keep_going (ecs);
3611 return;
3612 }
3613 }
3614
3615 /* Are we stepping to get the inferior out of the dynamic linker's
3616 hook (and possibly the dld itself) after catching a shlib
3617 event? */
3618 if (ecs->event_thread->stepping_through_solib_after_catch)
3619 {
3620 #if defined(SOLIB_ADD)
3621 /* Have we reached our destination? If not, keep going. */
3622 if (SOLIB_IN_DYNAMIC_LINKER (PIDGET (ecs->ptid), stop_pc))
3623 {
3624 if (debug_infrun)
3625 fprintf_unfiltered (gdb_stdlog, "infrun: stepping in dynamic linker\n");
3626 ecs->event_thread->stepping_over_breakpoint = 1;
3627 keep_going (ecs);
3628 return;
3629 }
3630 #endif
3631 if (debug_infrun)
3632 fprintf_unfiltered (gdb_stdlog, "infrun: step past dynamic linker\n");
3633 /* Else, stop and report the catchpoint(s) whose triggering
3634 caused us to begin stepping. */
3635 ecs->event_thread->stepping_through_solib_after_catch = 0;
3636 bpstat_clear (&ecs->event_thread->stop_bpstat);
3637 ecs->event_thread->stop_bpstat
3638 = bpstat_copy (ecs->event_thread->stepping_through_solib_catchpoints);
3639 bpstat_clear (&ecs->event_thread->stepping_through_solib_catchpoints);
3640 stop_print_frame = 1;
3641 stop_stepping (ecs);
3642 return;
3643 }
3644
3645 if (ecs->event_thread->step_resume_breakpoint)
3646 {
3647 if (debug_infrun)
3648 fprintf_unfiltered (gdb_stdlog,
3649 "infrun: step-resume breakpoint is inserted\n");
3650
3651 /* Having a step-resume breakpoint overrides anything
3652 else having to do with stepping commands until
3653 that breakpoint is reached. */
3654 keep_going (ecs);
3655 return;
3656 }
3657
3658 if (ecs->event_thread->step_range_end == 0)
3659 {
3660 if (debug_infrun)
3661 fprintf_unfiltered (gdb_stdlog, "infrun: no stepping, continue\n");
3662 /* Likewise if we aren't even stepping. */
3663 keep_going (ecs);
3664 return;
3665 }
3666
3667 /* If stepping through a line, keep going if still within it.
3668
3669 Note that step_range_end is the address of the first instruction
3670 beyond the step range, and NOT the address of the last instruction
3671 within it!
3672
3673 Note also that during reverse execution, we may be stepping
3674 through a function epilogue and therefore must detect when
3675 the current-frame changes in the middle of a line. */
3676
3677 if (stop_pc >= ecs->event_thread->step_range_start
3678 && stop_pc < ecs->event_thread->step_range_end
3679 && (execution_direction != EXEC_REVERSE
3680 || frame_id_eq (get_frame_id (frame),
3681 ecs->event_thread->step_frame_id)))
3682 {
3683 if (debug_infrun)
3684 fprintf_unfiltered
3685 (gdb_stdlog, "infrun: stepping inside range [%s-%s]\n",
3686 paddress (gdbarch, ecs->event_thread->step_range_start),
3687 paddress (gdbarch, ecs->event_thread->step_range_end));
3688
3689 /* When stepping backward, stop at beginning of line range
3690 (unless it's the function entry point, in which case
3691 keep going back to the call point). */
3692 if (stop_pc == ecs->event_thread->step_range_start
3693 && stop_pc != ecs->stop_func_start
3694 && execution_direction == EXEC_REVERSE)
3695 {
3696 ecs->event_thread->stop_step = 1;
3697 print_stop_reason (END_STEPPING_RANGE, 0);
3698 stop_stepping (ecs);
3699 }
3700 else
3701 keep_going (ecs);
3702
3703 return;
3704 }
3705
3706 /* We stepped out of the stepping range. */
3707
3708 /* If we are stepping at the source level and entered the runtime
3709 loader dynamic symbol resolution code...
3710
3711 EXEC_FORWARD: we keep on single stepping until we exit the run
3712 time loader code and reach the callee's address.
3713
3714 EXEC_REVERSE: we've already executed the callee (backward), and
3715 the runtime loader code is handled just like any other
3716 undebuggable function call. Now we need only keep stepping
3717 backward through the trampoline code, and that's handled further
3718 down, so there is nothing for us to do here. */
3719
3720 if (execution_direction != EXEC_REVERSE
3721 && ecs->event_thread->step_over_calls == STEP_OVER_UNDEBUGGABLE
3722 && in_solib_dynsym_resolve_code (stop_pc))
3723 {
3724 CORE_ADDR pc_after_resolver =
3725 gdbarch_skip_solib_resolver (gdbarch, stop_pc);
3726
3727 if (debug_infrun)
3728 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into dynsym resolve code\n");
3729
3730 if (pc_after_resolver)
3731 {
3732 /* Set up a step-resume breakpoint at the address
3733 indicated by SKIP_SOLIB_RESOLVER. */
3734 struct symtab_and_line sr_sal;
3735 init_sal (&sr_sal);
3736 sr_sal.pc = pc_after_resolver;
3737
3738 insert_step_resume_breakpoint_at_sal (gdbarch,
3739 sr_sal, null_frame_id);
3740 }
3741
3742 keep_going (ecs);
3743 return;
3744 }
3745
3746 if (ecs->event_thread->step_range_end != 1
3747 && (ecs->event_thread->step_over_calls == STEP_OVER_UNDEBUGGABLE
3748 || ecs->event_thread->step_over_calls == STEP_OVER_ALL)
3749 && get_frame_type (frame) == SIGTRAMP_FRAME)
3750 {
3751 if (debug_infrun)
3752 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into signal trampoline\n");
3753 /* The inferior, while doing a "step" or "next", has ended up in
3754 a signal trampoline (either by a signal being delivered or by
3755 the signal handler returning). Just single-step until the
3756 inferior leaves the trampoline (either by calling the handler
3757 or returning). */
3758 keep_going (ecs);
3759 return;
3760 }
3761
3762 /* Check for subroutine calls. The check for the current frame
3763 equalling the step ID is not necessary - the check of the
3764 previous frame's ID is sufficient - but it is a common case and
3765 cheaper than checking the previous frame's ID.
3766
3767 NOTE: frame_id_eq will never report two invalid frame IDs as
3768 being equal, so to get into this block, both the current and
3769 previous frame must have valid frame IDs. */
3770 if (!frame_id_eq (get_stack_frame_id (frame),
3771 ecs->event_thread->step_stack_frame_id)
3772 && frame_id_eq (frame_unwind_caller_id (frame),
3773 ecs->event_thread->step_stack_frame_id))
3774 {
3775 CORE_ADDR real_stop_pc;
3776
3777 if (debug_infrun)
3778 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into subroutine\n");
3779
3780 if ((ecs->event_thread->step_over_calls == STEP_OVER_NONE)
3781 || ((ecs->event_thread->step_range_end == 1)
3782 && in_prologue (gdbarch, ecs->event_thread->prev_pc,
3783 ecs->stop_func_start)))
3784 {
3785 /* I presume that step_over_calls is only 0 when we're
3786 supposed to be stepping at the assembly language level
3787 ("stepi"). Just stop. */
3788 /* Also, maybe we just did a "nexti" inside a prolog, so we
3789 thought it was a subroutine call but it was not. Stop as
3790 well. FENN */
3791 /* And this works the same backward as frontward. MVS */
3792 ecs->event_thread->stop_step = 1;
3793 print_stop_reason (END_STEPPING_RANGE, 0);
3794 stop_stepping (ecs);
3795 return;
3796 }
3797
3798 /* Reverse stepping through solib trampolines. */
3799
3800 if (execution_direction == EXEC_REVERSE
3801 && ecs->event_thread->step_over_calls != STEP_OVER_NONE
3802 && (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
3803 || (ecs->stop_func_start == 0
3804 && in_solib_dynsym_resolve_code (stop_pc))))
3805 {
3806 /* Any solib trampoline code can be handled in reverse
3807 by simply continuing to single-step. We have already
3808 executed the solib function (backwards), and a few
3809 steps will take us back through the trampoline to the
3810 caller. */
3811 keep_going (ecs);
3812 return;
3813 }
3814
3815 if (ecs->event_thread->step_over_calls == STEP_OVER_ALL)
3816 {
3817 /* We're doing a "next".
3818
3819 Normal (forward) execution: set a breakpoint at the
3820 callee's return address (the address at which the caller
3821 will resume).
3822
3823 Reverse (backward) execution. set the step-resume
3824 breakpoint at the start of the function that we just
3825 stepped into (backwards), and continue to there. When we
3826 get there, we'll need to single-step back to the caller. */
3827
3828 if (execution_direction == EXEC_REVERSE)
3829 {
3830 struct symtab_and_line sr_sal;
3831
3832 /* Normal function call return (static or dynamic). */
3833 init_sal (&sr_sal);
3834 sr_sal.pc = ecs->stop_func_start;
3835 insert_step_resume_breakpoint_at_sal (gdbarch,
3836 sr_sal, null_frame_id);
3837 }
3838 else
3839 insert_step_resume_breakpoint_at_caller (frame);
3840
3841 keep_going (ecs);
3842 return;
3843 }
3844
3845 /* If we are in a function call trampoline (a stub between the
3846 calling routine and the real function), locate the real
3847 function. That's what tells us (a) whether we want to step
3848 into it at all, and (b) what prologue we want to run to the
3849 end of, if we do step into it. */
3850 real_stop_pc = skip_language_trampoline (frame, stop_pc);
3851 if (real_stop_pc == 0)
3852 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
3853 if (real_stop_pc != 0)
3854 ecs->stop_func_start = real_stop_pc;
3855
3856 if (real_stop_pc != 0 && in_solib_dynsym_resolve_code (real_stop_pc))
3857 {
3858 struct symtab_and_line sr_sal;
3859 init_sal (&sr_sal);
3860 sr_sal.pc = ecs->stop_func_start;
3861
3862 insert_step_resume_breakpoint_at_sal (gdbarch,
3863 sr_sal, null_frame_id);
3864 keep_going (ecs);
3865 return;
3866 }
3867
3868 /* If we have line number information for the function we are
3869 thinking of stepping into, step into it.
3870
3871 If there are several symtabs at that PC (e.g. with include
3872 files), just want to know whether *any* of them have line
3873 numbers. find_pc_line handles this. */
3874 {
3875 struct symtab_and_line tmp_sal;
3876
3877 tmp_sal = find_pc_line (ecs->stop_func_start, 0);
3878 if (tmp_sal.line != 0)
3879 {
3880 if (execution_direction == EXEC_REVERSE)
3881 handle_step_into_function_backward (gdbarch, ecs);
3882 else
3883 handle_step_into_function (gdbarch, ecs);
3884 return;
3885 }
3886 }
3887
3888 /* If we have no line number and the step-stop-if-no-debug is
3889 set, we stop the step so that the user has a chance to switch
3890 in assembly mode. */
3891 if (ecs->event_thread->step_over_calls == STEP_OVER_UNDEBUGGABLE
3892 && step_stop_if_no_debug)
3893 {
3894 ecs->event_thread->stop_step = 1;
3895 print_stop_reason (END_STEPPING_RANGE, 0);
3896 stop_stepping (ecs);
3897 return;
3898 }
3899
3900 if (execution_direction == EXEC_REVERSE)
3901 {
3902 /* Set a breakpoint at callee's start address.
3903 From there we can step once and be back in the caller. */
3904 struct symtab_and_line sr_sal;
3905 init_sal (&sr_sal);
3906 sr_sal.pc = ecs->stop_func_start;
3907 insert_step_resume_breakpoint_at_sal (gdbarch,
3908 sr_sal, null_frame_id);
3909 }
3910 else
3911 /* Set a breakpoint at callee's return address (the address
3912 at which the caller will resume). */
3913 insert_step_resume_breakpoint_at_caller (frame);
3914
3915 keep_going (ecs);
3916 return;
3917 }
3918
3919 /* Reverse stepping through solib trampolines. */
3920
3921 if (execution_direction == EXEC_REVERSE
3922 && ecs->event_thread->step_over_calls != STEP_OVER_NONE)
3923 {
3924 if (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
3925 || (ecs->stop_func_start == 0
3926 && in_solib_dynsym_resolve_code (stop_pc)))
3927 {
3928 /* Any solib trampoline code can be handled in reverse
3929 by simply continuing to single-step. We have already
3930 executed the solib function (backwards), and a few
3931 steps will take us back through the trampoline to the
3932 caller. */
3933 keep_going (ecs);
3934 return;
3935 }
3936 else if (in_solib_dynsym_resolve_code (stop_pc))
3937 {
3938 /* Stepped backward into the solib dynsym resolver.
3939 Set a breakpoint at its start and continue, then
3940 one more step will take us out. */
3941 struct symtab_and_line sr_sal;
3942 init_sal (&sr_sal);
3943 sr_sal.pc = ecs->stop_func_start;
3944 insert_step_resume_breakpoint_at_sal (gdbarch,
3945 sr_sal, null_frame_id);
3946 keep_going (ecs);
3947 return;
3948 }
3949 }
3950
3951 /* If we're in the return path from a shared library trampoline,
3952 we want to proceed through the trampoline when stepping. */
3953 if (gdbarch_in_solib_return_trampoline (gdbarch,
3954 stop_pc, ecs->stop_func_name))
3955 {
3956 /* Determine where this trampoline returns. */
3957 CORE_ADDR real_stop_pc;
3958 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
3959
3960 if (debug_infrun)
3961 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into solib return tramp\n");
3962
3963 /* Only proceed through if we know where it's going. */
3964 if (real_stop_pc)
3965 {
3966 /* And put the step-breakpoint there and go until there. */
3967 struct symtab_and_line sr_sal;
3968
3969 init_sal (&sr_sal); /* initialize to zeroes */
3970 sr_sal.pc = real_stop_pc;
3971 sr_sal.section = find_pc_overlay (sr_sal.pc);
3972
3973 /* Do not specify what the fp should be when we stop since
3974 on some machines the prologue is where the new fp value
3975 is established. */
3976 insert_step_resume_breakpoint_at_sal (gdbarch,
3977 sr_sal, null_frame_id);
3978
3979 /* Restart without fiddling with the step ranges or
3980 other state. */
3981 keep_going (ecs);
3982 return;
3983 }
3984 }
3985
3986 stop_pc_sal = find_pc_line (stop_pc, 0);
3987
3988 /* NOTE: tausq/2004-05-24: This if block used to be done before all
3989 the trampoline processing logic, however, there are some trampolines
3990 that have no names, so we should do trampoline handling first. */
3991 if (ecs->event_thread->step_over_calls == STEP_OVER_UNDEBUGGABLE
3992 && ecs->stop_func_name == NULL
3993 && stop_pc_sal.line == 0)
3994 {
3995 if (debug_infrun)
3996 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into undebuggable function\n");
3997
3998 /* The inferior just stepped into, or returned to, an
3999 undebuggable function (where there is no debugging information
4000 and no line number corresponding to the address where the
4001 inferior stopped). Since we want to skip this kind of code,
4002 we keep going until the inferior returns from this
4003 function - unless the user has asked us not to (via
4004 set step-mode) or we no longer know how to get back
4005 to the call site. */
4006 if (step_stop_if_no_debug
4007 || !frame_id_p (frame_unwind_caller_id (frame)))
4008 {
4009 /* If we have no line number and the step-stop-if-no-debug
4010 is set, we stop the step so that the user has a chance to
4011 switch in assembly mode. */
4012 ecs->event_thread->stop_step = 1;
4013 print_stop_reason (END_STEPPING_RANGE, 0);
4014 stop_stepping (ecs);
4015 return;
4016 }
4017 else
4018 {
4019 /* Set a breakpoint at callee's return address (the address
4020 at which the caller will resume). */
4021 insert_step_resume_breakpoint_at_caller (frame);
4022 keep_going (ecs);
4023 return;
4024 }
4025 }
4026
4027 if (ecs->event_thread->step_range_end == 1)
4028 {
4029 /* It is stepi or nexti. We always want to stop stepping after
4030 one instruction. */
4031 if (debug_infrun)
4032 fprintf_unfiltered (gdb_stdlog, "infrun: stepi/nexti\n");
4033 ecs->event_thread->stop_step = 1;
4034 print_stop_reason (END_STEPPING_RANGE, 0);
4035 stop_stepping (ecs);
4036 return;
4037 }
4038
4039 if (stop_pc_sal.line == 0)
4040 {
4041 /* We have no line number information. That means to stop
4042 stepping (does this always happen right after one instruction,
4043 when we do "s" in a function with no line numbers,
4044 or can this happen as a result of a return or longjmp?). */
4045 if (debug_infrun)
4046 fprintf_unfiltered (gdb_stdlog, "infrun: no line number info\n");
4047 ecs->event_thread->stop_step = 1;
4048 print_stop_reason (END_STEPPING_RANGE, 0);
4049 stop_stepping (ecs);
4050 return;
4051 }
4052
4053 /* Look for "calls" to inlined functions, part one. If the inline
4054 frame machinery detected some skipped call sites, we have entered
4055 a new inline function. */
4056
4057 if (frame_id_eq (get_frame_id (get_current_frame ()),
4058 ecs->event_thread->step_frame_id)
4059 && inline_skipped_frames (ecs->ptid))
4060 {
4061 struct symtab_and_line call_sal;
4062
4063 if (debug_infrun)
4064 fprintf_unfiltered (gdb_stdlog,
4065 "infrun: stepped into inlined function\n");
4066
4067 find_frame_sal (get_current_frame (), &call_sal);
4068
4069 if (ecs->event_thread->step_over_calls != STEP_OVER_ALL)
4070 {
4071 /* For "step", we're going to stop. But if the call site
4072 for this inlined function is on the same source line as
4073 we were previously stepping, go down into the function
4074 first. Otherwise stop at the call site. */
4075
4076 if (call_sal.line == ecs->event_thread->current_line
4077 && call_sal.symtab == ecs->event_thread->current_symtab)
4078 step_into_inline_frame (ecs->ptid);
4079
4080 ecs->event_thread->stop_step = 1;
4081 print_stop_reason (END_STEPPING_RANGE, 0);
4082 stop_stepping (ecs);
4083 return;
4084 }
4085 else
4086 {
4087 /* For "next", we should stop at the call site if it is on a
4088 different source line. Otherwise continue through the
4089 inlined function. */
4090 if (call_sal.line == ecs->event_thread->current_line
4091 && call_sal.symtab == ecs->event_thread->current_symtab)
4092 keep_going (ecs);
4093 else
4094 {
4095 ecs->event_thread->stop_step = 1;
4096 print_stop_reason (END_STEPPING_RANGE, 0);
4097 stop_stepping (ecs);
4098 }
4099 return;
4100 }
4101 }
4102
4103 /* Look for "calls" to inlined functions, part two. If we are still
4104 in the same real function we were stepping through, but we have
4105 to go further up to find the exact frame ID, we are stepping
4106 through a more inlined call beyond its call site. */
4107
4108 if (get_frame_type (get_current_frame ()) == INLINE_FRAME
4109 && !frame_id_eq (get_frame_id (get_current_frame ()),
4110 ecs->event_thread->step_frame_id)
4111 && stepped_in_from (get_current_frame (),
4112 ecs->event_thread->step_frame_id))
4113 {
4114 if (debug_infrun)
4115 fprintf_unfiltered (gdb_stdlog,
4116 "infrun: stepping through inlined function\n");
4117
4118 if (ecs->event_thread->step_over_calls == STEP_OVER_ALL)
4119 keep_going (ecs);
4120 else
4121 {
4122 ecs->event_thread->stop_step = 1;
4123 print_stop_reason (END_STEPPING_RANGE, 0);
4124 stop_stepping (ecs);
4125 }
4126 return;
4127 }
4128
4129 if ((stop_pc == stop_pc_sal.pc)
4130 && (ecs->event_thread->current_line != stop_pc_sal.line
4131 || ecs->event_thread->current_symtab != stop_pc_sal.symtab))
4132 {
4133 /* We are at the start of a different line. So stop. Note that
4134 we don't stop if we step into the middle of a different line.
4135 That is said to make things like for (;;) statements work
4136 better. */
4137 if (debug_infrun)
4138 fprintf_unfiltered (gdb_stdlog, "infrun: stepped to a different line\n");
4139 ecs->event_thread->stop_step = 1;
4140 print_stop_reason (END_STEPPING_RANGE, 0);
4141 stop_stepping (ecs);
4142 return;
4143 }
4144
4145 /* We aren't done stepping.
4146
4147 Optimize by setting the stepping range to the line.
4148 (We might not be in the original line, but if we entered a
4149 new line in mid-statement, we continue stepping. This makes
4150 things like for(;;) statements work better.) */
4151
4152 ecs->event_thread->step_range_start = stop_pc_sal.pc;
4153 ecs->event_thread->step_range_end = stop_pc_sal.end;
4154 set_step_info (frame, stop_pc_sal);
4155
4156 if (debug_infrun)
4157 fprintf_unfiltered (gdb_stdlog, "infrun: keep going\n");
4158 keep_going (ecs);
4159 }
4160
4161 /* Is thread TP in the middle of single-stepping? */
4162
4163 static int
4164 currently_stepping (struct thread_info *tp)
4165 {
4166 return ((tp->step_range_end && tp->step_resume_breakpoint == NULL)
4167 || tp->trap_expected
4168 || tp->stepping_through_solib_after_catch
4169 || bpstat_should_step ());
4170 }
4171
4172 /* Returns true if any thread *but* the one passed in "data" is in the
4173 middle of stepping or of handling a "next". */
4174
4175 static int
4176 currently_stepping_or_nexting_callback (struct thread_info *tp, void *data)
4177 {
4178 if (tp == data)
4179 return 0;
4180
4181 return (tp->step_range_end
4182 || tp->trap_expected
4183 || tp->stepping_through_solib_after_catch);
4184 }
4185
4186 /* Inferior has stepped into a subroutine call with source code that
4187 we should not step over. Do step to the first line of code in
4188 it. */
4189
4190 static void
4191 handle_step_into_function (struct gdbarch *gdbarch,
4192 struct execution_control_state *ecs)
4193 {
4194 struct symtab *s;
4195 struct symtab_and_line stop_func_sal, sr_sal;
4196
4197 s = find_pc_symtab (stop_pc);
4198 if (s && s->language != language_asm)
4199 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
4200 ecs->stop_func_start);
4201
4202 stop_func_sal = find_pc_line (ecs->stop_func_start, 0);
4203 /* Use the step_resume_break to step until the end of the prologue,
4204 even if that involves jumps (as it seems to on the vax under
4205 4.2). */
4206 /* If the prologue ends in the middle of a source line, continue to
4207 the end of that source line (if it is still within the function).
4208 Otherwise, just go to end of prologue. */
4209 if (stop_func_sal.end
4210 && stop_func_sal.pc != ecs->stop_func_start
4211 && stop_func_sal.end < ecs->stop_func_end)
4212 ecs->stop_func_start = stop_func_sal.end;
4213
4214 /* Architectures which require breakpoint adjustment might not be able
4215 to place a breakpoint at the computed address. If so, the test
4216 ``ecs->stop_func_start == stop_pc'' will never succeed. Adjust
4217 ecs->stop_func_start to an address at which a breakpoint may be
4218 legitimately placed.
4219
4220 Note: kevinb/2004-01-19: On FR-V, if this adjustment is not
4221 made, GDB will enter an infinite loop when stepping through
4222 optimized code consisting of VLIW instructions which contain
4223 subinstructions corresponding to different source lines. On
4224 FR-V, it's not permitted to place a breakpoint on any but the
4225 first subinstruction of a VLIW instruction. When a breakpoint is
4226 set, GDB will adjust the breakpoint address to the beginning of
4227 the VLIW instruction. Thus, we need to make the corresponding
4228 adjustment here when computing the stop address. */
4229
4230 if (gdbarch_adjust_breakpoint_address_p (gdbarch))
4231 {
4232 ecs->stop_func_start
4233 = gdbarch_adjust_breakpoint_address (gdbarch,
4234 ecs->stop_func_start);
4235 }
4236
4237 if (ecs->stop_func_start == stop_pc)
4238 {
4239 /* We are already there: stop now. */
4240 ecs->event_thread->stop_step = 1;
4241 print_stop_reason (END_STEPPING_RANGE, 0);
4242 stop_stepping (ecs);
4243 return;
4244 }
4245 else
4246 {
4247 /* Put the step-breakpoint there and go until there. */
4248 init_sal (&sr_sal); /* initialize to zeroes */
4249 sr_sal.pc = ecs->stop_func_start;
4250 sr_sal.section = find_pc_overlay (ecs->stop_func_start);
4251
4252 /* Do not specify what the fp should be when we stop since on
4253 some machines the prologue is where the new fp value is
4254 established. */
4255 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal, null_frame_id);
4256
4257 /* And make sure stepping stops right away then. */
4258 ecs->event_thread->step_range_end = ecs->event_thread->step_range_start;
4259 }
4260 keep_going (ecs);
4261 }
4262
4263 /* Inferior has stepped backward into a subroutine call with source
4264 code that we should not step over. Do step to the beginning of the
4265 last line of code in it. */
4266
4267 static void
4268 handle_step_into_function_backward (struct gdbarch *gdbarch,
4269 struct execution_control_state *ecs)
4270 {
4271 struct symtab *s;
4272 struct symtab_and_line stop_func_sal, sr_sal;
4273
4274 s = find_pc_symtab (stop_pc);
4275 if (s && s->language != language_asm)
4276 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
4277 ecs->stop_func_start);
4278
4279 stop_func_sal = find_pc_line (stop_pc, 0);
4280
4281 /* OK, we're just going to keep stepping here. */
4282 if (stop_func_sal.pc == stop_pc)
4283 {
4284 /* We're there already. Just stop stepping now. */
4285 ecs->event_thread->stop_step = 1;
4286 print_stop_reason (END_STEPPING_RANGE, 0);
4287 stop_stepping (ecs);
4288 }
4289 else
4290 {
4291 /* Else just reset the step range and keep going.
4292 No step-resume breakpoint, they don't work for
4293 epilogues, which can have multiple entry paths. */
4294 ecs->event_thread->step_range_start = stop_func_sal.pc;
4295 ecs->event_thread->step_range_end = stop_func_sal.end;
4296 keep_going (ecs);
4297 }
4298 return;
4299 }
4300
4301 /* Insert a "step-resume breakpoint" at SR_SAL with frame ID SR_ID.
4302 This is used to both functions and to skip over code. */
4303
4304 static void
4305 insert_step_resume_breakpoint_at_sal (struct gdbarch *gdbarch,
4306 struct symtab_and_line sr_sal,
4307 struct frame_id sr_id)
4308 {
4309 /* There should never be more than one step-resume or longjmp-resume
4310 breakpoint per thread, so we should never be setting a new
4311 step_resume_breakpoint when one is already active. */
4312 gdb_assert (inferior_thread ()->step_resume_breakpoint == NULL);
4313
4314 if (debug_infrun)
4315 fprintf_unfiltered (gdb_stdlog,
4316 "infrun: inserting step-resume breakpoint at %s\n",
4317 paddress (gdbarch, sr_sal.pc));
4318
4319 inferior_thread ()->step_resume_breakpoint
4320 = set_momentary_breakpoint (gdbarch, sr_sal, sr_id, bp_step_resume);
4321 }
4322
4323 /* Insert a "step-resume breakpoint" at RETURN_FRAME.pc. This is used
4324 to skip a potential signal handler.
4325
4326 This is called with the interrupted function's frame. The signal
4327 handler, when it returns, will resume the interrupted function at
4328 RETURN_FRAME.pc. */
4329
4330 static void
4331 insert_step_resume_breakpoint_at_frame (struct frame_info *return_frame)
4332 {
4333 struct symtab_and_line sr_sal;
4334 struct gdbarch *gdbarch;
4335
4336 gdb_assert (return_frame != NULL);
4337 init_sal (&sr_sal); /* initialize to zeros */
4338
4339 gdbarch = get_frame_arch (return_frame);
4340 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch, get_frame_pc (return_frame));
4341 sr_sal.section = find_pc_overlay (sr_sal.pc);
4342
4343 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal,
4344 get_stack_frame_id (return_frame));
4345 }
4346
4347 /* Similar to insert_step_resume_breakpoint_at_frame, except
4348 but a breakpoint at the previous frame's PC. This is used to
4349 skip a function after stepping into it (for "next" or if the called
4350 function has no debugging information).
4351
4352 The current function has almost always been reached by single
4353 stepping a call or return instruction. NEXT_FRAME belongs to the
4354 current function, and the breakpoint will be set at the caller's
4355 resume address.
4356
4357 This is a separate function rather than reusing
4358 insert_step_resume_breakpoint_at_frame in order to avoid
4359 get_prev_frame, which may stop prematurely (see the implementation
4360 of frame_unwind_caller_id for an example). */
4361
4362 static void
4363 insert_step_resume_breakpoint_at_caller (struct frame_info *next_frame)
4364 {
4365 struct symtab_and_line sr_sal;
4366 struct gdbarch *gdbarch;
4367
4368 /* We shouldn't have gotten here if we don't know where the call site
4369 is. */
4370 gdb_assert (frame_id_p (frame_unwind_caller_id (next_frame)));
4371
4372 init_sal (&sr_sal); /* initialize to zeros */
4373
4374 gdbarch = frame_unwind_caller_arch (next_frame);
4375 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch,
4376 frame_unwind_caller_pc (next_frame));
4377 sr_sal.section = find_pc_overlay (sr_sal.pc);
4378
4379 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal,
4380 frame_unwind_caller_id (next_frame));
4381 }
4382
4383 /* Insert a "longjmp-resume" breakpoint at PC. This is used to set a
4384 new breakpoint at the target of a jmp_buf. The handling of
4385 longjmp-resume uses the same mechanisms used for handling
4386 "step-resume" breakpoints. */
4387
4388 static void
4389 insert_longjmp_resume_breakpoint (struct gdbarch *gdbarch, CORE_ADDR pc)
4390 {
4391 /* There should never be more than one step-resume or longjmp-resume
4392 breakpoint per thread, so we should never be setting a new
4393 longjmp_resume_breakpoint when one is already active. */
4394 gdb_assert (inferior_thread ()->step_resume_breakpoint == NULL);
4395
4396 if (debug_infrun)
4397 fprintf_unfiltered (gdb_stdlog,
4398 "infrun: inserting longjmp-resume breakpoint at %s\n",
4399 paddress (gdbarch, pc));
4400
4401 inferior_thread ()->step_resume_breakpoint =
4402 set_momentary_breakpoint_at_pc (gdbarch, pc, bp_longjmp_resume);
4403 }
4404
4405 static void
4406 stop_stepping (struct execution_control_state *ecs)
4407 {
4408 if (debug_infrun)
4409 fprintf_unfiltered (gdb_stdlog, "infrun: stop_stepping\n");
4410
4411 /* Let callers know we don't want to wait for the inferior anymore. */
4412 ecs->wait_some_more = 0;
4413 }
4414
4415 /* This function handles various cases where we need to continue
4416 waiting for the inferior. */
4417 /* (Used to be the keep_going: label in the old wait_for_inferior) */
4418
4419 static void
4420 keep_going (struct execution_control_state *ecs)
4421 {
4422 /* Save the pc before execution, to compare with pc after stop. */
4423 ecs->event_thread->prev_pc
4424 = regcache_read_pc (get_thread_regcache (ecs->ptid));
4425
4426 /* If we did not do break;, it means we should keep running the
4427 inferior and not return to debugger. */
4428
4429 if (ecs->event_thread->trap_expected
4430 && ecs->event_thread->stop_signal != TARGET_SIGNAL_TRAP)
4431 {
4432 /* We took a signal (which we are supposed to pass through to
4433 the inferior, else we'd not get here) and we haven't yet
4434 gotten our trap. Simply continue. */
4435 resume (currently_stepping (ecs->event_thread),
4436 ecs->event_thread->stop_signal);
4437 }
4438 else
4439 {
4440 /* Either the trap was not expected, but we are continuing
4441 anyway (the user asked that this signal be passed to the
4442 child)
4443 -- or --
4444 The signal was SIGTRAP, e.g. it was our signal, but we
4445 decided we should resume from it.
4446
4447 We're going to run this baby now!
4448
4449 Note that insert_breakpoints won't try to re-insert
4450 already inserted breakpoints. Therefore, we don't
4451 care if breakpoints were already inserted, or not. */
4452
4453 if (ecs->event_thread->stepping_over_breakpoint)
4454 {
4455 struct regcache *thread_regcache = get_thread_regcache (ecs->ptid);
4456 if (!use_displaced_stepping (get_regcache_arch (thread_regcache)))
4457 /* Since we can't do a displaced step, we have to remove
4458 the breakpoint while we step it. To keep things
4459 simple, we remove them all. */
4460 remove_breakpoints ();
4461 }
4462 else
4463 {
4464 struct gdb_exception e;
4465 /* Stop stepping when inserting breakpoints
4466 has failed. */
4467 TRY_CATCH (e, RETURN_MASK_ERROR)
4468 {
4469 insert_breakpoints ();
4470 }
4471 if (e.reason < 0)
4472 {
4473 stop_stepping (ecs);
4474 return;
4475 }
4476 }
4477
4478 ecs->event_thread->trap_expected = ecs->event_thread->stepping_over_breakpoint;
4479
4480 /* Do not deliver SIGNAL_TRAP (except when the user explicitly
4481 specifies that such a signal should be delivered to the
4482 target program).
4483
4484 Typically, this would occure when a user is debugging a
4485 target monitor on a simulator: the target monitor sets a
4486 breakpoint; the simulator encounters this break-point and
4487 halts the simulation handing control to GDB; GDB, noteing
4488 that the break-point isn't valid, returns control back to the
4489 simulator; the simulator then delivers the hardware
4490 equivalent of a SIGNAL_TRAP to the program being debugged. */
4491
4492 if (ecs->event_thread->stop_signal == TARGET_SIGNAL_TRAP
4493 && !signal_program[ecs->event_thread->stop_signal])
4494 ecs->event_thread->stop_signal = TARGET_SIGNAL_0;
4495
4496 resume (currently_stepping (ecs->event_thread),
4497 ecs->event_thread->stop_signal);
4498 }
4499
4500 prepare_to_wait (ecs);
4501 }
4502
4503 /* This function normally comes after a resume, before
4504 handle_inferior_event exits. It takes care of any last bits of
4505 housekeeping, and sets the all-important wait_some_more flag. */
4506
4507 static void
4508 prepare_to_wait (struct execution_control_state *ecs)
4509 {
4510 if (debug_infrun)
4511 fprintf_unfiltered (gdb_stdlog, "infrun: prepare_to_wait\n");
4512
4513 /* This is the old end of the while loop. Let everybody know we
4514 want to wait for the inferior some more and get called again
4515 soon. */
4516 ecs->wait_some_more = 1;
4517 }
4518
4519 /* Print why the inferior has stopped. We always print something when
4520 the inferior exits, or receives a signal. The rest of the cases are
4521 dealt with later on in normal_stop() and print_it_typical(). Ideally
4522 there should be a call to this function from handle_inferior_event()
4523 each time stop_stepping() is called.*/
4524 static void
4525 print_stop_reason (enum inferior_stop_reason stop_reason, int stop_info)
4526 {
4527 switch (stop_reason)
4528 {
4529 case END_STEPPING_RANGE:
4530 /* We are done with a step/next/si/ni command. */
4531 /* For now print nothing. */
4532 /* Print a message only if not in the middle of doing a "step n"
4533 operation for n > 1 */
4534 if (!inferior_thread ()->step_multi
4535 || !inferior_thread ()->stop_step)
4536 if (ui_out_is_mi_like_p (uiout))
4537 ui_out_field_string
4538 (uiout, "reason",
4539 async_reason_lookup (EXEC_ASYNC_END_STEPPING_RANGE));
4540 break;
4541 case SIGNAL_EXITED:
4542 /* The inferior was terminated by a signal. */
4543 annotate_signalled ();
4544 if (ui_out_is_mi_like_p (uiout))
4545 ui_out_field_string
4546 (uiout, "reason",
4547 async_reason_lookup (EXEC_ASYNC_EXITED_SIGNALLED));
4548 ui_out_text (uiout, "\nProgram terminated with signal ");
4549 annotate_signal_name ();
4550 ui_out_field_string (uiout, "signal-name",
4551 target_signal_to_name (stop_info));
4552 annotate_signal_name_end ();
4553 ui_out_text (uiout, ", ");
4554 annotate_signal_string ();
4555 ui_out_field_string (uiout, "signal-meaning",
4556 target_signal_to_string (stop_info));
4557 annotate_signal_string_end ();
4558 ui_out_text (uiout, ".\n");
4559 ui_out_text (uiout, "The program no longer exists.\n");
4560 break;
4561 case EXITED:
4562 /* The inferior program is finished. */
4563 annotate_exited (stop_info);
4564 if (stop_info)
4565 {
4566 if (ui_out_is_mi_like_p (uiout))
4567 ui_out_field_string (uiout, "reason",
4568 async_reason_lookup (EXEC_ASYNC_EXITED));
4569 ui_out_text (uiout, "\nProgram exited with code ");
4570 ui_out_field_fmt (uiout, "exit-code", "0%o",
4571 (unsigned int) stop_info);
4572 ui_out_text (uiout, ".\n");
4573 }
4574 else
4575 {
4576 if (ui_out_is_mi_like_p (uiout))
4577 ui_out_field_string
4578 (uiout, "reason",
4579 async_reason_lookup (EXEC_ASYNC_EXITED_NORMALLY));
4580 ui_out_text (uiout, "\nProgram exited normally.\n");
4581 }
4582 /* Support the --return-child-result option. */
4583 return_child_result_value = stop_info;
4584 break;
4585 case SIGNAL_RECEIVED:
4586 /* Signal received. The signal table tells us to print about
4587 it. */
4588 annotate_signal ();
4589
4590 if (stop_info == TARGET_SIGNAL_0 && !ui_out_is_mi_like_p (uiout))
4591 {
4592 struct thread_info *t = inferior_thread ();
4593
4594 ui_out_text (uiout, "\n[");
4595 ui_out_field_string (uiout, "thread-name",
4596 target_pid_to_str (t->ptid));
4597 ui_out_field_fmt (uiout, "thread-id", "] #%d", t->num);
4598 ui_out_text (uiout, " stopped");
4599 }
4600 else
4601 {
4602 ui_out_text (uiout, "\nProgram received signal ");
4603 annotate_signal_name ();
4604 if (ui_out_is_mi_like_p (uiout))
4605 ui_out_field_string
4606 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_SIGNAL_RECEIVED));
4607 ui_out_field_string (uiout, "signal-name",
4608 target_signal_to_name (stop_info));
4609 annotate_signal_name_end ();
4610 ui_out_text (uiout, ", ");
4611 annotate_signal_string ();
4612 ui_out_field_string (uiout, "signal-meaning",
4613 target_signal_to_string (stop_info));
4614 annotate_signal_string_end ();
4615 }
4616 ui_out_text (uiout, ".\n");
4617 break;
4618 case NO_HISTORY:
4619 /* Reverse execution: target ran out of history info. */
4620 ui_out_text (uiout, "\nNo more reverse-execution history.\n");
4621 break;
4622 default:
4623 internal_error (__FILE__, __LINE__,
4624 _("print_stop_reason: unrecognized enum value"));
4625 break;
4626 }
4627 }
4628 \f
4629
4630 /* Here to return control to GDB when the inferior stops for real.
4631 Print appropriate messages, remove breakpoints, give terminal our modes.
4632
4633 STOP_PRINT_FRAME nonzero means print the executing frame
4634 (pc, function, args, file, line number and line text).
4635 BREAKPOINTS_FAILED nonzero means stop was due to error
4636 attempting to insert breakpoints. */
4637
4638 void
4639 normal_stop (void)
4640 {
4641 struct target_waitstatus last;
4642 ptid_t last_ptid;
4643 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
4644
4645 get_last_target_status (&last_ptid, &last);
4646
4647 /* If an exception is thrown from this point on, make sure to
4648 propagate GDB's knowledge of the executing state to the
4649 frontend/user running state. A QUIT is an easy exception to see
4650 here, so do this before any filtered output. */
4651 if (!non_stop)
4652 make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
4653 else if (last.kind != TARGET_WAITKIND_SIGNALLED
4654 && last.kind != TARGET_WAITKIND_EXITED)
4655 make_cleanup (finish_thread_state_cleanup, &inferior_ptid);
4656
4657 /* In non-stop mode, we don't want GDB to switch threads behind the
4658 user's back, to avoid races where the user is typing a command to
4659 apply to thread x, but GDB switches to thread y before the user
4660 finishes entering the command. */
4661
4662 /* As with the notification of thread events, we want to delay
4663 notifying the user that we've switched thread context until
4664 the inferior actually stops.
4665
4666 There's no point in saying anything if the inferior has exited.
4667 Note that SIGNALLED here means "exited with a signal", not
4668 "received a signal". */
4669 if (!non_stop
4670 && !ptid_equal (previous_inferior_ptid, inferior_ptid)
4671 && target_has_execution
4672 && last.kind != TARGET_WAITKIND_SIGNALLED
4673 && last.kind != TARGET_WAITKIND_EXITED)
4674 {
4675 target_terminal_ours_for_output ();
4676 printf_filtered (_("[Switching to %s]\n"),
4677 target_pid_to_str (inferior_ptid));
4678 annotate_thread_changed ();
4679 previous_inferior_ptid = inferior_ptid;
4680 }
4681
4682 if (!breakpoints_always_inserted_mode () && target_has_execution)
4683 {
4684 if (remove_breakpoints ())
4685 {
4686 target_terminal_ours_for_output ();
4687 printf_filtered (_("\
4688 Cannot remove breakpoints because program is no longer writable.\n\
4689 Further execution is probably impossible.\n"));
4690 }
4691 }
4692
4693 /* If an auto-display called a function and that got a signal,
4694 delete that auto-display to avoid an infinite recursion. */
4695
4696 if (stopped_by_random_signal)
4697 disable_current_display ();
4698
4699 /* Don't print a message if in the middle of doing a "step n"
4700 operation for n > 1 */
4701 if (target_has_execution
4702 && last.kind != TARGET_WAITKIND_SIGNALLED
4703 && last.kind != TARGET_WAITKIND_EXITED
4704 && inferior_thread ()->step_multi
4705 && inferior_thread ()->stop_step)
4706 goto done;
4707
4708 target_terminal_ours ();
4709
4710 /* Set the current source location. This will also happen if we
4711 display the frame below, but the current SAL will be incorrect
4712 during a user hook-stop function. */
4713 if (has_stack_frames () && !stop_stack_dummy)
4714 set_current_sal_from_frame (get_current_frame (), 1);
4715
4716 /* Let the user/frontend see the threads as stopped. */
4717 do_cleanups (old_chain);
4718
4719 /* Look up the hook_stop and run it (CLI internally handles problem
4720 of stop_command's pre-hook not existing). */
4721 if (stop_command)
4722 catch_errors (hook_stop_stub, stop_command,
4723 "Error while running hook_stop:\n", RETURN_MASK_ALL);
4724
4725 if (!has_stack_frames ())
4726 goto done;
4727
4728 if (last.kind == TARGET_WAITKIND_SIGNALLED
4729 || last.kind == TARGET_WAITKIND_EXITED)
4730 goto done;
4731
4732 /* Select innermost stack frame - i.e., current frame is frame 0,
4733 and current location is based on that.
4734 Don't do this on return from a stack dummy routine,
4735 or if the program has exited. */
4736
4737 if (!stop_stack_dummy)
4738 {
4739 select_frame (get_current_frame ());
4740
4741 /* Print current location without a level number, if
4742 we have changed functions or hit a breakpoint.
4743 Print source line if we have one.
4744 bpstat_print() contains the logic deciding in detail
4745 what to print, based on the event(s) that just occurred. */
4746
4747 /* If --batch-silent is enabled then there's no need to print the current
4748 source location, and to try risks causing an error message about
4749 missing source files. */
4750 if (stop_print_frame && !batch_silent)
4751 {
4752 int bpstat_ret;
4753 int source_flag;
4754 int do_frame_printing = 1;
4755 struct thread_info *tp = inferior_thread ();
4756
4757 bpstat_ret = bpstat_print (tp->stop_bpstat);
4758 switch (bpstat_ret)
4759 {
4760 case PRINT_UNKNOWN:
4761 /* If we had hit a shared library event breakpoint,
4762 bpstat_print would print out this message. If we hit
4763 an OS-level shared library event, do the same
4764 thing. */
4765 if (last.kind == TARGET_WAITKIND_LOADED)
4766 {
4767 printf_filtered (_("Stopped due to shared library event\n"));
4768 source_flag = SRC_LINE; /* something bogus */
4769 do_frame_printing = 0;
4770 break;
4771 }
4772
4773 /* FIXME: cagney/2002-12-01: Given that a frame ID does
4774 (or should) carry around the function and does (or
4775 should) use that when doing a frame comparison. */
4776 if (tp->stop_step
4777 && frame_id_eq (tp->step_frame_id,
4778 get_frame_id (get_current_frame ()))
4779 && step_start_function == find_pc_function (stop_pc))
4780 source_flag = SRC_LINE; /* finished step, just print source line */
4781 else
4782 source_flag = SRC_AND_LOC; /* print location and source line */
4783 break;
4784 case PRINT_SRC_AND_LOC:
4785 source_flag = SRC_AND_LOC; /* print location and source line */
4786 break;
4787 case PRINT_SRC_ONLY:
4788 source_flag = SRC_LINE;
4789 break;
4790 case PRINT_NOTHING:
4791 source_flag = SRC_LINE; /* something bogus */
4792 do_frame_printing = 0;
4793 break;
4794 default:
4795 internal_error (__FILE__, __LINE__, _("Unknown value."));
4796 }
4797
4798 /* The behavior of this routine with respect to the source
4799 flag is:
4800 SRC_LINE: Print only source line
4801 LOCATION: Print only location
4802 SRC_AND_LOC: Print location and source line */
4803 if (do_frame_printing)
4804 print_stack_frame (get_selected_frame (NULL), 0, source_flag);
4805
4806 /* Display the auto-display expressions. */
4807 do_displays ();
4808 }
4809 }
4810
4811 /* Save the function value return registers, if we care.
4812 We might be about to restore their previous contents. */
4813 if (inferior_thread ()->proceed_to_finish)
4814 {
4815 /* This should not be necessary. */
4816 if (stop_registers)
4817 regcache_xfree (stop_registers);
4818
4819 /* NB: The copy goes through to the target picking up the value of
4820 all the registers. */
4821 stop_registers = regcache_dup (get_current_regcache ());
4822 }
4823
4824 if (stop_stack_dummy)
4825 {
4826 /* Pop the empty frame that contains the stack dummy.
4827 This also restores inferior state prior to the call
4828 (struct inferior_thread_state). */
4829 struct frame_info *frame = get_current_frame ();
4830 gdb_assert (get_frame_type (frame) == DUMMY_FRAME);
4831 frame_pop (frame);
4832 /* frame_pop() calls reinit_frame_cache as the last thing it does
4833 which means there's currently no selected frame. We don't need
4834 to re-establish a selected frame if the dummy call returns normally,
4835 that will be done by restore_inferior_status. However, we do have
4836 to handle the case where the dummy call is returning after being
4837 stopped (e.g. the dummy call previously hit a breakpoint). We
4838 can't know which case we have so just always re-establish a
4839 selected frame here. */
4840 select_frame (get_current_frame ());
4841 }
4842
4843 done:
4844 annotate_stopped ();
4845
4846 /* Suppress the stop observer if we're in the middle of:
4847
4848 - a step n (n > 1), as there still more steps to be done.
4849
4850 - a "finish" command, as the observer will be called in
4851 finish_command_continuation, so it can include the inferior
4852 function's return value.
4853
4854 - calling an inferior function, as we pretend we inferior didn't
4855 run at all. The return value of the call is handled by the
4856 expression evaluator, through call_function_by_hand. */
4857
4858 if (!target_has_execution
4859 || last.kind == TARGET_WAITKIND_SIGNALLED
4860 || last.kind == TARGET_WAITKIND_EXITED
4861 || (!inferior_thread ()->step_multi
4862 && !(inferior_thread ()->stop_bpstat
4863 && inferior_thread ()->proceed_to_finish)
4864 && !inferior_thread ()->in_infcall))
4865 {
4866 if (!ptid_equal (inferior_ptid, null_ptid))
4867 observer_notify_normal_stop (inferior_thread ()->stop_bpstat,
4868 stop_print_frame);
4869 else
4870 observer_notify_normal_stop (NULL, stop_print_frame);
4871 }
4872
4873 if (target_has_execution)
4874 {
4875 if (last.kind != TARGET_WAITKIND_SIGNALLED
4876 && last.kind != TARGET_WAITKIND_EXITED)
4877 /* Delete the breakpoint we stopped at, if it wants to be deleted.
4878 Delete any breakpoint that is to be deleted at the next stop. */
4879 breakpoint_auto_delete (inferior_thread ()->stop_bpstat);
4880 }
4881 }
4882
4883 static int
4884 hook_stop_stub (void *cmd)
4885 {
4886 execute_cmd_pre_hook ((struct cmd_list_element *) cmd);
4887 return (0);
4888 }
4889 \f
4890 int
4891 signal_stop_state (int signo)
4892 {
4893 return signal_stop[signo];
4894 }
4895
4896 int
4897 signal_print_state (int signo)
4898 {
4899 return signal_print[signo];
4900 }
4901
4902 int
4903 signal_pass_state (int signo)
4904 {
4905 return signal_program[signo];
4906 }
4907
4908 int
4909 signal_stop_update (int signo, int state)
4910 {
4911 int ret = signal_stop[signo];
4912 signal_stop[signo] = state;
4913 return ret;
4914 }
4915
4916 int
4917 signal_print_update (int signo, int state)
4918 {
4919 int ret = signal_print[signo];
4920 signal_print[signo] = state;
4921 return ret;
4922 }
4923
4924 int
4925 signal_pass_update (int signo, int state)
4926 {
4927 int ret = signal_program[signo];
4928 signal_program[signo] = state;
4929 return ret;
4930 }
4931
4932 static void
4933 sig_print_header (void)
4934 {
4935 printf_filtered (_("\
4936 Signal Stop\tPrint\tPass to program\tDescription\n"));
4937 }
4938
4939 static void
4940 sig_print_info (enum target_signal oursig)
4941 {
4942 const char *name = target_signal_to_name (oursig);
4943 int name_padding = 13 - strlen (name);
4944
4945 if (name_padding <= 0)
4946 name_padding = 0;
4947
4948 printf_filtered ("%s", name);
4949 printf_filtered ("%*.*s ", name_padding, name_padding, " ");
4950 printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
4951 printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
4952 printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
4953 printf_filtered ("%s\n", target_signal_to_string (oursig));
4954 }
4955
4956 /* Specify how various signals in the inferior should be handled. */
4957
4958 static void
4959 handle_command (char *args, int from_tty)
4960 {
4961 char **argv;
4962 int digits, wordlen;
4963 int sigfirst, signum, siglast;
4964 enum target_signal oursig;
4965 int allsigs;
4966 int nsigs;
4967 unsigned char *sigs;
4968 struct cleanup *old_chain;
4969
4970 if (args == NULL)
4971 {
4972 error_no_arg (_("signal to handle"));
4973 }
4974
4975 /* Allocate and zero an array of flags for which signals to handle. */
4976
4977 nsigs = (int) TARGET_SIGNAL_LAST;
4978 sigs = (unsigned char *) alloca (nsigs);
4979 memset (sigs, 0, nsigs);
4980
4981 /* Break the command line up into args. */
4982
4983 argv = gdb_buildargv (args);
4984 old_chain = make_cleanup_freeargv (argv);
4985
4986 /* Walk through the args, looking for signal oursigs, signal names, and
4987 actions. Signal numbers and signal names may be interspersed with
4988 actions, with the actions being performed for all signals cumulatively
4989 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
4990
4991 while (*argv != NULL)
4992 {
4993 wordlen = strlen (*argv);
4994 for (digits = 0; isdigit ((*argv)[digits]); digits++)
4995 {;
4996 }
4997 allsigs = 0;
4998 sigfirst = siglast = -1;
4999
5000 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
5001 {
5002 /* Apply action to all signals except those used by the
5003 debugger. Silently skip those. */
5004 allsigs = 1;
5005 sigfirst = 0;
5006 siglast = nsigs - 1;
5007 }
5008 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
5009 {
5010 SET_SIGS (nsigs, sigs, signal_stop);
5011 SET_SIGS (nsigs, sigs, signal_print);
5012 }
5013 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
5014 {
5015 UNSET_SIGS (nsigs, sigs, signal_program);
5016 }
5017 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
5018 {
5019 SET_SIGS (nsigs, sigs, signal_print);
5020 }
5021 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
5022 {
5023 SET_SIGS (nsigs, sigs, signal_program);
5024 }
5025 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
5026 {
5027 UNSET_SIGS (nsigs, sigs, signal_stop);
5028 }
5029 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
5030 {
5031 SET_SIGS (nsigs, sigs, signal_program);
5032 }
5033 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
5034 {
5035 UNSET_SIGS (nsigs, sigs, signal_print);
5036 UNSET_SIGS (nsigs, sigs, signal_stop);
5037 }
5038 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
5039 {
5040 UNSET_SIGS (nsigs, sigs, signal_program);
5041 }
5042 else if (digits > 0)
5043 {
5044 /* It is numeric. The numeric signal refers to our own
5045 internal signal numbering from target.h, not to host/target
5046 signal number. This is a feature; users really should be
5047 using symbolic names anyway, and the common ones like
5048 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
5049
5050 sigfirst = siglast = (int)
5051 target_signal_from_command (atoi (*argv));
5052 if ((*argv)[digits] == '-')
5053 {
5054 siglast = (int)
5055 target_signal_from_command (atoi ((*argv) + digits + 1));
5056 }
5057 if (sigfirst > siglast)
5058 {
5059 /* Bet he didn't figure we'd think of this case... */
5060 signum = sigfirst;
5061 sigfirst = siglast;
5062 siglast = signum;
5063 }
5064 }
5065 else
5066 {
5067 oursig = target_signal_from_name (*argv);
5068 if (oursig != TARGET_SIGNAL_UNKNOWN)
5069 {
5070 sigfirst = siglast = (int) oursig;
5071 }
5072 else
5073 {
5074 /* Not a number and not a recognized flag word => complain. */
5075 error (_("Unrecognized or ambiguous flag word: \"%s\"."), *argv);
5076 }
5077 }
5078
5079 /* If any signal numbers or symbol names were found, set flags for
5080 which signals to apply actions to. */
5081
5082 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
5083 {
5084 switch ((enum target_signal) signum)
5085 {
5086 case TARGET_SIGNAL_TRAP:
5087 case TARGET_SIGNAL_INT:
5088 if (!allsigs && !sigs[signum])
5089 {
5090 if (query (_("%s is used by the debugger.\n\
5091 Are you sure you want to change it? "), target_signal_to_name ((enum target_signal) signum)))
5092 {
5093 sigs[signum] = 1;
5094 }
5095 else
5096 {
5097 printf_unfiltered (_("Not confirmed, unchanged.\n"));
5098 gdb_flush (gdb_stdout);
5099 }
5100 }
5101 break;
5102 case TARGET_SIGNAL_0:
5103 case TARGET_SIGNAL_DEFAULT:
5104 case TARGET_SIGNAL_UNKNOWN:
5105 /* Make sure that "all" doesn't print these. */
5106 break;
5107 default:
5108 sigs[signum] = 1;
5109 break;
5110 }
5111 }
5112
5113 argv++;
5114 }
5115
5116 for (signum = 0; signum < nsigs; signum++)
5117 if (sigs[signum])
5118 {
5119 target_notice_signals (inferior_ptid);
5120
5121 if (from_tty)
5122 {
5123 /* Show the results. */
5124 sig_print_header ();
5125 for (; signum < nsigs; signum++)
5126 if (sigs[signum])
5127 sig_print_info (signum);
5128 }
5129
5130 break;
5131 }
5132
5133 do_cleanups (old_chain);
5134 }
5135
5136 static void
5137 xdb_handle_command (char *args, int from_tty)
5138 {
5139 char **argv;
5140 struct cleanup *old_chain;
5141
5142 if (args == NULL)
5143 error_no_arg (_("xdb command"));
5144
5145 /* Break the command line up into args. */
5146
5147 argv = gdb_buildargv (args);
5148 old_chain = make_cleanup_freeargv (argv);
5149 if (argv[1] != (char *) NULL)
5150 {
5151 char *argBuf;
5152 int bufLen;
5153
5154 bufLen = strlen (argv[0]) + 20;
5155 argBuf = (char *) xmalloc (bufLen);
5156 if (argBuf)
5157 {
5158 int validFlag = 1;
5159 enum target_signal oursig;
5160
5161 oursig = target_signal_from_name (argv[0]);
5162 memset (argBuf, 0, bufLen);
5163 if (strcmp (argv[1], "Q") == 0)
5164 sprintf (argBuf, "%s %s", argv[0], "noprint");
5165 else
5166 {
5167 if (strcmp (argv[1], "s") == 0)
5168 {
5169 if (!signal_stop[oursig])
5170 sprintf (argBuf, "%s %s", argv[0], "stop");
5171 else
5172 sprintf (argBuf, "%s %s", argv[0], "nostop");
5173 }
5174 else if (strcmp (argv[1], "i") == 0)
5175 {
5176 if (!signal_program[oursig])
5177 sprintf (argBuf, "%s %s", argv[0], "pass");
5178 else
5179 sprintf (argBuf, "%s %s", argv[0], "nopass");
5180 }
5181 else if (strcmp (argv[1], "r") == 0)
5182 {
5183 if (!signal_print[oursig])
5184 sprintf (argBuf, "%s %s", argv[0], "print");
5185 else
5186 sprintf (argBuf, "%s %s", argv[0], "noprint");
5187 }
5188 else
5189 validFlag = 0;
5190 }
5191 if (validFlag)
5192 handle_command (argBuf, from_tty);
5193 else
5194 printf_filtered (_("Invalid signal handling flag.\n"));
5195 if (argBuf)
5196 xfree (argBuf);
5197 }
5198 }
5199 do_cleanups (old_chain);
5200 }
5201
5202 /* Print current contents of the tables set by the handle command.
5203 It is possible we should just be printing signals actually used
5204 by the current target (but for things to work right when switching
5205 targets, all signals should be in the signal tables). */
5206
5207 static void
5208 signals_info (char *signum_exp, int from_tty)
5209 {
5210 enum target_signal oursig;
5211 sig_print_header ();
5212
5213 if (signum_exp)
5214 {
5215 /* First see if this is a symbol name. */
5216 oursig = target_signal_from_name (signum_exp);
5217 if (oursig == TARGET_SIGNAL_UNKNOWN)
5218 {
5219 /* No, try numeric. */
5220 oursig =
5221 target_signal_from_command (parse_and_eval_long (signum_exp));
5222 }
5223 sig_print_info (oursig);
5224 return;
5225 }
5226
5227 printf_filtered ("\n");
5228 /* These ugly casts brought to you by the native VAX compiler. */
5229 for (oursig = TARGET_SIGNAL_FIRST;
5230 (int) oursig < (int) TARGET_SIGNAL_LAST;
5231 oursig = (enum target_signal) ((int) oursig + 1))
5232 {
5233 QUIT;
5234
5235 if (oursig != TARGET_SIGNAL_UNKNOWN
5236 && oursig != TARGET_SIGNAL_DEFAULT && oursig != TARGET_SIGNAL_0)
5237 sig_print_info (oursig);
5238 }
5239
5240 printf_filtered (_("\nUse the \"handle\" command to change these tables.\n"));
5241 }
5242
5243 /* The $_siginfo convenience variable is a bit special. We don't know
5244 for sure the type of the value until we actually have a chance to
5245 fetch the data. The type can change depending on gdbarch, so it it
5246 also dependent on which thread you have selected.
5247
5248 1. making $_siginfo be an internalvar that creates a new value on
5249 access.
5250
5251 2. making the value of $_siginfo be an lval_computed value. */
5252
5253 /* This function implements the lval_computed support for reading a
5254 $_siginfo value. */
5255
5256 static void
5257 siginfo_value_read (struct value *v)
5258 {
5259 LONGEST transferred;
5260
5261 transferred =
5262 target_read (&current_target, TARGET_OBJECT_SIGNAL_INFO,
5263 NULL,
5264 value_contents_all_raw (v),
5265 value_offset (v),
5266 TYPE_LENGTH (value_type (v)));
5267
5268 if (transferred != TYPE_LENGTH (value_type (v)))
5269 error (_("Unable to read siginfo"));
5270 }
5271
5272 /* This function implements the lval_computed support for writing a
5273 $_siginfo value. */
5274
5275 static void
5276 siginfo_value_write (struct value *v, struct value *fromval)
5277 {
5278 LONGEST transferred;
5279
5280 transferred = target_write (&current_target,
5281 TARGET_OBJECT_SIGNAL_INFO,
5282 NULL,
5283 value_contents_all_raw (fromval),
5284 value_offset (v),
5285 TYPE_LENGTH (value_type (fromval)));
5286
5287 if (transferred != TYPE_LENGTH (value_type (fromval)))
5288 error (_("Unable to write siginfo"));
5289 }
5290
5291 static struct lval_funcs siginfo_value_funcs =
5292 {
5293 siginfo_value_read,
5294 siginfo_value_write
5295 };
5296
5297 /* Return a new value with the correct type for the siginfo object of
5298 the current thread using architecture GDBARCH. Return a void value
5299 if there's no object available. */
5300
5301 static struct value *
5302 siginfo_make_value (struct gdbarch *gdbarch, struct internalvar *var)
5303 {
5304 if (target_has_stack
5305 && !ptid_equal (inferior_ptid, null_ptid)
5306 && gdbarch_get_siginfo_type_p (gdbarch))
5307 {
5308 struct type *type = gdbarch_get_siginfo_type (gdbarch);
5309 return allocate_computed_value (type, &siginfo_value_funcs, NULL);
5310 }
5311
5312 return allocate_value (builtin_type (gdbarch)->builtin_void);
5313 }
5314
5315 \f
5316 /* Inferior thread state.
5317 These are details related to the inferior itself, and don't include
5318 things like what frame the user had selected or what gdb was doing
5319 with the target at the time.
5320 For inferior function calls these are things we want to restore
5321 regardless of whether the function call successfully completes
5322 or the dummy frame has to be manually popped. */
5323
5324 struct inferior_thread_state
5325 {
5326 enum target_signal stop_signal;
5327 CORE_ADDR stop_pc;
5328 struct regcache *registers;
5329 };
5330
5331 struct inferior_thread_state *
5332 save_inferior_thread_state (void)
5333 {
5334 struct inferior_thread_state *inf_state = XMALLOC (struct inferior_thread_state);
5335 struct thread_info *tp = inferior_thread ();
5336
5337 inf_state->stop_signal = tp->stop_signal;
5338 inf_state->stop_pc = stop_pc;
5339
5340 inf_state->registers = regcache_dup (get_current_regcache ());
5341
5342 return inf_state;
5343 }
5344
5345 /* Restore inferior session state to INF_STATE. */
5346
5347 void
5348 restore_inferior_thread_state (struct inferior_thread_state *inf_state)
5349 {
5350 struct thread_info *tp = inferior_thread ();
5351
5352 tp->stop_signal = inf_state->stop_signal;
5353 stop_pc = inf_state->stop_pc;
5354
5355 /* The inferior can be gone if the user types "print exit(0)"
5356 (and perhaps other times). */
5357 if (target_has_execution)
5358 /* NB: The register write goes through to the target. */
5359 regcache_cpy (get_current_regcache (), inf_state->registers);
5360 regcache_xfree (inf_state->registers);
5361 xfree (inf_state);
5362 }
5363
5364 static void
5365 do_restore_inferior_thread_state_cleanup (void *state)
5366 {
5367 restore_inferior_thread_state (state);
5368 }
5369
5370 struct cleanup *
5371 make_cleanup_restore_inferior_thread_state (struct inferior_thread_state *inf_state)
5372 {
5373 return make_cleanup (do_restore_inferior_thread_state_cleanup, inf_state);
5374 }
5375
5376 void
5377 discard_inferior_thread_state (struct inferior_thread_state *inf_state)
5378 {
5379 regcache_xfree (inf_state->registers);
5380 xfree (inf_state);
5381 }
5382
5383 struct regcache *
5384 get_inferior_thread_state_regcache (struct inferior_thread_state *inf_state)
5385 {
5386 return inf_state->registers;
5387 }
5388
5389 /* Session related state for inferior function calls.
5390 These are the additional bits of state that need to be restored
5391 when an inferior function call successfully completes. */
5392
5393 struct inferior_status
5394 {
5395 bpstat stop_bpstat;
5396 int stop_step;
5397 int stop_stack_dummy;
5398 int stopped_by_random_signal;
5399 int stepping_over_breakpoint;
5400 CORE_ADDR step_range_start;
5401 CORE_ADDR step_range_end;
5402 struct frame_id step_frame_id;
5403 struct frame_id step_stack_frame_id;
5404 enum step_over_calls_kind step_over_calls;
5405 CORE_ADDR step_resume_break_address;
5406 int stop_after_trap;
5407 int stop_soon;
5408
5409 /* ID if the selected frame when the inferior function call was made. */
5410 struct frame_id selected_frame_id;
5411
5412 int proceed_to_finish;
5413 int in_infcall;
5414 };
5415
5416 /* Save all of the information associated with the inferior<==>gdb
5417 connection. */
5418
5419 struct inferior_status *
5420 save_inferior_status (void)
5421 {
5422 struct inferior_status *inf_status = XMALLOC (struct inferior_status);
5423 struct thread_info *tp = inferior_thread ();
5424 struct inferior *inf = current_inferior ();
5425
5426 inf_status->stop_step = tp->stop_step;
5427 inf_status->stop_stack_dummy = stop_stack_dummy;
5428 inf_status->stopped_by_random_signal = stopped_by_random_signal;
5429 inf_status->stepping_over_breakpoint = tp->trap_expected;
5430 inf_status->step_range_start = tp->step_range_start;
5431 inf_status->step_range_end = tp->step_range_end;
5432 inf_status->step_frame_id = tp->step_frame_id;
5433 inf_status->step_stack_frame_id = tp->step_stack_frame_id;
5434 inf_status->step_over_calls = tp->step_over_calls;
5435 inf_status->stop_after_trap = stop_after_trap;
5436 inf_status->stop_soon = inf->stop_soon;
5437 /* Save original bpstat chain here; replace it with copy of chain.
5438 If caller's caller is walking the chain, they'll be happier if we
5439 hand them back the original chain when restore_inferior_status is
5440 called. */
5441 inf_status->stop_bpstat = tp->stop_bpstat;
5442 tp->stop_bpstat = bpstat_copy (tp->stop_bpstat);
5443 inf_status->proceed_to_finish = tp->proceed_to_finish;
5444 inf_status->in_infcall = tp->in_infcall;
5445
5446 inf_status->selected_frame_id = get_frame_id (get_selected_frame (NULL));
5447
5448 return inf_status;
5449 }
5450
5451 static int
5452 restore_selected_frame (void *args)
5453 {
5454 struct frame_id *fid = (struct frame_id *) args;
5455 struct frame_info *frame;
5456
5457 frame = frame_find_by_id (*fid);
5458
5459 /* If inf_status->selected_frame_id is NULL, there was no previously
5460 selected frame. */
5461 if (frame == NULL)
5462 {
5463 warning (_("Unable to restore previously selected frame."));
5464 return 0;
5465 }
5466
5467 select_frame (frame);
5468
5469 return (1);
5470 }
5471
5472 /* Restore inferior session state to INF_STATUS. */
5473
5474 void
5475 restore_inferior_status (struct inferior_status *inf_status)
5476 {
5477 struct thread_info *tp = inferior_thread ();
5478 struct inferior *inf = current_inferior ();
5479
5480 tp->stop_step = inf_status->stop_step;
5481 stop_stack_dummy = inf_status->stop_stack_dummy;
5482 stopped_by_random_signal = inf_status->stopped_by_random_signal;
5483 tp->trap_expected = inf_status->stepping_over_breakpoint;
5484 tp->step_range_start = inf_status->step_range_start;
5485 tp->step_range_end = inf_status->step_range_end;
5486 tp->step_frame_id = inf_status->step_frame_id;
5487 tp->step_stack_frame_id = inf_status->step_stack_frame_id;
5488 tp->step_over_calls = inf_status->step_over_calls;
5489 stop_after_trap = inf_status->stop_after_trap;
5490 inf->stop_soon = inf_status->stop_soon;
5491 bpstat_clear (&tp->stop_bpstat);
5492 tp->stop_bpstat = inf_status->stop_bpstat;
5493 inf_status->stop_bpstat = NULL;
5494 tp->proceed_to_finish = inf_status->proceed_to_finish;
5495 tp->in_infcall = inf_status->in_infcall;
5496
5497 if (target_has_stack)
5498 {
5499 /* The point of catch_errors is that if the stack is clobbered,
5500 walking the stack might encounter a garbage pointer and
5501 error() trying to dereference it. */
5502 if (catch_errors
5503 (restore_selected_frame, &inf_status->selected_frame_id,
5504 "Unable to restore previously selected frame:\n",
5505 RETURN_MASK_ERROR) == 0)
5506 /* Error in restoring the selected frame. Select the innermost
5507 frame. */
5508 select_frame (get_current_frame ());
5509 }
5510
5511 xfree (inf_status);
5512 }
5513
5514 static void
5515 do_restore_inferior_status_cleanup (void *sts)
5516 {
5517 restore_inferior_status (sts);
5518 }
5519
5520 struct cleanup *
5521 make_cleanup_restore_inferior_status (struct inferior_status *inf_status)
5522 {
5523 return make_cleanup (do_restore_inferior_status_cleanup, inf_status);
5524 }
5525
5526 void
5527 discard_inferior_status (struct inferior_status *inf_status)
5528 {
5529 /* See save_inferior_status for info on stop_bpstat. */
5530 bpstat_clear (&inf_status->stop_bpstat);
5531 xfree (inf_status);
5532 }
5533 \f
5534 int
5535 inferior_has_forked (ptid_t pid, ptid_t *child_pid)
5536 {
5537 struct target_waitstatus last;
5538 ptid_t last_ptid;
5539
5540 get_last_target_status (&last_ptid, &last);
5541
5542 if (last.kind != TARGET_WAITKIND_FORKED)
5543 return 0;
5544
5545 if (!ptid_equal (last_ptid, pid))
5546 return 0;
5547
5548 *child_pid = last.value.related_pid;
5549 return 1;
5550 }
5551
5552 int
5553 inferior_has_vforked (ptid_t pid, ptid_t *child_pid)
5554 {
5555 struct target_waitstatus last;
5556 ptid_t last_ptid;
5557
5558 get_last_target_status (&last_ptid, &last);
5559
5560 if (last.kind != TARGET_WAITKIND_VFORKED)
5561 return 0;
5562
5563 if (!ptid_equal (last_ptid, pid))
5564 return 0;
5565
5566 *child_pid = last.value.related_pid;
5567 return 1;
5568 }
5569
5570 int
5571 inferior_has_execd (ptid_t pid, char **execd_pathname)
5572 {
5573 struct target_waitstatus last;
5574 ptid_t last_ptid;
5575
5576 get_last_target_status (&last_ptid, &last);
5577
5578 if (last.kind != TARGET_WAITKIND_EXECD)
5579 return 0;
5580
5581 if (!ptid_equal (last_ptid, pid))
5582 return 0;
5583
5584 *execd_pathname = xstrdup (last.value.execd_pathname);
5585 return 1;
5586 }
5587
5588 /* Oft used ptids */
5589 ptid_t null_ptid;
5590 ptid_t minus_one_ptid;
5591
5592 /* Create a ptid given the necessary PID, LWP, and TID components. */
5593
5594 ptid_t
5595 ptid_build (int pid, long lwp, long tid)
5596 {
5597 ptid_t ptid;
5598
5599 ptid.pid = pid;
5600 ptid.lwp = lwp;
5601 ptid.tid = tid;
5602 return ptid;
5603 }
5604
5605 /* Create a ptid from just a pid. */
5606
5607 ptid_t
5608 pid_to_ptid (int pid)
5609 {
5610 return ptid_build (pid, 0, 0);
5611 }
5612
5613 /* Fetch the pid (process id) component from a ptid. */
5614
5615 int
5616 ptid_get_pid (ptid_t ptid)
5617 {
5618 return ptid.pid;
5619 }
5620
5621 /* Fetch the lwp (lightweight process) component from a ptid. */
5622
5623 long
5624 ptid_get_lwp (ptid_t ptid)
5625 {
5626 return ptid.lwp;
5627 }
5628
5629 /* Fetch the tid (thread id) component from a ptid. */
5630
5631 long
5632 ptid_get_tid (ptid_t ptid)
5633 {
5634 return ptid.tid;
5635 }
5636
5637 /* ptid_equal() is used to test equality of two ptids. */
5638
5639 int
5640 ptid_equal (ptid_t ptid1, ptid_t ptid2)
5641 {
5642 return (ptid1.pid == ptid2.pid && ptid1.lwp == ptid2.lwp
5643 && ptid1.tid == ptid2.tid);
5644 }
5645
5646 /* Returns true if PTID represents a process. */
5647
5648 int
5649 ptid_is_pid (ptid_t ptid)
5650 {
5651 if (ptid_equal (minus_one_ptid, ptid))
5652 return 0;
5653 if (ptid_equal (null_ptid, ptid))
5654 return 0;
5655
5656 return (ptid_get_lwp (ptid) == 0 && ptid_get_tid (ptid) == 0);
5657 }
5658
5659 /* restore_inferior_ptid() will be used by the cleanup machinery
5660 to restore the inferior_ptid value saved in a call to
5661 save_inferior_ptid(). */
5662
5663 static void
5664 restore_inferior_ptid (void *arg)
5665 {
5666 ptid_t *saved_ptid_ptr = arg;
5667 inferior_ptid = *saved_ptid_ptr;
5668 xfree (arg);
5669 }
5670
5671 /* Save the value of inferior_ptid so that it may be restored by a
5672 later call to do_cleanups(). Returns the struct cleanup pointer
5673 needed for later doing the cleanup. */
5674
5675 struct cleanup *
5676 save_inferior_ptid (void)
5677 {
5678 ptid_t *saved_ptid_ptr;
5679
5680 saved_ptid_ptr = xmalloc (sizeof (ptid_t));
5681 *saved_ptid_ptr = inferior_ptid;
5682 return make_cleanup (restore_inferior_ptid, saved_ptid_ptr);
5683 }
5684 \f
5685
5686 /* User interface for reverse debugging:
5687 Set exec-direction / show exec-direction commands
5688 (returns error unless target implements to_set_exec_direction method). */
5689
5690 enum exec_direction_kind execution_direction = EXEC_FORWARD;
5691 static const char exec_forward[] = "forward";
5692 static const char exec_reverse[] = "reverse";
5693 static const char *exec_direction = exec_forward;
5694 static const char *exec_direction_names[] = {
5695 exec_forward,
5696 exec_reverse,
5697 NULL
5698 };
5699
5700 static void
5701 set_exec_direction_func (char *args, int from_tty,
5702 struct cmd_list_element *cmd)
5703 {
5704 if (target_can_execute_reverse)
5705 {
5706 if (!strcmp (exec_direction, exec_forward))
5707 execution_direction = EXEC_FORWARD;
5708 else if (!strcmp (exec_direction, exec_reverse))
5709 execution_direction = EXEC_REVERSE;
5710 }
5711 }
5712
5713 static void
5714 show_exec_direction_func (struct ui_file *out, int from_tty,
5715 struct cmd_list_element *cmd, const char *value)
5716 {
5717 switch (execution_direction) {
5718 case EXEC_FORWARD:
5719 fprintf_filtered (out, _("Forward.\n"));
5720 break;
5721 case EXEC_REVERSE:
5722 fprintf_filtered (out, _("Reverse.\n"));
5723 break;
5724 case EXEC_ERROR:
5725 default:
5726 fprintf_filtered (out,
5727 _("Forward (target `%s' does not support exec-direction).\n"),
5728 target_shortname);
5729 break;
5730 }
5731 }
5732
5733 /* User interface for non-stop mode. */
5734
5735 int non_stop = 0;
5736 static int non_stop_1 = 0;
5737
5738 static void
5739 set_non_stop (char *args, int from_tty,
5740 struct cmd_list_element *c)
5741 {
5742 if (target_has_execution)
5743 {
5744 non_stop_1 = non_stop;
5745 error (_("Cannot change this setting while the inferior is running."));
5746 }
5747
5748 non_stop = non_stop_1;
5749 }
5750
5751 static void
5752 show_non_stop (struct ui_file *file, int from_tty,
5753 struct cmd_list_element *c, const char *value)
5754 {
5755 fprintf_filtered (file,
5756 _("Controlling the inferior in non-stop mode is %s.\n"),
5757 value);
5758 }
5759
5760 static void
5761 show_schedule_multiple (struct ui_file *file, int from_tty,
5762 struct cmd_list_element *c, const char *value)
5763 {
5764 fprintf_filtered (file, _("\
5765 Resuming the execution of threads of all processes is %s.\n"), value);
5766 }
5767
5768 void
5769 _initialize_infrun (void)
5770 {
5771 int i;
5772 int numsigs;
5773 struct cmd_list_element *c;
5774
5775 add_info ("signals", signals_info, _("\
5776 What debugger does when program gets various signals.\n\
5777 Specify a signal as argument to print info on that signal only."));
5778 add_info_alias ("handle", "signals", 0);
5779
5780 add_com ("handle", class_run, handle_command, _("\
5781 Specify how to handle a signal.\n\
5782 Args are signals and actions to apply to those signals.\n\
5783 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
5784 from 1-15 are allowed for compatibility with old versions of GDB.\n\
5785 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
5786 The special arg \"all\" is recognized to mean all signals except those\n\
5787 used by the debugger, typically SIGTRAP and SIGINT.\n\
5788 Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
5789 \"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
5790 Stop means reenter debugger if this signal happens (implies print).\n\
5791 Print means print a message if this signal happens.\n\
5792 Pass means let program see this signal; otherwise program doesn't know.\n\
5793 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
5794 Pass and Stop may be combined."));
5795 if (xdb_commands)
5796 {
5797 add_com ("lz", class_info, signals_info, _("\
5798 What debugger does when program gets various signals.\n\
5799 Specify a signal as argument to print info on that signal only."));
5800 add_com ("z", class_run, xdb_handle_command, _("\
5801 Specify how to handle a signal.\n\
5802 Args are signals and actions to apply to those signals.\n\
5803 Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
5804 from 1-15 are allowed for compatibility with old versions of GDB.\n\
5805 Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
5806 The special arg \"all\" is recognized to mean all signals except those\n\
5807 used by the debugger, typically SIGTRAP and SIGINT.\n\
5808 Recognized actions include \"s\" (toggles between stop and nostop), \n\
5809 \"r\" (toggles between print and noprint), \"i\" (toggles between pass and \
5810 nopass), \"Q\" (noprint)\n\
5811 Stop means reenter debugger if this signal happens (implies print).\n\
5812 Print means print a message if this signal happens.\n\
5813 Pass means let program see this signal; otherwise program doesn't know.\n\
5814 Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
5815 Pass and Stop may be combined."));
5816 }
5817
5818 if (!dbx_commands)
5819 stop_command = add_cmd ("stop", class_obscure,
5820 not_just_help_class_command, _("\
5821 There is no `stop' command, but you can set a hook on `stop'.\n\
5822 This allows you to set a list of commands to be run each time execution\n\
5823 of the program stops."), &cmdlist);
5824
5825 add_setshow_zinteger_cmd ("infrun", class_maintenance, &debug_infrun, _("\
5826 Set inferior debugging."), _("\
5827 Show inferior debugging."), _("\
5828 When non-zero, inferior specific debugging is enabled."),
5829 NULL,
5830 show_debug_infrun,
5831 &setdebuglist, &showdebuglist);
5832
5833 add_setshow_boolean_cmd ("displaced", class_maintenance, &debug_displaced, _("\
5834 Set displaced stepping debugging."), _("\
5835 Show displaced stepping debugging."), _("\
5836 When non-zero, displaced stepping specific debugging is enabled."),
5837 NULL,
5838 show_debug_displaced,
5839 &setdebuglist, &showdebuglist);
5840
5841 add_setshow_boolean_cmd ("non-stop", no_class,
5842 &non_stop_1, _("\
5843 Set whether gdb controls the inferior in non-stop mode."), _("\
5844 Show whether gdb controls the inferior in non-stop mode."), _("\
5845 When debugging a multi-threaded program and this setting is\n\
5846 off (the default, also called all-stop mode), when one thread stops\n\
5847 (for a breakpoint, watchpoint, exception, or similar events), GDB stops\n\
5848 all other threads in the program while you interact with the thread of\n\
5849 interest. When you continue or step a thread, you can allow the other\n\
5850 threads to run, or have them remain stopped, but while you inspect any\n\
5851 thread's state, all threads stop.\n\
5852 \n\
5853 In non-stop mode, when one thread stops, other threads can continue\n\
5854 to run freely. You'll be able to step each thread independently,\n\
5855 leave it stopped or free to run as needed."),
5856 set_non_stop,
5857 show_non_stop,
5858 &setlist,
5859 &showlist);
5860
5861 numsigs = (int) TARGET_SIGNAL_LAST;
5862 signal_stop = (unsigned char *) xmalloc (sizeof (signal_stop[0]) * numsigs);
5863 signal_print = (unsigned char *)
5864 xmalloc (sizeof (signal_print[0]) * numsigs);
5865 signal_program = (unsigned char *)
5866 xmalloc (sizeof (signal_program[0]) * numsigs);
5867 for (i = 0; i < numsigs; i++)
5868 {
5869 signal_stop[i] = 1;
5870 signal_print[i] = 1;
5871 signal_program[i] = 1;
5872 }
5873
5874 /* Signals caused by debugger's own actions
5875 should not be given to the program afterwards. */
5876 signal_program[TARGET_SIGNAL_TRAP] = 0;
5877 signal_program[TARGET_SIGNAL_INT] = 0;
5878
5879 /* Signals that are not errors should not normally enter the debugger. */
5880 signal_stop[TARGET_SIGNAL_ALRM] = 0;
5881 signal_print[TARGET_SIGNAL_ALRM] = 0;
5882 signal_stop[TARGET_SIGNAL_VTALRM] = 0;
5883 signal_print[TARGET_SIGNAL_VTALRM] = 0;
5884 signal_stop[TARGET_SIGNAL_PROF] = 0;
5885 signal_print[TARGET_SIGNAL_PROF] = 0;
5886 signal_stop[TARGET_SIGNAL_CHLD] = 0;
5887 signal_print[TARGET_SIGNAL_CHLD] = 0;
5888 signal_stop[TARGET_SIGNAL_IO] = 0;
5889 signal_print[TARGET_SIGNAL_IO] = 0;
5890 signal_stop[TARGET_SIGNAL_POLL] = 0;
5891 signal_print[TARGET_SIGNAL_POLL] = 0;
5892 signal_stop[TARGET_SIGNAL_URG] = 0;
5893 signal_print[TARGET_SIGNAL_URG] = 0;
5894 signal_stop[TARGET_SIGNAL_WINCH] = 0;
5895 signal_print[TARGET_SIGNAL_WINCH] = 0;
5896
5897 /* These signals are used internally by user-level thread
5898 implementations. (See signal(5) on Solaris.) Like the above
5899 signals, a healthy program receives and handles them as part of
5900 its normal operation. */
5901 signal_stop[TARGET_SIGNAL_LWP] = 0;
5902 signal_print[TARGET_SIGNAL_LWP] = 0;
5903 signal_stop[TARGET_SIGNAL_WAITING] = 0;
5904 signal_print[TARGET_SIGNAL_WAITING] = 0;
5905 signal_stop[TARGET_SIGNAL_CANCEL] = 0;
5906 signal_print[TARGET_SIGNAL_CANCEL] = 0;
5907
5908 add_setshow_zinteger_cmd ("stop-on-solib-events", class_support,
5909 &stop_on_solib_events, _("\
5910 Set stopping for shared library events."), _("\
5911 Show stopping for shared library events."), _("\
5912 If nonzero, gdb will give control to the user when the dynamic linker\n\
5913 notifies gdb of shared library events. The most common event of interest\n\
5914 to the user would be loading/unloading of a new library."),
5915 NULL,
5916 show_stop_on_solib_events,
5917 &setlist, &showlist);
5918
5919 add_setshow_enum_cmd ("follow-fork-mode", class_run,
5920 follow_fork_mode_kind_names,
5921 &follow_fork_mode_string, _("\
5922 Set debugger response to a program call of fork or vfork."), _("\
5923 Show debugger response to a program call of fork or vfork."), _("\
5924 A fork or vfork creates a new process. follow-fork-mode can be:\n\
5925 parent - the original process is debugged after a fork\n\
5926 child - the new process is debugged after a fork\n\
5927 The unfollowed process will continue to run.\n\
5928 By default, the debugger will follow the parent process."),
5929 NULL,
5930 show_follow_fork_mode_string,
5931 &setlist, &showlist);
5932
5933 add_setshow_enum_cmd ("scheduler-locking", class_run,
5934 scheduler_enums, &scheduler_mode, _("\
5935 Set mode for locking scheduler during execution."), _("\
5936 Show mode for locking scheduler during execution."), _("\
5937 off == no locking (threads may preempt at any time)\n\
5938 on == full locking (no thread except the current thread may run)\n\
5939 step == scheduler locked during every single-step operation.\n\
5940 In this mode, no other thread may run during a step command.\n\
5941 Other threads may run while stepping over a function call ('next')."),
5942 set_schedlock_func, /* traps on target vector */
5943 show_scheduler_mode,
5944 &setlist, &showlist);
5945
5946 add_setshow_boolean_cmd ("schedule-multiple", class_run, &sched_multi, _("\
5947 Set mode for resuming threads of all processes."), _("\
5948 Show mode for resuming threads of all processes."), _("\
5949 When on, execution commands (such as 'continue' or 'next') resume all\n\
5950 threads of all processes. When off (which is the default), execution\n\
5951 commands only resume the threads of the current process. The set of\n\
5952 threads that are resumed is further refined by the scheduler-locking\n\
5953 mode (see help set scheduler-locking)."),
5954 NULL,
5955 show_schedule_multiple,
5956 &setlist, &showlist);
5957
5958 add_setshow_boolean_cmd ("step-mode", class_run, &step_stop_if_no_debug, _("\
5959 Set mode of the step operation."), _("\
5960 Show mode of the step operation."), _("\
5961 When set, doing a step over a function without debug line information\n\
5962 will stop at the first instruction of that function. Otherwise, the\n\
5963 function is skipped and the step command stops at a different source line."),
5964 NULL,
5965 show_step_stop_if_no_debug,
5966 &setlist, &showlist);
5967
5968 add_setshow_enum_cmd ("displaced-stepping", class_run,
5969 can_use_displaced_stepping_enum,
5970 &can_use_displaced_stepping, _("\
5971 Set debugger's willingness to use displaced stepping."), _("\
5972 Show debugger's willingness to use displaced stepping."), _("\
5973 If on, gdb will use displaced stepping to step over breakpoints if it is\n\
5974 supported by the target architecture. If off, gdb will not use displaced\n\
5975 stepping to step over breakpoints, even if such is supported by the target\n\
5976 architecture. If auto (which is the default), gdb will use displaced stepping\n\
5977 if the target architecture supports it and non-stop mode is active, but will not\n\
5978 use it in all-stop mode (see help set non-stop)."),
5979 NULL,
5980 show_can_use_displaced_stepping,
5981 &setlist, &showlist);
5982
5983 add_setshow_enum_cmd ("exec-direction", class_run, exec_direction_names,
5984 &exec_direction, _("Set direction of execution.\n\
5985 Options are 'forward' or 'reverse'."),
5986 _("Show direction of execution (forward/reverse)."),
5987 _("Tells gdb whether to execute forward or backward."),
5988 set_exec_direction_func, show_exec_direction_func,
5989 &setlist, &showlist);
5990
5991 /* ptid initializations */
5992 null_ptid = ptid_build (0, 0, 0);
5993 minus_one_ptid = ptid_build (-1, 0, 0);
5994 inferior_ptid = null_ptid;
5995 target_last_wait_ptid = minus_one_ptid;
5996 displaced_step_ptid = null_ptid;
5997
5998 observer_attach_thread_ptid_changed (infrun_thread_ptid_changed);
5999 observer_attach_thread_stop_requested (infrun_thread_stop_requested);
6000 observer_attach_thread_exit (infrun_thread_thread_exit);
6001
6002 /* Explicitly create without lookup, since that tries to create a
6003 value with a void typed value, and when we get here, gdbarch
6004 isn't initialized yet. At this point, we're quite sure there
6005 isn't another convenience variable of the same name. */
6006 create_internalvar_type_lazy ("_siginfo", siginfo_make_value);
6007 }