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