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