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