* breakpoint.h (bp_location_p): New typedef.
[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"
c906108c
SS
51
52/* Prototypes for local functions */
53
96baa820 54static void signals_info (char *, int);
c906108c 55
96baa820 56static void handle_command (char *, int);
c906108c 57
96baa820 58static void sig_print_info (enum target_signal);
c906108c 59
96baa820 60static void sig_print_header (void);
c906108c 61
74b7792f 62static void resume_cleanups (void *);
c906108c 63
96baa820 64static int hook_stop_stub (void *);
c906108c 65
96baa820
JM
66static int restore_selected_frame (void *);
67
68static void build_infrun (void);
69
4ef3f3be 70static int follow_fork (void);
96baa820
JM
71
72static void set_schedlock_func (char *args, int from_tty,
488f131b 73 struct cmd_list_element *c);
96baa820 74
96baa820
JM
75struct execution_control_state;
76
77static int currently_stepping (struct execution_control_state *ecs);
78
79static void xdb_handle_command (char *args, int from_tty);
80
6a6b96b9 81static int prepare_to_proceed (int);
ea67f13b 82
96baa820 83void _initialize_infrun (void);
43ff13b4 84
5fbbeb29
CF
85/* When set, stop the 'step' command if we enter a function which has
86 no line number information. The normal behavior is that we step
87 over such function. */
88int step_stop_if_no_debug = 0;
920d2a44
AC
89static void
90show_step_stop_if_no_debug (struct ui_file *file, int from_tty,
91 struct cmd_list_element *c, const char *value)
92{
93 fprintf_filtered (file, _("Mode of the step operation is %s.\n"), value);
94}
5fbbeb29 95
43ff13b4 96/* In asynchronous mode, but simulating synchronous execution. */
96baa820 97
43ff13b4
JM
98int sync_execution = 0;
99
c906108c
SS
100/* wait_for_inferior and normal_stop use this to notify the user
101 when the inferior stopped in a different thread than it had been
96baa820
JM
102 running in. */
103
39f77062 104static ptid_t previous_inferior_ptid;
7a292a7a 105
527159b7 106static int debug_infrun = 0;
920d2a44
AC
107static void
108show_debug_infrun (struct ui_file *file, int from_tty,
109 struct cmd_list_element *c, const char *value)
110{
111 fprintf_filtered (file, _("Inferior debugging is %s.\n"), value);
112}
527159b7 113
d4f3574e
SS
114/* If the program uses ELF-style shared libraries, then calls to
115 functions in shared libraries go through stubs, which live in a
116 table called the PLT (Procedure Linkage Table). The first time the
117 function is called, the stub sends control to the dynamic linker,
118 which looks up the function's real address, patches the stub so
119 that future calls will go directly to the function, and then passes
120 control to the function.
121
122 If we are stepping at the source level, we don't want to see any of
123 this --- we just want to skip over the stub and the dynamic linker.
124 The simple approach is to single-step until control leaves the
125 dynamic linker.
126
ca557f44
AC
127 However, on some systems (e.g., Red Hat's 5.2 distribution) the
128 dynamic linker calls functions in the shared C library, so you
129 can't tell from the PC alone whether the dynamic linker is still
130 running. In this case, we use a step-resume breakpoint to get us
131 past the dynamic linker, as if we were using "next" to step over a
132 function call.
d4f3574e
SS
133
134 IN_SOLIB_DYNSYM_RESOLVE_CODE says whether we're in the dynamic
135 linker code or not. Normally, this means we single-step. However,
136 if SKIP_SOLIB_RESOLVER then returns non-zero, then its value is an
137 address where we can place a step-resume breakpoint to get past the
138 linker's symbol resolution function.
139
140 IN_SOLIB_DYNSYM_RESOLVE_CODE can generally be implemented in a
141 pretty portable way, by comparing the PC against the address ranges
142 of the dynamic linker's sections.
143
144 SKIP_SOLIB_RESOLVER is generally going to be system-specific, since
145 it depends on internal details of the dynamic linker. It's usually
146 not too hard to figure out where to put a breakpoint, but it
147 certainly isn't portable. SKIP_SOLIB_RESOLVER should do plenty of
148 sanity checking. If it can't figure things out, returning zero and
149 getting the (possibly confusing) stepping behavior is better than
150 signalling an error, which will obscure the change in the
151 inferior's state. */
c906108c 152
c906108c
SS
153/* This function returns TRUE if pc is the address of an instruction
154 that lies within the dynamic linker (such as the event hook, or the
155 dld itself).
156
157 This function must be used only when a dynamic linker event has
158 been caught, and the inferior is being stepped out of the hook, or
159 undefined results are guaranteed. */
160
161#ifndef SOLIB_IN_DYNAMIC_LINKER
162#define SOLIB_IN_DYNAMIC_LINKER(pid,pc) 0
163#endif
164
c2c6d25f 165
7a292a7a
SS
166/* Convert the #defines into values. This is temporary until wfi control
167 flow is completely sorted out. */
168
692590c1
MS
169#ifndef CANNOT_STEP_HW_WATCHPOINTS
170#define CANNOT_STEP_HW_WATCHPOINTS 0
171#else
172#undef CANNOT_STEP_HW_WATCHPOINTS
173#define CANNOT_STEP_HW_WATCHPOINTS 1
174#endif
175
c906108c
SS
176/* Tables of how to react to signals; the user sets them. */
177
178static unsigned char *signal_stop;
179static unsigned char *signal_print;
180static unsigned char *signal_program;
181
182#define SET_SIGS(nsigs,sigs,flags) \
183 do { \
184 int signum = (nsigs); \
185 while (signum-- > 0) \
186 if ((sigs)[signum]) \
187 (flags)[signum] = 1; \
188 } while (0)
189
190#define UNSET_SIGS(nsigs,sigs,flags) \
191 do { \
192 int signum = (nsigs); \
193 while (signum-- > 0) \
194 if ((sigs)[signum]) \
195 (flags)[signum] = 0; \
196 } while (0)
197
39f77062
KB
198/* Value to pass to target_resume() to cause all threads to resume */
199
200#define RESUME_ALL (pid_to_ptid (-1))
c906108c
SS
201
202/* Command list pointer for the "stop" placeholder. */
203
204static struct cmd_list_element *stop_command;
205
c906108c
SS
206/* Function inferior was in as of last step command. */
207
208static struct symbol *step_start_function;
209
ca67fcb8 210/* Nonzero if we are presently stepping over a breakpoint.
c906108c 211
ca67fcb8
VP
212 If we hit a breakpoint or watchpoint, and then continue,
213 we need to single step the current thread with breakpoints
214 disabled, to avoid hitting the same breakpoint or
215 watchpoint again. And we should step just a single
216 thread and keep other threads stopped, so that
217 other threads don't miss breakpoints while they are removed.
218
219 So, this variable simultaneously means that we need to single
220 step the current thread, keep other threads stopped, and that
221 breakpoints should be removed while we step.
222
223 This variable is set either:
224 - in proceed, when we resume inferior on user's explicit request
225 - in keep_going, if handle_inferior_event decides we need to
226 step over breakpoint.
227
228 The variable is cleared in clear_proceed_status, called every
229 time before we call proceed. The proceed calls wait_for_inferior,
230 which calls handle_inferior_event in a loop, and until
231 wait_for_inferior exits, this variable is changed only by keep_going. */
232
233static int stepping_over_breakpoint;
c906108c 234
c906108c
SS
235/* Nonzero if we want to give control to the user when we're notified
236 of shared library events by the dynamic linker. */
237static int stop_on_solib_events;
920d2a44
AC
238static void
239show_stop_on_solib_events (struct ui_file *file, int from_tty,
240 struct cmd_list_element *c, const char *value)
241{
242 fprintf_filtered (file, _("Stopping for shared library events is %s.\n"),
243 value);
244}
c906108c 245
c906108c
SS
246/* Nonzero means expecting a trace trap
247 and should stop the inferior and return silently when it happens. */
248
249int stop_after_trap;
250
251/* Nonzero means expecting a trap and caller will handle it themselves.
252 It is used after attach, due to attaching to a process;
253 when running in the shell before the child program has been exec'd;
254 and when running some kinds of remote stuff (FIXME?). */
255
c0236d92 256enum stop_kind stop_soon;
c906108c
SS
257
258/* Nonzero if proceed is being used for a "finish" command or a similar
259 situation when stop_registers should be saved. */
260
261int proceed_to_finish;
262
263/* Save register contents here when about to pop a stack dummy frame,
264 if-and-only-if proceed_to_finish is set.
265 Thus this contains the return value from the called function (assuming
266 values are returned in a register). */
267
72cec141 268struct regcache *stop_registers;
c906108c 269
c906108c
SS
270/* Nonzero after stop if current stack frame should be printed. */
271
272static int stop_print_frame;
273
274static struct breakpoint *step_resume_breakpoint = NULL;
c906108c 275
e02bc4cc 276/* This is a cached copy of the pid/waitstatus of the last event
9a4105ab
AC
277 returned by target_wait()/deprecated_target_wait_hook(). This
278 information is returned by get_last_target_status(). */
39f77062 279static ptid_t target_last_wait_ptid;
e02bc4cc
DS
280static struct target_waitstatus target_last_waitstatus;
281
c906108c
SS
282/* This is used to remember when a fork, vfork or exec event
283 was caught by a catchpoint, and thus the event is to be
284 followed at the next resume of the inferior, and not
285 immediately. */
286static struct
488f131b
JB
287{
288 enum target_waitkind kind;
289 struct
c906108c 290 {
488f131b 291 int parent_pid;
488f131b 292 int child_pid;
c906108c 293 }
488f131b
JB
294 fork_event;
295 char *execd_pathname;
296}
c906108c
SS
297pending_follow;
298
53904c9e
AC
299static const char follow_fork_mode_child[] = "child";
300static const char follow_fork_mode_parent[] = "parent";
301
488f131b 302static const char *follow_fork_mode_kind_names[] = {
53904c9e
AC
303 follow_fork_mode_child,
304 follow_fork_mode_parent,
305 NULL
ef346e04 306};
c906108c 307
53904c9e 308static const char *follow_fork_mode_string = follow_fork_mode_parent;
920d2a44
AC
309static void
310show_follow_fork_mode_string (struct ui_file *file, int from_tty,
311 struct cmd_list_element *c, const char *value)
312{
313 fprintf_filtered (file, _("\
314Debugger response to a program call of fork or vfork is \"%s\".\n"),
315 value);
316}
c906108c
SS
317\f
318
6604731b 319static int
4ef3f3be 320follow_fork (void)
c906108c 321{
ea1dd7bc 322 int follow_child = (follow_fork_mode_string == follow_fork_mode_child);
c906108c 323
6604731b 324 return target_follow_fork (follow_child);
c906108c
SS
325}
326
6604731b
DJ
327void
328follow_inferior_reset_breakpoints (void)
c906108c 329{
6604731b
DJ
330 /* Was there a step_resume breakpoint? (There was if the user
331 did a "next" at the fork() call.) If so, explicitly reset its
332 thread number.
333
334 step_resumes are a form of bp that are made to be per-thread.
335 Since we created the step_resume bp when the parent process
336 was being debugged, and now are switching to the child process,
337 from the breakpoint package's viewpoint, that's a switch of
338 "threads". We must update the bp's notion of which thread
339 it is for, or it'll be ignored when it triggers. */
340
341 if (step_resume_breakpoint)
342 breakpoint_re_set_thread (step_resume_breakpoint);
343
344 /* Reinsert all breakpoints in the child. The user may have set
345 breakpoints after catching the fork, in which case those
346 were never set in the child, but only in the parent. This makes
347 sure the inserted breakpoints match the breakpoint list. */
348
349 breakpoint_re_set ();
350 insert_breakpoints ();
c906108c 351}
c906108c 352
1adeb98a
FN
353/* EXECD_PATHNAME is assumed to be non-NULL. */
354
c906108c 355static void
96baa820 356follow_exec (int pid, char *execd_pathname)
c906108c 357{
c906108c 358 int saved_pid = pid;
7a292a7a
SS
359 struct target_ops *tgt;
360
c906108c
SS
361 /* This is an exec event that we actually wish to pay attention to.
362 Refresh our symbol table to the newly exec'd program, remove any
363 momentary bp's, etc.
364
365 If there are breakpoints, they aren't really inserted now,
366 since the exec() transformed our inferior into a fresh set
367 of instructions.
368
369 We want to preserve symbolic breakpoints on the list, since
370 we have hopes that they can be reset after the new a.out's
371 symbol table is read.
372
373 However, any "raw" breakpoints must be removed from the list
374 (e.g., the solib bp's), since their address is probably invalid
375 now.
376
377 And, we DON'T want to call delete_breakpoints() here, since
378 that may write the bp's "shadow contents" (the instruction
379 value that was overwritten witha TRAP instruction). Since
380 we now have a new a.out, those shadow contents aren't valid. */
381 update_breakpoints_after_exec ();
382
383 /* If there was one, it's gone now. We cannot truly step-to-next
384 statement through an exec(). */
385 step_resume_breakpoint = NULL;
386 step_range_start = 0;
387 step_range_end = 0;
388
c906108c 389 /* What is this a.out's name? */
a3f17187 390 printf_unfiltered (_("Executing new program: %s\n"), execd_pathname);
c906108c
SS
391
392 /* We've followed the inferior through an exec. Therefore, the
393 inferior has essentially been killed & reborn. */
7a292a7a 394
c906108c 395 gdb_flush (gdb_stdout);
e85a822c 396 generic_mourn_inferior ();
488f131b 397 /* Because mourn_inferior resets inferior_ptid. */
e85a822c
DJ
398 inferior_ptid = pid_to_ptid (saved_pid);
399
400 if (gdb_sysroot && *gdb_sysroot)
401 {
402 char *name = alloca (strlen (gdb_sysroot)
403 + strlen (execd_pathname)
404 + 1);
405 strcpy (name, gdb_sysroot);
406 strcat (name, execd_pathname);
407 execd_pathname = name;
408 }
c906108c
SS
409
410 /* That a.out is now the one to use. */
411 exec_file_attach (execd_pathname, 0);
412
413 /* And also is where symbols can be found. */
1adeb98a 414 symbol_file_add_main (execd_pathname, 0);
c906108c
SS
415
416 /* Reset the shared library package. This ensures that we get
417 a shlib event when the child reaches "_start", at which point
418 the dld will have had a chance to initialize the child. */
e85a822c 419 no_shared_libraries (NULL, 0);
7a292a7a 420#ifdef SOLIB_CREATE_INFERIOR_HOOK
39f77062 421 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
a77053c2
MK
422#else
423 solib_create_inferior_hook ();
7a292a7a 424#endif
c906108c
SS
425
426 /* Reinsert all breakpoints. (Those which were symbolic have
427 been reset to the proper address in the new a.out, thanks
428 to symbol_file_command...) */
429 insert_breakpoints ();
430
431 /* The next resume of this inferior should bring it to the shlib
432 startup breakpoints. (If the user had also set bp's on
433 "main" from the old (parent) process, then they'll auto-
434 matically get reset there in the new process.) */
c906108c
SS
435}
436
437/* Non-zero if we just simulating a single-step. This is needed
438 because we cannot remove the breakpoints in the inferior process
439 until after the `wait' in `wait_for_inferior'. */
440static int singlestep_breakpoints_inserted_p = 0;
9f976b41
DJ
441
442/* The thread we inserted single-step breakpoints for. */
443static ptid_t singlestep_ptid;
444
fd48f117
DJ
445/* PC when we started this single-step. */
446static CORE_ADDR singlestep_pc;
447
9f976b41
DJ
448/* If another thread hit the singlestep breakpoint, we save the original
449 thread here so that we can resume single-stepping it later. */
450static ptid_t saved_singlestep_ptid;
451static int stepping_past_singlestep_breakpoint;
6a6b96b9 452
ca67fcb8
VP
453/* If not equal to null_ptid, this means that after stepping over breakpoint
454 is finished, we need to switch to deferred_step_ptid, and step it.
455
456 The use case is when one thread has hit a breakpoint, and then the user
457 has switched to another thread and issued 'step'. We need to step over
458 breakpoint in the thread which hit the breakpoint, but then continue
459 stepping the thread user has selected. */
460static ptid_t deferred_step_ptid;
c906108c
SS
461\f
462
463/* Things to clean up if we QUIT out of resume (). */
c906108c 464static void
74b7792f 465resume_cleanups (void *ignore)
c906108c
SS
466{
467 normal_stop ();
468}
469
53904c9e
AC
470static const char schedlock_off[] = "off";
471static const char schedlock_on[] = "on";
472static const char schedlock_step[] = "step";
488f131b 473static const char *scheduler_enums[] = {
ef346e04
AC
474 schedlock_off,
475 schedlock_on,
476 schedlock_step,
477 NULL
478};
920d2a44
AC
479static const char *scheduler_mode = schedlock_off;
480static void
481show_scheduler_mode (struct ui_file *file, int from_tty,
482 struct cmd_list_element *c, const char *value)
483{
484 fprintf_filtered (file, _("\
485Mode for locking scheduler during execution is \"%s\".\n"),
486 value);
487}
c906108c
SS
488
489static void
96baa820 490set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
c906108c 491{
eefe576e
AC
492 if (!target_can_lock_scheduler)
493 {
494 scheduler_mode = schedlock_off;
495 error (_("Target '%s' cannot support this command."), target_shortname);
496 }
c906108c
SS
497}
498
499
500/* Resume the inferior, but allow a QUIT. This is useful if the user
501 wants to interrupt some lengthy single-stepping operation
502 (for child processes, the SIGINT goes to the inferior, and so
503 we get a SIGINT random_signal, but for remote debugging and perhaps
504 other targets, that's not true).
505
506 STEP nonzero if we should step (zero to continue instead).
507 SIG is the signal to give the inferior (zero for none). */
508void
96baa820 509resume (int step, enum target_signal sig)
c906108c
SS
510{
511 int should_resume = 1;
74b7792f 512 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
c906108c
SS
513 QUIT;
514
527159b7 515 if (debug_infrun)
8a9de0e4
AC
516 fprintf_unfiltered (gdb_stdlog, "infrun: resume (step=%d, signal=%d)\n",
517 step, sig);
527159b7 518
ef5cf84e
MS
519 /* FIXME: calling breakpoint_here_p (read_pc ()) three times! */
520
c906108c 521
692590c1
MS
522 /* Some targets (e.g. Solaris x86) have a kernel bug when stepping
523 over an instruction that causes a page fault without triggering
524 a hardware watchpoint. The kernel properly notices that it shouldn't
525 stop, because the hardware watchpoint is not triggered, but it forgets
526 the step request and continues the program normally.
527 Work around the problem by removing hardware watchpoints if a step is
528 requested, GDB will check for a hardware watchpoint trigger after the
529 step anyway. */
c36b740a 530 if (CANNOT_STEP_HW_WATCHPOINTS && step)
692590c1 531 remove_hw_watchpoints ();
488f131b 532
692590c1 533
c2c6d25f
JM
534 /* Normally, by the time we reach `resume', the breakpoints are either
535 removed or inserted, as appropriate. The exception is if we're sitting
536 at a permanent breakpoint; we need to step over it, but permanent
537 breakpoints can't be removed. So we have to test for it here. */
538 if (breakpoint_here_p (read_pc ()) == permanent_breakpoint_here)
6d350bb5
UW
539 {
540 if (gdbarch_skip_permanent_breakpoint_p (current_gdbarch))
594f7785
UW
541 gdbarch_skip_permanent_breakpoint (current_gdbarch,
542 get_current_regcache ());
6d350bb5
UW
543 else
544 error (_("\
545The program is stopped at a permanent breakpoint, but GDB does not know\n\
546how to step past a permanent breakpoint on this architecture. Try using\n\
547a command like `return' or `jump' to continue execution."));
548 }
c2c6d25f 549
1c0fdd0e 550 if (step && gdbarch_software_single_step_p (current_gdbarch))
c906108c
SS
551 {
552 /* Do it the hard way, w/temp breakpoints */
1c0fdd0e 553 if (gdbarch_software_single_step (current_gdbarch, get_current_frame ()))
e6590a1b
UW
554 {
555 /* ...and don't ask hardware to do it. */
556 step = 0;
557 /* and do not pull these breakpoints until after a `wait' in
558 `wait_for_inferior' */
559 singlestep_breakpoints_inserted_p = 1;
560 singlestep_ptid = inferior_ptid;
561 singlestep_pc = read_pc ();
562 }
c906108c
SS
563 }
564
c906108c 565 /* If there were any forks/vforks/execs that were caught and are
6604731b 566 now to be followed, then do so. */
c906108c
SS
567 switch (pending_follow.kind)
568 {
6604731b
DJ
569 case TARGET_WAITKIND_FORKED:
570 case TARGET_WAITKIND_VFORKED:
c906108c 571 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
6604731b
DJ
572 if (follow_fork ())
573 should_resume = 0;
c906108c
SS
574 break;
575
6604731b 576 case TARGET_WAITKIND_EXECD:
c906108c 577 /* follow_exec is called as soon as the exec event is seen. */
6604731b 578 pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
c906108c
SS
579 break;
580
581 default:
582 break;
583 }
c906108c
SS
584
585 /* Install inferior's terminal modes. */
586 target_terminal_inferior ();
587
588 if (should_resume)
589 {
39f77062 590 ptid_t resume_ptid;
dfcd3bfb 591
488f131b 592 resume_ptid = RESUME_ALL; /* Default */
ef5cf84e 593
cd76b0b7
VP
594 /* If STEP is set, it's a request to use hardware stepping
595 facilities. But in that case, we should never
596 use singlestep breakpoint. */
597 gdb_assert (!(singlestep_breakpoints_inserted_p && step));
598
599 if (singlestep_breakpoints_inserted_p
600 && stepping_past_singlestep_breakpoint)
c906108c 601 {
cd76b0b7
VP
602 /* The situation here is as follows. In thread T1 we wanted to
603 single-step. Lacking hardware single-stepping we've
604 set breakpoint at the PC of the next instruction -- call it
605 P. After resuming, we've hit that breakpoint in thread T2.
606 Now we've removed original breakpoint, inserted breakpoint
607 at P+1, and try to step to advance T2 past breakpoint.
608 We need to step only T2, as if T1 is allowed to freely run,
609 it can run past P, and if other threads are allowed to run,
610 they can hit breakpoint at P+1, and nested hits of single-step
611 breakpoints is not something we'd want -- that's complicated
612 to support, and has no value. */
613 resume_ptid = inferior_ptid;
614 }
c906108c 615
e842223a 616 if ((step || singlestep_breakpoints_inserted_p)
74960c60 617 && stepping_over_breakpoint)
cd76b0b7 618 {
74960c60
VP
619 /* We're allowing a thread to run past a breakpoint it has
620 hit, by single-stepping the thread with the breakpoint
621 removed. In which case, we need to single-step only this
622 thread, and keep others stopped, as they can miss this
623 breakpoint if allowed to run.
624
625 The current code actually removes all breakpoints when
626 doing this, not just the one being stepped over, so if we
627 let other threads run, we can actually miss any
628 breakpoint, not just the one at PC. */
ef5cf84e 629 resume_ptid = inferior_ptid;
c906108c 630 }
ef5cf84e 631
8fb3e588
AC
632 if ((scheduler_mode == schedlock_on)
633 || (scheduler_mode == schedlock_step
634 && (step || singlestep_breakpoints_inserted_p)))
c906108c 635 {
ef5cf84e 636 /* User-settable 'scheduler' mode requires solo thread resume. */
488f131b 637 resume_ptid = inferior_ptid;
c906108c 638 }
ef5cf84e 639
e6cf7916 640 if (gdbarch_cannot_step_breakpoint (current_gdbarch))
c4ed33b9
AC
641 {
642 /* Most targets can step a breakpoint instruction, thus
643 executing it normally. But if this one cannot, just
644 continue and we will hit it anyway. */
c36b740a 645 if (step && breakpoint_inserted_here_p (read_pc ()))
c4ed33b9
AC
646 step = 0;
647 }
39f77062 648 target_resume (resume_ptid, step, sig);
c906108c
SS
649 }
650
651 discard_cleanups (old_cleanups);
652}
653\f
654
655/* Clear out all variables saying what to do when inferior is continued.
656 First do this, then set the ones you want, then call `proceed'. */
657
658void
96baa820 659clear_proceed_status (void)
c906108c 660{
ca67fcb8 661 stepping_over_breakpoint = 0;
c906108c
SS
662 step_range_start = 0;
663 step_range_end = 0;
aa0cd9c1 664 step_frame_id = null_frame_id;
5fbbeb29 665 step_over_calls = STEP_OVER_UNDEBUGGABLE;
c906108c 666 stop_after_trap = 0;
c0236d92 667 stop_soon = NO_STOP_QUIETLY;
c906108c
SS
668 proceed_to_finish = 0;
669 breakpoint_proceeded = 1; /* We're about to proceed... */
670
d5c31457
UW
671 if (stop_registers)
672 {
673 regcache_xfree (stop_registers);
674 stop_registers = NULL;
675 }
676
c906108c
SS
677 /* Discard any remaining commands or status from previous stop. */
678 bpstat_clear (&stop_bpstat);
679}
680
ea67f13b
DJ
681/* This should be suitable for any targets that support threads. */
682
683static int
6a6b96b9 684prepare_to_proceed (int step)
ea67f13b
DJ
685{
686 ptid_t wait_ptid;
687 struct target_waitstatus wait_status;
688
689 /* Get the last target status returned by target_wait(). */
690 get_last_target_status (&wait_ptid, &wait_status);
691
6a6b96b9 692 /* Make sure we were stopped at a breakpoint. */
ea67f13b 693 if (wait_status.kind != TARGET_WAITKIND_STOPPED
6a6b96b9 694 || wait_status.value.sig != TARGET_SIGNAL_TRAP)
ea67f13b
DJ
695 {
696 return 0;
697 }
698
6a6b96b9 699 /* Switched over from WAIT_PID. */
ea67f13b 700 if (!ptid_equal (wait_ptid, minus_one_ptid)
6a6b96b9
UW
701 && !ptid_equal (inferior_ptid, wait_ptid)
702 && breakpoint_here_p (read_pc_pid (wait_ptid)))
ea67f13b 703 {
6a6b96b9
UW
704 /* If stepping, remember current thread to switch back to. */
705 if (step)
ea67f13b 706 {
ca67fcb8 707 deferred_step_ptid = inferior_ptid;
ea67f13b
DJ
708 }
709
6a6b96b9
UW
710 /* Switch back to WAIT_PID thread. */
711 switch_to_thread (wait_ptid);
712
8fb3e588 713 /* We return 1 to indicate that there is a breakpoint here,
6a6b96b9
UW
714 so we need to step over it before continuing to avoid
715 hitting it straight away. */
716 return 1;
ea67f13b
DJ
717 }
718
719 return 0;
ea67f13b 720}
e4846b08
JJ
721
722/* Record the pc of the program the last time it stopped. This is
723 just used internally by wait_for_inferior, but need to be preserved
724 over calls to it and cleared when the inferior is started. */
725static CORE_ADDR prev_pc;
726
c906108c
SS
727/* Basic routine for continuing the program in various fashions.
728
729 ADDR is the address to resume at, or -1 for resume where stopped.
730 SIGGNAL is the signal to give it, or 0 for none,
c5aa993b 731 or -1 for act according to how it stopped.
c906108c 732 STEP is nonzero if should trap after one instruction.
c5aa993b
JM
733 -1 means return after that and print nothing.
734 You should probably set various step_... variables
735 before calling here, if you are stepping.
c906108c
SS
736
737 You should call clear_proceed_status before calling proceed. */
738
739void
96baa820 740proceed (CORE_ADDR addr, enum target_signal siggnal, int step)
c906108c
SS
741{
742 int oneproc = 0;
743
744 if (step > 0)
745 step_start_function = find_pc_function (read_pc ());
746 if (step < 0)
747 stop_after_trap = 1;
748
2acceee2 749 if (addr == (CORE_ADDR) -1)
c906108c 750 {
c906108c 751 if (read_pc () == stop_pc && breakpoint_here_p (read_pc ()))
3352ef37
AC
752 /* There is a breakpoint at the address we will resume at,
753 step one instruction before inserting breakpoints so that
754 we do not stop right away (and report a second hit at this
755 breakpoint). */
c906108c 756 oneproc = 1;
3352ef37
AC
757 else if (gdbarch_single_step_through_delay_p (current_gdbarch)
758 && gdbarch_single_step_through_delay (current_gdbarch,
759 get_current_frame ()))
760 /* We stepped onto an instruction that needs to be stepped
761 again before re-inserting the breakpoint, do so. */
c906108c
SS
762 oneproc = 1;
763 }
764 else
765 {
766 write_pc (addr);
c906108c
SS
767 }
768
527159b7 769 if (debug_infrun)
8a9de0e4
AC
770 fprintf_unfiltered (gdb_stdlog,
771 "infrun: proceed (addr=0x%s, signal=%d, step=%d)\n",
772 paddr_nz (addr), siggnal, step);
527159b7 773
c906108c
SS
774 /* In a multi-threaded task we may select another thread
775 and then continue or step.
776
777 But if the old thread was stopped at a breakpoint, it
778 will immediately cause another breakpoint stop without
779 any execution (i.e. it will report a breakpoint hit
780 incorrectly). So we must step over it first.
781
ea67f13b 782 prepare_to_proceed checks the current thread against the thread
c906108c
SS
783 that reported the most recent event. If a step-over is required
784 it returns TRUE and sets the current thread to the old thread. */
6a6b96b9 785 if (prepare_to_proceed (step))
ea67f13b 786 oneproc = 1;
c906108c 787
c906108c 788 if (oneproc)
74960c60
VP
789 {
790 /* We will get a trace trap after one instruction.
791 Continue it automatically and insert breakpoints then. */
792 stepping_over_breakpoint = 1;
793 /* FIXME: if breakpoints are always inserted, we'll trap
794 if trying to single-step over breakpoint. Disable
795 all breakpoints. In future, we'd need to invent some
796 smart way of stepping over breakpoint instruction without
797 hitting breakpoint. */
798 remove_breakpoints ();
799 }
c906108c 800 else
c36b740a 801 insert_breakpoints ();
c906108c
SS
802
803 if (siggnal != TARGET_SIGNAL_DEFAULT)
804 stop_signal = siggnal;
805 /* If this signal should not be seen by program,
806 give it zero. Used for debugging signals. */
807 else if (!signal_program[stop_signal])
808 stop_signal = TARGET_SIGNAL_0;
809
810 annotate_starting ();
811
812 /* Make sure that output from GDB appears before output from the
813 inferior. */
814 gdb_flush (gdb_stdout);
815
e4846b08
JJ
816 /* Refresh prev_pc value just prior to resuming. This used to be
817 done in stop_stepping, however, setting prev_pc there did not handle
818 scenarios such as inferior function calls or returning from
819 a function via the return command. In those cases, the prev_pc
820 value was not set properly for subsequent commands. The prev_pc value
821 is used to initialize the starting line number in the ecs. With an
822 invalid value, the gdb next command ends up stopping at the position
823 represented by the next line table entry past our start position.
824 On platforms that generate one line table entry per line, this
825 is not a problem. However, on the ia64, the compiler generates
826 extraneous line table entries that do not increase the line number.
827 When we issue the gdb next command on the ia64 after an inferior call
828 or a return command, we often end up a few instructions forward, still
829 within the original line we started.
830
831 An attempt was made to have init_execution_control_state () refresh
832 the prev_pc value before calculating the line number. This approach
833 did not work because on platforms that use ptrace, the pc register
834 cannot be read unless the inferior is stopped. At that point, we
835 are not guaranteed the inferior is stopped and so the read_pc ()
836 call can fail. Setting the prev_pc value here ensures the value is
8fb3e588 837 updated correctly when the inferior is stopped. */
e4846b08
JJ
838 prev_pc = read_pc ();
839
c906108c
SS
840 /* Resume inferior. */
841 resume (oneproc || step || bpstat_should_step (), stop_signal);
842
843 /* Wait for it to stop (if not standalone)
844 and in any case decode why it stopped, and act accordingly. */
43ff13b4
JM
845 /* Do this only if we are not using the event loop, or if the target
846 does not support asynchronous execution. */
362646f5 847 if (!target_can_async_p ())
43ff13b4 848 {
ae123ec6 849 wait_for_inferior (0);
43ff13b4
JM
850 normal_stop ();
851 }
c906108c 852}
c906108c
SS
853\f
854
855/* Start remote-debugging of a machine over a serial link. */
96baa820 856
c906108c 857void
8621d6a9 858start_remote (int from_tty)
c906108c
SS
859{
860 init_thread_list ();
861 init_wait_for_inferior ();
b0f4b84b 862 stop_soon = STOP_QUIETLY_REMOTE;
ca67fcb8 863 stepping_over_breakpoint = 0;
43ff13b4 864
6426a772
JM
865 /* Always go on waiting for the target, regardless of the mode. */
866 /* FIXME: cagney/1999-09-23: At present it isn't possible to
7e73cedf 867 indicate to wait_for_inferior that a target should timeout if
6426a772
JM
868 nothing is returned (instead of just blocking). Because of this,
869 targets expecting an immediate response need to, internally, set
870 things up so that the target_wait() is forced to eventually
871 timeout. */
872 /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
873 differentiate to its caller what the state of the target is after
874 the initial open has been performed. Here we're assuming that
875 the target has stopped. It should be possible to eventually have
876 target_open() return to the caller an indication that the target
877 is currently running and GDB state should be set to the same as
878 for an async run. */
ae123ec6 879 wait_for_inferior (0);
8621d6a9
DJ
880
881 /* Now that the inferior has stopped, do any bookkeeping like
882 loading shared libraries. We want to do this before normal_stop,
883 so that the displayed frame is up to date. */
884 post_create_inferior (&current_target, from_tty);
885
6426a772 886 normal_stop ();
c906108c
SS
887}
888
889/* Initialize static vars when a new inferior begins. */
890
891void
96baa820 892init_wait_for_inferior (void)
c906108c
SS
893{
894 /* These are meaningless until the first time through wait_for_inferior. */
895 prev_pc = 0;
c906108c 896
c906108c
SS
897 breakpoint_init_inferior (inf_starting);
898
899 /* Don't confuse first call to proceed(). */
900 stop_signal = TARGET_SIGNAL_0;
901
902 /* The first resume is not following a fork/vfork/exec. */
903 pending_follow.kind = TARGET_WAITKIND_SPURIOUS; /* I.e., none. */
c906108c 904
c906108c 905 clear_proceed_status ();
9f976b41
DJ
906
907 stepping_past_singlestep_breakpoint = 0;
ca67fcb8 908 deferred_step_ptid = null_ptid;
ca005067
DJ
909
910 target_last_wait_ptid = minus_one_ptid;
c906108c 911}
c906108c 912\f
b83266a0
SS
913/* This enum encodes possible reasons for doing a target_wait, so that
914 wfi can call target_wait in one place. (Ultimately the call will be
915 moved out of the infinite loop entirely.) */
916
c5aa993b
JM
917enum infwait_states
918{
cd0fc7c3
SS
919 infwait_normal_state,
920 infwait_thread_hop_state,
d983da9c 921 infwait_step_watch_state,
cd0fc7c3 922 infwait_nonstep_watch_state
b83266a0
SS
923};
924
11cf8741
JM
925/* Why did the inferior stop? Used to print the appropriate messages
926 to the interface from within handle_inferior_event(). */
927enum inferior_stop_reason
928{
11cf8741
JM
929 /* Step, next, nexti, stepi finished. */
930 END_STEPPING_RANGE,
11cf8741
JM
931 /* Inferior terminated by signal. */
932 SIGNAL_EXITED,
933 /* Inferior exited. */
934 EXITED,
935 /* Inferior received signal, and user asked to be notified. */
936 SIGNAL_RECEIVED
937};
938
cd0fc7c3
SS
939/* This structure contains what used to be local variables in
940 wait_for_inferior. Probably many of them can return to being
941 locals in handle_inferior_event. */
942
c5aa993b 943struct execution_control_state
488f131b
JB
944{
945 struct target_waitstatus ws;
946 struct target_waitstatus *wp;
ca67fcb8
VP
947 /* Should we step over breakpoint next time keep_going
948 is called? */
949 int stepping_over_breakpoint;
488f131b
JB
950 int random_signal;
951 CORE_ADDR stop_func_start;
952 CORE_ADDR stop_func_end;
953 char *stop_func_name;
954 struct symtab_and_line sal;
488f131b
JB
955 int current_line;
956 struct symtab *current_symtab;
957 int handling_longjmp; /* FIXME */
958 ptid_t ptid;
959 ptid_t saved_inferior_ptid;
68f53502 960 int step_after_step_resume_breakpoint;
488f131b
JB
961 int stepping_through_solib_after_catch;
962 bpstat stepping_through_solib_catchpoints;
488f131b
JB
963 int new_thread_event;
964 struct target_waitstatus tmpstatus;
965 enum infwait_states infwait_state;
966 ptid_t waiton_ptid;
967 int wait_some_more;
968};
969
970void init_execution_control_state (struct execution_control_state *ecs);
971
972void handle_inferior_event (struct execution_control_state *ecs);
cd0fc7c3 973
c2c6d25f 974static void step_into_function (struct execution_control_state *ecs);
44cbf7b5 975static void insert_step_resume_breakpoint_at_frame (struct frame_info *step_frame);
14e60db5 976static void insert_step_resume_breakpoint_at_caller (struct frame_info *);
44cbf7b5
AC
977static void insert_step_resume_breakpoint_at_sal (struct symtab_and_line sr_sal,
978 struct frame_id sr_id);
104c1213
JM
979static void stop_stepping (struct execution_control_state *ecs);
980static void prepare_to_wait (struct execution_control_state *ecs);
d4f3574e 981static void keep_going (struct execution_control_state *ecs);
488f131b
JB
982static void print_stop_reason (enum inferior_stop_reason stop_reason,
983 int stop_info);
104c1213 984
cd0fc7c3 985/* Wait for control to return from inferior to debugger.
ae123ec6
JB
986
987 If TREAT_EXEC_AS_SIGTRAP is non-zero, then handle EXEC signals
988 as if they were SIGTRAP signals. This can be useful during
989 the startup sequence on some targets such as HP/UX, where
990 we receive an EXEC event instead of the expected SIGTRAP.
991
cd0fc7c3
SS
992 If inferior gets a signal, we may decide to start it up again
993 instead of returning. That is why there is a loop in this function.
994 When this function actually returns it means the inferior
995 should be left stopped and GDB should read more commands. */
996
997void
ae123ec6 998wait_for_inferior (int treat_exec_as_sigtrap)
cd0fc7c3
SS
999{
1000 struct cleanup *old_cleanups;
1001 struct execution_control_state ecss;
1002 struct execution_control_state *ecs;
c906108c 1003
527159b7 1004 if (debug_infrun)
ae123ec6
JB
1005 fprintf_unfiltered
1006 (gdb_stdlog, "infrun: wait_for_inferior (treat_exec_as_sigtrap=%d)\n",
1007 treat_exec_as_sigtrap);
527159b7 1008
8601f500 1009 old_cleanups = make_cleanup (delete_step_resume_breakpoint,
c906108c 1010 &step_resume_breakpoint);
cd0fc7c3
SS
1011
1012 /* wfi still stays in a loop, so it's OK just to take the address of
1013 a local to get the ecs pointer. */
1014 ecs = &ecss;
1015
1016 /* Fill in with reasonable starting values. */
1017 init_execution_control_state (ecs);
1018
c906108c 1019 /* We'll update this if & when we switch to a new thread. */
39f77062 1020 previous_inferior_ptid = inferior_ptid;
c906108c 1021
cd0fc7c3
SS
1022 overlay_cache_invalid = 1;
1023
1024 /* We have to invalidate the registers BEFORE calling target_wait
1025 because they can be loaded from the target while in target_wait.
1026 This makes remote debugging a bit more efficient for those
1027 targets that provide critical registers as part of their normal
1028 status mechanism. */
1029
1030 registers_changed ();
b83266a0 1031
c906108c
SS
1032 while (1)
1033 {
9a4105ab
AC
1034 if (deprecated_target_wait_hook)
1035 ecs->ptid = deprecated_target_wait_hook (ecs->waiton_ptid, ecs->wp);
cd0fc7c3 1036 else
39f77062 1037 ecs->ptid = target_wait (ecs->waiton_ptid, ecs->wp);
c906108c 1038
ae123ec6
JB
1039 if (treat_exec_as_sigtrap && ecs->ws.kind == TARGET_WAITKIND_EXECD)
1040 {
1041 xfree (ecs->ws.value.execd_pathname);
1042 ecs->ws.kind = TARGET_WAITKIND_STOPPED;
1043 ecs->ws.value.sig = TARGET_SIGNAL_TRAP;
1044 }
1045
cd0fc7c3
SS
1046 /* Now figure out what to do with the result of the result. */
1047 handle_inferior_event (ecs);
c906108c 1048
cd0fc7c3
SS
1049 if (!ecs->wait_some_more)
1050 break;
1051 }
1052 do_cleanups (old_cleanups);
1053}
c906108c 1054
43ff13b4
JM
1055/* Asynchronous version of wait_for_inferior. It is called by the
1056 event loop whenever a change of state is detected on the file
1057 descriptor corresponding to the target. It can be called more than
1058 once to complete a single execution command. In such cases we need
1059 to keep the state in a global variable ASYNC_ECSS. If it is the
1060 last time that this function is called for a single execution
1061 command, then report to the user that the inferior has stopped, and
1062 do the necessary cleanups. */
1063
1064struct execution_control_state async_ecss;
1065struct execution_control_state *async_ecs;
1066
1067void
fba45db2 1068fetch_inferior_event (void *client_data)
43ff13b4
JM
1069{
1070 static struct cleanup *old_cleanups;
1071
c5aa993b 1072 async_ecs = &async_ecss;
43ff13b4
JM
1073
1074 if (!async_ecs->wait_some_more)
1075 {
488f131b 1076 old_cleanups = make_exec_cleanup (delete_step_resume_breakpoint,
c5aa993b 1077 &step_resume_breakpoint);
43ff13b4
JM
1078
1079 /* Fill in with reasonable starting values. */
1080 init_execution_control_state (async_ecs);
1081
43ff13b4 1082 /* We'll update this if & when we switch to a new thread. */
39f77062 1083 previous_inferior_ptid = inferior_ptid;
43ff13b4
JM
1084
1085 overlay_cache_invalid = 1;
1086
1087 /* We have to invalidate the registers BEFORE calling target_wait
c5aa993b
JM
1088 because they can be loaded from the target while in target_wait.
1089 This makes remote debugging a bit more efficient for those
1090 targets that provide critical registers as part of their normal
1091 status mechanism. */
43ff13b4
JM
1092
1093 registers_changed ();
1094 }
1095
9a4105ab 1096 if (deprecated_target_wait_hook)
488f131b 1097 async_ecs->ptid =
9a4105ab 1098 deprecated_target_wait_hook (async_ecs->waiton_ptid, async_ecs->wp);
43ff13b4 1099 else
39f77062 1100 async_ecs->ptid = target_wait (async_ecs->waiton_ptid, async_ecs->wp);
43ff13b4
JM
1101
1102 /* Now figure out what to do with the result of the result. */
1103 handle_inferior_event (async_ecs);
1104
1105 if (!async_ecs->wait_some_more)
1106 {
adf40b2e 1107 /* Do only the cleanups that have been added by this
488f131b
JB
1108 function. Let the continuations for the commands do the rest,
1109 if there are any. */
43ff13b4
JM
1110 do_exec_cleanups (old_cleanups);
1111 normal_stop ();
c2d11a7d
JM
1112 if (step_multi && stop_step)
1113 inferior_event_handler (INF_EXEC_CONTINUE, NULL);
1114 else
1115 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
43ff13b4
JM
1116 }
1117}
1118
cd0fc7c3
SS
1119/* Prepare an execution control state for looping through a
1120 wait_for_inferior-type loop. */
1121
1122void
96baa820 1123init_execution_control_state (struct execution_control_state *ecs)
cd0fc7c3 1124{
ca67fcb8 1125 ecs->stepping_over_breakpoint = 0;
cd0fc7c3 1126 ecs->random_signal = 0;
68f53502 1127 ecs->step_after_step_resume_breakpoint = 0;
cd0fc7c3 1128 ecs->handling_longjmp = 0; /* FIXME */
cd0fc7c3
SS
1129 ecs->stepping_through_solib_after_catch = 0;
1130 ecs->stepping_through_solib_catchpoints = NULL;
cd0fc7c3
SS
1131 ecs->sal = find_pc_line (prev_pc, 0);
1132 ecs->current_line = ecs->sal.line;
1133 ecs->current_symtab = ecs->sal.symtab;
1134 ecs->infwait_state = infwait_normal_state;
39f77062 1135 ecs->waiton_ptid = pid_to_ptid (-1);
cd0fc7c3
SS
1136 ecs->wp = &(ecs->ws);
1137}
1138
e02bc4cc 1139/* Return the cached copy of the last pid/waitstatus returned by
9a4105ab
AC
1140 target_wait()/deprecated_target_wait_hook(). The data is actually
1141 cached by handle_inferior_event(), which gets called immediately
1142 after target_wait()/deprecated_target_wait_hook(). */
e02bc4cc
DS
1143
1144void
488f131b 1145get_last_target_status (ptid_t *ptidp, struct target_waitstatus *status)
e02bc4cc 1146{
39f77062 1147 *ptidp = target_last_wait_ptid;
e02bc4cc
DS
1148 *status = target_last_waitstatus;
1149}
1150
ac264b3b
MS
1151void
1152nullify_last_target_wait_ptid (void)
1153{
1154 target_last_wait_ptid = minus_one_ptid;
1155}
1156
dd80620e
MS
1157/* Switch thread contexts, maintaining "infrun state". */
1158
1159static void
1160context_switch (struct execution_control_state *ecs)
1161{
1162 /* Caution: it may happen that the new thread (or the old one!)
1163 is not in the thread list. In this case we must not attempt
1164 to "switch context", or we run the risk that our context may
1165 be lost. This may happen as a result of the target module
1166 mishandling thread creation. */
1167
fd48f117
DJ
1168 if (debug_infrun)
1169 {
1170 fprintf_unfiltered (gdb_stdlog, "infrun: Switching context from %s ",
1171 target_pid_to_str (inferior_ptid));
1172 fprintf_unfiltered (gdb_stdlog, "to %s\n",
1173 target_pid_to_str (ecs->ptid));
1174 }
1175
dd80620e 1176 if (in_thread_list (inferior_ptid) && in_thread_list (ecs->ptid))
488f131b 1177 { /* Perform infrun state context switch: */
dd80620e 1178 /* Save infrun state for the old thread. */
0ce3d317 1179 save_infrun_state (inferior_ptid, prev_pc,
ca67fcb8 1180 stepping_over_breakpoint, step_resume_breakpoint,
15960608 1181 step_range_start,
aa0cd9c1 1182 step_range_end, &step_frame_id,
ca67fcb8 1183 ecs->handling_longjmp, ecs->stepping_over_breakpoint,
dd80620e
MS
1184 ecs->stepping_through_solib_after_catch,
1185 ecs->stepping_through_solib_catchpoints,
f2c9ca08 1186 ecs->current_line, ecs->current_symtab);
dd80620e
MS
1187
1188 /* Load infrun state for the new thread. */
0ce3d317 1189 load_infrun_state (ecs->ptid, &prev_pc,
ca67fcb8 1190 &stepping_over_breakpoint, &step_resume_breakpoint,
15960608 1191 &step_range_start,
aa0cd9c1 1192 &step_range_end, &step_frame_id,
ca67fcb8 1193 &ecs->handling_longjmp, &ecs->stepping_over_breakpoint,
dd80620e
MS
1194 &ecs->stepping_through_solib_after_catch,
1195 &ecs->stepping_through_solib_catchpoints,
f2c9ca08 1196 &ecs->current_line, &ecs->current_symtab);
dd80620e 1197 }
6a6b96b9
UW
1198
1199 switch_to_thread (ecs->ptid);
dd80620e
MS
1200}
1201
4fa8626c
DJ
1202static void
1203adjust_pc_after_break (struct execution_control_state *ecs)
1204{
8aad930b 1205 CORE_ADDR breakpoint_pc;
4fa8626c
DJ
1206
1207 /* If this target does not decrement the PC after breakpoints, then
1208 we have nothing to do. */
b798847d 1209 if (gdbarch_decr_pc_after_break (current_gdbarch) == 0)
4fa8626c
DJ
1210 return;
1211
1212 /* If we've hit a breakpoint, we'll normally be stopped with SIGTRAP. If
1213 we aren't, just return.
9709f61c
DJ
1214
1215 We assume that waitkinds other than TARGET_WAITKIND_STOPPED are not
b798847d
UW
1216 affected by gdbarch_decr_pc_after_break. Other waitkinds which are
1217 implemented by software breakpoints should be handled through the normal
1218 breakpoint layer.
8fb3e588 1219
4fa8626c
DJ
1220 NOTE drow/2004-01-31: On some targets, breakpoints may generate
1221 different signals (SIGILL or SIGEMT for instance), but it is less
1222 clear where the PC is pointing afterwards. It may not match
b798847d
UW
1223 gdbarch_decr_pc_after_break. I don't know any specific target that
1224 generates these signals at breakpoints (the code has been in GDB since at
1225 least 1992) so I can not guess how to handle them here.
8fb3e588 1226
e6cf7916
UW
1227 In earlier versions of GDB, a target with
1228 gdbarch_have_nonsteppable_watchpoint would have the PC after hitting a
b798847d
UW
1229 watchpoint affected by gdbarch_decr_pc_after_break. I haven't found any
1230 target with both of these set in GDB history, and it seems unlikely to be
1231 correct, so gdbarch_have_nonsteppable_watchpoint is not checked here. */
4fa8626c
DJ
1232
1233 if (ecs->ws.kind != TARGET_WAITKIND_STOPPED)
1234 return;
1235
1236 if (ecs->ws.value.sig != TARGET_SIGNAL_TRAP)
1237 return;
1238
8aad930b
AC
1239 /* Find the location where (if we've hit a breakpoint) the
1240 breakpoint would be. */
b798847d
UW
1241 breakpoint_pc = read_pc_pid (ecs->ptid) - gdbarch_decr_pc_after_break
1242 (current_gdbarch);
8aad930b 1243
1c0fdd0e
UW
1244 /* Check whether there actually is a software breakpoint inserted
1245 at that location. */
1246 if (software_breakpoint_inserted_here_p (breakpoint_pc))
8aad930b 1247 {
1c0fdd0e
UW
1248 /* When using hardware single-step, a SIGTRAP is reported for both
1249 a completed single-step and a software breakpoint. Need to
1250 differentiate between the two, as the latter needs adjusting
1251 but the former does not.
1252
1253 The SIGTRAP can be due to a completed hardware single-step only if
1254 - we didn't insert software single-step breakpoints
1255 - the thread to be examined is still the current thread
1256 - this thread is currently being stepped
1257
1258 If any of these events did not occur, we must have stopped due
1259 to hitting a software breakpoint, and have to back up to the
1260 breakpoint address.
1261
1262 As a special case, we could have hardware single-stepped a
1263 software breakpoint. In this case (prev_pc == breakpoint_pc),
1264 we also need to back up to the breakpoint address. */
1265
1266 if (singlestep_breakpoints_inserted_p
1267 || !ptid_equal (ecs->ptid, inferior_ptid)
1268 || !currently_stepping (ecs)
1269 || prev_pc == breakpoint_pc)
8aad930b
AC
1270 write_pc_pid (breakpoint_pc, ecs->ptid);
1271 }
4fa8626c
DJ
1272}
1273
cd0fc7c3
SS
1274/* Given an execution control state that has been freshly filled in
1275 by an event from the inferior, figure out what it means and take
1276 appropriate action. */
c906108c 1277
cd0fc7c3 1278void
96baa820 1279handle_inferior_event (struct execution_control_state *ecs)
cd0fc7c3 1280{
c8edd8b4 1281 int sw_single_step_trap_p = 0;
d983da9c
DJ
1282 int stopped_by_watchpoint;
1283 int stepped_after_stopped_by_watchpoint = 0;
cd0fc7c3 1284
e02bc4cc 1285 /* Cache the last pid/waitstatus. */
39f77062 1286 target_last_wait_ptid = ecs->ptid;
e02bc4cc
DS
1287 target_last_waitstatus = *ecs->wp;
1288
ca005067
DJ
1289 /* Always clear state belonging to the previous time we stopped. */
1290 stop_stack_dummy = 0;
1291
4fa8626c
DJ
1292 adjust_pc_after_break (ecs);
1293
488f131b
JB
1294 switch (ecs->infwait_state)
1295 {
1296 case infwait_thread_hop_state:
527159b7 1297 if (debug_infrun)
8a9de0e4 1298 fprintf_unfiltered (gdb_stdlog, "infrun: infwait_thread_hop_state\n");
488f131b
JB
1299 /* Cancel the waiton_ptid. */
1300 ecs->waiton_ptid = pid_to_ptid (-1);
65e82032 1301 break;
b83266a0 1302
488f131b 1303 case infwait_normal_state:
527159b7 1304 if (debug_infrun)
8a9de0e4 1305 fprintf_unfiltered (gdb_stdlog, "infrun: infwait_normal_state\n");
d983da9c
DJ
1306 break;
1307
1308 case infwait_step_watch_state:
1309 if (debug_infrun)
1310 fprintf_unfiltered (gdb_stdlog,
1311 "infrun: infwait_step_watch_state\n");
1312
1313 stepped_after_stopped_by_watchpoint = 1;
488f131b 1314 break;
b83266a0 1315
488f131b 1316 case infwait_nonstep_watch_state:
527159b7 1317 if (debug_infrun)
8a9de0e4
AC
1318 fprintf_unfiltered (gdb_stdlog,
1319 "infrun: infwait_nonstep_watch_state\n");
488f131b 1320 insert_breakpoints ();
c906108c 1321
488f131b
JB
1322 /* FIXME-maybe: is this cleaner than setting a flag? Does it
1323 handle things like signals arriving and other things happening
1324 in combination correctly? */
1325 stepped_after_stopped_by_watchpoint = 1;
1326 break;
65e82032
AC
1327
1328 default:
e2e0b3e5 1329 internal_error (__FILE__, __LINE__, _("bad switch"));
488f131b
JB
1330 }
1331 ecs->infwait_state = infwait_normal_state;
c906108c 1332
35f196d9 1333 reinit_frame_cache ();
c906108c 1334
488f131b 1335 /* If it's a new process, add it to the thread database */
c906108c 1336
488f131b 1337 ecs->new_thread_event = (!ptid_equal (ecs->ptid, inferior_ptid)
b9b5d7ea 1338 && !ptid_equal (ecs->ptid, minus_one_ptid)
488f131b
JB
1339 && !in_thread_list (ecs->ptid));
1340
1341 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
1342 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED && ecs->new_thread_event)
93815fbf 1343 add_thread (ecs->ptid);
c906108c 1344
488f131b
JB
1345 switch (ecs->ws.kind)
1346 {
1347 case TARGET_WAITKIND_LOADED:
527159b7 1348 if (debug_infrun)
8a9de0e4 1349 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_LOADED\n");
b0f4b84b
DJ
1350 /* Ignore gracefully during startup of the inferior, as it might
1351 be the shell which has just loaded some objects, otherwise
1352 add the symbols for the newly loaded objects. Also ignore at
1353 the beginning of an attach or remote session; we will query
1354 the full list of libraries once the connection is
1355 established. */
c0236d92 1356 if (stop_soon == NO_STOP_QUIETLY)
488f131b 1357 {
488f131b
JB
1358 /* Check for any newly added shared libraries if we're
1359 supposed to be adding them automatically. Switch
1360 terminal for any messages produced by
1361 breakpoint_re_set. */
1362 target_terminal_ours_for_output ();
aff6338a 1363 /* NOTE: cagney/2003-11-25: Make certain that the target
8fb3e588
AC
1364 stack's section table is kept up-to-date. Architectures,
1365 (e.g., PPC64), use the section table to perform
1366 operations such as address => section name and hence
1367 require the table to contain all sections (including
1368 those found in shared libraries). */
aff6338a 1369 /* NOTE: cagney/2003-11-25: Pass current_target and not
8fb3e588
AC
1370 exec_ops to SOLIB_ADD. This is because current GDB is
1371 only tooled to propagate section_table changes out from
1372 the "current_target" (see target_resize_to_sections), and
1373 not up from the exec stratum. This, of course, isn't
1374 right. "infrun.c" should only interact with the
1375 exec/process stratum, instead relying on the target stack
1376 to propagate relevant changes (stop, section table
1377 changed, ...) up to other layers. */
b0f4b84b 1378#ifdef SOLIB_ADD
aff6338a 1379 SOLIB_ADD (NULL, 0, &current_target, auto_solib_add);
b0f4b84b
DJ
1380#else
1381 solib_add (NULL, 0, &current_target, auto_solib_add);
1382#endif
488f131b
JB
1383 target_terminal_inferior ();
1384
b0f4b84b
DJ
1385 /* If requested, stop when the dynamic linker notifies
1386 gdb of events. This allows the user to get control
1387 and place breakpoints in initializer routines for
1388 dynamically loaded objects (among other things). */
1389 if (stop_on_solib_events)
1390 {
1391 stop_stepping (ecs);
1392 return;
1393 }
1394
1395 /* NOTE drow/2007-05-11: This might be a good place to check
1396 for "catch load". */
488f131b 1397 }
b0f4b84b
DJ
1398
1399 /* If we are skipping through a shell, or through shared library
1400 loading that we aren't interested in, resume the program. If
1401 we're running the program normally, also resume. But stop if
1402 we're attaching or setting up a remote connection. */
1403 if (stop_soon == STOP_QUIETLY || stop_soon == NO_STOP_QUIETLY)
1404 {
74960c60
VP
1405 /* Loading of shared libraries might have changed breakpoint
1406 addresses. Make sure new breakpoints are inserted. */
1407 if (!breakpoints_always_inserted_mode ())
1408 insert_breakpoints ();
b0f4b84b
DJ
1409 resume (0, TARGET_SIGNAL_0);
1410 prepare_to_wait (ecs);
1411 return;
1412 }
1413
1414 break;
c5aa993b 1415
488f131b 1416 case TARGET_WAITKIND_SPURIOUS:
527159b7 1417 if (debug_infrun)
8a9de0e4 1418 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SPURIOUS\n");
488f131b
JB
1419 resume (0, TARGET_SIGNAL_0);
1420 prepare_to_wait (ecs);
1421 return;
c5aa993b 1422
488f131b 1423 case TARGET_WAITKIND_EXITED:
527159b7 1424 if (debug_infrun)
8a9de0e4 1425 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXITED\n");
488f131b
JB
1426 target_terminal_ours (); /* Must do this before mourn anyway */
1427 print_stop_reason (EXITED, ecs->ws.value.integer);
1428
1429 /* Record the exit code in the convenience variable $_exitcode, so
1430 that the user can inspect this again later. */
1431 set_internalvar (lookup_internalvar ("_exitcode"),
1432 value_from_longest (builtin_type_int,
1433 (LONGEST) ecs->ws.value.integer));
1434 gdb_flush (gdb_stdout);
1435 target_mourn_inferior ();
1c0fdd0e 1436 singlestep_breakpoints_inserted_p = 0;
488f131b
JB
1437 stop_print_frame = 0;
1438 stop_stepping (ecs);
1439 return;
c5aa993b 1440
488f131b 1441 case TARGET_WAITKIND_SIGNALLED:
527159b7 1442 if (debug_infrun)
8a9de0e4 1443 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SIGNALLED\n");
488f131b
JB
1444 stop_print_frame = 0;
1445 stop_signal = ecs->ws.value.sig;
1446 target_terminal_ours (); /* Must do this before mourn anyway */
c5aa993b 1447
488f131b
JB
1448 /* Note: By definition of TARGET_WAITKIND_SIGNALLED, we shouldn't
1449 reach here unless the inferior is dead. However, for years
1450 target_kill() was called here, which hints that fatal signals aren't
1451 really fatal on some systems. If that's true, then some changes
1452 may be needed. */
1453 target_mourn_inferior ();
c906108c 1454
488f131b 1455 print_stop_reason (SIGNAL_EXITED, stop_signal);
1c0fdd0e 1456 singlestep_breakpoints_inserted_p = 0;
488f131b
JB
1457 stop_stepping (ecs);
1458 return;
c906108c 1459
488f131b
JB
1460 /* The following are the only cases in which we keep going;
1461 the above cases end in a continue or goto. */
1462 case TARGET_WAITKIND_FORKED:
deb3b17b 1463 case TARGET_WAITKIND_VFORKED:
527159b7 1464 if (debug_infrun)
8a9de0e4 1465 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_FORKED\n");
488f131b
JB
1466 stop_signal = TARGET_SIGNAL_TRAP;
1467 pending_follow.kind = ecs->ws.kind;
1468
8e7d2c16
DJ
1469 pending_follow.fork_event.parent_pid = PIDGET (ecs->ptid);
1470 pending_follow.fork_event.child_pid = ecs->ws.value.related_pid;
c906108c 1471
5a2901d9
DJ
1472 if (!ptid_equal (ecs->ptid, inferior_ptid))
1473 {
1474 context_switch (ecs);
35f196d9 1475 reinit_frame_cache ();
5a2901d9
DJ
1476 }
1477
488f131b 1478 stop_pc = read_pc ();
675bf4cb 1479
d983da9c 1480 stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid);
675bf4cb 1481
488f131b 1482 ecs->random_signal = !bpstat_explains_signal (stop_bpstat);
04e68871
DJ
1483
1484 /* If no catchpoint triggered for this, then keep going. */
1485 if (ecs->random_signal)
1486 {
1487 stop_signal = TARGET_SIGNAL_0;
1488 keep_going (ecs);
1489 return;
1490 }
488f131b
JB
1491 goto process_event_stop_test;
1492
1493 case TARGET_WAITKIND_EXECD:
527159b7 1494 if (debug_infrun)
fc5261f2 1495 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXECD\n");
488f131b
JB
1496 stop_signal = TARGET_SIGNAL_TRAP;
1497
488f131b
JB
1498 pending_follow.execd_pathname =
1499 savestring (ecs->ws.value.execd_pathname,
1500 strlen (ecs->ws.value.execd_pathname));
1501
488f131b
JB
1502 /* This causes the eventpoints and symbol table to be reset. Must
1503 do this now, before trying to determine whether to stop. */
1504 follow_exec (PIDGET (inferior_ptid), pending_follow.execd_pathname);
1505 xfree (pending_follow.execd_pathname);
c906108c 1506
488f131b
JB
1507 stop_pc = read_pc_pid (ecs->ptid);
1508 ecs->saved_inferior_ptid = inferior_ptid;
1509 inferior_ptid = ecs->ptid;
675bf4cb 1510
d983da9c 1511 stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid);
675bf4cb 1512
488f131b
JB
1513 ecs->random_signal = !bpstat_explains_signal (stop_bpstat);
1514 inferior_ptid = ecs->saved_inferior_ptid;
04e68871 1515
5a2901d9
DJ
1516 if (!ptid_equal (ecs->ptid, inferior_ptid))
1517 {
1518 context_switch (ecs);
35f196d9 1519 reinit_frame_cache ();
5a2901d9
DJ
1520 }
1521
04e68871
DJ
1522 /* If no catchpoint triggered for this, then keep going. */
1523 if (ecs->random_signal)
1524 {
1525 stop_signal = TARGET_SIGNAL_0;
1526 keep_going (ecs);
1527 return;
1528 }
488f131b
JB
1529 goto process_event_stop_test;
1530
b4dc5ffa
MK
1531 /* Be careful not to try to gather much state about a thread
1532 that's in a syscall. It's frequently a losing proposition. */
488f131b 1533 case TARGET_WAITKIND_SYSCALL_ENTRY:
527159b7 1534 if (debug_infrun)
8a9de0e4 1535 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SYSCALL_ENTRY\n");
488f131b
JB
1536 resume (0, TARGET_SIGNAL_0);
1537 prepare_to_wait (ecs);
1538 return;
c906108c 1539
488f131b
JB
1540 /* Before examining the threads further, step this thread to
1541 get it entirely out of the syscall. (We get notice of the
1542 event when the thread is just on the verge of exiting a
1543 syscall. Stepping one instruction seems to get it back
b4dc5ffa 1544 into user code.) */
488f131b 1545 case TARGET_WAITKIND_SYSCALL_RETURN:
527159b7 1546 if (debug_infrun)
8a9de0e4 1547 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SYSCALL_RETURN\n");
488f131b 1548 target_resume (ecs->ptid, 1, TARGET_SIGNAL_0);
488f131b
JB
1549 prepare_to_wait (ecs);
1550 return;
c906108c 1551
488f131b 1552 case TARGET_WAITKIND_STOPPED:
527159b7 1553 if (debug_infrun)
8a9de0e4 1554 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_STOPPED\n");
488f131b
JB
1555 stop_signal = ecs->ws.value.sig;
1556 break;
c906108c 1557
488f131b
JB
1558 /* We had an event in the inferior, but we are not interested
1559 in handling it at this level. The lower layers have already
8e7d2c16 1560 done what needs to be done, if anything.
8fb3e588
AC
1561
1562 One of the possible circumstances for this is when the
1563 inferior produces output for the console. The inferior has
1564 not stopped, and we are ignoring the event. Another possible
1565 circumstance is any event which the lower level knows will be
1566 reported multiple times without an intervening resume. */
488f131b 1567 case TARGET_WAITKIND_IGNORE:
527159b7 1568 if (debug_infrun)
8a9de0e4 1569 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_IGNORE\n");
8e7d2c16 1570 prepare_to_wait (ecs);
488f131b
JB
1571 return;
1572 }
c906108c 1573
488f131b
JB
1574 /* We may want to consider not doing a resume here in order to give
1575 the user a chance to play with the new thread. It might be good
1576 to make that a user-settable option. */
c906108c 1577
488f131b
JB
1578 /* At this point, all threads are stopped (happens automatically in
1579 either the OS or the native code). Therefore we need to continue
1580 all threads in order to make progress. */
1581 if (ecs->new_thread_event)
1582 {
1583 target_resume (RESUME_ALL, 0, TARGET_SIGNAL_0);
1584 prepare_to_wait (ecs);
1585 return;
1586 }
c906108c 1587
488f131b
JB
1588 stop_pc = read_pc_pid (ecs->ptid);
1589
527159b7 1590 if (debug_infrun)
8a9de0e4 1591 fprintf_unfiltered (gdb_stdlog, "infrun: stop_pc = 0x%s\n", paddr_nz (stop_pc));
527159b7 1592
9f976b41
DJ
1593 if (stepping_past_singlestep_breakpoint)
1594 {
1c0fdd0e 1595 gdb_assert (singlestep_breakpoints_inserted_p);
9f976b41
DJ
1596 gdb_assert (ptid_equal (singlestep_ptid, ecs->ptid));
1597 gdb_assert (!ptid_equal (singlestep_ptid, saved_singlestep_ptid));
1598
1599 stepping_past_singlestep_breakpoint = 0;
1600
1601 /* We've either finished single-stepping past the single-step
8fb3e588
AC
1602 breakpoint, or stopped for some other reason. It would be nice if
1603 we could tell, but we can't reliably. */
9f976b41 1604 if (stop_signal == TARGET_SIGNAL_TRAP)
8fb3e588 1605 {
527159b7 1606 if (debug_infrun)
8a9de0e4 1607 fprintf_unfiltered (gdb_stdlog, "infrun: stepping_past_singlestep_breakpoint\n");
9f976b41 1608 /* Pull the single step breakpoints out of the target. */
e0cd558a 1609 remove_single_step_breakpoints ();
9f976b41
DJ
1610 singlestep_breakpoints_inserted_p = 0;
1611
1612 ecs->random_signal = 0;
1613
1614 ecs->ptid = saved_singlestep_ptid;
1615 context_switch (ecs);
9a4105ab
AC
1616 if (deprecated_context_hook)
1617 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
9f976b41
DJ
1618
1619 resume (1, TARGET_SIGNAL_0);
1620 prepare_to_wait (ecs);
1621 return;
1622 }
1623 }
1624
1625 stepping_past_singlestep_breakpoint = 0;
1626
ca67fcb8 1627 if (!ptid_equal (deferred_step_ptid, null_ptid))
6a6b96b9 1628 {
6a6b96b9
UW
1629 /* If we stopped for some other reason than single-stepping, ignore
1630 the fact that we were supposed to switch back. */
1631 if (stop_signal == TARGET_SIGNAL_TRAP)
1632 {
1633 if (debug_infrun)
1634 fprintf_unfiltered (gdb_stdlog,
ca67fcb8 1635 "infrun: handling deferred step\n");
6a6b96b9
UW
1636
1637 /* Pull the single step breakpoints out of the target. */
1638 if (singlestep_breakpoints_inserted_p)
1639 {
1640 remove_single_step_breakpoints ();
1641 singlestep_breakpoints_inserted_p = 0;
1642 }
1643
1644 /* Note: We do not call context_switch at this point, as the
1645 context is already set up for stepping the original thread. */
ca67fcb8
VP
1646 switch_to_thread (deferred_step_ptid);
1647 deferred_step_ptid = null_ptid;
6a6b96b9
UW
1648 /* Suppress spurious "Switching to ..." message. */
1649 previous_inferior_ptid = inferior_ptid;
1650
1651 resume (1, TARGET_SIGNAL_0);
1652 prepare_to_wait (ecs);
1653 return;
1654 }
ca67fcb8
VP
1655
1656 deferred_step_ptid = null_ptid;
6a6b96b9
UW
1657 }
1658
488f131b
JB
1659 /* See if a thread hit a thread-specific breakpoint that was meant for
1660 another thread. If so, then step that thread past the breakpoint,
1661 and continue it. */
1662
1663 if (stop_signal == TARGET_SIGNAL_TRAP)
1664 {
9f976b41
DJ
1665 int thread_hop_needed = 0;
1666
f8d40ec8
JB
1667 /* Check if a regular breakpoint has been hit before checking
1668 for a potential single step breakpoint. Otherwise, GDB will
1669 not see this breakpoint hit when stepping onto breakpoints. */
c36b740a 1670 if (regular_breakpoint_inserted_here_p (stop_pc))
488f131b 1671 {
c5aa993b 1672 ecs->random_signal = 0;
4fa8626c 1673 if (!breakpoint_thread_match (stop_pc, ecs->ptid))
9f976b41
DJ
1674 thread_hop_needed = 1;
1675 }
1c0fdd0e 1676 else if (singlestep_breakpoints_inserted_p)
9f976b41 1677 {
fd48f117
DJ
1678 /* We have not context switched yet, so this should be true
1679 no matter which thread hit the singlestep breakpoint. */
1680 gdb_assert (ptid_equal (inferior_ptid, singlestep_ptid));
1681 if (debug_infrun)
1682 fprintf_unfiltered (gdb_stdlog, "infrun: software single step "
1683 "trap for %s\n",
1684 target_pid_to_str (ecs->ptid));
1685
9f976b41
DJ
1686 ecs->random_signal = 0;
1687 /* The call to in_thread_list is necessary because PTIDs sometimes
1688 change when we go from single-threaded to multi-threaded. If
1689 the singlestep_ptid is still in the list, assume that it is
1690 really different from ecs->ptid. */
1691 if (!ptid_equal (singlestep_ptid, ecs->ptid)
1692 && in_thread_list (singlestep_ptid))
1693 {
fd48f117
DJ
1694 /* If the PC of the thread we were trying to single-step
1695 has changed, discard this event (which we were going
1696 to ignore anyway), and pretend we saw that thread
1697 trap. This prevents us continuously moving the
1698 single-step breakpoint forward, one instruction at a
1699 time. If the PC has changed, then the thread we were
1700 trying to single-step has trapped or been signalled,
1701 but the event has not been reported to GDB yet.
1702
1703 There might be some cases where this loses signal
1704 information, if a signal has arrived at exactly the
1705 same time that the PC changed, but this is the best
1706 we can do with the information available. Perhaps we
1707 should arrange to report all events for all threads
1708 when they stop, or to re-poll the remote looking for
1709 this particular thread (i.e. temporarily enable
1710 schedlock). */
1711 if (read_pc_pid (singlestep_ptid) != singlestep_pc)
1712 {
1713 if (debug_infrun)
1714 fprintf_unfiltered (gdb_stdlog, "infrun: unexpected thread,"
1715 " but expected thread advanced also\n");
1716
1717 /* The current context still belongs to
1718 singlestep_ptid. Don't swap here, since that's
1719 the context we want to use. Just fudge our
1720 state and continue. */
1721 ecs->ptid = singlestep_ptid;
1722 stop_pc = read_pc_pid (ecs->ptid);
1723 }
1724 else
1725 {
1726 if (debug_infrun)
1727 fprintf_unfiltered (gdb_stdlog,
1728 "infrun: unexpected thread\n");
1729
1730 thread_hop_needed = 1;
1731 stepping_past_singlestep_breakpoint = 1;
1732 saved_singlestep_ptid = singlestep_ptid;
1733 }
9f976b41
DJ
1734 }
1735 }
1736
1737 if (thread_hop_needed)
8fb3e588
AC
1738 {
1739 int remove_status;
1740
527159b7 1741 if (debug_infrun)
8a9de0e4 1742 fprintf_unfiltered (gdb_stdlog, "infrun: thread_hop_needed\n");
527159b7 1743
8fb3e588
AC
1744 /* Saw a breakpoint, but it was hit by the wrong thread.
1745 Just continue. */
1746
1c0fdd0e 1747 if (singlestep_breakpoints_inserted_p)
488f131b 1748 {
8fb3e588 1749 /* Pull the single step breakpoints out of the target. */
e0cd558a 1750 remove_single_step_breakpoints ();
8fb3e588
AC
1751 singlestep_breakpoints_inserted_p = 0;
1752 }
1753
1754 remove_status = remove_breakpoints ();
1755 /* Did we fail to remove breakpoints? If so, try
1756 to set the PC past the bp. (There's at least
1757 one situation in which we can fail to remove
1758 the bp's: On HP-UX's that use ttrace, we can't
1759 change the address space of a vforking child
1760 process until the child exits (well, okay, not
1761 then either :-) or execs. */
1762 if (remove_status != 0)
9d9cd7ac 1763 error (_("Cannot step over breakpoint hit in wrong thread"));
8fb3e588
AC
1764 else
1765 { /* Single step */
8fb3e588
AC
1766 if (!ptid_equal (inferior_ptid, ecs->ptid))
1767 context_switch (ecs);
1768 ecs->waiton_ptid = ecs->ptid;
1769 ecs->wp = &(ecs->ws);
ca67fcb8 1770 ecs->stepping_over_breakpoint = 1;
8fb3e588
AC
1771
1772 ecs->infwait_state = infwait_thread_hop_state;
1773 keep_going (ecs);
1774 registers_changed ();
1775 return;
1776 }
488f131b 1777 }
1c0fdd0e 1778 else if (singlestep_breakpoints_inserted_p)
8fb3e588
AC
1779 {
1780 sw_single_step_trap_p = 1;
1781 ecs->random_signal = 0;
1782 }
488f131b
JB
1783 }
1784 else
1785 ecs->random_signal = 1;
c906108c 1786
488f131b 1787 /* See if something interesting happened to the non-current thread. If
b40c7d58
DJ
1788 so, then switch to that thread. */
1789 if (!ptid_equal (ecs->ptid, inferior_ptid))
488f131b 1790 {
527159b7 1791 if (debug_infrun)
8a9de0e4 1792 fprintf_unfiltered (gdb_stdlog, "infrun: context switch\n");
527159b7 1793
488f131b 1794 context_switch (ecs);
c5aa993b 1795
9a4105ab
AC
1796 if (deprecated_context_hook)
1797 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
488f131b 1798 }
c906108c 1799
1c0fdd0e 1800 if (singlestep_breakpoints_inserted_p)
488f131b
JB
1801 {
1802 /* Pull the single step breakpoints out of the target. */
e0cd558a 1803 remove_single_step_breakpoints ();
488f131b
JB
1804 singlestep_breakpoints_inserted_p = 0;
1805 }
c906108c 1806
d983da9c
DJ
1807 if (stepped_after_stopped_by_watchpoint)
1808 stopped_by_watchpoint = 0;
1809 else
1810 stopped_by_watchpoint = watchpoints_triggered (&ecs->ws);
1811
1812 /* If necessary, step over this watchpoint. We'll be back to display
1813 it in a moment. */
1814 if (stopped_by_watchpoint
1815 && (HAVE_STEPPABLE_WATCHPOINT
1816 || gdbarch_have_nonsteppable_watchpoint (current_gdbarch)))
488f131b 1817 {
527159b7 1818 if (debug_infrun)
8a9de0e4 1819 fprintf_unfiltered (gdb_stdlog, "infrun: STOPPED_BY_WATCHPOINT\n");
c906108c 1820
488f131b
JB
1821 /* At this point, we are stopped at an instruction which has
1822 attempted to write to a piece of memory under control of
1823 a watchpoint. The instruction hasn't actually executed
1824 yet. If we were to evaluate the watchpoint expression
1825 now, we would get the old value, and therefore no change
1826 would seem to have occurred.
1827
1828 In order to make watchpoints work `right', we really need
1829 to complete the memory write, and then evaluate the
d983da9c
DJ
1830 watchpoint expression. We do this by single-stepping the
1831 target.
1832
1833 It may not be necessary to disable the watchpoint to stop over
1834 it. For example, the PA can (with some kernel cooperation)
1835 single step over a watchpoint without disabling the watchpoint.
1836
1837 It is far more common to need to disable a watchpoint to step
1838 the inferior over it. If we have non-steppable watchpoints,
1839 we must disable the current watchpoint; it's simplest to
1840 disable all watchpoints and breakpoints. */
1841
1842 if (!HAVE_STEPPABLE_WATCHPOINT)
1843 remove_breakpoints ();
488f131b
JB
1844 registers_changed ();
1845 target_resume (ecs->ptid, 1, TARGET_SIGNAL_0); /* Single step */
488f131b 1846 ecs->waiton_ptid = ecs->ptid;
d983da9c
DJ
1847 if (HAVE_STEPPABLE_WATCHPOINT)
1848 ecs->infwait_state = infwait_step_watch_state;
1849 else
1850 ecs->infwait_state = infwait_nonstep_watch_state;
488f131b
JB
1851 prepare_to_wait (ecs);
1852 return;
1853 }
1854
488f131b
JB
1855 ecs->stop_func_start = 0;
1856 ecs->stop_func_end = 0;
1857 ecs->stop_func_name = 0;
1858 /* Don't care about return value; stop_func_start and stop_func_name
1859 will both be 0 if it doesn't work. */
1860 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
1861 &ecs->stop_func_start, &ecs->stop_func_end);
cbf3b44a
UW
1862 ecs->stop_func_start
1863 += gdbarch_deprecated_function_start_offset (current_gdbarch);
ca67fcb8 1864 ecs->stepping_over_breakpoint = 0;
488f131b
JB
1865 bpstat_clear (&stop_bpstat);
1866 stop_step = 0;
488f131b
JB
1867 stop_print_frame = 1;
1868 ecs->random_signal = 0;
1869 stopped_by_random_signal = 0;
488f131b 1870
3352ef37 1871 if (stop_signal == TARGET_SIGNAL_TRAP
ca67fcb8 1872 && stepping_over_breakpoint
3352ef37
AC
1873 && gdbarch_single_step_through_delay_p (current_gdbarch)
1874 && currently_stepping (ecs))
1875 {
b50d7442 1876 /* We're trying to step off a breakpoint. Turns out that we're
3352ef37
AC
1877 also on an instruction that needs to be stepped multiple
1878 times before it's been fully executing. E.g., architectures
1879 with a delay slot. It needs to be stepped twice, once for
1880 the instruction and once for the delay slot. */
1881 int step_through_delay
1882 = gdbarch_single_step_through_delay (current_gdbarch,
1883 get_current_frame ());
527159b7 1884 if (debug_infrun && step_through_delay)
8a9de0e4 1885 fprintf_unfiltered (gdb_stdlog, "infrun: step through delay\n");
3352ef37
AC
1886 if (step_range_end == 0 && step_through_delay)
1887 {
1888 /* The user issued a continue when stopped at a breakpoint.
1889 Set up for another trap and get out of here. */
ca67fcb8 1890 ecs->stepping_over_breakpoint = 1;
3352ef37
AC
1891 keep_going (ecs);
1892 return;
1893 }
1894 else if (step_through_delay)
1895 {
1896 /* The user issued a step when stopped at a breakpoint.
1897 Maybe we should stop, maybe we should not - the delay
1898 slot *might* correspond to a line of source. In any
ca67fcb8
VP
1899 case, don't decide that here, just set
1900 ecs->stepping_over_breakpoint, making sure we
1901 single-step again before breakpoints are re-inserted. */
1902 ecs->stepping_over_breakpoint = 1;
3352ef37
AC
1903 }
1904 }
1905
488f131b
JB
1906 /* Look at the cause of the stop, and decide what to do.
1907 The alternatives are:
1908 1) break; to really stop and return to the debugger,
1909 2) drop through to start up again
ca67fcb8 1910 (set ecs->stepping_over_breakpoint to 1 to single step once)
488f131b
JB
1911 3) set ecs->random_signal to 1, and the decision between 1 and 2
1912 will be made according to the signal handling tables. */
1913
1914 /* First, distinguish signals caused by the debugger from signals
03cebad2
MK
1915 that have to do with the program's own actions. Note that
1916 breakpoint insns may cause SIGTRAP or SIGILL or SIGEMT, depending
1917 on the operating system version. Here we detect when a SIGILL or
1918 SIGEMT is really a breakpoint and change it to SIGTRAP. We do
1919 something similar for SIGSEGV, since a SIGSEGV will be generated
1920 when we're trying to execute a breakpoint instruction on a
1921 non-executable stack. This happens for call dummy breakpoints
1922 for architectures like SPARC that place call dummies on the
1923 stack. */
488f131b
JB
1924
1925 if (stop_signal == TARGET_SIGNAL_TRAP
c36b740a 1926 || (breakpoint_inserted_here_p (stop_pc)
8fb3e588
AC
1927 && (stop_signal == TARGET_SIGNAL_ILL
1928 || stop_signal == TARGET_SIGNAL_SEGV
1929 || stop_signal == TARGET_SIGNAL_EMT))
b0f4b84b
DJ
1930 || stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_NO_SIGSTOP
1931 || stop_soon == STOP_QUIETLY_REMOTE)
488f131b
JB
1932 {
1933 if (stop_signal == TARGET_SIGNAL_TRAP && stop_after_trap)
1934 {
527159b7 1935 if (debug_infrun)
8a9de0e4 1936 fprintf_unfiltered (gdb_stdlog, "infrun: stopped\n");
488f131b
JB
1937 stop_print_frame = 0;
1938 stop_stepping (ecs);
1939 return;
1940 }
c54cfec8
EZ
1941
1942 /* This is originated from start_remote(), start_inferior() and
1943 shared libraries hook functions. */
b0f4b84b 1944 if (stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_REMOTE)
488f131b 1945 {
527159b7 1946 if (debug_infrun)
8a9de0e4 1947 fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
488f131b
JB
1948 stop_stepping (ecs);
1949 return;
1950 }
1951
c54cfec8
EZ
1952 /* This originates from attach_command(). We need to overwrite
1953 the stop_signal here, because some kernels don't ignore a
1954 SIGSTOP in a subsequent ptrace(PTRACE_SONT,SOGSTOP) call.
1955 See more comments in inferior.h. */
c0236d92 1956 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP)
c54cfec8
EZ
1957 {
1958 stop_stepping (ecs);
1959 if (stop_signal == TARGET_SIGNAL_STOP)
1960 stop_signal = TARGET_SIGNAL_0;
1961 return;
1962 }
1963
fba57f8f
VP
1964 /* See if there is a breakpoint at the current PC. */
1965 stop_bpstat = bpstat_stop_status (stop_pc, ecs->ptid);
1966
1967 /* Following in case break condition called a
1968 function. */
1969 stop_print_frame = 1;
488f131b 1970
73dd234f 1971 /* NOTE: cagney/2003-03-29: These two checks for a random signal
8fb3e588
AC
1972 at one stage in the past included checks for an inferior
1973 function call's call dummy's return breakpoint. The original
1974 comment, that went with the test, read:
73dd234f 1975
8fb3e588
AC
1976 ``End of a stack dummy. Some systems (e.g. Sony news) give
1977 another signal besides SIGTRAP, so check here as well as
1978 above.''
73dd234f
AC
1979
1980 If someone ever tries to get get call dummys on a
1981 non-executable stack to work (where the target would stop
03cebad2
MK
1982 with something like a SIGSEGV), then those tests might need
1983 to be re-instated. Given, however, that the tests were only
73dd234f 1984 enabled when momentary breakpoints were not being used, I
03cebad2
MK
1985 suspect that it won't be the case.
1986
8fb3e588
AC
1987 NOTE: kettenis/2004-02-05: Indeed such checks don't seem to
1988 be necessary for call dummies on a non-executable stack on
1989 SPARC. */
73dd234f 1990
488f131b
JB
1991 if (stop_signal == TARGET_SIGNAL_TRAP)
1992 ecs->random_signal
1993 = !(bpstat_explains_signal (stop_bpstat)
ca67fcb8 1994 || stepping_over_breakpoint
488f131b 1995 || (step_range_end && step_resume_breakpoint == NULL));
488f131b
JB
1996 else
1997 {
73dd234f 1998 ecs->random_signal = !bpstat_explains_signal (stop_bpstat);
488f131b
JB
1999 if (!ecs->random_signal)
2000 stop_signal = TARGET_SIGNAL_TRAP;
2001 }
2002 }
2003
2004 /* When we reach this point, we've pretty much decided
2005 that the reason for stopping must've been a random
2006 (unexpected) signal. */
2007
2008 else
2009 ecs->random_signal = 1;
488f131b 2010
04e68871 2011process_event_stop_test:
488f131b
JB
2012 /* For the program's own signals, act according to
2013 the signal handling tables. */
2014
2015 if (ecs->random_signal)
2016 {
2017 /* Signal not for debugging purposes. */
2018 int printed = 0;
2019
527159b7 2020 if (debug_infrun)
8a9de0e4 2021 fprintf_unfiltered (gdb_stdlog, "infrun: random signal %d\n", stop_signal);
527159b7 2022
488f131b
JB
2023 stopped_by_random_signal = 1;
2024
2025 if (signal_print[stop_signal])
2026 {
2027 printed = 1;
2028 target_terminal_ours_for_output ();
2029 print_stop_reason (SIGNAL_RECEIVED, stop_signal);
2030 }
2031 if (signal_stop[stop_signal])
2032 {
2033 stop_stepping (ecs);
2034 return;
2035 }
2036 /* If not going to stop, give terminal back
2037 if we took it away. */
2038 else if (printed)
2039 target_terminal_inferior ();
2040
2041 /* Clear the signal if it should not be passed. */
2042 if (signal_program[stop_signal] == 0)
2043 stop_signal = TARGET_SIGNAL_0;
2044
68f53502 2045 if (prev_pc == read_pc ()
74960c60 2046 && stepping_over_breakpoint
68f53502
AC
2047 && step_resume_breakpoint == NULL)
2048 {
2049 /* We were just starting a new sequence, attempting to
2050 single-step off of a breakpoint and expecting a SIGTRAP.
2051 Intead this signal arrives. This signal will take us out
2052 of the stepping range so GDB needs to remember to, when
2053 the signal handler returns, resume stepping off that
2054 breakpoint. */
2055 /* To simplify things, "continue" is forced to use the same
2056 code paths as single-step - set a breakpoint at the
2057 signal return address and then, once hit, step off that
2058 breakpoint. */
d3169d93 2059
44cbf7b5 2060 insert_step_resume_breakpoint_at_frame (get_current_frame ());
68f53502 2061 ecs->step_after_step_resume_breakpoint = 1;
9d799f85
AC
2062 keep_going (ecs);
2063 return;
68f53502 2064 }
9d799f85
AC
2065
2066 if (step_range_end != 0
2067 && stop_signal != TARGET_SIGNAL_0
2068 && stop_pc >= step_range_start && stop_pc < step_range_end
2069 && frame_id_eq (get_frame_id (get_current_frame ()),
2070 step_frame_id)
2071 && step_resume_breakpoint == NULL)
d303a6c7
AC
2072 {
2073 /* The inferior is about to take a signal that will take it
2074 out of the single step range. Set a breakpoint at the
2075 current PC (which is presumably where the signal handler
2076 will eventually return) and then allow the inferior to
2077 run free.
2078
2079 Note that this is only needed for a signal delivered
2080 while in the single-step range. Nested signals aren't a
2081 problem as they eventually all return. */
44cbf7b5 2082 insert_step_resume_breakpoint_at_frame (get_current_frame ());
9d799f85
AC
2083 keep_going (ecs);
2084 return;
d303a6c7 2085 }
9d799f85
AC
2086
2087 /* Note: step_resume_breakpoint may be non-NULL. This occures
2088 when either there's a nested signal, or when there's a
2089 pending signal enabled just as the signal handler returns
2090 (leaving the inferior at the step-resume-breakpoint without
2091 actually executing it). Either way continue until the
2092 breakpoint is really hit. */
488f131b
JB
2093 keep_going (ecs);
2094 return;
2095 }
2096
2097 /* Handle cases caused by hitting a breakpoint. */
2098 {
2099 CORE_ADDR jmp_buf_pc;
2100 struct bpstat_what what;
2101
2102 what = bpstat_what (stop_bpstat);
2103
2104 if (what.call_dummy)
2105 {
2106 stop_stack_dummy = 1;
c5aa993b 2107 }
c906108c 2108
488f131b 2109 switch (what.main_action)
c5aa993b 2110 {
488f131b
JB
2111 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
2112 /* If we hit the breakpoint at longjmp, disable it for the
2113 duration of this command. Then, install a temporary
2114 breakpoint at the target of the jmp_buf. */
527159b7 2115 if (debug_infrun)
8802d8ed 2116 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME\n");
488f131b 2117 disable_longjmp_breakpoint ();
91104499 2118 if (!gdbarch_get_longjmp_target_p (current_gdbarch)
60ade65d
UW
2119 || !gdbarch_get_longjmp_target (current_gdbarch,
2120 get_current_frame (), &jmp_buf_pc))
c5aa993b 2121 {
488f131b 2122 keep_going (ecs);
104c1213 2123 return;
c5aa993b 2124 }
488f131b
JB
2125
2126 /* Need to blow away step-resume breakpoint, as it
2127 interferes with us */
2128 if (step_resume_breakpoint != NULL)
104c1213 2129 {
488f131b 2130 delete_step_resume_breakpoint (&step_resume_breakpoint);
104c1213 2131 }
c906108c 2132
8fb3e588 2133 set_longjmp_resume_breakpoint (jmp_buf_pc, null_frame_id);
488f131b
JB
2134 ecs->handling_longjmp = 1; /* FIXME */
2135 keep_going (ecs);
2136 return;
c906108c 2137
488f131b
JB
2138 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
2139 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME_SINGLE:
527159b7 2140 if (debug_infrun)
8802d8ed 2141 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_CLEAR_LONGJMP_RESUME\n");
488f131b
JB
2142 disable_longjmp_breakpoint ();
2143 ecs->handling_longjmp = 0; /* FIXME */
2144 if (what.main_action == BPSTAT_WHAT_CLEAR_LONGJMP_RESUME)
2145 break;
2146 /* else fallthrough */
2147
2148 case BPSTAT_WHAT_SINGLE:
527159b7 2149 if (debug_infrun)
8802d8ed 2150 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_SINGLE\n");
ca67fcb8 2151 ecs->stepping_over_breakpoint = 1;
488f131b
JB
2152 /* Still need to check other stuff, at least the case
2153 where we are stepping and step out of the right range. */
2154 break;
c906108c 2155
488f131b 2156 case BPSTAT_WHAT_STOP_NOISY:
527159b7 2157 if (debug_infrun)
8802d8ed 2158 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_NOISY\n");
488f131b 2159 stop_print_frame = 1;
c906108c 2160
d303a6c7
AC
2161 /* We are about to nuke the step_resume_breakpointt via the
2162 cleanup chain, so no need to worry about it here. */
c5aa993b 2163
488f131b
JB
2164 stop_stepping (ecs);
2165 return;
c5aa993b 2166
488f131b 2167 case BPSTAT_WHAT_STOP_SILENT:
527159b7 2168 if (debug_infrun)
8802d8ed 2169 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_SILENT\n");
488f131b 2170 stop_print_frame = 0;
c5aa993b 2171
d303a6c7
AC
2172 /* We are about to nuke the step_resume_breakpoin via the
2173 cleanup chain, so no need to worry about it here. */
c5aa993b 2174
488f131b 2175 stop_stepping (ecs);
e441088d 2176 return;
c5aa993b 2177
488f131b
JB
2178 case BPSTAT_WHAT_STEP_RESUME:
2179 /* This proably demands a more elegant solution, but, yeah
2180 right...
c5aa993b 2181
488f131b
JB
2182 This function's use of the simple variable
2183 step_resume_breakpoint doesn't seem to accomodate
2184 simultaneously active step-resume bp's, although the
2185 breakpoint list certainly can.
c5aa993b 2186
488f131b
JB
2187 If we reach here and step_resume_breakpoint is already
2188 NULL, then apparently we have multiple active
2189 step-resume bp's. We'll just delete the breakpoint we
2190 stopped at, and carry on.
2191
2192 Correction: what the code currently does is delete a
2193 step-resume bp, but it makes no effort to ensure that
2194 the one deleted is the one currently stopped at. MVS */
c5aa993b 2195
527159b7 2196 if (debug_infrun)
8802d8ed 2197 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STEP_RESUME\n");
527159b7 2198
488f131b
JB
2199 if (step_resume_breakpoint == NULL)
2200 {
2201 step_resume_breakpoint =
2202 bpstat_find_step_resume_breakpoint (stop_bpstat);
2203 }
2204 delete_step_resume_breakpoint (&step_resume_breakpoint);
68f53502
AC
2205 if (ecs->step_after_step_resume_breakpoint)
2206 {
2207 /* Back when the step-resume breakpoint was inserted, we
2208 were trying to single-step off a breakpoint. Go back
2209 to doing that. */
2210 ecs->step_after_step_resume_breakpoint = 0;
ca67fcb8 2211 ecs->stepping_over_breakpoint = 1;
68f53502
AC
2212 keep_going (ecs);
2213 return;
2214 }
488f131b
JB
2215 break;
2216
488f131b
JB
2217 case BPSTAT_WHAT_CHECK_SHLIBS:
2218 case BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK:
c906108c 2219 {
527159b7 2220 if (debug_infrun)
8802d8ed 2221 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_CHECK_SHLIBS\n");
488f131b
JB
2222
2223 /* Check for any newly added shared libraries if we're
2224 supposed to be adding them automatically. Switch
2225 terminal for any messages produced by
2226 breakpoint_re_set. */
2227 target_terminal_ours_for_output ();
aff6338a 2228 /* NOTE: cagney/2003-11-25: Make certain that the target
8fb3e588
AC
2229 stack's section table is kept up-to-date. Architectures,
2230 (e.g., PPC64), use the section table to perform
2231 operations such as address => section name and hence
2232 require the table to contain all sections (including
2233 those found in shared libraries). */
aff6338a 2234 /* NOTE: cagney/2003-11-25: Pass current_target and not
8fb3e588
AC
2235 exec_ops to SOLIB_ADD. This is because current GDB is
2236 only tooled to propagate section_table changes out from
2237 the "current_target" (see target_resize_to_sections), and
2238 not up from the exec stratum. This, of course, isn't
2239 right. "infrun.c" should only interact with the
2240 exec/process stratum, instead relying on the target stack
2241 to propagate relevant changes (stop, section table
2242 changed, ...) up to other layers. */
a77053c2 2243#ifdef SOLIB_ADD
aff6338a 2244 SOLIB_ADD (NULL, 0, &current_target, auto_solib_add);
a77053c2
MK
2245#else
2246 solib_add (NULL, 0, &current_target, auto_solib_add);
2247#endif
488f131b
JB
2248 target_terminal_inferior ();
2249
488f131b
JB
2250 /* If requested, stop when the dynamic linker notifies
2251 gdb of events. This allows the user to get control
2252 and place breakpoints in initializer routines for
2253 dynamically loaded objects (among other things). */
877522db 2254 if (stop_on_solib_events || stop_stack_dummy)
d4f3574e 2255 {
488f131b 2256 stop_stepping (ecs);
d4f3574e
SS
2257 return;
2258 }
c5aa993b 2259
488f131b
JB
2260 /* If we stopped due to an explicit catchpoint, then the
2261 (see above) call to SOLIB_ADD pulled in any symbols
2262 from a newly-loaded library, if appropriate.
2263
2264 We do want the inferior to stop, but not where it is
2265 now, which is in the dynamic linker callback. Rather,
2266 we would like it stop in the user's program, just after
2267 the call that caused this catchpoint to trigger. That
2268 gives the user a more useful vantage from which to
2269 examine their program's state. */
8fb3e588
AC
2270 else if (what.main_action
2271 == BPSTAT_WHAT_CHECK_SHLIBS_RESUME_FROM_HOOK)
c906108c 2272 {
488f131b
JB
2273 /* ??rehrauer: If I could figure out how to get the
2274 right return PC from here, we could just set a temp
2275 breakpoint and resume. I'm not sure we can without
2276 cracking open the dld's shared libraries and sniffing
2277 their unwind tables and text/data ranges, and that's
2278 not a terribly portable notion.
2279
2280 Until that time, we must step the inferior out of the
2281 dld callback, and also out of the dld itself (and any
2282 code or stubs in libdld.sl, such as "shl_load" and
2283 friends) until we reach non-dld code. At that point,
2284 we can stop stepping. */
2285 bpstat_get_triggered_catchpoints (stop_bpstat,
2286 &ecs->
2287 stepping_through_solib_catchpoints);
2288 ecs->stepping_through_solib_after_catch = 1;
2289
2290 /* Be sure to lift all breakpoints, so the inferior does
2291 actually step past this point... */
ca67fcb8 2292 ecs->stepping_over_breakpoint = 1;
488f131b 2293 break;
c906108c 2294 }
c5aa993b 2295 else
c5aa993b 2296 {
488f131b 2297 /* We want to step over this breakpoint, then keep going. */
ca67fcb8 2298 ecs->stepping_over_breakpoint = 1;
488f131b 2299 break;
c5aa993b 2300 }
488f131b 2301 }
488f131b 2302 break;
c906108c 2303
488f131b
JB
2304 case BPSTAT_WHAT_LAST:
2305 /* Not a real code, but listed here to shut up gcc -Wall. */
c906108c 2306
488f131b
JB
2307 case BPSTAT_WHAT_KEEP_CHECKING:
2308 break;
2309 }
2310 }
c906108c 2311
488f131b
JB
2312 /* We come here if we hit a breakpoint but should not
2313 stop for it. Possibly we also were stepping
2314 and should stop for that. So fall through and
2315 test for stepping. But, if not stepping,
2316 do not stop. */
c906108c 2317
9d1ff73f
MS
2318 /* Are we stepping to get the inferior out of the dynamic linker's
2319 hook (and possibly the dld itself) after catching a shlib
2320 event? */
488f131b
JB
2321 if (ecs->stepping_through_solib_after_catch)
2322 {
2323#if defined(SOLIB_ADD)
2324 /* Have we reached our destination? If not, keep going. */
2325 if (SOLIB_IN_DYNAMIC_LINKER (PIDGET (ecs->ptid), stop_pc))
2326 {
527159b7 2327 if (debug_infrun)
8a9de0e4 2328 fprintf_unfiltered (gdb_stdlog, "infrun: stepping in dynamic linker\n");
ca67fcb8 2329 ecs->stepping_over_breakpoint = 1;
488f131b 2330 keep_going (ecs);
104c1213 2331 return;
488f131b
JB
2332 }
2333#endif
527159b7 2334 if (debug_infrun)
8a9de0e4 2335 fprintf_unfiltered (gdb_stdlog, "infrun: step past dynamic linker\n");
488f131b
JB
2336 /* Else, stop and report the catchpoint(s) whose triggering
2337 caused us to begin stepping. */
2338 ecs->stepping_through_solib_after_catch = 0;
2339 bpstat_clear (&stop_bpstat);
2340 stop_bpstat = bpstat_copy (ecs->stepping_through_solib_catchpoints);
2341 bpstat_clear (&ecs->stepping_through_solib_catchpoints);
2342 stop_print_frame = 1;
2343 stop_stepping (ecs);
2344 return;
2345 }
c906108c 2346
488f131b
JB
2347 if (step_resume_breakpoint)
2348 {
527159b7 2349 if (debug_infrun)
d3169d93
DJ
2350 fprintf_unfiltered (gdb_stdlog,
2351 "infrun: step-resume breakpoint is inserted\n");
527159b7 2352
488f131b
JB
2353 /* Having a step-resume breakpoint overrides anything
2354 else having to do with stepping commands until
2355 that breakpoint is reached. */
488f131b
JB
2356 keep_going (ecs);
2357 return;
2358 }
c5aa993b 2359
488f131b
JB
2360 if (step_range_end == 0)
2361 {
527159b7 2362 if (debug_infrun)
8a9de0e4 2363 fprintf_unfiltered (gdb_stdlog, "infrun: no stepping, continue\n");
488f131b 2364 /* Likewise if we aren't even stepping. */
488f131b
JB
2365 keep_going (ecs);
2366 return;
2367 }
c5aa993b 2368
488f131b 2369 /* If stepping through a line, keep going if still within it.
c906108c 2370
488f131b
JB
2371 Note that step_range_end is the address of the first instruction
2372 beyond the step range, and NOT the address of the last instruction
2373 within it! */
2374 if (stop_pc >= step_range_start && stop_pc < step_range_end)
2375 {
527159b7 2376 if (debug_infrun)
8a9de0e4 2377 fprintf_unfiltered (gdb_stdlog, "infrun: stepping inside range [0x%s-0x%s]\n",
527159b7
RC
2378 paddr_nz (step_range_start),
2379 paddr_nz (step_range_end));
488f131b
JB
2380 keep_going (ecs);
2381 return;
2382 }
c5aa993b 2383
488f131b 2384 /* We stepped out of the stepping range. */
c906108c 2385
488f131b
JB
2386 /* If we are stepping at the source level and entered the runtime
2387 loader dynamic symbol resolution code, we keep on single stepping
2388 until we exit the run time loader code and reach the callee's
2389 address. */
2390 if (step_over_calls == STEP_OVER_UNDEBUGGABLE
a77053c2
MK
2391#ifdef IN_SOLIB_DYNSYM_RESOLVE_CODE
2392 && IN_SOLIB_DYNSYM_RESOLVE_CODE (stop_pc)
2393#else
2394 && in_solib_dynsym_resolve_code (stop_pc)
2395#endif
2396 )
488f131b 2397 {
4c8c40e6
MK
2398 CORE_ADDR pc_after_resolver =
2399 gdbarch_skip_solib_resolver (current_gdbarch, stop_pc);
c906108c 2400
527159b7 2401 if (debug_infrun)
8a9de0e4 2402 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into dynsym resolve code\n");
527159b7 2403
488f131b
JB
2404 if (pc_after_resolver)
2405 {
2406 /* Set up a step-resume breakpoint at the address
2407 indicated by SKIP_SOLIB_RESOLVER. */
2408 struct symtab_and_line sr_sal;
fe39c653 2409 init_sal (&sr_sal);
488f131b
JB
2410 sr_sal.pc = pc_after_resolver;
2411
44cbf7b5 2412 insert_step_resume_breakpoint_at_sal (sr_sal, null_frame_id);
c5aa993b 2413 }
c906108c 2414
488f131b
JB
2415 keep_going (ecs);
2416 return;
2417 }
c906108c 2418
42edda50
AC
2419 if (step_range_end != 1
2420 && (step_over_calls == STEP_OVER_UNDEBUGGABLE
2421 || step_over_calls == STEP_OVER_ALL)
2422 && get_frame_type (get_current_frame ()) == SIGTRAMP_FRAME)
488f131b 2423 {
527159b7 2424 if (debug_infrun)
8a9de0e4 2425 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into signal trampoline\n");
42edda50 2426 /* The inferior, while doing a "step" or "next", has ended up in
8fb3e588
AC
2427 a signal trampoline (either by a signal being delivered or by
2428 the signal handler returning). Just single-step until the
2429 inferior leaves the trampoline (either by calling the handler
2430 or returning). */
488f131b
JB
2431 keep_going (ecs);
2432 return;
2433 }
c906108c 2434
c17eaafe
DJ
2435 /* Check for subroutine calls. The check for the current frame
2436 equalling the step ID is not necessary - the check of the
2437 previous frame's ID is sufficient - but it is a common case and
2438 cheaper than checking the previous frame's ID.
14e60db5
DJ
2439
2440 NOTE: frame_id_eq will never report two invalid frame IDs as
2441 being equal, so to get into this block, both the current and
2442 previous frame must have valid frame IDs. */
c17eaafe
DJ
2443 if (!frame_id_eq (get_frame_id (get_current_frame ()), step_frame_id)
2444 && frame_id_eq (frame_unwind_id (get_current_frame ()), step_frame_id))
488f131b 2445 {
95918acb 2446 CORE_ADDR real_stop_pc;
8fb3e588 2447
527159b7 2448 if (debug_infrun)
8a9de0e4 2449 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into subroutine\n");
527159b7 2450
95918acb
AC
2451 if ((step_over_calls == STEP_OVER_NONE)
2452 || ((step_range_end == 1)
2453 && in_prologue (prev_pc, ecs->stop_func_start)))
2454 {
2455 /* I presume that step_over_calls is only 0 when we're
2456 supposed to be stepping at the assembly language level
2457 ("stepi"). Just stop. */
2458 /* Also, maybe we just did a "nexti" inside a prolog, so we
2459 thought it was a subroutine call but it was not. Stop as
2460 well. FENN */
2461 stop_step = 1;
2462 print_stop_reason (END_STEPPING_RANGE, 0);
2463 stop_stepping (ecs);
2464 return;
2465 }
8fb3e588 2466
8567c30f
AC
2467 if (step_over_calls == STEP_OVER_ALL)
2468 {
2469 /* We're doing a "next", set a breakpoint at callee's return
2470 address (the address at which the caller will
2471 resume). */
14e60db5 2472 insert_step_resume_breakpoint_at_caller (get_current_frame ());
8567c30f
AC
2473 keep_going (ecs);
2474 return;
2475 }
a53c66de 2476
95918acb 2477 /* If we are in a function call trampoline (a stub between the
8fb3e588
AC
2478 calling routine and the real function), locate the real
2479 function. That's what tells us (a) whether we want to step
2480 into it at all, and (b) what prologue we want to run to the
2481 end of, if we do step into it. */
52f729a7 2482 real_stop_pc = skip_language_trampoline (get_current_frame (), stop_pc);
95918acb 2483 if (real_stop_pc == 0)
52f729a7
UW
2484 real_stop_pc = gdbarch_skip_trampoline_code
2485 (current_gdbarch, get_current_frame (), stop_pc);
95918acb
AC
2486 if (real_stop_pc != 0)
2487 ecs->stop_func_start = real_stop_pc;
8fb3e588 2488
a77053c2
MK
2489 if (
2490#ifdef IN_SOLIB_DYNSYM_RESOLVE_CODE
2491 IN_SOLIB_DYNSYM_RESOLVE_CODE (ecs->stop_func_start)
2492#else
2493 in_solib_dynsym_resolve_code (ecs->stop_func_start)
2494#endif
2495)
1b2bfbb9
RC
2496 {
2497 struct symtab_and_line sr_sal;
2498 init_sal (&sr_sal);
2499 sr_sal.pc = ecs->stop_func_start;
2500
44cbf7b5 2501 insert_step_resume_breakpoint_at_sal (sr_sal, null_frame_id);
8fb3e588
AC
2502 keep_going (ecs);
2503 return;
1b2bfbb9
RC
2504 }
2505
95918acb 2506 /* If we have line number information for the function we are
8fb3e588 2507 thinking of stepping into, step into it.
95918acb 2508
8fb3e588
AC
2509 If there are several symtabs at that PC (e.g. with include
2510 files), just want to know whether *any* of them have line
2511 numbers. find_pc_line handles this. */
95918acb
AC
2512 {
2513 struct symtab_and_line tmp_sal;
8fb3e588 2514
95918acb
AC
2515 tmp_sal = find_pc_line (ecs->stop_func_start, 0);
2516 if (tmp_sal.line != 0)
2517 {
2518 step_into_function (ecs);
2519 return;
2520 }
2521 }
2522
2523 /* If we have no line number and the step-stop-if-no-debug is
8fb3e588
AC
2524 set, we stop the step so that the user has a chance to switch
2525 in assembly mode. */
95918acb
AC
2526 if (step_over_calls == STEP_OVER_UNDEBUGGABLE && step_stop_if_no_debug)
2527 {
2528 stop_step = 1;
2529 print_stop_reason (END_STEPPING_RANGE, 0);
2530 stop_stepping (ecs);
2531 return;
2532 }
2533
2534 /* Set a breakpoint at callee's return address (the address at
8fb3e588 2535 which the caller will resume). */
14e60db5 2536 insert_step_resume_breakpoint_at_caller (get_current_frame ());
95918acb 2537 keep_going (ecs);
488f131b 2538 return;
488f131b 2539 }
c906108c 2540
488f131b
JB
2541 /* If we're in the return path from a shared library trampoline,
2542 we want to proceed through the trampoline when stepping. */
e76f05fa
UW
2543 if (gdbarch_in_solib_return_trampoline (current_gdbarch,
2544 stop_pc, ecs->stop_func_name))
488f131b 2545 {
488f131b 2546 /* Determine where this trampoline returns. */
52f729a7
UW
2547 CORE_ADDR real_stop_pc;
2548 real_stop_pc = gdbarch_skip_trampoline_code
2549 (current_gdbarch, get_current_frame (), stop_pc);
c906108c 2550
527159b7 2551 if (debug_infrun)
8a9de0e4 2552 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into solib return tramp\n");
527159b7 2553
488f131b 2554 /* Only proceed through if we know where it's going. */
d764a824 2555 if (real_stop_pc)
488f131b
JB
2556 {
2557 /* And put the step-breakpoint there and go until there. */
2558 struct symtab_and_line sr_sal;
2559
fe39c653 2560 init_sal (&sr_sal); /* initialize to zeroes */
d764a824 2561 sr_sal.pc = real_stop_pc;
488f131b 2562 sr_sal.section = find_pc_overlay (sr_sal.pc);
44cbf7b5
AC
2563
2564 /* Do not specify what the fp should be when we stop since
2565 on some machines the prologue is where the new fp value
2566 is established. */
2567 insert_step_resume_breakpoint_at_sal (sr_sal, null_frame_id);
c906108c 2568
488f131b
JB
2569 /* Restart without fiddling with the step ranges or
2570 other state. */
2571 keep_going (ecs);
2572 return;
2573 }
2574 }
c906108c 2575
7ed0fe66
DJ
2576 ecs->sal = find_pc_line (stop_pc, 0);
2577
1b2bfbb9
RC
2578 /* NOTE: tausq/2004-05-24: This if block used to be done before all
2579 the trampoline processing logic, however, there are some trampolines
2580 that have no names, so we should do trampoline handling first. */
2581 if (step_over_calls == STEP_OVER_UNDEBUGGABLE
7ed0fe66
DJ
2582 && ecs->stop_func_name == NULL
2583 && ecs->sal.line == 0)
1b2bfbb9 2584 {
527159b7 2585 if (debug_infrun)
8a9de0e4 2586 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into undebuggable function\n");
527159b7 2587
1b2bfbb9 2588 /* The inferior just stepped into, or returned to, an
7ed0fe66
DJ
2589 undebuggable function (where there is no debugging information
2590 and no line number corresponding to the address where the
1b2bfbb9
RC
2591 inferior stopped). Since we want to skip this kind of code,
2592 we keep going until the inferior returns from this
14e60db5
DJ
2593 function - unless the user has asked us not to (via
2594 set step-mode) or we no longer know how to get back
2595 to the call site. */
2596 if (step_stop_if_no_debug
2597 || !frame_id_p (frame_unwind_id (get_current_frame ())))
1b2bfbb9
RC
2598 {
2599 /* If we have no line number and the step-stop-if-no-debug
2600 is set, we stop the step so that the user has a chance to
2601 switch in assembly mode. */
2602 stop_step = 1;
2603 print_stop_reason (END_STEPPING_RANGE, 0);
2604 stop_stepping (ecs);
2605 return;
2606 }
2607 else
2608 {
2609 /* Set a breakpoint at callee's return address (the address
2610 at which the caller will resume). */
14e60db5 2611 insert_step_resume_breakpoint_at_caller (get_current_frame ());
1b2bfbb9
RC
2612 keep_going (ecs);
2613 return;
2614 }
2615 }
2616
2617 if (step_range_end == 1)
2618 {
2619 /* It is stepi or nexti. We always want to stop stepping after
2620 one instruction. */
527159b7 2621 if (debug_infrun)
8a9de0e4 2622 fprintf_unfiltered (gdb_stdlog, "infrun: stepi/nexti\n");
1b2bfbb9
RC
2623 stop_step = 1;
2624 print_stop_reason (END_STEPPING_RANGE, 0);
2625 stop_stepping (ecs);
2626 return;
2627 }
2628
488f131b
JB
2629 if (ecs->sal.line == 0)
2630 {
2631 /* We have no line number information. That means to stop
2632 stepping (does this always happen right after one instruction,
2633 when we do "s" in a function with no line numbers,
2634 or can this happen as a result of a return or longjmp?). */
527159b7 2635 if (debug_infrun)
8a9de0e4 2636 fprintf_unfiltered (gdb_stdlog, "infrun: no line number info\n");
488f131b
JB
2637 stop_step = 1;
2638 print_stop_reason (END_STEPPING_RANGE, 0);
2639 stop_stepping (ecs);
2640 return;
2641 }
c906108c 2642
488f131b
JB
2643 if ((stop_pc == ecs->sal.pc)
2644 && (ecs->current_line != ecs->sal.line
2645 || ecs->current_symtab != ecs->sal.symtab))
2646 {
2647 /* We are at the start of a different line. So stop. Note that
2648 we don't stop if we step into the middle of a different line.
2649 That is said to make things like for (;;) statements work
2650 better. */
527159b7 2651 if (debug_infrun)
8a9de0e4 2652 fprintf_unfiltered (gdb_stdlog, "infrun: stepped to a different line\n");
488f131b
JB
2653 stop_step = 1;
2654 print_stop_reason (END_STEPPING_RANGE, 0);
2655 stop_stepping (ecs);
2656 return;
2657 }
c906108c 2658
488f131b 2659 /* We aren't done stepping.
c906108c 2660
488f131b
JB
2661 Optimize by setting the stepping range to the line.
2662 (We might not be in the original line, but if we entered a
2663 new line in mid-statement, we continue stepping. This makes
2664 things like for(;;) statements work better.) */
c906108c 2665
488f131b
JB
2666 step_range_start = ecs->sal.pc;
2667 step_range_end = ecs->sal.end;
aa0cd9c1 2668 step_frame_id = get_frame_id (get_current_frame ());
488f131b
JB
2669 ecs->current_line = ecs->sal.line;
2670 ecs->current_symtab = ecs->sal.symtab;
2671
aa0cd9c1
AC
2672 /* In the case where we just stepped out of a function into the
2673 middle of a line of the caller, continue stepping, but
2674 step_frame_id must be modified to current frame */
65815ea1
AC
2675#if 0
2676 /* NOTE: cagney/2003-10-16: I think this frame ID inner test is too
2677 generous. It will trigger on things like a step into a frameless
2678 stackless leaf function. I think the logic should instead look
2679 at the unwound frame ID has that should give a more robust
2680 indication of what happened. */
8fb3e588
AC
2681 if (step - ID == current - ID)
2682 still stepping in same function;
2683 else if (step - ID == unwind (current - ID))
2684 stepped into a function;
2685 else
2686 stepped out of a function;
2687 /* Of course this assumes that the frame ID unwind code is robust
2688 and we're willing to introduce frame unwind logic into this
2689 function. Fortunately, those days are nearly upon us. */
65815ea1 2690#endif
488f131b 2691 {
09a7aba8
UW
2692 struct frame_info *frame = get_current_frame ();
2693 struct frame_id current_frame = get_frame_id (frame);
2694 if (!(frame_id_inner (get_frame_arch (frame), current_frame,
2695 step_frame_id)))
aa0cd9c1 2696 step_frame_id = current_frame;
488f131b 2697 }
c906108c 2698
527159b7 2699 if (debug_infrun)
8a9de0e4 2700 fprintf_unfiltered (gdb_stdlog, "infrun: keep going\n");
488f131b 2701 keep_going (ecs);
104c1213
JM
2702}
2703
2704/* Are we in the middle of stepping? */
2705
2706static int
2707currently_stepping (struct execution_control_state *ecs)
2708{
d303a6c7 2709 return ((!ecs->handling_longjmp
104c1213 2710 && ((step_range_end && step_resume_breakpoint == NULL)
ca67fcb8 2711 || stepping_over_breakpoint))
104c1213
JM
2712 || ecs->stepping_through_solib_after_catch
2713 || bpstat_should_step ());
2714}
c906108c 2715
c2c6d25f
JM
2716/* Subroutine call with source code we should not step over. Do step
2717 to the first line of code in it. */
2718
2719static void
2720step_into_function (struct execution_control_state *ecs)
2721{
2722 struct symtab *s;
2723 struct symtab_and_line sr_sal;
2724
2725 s = find_pc_symtab (stop_pc);
2726 if (s && s->language != language_asm)
a433963d
UW
2727 ecs->stop_func_start = gdbarch_skip_prologue
2728 (current_gdbarch, ecs->stop_func_start);
c2c6d25f
JM
2729
2730 ecs->sal = find_pc_line (ecs->stop_func_start, 0);
2731 /* Use the step_resume_break to step until the end of the prologue,
2732 even if that involves jumps (as it seems to on the vax under
2733 4.2). */
2734 /* If the prologue ends in the middle of a source line, continue to
2735 the end of that source line (if it is still within the function).
2736 Otherwise, just go to end of prologue. */
c2c6d25f
JM
2737 if (ecs->sal.end
2738 && ecs->sal.pc != ecs->stop_func_start
2739 && ecs->sal.end < ecs->stop_func_end)
2740 ecs->stop_func_start = ecs->sal.end;
c2c6d25f 2741
2dbd5e30
KB
2742 /* Architectures which require breakpoint adjustment might not be able
2743 to place a breakpoint at the computed address. If so, the test
2744 ``ecs->stop_func_start == stop_pc'' will never succeed. Adjust
2745 ecs->stop_func_start to an address at which a breakpoint may be
2746 legitimately placed.
8fb3e588 2747
2dbd5e30
KB
2748 Note: kevinb/2004-01-19: On FR-V, if this adjustment is not
2749 made, GDB will enter an infinite loop when stepping through
2750 optimized code consisting of VLIW instructions which contain
2751 subinstructions corresponding to different source lines. On
2752 FR-V, it's not permitted to place a breakpoint on any but the
2753 first subinstruction of a VLIW instruction. When a breakpoint is
2754 set, GDB will adjust the breakpoint address to the beginning of
2755 the VLIW instruction. Thus, we need to make the corresponding
2756 adjustment here when computing the stop address. */
8fb3e588 2757
2dbd5e30
KB
2758 if (gdbarch_adjust_breakpoint_address_p (current_gdbarch))
2759 {
2760 ecs->stop_func_start
2761 = gdbarch_adjust_breakpoint_address (current_gdbarch,
8fb3e588 2762 ecs->stop_func_start);
2dbd5e30
KB
2763 }
2764
c2c6d25f
JM
2765 if (ecs->stop_func_start == stop_pc)
2766 {
2767 /* We are already there: stop now. */
2768 stop_step = 1;
488f131b 2769 print_stop_reason (END_STEPPING_RANGE, 0);
c2c6d25f
JM
2770 stop_stepping (ecs);
2771 return;
2772 }
2773 else
2774 {
2775 /* Put the step-breakpoint there and go until there. */
fe39c653 2776 init_sal (&sr_sal); /* initialize to zeroes */
c2c6d25f
JM
2777 sr_sal.pc = ecs->stop_func_start;
2778 sr_sal.section = find_pc_overlay (ecs->stop_func_start);
44cbf7b5 2779
c2c6d25f 2780 /* Do not specify what the fp should be when we stop since on
488f131b
JB
2781 some machines the prologue is where the new fp value is
2782 established. */
44cbf7b5 2783 insert_step_resume_breakpoint_at_sal (sr_sal, null_frame_id);
c2c6d25f
JM
2784
2785 /* And make sure stepping stops right away then. */
2786 step_range_end = step_range_start;
2787 }
2788 keep_going (ecs);
2789}
d4f3574e 2790
d3169d93 2791/* Insert a "step-resume breakpoint" at SR_SAL with frame ID SR_ID.
44cbf7b5
AC
2792 This is used to both functions and to skip over code. */
2793
2794static void
2795insert_step_resume_breakpoint_at_sal (struct symtab_and_line sr_sal,
2796 struct frame_id sr_id)
2797{
2798 /* There should never be more than one step-resume breakpoint per
2799 thread, so we should never be setting a new
2800 step_resume_breakpoint when one is already active. */
2801 gdb_assert (step_resume_breakpoint == NULL);
d3169d93
DJ
2802
2803 if (debug_infrun)
2804 fprintf_unfiltered (gdb_stdlog,
2805 "infrun: inserting step-resume breakpoint at 0x%s\n",
2806 paddr_nz (sr_sal.pc));
2807
44cbf7b5
AC
2808 step_resume_breakpoint = set_momentary_breakpoint (sr_sal, sr_id,
2809 bp_step_resume);
44cbf7b5 2810}
7ce450bd 2811
d3169d93 2812/* Insert a "step-resume breakpoint" at RETURN_FRAME.pc. This is used
14e60db5 2813 to skip a potential signal handler.
7ce450bd 2814
14e60db5
DJ
2815 This is called with the interrupted function's frame. The signal
2816 handler, when it returns, will resume the interrupted function at
2817 RETURN_FRAME.pc. */
d303a6c7
AC
2818
2819static void
44cbf7b5 2820insert_step_resume_breakpoint_at_frame (struct frame_info *return_frame)
d303a6c7
AC
2821{
2822 struct symtab_and_line sr_sal;
2823
f4c1edd8 2824 gdb_assert (return_frame != NULL);
d303a6c7
AC
2825 init_sal (&sr_sal); /* initialize to zeros */
2826
bf6ae464
UW
2827 sr_sal.pc = gdbarch_addr_bits_remove
2828 (current_gdbarch, get_frame_pc (return_frame));
d303a6c7
AC
2829 sr_sal.section = find_pc_overlay (sr_sal.pc);
2830
44cbf7b5 2831 insert_step_resume_breakpoint_at_sal (sr_sal, get_frame_id (return_frame));
d303a6c7
AC
2832}
2833
14e60db5
DJ
2834/* Similar to insert_step_resume_breakpoint_at_frame, except
2835 but a breakpoint at the previous frame's PC. This is used to
2836 skip a function after stepping into it (for "next" or if the called
2837 function has no debugging information).
2838
2839 The current function has almost always been reached by single
2840 stepping a call or return instruction. NEXT_FRAME belongs to the
2841 current function, and the breakpoint will be set at the caller's
2842 resume address.
2843
2844 This is a separate function rather than reusing
2845 insert_step_resume_breakpoint_at_frame in order to avoid
2846 get_prev_frame, which may stop prematurely (see the implementation
2847 of frame_unwind_id for an example). */
2848
2849static void
2850insert_step_resume_breakpoint_at_caller (struct frame_info *next_frame)
2851{
2852 struct symtab_and_line sr_sal;
2853
2854 /* We shouldn't have gotten here if we don't know where the call site
2855 is. */
2856 gdb_assert (frame_id_p (frame_unwind_id (next_frame)));
2857
2858 init_sal (&sr_sal); /* initialize to zeros */
2859
bf6ae464
UW
2860 sr_sal.pc = gdbarch_addr_bits_remove
2861 (current_gdbarch, frame_pc_unwind (next_frame));
14e60db5
DJ
2862 sr_sal.section = find_pc_overlay (sr_sal.pc);
2863
2864 insert_step_resume_breakpoint_at_sal (sr_sal, frame_unwind_id (next_frame));
2865}
2866
104c1213
JM
2867static void
2868stop_stepping (struct execution_control_state *ecs)
2869{
527159b7 2870 if (debug_infrun)
8a9de0e4 2871 fprintf_unfiltered (gdb_stdlog, "infrun: stop_stepping\n");
527159b7 2872
cd0fc7c3
SS
2873 /* Let callers know we don't want to wait for the inferior anymore. */
2874 ecs->wait_some_more = 0;
2875}
2876
d4f3574e
SS
2877/* This function handles various cases where we need to continue
2878 waiting for the inferior. */
2879/* (Used to be the keep_going: label in the old wait_for_inferior) */
2880
2881static void
2882keep_going (struct execution_control_state *ecs)
2883{
d4f3574e 2884 /* Save the pc before execution, to compare with pc after stop. */
488f131b 2885 prev_pc = read_pc (); /* Might have been DECR_AFTER_BREAK */
d4f3574e 2886
d4f3574e
SS
2887 /* If we did not do break;, it means we should keep running the
2888 inferior and not return to debugger. */
2889
ca67fcb8 2890 if (stepping_over_breakpoint && stop_signal != TARGET_SIGNAL_TRAP)
d4f3574e
SS
2891 {
2892 /* We took a signal (which we are supposed to pass through to
488f131b
JB
2893 the inferior, else we'd have done a break above) and we
2894 haven't yet gotten our trap. Simply continue. */
d4f3574e
SS
2895 resume (currently_stepping (ecs), stop_signal);
2896 }
2897 else
2898 {
2899 /* Either the trap was not expected, but we are continuing
488f131b
JB
2900 anyway (the user asked that this signal be passed to the
2901 child)
2902 -- or --
2903 The signal was SIGTRAP, e.g. it was our signal, but we
2904 decided we should resume from it.
d4f3574e 2905
c36b740a 2906 We're going to run this baby now!
d4f3574e 2907
c36b740a
VP
2908 Note that insert_breakpoints won't try to re-insert
2909 already inserted breakpoints. Therefore, we don't
2910 care if breakpoints were already inserted, or not. */
2911
45e8c884
VP
2912 if (ecs->stepping_over_breakpoint)
2913 {
2914 remove_breakpoints ();
2915 }
2916 else
d4f3574e 2917 {
e236ba44 2918 struct gdb_exception e;
569631c6
UW
2919 /* Stop stepping when inserting breakpoints
2920 has failed. */
e236ba44
VP
2921 TRY_CATCH (e, RETURN_MASK_ERROR)
2922 {
2923 insert_breakpoints ();
2924 }
2925 if (e.reason < 0)
d4f3574e
SS
2926 {
2927 stop_stepping (ecs);
2928 return;
2929 }
d4f3574e
SS
2930 }
2931
ca67fcb8 2932 stepping_over_breakpoint = ecs->stepping_over_breakpoint;
d4f3574e
SS
2933
2934 /* Do not deliver SIGNAL_TRAP (except when the user explicitly
488f131b
JB
2935 specifies that such a signal should be delivered to the
2936 target program).
2937
2938 Typically, this would occure when a user is debugging a
2939 target monitor on a simulator: the target monitor sets a
2940 breakpoint; the simulator encounters this break-point and
2941 halts the simulation handing control to GDB; GDB, noteing
2942 that the break-point isn't valid, returns control back to the
2943 simulator; the simulator then delivers the hardware
2944 equivalent of a SIGNAL_TRAP to the program being debugged. */
2945
2946 if (stop_signal == TARGET_SIGNAL_TRAP && !signal_program[stop_signal])
d4f3574e
SS
2947 stop_signal = TARGET_SIGNAL_0;
2948
d4f3574e
SS
2949
2950 resume (currently_stepping (ecs), stop_signal);
2951 }
2952
488f131b 2953 prepare_to_wait (ecs);
d4f3574e
SS
2954}
2955
104c1213
JM
2956/* This function normally comes after a resume, before
2957 handle_inferior_event exits. It takes care of any last bits of
2958 housekeeping, and sets the all-important wait_some_more flag. */
cd0fc7c3 2959
104c1213
JM
2960static void
2961prepare_to_wait (struct execution_control_state *ecs)
cd0fc7c3 2962{
527159b7 2963 if (debug_infrun)
8a9de0e4 2964 fprintf_unfiltered (gdb_stdlog, "infrun: prepare_to_wait\n");
104c1213
JM
2965 if (ecs->infwait_state == infwait_normal_state)
2966 {
2967 overlay_cache_invalid = 1;
2968
2969 /* We have to invalidate the registers BEFORE calling
488f131b
JB
2970 target_wait because they can be loaded from the target while
2971 in target_wait. This makes remote debugging a bit more
2972 efficient for those targets that provide critical registers
2973 as part of their normal status mechanism. */
104c1213
JM
2974
2975 registers_changed ();
39f77062 2976 ecs->waiton_ptid = pid_to_ptid (-1);
104c1213
JM
2977 ecs->wp = &(ecs->ws);
2978 }
2979 /* This is the old end of the while loop. Let everybody know we
2980 want to wait for the inferior some more and get called again
2981 soon. */
2982 ecs->wait_some_more = 1;
c906108c 2983}
11cf8741
JM
2984
2985/* Print why the inferior has stopped. We always print something when
2986 the inferior exits, or receives a signal. The rest of the cases are
2987 dealt with later on in normal_stop() and print_it_typical(). Ideally
2988 there should be a call to this function from handle_inferior_event()
2989 each time stop_stepping() is called.*/
2990static void
2991print_stop_reason (enum inferior_stop_reason stop_reason, int stop_info)
2992{
2993 switch (stop_reason)
2994 {
11cf8741
JM
2995 case END_STEPPING_RANGE:
2996 /* We are done with a step/next/si/ni command. */
2997 /* For now print nothing. */
fb40c209 2998 /* Print a message only if not in the middle of doing a "step n"
488f131b 2999 operation for n > 1 */
fb40c209 3000 if (!step_multi || !stop_step)
9dc5e2a9 3001 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3002 ui_out_field_string
3003 (uiout, "reason",
3004 async_reason_lookup (EXEC_ASYNC_END_STEPPING_RANGE));
11cf8741 3005 break;
11cf8741
JM
3006 case SIGNAL_EXITED:
3007 /* The inferior was terminated by a signal. */
8b93c638 3008 annotate_signalled ();
9dc5e2a9 3009 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3010 ui_out_field_string
3011 (uiout, "reason",
3012 async_reason_lookup (EXEC_ASYNC_EXITED_SIGNALLED));
8b93c638
JM
3013 ui_out_text (uiout, "\nProgram terminated with signal ");
3014 annotate_signal_name ();
488f131b
JB
3015 ui_out_field_string (uiout, "signal-name",
3016 target_signal_to_name (stop_info));
8b93c638
JM
3017 annotate_signal_name_end ();
3018 ui_out_text (uiout, ", ");
3019 annotate_signal_string ();
488f131b
JB
3020 ui_out_field_string (uiout, "signal-meaning",
3021 target_signal_to_string (stop_info));
8b93c638
JM
3022 annotate_signal_string_end ();
3023 ui_out_text (uiout, ".\n");
3024 ui_out_text (uiout, "The program no longer exists.\n");
11cf8741
JM
3025 break;
3026 case EXITED:
3027 /* The inferior program is finished. */
8b93c638
JM
3028 annotate_exited (stop_info);
3029 if (stop_info)
3030 {
9dc5e2a9 3031 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3032 ui_out_field_string (uiout, "reason",
3033 async_reason_lookup (EXEC_ASYNC_EXITED));
8b93c638 3034 ui_out_text (uiout, "\nProgram exited with code ");
488f131b
JB
3035 ui_out_field_fmt (uiout, "exit-code", "0%o",
3036 (unsigned int) stop_info);
8b93c638
JM
3037 ui_out_text (uiout, ".\n");
3038 }
3039 else
3040 {
9dc5e2a9 3041 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3042 ui_out_field_string
3043 (uiout, "reason",
3044 async_reason_lookup (EXEC_ASYNC_EXITED_NORMALLY));
8b93c638
JM
3045 ui_out_text (uiout, "\nProgram exited normally.\n");
3046 }
f17517ea
AS
3047 /* Support the --return-child-result option. */
3048 return_child_result_value = stop_info;
11cf8741
JM
3049 break;
3050 case SIGNAL_RECEIVED:
3051 /* Signal received. The signal table tells us to print about
3052 it. */
8b93c638
JM
3053 annotate_signal ();
3054 ui_out_text (uiout, "\nProgram received signal ");
3055 annotate_signal_name ();
84c6c83c 3056 if (ui_out_is_mi_like_p (uiout))
034dad6f
BR
3057 ui_out_field_string
3058 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_SIGNAL_RECEIVED));
488f131b
JB
3059 ui_out_field_string (uiout, "signal-name",
3060 target_signal_to_name (stop_info));
8b93c638
JM
3061 annotate_signal_name_end ();
3062 ui_out_text (uiout, ", ");
3063 annotate_signal_string ();
488f131b
JB
3064 ui_out_field_string (uiout, "signal-meaning",
3065 target_signal_to_string (stop_info));
8b93c638
JM
3066 annotate_signal_string_end ();
3067 ui_out_text (uiout, ".\n");
11cf8741
JM
3068 break;
3069 default:
8e65ff28 3070 internal_error (__FILE__, __LINE__,
e2e0b3e5 3071 _("print_stop_reason: unrecognized enum value"));
11cf8741
JM
3072 break;
3073 }
3074}
c906108c 3075\f
43ff13b4 3076
c906108c
SS
3077/* Here to return control to GDB when the inferior stops for real.
3078 Print appropriate messages, remove breakpoints, give terminal our modes.
3079
3080 STOP_PRINT_FRAME nonzero means print the executing frame
3081 (pc, function, args, file, line number and line text).
3082 BREAKPOINTS_FAILED nonzero means stop was due to error
3083 attempting to insert breakpoints. */
3084
3085void
96baa820 3086normal_stop (void)
c906108c 3087{
73b65bb0
DJ
3088 struct target_waitstatus last;
3089 ptid_t last_ptid;
3090
3091 get_last_target_status (&last_ptid, &last);
3092
c906108c
SS
3093 /* As with the notification of thread events, we want to delay
3094 notifying the user that we've switched thread context until
3095 the inferior actually stops.
3096
73b65bb0
DJ
3097 There's no point in saying anything if the inferior has exited.
3098 Note that SIGNALLED here means "exited with a signal", not
3099 "received a signal". */
488f131b 3100 if (!ptid_equal (previous_inferior_ptid, inferior_ptid)
73b65bb0
DJ
3101 && target_has_execution
3102 && last.kind != TARGET_WAITKIND_SIGNALLED
3103 && last.kind != TARGET_WAITKIND_EXITED)
c906108c
SS
3104 {
3105 target_terminal_ours_for_output ();
a3f17187 3106 printf_filtered (_("[Switching to %s]\n"),
c95310c6 3107 target_pid_to_str (inferior_ptid));
39f77062 3108 previous_inferior_ptid = inferior_ptid;
c906108c 3109 }
c906108c 3110
4fa8626c 3111 /* NOTE drow/2004-01-17: Is this still necessary? */
c906108c
SS
3112 /* Make sure that the current_frame's pc is correct. This
3113 is a correction for setting up the frame info before doing
b798847d 3114 gdbarch_decr_pc_after_break */
b87efeee
AC
3115 if (target_has_execution)
3116 /* FIXME: cagney/2002-12-06: Has the PC changed? Thanks to
b798847d 3117 gdbarch_decr_pc_after_break, the program counter can change. Ask the
b87efeee 3118 frame code to check for this and sort out any resultant mess.
b798847d 3119 gdbarch_decr_pc_after_break needs to just go away. */
2f107107 3120 deprecated_update_frame_pc_hack (get_current_frame (), read_pc ());
c906108c 3121
74960c60 3122 if (!breakpoints_always_inserted_mode () && target_has_execution)
c906108c
SS
3123 {
3124 if (remove_breakpoints ())
3125 {
3126 target_terminal_ours_for_output ();
a3f17187
AC
3127 printf_filtered (_("\
3128Cannot remove breakpoints because program is no longer writable.\n\
3129It might be running in another process.\n\
3130Further execution is probably impossible.\n"));
c906108c
SS
3131 }
3132 }
c906108c 3133
c906108c
SS
3134 /* If an auto-display called a function and that got a signal,
3135 delete that auto-display to avoid an infinite recursion. */
3136
3137 if (stopped_by_random_signal)
3138 disable_current_display ();
3139
3140 /* Don't print a message if in the middle of doing a "step n"
3141 operation for n > 1 */
3142 if (step_multi && stop_step)
3143 goto done;
3144
3145 target_terminal_ours ();
3146
7abfe014
DJ
3147 /* Set the current source location. This will also happen if we
3148 display the frame below, but the current SAL will be incorrect
3149 during a user hook-stop function. */
3150 if (target_has_stack && !stop_stack_dummy)
3151 set_current_sal_from_frame (get_current_frame (), 1);
3152
5913bcb0
AC
3153 /* Look up the hook_stop and run it (CLI internally handles problem
3154 of stop_command's pre-hook not existing). */
3155 if (stop_command)
3156 catch_errors (hook_stop_stub, stop_command,
3157 "Error while running hook_stop:\n", RETURN_MASK_ALL);
c906108c
SS
3158
3159 if (!target_has_stack)
3160 {
3161
3162 goto done;
3163 }
3164
3165 /* Select innermost stack frame - i.e., current frame is frame 0,
3166 and current location is based on that.
3167 Don't do this on return from a stack dummy routine,
3168 or if the program has exited. */
3169
3170 if (!stop_stack_dummy)
3171 {
0f7d239c 3172 select_frame (get_current_frame ());
c906108c
SS
3173
3174 /* Print current location without a level number, if
c5aa993b
JM
3175 we have changed functions or hit a breakpoint.
3176 Print source line if we have one.
3177 bpstat_print() contains the logic deciding in detail
3178 what to print, based on the event(s) that just occurred. */
c906108c 3179
206415a3 3180 if (stop_print_frame)
c906108c
SS
3181 {
3182 int bpstat_ret;
3183 int source_flag;
917317f4 3184 int do_frame_printing = 1;
c906108c
SS
3185
3186 bpstat_ret = bpstat_print (stop_bpstat);
917317f4
JM
3187 switch (bpstat_ret)
3188 {
3189 case PRINT_UNKNOWN:
b0f4b84b
DJ
3190 /* If we had hit a shared library event breakpoint,
3191 bpstat_print would print out this message. If we hit
3192 an OS-level shared library event, do the same
3193 thing. */
3194 if (last.kind == TARGET_WAITKIND_LOADED)
3195 {
3196 printf_filtered (_("Stopped due to shared library event\n"));
3197 source_flag = SRC_LINE; /* something bogus */
3198 do_frame_printing = 0;
3199 break;
3200 }
3201
aa0cd9c1 3202 /* FIXME: cagney/2002-12-01: Given that a frame ID does
8fb3e588
AC
3203 (or should) carry around the function and does (or
3204 should) use that when doing a frame comparison. */
917317f4 3205 if (stop_step
aa0cd9c1
AC
3206 && frame_id_eq (step_frame_id,
3207 get_frame_id (get_current_frame ()))
917317f4 3208 && step_start_function == find_pc_function (stop_pc))
488f131b 3209 source_flag = SRC_LINE; /* finished step, just print source line */
917317f4 3210 else
488f131b 3211 source_flag = SRC_AND_LOC; /* print location and source line */
917317f4
JM
3212 break;
3213 case PRINT_SRC_AND_LOC:
488f131b 3214 source_flag = SRC_AND_LOC; /* print location and source line */
917317f4
JM
3215 break;
3216 case PRINT_SRC_ONLY:
c5394b80 3217 source_flag = SRC_LINE;
917317f4
JM
3218 break;
3219 case PRINT_NOTHING:
488f131b 3220 source_flag = SRC_LINE; /* something bogus */
917317f4
JM
3221 do_frame_printing = 0;
3222 break;
3223 default:
e2e0b3e5 3224 internal_error (__FILE__, __LINE__, _("Unknown value."));
917317f4 3225 }
c906108c 3226
9dc5e2a9 3227 if (ui_out_is_mi_like_p (uiout))
39f77062 3228 ui_out_field_int (uiout, "thread-id",
488f131b 3229 pid_to_thread_id (inferior_ptid));
c906108c
SS
3230 /* The behavior of this routine with respect to the source
3231 flag is:
c5394b80
JM
3232 SRC_LINE: Print only source line
3233 LOCATION: Print only location
3234 SRC_AND_LOC: Print location and source line */
917317f4 3235 if (do_frame_printing)
b04f3ab4 3236 print_stack_frame (get_selected_frame (NULL), 0, source_flag);
c906108c
SS
3237
3238 /* Display the auto-display expressions. */
3239 do_displays ();
3240 }
3241 }
3242
3243 /* Save the function value return registers, if we care.
3244 We might be about to restore their previous contents. */
3245 if (proceed_to_finish)
d5c31457
UW
3246 {
3247 /* This should not be necessary. */
3248 if (stop_registers)
3249 regcache_xfree (stop_registers);
3250
3251 /* NB: The copy goes through to the target picking up the value of
3252 all the registers. */
3253 stop_registers = regcache_dup (get_current_regcache ());
3254 }
c906108c
SS
3255
3256 if (stop_stack_dummy)
3257 {
dbe9fe58
AC
3258 /* Pop the empty frame that contains the stack dummy. POP_FRAME
3259 ends with a setting of the current frame, so we can use that
3260 next. */
3261 frame_pop (get_current_frame ());
c906108c 3262 /* Set stop_pc to what it was before we called the function.
c5aa993b
JM
3263 Can't rely on restore_inferior_status because that only gets
3264 called if we don't stop in the called function. */
c906108c 3265 stop_pc = read_pc ();
0f7d239c 3266 select_frame (get_current_frame ());
c906108c
SS
3267 }
3268
c906108c
SS
3269done:
3270 annotate_stopped ();
7a464420 3271 observer_notify_normal_stop (stop_bpstat);
2cec12e5
AR
3272 /* Delete the breakpoint we stopped at, if it wants to be deleted.
3273 Delete any breakpoint that is to be deleted at the next stop. */
3274 breakpoint_auto_delete (stop_bpstat);
c906108c
SS
3275}
3276
3277static int
96baa820 3278hook_stop_stub (void *cmd)
c906108c 3279{
5913bcb0 3280 execute_cmd_pre_hook ((struct cmd_list_element *) cmd);
c906108c
SS
3281 return (0);
3282}
3283\f
c5aa993b 3284int
96baa820 3285signal_stop_state (int signo)
c906108c
SS
3286{
3287 return signal_stop[signo];
3288}
3289
c5aa993b 3290int
96baa820 3291signal_print_state (int signo)
c906108c
SS
3292{
3293 return signal_print[signo];
3294}
3295
c5aa993b 3296int
96baa820 3297signal_pass_state (int signo)
c906108c
SS
3298{
3299 return signal_program[signo];
3300}
3301
488f131b 3302int
7bda5e4a 3303signal_stop_update (int signo, int state)
d4f3574e
SS
3304{
3305 int ret = signal_stop[signo];
3306 signal_stop[signo] = state;
3307 return ret;
3308}
3309
488f131b 3310int
7bda5e4a 3311signal_print_update (int signo, int state)
d4f3574e
SS
3312{
3313 int ret = signal_print[signo];
3314 signal_print[signo] = state;
3315 return ret;
3316}
3317
488f131b 3318int
7bda5e4a 3319signal_pass_update (int signo, int state)
d4f3574e
SS
3320{
3321 int ret = signal_program[signo];
3322 signal_program[signo] = state;
3323 return ret;
3324}
3325
c906108c 3326static void
96baa820 3327sig_print_header (void)
c906108c 3328{
a3f17187
AC
3329 printf_filtered (_("\
3330Signal Stop\tPrint\tPass to program\tDescription\n"));
c906108c
SS
3331}
3332
3333static void
96baa820 3334sig_print_info (enum target_signal oursig)
c906108c
SS
3335{
3336 char *name = target_signal_to_name (oursig);
3337 int name_padding = 13 - strlen (name);
96baa820 3338
c906108c
SS
3339 if (name_padding <= 0)
3340 name_padding = 0;
3341
3342 printf_filtered ("%s", name);
488f131b 3343 printf_filtered ("%*.*s ", name_padding, name_padding, " ");
c906108c
SS
3344 printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
3345 printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
3346 printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
3347 printf_filtered ("%s\n", target_signal_to_string (oursig));
3348}
3349
3350/* Specify how various signals in the inferior should be handled. */
3351
3352static void
96baa820 3353handle_command (char *args, int from_tty)
c906108c
SS
3354{
3355 char **argv;
3356 int digits, wordlen;
3357 int sigfirst, signum, siglast;
3358 enum target_signal oursig;
3359 int allsigs;
3360 int nsigs;
3361 unsigned char *sigs;
3362 struct cleanup *old_chain;
3363
3364 if (args == NULL)
3365 {
e2e0b3e5 3366 error_no_arg (_("signal to handle"));
c906108c
SS
3367 }
3368
3369 /* Allocate and zero an array of flags for which signals to handle. */
3370
3371 nsigs = (int) TARGET_SIGNAL_LAST;
3372 sigs = (unsigned char *) alloca (nsigs);
3373 memset (sigs, 0, nsigs);
3374
3375 /* Break the command line up into args. */
3376
3377 argv = buildargv (args);
3378 if (argv == NULL)
3379 {
3380 nomem (0);
3381 }
7a292a7a 3382 old_chain = make_cleanup_freeargv (argv);
c906108c
SS
3383
3384 /* Walk through the args, looking for signal oursigs, signal names, and
3385 actions. Signal numbers and signal names may be interspersed with
3386 actions, with the actions being performed for all signals cumulatively
3387 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
3388
3389 while (*argv != NULL)
3390 {
3391 wordlen = strlen (*argv);
3392 for (digits = 0; isdigit ((*argv)[digits]); digits++)
3393 {;
3394 }
3395 allsigs = 0;
3396 sigfirst = siglast = -1;
3397
3398 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
3399 {
3400 /* Apply action to all signals except those used by the
3401 debugger. Silently skip those. */
3402 allsigs = 1;
3403 sigfirst = 0;
3404 siglast = nsigs - 1;
3405 }
3406 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
3407 {
3408 SET_SIGS (nsigs, sigs, signal_stop);
3409 SET_SIGS (nsigs, sigs, signal_print);
3410 }
3411 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
3412 {
3413 UNSET_SIGS (nsigs, sigs, signal_program);
3414 }
3415 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
3416 {
3417 SET_SIGS (nsigs, sigs, signal_print);
3418 }
3419 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
3420 {
3421 SET_SIGS (nsigs, sigs, signal_program);
3422 }
3423 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
3424 {
3425 UNSET_SIGS (nsigs, sigs, signal_stop);
3426 }
3427 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
3428 {
3429 SET_SIGS (nsigs, sigs, signal_program);
3430 }
3431 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
3432 {
3433 UNSET_SIGS (nsigs, sigs, signal_print);
3434 UNSET_SIGS (nsigs, sigs, signal_stop);
3435 }
3436 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
3437 {
3438 UNSET_SIGS (nsigs, sigs, signal_program);
3439 }
3440 else if (digits > 0)
3441 {
3442 /* It is numeric. The numeric signal refers to our own
3443 internal signal numbering from target.h, not to host/target
3444 signal number. This is a feature; users really should be
3445 using symbolic names anyway, and the common ones like
3446 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
3447
3448 sigfirst = siglast = (int)
3449 target_signal_from_command (atoi (*argv));
3450 if ((*argv)[digits] == '-')
3451 {
3452 siglast = (int)
3453 target_signal_from_command (atoi ((*argv) + digits + 1));
3454 }
3455 if (sigfirst > siglast)
3456 {
3457 /* Bet he didn't figure we'd think of this case... */
3458 signum = sigfirst;
3459 sigfirst = siglast;
3460 siglast = signum;
3461 }
3462 }
3463 else
3464 {
3465 oursig = target_signal_from_name (*argv);
3466 if (oursig != TARGET_SIGNAL_UNKNOWN)
3467 {
3468 sigfirst = siglast = (int) oursig;
3469 }
3470 else
3471 {
3472 /* Not a number and not a recognized flag word => complain. */
8a3fe4f8 3473 error (_("Unrecognized or ambiguous flag word: \"%s\"."), *argv);
c906108c
SS
3474 }
3475 }
3476
3477 /* If any signal numbers or symbol names were found, set flags for
c5aa993b 3478 which signals to apply actions to. */
c906108c
SS
3479
3480 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
3481 {
3482 switch ((enum target_signal) signum)
3483 {
3484 case TARGET_SIGNAL_TRAP:
3485 case TARGET_SIGNAL_INT:
3486 if (!allsigs && !sigs[signum])
3487 {
3488 if (query ("%s is used by the debugger.\n\
488f131b 3489Are you sure you want to change it? ", target_signal_to_name ((enum target_signal) signum)))
c906108c
SS
3490 {
3491 sigs[signum] = 1;
3492 }
3493 else
3494 {
a3f17187 3495 printf_unfiltered (_("Not confirmed, unchanged.\n"));
c906108c
SS
3496 gdb_flush (gdb_stdout);
3497 }
3498 }
3499 break;
3500 case TARGET_SIGNAL_0:
3501 case TARGET_SIGNAL_DEFAULT:
3502 case TARGET_SIGNAL_UNKNOWN:
3503 /* Make sure that "all" doesn't print these. */
3504 break;
3505 default:
3506 sigs[signum] = 1;
3507 break;
3508 }
3509 }
3510
3511 argv++;
3512 }
3513
39f77062 3514 target_notice_signals (inferior_ptid);
c906108c
SS
3515
3516 if (from_tty)
3517 {
3518 /* Show the results. */
3519 sig_print_header ();
3520 for (signum = 0; signum < nsigs; signum++)
3521 {
3522 if (sigs[signum])
3523 {
3524 sig_print_info (signum);
3525 }
3526 }
3527 }
3528
3529 do_cleanups (old_chain);
3530}
3531
3532static void
96baa820 3533xdb_handle_command (char *args, int from_tty)
c906108c
SS
3534{
3535 char **argv;
3536 struct cleanup *old_chain;
3537
3538 /* Break the command line up into args. */
3539
3540 argv = buildargv (args);
3541 if (argv == NULL)
3542 {
3543 nomem (0);
3544 }
7a292a7a 3545 old_chain = make_cleanup_freeargv (argv);
c906108c
SS
3546 if (argv[1] != (char *) NULL)
3547 {
3548 char *argBuf;
3549 int bufLen;
3550
3551 bufLen = strlen (argv[0]) + 20;
3552 argBuf = (char *) xmalloc (bufLen);
3553 if (argBuf)
3554 {
3555 int validFlag = 1;
3556 enum target_signal oursig;
3557
3558 oursig = target_signal_from_name (argv[0]);
3559 memset (argBuf, 0, bufLen);
3560 if (strcmp (argv[1], "Q") == 0)
3561 sprintf (argBuf, "%s %s", argv[0], "noprint");
3562 else
3563 {
3564 if (strcmp (argv[1], "s") == 0)
3565 {
3566 if (!signal_stop[oursig])
3567 sprintf (argBuf, "%s %s", argv[0], "stop");
3568 else
3569 sprintf (argBuf, "%s %s", argv[0], "nostop");
3570 }
3571 else if (strcmp (argv[1], "i") == 0)
3572 {
3573 if (!signal_program[oursig])
3574 sprintf (argBuf, "%s %s", argv[0], "pass");
3575 else
3576 sprintf (argBuf, "%s %s", argv[0], "nopass");
3577 }
3578 else if (strcmp (argv[1], "r") == 0)
3579 {
3580 if (!signal_print[oursig])
3581 sprintf (argBuf, "%s %s", argv[0], "print");
3582 else
3583 sprintf (argBuf, "%s %s", argv[0], "noprint");
3584 }
3585 else
3586 validFlag = 0;
3587 }
3588 if (validFlag)
3589 handle_command (argBuf, from_tty);
3590 else
a3f17187 3591 printf_filtered (_("Invalid signal handling flag.\n"));
c906108c 3592 if (argBuf)
b8c9b27d 3593 xfree (argBuf);
c906108c
SS
3594 }
3595 }
3596 do_cleanups (old_chain);
3597}
3598
3599/* Print current contents of the tables set by the handle command.
3600 It is possible we should just be printing signals actually used
3601 by the current target (but for things to work right when switching
3602 targets, all signals should be in the signal tables). */
3603
3604static void
96baa820 3605signals_info (char *signum_exp, int from_tty)
c906108c
SS
3606{
3607 enum target_signal oursig;
3608 sig_print_header ();
3609
3610 if (signum_exp)
3611 {
3612 /* First see if this is a symbol name. */
3613 oursig = target_signal_from_name (signum_exp);
3614 if (oursig == TARGET_SIGNAL_UNKNOWN)
3615 {
3616 /* No, try numeric. */
3617 oursig =
bb518678 3618 target_signal_from_command (parse_and_eval_long (signum_exp));
c906108c
SS
3619 }
3620 sig_print_info (oursig);
3621 return;
3622 }
3623
3624 printf_filtered ("\n");
3625 /* These ugly casts brought to you by the native VAX compiler. */
3626 for (oursig = TARGET_SIGNAL_FIRST;
3627 (int) oursig < (int) TARGET_SIGNAL_LAST;
3628 oursig = (enum target_signal) ((int) oursig + 1))
3629 {
3630 QUIT;
3631
3632 if (oursig != TARGET_SIGNAL_UNKNOWN
488f131b 3633 && oursig != TARGET_SIGNAL_DEFAULT && oursig != TARGET_SIGNAL_0)
c906108c
SS
3634 sig_print_info (oursig);
3635 }
3636
a3f17187 3637 printf_filtered (_("\nUse the \"handle\" command to change these tables.\n"));
c906108c
SS
3638}
3639\f
7a292a7a
SS
3640struct inferior_status
3641{
3642 enum target_signal stop_signal;
3643 CORE_ADDR stop_pc;
3644 bpstat stop_bpstat;
3645 int stop_step;
3646 int stop_stack_dummy;
3647 int stopped_by_random_signal;
ca67fcb8 3648 int stepping_over_breakpoint;
7a292a7a
SS
3649 CORE_ADDR step_range_start;
3650 CORE_ADDR step_range_end;
aa0cd9c1 3651 struct frame_id step_frame_id;
5fbbeb29 3652 enum step_over_calls_kind step_over_calls;
7a292a7a
SS
3653 CORE_ADDR step_resume_break_address;
3654 int stop_after_trap;
c0236d92 3655 int stop_soon;
7a292a7a
SS
3656
3657 /* These are here because if call_function_by_hand has written some
3658 registers and then decides to call error(), we better not have changed
3659 any registers. */
72cec141 3660 struct regcache *registers;
7a292a7a 3661
101dcfbe
AC
3662 /* A frame unique identifier. */
3663 struct frame_id selected_frame_id;
3664
7a292a7a
SS
3665 int breakpoint_proceeded;
3666 int restore_stack_info;
3667 int proceed_to_finish;
3668};
3669
7a292a7a 3670void
96baa820
JM
3671write_inferior_status_register (struct inferior_status *inf_status, int regno,
3672 LONGEST val)
7a292a7a 3673{
3acba339 3674 int size = register_size (current_gdbarch, regno);
7a292a7a
SS
3675 void *buf = alloca (size);
3676 store_signed_integer (buf, size, val);
0818c12a 3677 regcache_raw_write (inf_status->registers, regno, buf);
7a292a7a
SS
3678}
3679
c906108c
SS
3680/* Save all of the information associated with the inferior<==>gdb
3681 connection. INF_STATUS is a pointer to a "struct inferior_status"
3682 (defined in inferior.h). */
3683
7a292a7a 3684struct inferior_status *
96baa820 3685save_inferior_status (int restore_stack_info)
c906108c 3686{
72cec141 3687 struct inferior_status *inf_status = XMALLOC (struct inferior_status);
7a292a7a 3688
c906108c
SS
3689 inf_status->stop_signal = stop_signal;
3690 inf_status->stop_pc = stop_pc;
3691 inf_status->stop_step = stop_step;
3692 inf_status->stop_stack_dummy = stop_stack_dummy;
3693 inf_status->stopped_by_random_signal = stopped_by_random_signal;
ca67fcb8 3694 inf_status->stepping_over_breakpoint = stepping_over_breakpoint;
c906108c
SS
3695 inf_status->step_range_start = step_range_start;
3696 inf_status->step_range_end = step_range_end;
aa0cd9c1 3697 inf_status->step_frame_id = step_frame_id;
c906108c
SS
3698 inf_status->step_over_calls = step_over_calls;
3699 inf_status->stop_after_trap = stop_after_trap;
c0236d92 3700 inf_status->stop_soon = stop_soon;
c906108c
SS
3701 /* Save original bpstat chain here; replace it with copy of chain.
3702 If caller's caller is walking the chain, they'll be happier if we
7a292a7a
SS
3703 hand them back the original chain when restore_inferior_status is
3704 called. */
c906108c
SS
3705 inf_status->stop_bpstat = stop_bpstat;
3706 stop_bpstat = bpstat_copy (stop_bpstat);
3707 inf_status->breakpoint_proceeded = breakpoint_proceeded;
3708 inf_status->restore_stack_info = restore_stack_info;
3709 inf_status->proceed_to_finish = proceed_to_finish;
c5aa993b 3710
594f7785 3711 inf_status->registers = regcache_dup (get_current_regcache ());
c906108c 3712
206415a3 3713 inf_status->selected_frame_id = get_frame_id (get_selected_frame (NULL));
7a292a7a 3714 return inf_status;
c906108c
SS
3715}
3716
c906108c 3717static int
96baa820 3718restore_selected_frame (void *args)
c906108c 3719{
488f131b 3720 struct frame_id *fid = (struct frame_id *) args;
c906108c 3721 struct frame_info *frame;
c906108c 3722
101dcfbe 3723 frame = frame_find_by_id (*fid);
c906108c 3724
aa0cd9c1
AC
3725 /* If inf_status->selected_frame_id is NULL, there was no previously
3726 selected frame. */
101dcfbe 3727 if (frame == NULL)
c906108c 3728 {
8a3fe4f8 3729 warning (_("Unable to restore previously selected frame."));
c906108c
SS
3730 return 0;
3731 }
3732
0f7d239c 3733 select_frame (frame);
c906108c
SS
3734
3735 return (1);
3736}
3737
3738void
96baa820 3739restore_inferior_status (struct inferior_status *inf_status)
c906108c
SS
3740{
3741 stop_signal = inf_status->stop_signal;
3742 stop_pc = inf_status->stop_pc;
3743 stop_step = inf_status->stop_step;
3744 stop_stack_dummy = inf_status->stop_stack_dummy;
3745 stopped_by_random_signal = inf_status->stopped_by_random_signal;
ca67fcb8 3746 stepping_over_breakpoint = inf_status->stepping_over_breakpoint;
c906108c
SS
3747 step_range_start = inf_status->step_range_start;
3748 step_range_end = inf_status->step_range_end;
aa0cd9c1 3749 step_frame_id = inf_status->step_frame_id;
c906108c
SS
3750 step_over_calls = inf_status->step_over_calls;
3751 stop_after_trap = inf_status->stop_after_trap;
c0236d92 3752 stop_soon = inf_status->stop_soon;
c906108c
SS
3753 bpstat_clear (&stop_bpstat);
3754 stop_bpstat = inf_status->stop_bpstat;
3755 breakpoint_proceeded = inf_status->breakpoint_proceeded;
3756 proceed_to_finish = inf_status->proceed_to_finish;
3757
c906108c
SS
3758 /* The inferior can be gone if the user types "print exit(0)"
3759 (and perhaps other times). */
3760 if (target_has_execution)
72cec141 3761 /* NB: The register write goes through to the target. */
594f7785 3762 regcache_cpy (get_current_regcache (), inf_status->registers);
72cec141 3763 regcache_xfree (inf_status->registers);
c906108c 3764
c906108c
SS
3765 /* FIXME: If we are being called after stopping in a function which
3766 is called from gdb, we should not be trying to restore the
3767 selected frame; it just prints a spurious error message (The
3768 message is useful, however, in detecting bugs in gdb (like if gdb
3769 clobbers the stack)). In fact, should we be restoring the
3770 inferior status at all in that case? . */
3771
3772 if (target_has_stack && inf_status->restore_stack_info)
3773 {
c906108c 3774 /* The point of catch_errors is that if the stack is clobbered,
101dcfbe
AC
3775 walking the stack might encounter a garbage pointer and
3776 error() trying to dereference it. */
488f131b
JB
3777 if (catch_errors
3778 (restore_selected_frame, &inf_status->selected_frame_id,
3779 "Unable to restore previously selected frame:\n",
3780 RETURN_MASK_ERROR) == 0)
c906108c
SS
3781 /* Error in restoring the selected frame. Select the innermost
3782 frame. */
0f7d239c 3783 select_frame (get_current_frame ());
c906108c
SS
3784
3785 }
c906108c 3786
72cec141 3787 xfree (inf_status);
7a292a7a 3788}
c906108c 3789
74b7792f
AC
3790static void
3791do_restore_inferior_status_cleanup (void *sts)
3792{
3793 restore_inferior_status (sts);
3794}
3795
3796struct cleanup *
3797make_cleanup_restore_inferior_status (struct inferior_status *inf_status)
3798{
3799 return make_cleanup (do_restore_inferior_status_cleanup, inf_status);
3800}
3801
c906108c 3802void
96baa820 3803discard_inferior_status (struct inferior_status *inf_status)
7a292a7a
SS
3804{
3805 /* See save_inferior_status for info on stop_bpstat. */
3806 bpstat_clear (&inf_status->stop_bpstat);
72cec141 3807 regcache_xfree (inf_status->registers);
72cec141 3808 xfree (inf_status);
7a292a7a
SS
3809}
3810
47932f85
DJ
3811int
3812inferior_has_forked (int pid, int *child_pid)
3813{
3814 struct target_waitstatus last;
3815 ptid_t last_ptid;
3816
3817 get_last_target_status (&last_ptid, &last);
3818
3819 if (last.kind != TARGET_WAITKIND_FORKED)
3820 return 0;
3821
3822 if (ptid_get_pid (last_ptid) != pid)
3823 return 0;
3824
3825 *child_pid = last.value.related_pid;
3826 return 1;
3827}
3828
3829int
3830inferior_has_vforked (int pid, int *child_pid)
3831{
3832 struct target_waitstatus last;
3833 ptid_t last_ptid;
3834
3835 get_last_target_status (&last_ptid, &last);
3836
3837 if (last.kind != TARGET_WAITKIND_VFORKED)
3838 return 0;
3839
3840 if (ptid_get_pid (last_ptid) != pid)
3841 return 0;
3842
3843 *child_pid = last.value.related_pid;
3844 return 1;
3845}
3846
3847int
3848inferior_has_execd (int pid, char **execd_pathname)
3849{
3850 struct target_waitstatus last;
3851 ptid_t last_ptid;
3852
3853 get_last_target_status (&last_ptid, &last);
3854
3855 if (last.kind != TARGET_WAITKIND_EXECD)
3856 return 0;
3857
3858 if (ptid_get_pid (last_ptid) != pid)
3859 return 0;
3860
3861 *execd_pathname = xstrdup (last.value.execd_pathname);
3862 return 1;
3863}
3864
ca6724c1
KB
3865/* Oft used ptids */
3866ptid_t null_ptid;
3867ptid_t minus_one_ptid;
3868
3869/* Create a ptid given the necessary PID, LWP, and TID components. */
488f131b 3870
ca6724c1
KB
3871ptid_t
3872ptid_build (int pid, long lwp, long tid)
3873{
3874 ptid_t ptid;
3875
3876 ptid.pid = pid;
3877 ptid.lwp = lwp;
3878 ptid.tid = tid;
3879 return ptid;
3880}
3881
3882/* Create a ptid from just a pid. */
3883
3884ptid_t
3885pid_to_ptid (int pid)
3886{
3887 return ptid_build (pid, 0, 0);
3888}
3889
3890/* Fetch the pid (process id) component from a ptid. */
3891
3892int
3893ptid_get_pid (ptid_t ptid)
3894{
3895 return ptid.pid;
3896}
3897
3898/* Fetch the lwp (lightweight process) component from a ptid. */
3899
3900long
3901ptid_get_lwp (ptid_t ptid)
3902{
3903 return ptid.lwp;
3904}
3905
3906/* Fetch the tid (thread id) component from a ptid. */
3907
3908long
3909ptid_get_tid (ptid_t ptid)
3910{
3911 return ptid.tid;
3912}
3913
3914/* ptid_equal() is used to test equality of two ptids. */
3915
3916int
3917ptid_equal (ptid_t ptid1, ptid_t ptid2)
3918{
3919 return (ptid1.pid == ptid2.pid && ptid1.lwp == ptid2.lwp
488f131b 3920 && ptid1.tid == ptid2.tid);
ca6724c1
KB
3921}
3922
3923/* restore_inferior_ptid() will be used by the cleanup machinery
3924 to restore the inferior_ptid value saved in a call to
3925 save_inferior_ptid(). */
ce696e05
KB
3926
3927static void
3928restore_inferior_ptid (void *arg)
3929{
3930 ptid_t *saved_ptid_ptr = arg;
3931 inferior_ptid = *saved_ptid_ptr;
3932 xfree (arg);
3933}
3934
3935/* Save the value of inferior_ptid so that it may be restored by a
3936 later call to do_cleanups(). Returns the struct cleanup pointer
3937 needed for later doing the cleanup. */
3938
3939struct cleanup *
3940save_inferior_ptid (void)
3941{
3942 ptid_t *saved_ptid_ptr;
3943
3944 saved_ptid_ptr = xmalloc (sizeof (ptid_t));
3945 *saved_ptid_ptr = inferior_ptid;
3946 return make_cleanup (restore_inferior_ptid, saved_ptid_ptr);
3947}
c5aa993b 3948\f
488f131b 3949
c906108c 3950void
96baa820 3951_initialize_infrun (void)
c906108c 3952{
52f0bd74
AC
3953 int i;
3954 int numsigs;
c906108c
SS
3955 struct cmd_list_element *c;
3956
1bedd215
AC
3957 add_info ("signals", signals_info, _("\
3958What debugger does when program gets various signals.\n\
3959Specify a signal as argument to print info on that signal only."));
c906108c
SS
3960 add_info_alias ("handle", "signals", 0);
3961
1bedd215
AC
3962 add_com ("handle", class_run, handle_command, _("\
3963Specify how to handle a signal.\n\
c906108c
SS
3964Args are signals and actions to apply to those signals.\n\
3965Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
3966from 1-15 are allowed for compatibility with old versions of GDB.\n\
3967Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
3968The special arg \"all\" is recognized to mean all signals except those\n\
1bedd215
AC
3969used by the debugger, typically SIGTRAP and SIGINT.\n\
3970Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
c906108c
SS
3971\"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
3972Stop means reenter debugger if this signal happens (implies print).\n\
3973Print means print a message if this signal happens.\n\
3974Pass means let program see this signal; otherwise program doesn't know.\n\
3975Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
1bedd215 3976Pass and Stop may be combined."));
c906108c
SS
3977 if (xdb_commands)
3978 {
1bedd215
AC
3979 add_com ("lz", class_info, signals_info, _("\
3980What debugger does when program gets various signals.\n\
3981Specify a signal as argument to print info on that signal only."));
3982 add_com ("z", class_run, xdb_handle_command, _("\
3983Specify how to handle a signal.\n\
c906108c
SS
3984Args are signals and actions to apply to those signals.\n\
3985Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
3986from 1-15 are allowed for compatibility with old versions of GDB.\n\
3987Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
3988The special arg \"all\" is recognized to mean all signals except those\n\
1bedd215
AC
3989used by the debugger, typically SIGTRAP and SIGINT.\n\
3990Recognized actions include \"s\" (toggles between stop and nostop), \n\
c906108c
SS
3991\"r\" (toggles between print and noprint), \"i\" (toggles between pass and \
3992nopass), \"Q\" (noprint)\n\
3993Stop means reenter debugger if this signal happens (implies print).\n\
3994Print means print a message if this signal happens.\n\
3995Pass means let program see this signal; otherwise program doesn't know.\n\
3996Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
1bedd215 3997Pass and Stop may be combined."));
c906108c
SS
3998 }
3999
4000 if (!dbx_commands)
1a966eab
AC
4001 stop_command = add_cmd ("stop", class_obscure,
4002 not_just_help_class_command, _("\
4003There is no `stop' command, but you can set a hook on `stop'.\n\
c906108c 4004This allows you to set a list of commands to be run each time execution\n\
1a966eab 4005of the program stops."), &cmdlist);
c906108c 4006
85c07804
AC
4007 add_setshow_zinteger_cmd ("infrun", class_maintenance, &debug_infrun, _("\
4008Set inferior debugging."), _("\
4009Show inferior debugging."), _("\
4010When non-zero, inferior specific debugging is enabled."),
4011 NULL,
920d2a44 4012 show_debug_infrun,
85c07804 4013 &setdebuglist, &showdebuglist);
527159b7 4014
c906108c 4015 numsigs = (int) TARGET_SIGNAL_LAST;
488f131b 4016 signal_stop = (unsigned char *) xmalloc (sizeof (signal_stop[0]) * numsigs);
c906108c
SS
4017 signal_print = (unsigned char *)
4018 xmalloc (sizeof (signal_print[0]) * numsigs);
4019 signal_program = (unsigned char *)
4020 xmalloc (sizeof (signal_program[0]) * numsigs);
4021 for (i = 0; i < numsigs; i++)
4022 {
4023 signal_stop[i] = 1;
4024 signal_print[i] = 1;
4025 signal_program[i] = 1;
4026 }
4027
4028 /* Signals caused by debugger's own actions
4029 should not be given to the program afterwards. */
4030 signal_program[TARGET_SIGNAL_TRAP] = 0;
4031 signal_program[TARGET_SIGNAL_INT] = 0;
4032
4033 /* Signals that are not errors should not normally enter the debugger. */
4034 signal_stop[TARGET_SIGNAL_ALRM] = 0;
4035 signal_print[TARGET_SIGNAL_ALRM] = 0;
4036 signal_stop[TARGET_SIGNAL_VTALRM] = 0;
4037 signal_print[TARGET_SIGNAL_VTALRM] = 0;
4038 signal_stop[TARGET_SIGNAL_PROF] = 0;
4039 signal_print[TARGET_SIGNAL_PROF] = 0;
4040 signal_stop[TARGET_SIGNAL_CHLD] = 0;
4041 signal_print[TARGET_SIGNAL_CHLD] = 0;
4042 signal_stop[TARGET_SIGNAL_IO] = 0;
4043 signal_print[TARGET_SIGNAL_IO] = 0;
4044 signal_stop[TARGET_SIGNAL_POLL] = 0;
4045 signal_print[TARGET_SIGNAL_POLL] = 0;
4046 signal_stop[TARGET_SIGNAL_URG] = 0;
4047 signal_print[TARGET_SIGNAL_URG] = 0;
4048 signal_stop[TARGET_SIGNAL_WINCH] = 0;
4049 signal_print[TARGET_SIGNAL_WINCH] = 0;
4050
cd0fc7c3
SS
4051 /* These signals are used internally by user-level thread
4052 implementations. (See signal(5) on Solaris.) Like the above
4053 signals, a healthy program receives and handles them as part of
4054 its normal operation. */
4055 signal_stop[TARGET_SIGNAL_LWP] = 0;
4056 signal_print[TARGET_SIGNAL_LWP] = 0;
4057 signal_stop[TARGET_SIGNAL_WAITING] = 0;
4058 signal_print[TARGET_SIGNAL_WAITING] = 0;
4059 signal_stop[TARGET_SIGNAL_CANCEL] = 0;
4060 signal_print[TARGET_SIGNAL_CANCEL] = 0;
4061
85c07804
AC
4062 add_setshow_zinteger_cmd ("stop-on-solib-events", class_support,
4063 &stop_on_solib_events, _("\
4064Set stopping for shared library events."), _("\
4065Show stopping for shared library events."), _("\
c906108c
SS
4066If nonzero, gdb will give control to the user when the dynamic linker\n\
4067notifies gdb of shared library events. The most common event of interest\n\
85c07804
AC
4068to the user would be loading/unloading of a new library."),
4069 NULL,
920d2a44 4070 show_stop_on_solib_events,
85c07804 4071 &setlist, &showlist);
c906108c 4072
7ab04401
AC
4073 add_setshow_enum_cmd ("follow-fork-mode", class_run,
4074 follow_fork_mode_kind_names,
4075 &follow_fork_mode_string, _("\
4076Set debugger response to a program call of fork or vfork."), _("\
4077Show debugger response to a program call of fork or vfork."), _("\
c906108c
SS
4078A fork or vfork creates a new process. follow-fork-mode can be:\n\
4079 parent - the original process is debugged after a fork\n\
4080 child - the new process is debugged after a fork\n\
ea1dd7bc 4081The unfollowed process will continue to run.\n\
7ab04401
AC
4082By default, the debugger will follow the parent process."),
4083 NULL,
920d2a44 4084 show_follow_fork_mode_string,
7ab04401
AC
4085 &setlist, &showlist);
4086
4087 add_setshow_enum_cmd ("scheduler-locking", class_run,
4088 scheduler_enums, &scheduler_mode, _("\
4089Set mode for locking scheduler during execution."), _("\
4090Show mode for locking scheduler during execution."), _("\
c906108c
SS
4091off == no locking (threads may preempt at any time)\n\
4092on == full locking (no thread except the current thread may run)\n\
4093step == scheduler locked during every single-step operation.\n\
4094 In this mode, no other thread may run during a step command.\n\
7ab04401
AC
4095 Other threads may run while stepping over a function call ('next')."),
4096 set_schedlock_func, /* traps on target vector */
920d2a44 4097 show_scheduler_mode,
7ab04401 4098 &setlist, &showlist);
5fbbeb29 4099
5bf193a2
AC
4100 add_setshow_boolean_cmd ("step-mode", class_run, &step_stop_if_no_debug, _("\
4101Set mode of the step operation."), _("\
4102Show mode of the step operation."), _("\
4103When set, doing a step over a function without debug line information\n\
4104will stop at the first instruction of that function. Otherwise, the\n\
4105function is skipped and the step command stops at a different source line."),
4106 NULL,
920d2a44 4107 show_step_stop_if_no_debug,
5bf193a2 4108 &setlist, &showlist);
ca6724c1
KB
4109
4110 /* ptid initializations */
4111 null_ptid = ptid_build (0, 0, 0);
4112 minus_one_ptid = ptid_build (-1, 0, 0);
4113 inferior_ptid = null_ptid;
4114 target_last_wait_ptid = minus_one_ptid;
c906108c 4115}
This page took 1.021973 seconds and 4 git commands to generate.