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