2011-05-26 Pedro Alves <pedro@codesourcery.com>
[deliverable/binutils-gdb.git] / gdb / infrun.c
CommitLineData
ca557f44
AC
1/* Target-struct-independent code to start (run) and stop an inferior
2 process.
8926118c 3
6aba47ca 4 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
9b254dd1 5 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
7b6bb8da 6 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
c906108c 7
c5aa993b 8 This file is part of GDB.
c906108c 9
c5aa993b
JM
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
a9762ec7 12 the Free Software Foundation; either version 3 of the License, or
c5aa993b 13 (at your option) any later version.
c906108c 14
c5aa993b
JM
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
c906108c 19
c5aa993b 20 You should have received a copy of the GNU General Public License
a9762ec7 21 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
22
23#include "defs.h"
24#include "gdb_string.h"
25#include <ctype.h>
26#include "symtab.h"
27#include "frame.h"
28#include "inferior.h"
60250e8b 29#include "exceptions.h"
c906108c 30#include "breakpoint.h"
03f2053f 31#include "gdb_wait.h"
c906108c
SS
32#include "gdbcore.h"
33#include "gdbcmd.h"
210661e7 34#include "cli/cli-script.h"
c906108c
SS
35#include "target.h"
36#include "gdbthread.h"
37#include "annotate.h"
1adeb98a 38#include "symfile.h"
7a292a7a 39#include "top.h"
c906108c 40#include <signal.h>
2acceee2 41#include "inf-loop.h"
4e052eda 42#include "regcache.h"
fd0407d6 43#include "value.h"
06600e06 44#include "observer.h"
f636b87d 45#include "language.h"
a77053c2 46#include "solib.h"
f17517ea 47#include "main.h"
186c406b
TT
48#include "dictionary.h"
49#include "block.h"
9f976b41 50#include "gdb_assert.h"
034dad6f 51#include "mi/mi-common.h"
4f8d22e3 52#include "event-top.h"
96429cc8 53#include "record.h"
edb3359d 54#include "inline-frame.h"
4efc6507 55#include "jit.h"
06cd862c 56#include "tracepoint.h"
c906108c
SS
57
58/* Prototypes for local functions */
59
96baa820 60static void signals_info (char *, int);
c906108c 61
96baa820 62static void handle_command (char *, int);
c906108c 63
96baa820 64static void sig_print_info (enum target_signal);
c906108c 65
96baa820 66static void sig_print_header (void);
c906108c 67
74b7792f 68static void resume_cleanups (void *);
c906108c 69
96baa820 70static int hook_stop_stub (void *);
c906108c 71
96baa820
JM
72static int restore_selected_frame (void *);
73
4ef3f3be 74static int follow_fork (void);
96baa820
JM
75
76static void set_schedlock_func (char *args, int from_tty,
488f131b 77 struct cmd_list_element *c);
96baa820 78
a289b8f6
JK
79static int currently_stepping (struct thread_info *tp);
80
b3444185
PA
81static int currently_stepping_or_nexting_callback (struct thread_info *tp,
82 void *data);
a7212384 83
96baa820
JM
84static void xdb_handle_command (char *args, int from_tty);
85
6a6b96b9 86static int prepare_to_proceed (int);
ea67f13b 87
33d62d64
JK
88static void print_exited_reason (int exitstatus);
89
90static void print_signal_exited_reason (enum target_signal siggnal);
91
92static void print_no_history_reason (void);
93
94static void print_signal_received_reason (enum target_signal siggnal);
95
96static void print_end_stepping_range_reason (void);
97
96baa820 98void _initialize_infrun (void);
43ff13b4 99
e58b0e63
PA
100void nullify_last_target_wait_ptid (void);
101
2c03e5be 102static void insert_hp_step_resume_breakpoint_at_frame (struct frame_info *);
2484c66b
UW
103
104static void insert_step_resume_breakpoint_at_caller (struct frame_info *);
105
2484c66b
UW
106static void insert_longjmp_resume_breakpoint (struct gdbarch *, CORE_ADDR);
107
5fbbeb29
CF
108/* When set, stop the 'step' command if we enter a function which has
109 no line number information. The normal behavior is that we step
110 over such function. */
111int step_stop_if_no_debug = 0;
920d2a44
AC
112static void
113show_step_stop_if_no_debug (struct ui_file *file, int from_tty,
114 struct cmd_list_element *c, const char *value)
115{
116 fprintf_filtered (file, _("Mode of the step operation is %s.\n"), value);
117}
5fbbeb29 118
1777feb0 119/* In asynchronous mode, but simulating synchronous execution. */
96baa820 120
43ff13b4
JM
121int sync_execution = 0;
122
c906108c
SS
123/* wait_for_inferior and normal_stop use this to notify the user
124 when the inferior stopped in a different thread than it had been
96baa820
JM
125 running in. */
126
39f77062 127static ptid_t previous_inferior_ptid;
7a292a7a 128
6c95b8df
PA
129/* Default behavior is to detach newly forked processes (legacy). */
130int detach_fork = 1;
131
237fc4c9
PA
132int debug_displaced = 0;
133static void
134show_debug_displaced (struct ui_file *file, int from_tty,
135 struct cmd_list_element *c, const char *value)
136{
137 fprintf_filtered (file, _("Displace stepping debugging is %s.\n"), value);
138}
139
628fe4e4 140int debug_infrun = 0;
920d2a44
AC
141static void
142show_debug_infrun (struct ui_file *file, int from_tty,
143 struct cmd_list_element *c, const char *value)
144{
145 fprintf_filtered (file, _("Inferior debugging is %s.\n"), value);
146}
527159b7 147
d4f3574e
SS
148/* If the program uses ELF-style shared libraries, then calls to
149 functions in shared libraries go through stubs, which live in a
150 table called the PLT (Procedure Linkage Table). The first time the
151 function is called, the stub sends control to the dynamic linker,
152 which looks up the function's real address, patches the stub so
153 that future calls will go directly to the function, and then passes
154 control to the function.
155
156 If we are stepping at the source level, we don't want to see any of
157 this --- we just want to skip over the stub and the dynamic linker.
158 The simple approach is to single-step until control leaves the
159 dynamic linker.
160
ca557f44
AC
161 However, on some systems (e.g., Red Hat's 5.2 distribution) the
162 dynamic linker calls functions in the shared C library, so you
163 can't tell from the PC alone whether the dynamic linker is still
164 running. In this case, we use a step-resume breakpoint to get us
165 past the dynamic linker, as if we were using "next" to step over a
166 function call.
d4f3574e 167
cfd8ab24 168 in_solib_dynsym_resolve_code() says whether we're in the dynamic
d4f3574e
SS
169 linker code or not. Normally, this means we single-step. However,
170 if SKIP_SOLIB_RESOLVER then returns non-zero, then its value is an
171 address where we can place a step-resume breakpoint to get past the
172 linker's symbol resolution function.
173
cfd8ab24 174 in_solib_dynsym_resolve_code() can generally be implemented in a
d4f3574e
SS
175 pretty portable way, by comparing the PC against the address ranges
176 of the dynamic linker's sections.
177
178 SKIP_SOLIB_RESOLVER is generally going to be system-specific, since
179 it depends on internal details of the dynamic linker. It's usually
180 not too hard to figure out where to put a breakpoint, but it
181 certainly isn't portable. SKIP_SOLIB_RESOLVER should do plenty of
182 sanity checking. If it can't figure things out, returning zero and
183 getting the (possibly confusing) stepping behavior is better than
184 signalling an error, which will obscure the change in the
185 inferior's state. */
c906108c 186
c906108c
SS
187/* This function returns TRUE if pc is the address of an instruction
188 that lies within the dynamic linker (such as the event hook, or the
189 dld itself).
190
191 This function must be used only when a dynamic linker event has
192 been caught, and the inferior is being stepped out of the hook, or
193 undefined results are guaranteed. */
194
195#ifndef SOLIB_IN_DYNAMIC_LINKER
196#define SOLIB_IN_DYNAMIC_LINKER(pid,pc) 0
197#endif
198
d914c394
SS
199/* "Observer mode" is somewhat like a more extreme version of
200 non-stop, in which all GDB operations that might affect the
201 target's execution have been disabled. */
202
203static int non_stop_1 = 0;
204
205int observer_mode = 0;
206static int observer_mode_1 = 0;
207
208static void
209set_observer_mode (char *args, int from_tty,
210 struct cmd_list_element *c)
211{
212 extern int pagination_enabled;
213
214 if (target_has_execution)
215 {
216 observer_mode_1 = observer_mode;
217 error (_("Cannot change this setting while the inferior is running."));
218 }
219
220 observer_mode = observer_mode_1;
221
222 may_write_registers = !observer_mode;
223 may_write_memory = !observer_mode;
224 may_insert_breakpoints = !observer_mode;
225 may_insert_tracepoints = !observer_mode;
226 /* We can insert fast tracepoints in or out of observer mode,
227 but enable them if we're going into this mode. */
228 if (observer_mode)
229 may_insert_fast_tracepoints = 1;
230 may_stop = !observer_mode;
231 update_target_permissions ();
232
233 /* Going *into* observer mode we must force non-stop, then
234 going out we leave it that way. */
235 if (observer_mode)
236 {
237 target_async_permitted = 1;
238 pagination_enabled = 0;
239 non_stop = non_stop_1 = 1;
240 }
241
242 if (from_tty)
243 printf_filtered (_("Observer mode is now %s.\n"),
244 (observer_mode ? "on" : "off"));
245}
246
247static void
248show_observer_mode (struct ui_file *file, int from_tty,
249 struct cmd_list_element *c, const char *value)
250{
251 fprintf_filtered (file, _("Observer mode is %s.\n"), value);
252}
253
254/* This updates the value of observer mode based on changes in
255 permissions. Note that we are deliberately ignoring the values of
256 may-write-registers and may-write-memory, since the user may have
257 reason to enable these during a session, for instance to turn on a
258 debugging-related global. */
259
260void
261update_observer_mode (void)
262{
263 int newval;
264
265 newval = (!may_insert_breakpoints
266 && !may_insert_tracepoints
267 && may_insert_fast_tracepoints
268 && !may_stop
269 && non_stop);
270
271 /* Let the user know if things change. */
272 if (newval != observer_mode)
273 printf_filtered (_("Observer mode is now %s.\n"),
274 (newval ? "on" : "off"));
275
276 observer_mode = observer_mode_1 = newval;
277}
c2c6d25f 278
c906108c
SS
279/* Tables of how to react to signals; the user sets them. */
280
281static unsigned char *signal_stop;
282static unsigned char *signal_print;
283static unsigned char *signal_program;
284
2455069d
UW
285/* Table of signals that the target may silently handle.
286 This is automatically determined from the flags above,
287 and simply cached here. */
288static unsigned char *signal_pass;
289
c906108c
SS
290#define SET_SIGS(nsigs,sigs,flags) \
291 do { \
292 int signum = (nsigs); \
293 while (signum-- > 0) \
294 if ((sigs)[signum]) \
295 (flags)[signum] = 1; \
296 } while (0)
297
298#define UNSET_SIGS(nsigs,sigs,flags) \
299 do { \
300 int signum = (nsigs); \
301 while (signum-- > 0) \
302 if ((sigs)[signum]) \
303 (flags)[signum] = 0; \
304 } while (0)
305
1777feb0 306/* Value to pass to target_resume() to cause all threads to resume. */
39f77062 307
edb3359d 308#define RESUME_ALL minus_one_ptid
c906108c
SS
309
310/* Command list pointer for the "stop" placeholder. */
311
312static struct cmd_list_element *stop_command;
313
c906108c
SS
314/* Function inferior was in as of last step command. */
315
316static struct symbol *step_start_function;
317
c906108c
SS
318/* Nonzero if we want to give control to the user when we're notified
319 of shared library events by the dynamic linker. */
628fe4e4 320int stop_on_solib_events;
920d2a44
AC
321static void
322show_stop_on_solib_events (struct ui_file *file, int from_tty,
323 struct cmd_list_element *c, const char *value)
324{
325 fprintf_filtered (file, _("Stopping for shared library events is %s.\n"),
326 value);
327}
c906108c 328
c906108c
SS
329/* Nonzero means expecting a trace trap
330 and should stop the inferior and return silently when it happens. */
331
332int stop_after_trap;
333
642fd101
DE
334/* Save register contents here when executing a "finish" command or are
335 about to pop a stack dummy frame, if-and-only-if proceed_to_finish is set.
c906108c
SS
336 Thus this contains the return value from the called function (assuming
337 values are returned in a register). */
338
72cec141 339struct regcache *stop_registers;
c906108c 340
c906108c
SS
341/* Nonzero after stop if current stack frame should be printed. */
342
343static int stop_print_frame;
344
e02bc4cc 345/* This is a cached copy of the pid/waitstatus of the last event
9a4105ab
AC
346 returned by target_wait()/deprecated_target_wait_hook(). This
347 information is returned by get_last_target_status(). */
39f77062 348static ptid_t target_last_wait_ptid;
e02bc4cc
DS
349static struct target_waitstatus target_last_waitstatus;
350
0d1e5fa7
PA
351static void context_switch (ptid_t ptid);
352
4e1c45ea 353void init_thread_stepping_state (struct thread_info *tss);
0d1e5fa7
PA
354
355void init_infwait_state (void);
a474d7c2 356
53904c9e
AC
357static const char follow_fork_mode_child[] = "child";
358static const char follow_fork_mode_parent[] = "parent";
359
488f131b 360static const char *follow_fork_mode_kind_names[] = {
53904c9e
AC
361 follow_fork_mode_child,
362 follow_fork_mode_parent,
363 NULL
ef346e04 364};
c906108c 365
53904c9e 366static const char *follow_fork_mode_string = follow_fork_mode_parent;
920d2a44
AC
367static void
368show_follow_fork_mode_string (struct ui_file *file, int from_tty,
369 struct cmd_list_element *c, const char *value)
370{
3e43a32a
MS
371 fprintf_filtered (file,
372 _("Debugger response to a program "
373 "call of fork or vfork is \"%s\".\n"),
920d2a44
AC
374 value);
375}
c906108c
SS
376\f
377
e58b0e63
PA
378/* Tell the target to follow the fork we're stopped at. Returns true
379 if the inferior should be resumed; false, if the target for some
380 reason decided it's best not to resume. */
381
6604731b 382static int
4ef3f3be 383follow_fork (void)
c906108c 384{
ea1dd7bc 385 int follow_child = (follow_fork_mode_string == follow_fork_mode_child);
e58b0e63
PA
386 int should_resume = 1;
387 struct thread_info *tp;
388
389 /* Copy user stepping state to the new inferior thread. FIXME: the
390 followed fork child thread should have a copy of most of the
4e3990f4
DE
391 parent thread structure's run control related fields, not just these.
392 Initialized to avoid "may be used uninitialized" warnings from gcc. */
393 struct breakpoint *step_resume_breakpoint = NULL;
186c406b 394 struct breakpoint *exception_resume_breakpoint = NULL;
4e3990f4
DE
395 CORE_ADDR step_range_start = 0;
396 CORE_ADDR step_range_end = 0;
397 struct frame_id step_frame_id = { 0 };
e58b0e63
PA
398
399 if (!non_stop)
400 {
401 ptid_t wait_ptid;
402 struct target_waitstatus wait_status;
403
404 /* Get the last target status returned by target_wait(). */
405 get_last_target_status (&wait_ptid, &wait_status);
406
407 /* If not stopped at a fork event, then there's nothing else to
408 do. */
409 if (wait_status.kind != TARGET_WAITKIND_FORKED
410 && wait_status.kind != TARGET_WAITKIND_VFORKED)
411 return 1;
412
413 /* Check if we switched over from WAIT_PTID, since the event was
414 reported. */
415 if (!ptid_equal (wait_ptid, minus_one_ptid)
416 && !ptid_equal (inferior_ptid, wait_ptid))
417 {
418 /* We did. Switch back to WAIT_PTID thread, to tell the
419 target to follow it (in either direction). We'll
420 afterwards refuse to resume, and inform the user what
421 happened. */
422 switch_to_thread (wait_ptid);
423 should_resume = 0;
424 }
425 }
426
427 tp = inferior_thread ();
428
429 /* If there were any forks/vforks that were caught and are now to be
430 followed, then do so now. */
431 switch (tp->pending_follow.kind)
432 {
433 case TARGET_WAITKIND_FORKED:
434 case TARGET_WAITKIND_VFORKED:
435 {
436 ptid_t parent, child;
437
438 /* If the user did a next/step, etc, over a fork call,
439 preserve the stepping state in the fork child. */
440 if (follow_child && should_resume)
441 {
8358c15c
JK
442 step_resume_breakpoint = clone_momentary_breakpoint
443 (tp->control.step_resume_breakpoint);
16c381f0
JK
444 step_range_start = tp->control.step_range_start;
445 step_range_end = tp->control.step_range_end;
446 step_frame_id = tp->control.step_frame_id;
186c406b
TT
447 exception_resume_breakpoint
448 = clone_momentary_breakpoint (tp->control.exception_resume_breakpoint);
e58b0e63
PA
449
450 /* For now, delete the parent's sr breakpoint, otherwise,
451 parent/child sr breakpoints are considered duplicates,
452 and the child version will not be installed. Remove
453 this when the breakpoints module becomes aware of
454 inferiors and address spaces. */
455 delete_step_resume_breakpoint (tp);
16c381f0
JK
456 tp->control.step_range_start = 0;
457 tp->control.step_range_end = 0;
458 tp->control.step_frame_id = null_frame_id;
186c406b 459 delete_exception_resume_breakpoint (tp);
e58b0e63
PA
460 }
461
462 parent = inferior_ptid;
463 child = tp->pending_follow.value.related_pid;
464
465 /* Tell the target to do whatever is necessary to follow
466 either parent or child. */
467 if (target_follow_fork (follow_child))
468 {
469 /* Target refused to follow, or there's some other reason
470 we shouldn't resume. */
471 should_resume = 0;
472 }
473 else
474 {
475 /* This pending follow fork event is now handled, one way
476 or another. The previous selected thread may be gone
477 from the lists by now, but if it is still around, need
478 to clear the pending follow request. */
e09875d4 479 tp = find_thread_ptid (parent);
e58b0e63
PA
480 if (tp)
481 tp->pending_follow.kind = TARGET_WAITKIND_SPURIOUS;
482
483 /* This makes sure we don't try to apply the "Switched
484 over from WAIT_PID" logic above. */
485 nullify_last_target_wait_ptid ();
486
1777feb0 487 /* If we followed the child, switch to it... */
e58b0e63
PA
488 if (follow_child)
489 {
490 switch_to_thread (child);
491
492 /* ... and preserve the stepping state, in case the
493 user was stepping over the fork call. */
494 if (should_resume)
495 {
496 tp = inferior_thread ();
8358c15c
JK
497 tp->control.step_resume_breakpoint
498 = step_resume_breakpoint;
16c381f0
JK
499 tp->control.step_range_start = step_range_start;
500 tp->control.step_range_end = step_range_end;
501 tp->control.step_frame_id = step_frame_id;
186c406b
TT
502 tp->control.exception_resume_breakpoint
503 = exception_resume_breakpoint;
e58b0e63
PA
504 }
505 else
506 {
507 /* If we get here, it was because we're trying to
508 resume from a fork catchpoint, but, the user
509 has switched threads away from the thread that
510 forked. In that case, the resume command
511 issued is most likely not applicable to the
512 child, so just warn, and refuse to resume. */
3e43a32a
MS
513 warning (_("Not resuming: switched threads "
514 "before following fork child.\n"));
e58b0e63
PA
515 }
516
517 /* Reset breakpoints in the child as appropriate. */
518 follow_inferior_reset_breakpoints ();
519 }
520 else
521 switch_to_thread (parent);
522 }
523 }
524 break;
525 case TARGET_WAITKIND_SPURIOUS:
526 /* Nothing to follow. */
527 break;
528 default:
529 internal_error (__FILE__, __LINE__,
530 "Unexpected pending_follow.kind %d\n",
531 tp->pending_follow.kind);
532 break;
533 }
c906108c 534
e58b0e63 535 return should_resume;
c906108c
SS
536}
537
6604731b
DJ
538void
539follow_inferior_reset_breakpoints (void)
c906108c 540{
4e1c45ea
PA
541 struct thread_info *tp = inferior_thread ();
542
6604731b
DJ
543 /* Was there a step_resume breakpoint? (There was if the user
544 did a "next" at the fork() call.) If so, explicitly reset its
545 thread number.
546
547 step_resumes are a form of bp that are made to be per-thread.
548 Since we created the step_resume bp when the parent process
549 was being debugged, and now are switching to the child process,
550 from the breakpoint package's viewpoint, that's a switch of
551 "threads". We must update the bp's notion of which thread
552 it is for, or it'll be ignored when it triggers. */
553
8358c15c
JK
554 if (tp->control.step_resume_breakpoint)
555 breakpoint_re_set_thread (tp->control.step_resume_breakpoint);
6604731b 556
186c406b
TT
557 if (tp->control.exception_resume_breakpoint)
558 breakpoint_re_set_thread (tp->control.exception_resume_breakpoint);
559
6604731b
DJ
560 /* Reinsert all breakpoints in the child. The user may have set
561 breakpoints after catching the fork, in which case those
562 were never set in the child, but only in the parent. This makes
563 sure the inserted breakpoints match the breakpoint list. */
564
565 breakpoint_re_set ();
566 insert_breakpoints ();
c906108c 567}
c906108c 568
6c95b8df
PA
569/* The child has exited or execed: resume threads of the parent the
570 user wanted to be executing. */
571
572static int
573proceed_after_vfork_done (struct thread_info *thread,
574 void *arg)
575{
576 int pid = * (int *) arg;
577
578 if (ptid_get_pid (thread->ptid) == pid
579 && is_running (thread->ptid)
580 && !is_executing (thread->ptid)
581 && !thread->stop_requested
16c381f0 582 && thread->suspend.stop_signal == TARGET_SIGNAL_0)
6c95b8df
PA
583 {
584 if (debug_infrun)
585 fprintf_unfiltered (gdb_stdlog,
586 "infrun: resuming vfork parent thread %s\n",
587 target_pid_to_str (thread->ptid));
588
589 switch_to_thread (thread->ptid);
590 clear_proceed_status ();
591 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
592 }
593
594 return 0;
595}
596
597/* Called whenever we notice an exec or exit event, to handle
598 detaching or resuming a vfork parent. */
599
600static void
601handle_vfork_child_exec_or_exit (int exec)
602{
603 struct inferior *inf = current_inferior ();
604
605 if (inf->vfork_parent)
606 {
607 int resume_parent = -1;
608
609 /* This exec or exit marks the end of the shared memory region
610 between the parent and the child. If the user wanted to
611 detach from the parent, now is the time. */
612
613 if (inf->vfork_parent->pending_detach)
614 {
615 struct thread_info *tp;
616 struct cleanup *old_chain;
617 struct program_space *pspace;
618 struct address_space *aspace;
619
1777feb0 620 /* follow-fork child, detach-on-fork on. */
6c95b8df
PA
621
622 old_chain = make_cleanup_restore_current_thread ();
623
624 /* We're letting loose of the parent. */
625 tp = any_live_thread_of_process (inf->vfork_parent->pid);
626 switch_to_thread (tp->ptid);
627
628 /* We're about to detach from the parent, which implicitly
629 removes breakpoints from its address space. There's a
630 catch here: we want to reuse the spaces for the child,
631 but, parent/child are still sharing the pspace at this
632 point, although the exec in reality makes the kernel give
633 the child a fresh set of new pages. The problem here is
634 that the breakpoints module being unaware of this, would
635 likely chose the child process to write to the parent
636 address space. Swapping the child temporarily away from
637 the spaces has the desired effect. Yes, this is "sort
638 of" a hack. */
639
640 pspace = inf->pspace;
641 aspace = inf->aspace;
642 inf->aspace = NULL;
643 inf->pspace = NULL;
644
645 if (debug_infrun || info_verbose)
646 {
647 target_terminal_ours ();
648
649 if (exec)
650 fprintf_filtered (gdb_stdlog,
3e43a32a
MS
651 "Detaching vfork parent process "
652 "%d after child exec.\n",
6c95b8df
PA
653 inf->vfork_parent->pid);
654 else
655 fprintf_filtered (gdb_stdlog,
3e43a32a
MS
656 "Detaching vfork parent process "
657 "%d after child exit.\n",
6c95b8df
PA
658 inf->vfork_parent->pid);
659 }
660
661 target_detach (NULL, 0);
662
663 /* Put it back. */
664 inf->pspace = pspace;
665 inf->aspace = aspace;
666
667 do_cleanups (old_chain);
668 }
669 else if (exec)
670 {
671 /* We're staying attached to the parent, so, really give the
672 child a new address space. */
673 inf->pspace = add_program_space (maybe_new_address_space ());
674 inf->aspace = inf->pspace->aspace;
675 inf->removable = 1;
676 set_current_program_space (inf->pspace);
677
678 resume_parent = inf->vfork_parent->pid;
679
680 /* Break the bonds. */
681 inf->vfork_parent->vfork_child = NULL;
682 }
683 else
684 {
685 struct cleanup *old_chain;
686 struct program_space *pspace;
687
688 /* If this is a vfork child exiting, then the pspace and
689 aspaces were shared with the parent. Since we're
690 reporting the process exit, we'll be mourning all that is
691 found in the address space, and switching to null_ptid,
692 preparing to start a new inferior. But, since we don't
693 want to clobber the parent's address/program spaces, we
694 go ahead and create a new one for this exiting
695 inferior. */
696
697 /* Switch to null_ptid, so that clone_program_space doesn't want
698 to read the selected frame of a dead process. */
699 old_chain = save_inferior_ptid ();
700 inferior_ptid = null_ptid;
701
702 /* This inferior is dead, so avoid giving the breakpoints
703 module the option to write through to it (cloning a
704 program space resets breakpoints). */
705 inf->aspace = NULL;
706 inf->pspace = NULL;
707 pspace = add_program_space (maybe_new_address_space ());
708 set_current_program_space (pspace);
709 inf->removable = 1;
710 clone_program_space (pspace, inf->vfork_parent->pspace);
711 inf->pspace = pspace;
712 inf->aspace = pspace->aspace;
713
714 /* Put back inferior_ptid. We'll continue mourning this
1777feb0 715 inferior. */
6c95b8df
PA
716 do_cleanups (old_chain);
717
718 resume_parent = inf->vfork_parent->pid;
719 /* Break the bonds. */
720 inf->vfork_parent->vfork_child = NULL;
721 }
722
723 inf->vfork_parent = NULL;
724
725 gdb_assert (current_program_space == inf->pspace);
726
727 if (non_stop && resume_parent != -1)
728 {
729 /* If the user wanted the parent to be running, let it go
730 free now. */
731 struct cleanup *old_chain = make_cleanup_restore_current_thread ();
732
733 if (debug_infrun)
3e43a32a
MS
734 fprintf_unfiltered (gdb_stdlog,
735 "infrun: resuming vfork parent process %d\n",
6c95b8df
PA
736 resume_parent);
737
738 iterate_over_threads (proceed_after_vfork_done, &resume_parent);
739
740 do_cleanups (old_chain);
741 }
742 }
743}
744
745/* Enum strings for "set|show displaced-stepping". */
746
747static const char follow_exec_mode_new[] = "new";
748static const char follow_exec_mode_same[] = "same";
749static const char *follow_exec_mode_names[] =
750{
751 follow_exec_mode_new,
752 follow_exec_mode_same,
753 NULL,
754};
755
756static const char *follow_exec_mode_string = follow_exec_mode_same;
757static void
758show_follow_exec_mode_string (struct ui_file *file, int from_tty,
759 struct cmd_list_element *c, const char *value)
760{
761 fprintf_filtered (file, _("Follow exec mode is \"%s\".\n"), value);
762}
763
1777feb0 764/* EXECD_PATHNAME is assumed to be non-NULL. */
1adeb98a 765
c906108c 766static void
3a3e9ee3 767follow_exec (ptid_t pid, char *execd_pathname)
c906108c 768{
4e1c45ea 769 struct thread_info *th = inferior_thread ();
6c95b8df 770 struct inferior *inf = current_inferior ();
7a292a7a 771
c906108c
SS
772 /* This is an exec event that we actually wish to pay attention to.
773 Refresh our symbol table to the newly exec'd program, remove any
774 momentary bp's, etc.
775
776 If there are breakpoints, they aren't really inserted now,
777 since the exec() transformed our inferior into a fresh set
778 of instructions.
779
780 We want to preserve symbolic breakpoints on the list, since
781 we have hopes that they can be reset after the new a.out's
782 symbol table is read.
783
784 However, any "raw" breakpoints must be removed from the list
785 (e.g., the solib bp's), since their address is probably invalid
786 now.
787
788 And, we DON'T want to call delete_breakpoints() here, since
789 that may write the bp's "shadow contents" (the instruction
790 value that was overwritten witha TRAP instruction). Since
1777feb0 791 we now have a new a.out, those shadow contents aren't valid. */
6c95b8df
PA
792
793 mark_breakpoints_out ();
794
c906108c
SS
795 update_breakpoints_after_exec ();
796
797 /* If there was one, it's gone now. We cannot truly step-to-next
1777feb0 798 statement through an exec(). */
8358c15c 799 th->control.step_resume_breakpoint = NULL;
186c406b 800 th->control.exception_resume_breakpoint = NULL;
16c381f0
JK
801 th->control.step_range_start = 0;
802 th->control.step_range_end = 0;
c906108c 803
a75724bc
PA
804 /* The target reports the exec event to the main thread, even if
805 some other thread does the exec, and even if the main thread was
806 already stopped --- if debugging in non-stop mode, it's possible
807 the user had the main thread held stopped in the previous image
808 --- release it now. This is the same behavior as step-over-exec
809 with scheduler-locking on in all-stop mode. */
810 th->stop_requested = 0;
811
1777feb0 812 /* What is this a.out's name? */
6c95b8df
PA
813 printf_unfiltered (_("%s is executing new program: %s\n"),
814 target_pid_to_str (inferior_ptid),
815 execd_pathname);
c906108c
SS
816
817 /* We've followed the inferior through an exec. Therefore, the
1777feb0 818 inferior has essentially been killed & reborn. */
7a292a7a 819
c906108c 820 gdb_flush (gdb_stdout);
6ca15a4b
PA
821
822 breakpoint_init_inferior (inf_execd);
e85a822c
DJ
823
824 if (gdb_sysroot && *gdb_sysroot)
825 {
826 char *name = alloca (strlen (gdb_sysroot)
827 + strlen (execd_pathname)
828 + 1);
abbb1732 829
e85a822c
DJ
830 strcpy (name, gdb_sysroot);
831 strcat (name, execd_pathname);
832 execd_pathname = name;
833 }
c906108c 834
cce9b6bf
PA
835 /* Reset the shared library package. This ensures that we get a
836 shlib event when the child reaches "_start", at which point the
837 dld will have had a chance to initialize the child. */
838 /* Also, loading a symbol file below may trigger symbol lookups, and
839 we don't want those to be satisfied by the libraries of the
840 previous incarnation of this process. */
841 no_shared_libraries (NULL, 0);
842
6c95b8df
PA
843 if (follow_exec_mode_string == follow_exec_mode_new)
844 {
845 struct program_space *pspace;
6c95b8df
PA
846
847 /* The user wants to keep the old inferior and program spaces
848 around. Create a new fresh one, and switch to it. */
849
850 inf = add_inferior (current_inferior ()->pid);
851 pspace = add_program_space (maybe_new_address_space ());
852 inf->pspace = pspace;
853 inf->aspace = pspace->aspace;
854
855 exit_inferior_num_silent (current_inferior ()->num);
856
857 set_current_inferior (inf);
858 set_current_program_space (pspace);
859 }
860
861 gdb_assert (current_program_space == inf->pspace);
862
1777feb0 863 /* That a.out is now the one to use. */
6c95b8df
PA
864 exec_file_attach (execd_pathname, 0);
865
c1e56572
JK
866 /* SYMFILE_DEFER_BP_RESET is used as the proper displacement for PIE
867 (Position Independent Executable) main symbol file will get applied by
868 solib_create_inferior_hook below. breakpoint_re_set would fail to insert
869 the breakpoints with the zero displacement. */
870
871 symbol_file_add (execd_pathname, SYMFILE_MAINLINE | SYMFILE_DEFER_BP_RESET,
872 NULL, 0);
873
874 set_initial_language ();
c906108c 875
7a292a7a 876#ifdef SOLIB_CREATE_INFERIOR_HOOK
39f77062 877 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
a77053c2 878#else
268a4a75 879 solib_create_inferior_hook (0);
7a292a7a 880#endif
c906108c 881
4efc6507
DE
882 jit_inferior_created_hook ();
883
c1e56572
JK
884 breakpoint_re_set ();
885
c906108c
SS
886 /* Reinsert all breakpoints. (Those which were symbolic have
887 been reset to the proper address in the new a.out, thanks
1777feb0 888 to symbol_file_command...). */
c906108c
SS
889 insert_breakpoints ();
890
891 /* The next resume of this inferior should bring it to the shlib
892 startup breakpoints. (If the user had also set bp's on
893 "main" from the old (parent) process, then they'll auto-
1777feb0 894 matically get reset there in the new process.). */
c906108c
SS
895}
896
897/* Non-zero if we just simulating a single-step. This is needed
898 because we cannot remove the breakpoints in the inferior process
899 until after the `wait' in `wait_for_inferior'. */
900static int singlestep_breakpoints_inserted_p = 0;
9f976b41
DJ
901
902/* The thread we inserted single-step breakpoints for. */
903static ptid_t singlestep_ptid;
904
fd48f117
DJ
905/* PC when we started this single-step. */
906static CORE_ADDR singlestep_pc;
907
9f976b41
DJ
908/* If another thread hit the singlestep breakpoint, we save the original
909 thread here so that we can resume single-stepping it later. */
910static ptid_t saved_singlestep_ptid;
911static int stepping_past_singlestep_breakpoint;
6a6b96b9 912
ca67fcb8
VP
913/* If not equal to null_ptid, this means that after stepping over breakpoint
914 is finished, we need to switch to deferred_step_ptid, and step it.
915
916 The use case is when one thread has hit a breakpoint, and then the user
1777feb0 917 has switched to another thread and issued 'step'. We need to step over
ca67fcb8
VP
918 breakpoint in the thread which hit the breakpoint, but then continue
919 stepping the thread user has selected. */
920static ptid_t deferred_step_ptid;
c906108c 921\f
237fc4c9
PA
922/* Displaced stepping. */
923
924/* In non-stop debugging mode, we must take special care to manage
925 breakpoints properly; in particular, the traditional strategy for
926 stepping a thread past a breakpoint it has hit is unsuitable.
927 'Displaced stepping' is a tactic for stepping one thread past a
928 breakpoint it has hit while ensuring that other threads running
929 concurrently will hit the breakpoint as they should.
930
931 The traditional way to step a thread T off a breakpoint in a
932 multi-threaded program in all-stop mode is as follows:
933
934 a0) Initially, all threads are stopped, and breakpoints are not
935 inserted.
936 a1) We single-step T, leaving breakpoints uninserted.
937 a2) We insert breakpoints, and resume all threads.
938
939 In non-stop debugging, however, this strategy is unsuitable: we
940 don't want to have to stop all threads in the system in order to
941 continue or step T past a breakpoint. Instead, we use displaced
942 stepping:
943
944 n0) Initially, T is stopped, other threads are running, and
945 breakpoints are inserted.
946 n1) We copy the instruction "under" the breakpoint to a separate
947 location, outside the main code stream, making any adjustments
948 to the instruction, register, and memory state as directed by
949 T's architecture.
950 n2) We single-step T over the instruction at its new location.
951 n3) We adjust the resulting register and memory state as directed
952 by T's architecture. This includes resetting T's PC to point
953 back into the main instruction stream.
954 n4) We resume T.
955
956 This approach depends on the following gdbarch methods:
957
958 - gdbarch_max_insn_length and gdbarch_displaced_step_location
959 indicate where to copy the instruction, and how much space must
960 be reserved there. We use these in step n1.
961
962 - gdbarch_displaced_step_copy_insn copies a instruction to a new
963 address, and makes any necessary adjustments to the instruction,
964 register contents, and memory. We use this in step n1.
965
966 - gdbarch_displaced_step_fixup adjusts registers and memory after
967 we have successfuly single-stepped the instruction, to yield the
968 same effect the instruction would have had if we had executed it
969 at its original address. We use this in step n3.
970
971 - gdbarch_displaced_step_free_closure provides cleanup.
972
973 The gdbarch_displaced_step_copy_insn and
974 gdbarch_displaced_step_fixup functions must be written so that
975 copying an instruction with gdbarch_displaced_step_copy_insn,
976 single-stepping across the copied instruction, and then applying
977 gdbarch_displaced_insn_fixup should have the same effects on the
978 thread's memory and registers as stepping the instruction in place
979 would have. Exactly which responsibilities fall to the copy and
980 which fall to the fixup is up to the author of those functions.
981
982 See the comments in gdbarch.sh for details.
983
984 Note that displaced stepping and software single-step cannot
985 currently be used in combination, although with some care I think
986 they could be made to. Software single-step works by placing
987 breakpoints on all possible subsequent instructions; if the
988 displaced instruction is a PC-relative jump, those breakpoints
989 could fall in very strange places --- on pages that aren't
990 executable, or at addresses that are not proper instruction
991 boundaries. (We do generally let other threads run while we wait
992 to hit the software single-step breakpoint, and they might
993 encounter such a corrupted instruction.) One way to work around
994 this would be to have gdbarch_displaced_step_copy_insn fully
995 simulate the effect of PC-relative instructions (and return NULL)
996 on architectures that use software single-stepping.
997
998 In non-stop mode, we can have independent and simultaneous step
999 requests, so more than one thread may need to simultaneously step
1000 over a breakpoint. The current implementation assumes there is
1001 only one scratch space per process. In this case, we have to
1002 serialize access to the scratch space. If thread A wants to step
1003 over a breakpoint, but we are currently waiting for some other
1004 thread to complete a displaced step, we leave thread A stopped and
1005 place it in the displaced_step_request_queue. Whenever a displaced
1006 step finishes, we pick the next thread in the queue and start a new
1007 displaced step operation on it. See displaced_step_prepare and
1008 displaced_step_fixup for details. */
1009
237fc4c9
PA
1010struct displaced_step_request
1011{
1012 ptid_t ptid;
1013 struct displaced_step_request *next;
1014};
1015
fc1cf338
PA
1016/* Per-inferior displaced stepping state. */
1017struct displaced_step_inferior_state
1018{
1019 /* Pointer to next in linked list. */
1020 struct displaced_step_inferior_state *next;
1021
1022 /* The process this displaced step state refers to. */
1023 int pid;
1024
1025 /* A queue of pending displaced stepping requests. One entry per
1026 thread that needs to do a displaced step. */
1027 struct displaced_step_request *step_request_queue;
1028
1029 /* If this is not null_ptid, this is the thread carrying out a
1030 displaced single-step in process PID. This thread's state will
1031 require fixing up once it has completed its step. */
1032 ptid_t step_ptid;
1033
1034 /* The architecture the thread had when we stepped it. */
1035 struct gdbarch *step_gdbarch;
1036
1037 /* The closure provided gdbarch_displaced_step_copy_insn, to be used
1038 for post-step cleanup. */
1039 struct displaced_step_closure *step_closure;
1040
1041 /* The address of the original instruction, and the copy we
1042 made. */
1043 CORE_ADDR step_original, step_copy;
1044
1045 /* Saved contents of copy area. */
1046 gdb_byte *step_saved_copy;
1047};
1048
1049/* The list of states of processes involved in displaced stepping
1050 presently. */
1051static struct displaced_step_inferior_state *displaced_step_inferior_states;
1052
1053/* Get the displaced stepping state of process PID. */
1054
1055static struct displaced_step_inferior_state *
1056get_displaced_stepping_state (int pid)
1057{
1058 struct displaced_step_inferior_state *state;
1059
1060 for (state = displaced_step_inferior_states;
1061 state != NULL;
1062 state = state->next)
1063 if (state->pid == pid)
1064 return state;
1065
1066 return NULL;
1067}
1068
1069/* Add a new displaced stepping state for process PID to the displaced
1070 stepping state list, or return a pointer to an already existing
1071 entry, if it already exists. Never returns NULL. */
1072
1073static struct displaced_step_inferior_state *
1074add_displaced_stepping_state (int pid)
1075{
1076 struct displaced_step_inferior_state *state;
1077
1078 for (state = displaced_step_inferior_states;
1079 state != NULL;
1080 state = state->next)
1081 if (state->pid == pid)
1082 return state;
237fc4c9 1083
fc1cf338
PA
1084 state = xcalloc (1, sizeof (*state));
1085 state->pid = pid;
1086 state->next = displaced_step_inferior_states;
1087 displaced_step_inferior_states = state;
237fc4c9 1088
fc1cf338
PA
1089 return state;
1090}
1091
a42244db
YQ
1092/* If inferior is in displaced stepping, and ADDR equals to starting address
1093 of copy area, return corresponding displaced_step_closure. Otherwise,
1094 return NULL. */
1095
1096struct displaced_step_closure*
1097get_displaced_step_closure_by_addr (CORE_ADDR addr)
1098{
1099 struct displaced_step_inferior_state *displaced
1100 = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
1101
1102 /* If checking the mode of displaced instruction in copy area. */
1103 if (displaced && !ptid_equal (displaced->step_ptid, null_ptid)
1104 && (displaced->step_copy == addr))
1105 return displaced->step_closure;
1106
1107 return NULL;
1108}
1109
fc1cf338 1110/* Remove the displaced stepping state of process PID. */
237fc4c9 1111
fc1cf338
PA
1112static void
1113remove_displaced_stepping_state (int pid)
1114{
1115 struct displaced_step_inferior_state *it, **prev_next_p;
237fc4c9 1116
fc1cf338
PA
1117 gdb_assert (pid != 0);
1118
1119 it = displaced_step_inferior_states;
1120 prev_next_p = &displaced_step_inferior_states;
1121 while (it)
1122 {
1123 if (it->pid == pid)
1124 {
1125 *prev_next_p = it->next;
1126 xfree (it);
1127 return;
1128 }
1129
1130 prev_next_p = &it->next;
1131 it = *prev_next_p;
1132 }
1133}
1134
1135static void
1136infrun_inferior_exit (struct inferior *inf)
1137{
1138 remove_displaced_stepping_state (inf->pid);
1139}
237fc4c9 1140
fff08868
HZ
1141/* Enum strings for "set|show displaced-stepping". */
1142
1143static const char can_use_displaced_stepping_auto[] = "auto";
1144static const char can_use_displaced_stepping_on[] = "on";
1145static const char can_use_displaced_stepping_off[] = "off";
1146static const char *can_use_displaced_stepping_enum[] =
1147{
1148 can_use_displaced_stepping_auto,
1149 can_use_displaced_stepping_on,
1150 can_use_displaced_stepping_off,
1151 NULL,
1152};
1153
1154/* If ON, and the architecture supports it, GDB will use displaced
1155 stepping to step over breakpoints. If OFF, or if the architecture
1156 doesn't support it, GDB will instead use the traditional
1157 hold-and-step approach. If AUTO (which is the default), GDB will
1158 decide which technique to use to step over breakpoints depending on
1159 which of all-stop or non-stop mode is active --- displaced stepping
1160 in non-stop mode; hold-and-step in all-stop mode. */
1161
1162static const char *can_use_displaced_stepping =
1163 can_use_displaced_stepping_auto;
1164
237fc4c9
PA
1165static void
1166show_can_use_displaced_stepping (struct ui_file *file, int from_tty,
1167 struct cmd_list_element *c,
1168 const char *value)
1169{
fff08868 1170 if (can_use_displaced_stepping == can_use_displaced_stepping_auto)
3e43a32a
MS
1171 fprintf_filtered (file,
1172 _("Debugger's willingness to use displaced stepping "
1173 "to step over breakpoints is %s (currently %s).\n"),
fff08868
HZ
1174 value, non_stop ? "on" : "off");
1175 else
3e43a32a
MS
1176 fprintf_filtered (file,
1177 _("Debugger's willingness to use displaced stepping "
1178 "to step over breakpoints is %s.\n"), value);
237fc4c9
PA
1179}
1180
fff08868
HZ
1181/* Return non-zero if displaced stepping can/should be used to step
1182 over breakpoints. */
1183
237fc4c9
PA
1184static int
1185use_displaced_stepping (struct gdbarch *gdbarch)
1186{
fff08868
HZ
1187 return (((can_use_displaced_stepping == can_use_displaced_stepping_auto
1188 && non_stop)
1189 || can_use_displaced_stepping == can_use_displaced_stepping_on)
96429cc8
HZ
1190 && gdbarch_displaced_step_copy_insn_p (gdbarch)
1191 && !RECORD_IS_USED);
237fc4c9
PA
1192}
1193
1194/* Clean out any stray displaced stepping state. */
1195static void
fc1cf338 1196displaced_step_clear (struct displaced_step_inferior_state *displaced)
237fc4c9
PA
1197{
1198 /* Indicate that there is no cleanup pending. */
fc1cf338 1199 displaced->step_ptid = null_ptid;
237fc4c9 1200
fc1cf338 1201 if (displaced->step_closure)
237fc4c9 1202 {
fc1cf338
PA
1203 gdbarch_displaced_step_free_closure (displaced->step_gdbarch,
1204 displaced->step_closure);
1205 displaced->step_closure = NULL;
237fc4c9
PA
1206 }
1207}
1208
1209static void
fc1cf338 1210displaced_step_clear_cleanup (void *arg)
237fc4c9 1211{
fc1cf338
PA
1212 struct displaced_step_inferior_state *state = arg;
1213
1214 displaced_step_clear (state);
237fc4c9
PA
1215}
1216
1217/* Dump LEN bytes at BUF in hex to FILE, followed by a newline. */
1218void
1219displaced_step_dump_bytes (struct ui_file *file,
1220 const gdb_byte *buf,
1221 size_t len)
1222{
1223 int i;
1224
1225 for (i = 0; i < len; i++)
1226 fprintf_unfiltered (file, "%02x ", buf[i]);
1227 fputs_unfiltered ("\n", file);
1228}
1229
1230/* Prepare to single-step, using displaced stepping.
1231
1232 Note that we cannot use displaced stepping when we have a signal to
1233 deliver. If we have a signal to deliver and an instruction to step
1234 over, then after the step, there will be no indication from the
1235 target whether the thread entered a signal handler or ignored the
1236 signal and stepped over the instruction successfully --- both cases
1237 result in a simple SIGTRAP. In the first case we mustn't do a
1238 fixup, and in the second case we must --- but we can't tell which.
1239 Comments in the code for 'random signals' in handle_inferior_event
1240 explain how we handle this case instead.
1241
1242 Returns 1 if preparing was successful -- this thread is going to be
1243 stepped now; or 0 if displaced stepping this thread got queued. */
1244static int
1245displaced_step_prepare (ptid_t ptid)
1246{
ad53cd71 1247 struct cleanup *old_cleanups, *ignore_cleanups;
237fc4c9
PA
1248 struct regcache *regcache = get_thread_regcache (ptid);
1249 struct gdbarch *gdbarch = get_regcache_arch (regcache);
1250 CORE_ADDR original, copy;
1251 ULONGEST len;
1252 struct displaced_step_closure *closure;
fc1cf338 1253 struct displaced_step_inferior_state *displaced;
237fc4c9
PA
1254
1255 /* We should never reach this function if the architecture does not
1256 support displaced stepping. */
1257 gdb_assert (gdbarch_displaced_step_copy_insn_p (gdbarch));
1258
fc1cf338
PA
1259 /* We have to displaced step one thread at a time, as we only have
1260 access to a single scratch space per inferior. */
237fc4c9 1261
fc1cf338
PA
1262 displaced = add_displaced_stepping_state (ptid_get_pid (ptid));
1263
1264 if (!ptid_equal (displaced->step_ptid, null_ptid))
237fc4c9
PA
1265 {
1266 /* Already waiting for a displaced step to finish. Defer this
1267 request and place in queue. */
1268 struct displaced_step_request *req, *new_req;
1269
1270 if (debug_displaced)
1271 fprintf_unfiltered (gdb_stdlog,
1272 "displaced: defering step of %s\n",
1273 target_pid_to_str (ptid));
1274
1275 new_req = xmalloc (sizeof (*new_req));
1276 new_req->ptid = ptid;
1277 new_req->next = NULL;
1278
fc1cf338 1279 if (displaced->step_request_queue)
237fc4c9 1280 {
fc1cf338 1281 for (req = displaced->step_request_queue;
237fc4c9
PA
1282 req && req->next;
1283 req = req->next)
1284 ;
1285 req->next = new_req;
1286 }
1287 else
fc1cf338 1288 displaced->step_request_queue = new_req;
237fc4c9
PA
1289
1290 return 0;
1291 }
1292 else
1293 {
1294 if (debug_displaced)
1295 fprintf_unfiltered (gdb_stdlog,
1296 "displaced: stepping %s now\n",
1297 target_pid_to_str (ptid));
1298 }
1299
fc1cf338 1300 displaced_step_clear (displaced);
237fc4c9 1301
ad53cd71
PA
1302 old_cleanups = save_inferior_ptid ();
1303 inferior_ptid = ptid;
1304
515630c5 1305 original = regcache_read_pc (regcache);
237fc4c9
PA
1306
1307 copy = gdbarch_displaced_step_location (gdbarch);
1308 len = gdbarch_max_insn_length (gdbarch);
1309
1310 /* Save the original contents of the copy area. */
fc1cf338 1311 displaced->step_saved_copy = xmalloc (len);
ad53cd71 1312 ignore_cleanups = make_cleanup (free_current_contents,
fc1cf338
PA
1313 &displaced->step_saved_copy);
1314 read_memory (copy, displaced->step_saved_copy, len);
237fc4c9
PA
1315 if (debug_displaced)
1316 {
5af949e3
UW
1317 fprintf_unfiltered (gdb_stdlog, "displaced: saved %s: ",
1318 paddress (gdbarch, copy));
fc1cf338
PA
1319 displaced_step_dump_bytes (gdb_stdlog,
1320 displaced->step_saved_copy,
1321 len);
237fc4c9
PA
1322 };
1323
1324 closure = gdbarch_displaced_step_copy_insn (gdbarch,
ad53cd71 1325 original, copy, regcache);
237fc4c9
PA
1326
1327 /* We don't support the fully-simulated case at present. */
1328 gdb_assert (closure);
1329
9f5a595d
UW
1330 /* Save the information we need to fix things up if the step
1331 succeeds. */
fc1cf338
PA
1332 displaced->step_ptid = ptid;
1333 displaced->step_gdbarch = gdbarch;
1334 displaced->step_closure = closure;
1335 displaced->step_original = original;
1336 displaced->step_copy = copy;
9f5a595d 1337
fc1cf338 1338 make_cleanup (displaced_step_clear_cleanup, displaced);
237fc4c9
PA
1339
1340 /* Resume execution at the copy. */
515630c5 1341 regcache_write_pc (regcache, copy);
237fc4c9 1342
ad53cd71
PA
1343 discard_cleanups (ignore_cleanups);
1344
1345 do_cleanups (old_cleanups);
237fc4c9
PA
1346
1347 if (debug_displaced)
5af949e3
UW
1348 fprintf_unfiltered (gdb_stdlog, "displaced: displaced pc to %s\n",
1349 paddress (gdbarch, copy));
237fc4c9 1350
237fc4c9
PA
1351 return 1;
1352}
1353
237fc4c9 1354static void
3e43a32a
MS
1355write_memory_ptid (ptid_t ptid, CORE_ADDR memaddr,
1356 const gdb_byte *myaddr, int len)
237fc4c9
PA
1357{
1358 struct cleanup *ptid_cleanup = save_inferior_ptid ();
abbb1732 1359
237fc4c9
PA
1360 inferior_ptid = ptid;
1361 write_memory (memaddr, myaddr, len);
1362 do_cleanups (ptid_cleanup);
1363}
1364
1365static void
1366displaced_step_fixup (ptid_t event_ptid, enum target_signal signal)
1367{
1368 struct cleanup *old_cleanups;
fc1cf338
PA
1369 struct displaced_step_inferior_state *displaced
1370 = get_displaced_stepping_state (ptid_get_pid (event_ptid));
1371
1372 /* Was any thread of this process doing a displaced step? */
1373 if (displaced == NULL)
1374 return;
237fc4c9
PA
1375
1376 /* Was this event for the pid we displaced? */
fc1cf338
PA
1377 if (ptid_equal (displaced->step_ptid, null_ptid)
1378 || ! ptid_equal (displaced->step_ptid, event_ptid))
237fc4c9
PA
1379 return;
1380
fc1cf338 1381 old_cleanups = make_cleanup (displaced_step_clear_cleanup, displaced);
237fc4c9
PA
1382
1383 /* Restore the contents of the copy area. */
1384 {
fc1cf338 1385 ULONGEST len = gdbarch_max_insn_length (displaced->step_gdbarch);
abbb1732 1386
fc1cf338
PA
1387 write_memory_ptid (displaced->step_ptid, displaced->step_copy,
1388 displaced->step_saved_copy, len);
237fc4c9 1389 if (debug_displaced)
5af949e3 1390 fprintf_unfiltered (gdb_stdlog, "displaced: restored %s\n",
fc1cf338
PA
1391 paddress (displaced->step_gdbarch,
1392 displaced->step_copy));
237fc4c9
PA
1393 }
1394
1395 /* Did the instruction complete successfully? */
1396 if (signal == TARGET_SIGNAL_TRAP)
1397 {
1398 /* Fix up the resulting state. */
fc1cf338
PA
1399 gdbarch_displaced_step_fixup (displaced->step_gdbarch,
1400 displaced->step_closure,
1401 displaced->step_original,
1402 displaced->step_copy,
1403 get_thread_regcache (displaced->step_ptid));
237fc4c9
PA
1404 }
1405 else
1406 {
1407 /* Since the instruction didn't complete, all we can do is
1408 relocate the PC. */
515630c5
UW
1409 struct regcache *regcache = get_thread_regcache (event_ptid);
1410 CORE_ADDR pc = regcache_read_pc (regcache);
abbb1732 1411
fc1cf338 1412 pc = displaced->step_original + (pc - displaced->step_copy);
515630c5 1413 regcache_write_pc (regcache, pc);
237fc4c9
PA
1414 }
1415
1416 do_cleanups (old_cleanups);
1417
fc1cf338 1418 displaced->step_ptid = null_ptid;
1c5cfe86 1419
237fc4c9 1420 /* Are there any pending displaced stepping requests? If so, run
fc1cf338
PA
1421 one now. Leave the state object around, since we're likely to
1422 need it again soon. */
1423 while (displaced->step_request_queue)
237fc4c9
PA
1424 {
1425 struct displaced_step_request *head;
1426 ptid_t ptid;
5af949e3 1427 struct regcache *regcache;
929dfd4f 1428 struct gdbarch *gdbarch;
1c5cfe86 1429 CORE_ADDR actual_pc;
6c95b8df 1430 struct address_space *aspace;
237fc4c9 1431
fc1cf338 1432 head = displaced->step_request_queue;
237fc4c9 1433 ptid = head->ptid;
fc1cf338 1434 displaced->step_request_queue = head->next;
237fc4c9
PA
1435 xfree (head);
1436
ad53cd71
PA
1437 context_switch (ptid);
1438
5af949e3
UW
1439 regcache = get_thread_regcache (ptid);
1440 actual_pc = regcache_read_pc (regcache);
6c95b8df 1441 aspace = get_regcache_aspace (regcache);
1c5cfe86 1442
6c95b8df 1443 if (breakpoint_here_p (aspace, actual_pc))
ad53cd71 1444 {
1c5cfe86
PA
1445 if (debug_displaced)
1446 fprintf_unfiltered (gdb_stdlog,
1447 "displaced: stepping queued %s now\n",
1448 target_pid_to_str (ptid));
1449
1450 displaced_step_prepare (ptid);
1451
929dfd4f
JB
1452 gdbarch = get_regcache_arch (regcache);
1453
1c5cfe86
PA
1454 if (debug_displaced)
1455 {
929dfd4f 1456 CORE_ADDR actual_pc = regcache_read_pc (regcache);
1c5cfe86
PA
1457 gdb_byte buf[4];
1458
5af949e3
UW
1459 fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
1460 paddress (gdbarch, actual_pc));
1c5cfe86
PA
1461 read_memory (actual_pc, buf, sizeof (buf));
1462 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
1463 }
1464
fc1cf338
PA
1465 if (gdbarch_displaced_step_hw_singlestep (gdbarch,
1466 displaced->step_closure))
929dfd4f 1467 target_resume (ptid, 1, TARGET_SIGNAL_0);
99e40580
UW
1468 else
1469 target_resume (ptid, 0, TARGET_SIGNAL_0);
1c5cfe86
PA
1470
1471 /* Done, we're stepping a thread. */
1472 break;
ad53cd71 1473 }
1c5cfe86
PA
1474 else
1475 {
1476 int step;
1477 struct thread_info *tp = inferior_thread ();
1478
1479 /* The breakpoint we were sitting under has since been
1480 removed. */
16c381f0 1481 tp->control.trap_expected = 0;
1c5cfe86
PA
1482
1483 /* Go back to what we were trying to do. */
1484 step = currently_stepping (tp);
ad53cd71 1485
1c5cfe86 1486 if (debug_displaced)
3e43a32a
MS
1487 fprintf_unfiltered (gdb_stdlog,
1488 "breakpoint is gone %s: step(%d)\n",
1c5cfe86
PA
1489 target_pid_to_str (tp->ptid), step);
1490
1491 target_resume (ptid, step, TARGET_SIGNAL_0);
16c381f0 1492 tp->suspend.stop_signal = TARGET_SIGNAL_0;
1c5cfe86
PA
1493
1494 /* This request was discarded. See if there's any other
1495 thread waiting for its turn. */
1496 }
237fc4c9
PA
1497 }
1498}
1499
5231c1fd
PA
1500/* Update global variables holding ptids to hold NEW_PTID if they were
1501 holding OLD_PTID. */
1502static void
1503infrun_thread_ptid_changed (ptid_t old_ptid, ptid_t new_ptid)
1504{
1505 struct displaced_step_request *it;
fc1cf338 1506 struct displaced_step_inferior_state *displaced;
5231c1fd
PA
1507
1508 if (ptid_equal (inferior_ptid, old_ptid))
1509 inferior_ptid = new_ptid;
1510
1511 if (ptid_equal (singlestep_ptid, old_ptid))
1512 singlestep_ptid = new_ptid;
1513
5231c1fd
PA
1514 if (ptid_equal (deferred_step_ptid, old_ptid))
1515 deferred_step_ptid = new_ptid;
1516
fc1cf338
PA
1517 for (displaced = displaced_step_inferior_states;
1518 displaced;
1519 displaced = displaced->next)
1520 {
1521 if (ptid_equal (displaced->step_ptid, old_ptid))
1522 displaced->step_ptid = new_ptid;
1523
1524 for (it = displaced->step_request_queue; it; it = it->next)
1525 if (ptid_equal (it->ptid, old_ptid))
1526 it->ptid = new_ptid;
1527 }
5231c1fd
PA
1528}
1529
237fc4c9
PA
1530\f
1531/* Resuming. */
c906108c
SS
1532
1533/* Things to clean up if we QUIT out of resume (). */
c906108c 1534static void
74b7792f 1535resume_cleanups (void *ignore)
c906108c
SS
1536{
1537 normal_stop ();
1538}
1539
53904c9e
AC
1540static const char schedlock_off[] = "off";
1541static const char schedlock_on[] = "on";
1542static const char schedlock_step[] = "step";
488f131b 1543static const char *scheduler_enums[] = {
ef346e04
AC
1544 schedlock_off,
1545 schedlock_on,
1546 schedlock_step,
1547 NULL
1548};
920d2a44
AC
1549static const char *scheduler_mode = schedlock_off;
1550static void
1551show_scheduler_mode (struct ui_file *file, int from_tty,
1552 struct cmd_list_element *c, const char *value)
1553{
3e43a32a
MS
1554 fprintf_filtered (file,
1555 _("Mode for locking scheduler "
1556 "during execution is \"%s\".\n"),
920d2a44
AC
1557 value);
1558}
c906108c
SS
1559
1560static void
96baa820 1561set_schedlock_func (char *args, int from_tty, struct cmd_list_element *c)
c906108c 1562{
eefe576e
AC
1563 if (!target_can_lock_scheduler)
1564 {
1565 scheduler_mode = schedlock_off;
1566 error (_("Target '%s' cannot support this command."), target_shortname);
1567 }
c906108c
SS
1568}
1569
d4db2f36
PA
1570/* True if execution commands resume all threads of all processes by
1571 default; otherwise, resume only threads of the current inferior
1572 process. */
1573int sched_multi = 0;
1574
2facfe5c
DD
1575/* Try to setup for software single stepping over the specified location.
1576 Return 1 if target_resume() should use hardware single step.
1577
1578 GDBARCH the current gdbarch.
1579 PC the location to step over. */
1580
1581static int
1582maybe_software_singlestep (struct gdbarch *gdbarch, CORE_ADDR pc)
1583{
1584 int hw_step = 1;
1585
f02253f1
HZ
1586 if (execution_direction == EXEC_FORWARD
1587 && gdbarch_software_single_step_p (gdbarch)
99e40580 1588 && gdbarch_software_single_step (gdbarch, get_current_frame ()))
2facfe5c 1589 {
99e40580
UW
1590 hw_step = 0;
1591 /* Do not pull these breakpoints until after a `wait' in
1777feb0 1592 `wait_for_inferior'. */
99e40580
UW
1593 singlestep_breakpoints_inserted_p = 1;
1594 singlestep_ptid = inferior_ptid;
1595 singlestep_pc = pc;
2facfe5c
DD
1596 }
1597 return hw_step;
1598}
c906108c 1599
09cee04b
PA
1600/* Return a ptid representing the set of threads that we will proceed,
1601 in the perspective of the user/frontend. We may actually resume
1602 fewer threads at first, e.g., if a thread is stopped at a
b136cd05
PA
1603 breakpoint that needs stepping-off, but that should not be visible
1604 to the user/frontend, and neither should the frontend/user be
1605 allowed to proceed any of the threads that happen to be stopped for
09cee04b
PA
1606 internal run control handling, if a previous command wanted them
1607 resumed. */
1608
1609ptid_t
1610user_visible_resume_ptid (int step)
1611{
1612 /* By default, resume all threads of all processes. */
1613 ptid_t resume_ptid = RESUME_ALL;
1614
1615 /* Maybe resume only all threads of the current process. */
1616 if (!sched_multi && target_supports_multi_process ())
1617 {
1618 resume_ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
1619 }
1620
1621 /* Maybe resume a single thread after all. */
1622 if (non_stop)
1623 {
1624 /* With non-stop mode on, threads are always handled
1625 individually. */
1626 resume_ptid = inferior_ptid;
1627 }
1628 else if ((scheduler_mode == schedlock_on)
1629 || (scheduler_mode == schedlock_step
1630 && (step || singlestep_breakpoints_inserted_p)))
1631 {
1632 /* User-settable 'scheduler' mode requires solo thread resume. */
1633 resume_ptid = inferior_ptid;
1634 }
1635
1636 return resume_ptid;
1637}
1638
c906108c
SS
1639/* Resume the inferior, but allow a QUIT. This is useful if the user
1640 wants to interrupt some lengthy single-stepping operation
1641 (for child processes, the SIGINT goes to the inferior, and so
1642 we get a SIGINT random_signal, but for remote debugging and perhaps
1643 other targets, that's not true).
1644
1645 STEP nonzero if we should step (zero to continue instead).
1646 SIG is the signal to give the inferior (zero for none). */
1647void
96baa820 1648resume (int step, enum target_signal sig)
c906108c
SS
1649{
1650 int should_resume = 1;
74b7792f 1651 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
515630c5
UW
1652 struct regcache *regcache = get_current_regcache ();
1653 struct gdbarch *gdbarch = get_regcache_arch (regcache);
4e1c45ea 1654 struct thread_info *tp = inferior_thread ();
515630c5 1655 CORE_ADDR pc = regcache_read_pc (regcache);
6c95b8df 1656 struct address_space *aspace = get_regcache_aspace (regcache);
c7e8a53c 1657
c906108c
SS
1658 QUIT;
1659
74609e71
YQ
1660 if (current_inferior ()->waiting_for_vfork_done)
1661 {
48f9886d
PA
1662 /* Don't try to single-step a vfork parent that is waiting for
1663 the child to get out of the shared memory region (by exec'ing
1664 or exiting). This is particularly important on software
1665 single-step archs, as the child process would trip on the
1666 software single step breakpoint inserted for the parent
1667 process. Since the parent will not actually execute any
1668 instruction until the child is out of the shared region (such
1669 are vfork's semantics), it is safe to simply continue it.
1670 Eventually, we'll see a TARGET_WAITKIND_VFORK_DONE event for
1671 the parent, and tell it to `keep_going', which automatically
1672 re-sets it stepping. */
74609e71
YQ
1673 if (debug_infrun)
1674 fprintf_unfiltered (gdb_stdlog,
1675 "infrun: resume : clear step\n");
1676 step = 0;
1677 }
1678
527159b7 1679 if (debug_infrun)
237fc4c9
PA
1680 fprintf_unfiltered (gdb_stdlog,
1681 "infrun: resume (step=%d, signal=%d), "
0d9a9a5f
PA
1682 "trap_expected=%d, current thread [%s] at %s\n",
1683 step, sig, tp->control.trap_expected,
1684 target_pid_to_str (inferior_ptid),
1685 paddress (gdbarch, pc));
c906108c 1686
c2c6d25f
JM
1687 /* Normally, by the time we reach `resume', the breakpoints are either
1688 removed or inserted, as appropriate. The exception is if we're sitting
1689 at a permanent breakpoint; we need to step over it, but permanent
1690 breakpoints can't be removed. So we have to test for it here. */
6c95b8df 1691 if (breakpoint_here_p (aspace, pc) == permanent_breakpoint_here)
6d350bb5 1692 {
515630c5
UW
1693 if (gdbarch_skip_permanent_breakpoint_p (gdbarch))
1694 gdbarch_skip_permanent_breakpoint (gdbarch, regcache);
6d350bb5 1695 else
ac74f770
MS
1696 error (_("\
1697The program is stopped at a permanent breakpoint, but GDB does not know\n\
1698how to step past a permanent breakpoint on this architecture. Try using\n\
1699a command like `return' or `jump' to continue execution."));
6d350bb5 1700 }
c2c6d25f 1701
237fc4c9
PA
1702 /* If enabled, step over breakpoints by executing a copy of the
1703 instruction at a different address.
1704
1705 We can't use displaced stepping when we have a signal to deliver;
1706 the comments for displaced_step_prepare explain why. The
1707 comments in the handle_inferior event for dealing with 'random
74609e71
YQ
1708 signals' explain what we do instead.
1709
1710 We can't use displaced stepping when we are waiting for vfork_done
1711 event, displaced stepping breaks the vfork child similarly as single
1712 step software breakpoint. */
515630c5 1713 if (use_displaced_stepping (gdbarch)
16c381f0 1714 && (tp->control.trap_expected
929dfd4f 1715 || (step && gdbarch_software_single_step_p (gdbarch)))
74609e71
YQ
1716 && sig == TARGET_SIGNAL_0
1717 && !current_inferior ()->waiting_for_vfork_done)
237fc4c9 1718 {
fc1cf338
PA
1719 struct displaced_step_inferior_state *displaced;
1720
237fc4c9 1721 if (!displaced_step_prepare (inferior_ptid))
d56b7306
VP
1722 {
1723 /* Got placed in displaced stepping queue. Will be resumed
1724 later when all the currently queued displaced stepping
7f7efbd9
VP
1725 requests finish. The thread is not executing at this point,
1726 and the call to set_executing will be made later. But we
1727 need to call set_running here, since from frontend point of view,
1728 the thread is running. */
1729 set_running (inferior_ptid, 1);
d56b7306
VP
1730 discard_cleanups (old_cleanups);
1731 return;
1732 }
99e40580 1733
fc1cf338
PA
1734 displaced = get_displaced_stepping_state (ptid_get_pid (inferior_ptid));
1735 step = gdbarch_displaced_step_hw_singlestep (gdbarch,
1736 displaced->step_closure);
237fc4c9
PA
1737 }
1738
2facfe5c 1739 /* Do we need to do it the hard way, w/temp breakpoints? */
99e40580 1740 else if (step)
2facfe5c 1741 step = maybe_software_singlestep (gdbarch, pc);
c906108c 1742
30852783
UW
1743 /* Currently, our software single-step implementation leads to different
1744 results than hardware single-stepping in one situation: when stepping
1745 into delivering a signal which has an associated signal handler,
1746 hardware single-step will stop at the first instruction of the handler,
1747 while software single-step will simply skip execution of the handler.
1748
1749 For now, this difference in behavior is accepted since there is no
1750 easy way to actually implement single-stepping into a signal handler
1751 without kernel support.
1752
1753 However, there is one scenario where this difference leads to follow-on
1754 problems: if we're stepping off a breakpoint by removing all breakpoints
1755 and then single-stepping. In this case, the software single-step
1756 behavior means that even if there is a *breakpoint* in the signal
1757 handler, GDB still would not stop.
1758
1759 Fortunately, we can at least fix this particular issue. We detect
1760 here the case where we are about to deliver a signal while software
1761 single-stepping with breakpoints removed. In this situation, we
1762 revert the decisions to remove all breakpoints and insert single-
1763 step breakpoints, and instead we install a step-resume breakpoint
1764 at the current address, deliver the signal without stepping, and
1765 once we arrive back at the step-resume breakpoint, actually step
1766 over the breakpoint we originally wanted to step over. */
1767 if (singlestep_breakpoints_inserted_p
1768 && tp->control.trap_expected && sig != TARGET_SIGNAL_0)
1769 {
1770 /* If we have nested signals or a pending signal is delivered
1771 immediately after a handler returns, might might already have
1772 a step-resume breakpoint set on the earlier handler. We cannot
1773 set another step-resume breakpoint; just continue on until the
1774 original breakpoint is hit. */
1775 if (tp->control.step_resume_breakpoint == NULL)
1776 {
2c03e5be 1777 insert_hp_step_resume_breakpoint_at_frame (get_current_frame ());
30852783
UW
1778 tp->step_after_step_resume_breakpoint = 1;
1779 }
1780
1781 remove_single_step_breakpoints ();
1782 singlestep_breakpoints_inserted_p = 0;
1783
1784 insert_breakpoints ();
1785 tp->control.trap_expected = 0;
1786 }
1787
c906108c
SS
1788 if (should_resume)
1789 {
39f77062 1790 ptid_t resume_ptid;
dfcd3bfb 1791
cd76b0b7
VP
1792 /* If STEP is set, it's a request to use hardware stepping
1793 facilities. But in that case, we should never
1794 use singlestep breakpoint. */
1795 gdb_assert (!(singlestep_breakpoints_inserted_p && step));
1796
d4db2f36
PA
1797 /* Decide the set of threads to ask the target to resume. Start
1798 by assuming everything will be resumed, than narrow the set
1799 by applying increasingly restricting conditions. */
09cee04b 1800 resume_ptid = user_visible_resume_ptid (step);
d4db2f36
PA
1801
1802 /* Maybe resume a single thread after all. */
cd76b0b7
VP
1803 if (singlestep_breakpoints_inserted_p
1804 && stepping_past_singlestep_breakpoint)
c906108c 1805 {
cd76b0b7
VP
1806 /* The situation here is as follows. In thread T1 we wanted to
1807 single-step. Lacking hardware single-stepping we've
1808 set breakpoint at the PC of the next instruction -- call it
1809 P. After resuming, we've hit that breakpoint in thread T2.
1810 Now we've removed original breakpoint, inserted breakpoint
1811 at P+1, and try to step to advance T2 past breakpoint.
1812 We need to step only T2, as if T1 is allowed to freely run,
1813 it can run past P, and if other threads are allowed to run,
1814 they can hit breakpoint at P+1, and nested hits of single-step
1815 breakpoints is not something we'd want -- that's complicated
1816 to support, and has no value. */
1817 resume_ptid = inferior_ptid;
1818 }
d4db2f36 1819 else if ((step || singlestep_breakpoints_inserted_p)
16c381f0 1820 && tp->control.trap_expected)
cd76b0b7 1821 {
74960c60
VP
1822 /* We're allowing a thread to run past a breakpoint it has
1823 hit, by single-stepping the thread with the breakpoint
1824 removed. In which case, we need to single-step only this
1825 thread, and keep others stopped, as they can miss this
1826 breakpoint if allowed to run.
1827
1828 The current code actually removes all breakpoints when
1829 doing this, not just the one being stepped over, so if we
1830 let other threads run, we can actually miss any
1831 breakpoint, not just the one at PC. */
ef5cf84e 1832 resume_ptid = inferior_ptid;
c906108c 1833 }
ef5cf84e 1834
515630c5 1835 if (gdbarch_cannot_step_breakpoint (gdbarch))
c4ed33b9
AC
1836 {
1837 /* Most targets can step a breakpoint instruction, thus
1838 executing it normally. But if this one cannot, just
1839 continue and we will hit it anyway. */
6c95b8df 1840 if (step && breakpoint_inserted_here_p (aspace, pc))
c4ed33b9
AC
1841 step = 0;
1842 }
237fc4c9
PA
1843
1844 if (debug_displaced
515630c5 1845 && use_displaced_stepping (gdbarch)
16c381f0 1846 && tp->control.trap_expected)
237fc4c9 1847 {
515630c5 1848 struct regcache *resume_regcache = get_thread_regcache (resume_ptid);
5af949e3 1849 struct gdbarch *resume_gdbarch = get_regcache_arch (resume_regcache);
515630c5 1850 CORE_ADDR actual_pc = regcache_read_pc (resume_regcache);
237fc4c9
PA
1851 gdb_byte buf[4];
1852
5af949e3
UW
1853 fprintf_unfiltered (gdb_stdlog, "displaced: run %s: ",
1854 paddress (resume_gdbarch, actual_pc));
237fc4c9
PA
1855 read_memory (actual_pc, buf, sizeof (buf));
1856 displaced_step_dump_bytes (gdb_stdlog, buf, sizeof (buf));
1857 }
1858
e58b0e63
PA
1859 /* Install inferior's terminal modes. */
1860 target_terminal_inferior ();
1861
2020b7ab
PA
1862 /* Avoid confusing the next resume, if the next stop/resume
1863 happens to apply to another thread. */
16c381f0 1864 tp->suspend.stop_signal = TARGET_SIGNAL_0;
607cecd2 1865
2455069d
UW
1866 /* Advise target which signals may be handled silently. If we have
1867 removed breakpoints because we are stepping over one (which can
1868 happen only if we are not using displaced stepping), we need to
1869 receive all signals to avoid accidentally skipping a breakpoint
1870 during execution of a signal handler. */
1871 if ((step || singlestep_breakpoints_inserted_p)
1872 && tp->control.trap_expected
1873 && !use_displaced_stepping (gdbarch))
1874 target_pass_signals (0, NULL);
1875 else
1876 target_pass_signals ((int) TARGET_SIGNAL_LAST, signal_pass);
1877
607cecd2 1878 target_resume (resume_ptid, step, sig);
c906108c
SS
1879 }
1880
1881 discard_cleanups (old_cleanups);
1882}
1883\f
237fc4c9 1884/* Proceeding. */
c906108c
SS
1885
1886/* Clear out all variables saying what to do when inferior is continued.
1887 First do this, then set the ones you want, then call `proceed'. */
1888
a7212384
UW
1889static void
1890clear_proceed_status_thread (struct thread_info *tp)
c906108c 1891{
a7212384
UW
1892 if (debug_infrun)
1893 fprintf_unfiltered (gdb_stdlog,
1894 "infrun: clear_proceed_status_thread (%s)\n",
1895 target_pid_to_str (tp->ptid));
d6b48e9c 1896
16c381f0
JK
1897 tp->control.trap_expected = 0;
1898 tp->control.step_range_start = 0;
1899 tp->control.step_range_end = 0;
1900 tp->control.step_frame_id = null_frame_id;
1901 tp->control.step_stack_frame_id = null_frame_id;
1902 tp->control.step_over_calls = STEP_OVER_UNDEBUGGABLE;
a7212384 1903 tp->stop_requested = 0;
4e1c45ea 1904
16c381f0 1905 tp->control.stop_step = 0;
32400beb 1906
16c381f0 1907 tp->control.proceed_to_finish = 0;
414c69f7 1908
a7212384 1909 /* Discard any remaining commands or status from previous stop. */
16c381f0 1910 bpstat_clear (&tp->control.stop_bpstat);
a7212384 1911}
32400beb 1912
a7212384
UW
1913static int
1914clear_proceed_status_callback (struct thread_info *tp, void *data)
1915{
1916 if (is_exited (tp->ptid))
1917 return 0;
d6b48e9c 1918
a7212384
UW
1919 clear_proceed_status_thread (tp);
1920 return 0;
1921}
1922
1923void
1924clear_proceed_status (void)
1925{
6c95b8df
PA
1926 if (!non_stop)
1927 {
1928 /* In all-stop mode, delete the per-thread status of all
1929 threads, even if inferior_ptid is null_ptid, there may be
1930 threads on the list. E.g., we may be launching a new
1931 process, while selecting the executable. */
1932 iterate_over_threads (clear_proceed_status_callback, NULL);
1933 }
1934
a7212384
UW
1935 if (!ptid_equal (inferior_ptid, null_ptid))
1936 {
1937 struct inferior *inferior;
1938
1939 if (non_stop)
1940 {
6c95b8df
PA
1941 /* If in non-stop mode, only delete the per-thread status of
1942 the current thread. */
a7212384
UW
1943 clear_proceed_status_thread (inferior_thread ());
1944 }
6c95b8df 1945
d6b48e9c 1946 inferior = current_inferior ();
16c381f0 1947 inferior->control.stop_soon = NO_STOP_QUIETLY;
4e1c45ea
PA
1948 }
1949
c906108c 1950 stop_after_trap = 0;
f3b1572e
PA
1951
1952 observer_notify_about_to_proceed ();
c906108c 1953
d5c31457
UW
1954 if (stop_registers)
1955 {
1956 regcache_xfree (stop_registers);
1957 stop_registers = NULL;
1958 }
c906108c
SS
1959}
1960
5a437975
DE
1961/* Check the current thread against the thread that reported the most recent
1962 event. If a step-over is required return TRUE and set the current thread
1963 to the old thread. Otherwise return FALSE.
1964
1777feb0 1965 This should be suitable for any targets that support threads. */
ea67f13b
DJ
1966
1967static int
6a6b96b9 1968prepare_to_proceed (int step)
ea67f13b
DJ
1969{
1970 ptid_t wait_ptid;
1971 struct target_waitstatus wait_status;
5a437975
DE
1972 int schedlock_enabled;
1973
1974 /* With non-stop mode on, threads are always handled individually. */
1975 gdb_assert (! non_stop);
ea67f13b
DJ
1976
1977 /* Get the last target status returned by target_wait(). */
1978 get_last_target_status (&wait_ptid, &wait_status);
1979
6a6b96b9 1980 /* Make sure we were stopped at a breakpoint. */
ea67f13b 1981 if (wait_status.kind != TARGET_WAITKIND_STOPPED
2b009048
DJ
1982 || (wait_status.value.sig != TARGET_SIGNAL_TRAP
1983 && wait_status.value.sig != TARGET_SIGNAL_ILL
1984 && wait_status.value.sig != TARGET_SIGNAL_SEGV
1985 && wait_status.value.sig != TARGET_SIGNAL_EMT))
ea67f13b
DJ
1986 {
1987 return 0;
1988 }
1989
5a437975
DE
1990 schedlock_enabled = (scheduler_mode == schedlock_on
1991 || (scheduler_mode == schedlock_step
1992 && step));
1993
d4db2f36
PA
1994 /* Don't switch over to WAIT_PTID if scheduler locking is on. */
1995 if (schedlock_enabled)
1996 return 0;
1997
1998 /* Don't switch over if we're about to resume some other process
1999 other than WAIT_PTID's, and schedule-multiple is off. */
2000 if (!sched_multi
2001 && ptid_get_pid (wait_ptid) != ptid_get_pid (inferior_ptid))
2002 return 0;
2003
6a6b96b9 2004 /* Switched over from WAIT_PID. */
ea67f13b 2005 if (!ptid_equal (wait_ptid, minus_one_ptid)
d4db2f36 2006 && !ptid_equal (inferior_ptid, wait_ptid))
ea67f13b 2007 {
515630c5
UW
2008 struct regcache *regcache = get_thread_regcache (wait_ptid);
2009
6c95b8df
PA
2010 if (breakpoint_here_p (get_regcache_aspace (regcache),
2011 regcache_read_pc (regcache)))
ea67f13b 2012 {
515630c5
UW
2013 /* If stepping, remember current thread to switch back to. */
2014 if (step)
2015 deferred_step_ptid = inferior_ptid;
ea67f13b 2016
515630c5
UW
2017 /* Switch back to WAIT_PID thread. */
2018 switch_to_thread (wait_ptid);
6a6b96b9 2019
0d9a9a5f
PA
2020 if (debug_infrun)
2021 fprintf_unfiltered (gdb_stdlog,
2022 "infrun: prepare_to_proceed (step=%d), "
2023 "switched to [%s]\n",
2024 step, target_pid_to_str (inferior_ptid));
2025
515630c5
UW
2026 /* We return 1 to indicate that there is a breakpoint here,
2027 so we need to step over it before continuing to avoid
1777feb0 2028 hitting it straight away. */
515630c5
UW
2029 return 1;
2030 }
ea67f13b
DJ
2031 }
2032
2033 return 0;
ea67f13b 2034}
e4846b08 2035
c906108c
SS
2036/* Basic routine for continuing the program in various fashions.
2037
2038 ADDR is the address to resume at, or -1 for resume where stopped.
2039 SIGGNAL is the signal to give it, or 0 for none,
c5aa993b 2040 or -1 for act according to how it stopped.
c906108c 2041 STEP is nonzero if should trap after one instruction.
c5aa993b
JM
2042 -1 means return after that and print nothing.
2043 You should probably set various step_... variables
2044 before calling here, if you are stepping.
c906108c
SS
2045
2046 You should call clear_proceed_status before calling proceed. */
2047
2048void
96baa820 2049proceed (CORE_ADDR addr, enum target_signal siggnal, int step)
c906108c 2050{
e58b0e63
PA
2051 struct regcache *regcache;
2052 struct gdbarch *gdbarch;
4e1c45ea 2053 struct thread_info *tp;
e58b0e63 2054 CORE_ADDR pc;
6c95b8df 2055 struct address_space *aspace;
c906108c
SS
2056 int oneproc = 0;
2057
e58b0e63
PA
2058 /* If we're stopped at a fork/vfork, follow the branch set by the
2059 "set follow-fork-mode" command; otherwise, we'll just proceed
2060 resuming the current thread. */
2061 if (!follow_fork ())
2062 {
2063 /* The target for some reason decided not to resume. */
2064 normal_stop ();
f148b27e
PA
2065 if (target_can_async_p ())
2066 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
e58b0e63
PA
2067 return;
2068 }
2069
842951eb
PA
2070 /* We'll update this if & when we switch to a new thread. */
2071 previous_inferior_ptid = inferior_ptid;
2072
e58b0e63
PA
2073 regcache = get_current_regcache ();
2074 gdbarch = get_regcache_arch (regcache);
6c95b8df 2075 aspace = get_regcache_aspace (regcache);
e58b0e63
PA
2076 pc = regcache_read_pc (regcache);
2077
c906108c 2078 if (step > 0)
515630c5 2079 step_start_function = find_pc_function (pc);
c906108c
SS
2080 if (step < 0)
2081 stop_after_trap = 1;
2082
2acceee2 2083 if (addr == (CORE_ADDR) -1)
c906108c 2084 {
6c95b8df 2085 if (pc == stop_pc && breakpoint_here_p (aspace, pc)
b2175913 2086 && execution_direction != EXEC_REVERSE)
3352ef37
AC
2087 /* There is a breakpoint at the address we will resume at,
2088 step one instruction before inserting breakpoints so that
2089 we do not stop right away (and report a second hit at this
b2175913
MS
2090 breakpoint).
2091
2092 Note, we don't do this in reverse, because we won't
2093 actually be executing the breakpoint insn anyway.
2094 We'll be (un-)executing the previous instruction. */
2095
c906108c 2096 oneproc = 1;
515630c5
UW
2097 else if (gdbarch_single_step_through_delay_p (gdbarch)
2098 && gdbarch_single_step_through_delay (gdbarch,
2099 get_current_frame ()))
3352ef37
AC
2100 /* We stepped onto an instruction that needs to be stepped
2101 again before re-inserting the breakpoint, do so. */
c906108c
SS
2102 oneproc = 1;
2103 }
2104 else
2105 {
515630c5 2106 regcache_write_pc (regcache, addr);
c906108c
SS
2107 }
2108
527159b7 2109 if (debug_infrun)
8a9de0e4 2110 fprintf_unfiltered (gdb_stdlog,
5af949e3
UW
2111 "infrun: proceed (addr=%s, signal=%d, step=%d)\n",
2112 paddress (gdbarch, addr), siggnal, step);
527159b7 2113
94cc34af
PA
2114 if (non_stop)
2115 /* In non-stop, each thread is handled individually. The context
2116 must already be set to the right thread here. */
2117 ;
2118 else
2119 {
2120 /* In a multi-threaded task we may select another thread and
2121 then continue or step.
c906108c 2122
94cc34af
PA
2123 But if the old thread was stopped at a breakpoint, it will
2124 immediately cause another breakpoint stop without any
2125 execution (i.e. it will report a breakpoint hit incorrectly).
2126 So we must step over it first.
c906108c 2127
94cc34af
PA
2128 prepare_to_proceed checks the current thread against the
2129 thread that reported the most recent event. If a step-over
2130 is required it returns TRUE and sets the current thread to
1777feb0 2131 the old thread. */
94cc34af
PA
2132 if (prepare_to_proceed (step))
2133 oneproc = 1;
2134 }
c906108c 2135
4e1c45ea
PA
2136 /* prepare_to_proceed may change the current thread. */
2137 tp = inferior_thread ();
2138
30852783
UW
2139 if (oneproc)
2140 {
2141 tp->control.trap_expected = 1;
2142 /* If displaced stepping is enabled, we can step over the
2143 breakpoint without hitting it, so leave all breakpoints
2144 inserted. Otherwise we need to disable all breakpoints, step
2145 one instruction, and then re-add them when that step is
2146 finished. */
2147 if (!use_displaced_stepping (gdbarch))
2148 remove_breakpoints ();
2149 }
2150
2151 /* We can insert breakpoints if we're not trying to step over one,
2152 or if we are stepping over one but we're using displaced stepping
2153 to do so. */
2154 if (! tp->control.trap_expected || use_displaced_stepping (gdbarch))
2155 insert_breakpoints ();
2156
2020b7ab
PA
2157 if (!non_stop)
2158 {
2159 /* Pass the last stop signal to the thread we're resuming,
2160 irrespective of whether the current thread is the thread that
2161 got the last event or not. This was historically GDB's
2162 behaviour before keeping a stop_signal per thread. */
2163
2164 struct thread_info *last_thread;
2165 ptid_t last_ptid;
2166 struct target_waitstatus last_status;
2167
2168 get_last_target_status (&last_ptid, &last_status);
2169 if (!ptid_equal (inferior_ptid, last_ptid)
2170 && !ptid_equal (last_ptid, null_ptid)
2171 && !ptid_equal (last_ptid, minus_one_ptid))
2172 {
e09875d4 2173 last_thread = find_thread_ptid (last_ptid);
2020b7ab
PA
2174 if (last_thread)
2175 {
16c381f0
JK
2176 tp->suspend.stop_signal = last_thread->suspend.stop_signal;
2177 last_thread->suspend.stop_signal = TARGET_SIGNAL_0;
2020b7ab
PA
2178 }
2179 }
2180 }
2181
c906108c 2182 if (siggnal != TARGET_SIGNAL_DEFAULT)
16c381f0 2183 tp->suspend.stop_signal = siggnal;
c906108c
SS
2184 /* If this signal should not be seen by program,
2185 give it zero. Used for debugging signals. */
16c381f0
JK
2186 else if (!signal_program[tp->suspend.stop_signal])
2187 tp->suspend.stop_signal = TARGET_SIGNAL_0;
c906108c
SS
2188
2189 annotate_starting ();
2190
2191 /* Make sure that output from GDB appears before output from the
2192 inferior. */
2193 gdb_flush (gdb_stdout);
2194
e4846b08
JJ
2195 /* Refresh prev_pc value just prior to resuming. This used to be
2196 done in stop_stepping, however, setting prev_pc there did not handle
2197 scenarios such as inferior function calls or returning from
2198 a function via the return command. In those cases, the prev_pc
2199 value was not set properly for subsequent commands. The prev_pc value
2200 is used to initialize the starting line number in the ecs. With an
2201 invalid value, the gdb next command ends up stopping at the position
2202 represented by the next line table entry past our start position.
2203 On platforms that generate one line table entry per line, this
2204 is not a problem. However, on the ia64, the compiler generates
2205 extraneous line table entries that do not increase the line number.
2206 When we issue the gdb next command on the ia64 after an inferior call
2207 or a return command, we often end up a few instructions forward, still
2208 within the original line we started.
2209
d5cd6034
JB
2210 An attempt was made to refresh the prev_pc at the same time the
2211 execution_control_state is initialized (for instance, just before
2212 waiting for an inferior event). But this approach did not work
2213 because of platforms that use ptrace, where the pc register cannot
2214 be read unless the inferior is stopped. At that point, we are not
2215 guaranteed the inferior is stopped and so the regcache_read_pc() call
2216 can fail. Setting the prev_pc value here ensures the value is updated
2217 correctly when the inferior is stopped. */
4e1c45ea 2218 tp->prev_pc = regcache_read_pc (get_current_regcache ());
e4846b08 2219
59f0d5d9 2220 /* Fill in with reasonable starting values. */
4e1c45ea 2221 init_thread_stepping_state (tp);
59f0d5d9 2222
59f0d5d9
PA
2223 /* Reset to normal state. */
2224 init_infwait_state ();
2225
c906108c 2226 /* Resume inferior. */
16c381f0 2227 resume (oneproc || step || bpstat_should_step (), tp->suspend.stop_signal);
c906108c
SS
2228
2229 /* Wait for it to stop (if not standalone)
2230 and in any case decode why it stopped, and act accordingly. */
43ff13b4 2231 /* Do this only if we are not using the event loop, or if the target
1777feb0 2232 does not support asynchronous execution. */
362646f5 2233 if (!target_can_async_p ())
43ff13b4 2234 {
e4c8541f 2235 wait_for_inferior ();
43ff13b4
JM
2236 normal_stop ();
2237 }
c906108c 2238}
c906108c
SS
2239\f
2240
2241/* Start remote-debugging of a machine over a serial link. */
96baa820 2242
c906108c 2243void
8621d6a9 2244start_remote (int from_tty)
c906108c 2245{
d6b48e9c 2246 struct inferior *inferior;
d6b48e9c 2247
abbb1732 2248 init_wait_for_inferior ();
d6b48e9c 2249 inferior = current_inferior ();
16c381f0 2250 inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
43ff13b4 2251
1777feb0 2252 /* Always go on waiting for the target, regardless of the mode. */
6426a772 2253 /* FIXME: cagney/1999-09-23: At present it isn't possible to
7e73cedf 2254 indicate to wait_for_inferior that a target should timeout if
6426a772
JM
2255 nothing is returned (instead of just blocking). Because of this,
2256 targets expecting an immediate response need to, internally, set
2257 things up so that the target_wait() is forced to eventually
1777feb0 2258 timeout. */
6426a772
JM
2259 /* FIXME: cagney/1999-09-24: It isn't possible for target_open() to
2260 differentiate to its caller what the state of the target is after
2261 the initial open has been performed. Here we're assuming that
2262 the target has stopped. It should be possible to eventually have
2263 target_open() return to the caller an indication that the target
2264 is currently running and GDB state should be set to the same as
1777feb0 2265 for an async run. */
e4c8541f 2266 wait_for_inferior ();
8621d6a9
DJ
2267
2268 /* Now that the inferior has stopped, do any bookkeeping like
2269 loading shared libraries. We want to do this before normal_stop,
2270 so that the displayed frame is up to date. */
2271 post_create_inferior (&current_target, from_tty);
2272
6426a772 2273 normal_stop ();
c906108c
SS
2274}
2275
2276/* Initialize static vars when a new inferior begins. */
2277
2278void
96baa820 2279init_wait_for_inferior (void)
c906108c
SS
2280{
2281 /* These are meaningless until the first time through wait_for_inferior. */
c906108c 2282
c906108c
SS
2283 breakpoint_init_inferior (inf_starting);
2284
c906108c 2285 clear_proceed_status ();
9f976b41
DJ
2286
2287 stepping_past_singlestep_breakpoint = 0;
ca67fcb8 2288 deferred_step_ptid = null_ptid;
ca005067
DJ
2289
2290 target_last_wait_ptid = minus_one_ptid;
237fc4c9 2291
842951eb 2292 previous_inferior_ptid = inferior_ptid;
0d1e5fa7
PA
2293 init_infwait_state ();
2294
edb3359d
DJ
2295 /* Discard any skipped inlined frames. */
2296 clear_inline_frame_state (minus_one_ptid);
c906108c 2297}
237fc4c9 2298
c906108c 2299\f
b83266a0
SS
2300/* This enum encodes possible reasons for doing a target_wait, so that
2301 wfi can call target_wait in one place. (Ultimately the call will be
2302 moved out of the infinite loop entirely.) */
2303
c5aa993b
JM
2304enum infwait_states
2305{
cd0fc7c3
SS
2306 infwait_normal_state,
2307 infwait_thread_hop_state,
d983da9c 2308 infwait_step_watch_state,
cd0fc7c3 2309 infwait_nonstep_watch_state
b83266a0
SS
2310};
2311
0d1e5fa7
PA
2312/* The PTID we'll do a target_wait on.*/
2313ptid_t waiton_ptid;
2314
2315/* Current inferior wait state. */
2316enum infwait_states infwait_state;
cd0fc7c3 2317
0d1e5fa7
PA
2318/* Data to be passed around while handling an event. This data is
2319 discarded between events. */
c5aa993b 2320struct execution_control_state
488f131b 2321{
0d1e5fa7 2322 ptid_t ptid;
4e1c45ea
PA
2323 /* The thread that got the event, if this was a thread event; NULL
2324 otherwise. */
2325 struct thread_info *event_thread;
2326
488f131b 2327 struct target_waitstatus ws;
488f131b
JB
2328 int random_signal;
2329 CORE_ADDR stop_func_start;
2330 CORE_ADDR stop_func_end;
2331 char *stop_func_name;
488f131b 2332 int new_thread_event;
488f131b
JB
2333 int wait_some_more;
2334};
2335
ec9499be 2336static void handle_inferior_event (struct execution_control_state *ecs);
cd0fc7c3 2337
568d6575
UW
2338static void handle_step_into_function (struct gdbarch *gdbarch,
2339 struct execution_control_state *ecs);
2340static void handle_step_into_function_backward (struct gdbarch *gdbarch,
2341 struct execution_control_state *ecs);
186c406b
TT
2342static void check_exception_resume (struct execution_control_state *,
2343 struct frame_info *, struct symbol *);
611c83ae 2344
104c1213
JM
2345static void stop_stepping (struct execution_control_state *ecs);
2346static void prepare_to_wait (struct execution_control_state *ecs);
d4f3574e 2347static void keep_going (struct execution_control_state *ecs);
104c1213 2348
252fbfc8
PA
2349/* Callback for iterate over threads. If the thread is stopped, but
2350 the user/frontend doesn't know about that yet, go through
2351 normal_stop, as if the thread had just stopped now. ARG points at
2352 a ptid. If PTID is MINUS_ONE_PTID, applies to all threads. If
2353 ptid_is_pid(PTID) is true, applies to all threads of the process
2354 pointed at by PTID. Otherwise, apply only to the thread pointed by
2355 PTID. */
2356
2357static int
2358infrun_thread_stop_requested_callback (struct thread_info *info, void *arg)
2359{
2360 ptid_t ptid = * (ptid_t *) arg;
2361
2362 if ((ptid_equal (info->ptid, ptid)
2363 || ptid_equal (minus_one_ptid, ptid)
2364 || (ptid_is_pid (ptid)
2365 && ptid_get_pid (ptid) == ptid_get_pid (info->ptid)))
2366 && is_running (info->ptid)
2367 && !is_executing (info->ptid))
2368 {
2369 struct cleanup *old_chain;
2370 struct execution_control_state ecss;
2371 struct execution_control_state *ecs = &ecss;
2372
2373 memset (ecs, 0, sizeof (*ecs));
2374
2375 old_chain = make_cleanup_restore_current_thread ();
2376
2377 switch_to_thread (info->ptid);
2378
2379 /* Go through handle_inferior_event/normal_stop, so we always
2380 have consistent output as if the stop event had been
2381 reported. */
2382 ecs->ptid = info->ptid;
e09875d4 2383 ecs->event_thread = find_thread_ptid (info->ptid);
252fbfc8
PA
2384 ecs->ws.kind = TARGET_WAITKIND_STOPPED;
2385 ecs->ws.value.sig = TARGET_SIGNAL_0;
2386
2387 handle_inferior_event (ecs);
2388
2389 if (!ecs->wait_some_more)
2390 {
2391 struct thread_info *tp;
2392
2393 normal_stop ();
2394
2395 /* Finish off the continuations. The continations
2396 themselves are responsible for realising the thread
2397 didn't finish what it was supposed to do. */
2398 tp = inferior_thread ();
2399 do_all_intermediate_continuations_thread (tp);
2400 do_all_continuations_thread (tp);
2401 }
2402
2403 do_cleanups (old_chain);
2404 }
2405
2406 return 0;
2407}
2408
2409/* This function is attached as a "thread_stop_requested" observer.
2410 Cleanup local state that assumed the PTID was to be resumed, and
2411 report the stop to the frontend. */
2412
2c0b251b 2413static void
252fbfc8
PA
2414infrun_thread_stop_requested (ptid_t ptid)
2415{
fc1cf338 2416 struct displaced_step_inferior_state *displaced;
252fbfc8
PA
2417
2418 /* PTID was requested to stop. Remove it from the displaced
2419 stepping queue, so we don't try to resume it automatically. */
fc1cf338
PA
2420
2421 for (displaced = displaced_step_inferior_states;
2422 displaced;
2423 displaced = displaced->next)
252fbfc8 2424 {
fc1cf338 2425 struct displaced_step_request *it, **prev_next_p;
252fbfc8 2426
fc1cf338
PA
2427 it = displaced->step_request_queue;
2428 prev_next_p = &displaced->step_request_queue;
2429 while (it)
252fbfc8 2430 {
fc1cf338
PA
2431 if (ptid_match (it->ptid, ptid))
2432 {
2433 *prev_next_p = it->next;
2434 it->next = NULL;
2435 xfree (it);
2436 }
252fbfc8 2437 else
fc1cf338
PA
2438 {
2439 prev_next_p = &it->next;
2440 }
252fbfc8 2441
fc1cf338 2442 it = *prev_next_p;
252fbfc8 2443 }
252fbfc8
PA
2444 }
2445
2446 iterate_over_threads (infrun_thread_stop_requested_callback, &ptid);
2447}
2448
a07daef3
PA
2449static void
2450infrun_thread_thread_exit (struct thread_info *tp, int silent)
2451{
2452 if (ptid_equal (target_last_wait_ptid, tp->ptid))
2453 nullify_last_target_wait_ptid ();
2454}
2455
4e1c45ea
PA
2456/* Callback for iterate_over_threads. */
2457
2458static int
2459delete_step_resume_breakpoint_callback (struct thread_info *info, void *data)
2460{
2461 if (is_exited (info->ptid))
2462 return 0;
2463
2464 delete_step_resume_breakpoint (info);
186c406b 2465 delete_exception_resume_breakpoint (info);
4e1c45ea
PA
2466 return 0;
2467}
2468
2469/* In all-stop, delete the step resume breakpoint of any thread that
2470 had one. In non-stop, delete the step resume breakpoint of the
2471 thread that just stopped. */
2472
2473static void
2474delete_step_thread_step_resume_breakpoint (void)
2475{
2476 if (!target_has_execution
2477 || ptid_equal (inferior_ptid, null_ptid))
2478 /* If the inferior has exited, we have already deleted the step
2479 resume breakpoints out of GDB's lists. */
2480 return;
2481
2482 if (non_stop)
2483 {
2484 /* If in non-stop mode, only delete the step-resume or
2485 longjmp-resume breakpoint of the thread that just stopped
2486 stepping. */
2487 struct thread_info *tp = inferior_thread ();
abbb1732 2488
4e1c45ea 2489 delete_step_resume_breakpoint (tp);
186c406b 2490 delete_exception_resume_breakpoint (tp);
4e1c45ea
PA
2491 }
2492 else
2493 /* In all-stop mode, delete all step-resume and longjmp-resume
2494 breakpoints of any thread that had them. */
2495 iterate_over_threads (delete_step_resume_breakpoint_callback, NULL);
2496}
2497
1777feb0 2498/* A cleanup wrapper. */
4e1c45ea
PA
2499
2500static void
2501delete_step_thread_step_resume_breakpoint_cleanup (void *arg)
2502{
2503 delete_step_thread_step_resume_breakpoint ();
2504}
2505
223698f8
DE
2506/* Pretty print the results of target_wait, for debugging purposes. */
2507
2508static void
2509print_target_wait_results (ptid_t waiton_ptid, ptid_t result_ptid,
2510 const struct target_waitstatus *ws)
2511{
2512 char *status_string = target_waitstatus_to_string (ws);
2513 struct ui_file *tmp_stream = mem_fileopen ();
2514 char *text;
223698f8
DE
2515
2516 /* The text is split over several lines because it was getting too long.
2517 Call fprintf_unfiltered (gdb_stdlog) once so that the text is still
2518 output as a unit; we want only one timestamp printed if debug_timestamp
2519 is set. */
2520
2521 fprintf_unfiltered (tmp_stream,
2522 "infrun: target_wait (%d", PIDGET (waiton_ptid));
2523 if (PIDGET (waiton_ptid) != -1)
2524 fprintf_unfiltered (tmp_stream,
2525 " [%s]", target_pid_to_str (waiton_ptid));
2526 fprintf_unfiltered (tmp_stream, ", status) =\n");
2527 fprintf_unfiltered (tmp_stream,
2528 "infrun: %d [%s],\n",
2529 PIDGET (result_ptid), target_pid_to_str (result_ptid));
2530 fprintf_unfiltered (tmp_stream,
2531 "infrun: %s\n",
2532 status_string);
2533
759ef836 2534 text = ui_file_xstrdup (tmp_stream, NULL);
223698f8
DE
2535
2536 /* This uses %s in part to handle %'s in the text, but also to avoid
2537 a gcc error: the format attribute requires a string literal. */
2538 fprintf_unfiltered (gdb_stdlog, "%s", text);
2539
2540 xfree (status_string);
2541 xfree (text);
2542 ui_file_delete (tmp_stream);
2543}
2544
24291992
PA
2545/* Prepare and stabilize the inferior for detaching it. E.g.,
2546 detaching while a thread is displaced stepping is a recipe for
2547 crashing it, as nothing would readjust the PC out of the scratch
2548 pad. */
2549
2550void
2551prepare_for_detach (void)
2552{
2553 struct inferior *inf = current_inferior ();
2554 ptid_t pid_ptid = pid_to_ptid (inf->pid);
2555 struct cleanup *old_chain_1;
2556 struct displaced_step_inferior_state *displaced;
2557
2558 displaced = get_displaced_stepping_state (inf->pid);
2559
2560 /* Is any thread of this process displaced stepping? If not,
2561 there's nothing else to do. */
2562 if (displaced == NULL || ptid_equal (displaced->step_ptid, null_ptid))
2563 return;
2564
2565 if (debug_infrun)
2566 fprintf_unfiltered (gdb_stdlog,
2567 "displaced-stepping in-process while detaching");
2568
2569 old_chain_1 = make_cleanup_restore_integer (&inf->detaching);
2570 inf->detaching = 1;
2571
2572 while (!ptid_equal (displaced->step_ptid, null_ptid))
2573 {
2574 struct cleanup *old_chain_2;
2575 struct execution_control_state ecss;
2576 struct execution_control_state *ecs;
2577
2578 ecs = &ecss;
2579 memset (ecs, 0, sizeof (*ecs));
2580
2581 overlay_cache_invalid = 1;
2582
2583 /* We have to invalidate the registers BEFORE calling
2584 target_wait because they can be loaded from the target while
2585 in target_wait. This makes remote debugging a bit more
2586 efficient for those targets that provide critical registers
1777feb0 2587 as part of their normal status mechanism. */
24291992
PA
2588
2589 registers_changed ();
2590
2591 if (deprecated_target_wait_hook)
2592 ecs->ptid = deprecated_target_wait_hook (pid_ptid, &ecs->ws, 0);
2593 else
2594 ecs->ptid = target_wait (pid_ptid, &ecs->ws, 0);
2595
2596 if (debug_infrun)
2597 print_target_wait_results (pid_ptid, ecs->ptid, &ecs->ws);
2598
2599 /* If an error happens while handling the event, propagate GDB's
2600 knowledge of the executing state to the frontend/user running
2601 state. */
3e43a32a
MS
2602 old_chain_2 = make_cleanup (finish_thread_state_cleanup,
2603 &minus_one_ptid);
24291992 2604
4d533103
PA
2605 /* In non-stop mode, each thread is handled individually.
2606 Switch early, so the global state is set correctly for this
2607 thread. */
2608 if (non_stop
2609 && ecs->ws.kind != TARGET_WAITKIND_EXITED
2610 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED)
2611 context_switch (ecs->ptid);
2612
24291992
PA
2613 /* Now figure out what to do with the result of the result. */
2614 handle_inferior_event (ecs);
2615
2616 /* No error, don't finish the state yet. */
2617 discard_cleanups (old_chain_2);
2618
2619 /* Breakpoints and watchpoints are not installed on the target
2620 at this point, and signals are passed directly to the
2621 inferior, so this must mean the process is gone. */
2622 if (!ecs->wait_some_more)
2623 {
2624 discard_cleanups (old_chain_1);
2625 error (_("Program exited while detaching"));
2626 }
2627 }
2628
2629 discard_cleanups (old_chain_1);
2630}
2631
cd0fc7c3 2632/* Wait for control to return from inferior to debugger.
ae123ec6 2633
cd0fc7c3
SS
2634 If inferior gets a signal, we may decide to start it up again
2635 instead of returning. That is why there is a loop in this function.
2636 When this function actually returns it means the inferior
2637 should be left stopped and GDB should read more commands. */
2638
2639void
e4c8541f 2640wait_for_inferior (void)
cd0fc7c3
SS
2641{
2642 struct cleanup *old_cleanups;
0d1e5fa7 2643 struct execution_control_state ecss;
cd0fc7c3 2644 struct execution_control_state *ecs;
c906108c 2645
527159b7 2646 if (debug_infrun)
ae123ec6 2647 fprintf_unfiltered
e4c8541f 2648 (gdb_stdlog, "infrun: wait_for_inferior ()\n");
527159b7 2649
4e1c45ea
PA
2650 old_cleanups =
2651 make_cleanup (delete_step_thread_step_resume_breakpoint_cleanup, NULL);
cd0fc7c3 2652
cd0fc7c3 2653 ecs = &ecss;
0d1e5fa7
PA
2654 memset (ecs, 0, sizeof (*ecs));
2655
c906108c
SS
2656 while (1)
2657 {
29f49a6a
PA
2658 struct cleanup *old_chain;
2659
ec9499be
UW
2660 /* We have to invalidate the registers BEFORE calling target_wait
2661 because they can be loaded from the target while in target_wait.
2662 This makes remote debugging a bit more efficient for those
2663 targets that provide critical registers as part of their normal
1777feb0 2664 status mechanism. */
ec9499be
UW
2665
2666 overlay_cache_invalid = 1;
2667 registers_changed ();
2668
9a4105ab 2669 if (deprecated_target_wait_hook)
47608cb1 2670 ecs->ptid = deprecated_target_wait_hook (waiton_ptid, &ecs->ws, 0);
cd0fc7c3 2671 else
47608cb1 2672 ecs->ptid = target_wait (waiton_ptid, &ecs->ws, 0);
c906108c 2673
f00150c9 2674 if (debug_infrun)
223698f8 2675 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
f00150c9 2676
29f49a6a
PA
2677 /* If an error happens while handling the event, propagate GDB's
2678 knowledge of the executing state to the frontend/user running
2679 state. */
2680 old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
2681
a96d9b2e
SDJ
2682 if (ecs->ws.kind == TARGET_WAITKIND_SYSCALL_ENTRY
2683 || ecs->ws.kind == TARGET_WAITKIND_SYSCALL_RETURN)
2684 ecs->ws.value.syscall_number = UNKNOWN_SYSCALL;
2685
cd0fc7c3
SS
2686 /* Now figure out what to do with the result of the result. */
2687 handle_inferior_event (ecs);
c906108c 2688
29f49a6a
PA
2689 /* No error, don't finish the state yet. */
2690 discard_cleanups (old_chain);
2691
cd0fc7c3
SS
2692 if (!ecs->wait_some_more)
2693 break;
2694 }
4e1c45ea 2695
cd0fc7c3
SS
2696 do_cleanups (old_cleanups);
2697}
c906108c 2698
1777feb0 2699/* Asynchronous version of wait_for_inferior. It is called by the
43ff13b4 2700 event loop whenever a change of state is detected on the file
1777feb0
MS
2701 descriptor corresponding to the target. It can be called more than
2702 once to complete a single execution command. In such cases we need
2703 to keep the state in a global variable ECSS. If it is the last time
a474d7c2
PA
2704 that this function is called for a single execution command, then
2705 report to the user that the inferior has stopped, and do the
1777feb0 2706 necessary cleanups. */
43ff13b4
JM
2707
2708void
fba45db2 2709fetch_inferior_event (void *client_data)
43ff13b4 2710{
0d1e5fa7 2711 struct execution_control_state ecss;
a474d7c2 2712 struct execution_control_state *ecs = &ecss;
4f8d22e3 2713 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
29f49a6a 2714 struct cleanup *ts_old_chain;
4f8d22e3 2715 int was_sync = sync_execution;
43ff13b4 2716
0d1e5fa7
PA
2717 memset (ecs, 0, sizeof (*ecs));
2718
c5187ac6
PA
2719 /* We're handling a live event, so make sure we're doing live
2720 debugging. If we're looking at traceframes while the target is
2721 running, we're going to need to get back to that mode after
2722 handling the event. */
2723 if (non_stop)
2724 {
2725 make_cleanup_restore_current_traceframe ();
e6e4e701 2726 set_current_traceframe (-1);
c5187ac6
PA
2727 }
2728
4f8d22e3
PA
2729 if (non_stop)
2730 /* In non-stop mode, the user/frontend should not notice a thread
2731 switch due to internal events. Make sure we reverse to the
2732 user selected thread and frame after handling the event and
2733 running any breakpoint commands. */
2734 make_cleanup_restore_current_thread ();
2735
59f0d5d9
PA
2736 /* We have to invalidate the registers BEFORE calling target_wait
2737 because they can be loaded from the target while in target_wait.
2738 This makes remote debugging a bit more efficient for those
2739 targets that provide critical registers as part of their normal
1777feb0 2740 status mechanism. */
43ff13b4 2741
ec9499be 2742 overlay_cache_invalid = 1;
59f0d5d9 2743 registers_changed ();
43ff13b4 2744
9a4105ab 2745 if (deprecated_target_wait_hook)
a474d7c2 2746 ecs->ptid =
47608cb1 2747 deprecated_target_wait_hook (waiton_ptid, &ecs->ws, TARGET_WNOHANG);
43ff13b4 2748 else
47608cb1 2749 ecs->ptid = target_wait (waiton_ptid, &ecs->ws, TARGET_WNOHANG);
43ff13b4 2750
f00150c9 2751 if (debug_infrun)
223698f8 2752 print_target_wait_results (waiton_ptid, ecs->ptid, &ecs->ws);
f00150c9 2753
94cc34af
PA
2754 if (non_stop
2755 && ecs->ws.kind != TARGET_WAITKIND_IGNORE
2756 && ecs->ws.kind != TARGET_WAITKIND_EXITED
2757 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED)
2758 /* In non-stop mode, each thread is handled individually. Switch
2759 early, so the global state is set correctly for this
2760 thread. */
2761 context_switch (ecs->ptid);
2762
29f49a6a
PA
2763 /* If an error happens while handling the event, propagate GDB's
2764 knowledge of the executing state to the frontend/user running
2765 state. */
2766 if (!non_stop)
2767 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
2768 else
2769 ts_old_chain = make_cleanup (finish_thread_state_cleanup, &ecs->ptid);
2770
43ff13b4 2771 /* Now figure out what to do with the result of the result. */
a474d7c2 2772 handle_inferior_event (ecs);
43ff13b4 2773
a474d7c2 2774 if (!ecs->wait_some_more)
43ff13b4 2775 {
d6b48e9c
PA
2776 struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
2777
4e1c45ea 2778 delete_step_thread_step_resume_breakpoint ();
f107f563 2779
d6b48e9c 2780 /* We may not find an inferior if this was a process exit. */
16c381f0 2781 if (inf == NULL || inf->control.stop_soon == NO_STOP_QUIETLY)
83c265ab
PA
2782 normal_stop ();
2783
af679fd0
PA
2784 if (target_has_execution
2785 && ecs->ws.kind != TARGET_WAITKIND_EXITED
2786 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
2787 && ecs->event_thread->step_multi
16c381f0 2788 && ecs->event_thread->control.stop_step)
c2d11a7d
JM
2789 inferior_event_handler (INF_EXEC_CONTINUE, NULL);
2790 else
2791 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
43ff13b4 2792 }
4f8d22e3 2793
29f49a6a
PA
2794 /* No error, don't finish the thread states yet. */
2795 discard_cleanups (ts_old_chain);
2796
4f8d22e3
PA
2797 /* Revert thread and frame. */
2798 do_cleanups (old_chain);
2799
2800 /* If the inferior was in sync execution mode, and now isn't,
2801 restore the prompt. */
2802 if (was_sync && !sync_execution)
2803 display_gdb_prompt (0);
43ff13b4
JM
2804}
2805
edb3359d
DJ
2806/* Record the frame and location we're currently stepping through. */
2807void
2808set_step_info (struct frame_info *frame, struct symtab_and_line sal)
2809{
2810 struct thread_info *tp = inferior_thread ();
2811
16c381f0
JK
2812 tp->control.step_frame_id = get_frame_id (frame);
2813 tp->control.step_stack_frame_id = get_stack_frame_id (frame);
edb3359d
DJ
2814
2815 tp->current_symtab = sal.symtab;
2816 tp->current_line = sal.line;
2817}
2818
0d1e5fa7
PA
2819/* Clear context switchable stepping state. */
2820
2821void
4e1c45ea 2822init_thread_stepping_state (struct thread_info *tss)
0d1e5fa7
PA
2823{
2824 tss->stepping_over_breakpoint = 0;
2825 tss->step_after_step_resume_breakpoint = 0;
2826 tss->stepping_through_solib_after_catch = 0;
2827 tss->stepping_through_solib_catchpoints = NULL;
cd0fc7c3
SS
2828}
2829
e02bc4cc 2830/* Return the cached copy of the last pid/waitstatus returned by
9a4105ab
AC
2831 target_wait()/deprecated_target_wait_hook(). The data is actually
2832 cached by handle_inferior_event(), which gets called immediately
2833 after target_wait()/deprecated_target_wait_hook(). */
e02bc4cc
DS
2834
2835void
488f131b 2836get_last_target_status (ptid_t *ptidp, struct target_waitstatus *status)
e02bc4cc 2837{
39f77062 2838 *ptidp = target_last_wait_ptid;
e02bc4cc
DS
2839 *status = target_last_waitstatus;
2840}
2841
ac264b3b
MS
2842void
2843nullify_last_target_wait_ptid (void)
2844{
2845 target_last_wait_ptid = minus_one_ptid;
2846}
2847
dcf4fbde 2848/* Switch thread contexts. */
dd80620e
MS
2849
2850static void
0d1e5fa7 2851context_switch (ptid_t ptid)
dd80620e 2852{
fd48f117
DJ
2853 if (debug_infrun)
2854 {
2855 fprintf_unfiltered (gdb_stdlog, "infrun: Switching context from %s ",
2856 target_pid_to_str (inferior_ptid));
2857 fprintf_unfiltered (gdb_stdlog, "to %s\n",
0d1e5fa7 2858 target_pid_to_str (ptid));
fd48f117
DJ
2859 }
2860
0d1e5fa7 2861 switch_to_thread (ptid);
dd80620e
MS
2862}
2863
4fa8626c
DJ
2864static void
2865adjust_pc_after_break (struct execution_control_state *ecs)
2866{
24a73cce
UW
2867 struct regcache *regcache;
2868 struct gdbarch *gdbarch;
6c95b8df 2869 struct address_space *aspace;
8aad930b 2870 CORE_ADDR breakpoint_pc;
4fa8626c 2871
4fa8626c
DJ
2872 /* If we've hit a breakpoint, we'll normally be stopped with SIGTRAP. If
2873 we aren't, just return.
9709f61c
DJ
2874
2875 We assume that waitkinds other than TARGET_WAITKIND_STOPPED are not
b798847d
UW
2876 affected by gdbarch_decr_pc_after_break. Other waitkinds which are
2877 implemented by software breakpoints should be handled through the normal
2878 breakpoint layer.
8fb3e588 2879
4fa8626c
DJ
2880 NOTE drow/2004-01-31: On some targets, breakpoints may generate
2881 different signals (SIGILL or SIGEMT for instance), but it is less
2882 clear where the PC is pointing afterwards. It may not match
b798847d
UW
2883 gdbarch_decr_pc_after_break. I don't know any specific target that
2884 generates these signals at breakpoints (the code has been in GDB since at
2885 least 1992) so I can not guess how to handle them here.
8fb3e588 2886
e6cf7916
UW
2887 In earlier versions of GDB, a target with
2888 gdbarch_have_nonsteppable_watchpoint would have the PC after hitting a
b798847d
UW
2889 watchpoint affected by gdbarch_decr_pc_after_break. I haven't found any
2890 target with both of these set in GDB history, and it seems unlikely to be
2891 correct, so gdbarch_have_nonsteppable_watchpoint is not checked here. */
4fa8626c
DJ
2892
2893 if (ecs->ws.kind != TARGET_WAITKIND_STOPPED)
2894 return;
2895
2896 if (ecs->ws.value.sig != TARGET_SIGNAL_TRAP)
2897 return;
2898
4058b839
PA
2899 /* In reverse execution, when a breakpoint is hit, the instruction
2900 under it has already been de-executed. The reported PC always
2901 points at the breakpoint address, so adjusting it further would
2902 be wrong. E.g., consider this case on a decr_pc_after_break == 1
2903 architecture:
2904
2905 B1 0x08000000 : INSN1
2906 B2 0x08000001 : INSN2
2907 0x08000002 : INSN3
2908 PC -> 0x08000003 : INSN4
2909
2910 Say you're stopped at 0x08000003 as above. Reverse continuing
2911 from that point should hit B2 as below. Reading the PC when the
2912 SIGTRAP is reported should read 0x08000001 and INSN2 should have
2913 been de-executed already.
2914
2915 B1 0x08000000 : INSN1
2916 B2 PC -> 0x08000001 : INSN2
2917 0x08000002 : INSN3
2918 0x08000003 : INSN4
2919
2920 We can't apply the same logic as for forward execution, because
2921 we would wrongly adjust the PC to 0x08000000, since there's a
2922 breakpoint at PC - 1. We'd then report a hit on B1, although
2923 INSN1 hadn't been de-executed yet. Doing nothing is the correct
2924 behaviour. */
2925 if (execution_direction == EXEC_REVERSE)
2926 return;
2927
24a73cce
UW
2928 /* If this target does not decrement the PC after breakpoints, then
2929 we have nothing to do. */
2930 regcache = get_thread_regcache (ecs->ptid);
2931 gdbarch = get_regcache_arch (regcache);
2932 if (gdbarch_decr_pc_after_break (gdbarch) == 0)
2933 return;
2934
6c95b8df
PA
2935 aspace = get_regcache_aspace (regcache);
2936
8aad930b
AC
2937 /* Find the location where (if we've hit a breakpoint) the
2938 breakpoint would be. */
515630c5
UW
2939 breakpoint_pc = regcache_read_pc (regcache)
2940 - gdbarch_decr_pc_after_break (gdbarch);
8aad930b 2941
1c5cfe86
PA
2942 /* Check whether there actually is a software breakpoint inserted at
2943 that location.
2944
2945 If in non-stop mode, a race condition is possible where we've
2946 removed a breakpoint, but stop events for that breakpoint were
2947 already queued and arrive later. To suppress those spurious
2948 SIGTRAPs, we keep a list of such breakpoint locations for a bit,
2949 and retire them after a number of stop events are reported. */
6c95b8df
PA
2950 if (software_breakpoint_inserted_here_p (aspace, breakpoint_pc)
2951 || (non_stop && moribund_breakpoint_here_p (aspace, breakpoint_pc)))
8aad930b 2952 {
96429cc8 2953 struct cleanup *old_cleanups = NULL;
abbb1732 2954
96429cc8
HZ
2955 if (RECORD_IS_USED)
2956 old_cleanups = record_gdb_operation_disable_set ();
2957
1c0fdd0e
UW
2958 /* When using hardware single-step, a SIGTRAP is reported for both
2959 a completed single-step and a software breakpoint. Need to
2960 differentiate between the two, as the latter needs adjusting
2961 but the former does not.
2962
2963 The SIGTRAP can be due to a completed hardware single-step only if
2964 - we didn't insert software single-step breakpoints
2965 - the thread to be examined is still the current thread
2966 - this thread is currently being stepped
2967
2968 If any of these events did not occur, we must have stopped due
2969 to hitting a software breakpoint, and have to back up to the
2970 breakpoint address.
2971
2972 As a special case, we could have hardware single-stepped a
2973 software breakpoint. In this case (prev_pc == breakpoint_pc),
2974 we also need to back up to the breakpoint address. */
2975
2976 if (singlestep_breakpoints_inserted_p
2977 || !ptid_equal (ecs->ptid, inferior_ptid)
4e1c45ea
PA
2978 || !currently_stepping (ecs->event_thread)
2979 || ecs->event_thread->prev_pc == breakpoint_pc)
515630c5 2980 regcache_write_pc (regcache, breakpoint_pc);
96429cc8
HZ
2981
2982 if (RECORD_IS_USED)
2983 do_cleanups (old_cleanups);
8aad930b 2984 }
4fa8626c
DJ
2985}
2986
0d1e5fa7
PA
2987void
2988init_infwait_state (void)
2989{
2990 waiton_ptid = pid_to_ptid (-1);
2991 infwait_state = infwait_normal_state;
2992}
2993
94cc34af
PA
2994void
2995error_is_running (void)
2996{
3e43a32a
MS
2997 error (_("Cannot execute this command while "
2998 "the selected thread is running."));
94cc34af
PA
2999}
3000
3001void
3002ensure_not_running (void)
3003{
3004 if (is_running (inferior_ptid))
3005 error_is_running ();
3006}
3007
edb3359d
DJ
3008static int
3009stepped_in_from (struct frame_info *frame, struct frame_id step_frame_id)
3010{
3011 for (frame = get_prev_frame (frame);
3012 frame != NULL;
3013 frame = get_prev_frame (frame))
3014 {
3015 if (frame_id_eq (get_frame_id (frame), step_frame_id))
3016 return 1;
3017 if (get_frame_type (frame) != INLINE_FRAME)
3018 break;
3019 }
3020
3021 return 0;
3022}
3023
a96d9b2e
SDJ
3024/* Auxiliary function that handles syscall entry/return events.
3025 It returns 1 if the inferior should keep going (and GDB
3026 should ignore the event), or 0 if the event deserves to be
3027 processed. */
ca2163eb 3028
a96d9b2e 3029static int
ca2163eb 3030handle_syscall_event (struct execution_control_state *ecs)
a96d9b2e 3031{
ca2163eb
PA
3032 struct regcache *regcache;
3033 struct gdbarch *gdbarch;
3034 int syscall_number;
3035
3036 if (!ptid_equal (ecs->ptid, inferior_ptid))
3037 context_switch (ecs->ptid);
3038
3039 regcache = get_thread_regcache (ecs->ptid);
3040 gdbarch = get_regcache_arch (regcache);
3041 syscall_number = gdbarch_get_syscall_number (gdbarch, ecs->ptid);
3042 stop_pc = regcache_read_pc (regcache);
3043
a96d9b2e
SDJ
3044 target_last_waitstatus.value.syscall_number = syscall_number;
3045
3046 if (catch_syscall_enabled () > 0
3047 && catching_syscall_number (syscall_number) > 0)
3048 {
3049 if (debug_infrun)
3050 fprintf_unfiltered (gdb_stdlog, "infrun: syscall number = '%d'\n",
3051 syscall_number);
a96d9b2e 3052
16c381f0 3053 ecs->event_thread->control.stop_bpstat
6c95b8df
PA
3054 = bpstat_stop_status (get_regcache_aspace (regcache),
3055 stop_pc, ecs->ptid);
16c381f0
JK
3056 ecs->random_signal
3057 = !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat);
a96d9b2e 3058
ca2163eb
PA
3059 if (!ecs->random_signal)
3060 {
3061 /* Catchpoint hit. */
16c381f0 3062 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_TRAP;
ca2163eb
PA
3063 return 0;
3064 }
a96d9b2e 3065 }
ca2163eb
PA
3066
3067 /* If no catchpoint triggered for this, then keep going. */
16c381f0 3068 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
ca2163eb
PA
3069 keep_going (ecs);
3070 return 1;
a96d9b2e
SDJ
3071}
3072
cd0fc7c3
SS
3073/* Given an execution control state that has been freshly filled in
3074 by an event from the inferior, figure out what it means and take
3075 appropriate action. */
c906108c 3076
ec9499be 3077static void
96baa820 3078handle_inferior_event (struct execution_control_state *ecs)
cd0fc7c3 3079{
568d6575
UW
3080 struct frame_info *frame;
3081 struct gdbarch *gdbarch;
c8edd8b4 3082 int sw_single_step_trap_p = 0;
d983da9c
DJ
3083 int stopped_by_watchpoint;
3084 int stepped_after_stopped_by_watchpoint = 0;
2afb61aa 3085 struct symtab_and_line stop_pc_sal;
d6b48e9c
PA
3086 enum stop_kind stop_soon;
3087
28736962
PA
3088 if (ecs->ws.kind == TARGET_WAITKIND_IGNORE)
3089 {
3090 /* We had an event in the inferior, but we are not interested in
3091 handling it at this level. The lower layers have already
3092 done what needs to be done, if anything.
3093
3094 One of the possible circumstances for this is when the
3095 inferior produces output for the console. The inferior has
3096 not stopped, and we are ignoring the event. Another possible
3097 circumstance is any event which the lower level knows will be
3098 reported multiple times without an intervening resume. */
3099 if (debug_infrun)
3100 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_IGNORE\n");
3101 prepare_to_wait (ecs);
3102 return;
3103 }
3104
d6b48e9c 3105 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
28736962 3106 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED)
d6b48e9c
PA
3107 {
3108 struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
abbb1732 3109
d6b48e9c 3110 gdb_assert (inf);
16c381f0 3111 stop_soon = inf->control.stop_soon;
d6b48e9c
PA
3112 }
3113 else
3114 stop_soon = NO_STOP_QUIETLY;
cd0fc7c3 3115
1777feb0 3116 /* Cache the last pid/waitstatus. */
39f77062 3117 target_last_wait_ptid = ecs->ptid;
0d1e5fa7 3118 target_last_waitstatus = ecs->ws;
e02bc4cc 3119
ca005067 3120 /* Always clear state belonging to the previous time we stopped. */
aa7d318d 3121 stop_stack_dummy = STOP_NONE;
ca005067 3122
1777feb0 3123 /* If it's a new process, add it to the thread database. */
8c90c137
LM
3124
3125 ecs->new_thread_event = (!ptid_equal (ecs->ptid, inferior_ptid)
3126 && !ptid_equal (ecs->ptid, minus_one_ptid)
3127 && !in_thread_list (ecs->ptid));
3128
3129 if (ecs->ws.kind != TARGET_WAITKIND_EXITED
3130 && ecs->ws.kind != TARGET_WAITKIND_SIGNALLED && ecs->new_thread_event)
3131 add_thread (ecs->ptid);
3132
e09875d4 3133 ecs->event_thread = find_thread_ptid (ecs->ptid);
88ed393a
JK
3134
3135 /* Dependent on valid ECS->EVENT_THREAD. */
3136 adjust_pc_after_break (ecs);
3137
3138 /* Dependent on the current PC value modified by adjust_pc_after_break. */
3139 reinit_frame_cache ();
3140
28736962
PA
3141 breakpoint_retire_moribund ();
3142
2b009048
DJ
3143 /* First, distinguish signals caused by the debugger from signals
3144 that have to do with the program's own actions. Note that
3145 breakpoint insns may cause SIGTRAP or SIGILL or SIGEMT, depending
3146 on the operating system version. Here we detect when a SIGILL or
3147 SIGEMT is really a breakpoint and change it to SIGTRAP. We do
3148 something similar for SIGSEGV, since a SIGSEGV will be generated
3149 when we're trying to execute a breakpoint instruction on a
3150 non-executable stack. This happens for call dummy breakpoints
3151 for architectures like SPARC that place call dummies on the
3152 stack. */
2b009048
DJ
3153 if (ecs->ws.kind == TARGET_WAITKIND_STOPPED
3154 && (ecs->ws.value.sig == TARGET_SIGNAL_ILL
3155 || ecs->ws.value.sig == TARGET_SIGNAL_SEGV
de0a0249 3156 || ecs->ws.value.sig == TARGET_SIGNAL_EMT))
2b009048 3157 {
de0a0249
UW
3158 struct regcache *regcache = get_thread_regcache (ecs->ptid);
3159
3160 if (breakpoint_inserted_here_p (get_regcache_aspace (regcache),
3161 regcache_read_pc (regcache)))
3162 {
3163 if (debug_infrun)
3164 fprintf_unfiltered (gdb_stdlog,
3165 "infrun: Treating signal as SIGTRAP\n");
3166 ecs->ws.value.sig = TARGET_SIGNAL_TRAP;
3167 }
2b009048
DJ
3168 }
3169
28736962
PA
3170 /* Mark the non-executing threads accordingly. In all-stop, all
3171 threads of all processes are stopped when we get any event
3172 reported. In non-stop mode, only the event thread stops. If
3173 we're handling a process exit in non-stop mode, there's nothing
3174 to do, as threads of the dead process are gone, and threads of
3175 any other process were left running. */
3176 if (!non_stop)
3177 set_executing (minus_one_ptid, 0);
3178 else if (ecs->ws.kind != TARGET_WAITKIND_SIGNALLED
3179 && ecs->ws.kind != TARGET_WAITKIND_EXITED)
3180 set_executing (inferior_ptid, 0);
8c90c137 3181
0d1e5fa7 3182 switch (infwait_state)
488f131b
JB
3183 {
3184 case infwait_thread_hop_state:
527159b7 3185 if (debug_infrun)
8a9de0e4 3186 fprintf_unfiltered (gdb_stdlog, "infrun: infwait_thread_hop_state\n");
65e82032 3187 break;
b83266a0 3188
488f131b 3189 case infwait_normal_state:
527159b7 3190 if (debug_infrun)
8a9de0e4 3191 fprintf_unfiltered (gdb_stdlog, "infrun: infwait_normal_state\n");
d983da9c
DJ
3192 break;
3193
3194 case infwait_step_watch_state:
3195 if (debug_infrun)
3196 fprintf_unfiltered (gdb_stdlog,
3197 "infrun: infwait_step_watch_state\n");
3198
3199 stepped_after_stopped_by_watchpoint = 1;
488f131b 3200 break;
b83266a0 3201
488f131b 3202 case infwait_nonstep_watch_state:
527159b7 3203 if (debug_infrun)
8a9de0e4
AC
3204 fprintf_unfiltered (gdb_stdlog,
3205 "infrun: infwait_nonstep_watch_state\n");
488f131b 3206 insert_breakpoints ();
c906108c 3207
488f131b
JB
3208 /* FIXME-maybe: is this cleaner than setting a flag? Does it
3209 handle things like signals arriving and other things happening
3210 in combination correctly? */
3211 stepped_after_stopped_by_watchpoint = 1;
3212 break;
65e82032
AC
3213
3214 default:
e2e0b3e5 3215 internal_error (__FILE__, __LINE__, _("bad switch"));
488f131b 3216 }
ec9499be 3217
0d1e5fa7 3218 infwait_state = infwait_normal_state;
ec9499be 3219 waiton_ptid = pid_to_ptid (-1);
c906108c 3220
488f131b
JB
3221 switch (ecs->ws.kind)
3222 {
3223 case TARGET_WAITKIND_LOADED:
527159b7 3224 if (debug_infrun)
8a9de0e4 3225 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_LOADED\n");
b0f4b84b
DJ
3226 /* Ignore gracefully during startup of the inferior, as it might
3227 be the shell which has just loaded some objects, otherwise
3228 add the symbols for the newly loaded objects. Also ignore at
3229 the beginning of an attach or remote session; we will query
3230 the full list of libraries once the connection is
3231 established. */
c0236d92 3232 if (stop_soon == NO_STOP_QUIETLY)
488f131b 3233 {
488f131b
JB
3234 /* Check for any newly added shared libraries if we're
3235 supposed to be adding them automatically. Switch
3236 terminal for any messages produced by
3237 breakpoint_re_set. */
3238 target_terminal_ours_for_output ();
aff6338a 3239 /* NOTE: cagney/2003-11-25: Make certain that the target
8fb3e588
AC
3240 stack's section table is kept up-to-date. Architectures,
3241 (e.g., PPC64), use the section table to perform
3242 operations such as address => section name and hence
3243 require the table to contain all sections (including
3244 those found in shared libraries). */
b0f4b84b 3245#ifdef SOLIB_ADD
aff6338a 3246 SOLIB_ADD (NULL, 0, &current_target, auto_solib_add);
b0f4b84b
DJ
3247#else
3248 solib_add (NULL, 0, &current_target, auto_solib_add);
3249#endif
488f131b
JB
3250 target_terminal_inferior ();
3251
b0f4b84b
DJ
3252 /* If requested, stop when the dynamic linker notifies
3253 gdb of events. This allows the user to get control
3254 and place breakpoints in initializer routines for
3255 dynamically loaded objects (among other things). */
3256 if (stop_on_solib_events)
3257 {
55409f9d
DJ
3258 /* Make sure we print "Stopped due to solib-event" in
3259 normal_stop. */
3260 stop_print_frame = 1;
3261
b0f4b84b
DJ
3262 stop_stepping (ecs);
3263 return;
3264 }
3265
3266 /* NOTE drow/2007-05-11: This might be a good place to check
3267 for "catch load". */
488f131b 3268 }
b0f4b84b
DJ
3269
3270 /* If we are skipping through a shell, or through shared library
3271 loading that we aren't interested in, resume the program. If
3272 we're running the program normally, also resume. But stop if
3273 we're attaching or setting up a remote connection. */
3274 if (stop_soon == STOP_QUIETLY || stop_soon == NO_STOP_QUIETLY)
3275 {
74960c60
VP
3276 /* Loading of shared libraries might have changed breakpoint
3277 addresses. Make sure new breakpoints are inserted. */
0b02b92d
UW
3278 if (stop_soon == NO_STOP_QUIETLY
3279 && !breakpoints_always_inserted_mode ())
74960c60 3280 insert_breakpoints ();
b0f4b84b
DJ
3281 resume (0, TARGET_SIGNAL_0);
3282 prepare_to_wait (ecs);
3283 return;
3284 }
3285
3286 break;
c5aa993b 3287
488f131b 3288 case TARGET_WAITKIND_SPURIOUS:
527159b7 3289 if (debug_infrun)
8a9de0e4 3290 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SPURIOUS\n");
488f131b
JB
3291 resume (0, TARGET_SIGNAL_0);
3292 prepare_to_wait (ecs);
3293 return;
c5aa993b 3294
488f131b 3295 case TARGET_WAITKIND_EXITED:
527159b7 3296 if (debug_infrun)
8a9de0e4 3297 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXITED\n");
fb66883a 3298 inferior_ptid = ecs->ptid;
6c95b8df
PA
3299 set_current_inferior (find_inferior_pid (ptid_get_pid (ecs->ptid)));
3300 set_current_program_space (current_inferior ()->pspace);
3301 handle_vfork_child_exec_or_exit (0);
1777feb0 3302 target_terminal_ours (); /* Must do this before mourn anyway. */
33d62d64 3303 print_exited_reason (ecs->ws.value.integer);
488f131b
JB
3304
3305 /* Record the exit code in the convenience variable $_exitcode, so
3306 that the user can inspect this again later. */
4fa62494
UW
3307 set_internalvar_integer (lookup_internalvar ("_exitcode"),
3308 (LONGEST) ecs->ws.value.integer);
488f131b
JB
3309 gdb_flush (gdb_stdout);
3310 target_mourn_inferior ();
1c0fdd0e 3311 singlestep_breakpoints_inserted_p = 0;
d03285ec 3312 cancel_single_step_breakpoints ();
488f131b
JB
3313 stop_print_frame = 0;
3314 stop_stepping (ecs);
3315 return;
c5aa993b 3316
488f131b 3317 case TARGET_WAITKIND_SIGNALLED:
527159b7 3318 if (debug_infrun)
8a9de0e4 3319 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_SIGNALLED\n");
fb66883a 3320 inferior_ptid = ecs->ptid;
6c95b8df
PA
3321 set_current_inferior (find_inferior_pid (ptid_get_pid (ecs->ptid)));
3322 set_current_program_space (current_inferior ()->pspace);
3323 handle_vfork_child_exec_or_exit (0);
488f131b 3324 stop_print_frame = 0;
1777feb0 3325 target_terminal_ours (); /* Must do this before mourn anyway. */
c5aa993b 3326
488f131b
JB
3327 /* Note: By definition of TARGET_WAITKIND_SIGNALLED, we shouldn't
3328 reach here unless the inferior is dead. However, for years
3329 target_kill() was called here, which hints that fatal signals aren't
3330 really fatal on some systems. If that's true, then some changes
1777feb0 3331 may be needed. */
488f131b 3332 target_mourn_inferior ();
c906108c 3333
33d62d64 3334 print_signal_exited_reason (ecs->ws.value.sig);
1c0fdd0e 3335 singlestep_breakpoints_inserted_p = 0;
d03285ec 3336 cancel_single_step_breakpoints ();
488f131b
JB
3337 stop_stepping (ecs);
3338 return;
c906108c 3339
488f131b 3340 /* The following are the only cases in which we keep going;
1777feb0 3341 the above cases end in a continue or goto. */
488f131b 3342 case TARGET_WAITKIND_FORKED:
deb3b17b 3343 case TARGET_WAITKIND_VFORKED:
527159b7 3344 if (debug_infrun)
8a9de0e4 3345 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_FORKED\n");
c906108c 3346
5a2901d9
DJ
3347 if (!ptid_equal (ecs->ptid, inferior_ptid))
3348 {
0d1e5fa7 3349 context_switch (ecs->ptid);
35f196d9 3350 reinit_frame_cache ();
5a2901d9
DJ
3351 }
3352
b242c3c2
PA
3353 /* Immediately detach breakpoints from the child before there's
3354 any chance of letting the user delete breakpoints from the
3355 breakpoint lists. If we don't do this early, it's easy to
3356 leave left over traps in the child, vis: "break foo; catch
3357 fork; c; <fork>; del; c; <child calls foo>". We only follow
3358 the fork on the last `continue', and by that time the
3359 breakpoint at "foo" is long gone from the breakpoint table.
3360 If we vforked, then we don't need to unpatch here, since both
3361 parent and child are sharing the same memory pages; we'll
3362 need to unpatch at follow/detach time instead to be certain
3363 that new breakpoints added between catchpoint hit time and
3364 vfork follow are detached. */
3365 if (ecs->ws.kind != TARGET_WAITKIND_VFORKED)
3366 {
3367 int child_pid = ptid_get_pid (ecs->ws.value.related_pid);
3368
3369 /* This won't actually modify the breakpoint list, but will
3370 physically remove the breakpoints from the child. */
3371 detach_breakpoints (child_pid);
3372 }
3373
d03285ec
UW
3374 if (singlestep_breakpoints_inserted_p)
3375 {
1777feb0 3376 /* Pull the single step breakpoints out of the target. */
d03285ec
UW
3377 remove_single_step_breakpoints ();
3378 singlestep_breakpoints_inserted_p = 0;
3379 }
3380
e58b0e63
PA
3381 /* In case the event is caught by a catchpoint, remember that
3382 the event is to be followed at the next resume of the thread,
3383 and not immediately. */
3384 ecs->event_thread->pending_follow = ecs->ws;
3385
fb14de7b 3386 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
675bf4cb 3387
16c381f0 3388 ecs->event_thread->control.stop_bpstat
6c95b8df
PA
3389 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
3390 stop_pc, ecs->ptid);
675bf4cb 3391
67822962
PA
3392 /* Note that we're interested in knowing the bpstat actually
3393 causes a stop, not just if it may explain the signal.
3394 Software watchpoints, for example, always appear in the
3395 bpstat. */
16c381f0
JK
3396 ecs->random_signal
3397 = !bpstat_causes_stop (ecs->event_thread->control.stop_bpstat);
04e68871
DJ
3398
3399 /* If no catchpoint triggered for this, then keep going. */
3400 if (ecs->random_signal)
3401 {
6c95b8df
PA
3402 ptid_t parent;
3403 ptid_t child;
e58b0e63 3404 int should_resume;
3e43a32a
MS
3405 int follow_child
3406 = (follow_fork_mode_string == follow_fork_mode_child);
e58b0e63 3407
16c381f0 3408 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
e58b0e63
PA
3409
3410 should_resume = follow_fork ();
3411
6c95b8df
PA
3412 parent = ecs->ptid;
3413 child = ecs->ws.value.related_pid;
3414
3415 /* In non-stop mode, also resume the other branch. */
3416 if (non_stop && !detach_fork)
3417 {
3418 if (follow_child)
3419 switch_to_thread (parent);
3420 else
3421 switch_to_thread (child);
3422
3423 ecs->event_thread = inferior_thread ();
3424 ecs->ptid = inferior_ptid;
3425 keep_going (ecs);
3426 }
3427
3428 if (follow_child)
3429 switch_to_thread (child);
3430 else
3431 switch_to_thread (parent);
3432
e58b0e63
PA
3433 ecs->event_thread = inferior_thread ();
3434 ecs->ptid = inferior_ptid;
3435
3436 if (should_resume)
3437 keep_going (ecs);
3438 else
3439 stop_stepping (ecs);
04e68871
DJ
3440 return;
3441 }
16c381f0 3442 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_TRAP;
488f131b
JB
3443 goto process_event_stop_test;
3444
6c95b8df
PA
3445 case TARGET_WAITKIND_VFORK_DONE:
3446 /* Done with the shared memory region. Re-insert breakpoints in
3447 the parent, and keep going. */
3448
3449 if (debug_infrun)
3e43a32a
MS
3450 fprintf_unfiltered (gdb_stdlog,
3451 "infrun: TARGET_WAITKIND_VFORK_DONE\n");
6c95b8df
PA
3452
3453 if (!ptid_equal (ecs->ptid, inferior_ptid))
3454 context_switch (ecs->ptid);
3455
3456 current_inferior ()->waiting_for_vfork_done = 0;
56710373 3457 current_inferior ()->pspace->breakpoints_not_allowed = 0;
6c95b8df
PA
3458 /* This also takes care of reinserting breakpoints in the
3459 previously locked inferior. */
3460 keep_going (ecs);
3461 return;
3462
488f131b 3463 case TARGET_WAITKIND_EXECD:
527159b7 3464 if (debug_infrun)
fc5261f2 3465 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_EXECD\n");
488f131b 3466
5a2901d9
DJ
3467 if (!ptid_equal (ecs->ptid, inferior_ptid))
3468 {
0d1e5fa7 3469 context_switch (ecs->ptid);
35f196d9 3470 reinit_frame_cache ();
5a2901d9
DJ
3471 }
3472
d03285ec
UW
3473 singlestep_breakpoints_inserted_p = 0;
3474 cancel_single_step_breakpoints ();
3475
fb14de7b 3476 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
795e548f 3477
6c95b8df
PA
3478 /* Do whatever is necessary to the parent branch of the vfork. */
3479 handle_vfork_child_exec_or_exit (1);
3480
795e548f
PA
3481 /* This causes the eventpoints and symbol table to be reset.
3482 Must do this now, before trying to determine whether to
3483 stop. */
71b43ef8 3484 follow_exec (inferior_ptid, ecs->ws.value.execd_pathname);
795e548f 3485
16c381f0 3486 ecs->event_thread->control.stop_bpstat
6c95b8df
PA
3487 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
3488 stop_pc, ecs->ptid);
16c381f0
JK
3489 ecs->random_signal
3490 = !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat);
795e548f 3491
71b43ef8
PA
3492 /* Note that this may be referenced from inside
3493 bpstat_stop_status above, through inferior_has_execd. */
3494 xfree (ecs->ws.value.execd_pathname);
3495 ecs->ws.value.execd_pathname = NULL;
3496
04e68871
DJ
3497 /* If no catchpoint triggered for this, then keep going. */
3498 if (ecs->random_signal)
3499 {
16c381f0 3500 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
04e68871
DJ
3501 keep_going (ecs);
3502 return;
3503 }
16c381f0 3504 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_TRAP;
488f131b
JB
3505 goto process_event_stop_test;
3506
b4dc5ffa
MK
3507 /* Be careful not to try to gather much state about a thread
3508 that's in a syscall. It's frequently a losing proposition. */
488f131b 3509 case TARGET_WAITKIND_SYSCALL_ENTRY:
527159b7 3510 if (debug_infrun)
3e43a32a
MS
3511 fprintf_unfiltered (gdb_stdlog,
3512 "infrun: TARGET_WAITKIND_SYSCALL_ENTRY\n");
1777feb0 3513 /* Getting the current syscall number. */
ca2163eb 3514 if (handle_syscall_event (ecs) != 0)
a96d9b2e
SDJ
3515 return;
3516 goto process_event_stop_test;
c906108c 3517
488f131b
JB
3518 /* Before examining the threads further, step this thread to
3519 get it entirely out of the syscall. (We get notice of the
3520 event when the thread is just on the verge of exiting a
3521 syscall. Stepping one instruction seems to get it back
b4dc5ffa 3522 into user code.) */
488f131b 3523 case TARGET_WAITKIND_SYSCALL_RETURN:
527159b7 3524 if (debug_infrun)
3e43a32a
MS
3525 fprintf_unfiltered (gdb_stdlog,
3526 "infrun: TARGET_WAITKIND_SYSCALL_RETURN\n");
ca2163eb 3527 if (handle_syscall_event (ecs) != 0)
a96d9b2e
SDJ
3528 return;
3529 goto process_event_stop_test;
c906108c 3530
488f131b 3531 case TARGET_WAITKIND_STOPPED:
527159b7 3532 if (debug_infrun)
8a9de0e4 3533 fprintf_unfiltered (gdb_stdlog, "infrun: TARGET_WAITKIND_STOPPED\n");
16c381f0 3534 ecs->event_thread->suspend.stop_signal = ecs->ws.value.sig;
488f131b 3535 break;
c906108c 3536
b2175913
MS
3537 case TARGET_WAITKIND_NO_HISTORY:
3538 /* Reverse execution: target ran out of history info. */
fb14de7b 3539 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
33d62d64 3540 print_no_history_reason ();
b2175913
MS
3541 stop_stepping (ecs);
3542 return;
488f131b 3543 }
c906108c 3544
488f131b
JB
3545 if (ecs->new_thread_event)
3546 {
94cc34af
PA
3547 if (non_stop)
3548 /* Non-stop assumes that the target handles adding new threads
3549 to the thread list. */
3e43a32a
MS
3550 internal_error (__FILE__, __LINE__,
3551 "targets should add new threads to the thread "
3552 "list themselves in non-stop mode.");
94cc34af
PA
3553
3554 /* We may want to consider not doing a resume here in order to
3555 give the user a chance to play with the new thread. It might
3556 be good to make that a user-settable option. */
3557
3558 /* At this point, all threads are stopped (happens automatically
3559 in either the OS or the native code). Therefore we need to
3560 continue all threads in order to make progress. */
3561
173853dc
PA
3562 if (!ptid_equal (ecs->ptid, inferior_ptid))
3563 context_switch (ecs->ptid);
488f131b
JB
3564 target_resume (RESUME_ALL, 0, TARGET_SIGNAL_0);
3565 prepare_to_wait (ecs);
3566 return;
3567 }
c906108c 3568
2020b7ab 3569 if (ecs->ws.kind == TARGET_WAITKIND_STOPPED)
252fbfc8
PA
3570 {
3571 /* Do we need to clean up the state of a thread that has
3572 completed a displaced single-step? (Doing so usually affects
3573 the PC, so do it here, before we set stop_pc.) */
16c381f0
JK
3574 displaced_step_fixup (ecs->ptid,
3575 ecs->event_thread->suspend.stop_signal);
252fbfc8
PA
3576
3577 /* If we either finished a single-step or hit a breakpoint, but
3578 the user wanted this thread to be stopped, pretend we got a
3579 SIG0 (generic unsignaled stop). */
3580
3581 if (ecs->event_thread->stop_requested
16c381f0
JK
3582 && ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP)
3583 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
252fbfc8 3584 }
237fc4c9 3585
515630c5 3586 stop_pc = regcache_read_pc (get_thread_regcache (ecs->ptid));
488f131b 3587
527159b7 3588 if (debug_infrun)
237fc4c9 3589 {
5af949e3
UW
3590 struct regcache *regcache = get_thread_regcache (ecs->ptid);
3591 struct gdbarch *gdbarch = get_regcache_arch (regcache);
7f82dfc7
JK
3592 struct cleanup *old_chain = save_inferior_ptid ();
3593
3594 inferior_ptid = ecs->ptid;
5af949e3
UW
3595
3596 fprintf_unfiltered (gdb_stdlog, "infrun: stop_pc = %s\n",
3597 paddress (gdbarch, stop_pc));
d92524f1 3598 if (target_stopped_by_watchpoint ())
237fc4c9
PA
3599 {
3600 CORE_ADDR addr;
abbb1732 3601
237fc4c9
PA
3602 fprintf_unfiltered (gdb_stdlog, "infrun: stopped by watchpoint\n");
3603
3604 if (target_stopped_data_address (&current_target, &addr))
3605 fprintf_unfiltered (gdb_stdlog,
5af949e3
UW
3606 "infrun: stopped data address = %s\n",
3607 paddress (gdbarch, addr));
237fc4c9
PA
3608 else
3609 fprintf_unfiltered (gdb_stdlog,
3610 "infrun: (no data address available)\n");
3611 }
7f82dfc7
JK
3612
3613 do_cleanups (old_chain);
237fc4c9 3614 }
527159b7 3615
9f976b41
DJ
3616 if (stepping_past_singlestep_breakpoint)
3617 {
1c0fdd0e 3618 gdb_assert (singlestep_breakpoints_inserted_p);
9f976b41
DJ
3619 gdb_assert (ptid_equal (singlestep_ptid, ecs->ptid));
3620 gdb_assert (!ptid_equal (singlestep_ptid, saved_singlestep_ptid));
3621
3622 stepping_past_singlestep_breakpoint = 0;
3623
3624 /* We've either finished single-stepping past the single-step
8fb3e588
AC
3625 breakpoint, or stopped for some other reason. It would be nice if
3626 we could tell, but we can't reliably. */
16c381f0 3627 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP)
8fb3e588 3628 {
527159b7 3629 if (debug_infrun)
3e43a32a
MS
3630 fprintf_unfiltered (gdb_stdlog,
3631 "infrun: stepping_past_"
3632 "singlestep_breakpoint\n");
9f976b41 3633 /* Pull the single step breakpoints out of the target. */
e0cd558a 3634 remove_single_step_breakpoints ();
9f976b41
DJ
3635 singlestep_breakpoints_inserted_p = 0;
3636
3637 ecs->random_signal = 0;
16c381f0 3638 ecs->event_thread->control.trap_expected = 0;
9f976b41 3639
0d1e5fa7 3640 context_switch (saved_singlestep_ptid);
9a4105ab
AC
3641 if (deprecated_context_hook)
3642 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
9f976b41
DJ
3643
3644 resume (1, TARGET_SIGNAL_0);
3645 prepare_to_wait (ecs);
3646 return;
3647 }
3648 }
3649
ca67fcb8 3650 if (!ptid_equal (deferred_step_ptid, null_ptid))
6a6b96b9 3651 {
94cc34af
PA
3652 /* In non-stop mode, there's never a deferred_step_ptid set. */
3653 gdb_assert (!non_stop);
3654
6a6b96b9
UW
3655 /* If we stopped for some other reason than single-stepping, ignore
3656 the fact that we were supposed to switch back. */
16c381f0 3657 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP)
6a6b96b9
UW
3658 {
3659 if (debug_infrun)
3660 fprintf_unfiltered (gdb_stdlog,
ca67fcb8 3661 "infrun: handling deferred step\n");
6a6b96b9
UW
3662
3663 /* Pull the single step breakpoints out of the target. */
3664 if (singlestep_breakpoints_inserted_p)
3665 {
3666 remove_single_step_breakpoints ();
3667 singlestep_breakpoints_inserted_p = 0;
3668 }
3669
cd3da28e
PA
3670 ecs->event_thread->control.trap_expected = 0;
3671
6a6b96b9
UW
3672 /* Note: We do not call context_switch at this point, as the
3673 context is already set up for stepping the original thread. */
ca67fcb8
VP
3674 switch_to_thread (deferred_step_ptid);
3675 deferred_step_ptid = null_ptid;
6a6b96b9
UW
3676 /* Suppress spurious "Switching to ..." message. */
3677 previous_inferior_ptid = inferior_ptid;
3678
3679 resume (1, TARGET_SIGNAL_0);
3680 prepare_to_wait (ecs);
3681 return;
3682 }
ca67fcb8
VP
3683
3684 deferred_step_ptid = null_ptid;
6a6b96b9
UW
3685 }
3686
488f131b
JB
3687 /* See if a thread hit a thread-specific breakpoint that was meant for
3688 another thread. If so, then step that thread past the breakpoint,
3689 and continue it. */
3690
16c381f0 3691 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP)
488f131b 3692 {
9f976b41 3693 int thread_hop_needed = 0;
cf00dfa7
VP
3694 struct address_space *aspace =
3695 get_regcache_aspace (get_thread_regcache (ecs->ptid));
9f976b41 3696
f8d40ec8 3697 /* Check if a regular breakpoint has been hit before checking
1777feb0 3698 for a potential single step breakpoint. Otherwise, GDB will
f8d40ec8 3699 not see this breakpoint hit when stepping onto breakpoints. */
6c95b8df 3700 if (regular_breakpoint_inserted_here_p (aspace, stop_pc))
488f131b 3701 {
c5aa993b 3702 ecs->random_signal = 0;
6c95b8df 3703 if (!breakpoint_thread_match (aspace, stop_pc, ecs->ptid))
9f976b41
DJ
3704 thread_hop_needed = 1;
3705 }
1c0fdd0e 3706 else if (singlestep_breakpoints_inserted_p)
9f976b41 3707 {
fd48f117
DJ
3708 /* We have not context switched yet, so this should be true
3709 no matter which thread hit the singlestep breakpoint. */
3710 gdb_assert (ptid_equal (inferior_ptid, singlestep_ptid));
3711 if (debug_infrun)
3712 fprintf_unfiltered (gdb_stdlog, "infrun: software single step "
3713 "trap for %s\n",
3714 target_pid_to_str (ecs->ptid));
3715
9f976b41
DJ
3716 ecs->random_signal = 0;
3717 /* The call to in_thread_list is necessary because PTIDs sometimes
3718 change when we go from single-threaded to multi-threaded. If
3719 the singlestep_ptid is still in the list, assume that it is
3720 really different from ecs->ptid. */
3721 if (!ptid_equal (singlestep_ptid, ecs->ptid)
3722 && in_thread_list (singlestep_ptid))
3723 {
fd48f117
DJ
3724 /* If the PC of the thread we were trying to single-step
3725 has changed, discard this event (which we were going
3726 to ignore anyway), and pretend we saw that thread
3727 trap. This prevents us continuously moving the
3728 single-step breakpoint forward, one instruction at a
3729 time. If the PC has changed, then the thread we were
3730 trying to single-step has trapped or been signalled,
3731 but the event has not been reported to GDB yet.
3732
3733 There might be some cases where this loses signal
3734 information, if a signal has arrived at exactly the
3735 same time that the PC changed, but this is the best
3736 we can do with the information available. Perhaps we
3737 should arrange to report all events for all threads
3738 when they stop, or to re-poll the remote looking for
3739 this particular thread (i.e. temporarily enable
3740 schedlock). */
515630c5
UW
3741
3742 CORE_ADDR new_singlestep_pc
3743 = regcache_read_pc (get_thread_regcache (singlestep_ptid));
3744
3745 if (new_singlestep_pc != singlestep_pc)
fd48f117 3746 {
2020b7ab
PA
3747 enum target_signal stop_signal;
3748
fd48f117
DJ
3749 if (debug_infrun)
3750 fprintf_unfiltered (gdb_stdlog, "infrun: unexpected thread,"
3751 " but expected thread advanced also\n");
3752
3753 /* The current context still belongs to
3754 singlestep_ptid. Don't swap here, since that's
3755 the context we want to use. Just fudge our
3756 state and continue. */
16c381f0
JK
3757 stop_signal = ecs->event_thread->suspend.stop_signal;
3758 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
fd48f117 3759 ecs->ptid = singlestep_ptid;
e09875d4 3760 ecs->event_thread = find_thread_ptid (ecs->ptid);
16c381f0 3761 ecs->event_thread->suspend.stop_signal = stop_signal;
515630c5 3762 stop_pc = new_singlestep_pc;
fd48f117
DJ
3763 }
3764 else
3765 {
3766 if (debug_infrun)
3767 fprintf_unfiltered (gdb_stdlog,
3768 "infrun: unexpected thread\n");
3769
3770 thread_hop_needed = 1;
3771 stepping_past_singlestep_breakpoint = 1;
3772 saved_singlestep_ptid = singlestep_ptid;
3773 }
9f976b41
DJ
3774 }
3775 }
3776
3777 if (thread_hop_needed)
8fb3e588 3778 {
9f5a595d 3779 struct regcache *thread_regcache;
237fc4c9 3780 int remove_status = 0;
8fb3e588 3781
527159b7 3782 if (debug_infrun)
8a9de0e4 3783 fprintf_unfiltered (gdb_stdlog, "infrun: thread_hop_needed\n");
527159b7 3784
b3444185
PA
3785 /* Switch context before touching inferior memory, the
3786 previous thread may have exited. */
3787 if (!ptid_equal (inferior_ptid, ecs->ptid))
3788 context_switch (ecs->ptid);
3789
8fb3e588 3790 /* Saw a breakpoint, but it was hit by the wrong thread.
1777feb0 3791 Just continue. */
8fb3e588 3792
1c0fdd0e 3793 if (singlestep_breakpoints_inserted_p)
488f131b 3794 {
1777feb0 3795 /* Pull the single step breakpoints out of the target. */
e0cd558a 3796 remove_single_step_breakpoints ();
8fb3e588
AC
3797 singlestep_breakpoints_inserted_p = 0;
3798 }
3799
237fc4c9
PA
3800 /* If the arch can displace step, don't remove the
3801 breakpoints. */
9f5a595d
UW
3802 thread_regcache = get_thread_regcache (ecs->ptid);
3803 if (!use_displaced_stepping (get_regcache_arch (thread_regcache)))
237fc4c9
PA
3804 remove_status = remove_breakpoints ();
3805
8fb3e588
AC
3806 /* Did we fail to remove breakpoints? If so, try
3807 to set the PC past the bp. (There's at least
3808 one situation in which we can fail to remove
3809 the bp's: On HP-UX's that use ttrace, we can't
3810 change the address space of a vforking child
3811 process until the child exits (well, okay, not
1777feb0 3812 then either :-) or execs. */
8fb3e588 3813 if (remove_status != 0)
9d9cd7ac 3814 error (_("Cannot step over breakpoint hit in wrong thread"));
8fb3e588
AC
3815 else
3816 { /* Single step */
94cc34af
PA
3817 if (!non_stop)
3818 {
3819 /* Only need to require the next event from this
3820 thread in all-stop mode. */
3821 waiton_ptid = ecs->ptid;
3822 infwait_state = infwait_thread_hop_state;
3823 }
8fb3e588 3824
4e1c45ea 3825 ecs->event_thread->stepping_over_breakpoint = 1;
8fb3e588 3826 keep_going (ecs);
8fb3e588
AC
3827 return;
3828 }
488f131b 3829 }
1c0fdd0e 3830 else if (singlestep_breakpoints_inserted_p)
8fb3e588
AC
3831 {
3832 sw_single_step_trap_p = 1;
3833 ecs->random_signal = 0;
3834 }
488f131b
JB
3835 }
3836 else
3837 ecs->random_signal = 1;
c906108c 3838
488f131b 3839 /* See if something interesting happened to the non-current thread. If
b40c7d58
DJ
3840 so, then switch to that thread. */
3841 if (!ptid_equal (ecs->ptid, inferior_ptid))
488f131b 3842 {
527159b7 3843 if (debug_infrun)
8a9de0e4 3844 fprintf_unfiltered (gdb_stdlog, "infrun: context switch\n");
527159b7 3845
0d1e5fa7 3846 context_switch (ecs->ptid);
c5aa993b 3847
9a4105ab
AC
3848 if (deprecated_context_hook)
3849 deprecated_context_hook (pid_to_thread_id (ecs->ptid));
488f131b 3850 }
c906108c 3851
568d6575
UW
3852 /* At this point, get hold of the now-current thread's frame. */
3853 frame = get_current_frame ();
3854 gdbarch = get_frame_arch (frame);
3855
1c0fdd0e 3856 if (singlestep_breakpoints_inserted_p)
488f131b 3857 {
1777feb0 3858 /* Pull the single step breakpoints out of the target. */
e0cd558a 3859 remove_single_step_breakpoints ();
488f131b
JB
3860 singlestep_breakpoints_inserted_p = 0;
3861 }
c906108c 3862
d983da9c
DJ
3863 if (stepped_after_stopped_by_watchpoint)
3864 stopped_by_watchpoint = 0;
3865 else
3866 stopped_by_watchpoint = watchpoints_triggered (&ecs->ws);
3867
3868 /* If necessary, step over this watchpoint. We'll be back to display
3869 it in a moment. */
3870 if (stopped_by_watchpoint
d92524f1 3871 && (target_have_steppable_watchpoint
568d6575 3872 || gdbarch_have_nonsteppable_watchpoint (gdbarch)))
488f131b 3873 {
488f131b
JB
3874 /* At this point, we are stopped at an instruction which has
3875 attempted to write to a piece of memory under control of
3876 a watchpoint. The instruction hasn't actually executed
3877 yet. If we were to evaluate the watchpoint expression
3878 now, we would get the old value, and therefore no change
3879 would seem to have occurred.
3880
3881 In order to make watchpoints work `right', we really need
3882 to complete the memory write, and then evaluate the
d983da9c
DJ
3883 watchpoint expression. We do this by single-stepping the
3884 target.
3885
3886 It may not be necessary to disable the watchpoint to stop over
3887 it. For example, the PA can (with some kernel cooperation)
3888 single step over a watchpoint without disabling the watchpoint.
3889
3890 It is far more common to need to disable a watchpoint to step
3891 the inferior over it. If we have non-steppable watchpoints,
3892 we must disable the current watchpoint; it's simplest to
3893 disable all watchpoints and breakpoints. */
2facfe5c
DD
3894 int hw_step = 1;
3895
d92524f1 3896 if (!target_have_steppable_watchpoint)
2455069d
UW
3897 {
3898 remove_breakpoints ();
3899 /* See comment in resume why we need to stop bypassing signals
3900 while breakpoints have been removed. */
3901 target_pass_signals (0, NULL);
3902 }
2facfe5c 3903 /* Single step */
568d6575 3904 hw_step = maybe_software_singlestep (gdbarch, stop_pc);
2facfe5c 3905 target_resume (ecs->ptid, hw_step, TARGET_SIGNAL_0);
0d1e5fa7 3906 waiton_ptid = ecs->ptid;
d92524f1 3907 if (target_have_steppable_watchpoint)
0d1e5fa7 3908 infwait_state = infwait_step_watch_state;
d983da9c 3909 else
0d1e5fa7 3910 infwait_state = infwait_nonstep_watch_state;
488f131b
JB
3911 prepare_to_wait (ecs);
3912 return;
3913 }
3914
488f131b
JB
3915 ecs->stop_func_start = 0;
3916 ecs->stop_func_end = 0;
3917 ecs->stop_func_name = 0;
3918 /* Don't care about return value; stop_func_start and stop_func_name
3919 will both be 0 if it doesn't work. */
3920 find_pc_partial_function (stop_pc, &ecs->stop_func_name,
3921 &ecs->stop_func_start, &ecs->stop_func_end);
cbf3b44a 3922 ecs->stop_func_start
568d6575 3923 += gdbarch_deprecated_function_start_offset (gdbarch);
4e1c45ea 3924 ecs->event_thread->stepping_over_breakpoint = 0;
16c381f0
JK
3925 bpstat_clear (&ecs->event_thread->control.stop_bpstat);
3926 ecs->event_thread->control.stop_step = 0;
488f131b
JB
3927 stop_print_frame = 1;
3928 ecs->random_signal = 0;
3929 stopped_by_random_signal = 0;
488f131b 3930
edb3359d
DJ
3931 /* Hide inlined functions starting here, unless we just performed stepi or
3932 nexti. After stepi and nexti, always show the innermost frame (not any
3933 inline function call sites). */
16c381f0 3934 if (ecs->event_thread->control.step_range_end != 1)
edb3359d
DJ
3935 skip_inline_frames (ecs->ptid);
3936
16c381f0
JK
3937 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP
3938 && ecs->event_thread->control.trap_expected
568d6575 3939 && gdbarch_single_step_through_delay_p (gdbarch)
4e1c45ea 3940 && currently_stepping (ecs->event_thread))
3352ef37 3941 {
b50d7442 3942 /* We're trying to step off a breakpoint. Turns out that we're
3352ef37 3943 also on an instruction that needs to be stepped multiple
1777feb0 3944 times before it's been fully executing. E.g., architectures
3352ef37
AC
3945 with a delay slot. It needs to be stepped twice, once for
3946 the instruction and once for the delay slot. */
3947 int step_through_delay
568d6575 3948 = gdbarch_single_step_through_delay (gdbarch, frame);
abbb1732 3949
527159b7 3950 if (debug_infrun && step_through_delay)
8a9de0e4 3951 fprintf_unfiltered (gdb_stdlog, "infrun: step through delay\n");
16c381f0
JK
3952 if (ecs->event_thread->control.step_range_end == 0
3953 && step_through_delay)
3352ef37
AC
3954 {
3955 /* The user issued a continue when stopped at a breakpoint.
3956 Set up for another trap and get out of here. */
4e1c45ea 3957 ecs->event_thread->stepping_over_breakpoint = 1;
3352ef37
AC
3958 keep_going (ecs);
3959 return;
3960 }
3961 else if (step_through_delay)
3962 {
3963 /* The user issued a step when stopped at a breakpoint.
3964 Maybe we should stop, maybe we should not - the delay
3965 slot *might* correspond to a line of source. In any
ca67fcb8
VP
3966 case, don't decide that here, just set
3967 ecs->stepping_over_breakpoint, making sure we
3968 single-step again before breakpoints are re-inserted. */
4e1c45ea 3969 ecs->event_thread->stepping_over_breakpoint = 1;
3352ef37
AC
3970 }
3971 }
3972
488f131b
JB
3973 /* Look at the cause of the stop, and decide what to do.
3974 The alternatives are:
0d1e5fa7
PA
3975 1) stop_stepping and return; to really stop and return to the debugger,
3976 2) keep_going and return to start up again
4e1c45ea 3977 (set ecs->event_thread->stepping_over_breakpoint to 1 to single step once)
488f131b
JB
3978 3) set ecs->random_signal to 1, and the decision between 1 and 2
3979 will be made according to the signal handling tables. */
3980
16c381f0 3981 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP
b0f4b84b
DJ
3982 || stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_NO_SIGSTOP
3983 || stop_soon == STOP_QUIETLY_REMOTE)
488f131b 3984 {
16c381f0
JK
3985 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP
3986 && stop_after_trap)
488f131b 3987 {
527159b7 3988 if (debug_infrun)
8a9de0e4 3989 fprintf_unfiltered (gdb_stdlog, "infrun: stopped\n");
488f131b
JB
3990 stop_print_frame = 0;
3991 stop_stepping (ecs);
3992 return;
3993 }
c54cfec8
EZ
3994
3995 /* This is originated from start_remote(), start_inferior() and
3996 shared libraries hook functions. */
b0f4b84b 3997 if (stop_soon == STOP_QUIETLY || stop_soon == STOP_QUIETLY_REMOTE)
488f131b 3998 {
527159b7 3999 if (debug_infrun)
8a9de0e4 4000 fprintf_unfiltered (gdb_stdlog, "infrun: quietly stopped\n");
488f131b
JB
4001 stop_stepping (ecs);
4002 return;
4003 }
4004
c54cfec8 4005 /* This originates from attach_command(). We need to overwrite
a0d21d28
PA
4006 the stop_signal here, because some kernels don't ignore a
4007 SIGSTOP in a subsequent ptrace(PTRACE_CONT,SIGSTOP) call.
4008 See more comments in inferior.h. On the other hand, if we
a0ef4274 4009 get a non-SIGSTOP, report it to the user - assume the backend
a0d21d28
PA
4010 will handle the SIGSTOP if it should show up later.
4011
4012 Also consider that the attach is complete when we see a
4013 SIGTRAP. Some systems (e.g. Windows), and stubs supporting
4014 target extended-remote report it instead of a SIGSTOP
4015 (e.g. gdbserver). We already rely on SIGTRAP being our
e0ba6746
PA
4016 signal, so this is no exception.
4017
4018 Also consider that the attach is complete when we see a
4019 TARGET_SIGNAL_0. In non-stop mode, GDB will explicitly tell
4020 the target to stop all threads of the inferior, in case the
4021 low level attach operation doesn't stop them implicitly. If
4022 they weren't stopped implicitly, then the stub will report a
4023 TARGET_SIGNAL_0, meaning: stopped for no particular reason
4024 other than GDB's request. */
a0ef4274 4025 if (stop_soon == STOP_QUIETLY_NO_SIGSTOP
16c381f0
JK
4026 && (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_STOP
4027 || ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP
4028 || ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_0))
c54cfec8
EZ
4029 {
4030 stop_stepping (ecs);
16c381f0 4031 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
c54cfec8
EZ
4032 return;
4033 }
4034
fba57f8f 4035 /* See if there is a breakpoint at the current PC. */
16c381f0 4036 ecs->event_thread->control.stop_bpstat
6c95b8df
PA
4037 = bpstat_stop_status (get_regcache_aspace (get_current_regcache ()),
4038 stop_pc, ecs->ptid);
4039
fba57f8f
VP
4040 /* Following in case break condition called a
4041 function. */
4042 stop_print_frame = 1;
488f131b 4043
db82e815
PA
4044 /* This is where we handle "moribund" watchpoints. Unlike
4045 software breakpoints traps, hardware watchpoint traps are
4046 always distinguishable from random traps. If no high-level
4047 watchpoint is associated with the reported stop data address
4048 anymore, then the bpstat does not explain the signal ---
4049 simply make sure to ignore it if `stopped_by_watchpoint' is
4050 set. */
4051
4052 if (debug_infrun
16c381f0
JK
4053 && ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP
4054 && !bpstat_explains_signal (ecs->event_thread->control.stop_bpstat)
db82e815 4055 && stopped_by_watchpoint)
3e43a32a
MS
4056 fprintf_unfiltered (gdb_stdlog,
4057 "infrun: no user watchpoint explains "
4058 "watchpoint SIGTRAP, ignoring\n");
db82e815 4059
73dd234f 4060 /* NOTE: cagney/2003-03-29: These two checks for a random signal
8fb3e588
AC
4061 at one stage in the past included checks for an inferior
4062 function call's call dummy's return breakpoint. The original
4063 comment, that went with the test, read:
73dd234f 4064
8fb3e588
AC
4065 ``End of a stack dummy. Some systems (e.g. Sony news) give
4066 another signal besides SIGTRAP, so check here as well as
4067 above.''
73dd234f 4068
8002d778 4069 If someone ever tries to get call dummys on a
73dd234f 4070 non-executable stack to work (where the target would stop
03cebad2
MK
4071 with something like a SIGSEGV), then those tests might need
4072 to be re-instated. Given, however, that the tests were only
73dd234f 4073 enabled when momentary breakpoints were not being used, I
03cebad2
MK
4074 suspect that it won't be the case.
4075
8fb3e588
AC
4076 NOTE: kettenis/2004-02-05: Indeed such checks don't seem to
4077 be necessary for call dummies on a non-executable stack on
4078 SPARC. */
73dd234f 4079
16c381f0 4080 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP)
488f131b 4081 ecs->random_signal
16c381f0 4082 = !(bpstat_explains_signal (ecs->event_thread->control.stop_bpstat)
db82e815 4083 || stopped_by_watchpoint
16c381f0
JK
4084 || ecs->event_thread->control.trap_expected
4085 || (ecs->event_thread->control.step_range_end
8358c15c
JK
4086 && (ecs->event_thread->control.step_resume_breakpoint
4087 == NULL)));
488f131b
JB
4088 else
4089 {
16c381f0
JK
4090 ecs->random_signal = !bpstat_explains_signal
4091 (ecs->event_thread->control.stop_bpstat);
488f131b 4092 if (!ecs->random_signal)
16c381f0 4093 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_TRAP;
488f131b
JB
4094 }
4095 }
4096
4097 /* When we reach this point, we've pretty much decided
4098 that the reason for stopping must've been a random
1777feb0 4099 (unexpected) signal. */
488f131b
JB
4100
4101 else
4102 ecs->random_signal = 1;
488f131b 4103
04e68871 4104process_event_stop_test:
568d6575
UW
4105
4106 /* Re-fetch current thread's frame in case we did a
4107 "goto process_event_stop_test" above. */
4108 frame = get_current_frame ();
4109 gdbarch = get_frame_arch (frame);
4110
488f131b
JB
4111 /* For the program's own signals, act according to
4112 the signal handling tables. */
4113
4114 if (ecs->random_signal)
4115 {
4116 /* Signal not for debugging purposes. */
4117 int printed = 0;
24291992 4118 struct inferior *inf = find_inferior_pid (ptid_get_pid (ecs->ptid));
488f131b 4119
527159b7 4120 if (debug_infrun)
2020b7ab 4121 fprintf_unfiltered (gdb_stdlog, "infrun: random signal %d\n",
16c381f0 4122 ecs->event_thread->suspend.stop_signal);
527159b7 4123
488f131b
JB
4124 stopped_by_random_signal = 1;
4125
16c381f0 4126 if (signal_print[ecs->event_thread->suspend.stop_signal])
488f131b
JB
4127 {
4128 printed = 1;
4129 target_terminal_ours_for_output ();
16c381f0
JK
4130 print_signal_received_reason
4131 (ecs->event_thread->suspend.stop_signal);
488f131b 4132 }
252fbfc8
PA
4133 /* Always stop on signals if we're either just gaining control
4134 of the program, or the user explicitly requested this thread
4135 to remain stopped. */
d6b48e9c 4136 if (stop_soon != NO_STOP_QUIETLY
252fbfc8 4137 || ecs->event_thread->stop_requested
24291992 4138 || (!inf->detaching
16c381f0 4139 && signal_stop_state (ecs->event_thread->suspend.stop_signal)))
488f131b
JB
4140 {
4141 stop_stepping (ecs);
4142 return;
4143 }
4144 /* If not going to stop, give terminal back
4145 if we took it away. */
4146 else if (printed)
4147 target_terminal_inferior ();
4148
4149 /* Clear the signal if it should not be passed. */
16c381f0
JK
4150 if (signal_program[ecs->event_thread->suspend.stop_signal] == 0)
4151 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
488f131b 4152
fb14de7b 4153 if (ecs->event_thread->prev_pc == stop_pc
16c381f0 4154 && ecs->event_thread->control.trap_expected
8358c15c 4155 && ecs->event_thread->control.step_resume_breakpoint == NULL)
68f53502
AC
4156 {
4157 /* We were just starting a new sequence, attempting to
4158 single-step off of a breakpoint and expecting a SIGTRAP.
237fc4c9 4159 Instead this signal arrives. This signal will take us out
68f53502
AC
4160 of the stepping range so GDB needs to remember to, when
4161 the signal handler returns, resume stepping off that
4162 breakpoint. */
4163 /* To simplify things, "continue" is forced to use the same
4164 code paths as single-step - set a breakpoint at the
4165 signal return address and then, once hit, step off that
4166 breakpoint. */
237fc4c9
PA
4167 if (debug_infrun)
4168 fprintf_unfiltered (gdb_stdlog,
4169 "infrun: signal arrived while stepping over "
4170 "breakpoint\n");
d3169d93 4171
2c03e5be 4172 insert_hp_step_resume_breakpoint_at_frame (frame);
4e1c45ea 4173 ecs->event_thread->step_after_step_resume_breakpoint = 1;
2455069d
UW
4174 /* Reset trap_expected to ensure breakpoints are re-inserted. */
4175 ecs->event_thread->control.trap_expected = 0;
9d799f85
AC
4176 keep_going (ecs);
4177 return;
68f53502 4178 }
9d799f85 4179
16c381f0
JK
4180 if (ecs->event_thread->control.step_range_end != 0
4181 && ecs->event_thread->suspend.stop_signal != TARGET_SIGNAL_0
4182 && (ecs->event_thread->control.step_range_start <= stop_pc
4183 && stop_pc < ecs->event_thread->control.step_range_end)
edb3359d 4184 && frame_id_eq (get_stack_frame_id (frame),
16c381f0 4185 ecs->event_thread->control.step_stack_frame_id)
8358c15c 4186 && ecs->event_thread->control.step_resume_breakpoint == NULL)
d303a6c7
AC
4187 {
4188 /* The inferior is about to take a signal that will take it
4189 out of the single step range. Set a breakpoint at the
4190 current PC (which is presumably where the signal handler
4191 will eventually return) and then allow the inferior to
4192 run free.
4193
4194 Note that this is only needed for a signal delivered
4195 while in the single-step range. Nested signals aren't a
4196 problem as they eventually all return. */
237fc4c9
PA
4197 if (debug_infrun)
4198 fprintf_unfiltered (gdb_stdlog,
4199 "infrun: signal may take us out of "
4200 "single-step range\n");
4201
2c03e5be 4202 insert_hp_step_resume_breakpoint_at_frame (frame);
2455069d
UW
4203 /* Reset trap_expected to ensure breakpoints are re-inserted. */
4204 ecs->event_thread->control.trap_expected = 0;
9d799f85
AC
4205 keep_going (ecs);
4206 return;
d303a6c7 4207 }
9d799f85
AC
4208
4209 /* Note: step_resume_breakpoint may be non-NULL. This occures
4210 when either there's a nested signal, or when there's a
4211 pending signal enabled just as the signal handler returns
4212 (leaving the inferior at the step-resume-breakpoint without
4213 actually executing it). Either way continue until the
4214 breakpoint is really hit. */
488f131b
JB
4215 keep_going (ecs);
4216 return;
4217 }
4218
4219 /* Handle cases caused by hitting a breakpoint. */
4220 {
4221 CORE_ADDR jmp_buf_pc;
4222 struct bpstat_what what;
4223
16c381f0 4224 what = bpstat_what (ecs->event_thread->control.stop_bpstat);
488f131b
JB
4225
4226 if (what.call_dummy)
4227 {
aa7d318d 4228 stop_stack_dummy = what.call_dummy;
c5aa993b 4229 }
c906108c 4230
628fe4e4
JK
4231 /* If we hit an internal event that triggers symbol changes, the
4232 current frame will be invalidated within bpstat_what (e.g., if
4233 we hit an internal solib event). Re-fetch it. */
4234 frame = get_current_frame ();
4235 gdbarch = get_frame_arch (frame);
4236
488f131b 4237 switch (what.main_action)
c5aa993b 4238 {
488f131b 4239 case BPSTAT_WHAT_SET_LONGJMP_RESUME:
611c83ae
PA
4240 /* If we hit the breakpoint at longjmp while stepping, we
4241 install a momentary breakpoint at the target of the
4242 jmp_buf. */
4243
4244 if (debug_infrun)
4245 fprintf_unfiltered (gdb_stdlog,
4246 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME\n");
4247
4e1c45ea 4248 ecs->event_thread->stepping_over_breakpoint = 1;
611c83ae 4249
186c406b 4250 if (what.is_longjmp)
c5aa993b 4251 {
186c406b
TT
4252 if (!gdbarch_get_longjmp_target_p (gdbarch)
4253 || !gdbarch_get_longjmp_target (gdbarch,
4254 frame, &jmp_buf_pc))
4255 {
4256 if (debug_infrun)
3e43a32a
MS
4257 fprintf_unfiltered (gdb_stdlog,
4258 "infrun: BPSTAT_WHAT_SET_LONGJMP_RESUME "
4259 "(!gdbarch_get_longjmp_target)\n");
186c406b
TT
4260 keep_going (ecs);
4261 return;
4262 }
488f131b 4263
186c406b
TT
4264 /* We're going to replace the current step-resume breakpoint
4265 with a longjmp-resume breakpoint. */
4266 delete_step_resume_breakpoint (ecs->event_thread);
611c83ae 4267
186c406b
TT
4268 /* Insert a breakpoint at resume address. */
4269 insert_longjmp_resume_breakpoint (gdbarch, jmp_buf_pc);
4270 }
4271 else
4272 {
4273 struct symbol *func = get_frame_function (frame);
c906108c 4274
186c406b
TT
4275 if (func)
4276 check_exception_resume (ecs, frame, func);
4277 }
488f131b
JB
4278 keep_going (ecs);
4279 return;
c906108c 4280
488f131b 4281 case BPSTAT_WHAT_CLEAR_LONGJMP_RESUME:
527159b7 4282 if (debug_infrun)
611c83ae
PA
4283 fprintf_unfiltered (gdb_stdlog,
4284 "infrun: BPSTAT_WHAT_CLEAR_LONGJMP_RESUME\n");
4285
186c406b
TT
4286 if (what.is_longjmp)
4287 {
4288 gdb_assert (ecs->event_thread->control.step_resume_breakpoint
4289 != NULL);
4290 delete_step_resume_breakpoint (ecs->event_thread);
4291 }
4292 else
4293 {
4294 /* There are several cases to consider.
4295
4296 1. The initiating frame no longer exists. In this case
4297 we must stop, because the exception has gone too far.
4298
4299 2. The initiating frame exists, and is the same as the
4300 current frame. We stop, because the exception has been
4301 caught.
4302
4303 3. The initiating frame exists and is different from
4304 the current frame. This means the exception has been
4305 caught beneath the initiating frame, so keep going. */
4306 struct frame_info *init_frame
4307 = frame_find_by_id (ecs->event_thread->initiating_frame);
4308
4309 gdb_assert (ecs->event_thread->control.exception_resume_breakpoint
4310 != NULL);
4311 delete_exception_resume_breakpoint (ecs->event_thread);
4312
4313 if (init_frame)
4314 {
4315 struct frame_id current_id
4316 = get_frame_id (get_current_frame ());
4317 if (frame_id_eq (current_id,
4318 ecs->event_thread->initiating_frame))
4319 {
4320 /* Case 2. Fall through. */
4321 }
4322 else
4323 {
4324 /* Case 3. */
4325 keep_going (ecs);
4326 return;
4327 }
4328 }
4329
4330 /* For Cases 1 and 2, remove the step-resume breakpoint,
4331 if it exists. */
4332 delete_step_resume_breakpoint (ecs->event_thread);
4333 }
611c83ae 4334
16c381f0 4335 ecs->event_thread->control.stop_step = 1;
33d62d64 4336 print_end_stepping_range_reason ();
611c83ae
PA
4337 stop_stepping (ecs);
4338 return;
488f131b
JB
4339
4340 case BPSTAT_WHAT_SINGLE:
527159b7 4341 if (debug_infrun)
8802d8ed 4342 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_SINGLE\n");
4e1c45ea 4343 ecs->event_thread->stepping_over_breakpoint = 1;
488f131b
JB
4344 /* Still need to check other stuff, at least the case
4345 where we are stepping and step out of the right range. */
4346 break;
c906108c 4347
2c03e5be
PA
4348 case BPSTAT_WHAT_STEP_RESUME:
4349 if (debug_infrun)
4350 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STEP_RESUME\n");
4351
4352 delete_step_resume_breakpoint (ecs->event_thread);
9da8c2a0
PA
4353 if (ecs->event_thread->control.proceed_to_finish
4354 && execution_direction == EXEC_REVERSE)
4355 {
4356 struct thread_info *tp = ecs->event_thread;
4357
4358 /* We are finishing a function in reverse, and just hit
4359 the step-resume breakpoint at the start address of the
4360 function, and we're almost there -- just need to back
4361 up by one more single-step, which should take us back
4362 to the function call. */
4363 tp->control.step_range_start = tp->control.step_range_end = 1;
4364 keep_going (ecs);
4365 return;
4366 }
2c03e5be
PA
4367 if (stop_pc == ecs->stop_func_start
4368 && execution_direction == EXEC_REVERSE)
4369 {
4370 /* We are stepping over a function call in reverse, and
4371 just hit the step-resume breakpoint at the start
4372 address of the function. Go back to single-stepping,
4373 which should take us back to the function call. */
4374 ecs->event_thread->stepping_over_breakpoint = 1;
4375 keep_going (ecs);
4376 return;
4377 }
4378 break;
4379
488f131b 4380 case BPSTAT_WHAT_STOP_NOISY:
527159b7 4381 if (debug_infrun)
8802d8ed 4382 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_NOISY\n");
488f131b 4383 stop_print_frame = 1;
c906108c 4384
d303a6c7
AC
4385 /* We are about to nuke the step_resume_breakpointt via the
4386 cleanup chain, so no need to worry about it here. */
c5aa993b 4387
488f131b
JB
4388 stop_stepping (ecs);
4389 return;
c5aa993b 4390
488f131b 4391 case BPSTAT_WHAT_STOP_SILENT:
527159b7 4392 if (debug_infrun)
8802d8ed 4393 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_STOP_SILENT\n");
488f131b 4394 stop_print_frame = 0;
c5aa993b 4395
d303a6c7
AC
4396 /* We are about to nuke the step_resume_breakpoin via the
4397 cleanup chain, so no need to worry about it here. */
c5aa993b 4398
488f131b 4399 stop_stepping (ecs);
e441088d 4400 return;
c5aa993b 4401
2c03e5be 4402 case BPSTAT_WHAT_HP_STEP_RESUME:
527159b7 4403 if (debug_infrun)
2c03e5be 4404 fprintf_unfiltered (gdb_stdlog, "infrun: BPSTAT_WHAT_HP_STEP_RESUME\n");
527159b7 4405
4e1c45ea
PA
4406 delete_step_resume_breakpoint (ecs->event_thread);
4407 if (ecs->event_thread->step_after_step_resume_breakpoint)
68f53502
AC
4408 {
4409 /* Back when the step-resume breakpoint was inserted, we
4410 were trying to single-step off a breakpoint. Go back
4411 to doing that. */
4e1c45ea
PA
4412 ecs->event_thread->step_after_step_resume_breakpoint = 0;
4413 ecs->event_thread->stepping_over_breakpoint = 1;
68f53502
AC
4414 keep_going (ecs);
4415 return;
4416 }
488f131b
JB
4417 break;
4418
488f131b
JB
4419 case BPSTAT_WHAT_KEEP_CHECKING:
4420 break;
4421 }
4422 }
c906108c 4423
488f131b
JB
4424 /* We come here if we hit a breakpoint but should not
4425 stop for it. Possibly we also were stepping
4426 and should stop for that. So fall through and
4427 test for stepping. But, if not stepping,
4428 do not stop. */
c906108c 4429
a7212384
UW
4430 /* In all-stop mode, if we're currently stepping but have stopped in
4431 some other thread, we need to switch back to the stepped thread. */
4432 if (!non_stop)
4433 {
4434 struct thread_info *tp;
abbb1732 4435
b3444185 4436 tp = iterate_over_threads (currently_stepping_or_nexting_callback,
a7212384
UW
4437 ecs->event_thread);
4438 if (tp)
4439 {
4440 /* However, if the current thread is blocked on some internal
4441 breakpoint, and we simply need to step over that breakpoint
4442 to get it going again, do that first. */
16c381f0
JK
4443 if ((ecs->event_thread->control.trap_expected
4444 && ecs->event_thread->suspend.stop_signal != TARGET_SIGNAL_TRAP)
a7212384
UW
4445 || ecs->event_thread->stepping_over_breakpoint)
4446 {
4447 keep_going (ecs);
4448 return;
4449 }
4450
66852e9c
PA
4451 /* If the stepping thread exited, then don't try to switch
4452 back and resume it, which could fail in several different
4453 ways depending on the target. Instead, just keep going.
4454
4455 We can find a stepping dead thread in the thread list in
4456 two cases:
4457
4458 - The target supports thread exit events, and when the
4459 target tries to delete the thread from the thread list,
4460 inferior_ptid pointed at the exiting thread. In such
4461 case, calling delete_thread does not really remove the
4462 thread from the list; instead, the thread is left listed,
4463 with 'exited' state.
4464
4465 - The target's debug interface does not support thread
4466 exit events, and so we have no idea whatsoever if the
4467 previously stepping thread is still alive. For that
4468 reason, we need to synchronously query the target
4469 now. */
b3444185
PA
4470 if (is_exited (tp->ptid)
4471 || !target_thread_alive (tp->ptid))
4472 {
4473 if (debug_infrun)
3e43a32a
MS
4474 fprintf_unfiltered (gdb_stdlog,
4475 "infrun: not switching back to "
4476 "stepped thread, it has vanished\n");
b3444185
PA
4477
4478 delete_thread (tp->ptid);
4479 keep_going (ecs);
4480 return;
4481 }
4482
a7212384
UW
4483 /* Otherwise, we no longer expect a trap in the current thread.
4484 Clear the trap_expected flag before switching back -- this is
4485 what keep_going would do as well, if we called it. */
16c381f0 4486 ecs->event_thread->control.trap_expected = 0;
a7212384
UW
4487
4488 if (debug_infrun)
4489 fprintf_unfiltered (gdb_stdlog,
4490 "infrun: switching back to stepped thread\n");
4491
4492 ecs->event_thread = tp;
4493 ecs->ptid = tp->ptid;
4494 context_switch (ecs->ptid);
4495 keep_going (ecs);
4496 return;
4497 }
4498 }
4499
9d1ff73f
MS
4500 /* Are we stepping to get the inferior out of the dynamic linker's
4501 hook (and possibly the dld itself) after catching a shlib
4502 event? */
4e1c45ea 4503 if (ecs->event_thread->stepping_through_solib_after_catch)
488f131b
JB
4504 {
4505#if defined(SOLIB_ADD)
1777feb0 4506 /* Have we reached our destination? If not, keep going. */
488f131b
JB
4507 if (SOLIB_IN_DYNAMIC_LINKER (PIDGET (ecs->ptid), stop_pc))
4508 {
527159b7 4509 if (debug_infrun)
3e43a32a
MS
4510 fprintf_unfiltered (gdb_stdlog,
4511 "infrun: stepping in dynamic linker\n");
4e1c45ea 4512 ecs->event_thread->stepping_over_breakpoint = 1;
488f131b 4513 keep_going (ecs);
104c1213 4514 return;
488f131b
JB
4515 }
4516#endif
527159b7 4517 if (debug_infrun)
8a9de0e4 4518 fprintf_unfiltered (gdb_stdlog, "infrun: step past dynamic linker\n");
488f131b 4519 /* Else, stop and report the catchpoint(s) whose triggering
1777feb0 4520 caused us to begin stepping. */
4e1c45ea 4521 ecs->event_thread->stepping_through_solib_after_catch = 0;
16c381f0
JK
4522 bpstat_clear (&ecs->event_thread->control.stop_bpstat);
4523 ecs->event_thread->control.stop_bpstat
347bddb7 4524 = bpstat_copy (ecs->event_thread->stepping_through_solib_catchpoints);
4e1c45ea 4525 bpstat_clear (&ecs->event_thread->stepping_through_solib_catchpoints);
488f131b
JB
4526 stop_print_frame = 1;
4527 stop_stepping (ecs);
4528 return;
4529 }
c906108c 4530
8358c15c 4531 if (ecs->event_thread->control.step_resume_breakpoint)
488f131b 4532 {
527159b7 4533 if (debug_infrun)
d3169d93
DJ
4534 fprintf_unfiltered (gdb_stdlog,
4535 "infrun: step-resume breakpoint is inserted\n");
527159b7 4536
488f131b
JB
4537 /* Having a step-resume breakpoint overrides anything
4538 else having to do with stepping commands until
4539 that breakpoint is reached. */
488f131b
JB
4540 keep_going (ecs);
4541 return;
4542 }
c5aa993b 4543
16c381f0 4544 if (ecs->event_thread->control.step_range_end == 0)
488f131b 4545 {
527159b7 4546 if (debug_infrun)
8a9de0e4 4547 fprintf_unfiltered (gdb_stdlog, "infrun: no stepping, continue\n");
488f131b 4548 /* Likewise if we aren't even stepping. */
488f131b
JB
4549 keep_going (ecs);
4550 return;
4551 }
c5aa993b 4552
4b7703ad
JB
4553 /* Re-fetch current thread's frame in case the code above caused
4554 the frame cache to be re-initialized, making our FRAME variable
4555 a dangling pointer. */
4556 frame = get_current_frame ();
628fe4e4 4557 gdbarch = get_frame_arch (frame);
4b7703ad 4558
488f131b 4559 /* If stepping through a line, keep going if still within it.
c906108c 4560
488f131b
JB
4561 Note that step_range_end is the address of the first instruction
4562 beyond the step range, and NOT the address of the last instruction
31410e84
MS
4563 within it!
4564
4565 Note also that during reverse execution, we may be stepping
4566 through a function epilogue and therefore must detect when
4567 the current-frame changes in the middle of a line. */
4568
16c381f0
JK
4569 if (stop_pc >= ecs->event_thread->control.step_range_start
4570 && stop_pc < ecs->event_thread->control.step_range_end
31410e84 4571 && (execution_direction != EXEC_REVERSE
388a8562 4572 || frame_id_eq (get_frame_id (frame),
16c381f0 4573 ecs->event_thread->control.step_frame_id)))
488f131b 4574 {
527159b7 4575 if (debug_infrun)
5af949e3
UW
4576 fprintf_unfiltered
4577 (gdb_stdlog, "infrun: stepping inside range [%s-%s]\n",
16c381f0
JK
4578 paddress (gdbarch, ecs->event_thread->control.step_range_start),
4579 paddress (gdbarch, ecs->event_thread->control.step_range_end));
b2175913
MS
4580
4581 /* When stepping backward, stop at beginning of line range
4582 (unless it's the function entry point, in which case
4583 keep going back to the call point). */
16c381f0 4584 if (stop_pc == ecs->event_thread->control.step_range_start
b2175913
MS
4585 && stop_pc != ecs->stop_func_start
4586 && execution_direction == EXEC_REVERSE)
4587 {
16c381f0 4588 ecs->event_thread->control.stop_step = 1;
33d62d64 4589 print_end_stepping_range_reason ();
b2175913
MS
4590 stop_stepping (ecs);
4591 }
4592 else
4593 keep_going (ecs);
4594
488f131b
JB
4595 return;
4596 }
c5aa993b 4597
488f131b 4598 /* We stepped out of the stepping range. */
c906108c 4599
488f131b 4600 /* If we are stepping at the source level and entered the runtime
388a8562
MS
4601 loader dynamic symbol resolution code...
4602
4603 EXEC_FORWARD: we keep on single stepping until we exit the run
4604 time loader code and reach the callee's address.
4605
4606 EXEC_REVERSE: we've already executed the callee (backward), and
4607 the runtime loader code is handled just like any other
4608 undebuggable function call. Now we need only keep stepping
4609 backward through the trampoline code, and that's handled further
4610 down, so there is nothing for us to do here. */
4611
4612 if (execution_direction != EXEC_REVERSE
16c381f0 4613 && ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
cfd8ab24 4614 && in_solib_dynsym_resolve_code (stop_pc))
488f131b 4615 {
4c8c40e6 4616 CORE_ADDR pc_after_resolver =
568d6575 4617 gdbarch_skip_solib_resolver (gdbarch, stop_pc);
c906108c 4618
527159b7 4619 if (debug_infrun)
3e43a32a
MS
4620 fprintf_unfiltered (gdb_stdlog,
4621 "infrun: stepped into dynsym resolve code\n");
527159b7 4622
488f131b
JB
4623 if (pc_after_resolver)
4624 {
4625 /* Set up a step-resume breakpoint at the address
4626 indicated by SKIP_SOLIB_RESOLVER. */
4627 struct symtab_and_line sr_sal;
abbb1732 4628
fe39c653 4629 init_sal (&sr_sal);
488f131b 4630 sr_sal.pc = pc_after_resolver;
6c95b8df 4631 sr_sal.pspace = get_frame_program_space (frame);
488f131b 4632
a6d9a66e
UW
4633 insert_step_resume_breakpoint_at_sal (gdbarch,
4634 sr_sal, null_frame_id);
c5aa993b 4635 }
c906108c 4636
488f131b
JB
4637 keep_going (ecs);
4638 return;
4639 }
c906108c 4640
16c381f0
JK
4641 if (ecs->event_thread->control.step_range_end != 1
4642 && (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
4643 || ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
568d6575 4644 && get_frame_type (frame) == SIGTRAMP_FRAME)
488f131b 4645 {
527159b7 4646 if (debug_infrun)
3e43a32a
MS
4647 fprintf_unfiltered (gdb_stdlog,
4648 "infrun: stepped into signal trampoline\n");
42edda50 4649 /* The inferior, while doing a "step" or "next", has ended up in
8fb3e588
AC
4650 a signal trampoline (either by a signal being delivered or by
4651 the signal handler returning). Just single-step until the
4652 inferior leaves the trampoline (either by calling the handler
4653 or returning). */
488f131b
JB
4654 keep_going (ecs);
4655 return;
4656 }
c906108c 4657
c17eaafe
DJ
4658 /* Check for subroutine calls. The check for the current frame
4659 equalling the step ID is not necessary - the check of the
4660 previous frame's ID is sufficient - but it is a common case and
4661 cheaper than checking the previous frame's ID.
14e60db5
DJ
4662
4663 NOTE: frame_id_eq will never report two invalid frame IDs as
4664 being equal, so to get into this block, both the current and
4665 previous frame must have valid frame IDs. */
005ca36a
JB
4666 /* The outer_frame_id check is a heuristic to detect stepping
4667 through startup code. If we step over an instruction which
4668 sets the stack pointer from an invalid value to a valid value,
4669 we may detect that as a subroutine call from the mythical
4670 "outermost" function. This could be fixed by marking
4671 outermost frames as !stack_p,code_p,special_p. Then the
4672 initial outermost frame, before sp was valid, would
ce6cca6d 4673 have code_addr == &_start. See the comment in frame_id_eq
005ca36a 4674 for more. */
edb3359d 4675 if (!frame_id_eq (get_stack_frame_id (frame),
16c381f0 4676 ecs->event_thread->control.step_stack_frame_id)
005ca36a 4677 && (frame_id_eq (frame_unwind_caller_id (get_current_frame ()),
16c381f0
JK
4678 ecs->event_thread->control.step_stack_frame_id)
4679 && (!frame_id_eq (ecs->event_thread->control.step_stack_frame_id,
005ca36a
JB
4680 outer_frame_id)
4681 || step_start_function != find_pc_function (stop_pc))))
488f131b 4682 {
95918acb 4683 CORE_ADDR real_stop_pc;
8fb3e588 4684
527159b7 4685 if (debug_infrun)
8a9de0e4 4686 fprintf_unfiltered (gdb_stdlog, "infrun: stepped into subroutine\n");
527159b7 4687
16c381f0
JK
4688 if ((ecs->event_thread->control.step_over_calls == STEP_OVER_NONE)
4689 || ((ecs->event_thread->control.step_range_end == 1)
d80b854b 4690 && in_prologue (gdbarch, ecs->event_thread->prev_pc,
4e1c45ea 4691 ecs->stop_func_start)))
95918acb
AC
4692 {
4693 /* I presume that step_over_calls is only 0 when we're
4694 supposed to be stepping at the assembly language level
4695 ("stepi"). Just stop. */
4696 /* Also, maybe we just did a "nexti" inside a prolog, so we
4697 thought it was a subroutine call but it was not. Stop as
4698 well. FENN */
388a8562 4699 /* And this works the same backward as frontward. MVS */
16c381f0 4700 ecs->event_thread->control.stop_step = 1;
33d62d64 4701 print_end_stepping_range_reason ();
95918acb
AC
4702 stop_stepping (ecs);
4703 return;
4704 }
8fb3e588 4705
388a8562
MS
4706 /* Reverse stepping through solib trampolines. */
4707
4708 if (execution_direction == EXEC_REVERSE
16c381f0 4709 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE
388a8562
MS
4710 && (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
4711 || (ecs->stop_func_start == 0
4712 && in_solib_dynsym_resolve_code (stop_pc))))
4713 {
4714 /* Any solib trampoline code can be handled in reverse
4715 by simply continuing to single-step. We have already
4716 executed the solib function (backwards), and a few
4717 steps will take us back through the trampoline to the
4718 caller. */
4719 keep_going (ecs);
4720 return;
4721 }
4722
16c381f0 4723 if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
8567c30f 4724 {
b2175913
MS
4725 /* We're doing a "next".
4726
4727 Normal (forward) execution: set a breakpoint at the
4728 callee's return address (the address at which the caller
4729 will resume).
4730
4731 Reverse (backward) execution. set the step-resume
4732 breakpoint at the start of the function that we just
4733 stepped into (backwards), and continue to there. When we
6130d0b7 4734 get there, we'll need to single-step back to the caller. */
b2175913
MS
4735
4736 if (execution_direction == EXEC_REVERSE)
4737 {
4738 struct symtab_and_line sr_sal;
3067f6e5 4739
388a8562
MS
4740 /* Normal function call return (static or dynamic). */
4741 init_sal (&sr_sal);
4742 sr_sal.pc = ecs->stop_func_start;
6c95b8df
PA
4743 sr_sal.pspace = get_frame_program_space (frame);
4744 insert_step_resume_breakpoint_at_sal (gdbarch,
4745 sr_sal, null_frame_id);
b2175913
MS
4746 }
4747 else
568d6575 4748 insert_step_resume_breakpoint_at_caller (frame);
b2175913 4749
8567c30f
AC
4750 keep_going (ecs);
4751 return;
4752 }
a53c66de 4753
95918acb 4754 /* If we are in a function call trampoline (a stub between the
8fb3e588
AC
4755 calling routine and the real function), locate the real
4756 function. That's what tells us (a) whether we want to step
4757 into it at all, and (b) what prologue we want to run to the
4758 end of, if we do step into it. */
568d6575 4759 real_stop_pc = skip_language_trampoline (frame, stop_pc);
95918acb 4760 if (real_stop_pc == 0)
568d6575 4761 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
95918acb
AC
4762 if (real_stop_pc != 0)
4763 ecs->stop_func_start = real_stop_pc;
8fb3e588 4764
db5f024e 4765 if (real_stop_pc != 0 && in_solib_dynsym_resolve_code (real_stop_pc))
1b2bfbb9
RC
4766 {
4767 struct symtab_and_line sr_sal;
abbb1732 4768
1b2bfbb9
RC
4769 init_sal (&sr_sal);
4770 sr_sal.pc = ecs->stop_func_start;
6c95b8df 4771 sr_sal.pspace = get_frame_program_space (frame);
1b2bfbb9 4772
a6d9a66e
UW
4773 insert_step_resume_breakpoint_at_sal (gdbarch,
4774 sr_sal, null_frame_id);
8fb3e588
AC
4775 keep_going (ecs);
4776 return;
1b2bfbb9
RC
4777 }
4778
95918acb 4779 /* If we have line number information for the function we are
8fb3e588 4780 thinking of stepping into, step into it.
95918acb 4781
8fb3e588
AC
4782 If there are several symtabs at that PC (e.g. with include
4783 files), just want to know whether *any* of them have line
4784 numbers. find_pc_line handles this. */
95918acb
AC
4785 {
4786 struct symtab_and_line tmp_sal;
8fb3e588 4787
95918acb
AC
4788 tmp_sal = find_pc_line (ecs->stop_func_start, 0);
4789 if (tmp_sal.line != 0)
4790 {
b2175913 4791 if (execution_direction == EXEC_REVERSE)
568d6575 4792 handle_step_into_function_backward (gdbarch, ecs);
b2175913 4793 else
568d6575 4794 handle_step_into_function (gdbarch, ecs);
95918acb
AC
4795 return;
4796 }
4797 }
4798
4799 /* If we have no line number and the step-stop-if-no-debug is
8fb3e588
AC
4800 set, we stop the step so that the user has a chance to switch
4801 in assembly mode. */
16c381f0 4802 if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
078130d0 4803 && step_stop_if_no_debug)
95918acb 4804 {
16c381f0 4805 ecs->event_thread->control.stop_step = 1;
33d62d64 4806 print_end_stepping_range_reason ();
95918acb
AC
4807 stop_stepping (ecs);
4808 return;
4809 }
4810
b2175913
MS
4811 if (execution_direction == EXEC_REVERSE)
4812 {
4813 /* Set a breakpoint at callee's start address.
4814 From there we can step once and be back in the caller. */
4815 struct symtab_and_line sr_sal;
abbb1732 4816
b2175913
MS
4817 init_sal (&sr_sal);
4818 sr_sal.pc = ecs->stop_func_start;
6c95b8df 4819 sr_sal.pspace = get_frame_program_space (frame);
a6d9a66e
UW
4820 insert_step_resume_breakpoint_at_sal (gdbarch,
4821 sr_sal, null_frame_id);
b2175913
MS
4822 }
4823 else
4824 /* Set a breakpoint at callee's return address (the address
4825 at which the caller will resume). */
568d6575 4826 insert_step_resume_breakpoint_at_caller (frame);
b2175913 4827
95918acb 4828 keep_going (ecs);
488f131b 4829 return;
488f131b 4830 }
c906108c 4831
fdd654f3
MS
4832 /* Reverse stepping through solib trampolines. */
4833
4834 if (execution_direction == EXEC_REVERSE
16c381f0 4835 && ecs->event_thread->control.step_over_calls != STEP_OVER_NONE)
fdd654f3
MS
4836 {
4837 if (gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc)
4838 || (ecs->stop_func_start == 0
4839 && in_solib_dynsym_resolve_code (stop_pc)))
4840 {
4841 /* Any solib trampoline code can be handled in reverse
4842 by simply continuing to single-step. We have already
4843 executed the solib function (backwards), and a few
4844 steps will take us back through the trampoline to the
4845 caller. */
4846 keep_going (ecs);
4847 return;
4848 }
4849 else if (in_solib_dynsym_resolve_code (stop_pc))
4850 {
4851 /* Stepped backward into the solib dynsym resolver.
4852 Set a breakpoint at its start and continue, then
4853 one more step will take us out. */
4854 struct symtab_and_line sr_sal;
abbb1732 4855
fdd654f3
MS
4856 init_sal (&sr_sal);
4857 sr_sal.pc = ecs->stop_func_start;
9d1807c3 4858 sr_sal.pspace = get_frame_program_space (frame);
fdd654f3
MS
4859 insert_step_resume_breakpoint_at_sal (gdbarch,
4860 sr_sal, null_frame_id);
4861 keep_going (ecs);
4862 return;
4863 }
4864 }
4865
488f131b
JB
4866 /* If we're in the return path from a shared library trampoline,
4867 we want to proceed through the trampoline when stepping. */
568d6575 4868 if (gdbarch_in_solib_return_trampoline (gdbarch,
e76f05fa 4869 stop_pc, ecs->stop_func_name))
488f131b 4870 {
488f131b 4871 /* Determine where this trampoline returns. */
52f729a7 4872 CORE_ADDR real_stop_pc;
abbb1732 4873
568d6575 4874 real_stop_pc = gdbarch_skip_trampoline_code (gdbarch, frame, stop_pc);
c906108c 4875
527159b7 4876 if (debug_infrun)
3e43a32a
MS
4877 fprintf_unfiltered (gdb_stdlog,
4878 "infrun: stepped into solib return tramp\n");
527159b7 4879
488f131b 4880 /* Only proceed through if we know where it's going. */
d764a824 4881 if (real_stop_pc)
488f131b 4882 {
1777feb0 4883 /* And put the step-breakpoint there and go until there. */
488f131b
JB
4884 struct symtab_and_line sr_sal;
4885
fe39c653 4886 init_sal (&sr_sal); /* initialize to zeroes */
d764a824 4887 sr_sal.pc = real_stop_pc;
488f131b 4888 sr_sal.section = find_pc_overlay (sr_sal.pc);
6c95b8df 4889 sr_sal.pspace = get_frame_program_space (frame);
44cbf7b5
AC
4890
4891 /* Do not specify what the fp should be when we stop since
4892 on some machines the prologue is where the new fp value
4893 is established. */
a6d9a66e
UW
4894 insert_step_resume_breakpoint_at_sal (gdbarch,
4895 sr_sal, null_frame_id);
c906108c 4896
488f131b
JB
4897 /* Restart without fiddling with the step ranges or
4898 other state. */
4899 keep_going (ecs);
4900 return;
4901 }
4902 }
c906108c 4903
2afb61aa 4904 stop_pc_sal = find_pc_line (stop_pc, 0);
7ed0fe66 4905
1b2bfbb9
RC
4906 /* NOTE: tausq/2004-05-24: This if block used to be done before all
4907 the trampoline processing logic, however, there are some trampolines
4908 that have no names, so we should do trampoline handling first. */
16c381f0 4909 if (ecs->event_thread->control.step_over_calls == STEP_OVER_UNDEBUGGABLE
7ed0fe66 4910 && ecs->stop_func_name == NULL
2afb61aa 4911 && stop_pc_sal.line == 0)
1b2bfbb9 4912 {
527159b7 4913 if (debug_infrun)
3e43a32a
MS
4914 fprintf_unfiltered (gdb_stdlog,
4915 "infrun: stepped into undebuggable function\n");
527159b7 4916
1b2bfbb9 4917 /* The inferior just stepped into, or returned to, an
7ed0fe66
DJ
4918 undebuggable function (where there is no debugging information
4919 and no line number corresponding to the address where the
1b2bfbb9
RC
4920 inferior stopped). Since we want to skip this kind of code,
4921 we keep going until the inferior returns from this
14e60db5
DJ
4922 function - unless the user has asked us not to (via
4923 set step-mode) or we no longer know how to get back
4924 to the call site. */
4925 if (step_stop_if_no_debug
c7ce8faa 4926 || !frame_id_p (frame_unwind_caller_id (frame)))
1b2bfbb9
RC
4927 {
4928 /* If we have no line number and the step-stop-if-no-debug
4929 is set, we stop the step so that the user has a chance to
4930 switch in assembly mode. */
16c381f0 4931 ecs->event_thread->control.stop_step = 1;
33d62d64 4932 print_end_stepping_range_reason ();
1b2bfbb9
RC
4933 stop_stepping (ecs);
4934 return;
4935 }
4936 else
4937 {
4938 /* Set a breakpoint at callee's return address (the address
4939 at which the caller will resume). */
568d6575 4940 insert_step_resume_breakpoint_at_caller (frame);
1b2bfbb9
RC
4941 keep_going (ecs);
4942 return;
4943 }
4944 }
4945
16c381f0 4946 if (ecs->event_thread->control.step_range_end == 1)
1b2bfbb9
RC
4947 {
4948 /* It is stepi or nexti. We always want to stop stepping after
4949 one instruction. */
527159b7 4950 if (debug_infrun)
8a9de0e4 4951 fprintf_unfiltered (gdb_stdlog, "infrun: stepi/nexti\n");
16c381f0 4952 ecs->event_thread->control.stop_step = 1;
33d62d64 4953 print_end_stepping_range_reason ();
1b2bfbb9
RC
4954 stop_stepping (ecs);
4955 return;
4956 }
4957
2afb61aa 4958 if (stop_pc_sal.line == 0)
488f131b
JB
4959 {
4960 /* We have no line number information. That means to stop
4961 stepping (does this always happen right after one instruction,
4962 when we do "s" in a function with no line numbers,
4963 or can this happen as a result of a return or longjmp?). */
527159b7 4964 if (debug_infrun)
8a9de0e4 4965 fprintf_unfiltered (gdb_stdlog, "infrun: no line number info\n");
16c381f0 4966 ecs->event_thread->control.stop_step = 1;
33d62d64 4967 print_end_stepping_range_reason ();
488f131b
JB
4968 stop_stepping (ecs);
4969 return;
4970 }
c906108c 4971
edb3359d
DJ
4972 /* Look for "calls" to inlined functions, part one. If the inline
4973 frame machinery detected some skipped call sites, we have entered
4974 a new inline function. */
4975
4976 if (frame_id_eq (get_frame_id (get_current_frame ()),
16c381f0 4977 ecs->event_thread->control.step_frame_id)
edb3359d
DJ
4978 && inline_skipped_frames (ecs->ptid))
4979 {
4980 struct symtab_and_line call_sal;
4981
4982 if (debug_infrun)
4983 fprintf_unfiltered (gdb_stdlog,
4984 "infrun: stepped into inlined function\n");
4985
4986 find_frame_sal (get_current_frame (), &call_sal);
4987
16c381f0 4988 if (ecs->event_thread->control.step_over_calls != STEP_OVER_ALL)
edb3359d
DJ
4989 {
4990 /* For "step", we're going to stop. But if the call site
4991 for this inlined function is on the same source line as
4992 we were previously stepping, go down into the function
4993 first. Otherwise stop at the call site. */
4994
4995 if (call_sal.line == ecs->event_thread->current_line
4996 && call_sal.symtab == ecs->event_thread->current_symtab)
4997 step_into_inline_frame (ecs->ptid);
4998
16c381f0 4999 ecs->event_thread->control.stop_step = 1;
33d62d64 5000 print_end_stepping_range_reason ();
edb3359d
DJ
5001 stop_stepping (ecs);
5002 return;
5003 }
5004 else
5005 {
5006 /* For "next", we should stop at the call site if it is on a
5007 different source line. Otherwise continue through the
5008 inlined function. */
5009 if (call_sal.line == ecs->event_thread->current_line
5010 && call_sal.symtab == ecs->event_thread->current_symtab)
5011 keep_going (ecs);
5012 else
5013 {
16c381f0 5014 ecs->event_thread->control.stop_step = 1;
33d62d64 5015 print_end_stepping_range_reason ();
edb3359d
DJ
5016 stop_stepping (ecs);
5017 }
5018 return;
5019 }
5020 }
5021
5022 /* Look for "calls" to inlined functions, part two. If we are still
5023 in the same real function we were stepping through, but we have
5024 to go further up to find the exact frame ID, we are stepping
5025 through a more inlined call beyond its call site. */
5026
5027 if (get_frame_type (get_current_frame ()) == INLINE_FRAME
5028 && !frame_id_eq (get_frame_id (get_current_frame ()),
16c381f0 5029 ecs->event_thread->control.step_frame_id)
edb3359d 5030 && stepped_in_from (get_current_frame (),
16c381f0 5031 ecs->event_thread->control.step_frame_id))
edb3359d
DJ
5032 {
5033 if (debug_infrun)
5034 fprintf_unfiltered (gdb_stdlog,
5035 "infrun: stepping through inlined function\n");
5036
16c381f0 5037 if (ecs->event_thread->control.step_over_calls == STEP_OVER_ALL)
edb3359d
DJ
5038 keep_going (ecs);
5039 else
5040 {
16c381f0 5041 ecs->event_thread->control.stop_step = 1;
33d62d64 5042 print_end_stepping_range_reason ();
edb3359d
DJ
5043 stop_stepping (ecs);
5044 }
5045 return;
5046 }
5047
2afb61aa 5048 if ((stop_pc == stop_pc_sal.pc)
4e1c45ea
PA
5049 && (ecs->event_thread->current_line != stop_pc_sal.line
5050 || ecs->event_thread->current_symtab != stop_pc_sal.symtab))
488f131b
JB
5051 {
5052 /* We are at the start of a different line. So stop. Note that
5053 we don't stop if we step into the middle of a different line.
5054 That is said to make things like for (;;) statements work
5055 better. */
527159b7 5056 if (debug_infrun)
3e43a32a
MS
5057 fprintf_unfiltered (gdb_stdlog,
5058 "infrun: stepped to a different line\n");
16c381f0 5059 ecs->event_thread->control.stop_step = 1;
33d62d64 5060 print_end_stepping_range_reason ();
488f131b
JB
5061 stop_stepping (ecs);
5062 return;
5063 }
c906108c 5064
488f131b 5065 /* We aren't done stepping.
c906108c 5066
488f131b
JB
5067 Optimize by setting the stepping range to the line.
5068 (We might not be in the original line, but if we entered a
5069 new line in mid-statement, we continue stepping. This makes
5070 things like for(;;) statements work better.) */
c906108c 5071
16c381f0
JK
5072 ecs->event_thread->control.step_range_start = stop_pc_sal.pc;
5073 ecs->event_thread->control.step_range_end = stop_pc_sal.end;
edb3359d 5074 set_step_info (frame, stop_pc_sal);
488f131b 5075
527159b7 5076 if (debug_infrun)
8a9de0e4 5077 fprintf_unfiltered (gdb_stdlog, "infrun: keep going\n");
488f131b 5078 keep_going (ecs);
104c1213
JM
5079}
5080
b3444185 5081/* Is thread TP in the middle of single-stepping? */
104c1213 5082
a289b8f6 5083static int
b3444185 5084currently_stepping (struct thread_info *tp)
a7212384 5085{
8358c15c
JK
5086 return ((tp->control.step_range_end
5087 && tp->control.step_resume_breakpoint == NULL)
5088 || tp->control.trap_expected
5089 || tp->stepping_through_solib_after_catch
5090 || bpstat_should_step ());
a7212384
UW
5091}
5092
b3444185
PA
5093/* Returns true if any thread *but* the one passed in "data" is in the
5094 middle of stepping or of handling a "next". */
a7212384 5095
104c1213 5096static int
b3444185 5097currently_stepping_or_nexting_callback (struct thread_info *tp, void *data)
104c1213 5098{
b3444185
PA
5099 if (tp == data)
5100 return 0;
5101
16c381f0
JK
5102 return (tp->control.step_range_end
5103 || tp->control.trap_expected
b3444185 5104 || tp->stepping_through_solib_after_catch);
104c1213 5105}
c906108c 5106
b2175913
MS
5107/* Inferior has stepped into a subroutine call with source code that
5108 we should not step over. Do step to the first line of code in
5109 it. */
c2c6d25f
JM
5110
5111static void
568d6575
UW
5112handle_step_into_function (struct gdbarch *gdbarch,
5113 struct execution_control_state *ecs)
c2c6d25f
JM
5114{
5115 struct symtab *s;
2afb61aa 5116 struct symtab_and_line stop_func_sal, sr_sal;
c2c6d25f
JM
5117
5118 s = find_pc_symtab (stop_pc);
5119 if (s && s->language != language_asm)
568d6575 5120 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
b2175913 5121 ecs->stop_func_start);
c2c6d25f 5122
2afb61aa 5123 stop_func_sal = find_pc_line (ecs->stop_func_start, 0);
c2c6d25f
JM
5124 /* Use the step_resume_break to step until the end of the prologue,
5125 even if that involves jumps (as it seems to on the vax under
5126 4.2). */
5127 /* If the prologue ends in the middle of a source line, continue to
5128 the end of that source line (if it is still within the function).
5129 Otherwise, just go to end of prologue. */
2afb61aa
PA
5130 if (stop_func_sal.end
5131 && stop_func_sal.pc != ecs->stop_func_start
5132 && stop_func_sal.end < ecs->stop_func_end)
5133 ecs->stop_func_start = stop_func_sal.end;
c2c6d25f 5134
2dbd5e30
KB
5135 /* Architectures which require breakpoint adjustment might not be able
5136 to place a breakpoint at the computed address. If so, the test
5137 ``ecs->stop_func_start == stop_pc'' will never succeed. Adjust
5138 ecs->stop_func_start to an address at which a breakpoint may be
5139 legitimately placed.
8fb3e588 5140
2dbd5e30
KB
5141 Note: kevinb/2004-01-19: On FR-V, if this adjustment is not
5142 made, GDB will enter an infinite loop when stepping through
5143 optimized code consisting of VLIW instructions which contain
5144 subinstructions corresponding to different source lines. On
5145 FR-V, it's not permitted to place a breakpoint on any but the
5146 first subinstruction of a VLIW instruction. When a breakpoint is
5147 set, GDB will adjust the breakpoint address to the beginning of
5148 the VLIW instruction. Thus, we need to make the corresponding
5149 adjustment here when computing the stop address. */
8fb3e588 5150
568d6575 5151 if (gdbarch_adjust_breakpoint_address_p (gdbarch))
2dbd5e30
KB
5152 {
5153 ecs->stop_func_start
568d6575 5154 = gdbarch_adjust_breakpoint_address (gdbarch,
8fb3e588 5155 ecs->stop_func_start);
2dbd5e30
KB
5156 }
5157
c2c6d25f
JM
5158 if (ecs->stop_func_start == stop_pc)
5159 {
5160 /* We are already there: stop now. */
16c381f0 5161 ecs->event_thread->control.stop_step = 1;
33d62d64 5162 print_end_stepping_range_reason ();
c2c6d25f
JM
5163 stop_stepping (ecs);
5164 return;
5165 }
5166 else
5167 {
5168 /* Put the step-breakpoint there and go until there. */
fe39c653 5169 init_sal (&sr_sal); /* initialize to zeroes */
c2c6d25f
JM
5170 sr_sal.pc = ecs->stop_func_start;
5171 sr_sal.section = find_pc_overlay (ecs->stop_func_start);
6c95b8df 5172 sr_sal.pspace = get_frame_program_space (get_current_frame ());
44cbf7b5 5173
c2c6d25f 5174 /* Do not specify what the fp should be when we stop since on
488f131b
JB
5175 some machines the prologue is where the new fp value is
5176 established. */
a6d9a66e 5177 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal, null_frame_id);
c2c6d25f
JM
5178
5179 /* And make sure stepping stops right away then. */
16c381f0
JK
5180 ecs->event_thread->control.step_range_end
5181 = ecs->event_thread->control.step_range_start;
c2c6d25f
JM
5182 }
5183 keep_going (ecs);
5184}
d4f3574e 5185
b2175913
MS
5186/* Inferior has stepped backward into a subroutine call with source
5187 code that we should not step over. Do step to the beginning of the
5188 last line of code in it. */
5189
5190static void
568d6575
UW
5191handle_step_into_function_backward (struct gdbarch *gdbarch,
5192 struct execution_control_state *ecs)
b2175913
MS
5193{
5194 struct symtab *s;
167e4384 5195 struct symtab_and_line stop_func_sal;
b2175913
MS
5196
5197 s = find_pc_symtab (stop_pc);
5198 if (s && s->language != language_asm)
568d6575 5199 ecs->stop_func_start = gdbarch_skip_prologue (gdbarch,
b2175913
MS
5200 ecs->stop_func_start);
5201
5202 stop_func_sal = find_pc_line (stop_pc, 0);
5203
5204 /* OK, we're just going to keep stepping here. */
5205 if (stop_func_sal.pc == stop_pc)
5206 {
5207 /* We're there already. Just stop stepping now. */
16c381f0 5208 ecs->event_thread->control.stop_step = 1;
33d62d64 5209 print_end_stepping_range_reason ();
b2175913
MS
5210 stop_stepping (ecs);
5211 }
5212 else
5213 {
5214 /* Else just reset the step range and keep going.
5215 No step-resume breakpoint, they don't work for
5216 epilogues, which can have multiple entry paths. */
16c381f0
JK
5217 ecs->event_thread->control.step_range_start = stop_func_sal.pc;
5218 ecs->event_thread->control.step_range_end = stop_func_sal.end;
b2175913
MS
5219 keep_going (ecs);
5220 }
5221 return;
5222}
5223
d3169d93 5224/* Insert a "step-resume breakpoint" at SR_SAL with frame ID SR_ID.
44cbf7b5
AC
5225 This is used to both functions and to skip over code. */
5226
5227static void
2c03e5be
PA
5228insert_step_resume_breakpoint_at_sal_1 (struct gdbarch *gdbarch,
5229 struct symtab_and_line sr_sal,
5230 struct frame_id sr_id,
5231 enum bptype sr_type)
44cbf7b5 5232{
611c83ae
PA
5233 /* There should never be more than one step-resume or longjmp-resume
5234 breakpoint per thread, so we should never be setting a new
44cbf7b5 5235 step_resume_breakpoint when one is already active. */
8358c15c 5236 gdb_assert (inferior_thread ()->control.step_resume_breakpoint == NULL);
2c03e5be 5237 gdb_assert (sr_type == bp_step_resume || sr_type == bp_hp_step_resume);
d3169d93
DJ
5238
5239 if (debug_infrun)
5240 fprintf_unfiltered (gdb_stdlog,
5af949e3
UW
5241 "infrun: inserting step-resume breakpoint at %s\n",
5242 paddress (gdbarch, sr_sal.pc));
d3169d93 5243
8358c15c 5244 inferior_thread ()->control.step_resume_breakpoint
2c03e5be
PA
5245 = set_momentary_breakpoint (gdbarch, sr_sal, sr_id, sr_type);
5246}
5247
9da8c2a0 5248void
2c03e5be
PA
5249insert_step_resume_breakpoint_at_sal (struct gdbarch *gdbarch,
5250 struct symtab_and_line sr_sal,
5251 struct frame_id sr_id)
5252{
5253 insert_step_resume_breakpoint_at_sal_1 (gdbarch,
5254 sr_sal, sr_id,
5255 bp_step_resume);
44cbf7b5 5256}
7ce450bd 5257
2c03e5be
PA
5258/* Insert a "high-priority step-resume breakpoint" at RETURN_FRAME.pc.
5259 This is used to skip a potential signal handler.
7ce450bd 5260
14e60db5
DJ
5261 This is called with the interrupted function's frame. The signal
5262 handler, when it returns, will resume the interrupted function at
5263 RETURN_FRAME.pc. */
d303a6c7
AC
5264
5265static void
2c03e5be 5266insert_hp_step_resume_breakpoint_at_frame (struct frame_info *return_frame)
d303a6c7
AC
5267{
5268 struct symtab_and_line sr_sal;
a6d9a66e 5269 struct gdbarch *gdbarch;
d303a6c7 5270
f4c1edd8 5271 gdb_assert (return_frame != NULL);
d303a6c7
AC
5272 init_sal (&sr_sal); /* initialize to zeros */
5273
a6d9a66e 5274 gdbarch = get_frame_arch (return_frame);
568d6575 5275 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch, get_frame_pc (return_frame));
d303a6c7 5276 sr_sal.section = find_pc_overlay (sr_sal.pc);
6c95b8df 5277 sr_sal.pspace = get_frame_program_space (return_frame);
d303a6c7 5278
2c03e5be
PA
5279 insert_step_resume_breakpoint_at_sal_1 (gdbarch, sr_sal,
5280 get_stack_frame_id (return_frame),
5281 bp_hp_step_resume);
d303a6c7
AC
5282}
5283
2c03e5be
PA
5284/* Insert a "step-resume breakpoint" at the previous frame's PC. This
5285 is used to skip a function after stepping into it (for "next" or if
5286 the called function has no debugging information).
14e60db5
DJ
5287
5288 The current function has almost always been reached by single
5289 stepping a call or return instruction. NEXT_FRAME belongs to the
5290 current function, and the breakpoint will be set at the caller's
5291 resume address.
5292
5293 This is a separate function rather than reusing
2c03e5be 5294 insert_hp_step_resume_breakpoint_at_frame in order to avoid
14e60db5 5295 get_prev_frame, which may stop prematurely (see the implementation
c7ce8faa 5296 of frame_unwind_caller_id for an example). */
14e60db5
DJ
5297
5298static void
5299insert_step_resume_breakpoint_at_caller (struct frame_info *next_frame)
5300{
5301 struct symtab_and_line sr_sal;
a6d9a66e 5302 struct gdbarch *gdbarch;
14e60db5
DJ
5303
5304 /* We shouldn't have gotten here if we don't know where the call site
5305 is. */
c7ce8faa 5306 gdb_assert (frame_id_p (frame_unwind_caller_id (next_frame)));
14e60db5
DJ
5307
5308 init_sal (&sr_sal); /* initialize to zeros */
5309
a6d9a66e 5310 gdbarch = frame_unwind_caller_arch (next_frame);
c7ce8faa
DJ
5311 sr_sal.pc = gdbarch_addr_bits_remove (gdbarch,
5312 frame_unwind_caller_pc (next_frame));
14e60db5 5313 sr_sal.section = find_pc_overlay (sr_sal.pc);
6c95b8df 5314 sr_sal.pspace = frame_unwind_program_space (next_frame);
14e60db5 5315
a6d9a66e 5316 insert_step_resume_breakpoint_at_sal (gdbarch, sr_sal,
c7ce8faa 5317 frame_unwind_caller_id (next_frame));
14e60db5
DJ
5318}
5319
611c83ae
PA
5320/* Insert a "longjmp-resume" breakpoint at PC. This is used to set a
5321 new breakpoint at the target of a jmp_buf. The handling of
5322 longjmp-resume uses the same mechanisms used for handling
5323 "step-resume" breakpoints. */
5324
5325static void
a6d9a66e 5326insert_longjmp_resume_breakpoint (struct gdbarch *gdbarch, CORE_ADDR pc)
611c83ae
PA
5327{
5328 /* There should never be more than one step-resume or longjmp-resume
5329 breakpoint per thread, so we should never be setting a new
5330 longjmp_resume_breakpoint when one is already active. */
8358c15c 5331 gdb_assert (inferior_thread ()->control.step_resume_breakpoint == NULL);
611c83ae
PA
5332
5333 if (debug_infrun)
5334 fprintf_unfiltered (gdb_stdlog,
5af949e3
UW
5335 "infrun: inserting longjmp-resume breakpoint at %s\n",
5336 paddress (gdbarch, pc));
611c83ae 5337
8358c15c 5338 inferior_thread ()->control.step_resume_breakpoint =
a6d9a66e 5339 set_momentary_breakpoint_at_pc (gdbarch, pc, bp_longjmp_resume);
611c83ae
PA
5340}
5341
186c406b
TT
5342/* Insert an exception resume breakpoint. TP is the thread throwing
5343 the exception. The block B is the block of the unwinder debug hook
5344 function. FRAME is the frame corresponding to the call to this
5345 function. SYM is the symbol of the function argument holding the
5346 target PC of the exception. */
5347
5348static void
5349insert_exception_resume_breakpoint (struct thread_info *tp,
5350 struct block *b,
5351 struct frame_info *frame,
5352 struct symbol *sym)
5353{
5354 struct gdb_exception e;
5355
5356 /* We want to ignore errors here. */
5357 TRY_CATCH (e, RETURN_MASK_ERROR)
5358 {
5359 struct symbol *vsym;
5360 struct value *value;
5361 CORE_ADDR handler;
5362 struct breakpoint *bp;
5363
5364 vsym = lookup_symbol (SYMBOL_LINKAGE_NAME (sym), b, VAR_DOMAIN, NULL);
5365 value = read_var_value (vsym, frame);
5366 /* If the value was optimized out, revert to the old behavior. */
5367 if (! value_optimized_out (value))
5368 {
5369 handler = value_as_address (value);
5370
5371 if (debug_infrun)
5372 fprintf_unfiltered (gdb_stdlog,
5373 "infrun: exception resume at %lx\n",
5374 (unsigned long) handler);
5375
5376 bp = set_momentary_breakpoint_at_pc (get_frame_arch (frame),
5377 handler, bp_exception_resume);
5378 bp->thread = tp->num;
5379 inferior_thread ()->control.exception_resume_breakpoint = bp;
5380 }
5381 }
5382}
5383
5384/* This is called when an exception has been intercepted. Check to
5385 see whether the exception's destination is of interest, and if so,
5386 set an exception resume breakpoint there. */
5387
5388static void
5389check_exception_resume (struct execution_control_state *ecs,
5390 struct frame_info *frame, struct symbol *func)
5391{
5392 struct gdb_exception e;
5393
5394 TRY_CATCH (e, RETURN_MASK_ERROR)
5395 {
5396 struct block *b;
5397 struct dict_iterator iter;
5398 struct symbol *sym;
5399 int argno = 0;
5400
5401 /* The exception breakpoint is a thread-specific breakpoint on
5402 the unwinder's debug hook, declared as:
5403
5404 void _Unwind_DebugHook (void *cfa, void *handler);
5405
5406 The CFA argument indicates the frame to which control is
5407 about to be transferred. HANDLER is the destination PC.
5408
5409 We ignore the CFA and set a temporary breakpoint at HANDLER.
5410 This is not extremely efficient but it avoids issues in gdb
5411 with computing the DWARF CFA, and it also works even in weird
5412 cases such as throwing an exception from inside a signal
5413 handler. */
5414
5415 b = SYMBOL_BLOCK_VALUE (func);
5416 ALL_BLOCK_SYMBOLS (b, iter, sym)
5417 {
5418 if (!SYMBOL_IS_ARGUMENT (sym))
5419 continue;
5420
5421 if (argno == 0)
5422 ++argno;
5423 else
5424 {
5425 insert_exception_resume_breakpoint (ecs->event_thread,
5426 b, frame, sym);
5427 break;
5428 }
5429 }
5430 }
5431}
5432
104c1213
JM
5433static void
5434stop_stepping (struct execution_control_state *ecs)
5435{
527159b7 5436 if (debug_infrun)
8a9de0e4 5437 fprintf_unfiltered (gdb_stdlog, "infrun: stop_stepping\n");
527159b7 5438
cd0fc7c3
SS
5439 /* Let callers know we don't want to wait for the inferior anymore. */
5440 ecs->wait_some_more = 0;
5441}
5442
d4f3574e
SS
5443/* This function handles various cases where we need to continue
5444 waiting for the inferior. */
1777feb0 5445/* (Used to be the keep_going: label in the old wait_for_inferior). */
d4f3574e
SS
5446
5447static void
5448keep_going (struct execution_control_state *ecs)
5449{
c4dbc9af
PA
5450 /* Make sure normal_stop is called if we get a QUIT handled before
5451 reaching resume. */
5452 struct cleanup *old_cleanups = make_cleanup (resume_cleanups, 0);
5453
d4f3574e 5454 /* Save the pc before execution, to compare with pc after stop. */
fb14de7b
UW
5455 ecs->event_thread->prev_pc
5456 = regcache_read_pc (get_thread_regcache (ecs->ptid));
d4f3574e 5457
d4f3574e
SS
5458 /* If we did not do break;, it means we should keep running the
5459 inferior and not return to debugger. */
5460
16c381f0
JK
5461 if (ecs->event_thread->control.trap_expected
5462 && ecs->event_thread->suspend.stop_signal != TARGET_SIGNAL_TRAP)
d4f3574e
SS
5463 {
5464 /* We took a signal (which we are supposed to pass through to
4e1c45ea
PA
5465 the inferior, else we'd not get here) and we haven't yet
5466 gotten our trap. Simply continue. */
c4dbc9af
PA
5467
5468 discard_cleanups (old_cleanups);
2020b7ab 5469 resume (currently_stepping (ecs->event_thread),
16c381f0 5470 ecs->event_thread->suspend.stop_signal);
d4f3574e
SS
5471 }
5472 else
5473 {
5474 /* Either the trap was not expected, but we are continuing
488f131b
JB
5475 anyway (the user asked that this signal be passed to the
5476 child)
5477 -- or --
5478 The signal was SIGTRAP, e.g. it was our signal, but we
5479 decided we should resume from it.
d4f3574e 5480
c36b740a 5481 We're going to run this baby now!
d4f3574e 5482
c36b740a
VP
5483 Note that insert_breakpoints won't try to re-insert
5484 already inserted breakpoints. Therefore, we don't
5485 care if breakpoints were already inserted, or not. */
5486
4e1c45ea 5487 if (ecs->event_thread->stepping_over_breakpoint)
45e8c884 5488 {
9f5a595d 5489 struct regcache *thread_regcache = get_thread_regcache (ecs->ptid);
abbb1732 5490
9f5a595d 5491 if (!use_displaced_stepping (get_regcache_arch (thread_regcache)))
237fc4c9
PA
5492 /* Since we can't do a displaced step, we have to remove
5493 the breakpoint while we step it. To keep things
5494 simple, we remove them all. */
5495 remove_breakpoints ();
45e8c884
VP
5496 }
5497 else
d4f3574e 5498 {
e236ba44 5499 struct gdb_exception e;
abbb1732 5500
569631c6
UW
5501 /* Stop stepping when inserting breakpoints
5502 has failed. */
e236ba44
VP
5503 TRY_CATCH (e, RETURN_MASK_ERROR)
5504 {
5505 insert_breakpoints ();
5506 }
5507 if (e.reason < 0)
d4f3574e 5508 {
97bd5475 5509 exception_print (gdb_stderr, e);
d4f3574e
SS
5510 stop_stepping (ecs);
5511 return;
5512 }
d4f3574e
SS
5513 }
5514
16c381f0
JK
5515 ecs->event_thread->control.trap_expected
5516 = ecs->event_thread->stepping_over_breakpoint;
d4f3574e
SS
5517
5518 /* Do not deliver SIGNAL_TRAP (except when the user explicitly
488f131b
JB
5519 specifies that such a signal should be delivered to the
5520 target program).
5521
5522 Typically, this would occure when a user is debugging a
5523 target monitor on a simulator: the target monitor sets a
5524 breakpoint; the simulator encounters this break-point and
5525 halts the simulation handing control to GDB; GDB, noteing
5526 that the break-point isn't valid, returns control back to the
5527 simulator; the simulator then delivers the hardware
1777feb0 5528 equivalent of a SIGNAL_TRAP to the program being debugged. */
488f131b 5529
16c381f0
JK
5530 if (ecs->event_thread->suspend.stop_signal == TARGET_SIGNAL_TRAP
5531 && !signal_program[ecs->event_thread->suspend.stop_signal])
5532 ecs->event_thread->suspend.stop_signal = TARGET_SIGNAL_0;
d4f3574e 5533
c4dbc9af 5534 discard_cleanups (old_cleanups);
2020b7ab 5535 resume (currently_stepping (ecs->event_thread),
16c381f0 5536 ecs->event_thread->suspend.stop_signal);
d4f3574e
SS
5537 }
5538
488f131b 5539 prepare_to_wait (ecs);
d4f3574e
SS
5540}
5541
104c1213
JM
5542/* This function normally comes after a resume, before
5543 handle_inferior_event exits. It takes care of any last bits of
5544 housekeeping, and sets the all-important wait_some_more flag. */
cd0fc7c3 5545
104c1213
JM
5546static void
5547prepare_to_wait (struct execution_control_state *ecs)
cd0fc7c3 5548{
527159b7 5549 if (debug_infrun)
8a9de0e4 5550 fprintf_unfiltered (gdb_stdlog, "infrun: prepare_to_wait\n");
104c1213 5551
104c1213
JM
5552 /* This is the old end of the while loop. Let everybody know we
5553 want to wait for the inferior some more and get called again
5554 soon. */
5555 ecs->wait_some_more = 1;
c906108c 5556}
11cf8741 5557
33d62d64
JK
5558/* Several print_*_reason functions to print why the inferior has stopped.
5559 We always print something when the inferior exits, or receives a signal.
5560 The rest of the cases are dealt with later on in normal_stop and
5561 print_it_typical. Ideally there should be a call to one of these
5562 print_*_reason functions functions from handle_inferior_event each time
5563 stop_stepping is called. */
5564
5565/* Print why the inferior has stopped.
5566 We are done with a step/next/si/ni command, print why the inferior has
5567 stopped. For now print nothing. Print a message only if not in the middle
5568 of doing a "step n" operation for n > 1. */
5569
5570static void
5571print_end_stepping_range_reason (void)
5572{
16c381f0
JK
5573 if ((!inferior_thread ()->step_multi
5574 || !inferior_thread ()->control.stop_step)
33d62d64
JK
5575 && ui_out_is_mi_like_p (uiout))
5576 ui_out_field_string (uiout, "reason",
5577 async_reason_lookup (EXEC_ASYNC_END_STEPPING_RANGE));
5578}
5579
5580/* The inferior was terminated by a signal, print why it stopped. */
5581
11cf8741 5582static void
33d62d64 5583print_signal_exited_reason (enum target_signal siggnal)
11cf8741 5584{
33d62d64
JK
5585 annotate_signalled ();
5586 if (ui_out_is_mi_like_p (uiout))
5587 ui_out_field_string
5588 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_EXITED_SIGNALLED));
5589 ui_out_text (uiout, "\nProgram terminated with signal ");
5590 annotate_signal_name ();
5591 ui_out_field_string (uiout, "signal-name",
5592 target_signal_to_name (siggnal));
5593 annotate_signal_name_end ();
5594 ui_out_text (uiout, ", ");
5595 annotate_signal_string ();
5596 ui_out_field_string (uiout, "signal-meaning",
5597 target_signal_to_string (siggnal));
5598 annotate_signal_string_end ();
5599 ui_out_text (uiout, ".\n");
5600 ui_out_text (uiout, "The program no longer exists.\n");
5601}
5602
5603/* The inferior program is finished, print why it stopped. */
5604
5605static void
5606print_exited_reason (int exitstatus)
5607{
fda326dd
TT
5608 struct inferior *inf = current_inferior ();
5609 const char *pidstr = target_pid_to_str (pid_to_ptid (inf->pid));
5610
33d62d64
JK
5611 annotate_exited (exitstatus);
5612 if (exitstatus)
5613 {
5614 if (ui_out_is_mi_like_p (uiout))
5615 ui_out_field_string (uiout, "reason",
5616 async_reason_lookup (EXEC_ASYNC_EXITED));
fda326dd
TT
5617 ui_out_text (uiout, "[Inferior ");
5618 ui_out_text (uiout, plongest (inf->num));
5619 ui_out_text (uiout, " (");
5620 ui_out_text (uiout, pidstr);
5621 ui_out_text (uiout, ") exited with code ");
33d62d64 5622 ui_out_field_fmt (uiout, "exit-code", "0%o", (unsigned int) exitstatus);
fda326dd 5623 ui_out_text (uiout, "]\n");
33d62d64
JK
5624 }
5625 else
11cf8741 5626 {
9dc5e2a9 5627 if (ui_out_is_mi_like_p (uiout))
034dad6f 5628 ui_out_field_string
33d62d64 5629 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_EXITED_NORMALLY));
fda326dd
TT
5630 ui_out_text (uiout, "[Inferior ");
5631 ui_out_text (uiout, plongest (inf->num));
5632 ui_out_text (uiout, " (");
5633 ui_out_text (uiout, pidstr);
5634 ui_out_text (uiout, ") exited normally]\n");
33d62d64
JK
5635 }
5636 /* Support the --return-child-result option. */
5637 return_child_result_value = exitstatus;
5638}
5639
5640/* Signal received, print why the inferior has stopped. The signal table
1777feb0 5641 tells us to print about it. */
33d62d64
JK
5642
5643static void
5644print_signal_received_reason (enum target_signal siggnal)
5645{
5646 annotate_signal ();
5647
5648 if (siggnal == TARGET_SIGNAL_0 && !ui_out_is_mi_like_p (uiout))
5649 {
5650 struct thread_info *t = inferior_thread ();
5651
5652 ui_out_text (uiout, "\n[");
5653 ui_out_field_string (uiout, "thread-name",
5654 target_pid_to_str (t->ptid));
5655 ui_out_field_fmt (uiout, "thread-id", "] #%d", t->num);
5656 ui_out_text (uiout, " stopped");
5657 }
5658 else
5659 {
5660 ui_out_text (uiout, "\nProgram received signal ");
8b93c638 5661 annotate_signal_name ();
33d62d64
JK
5662 if (ui_out_is_mi_like_p (uiout))
5663 ui_out_field_string
5664 (uiout, "reason", async_reason_lookup (EXEC_ASYNC_SIGNAL_RECEIVED));
488f131b 5665 ui_out_field_string (uiout, "signal-name",
33d62d64 5666 target_signal_to_name (siggnal));
8b93c638
JM
5667 annotate_signal_name_end ();
5668 ui_out_text (uiout, ", ");
5669 annotate_signal_string ();
488f131b 5670 ui_out_field_string (uiout, "signal-meaning",
33d62d64 5671 target_signal_to_string (siggnal));
8b93c638 5672 annotate_signal_string_end ();
33d62d64
JK
5673 }
5674 ui_out_text (uiout, ".\n");
5675}
252fbfc8 5676
33d62d64
JK
5677/* Reverse execution: target ran out of history info, print why the inferior
5678 has stopped. */
252fbfc8 5679
33d62d64
JK
5680static void
5681print_no_history_reason (void)
5682{
5683 ui_out_text (uiout, "\nNo more reverse-execution history.\n");
11cf8741 5684}
43ff13b4 5685
c906108c
SS
5686/* Here to return control to GDB when the inferior stops for real.
5687 Print appropriate messages, remove breakpoints, give terminal our modes.
5688
5689 STOP_PRINT_FRAME nonzero means print the executing frame
5690 (pc, function, args, file, line number and line text).
5691 BREAKPOINTS_FAILED nonzero means stop was due to error
5692 attempting to insert breakpoints. */
5693
5694void
96baa820 5695normal_stop (void)
c906108c 5696{
73b65bb0
DJ
5697 struct target_waitstatus last;
5698 ptid_t last_ptid;
29f49a6a 5699 struct cleanup *old_chain = make_cleanup (null_cleanup, NULL);
73b65bb0
DJ
5700
5701 get_last_target_status (&last_ptid, &last);
5702
29f49a6a
PA
5703 /* If an exception is thrown from this point on, make sure to
5704 propagate GDB's knowledge of the executing state to the
5705 frontend/user running state. A QUIT is an easy exception to see
5706 here, so do this before any filtered output. */
c35b1492
PA
5707 if (!non_stop)
5708 make_cleanup (finish_thread_state_cleanup, &minus_one_ptid);
5709 else if (last.kind != TARGET_WAITKIND_SIGNALLED
5710 && last.kind != TARGET_WAITKIND_EXITED)
5711 make_cleanup (finish_thread_state_cleanup, &inferior_ptid);
29f49a6a 5712
4f8d22e3
PA
5713 /* In non-stop mode, we don't want GDB to switch threads behind the
5714 user's back, to avoid races where the user is typing a command to
5715 apply to thread x, but GDB switches to thread y before the user
5716 finishes entering the command. */
5717
c906108c
SS
5718 /* As with the notification of thread events, we want to delay
5719 notifying the user that we've switched thread context until
5720 the inferior actually stops.
5721
73b65bb0
DJ
5722 There's no point in saying anything if the inferior has exited.
5723 Note that SIGNALLED here means "exited with a signal", not
5724 "received a signal". */
4f8d22e3
PA
5725 if (!non_stop
5726 && !ptid_equal (previous_inferior_ptid, inferior_ptid)
73b65bb0
DJ
5727 && target_has_execution
5728 && last.kind != TARGET_WAITKIND_SIGNALLED
5729 && last.kind != TARGET_WAITKIND_EXITED)
c906108c
SS
5730 {
5731 target_terminal_ours_for_output ();
a3f17187 5732 printf_filtered (_("[Switching to %s]\n"),
c95310c6 5733 target_pid_to_str (inferior_ptid));
b8fa951a 5734 annotate_thread_changed ();
39f77062 5735 previous_inferior_ptid = inferior_ptid;
c906108c 5736 }
c906108c 5737
74960c60 5738 if (!breakpoints_always_inserted_mode () && target_has_execution)
c906108c
SS
5739 {
5740 if (remove_breakpoints ())
5741 {
5742 target_terminal_ours_for_output ();
3e43a32a
MS
5743 printf_filtered (_("Cannot remove breakpoints because "
5744 "program is no longer writable.\nFurther "
5745 "execution is probably impossible.\n"));
c906108c
SS
5746 }
5747 }
c906108c 5748
c906108c
SS
5749 /* If an auto-display called a function and that got a signal,
5750 delete that auto-display to avoid an infinite recursion. */
5751
5752 if (stopped_by_random_signal)
5753 disable_current_display ();
5754
5755 /* Don't print a message if in the middle of doing a "step n"
5756 operation for n > 1 */
af679fd0
PA
5757 if (target_has_execution
5758 && last.kind != TARGET_WAITKIND_SIGNALLED
5759 && last.kind != TARGET_WAITKIND_EXITED
5760 && inferior_thread ()->step_multi
16c381f0 5761 && inferior_thread ()->control.stop_step)
c906108c
SS
5762 goto done;
5763
5764 target_terminal_ours ();
5765
7abfe014
DJ
5766 /* Set the current source location. This will also happen if we
5767 display the frame below, but the current SAL will be incorrect
5768 during a user hook-stop function. */
d729566a 5769 if (has_stack_frames () && !stop_stack_dummy)
7abfe014
DJ
5770 set_current_sal_from_frame (get_current_frame (), 1);
5771
dd7e2d2b
PA
5772 /* Let the user/frontend see the threads as stopped. */
5773 do_cleanups (old_chain);
5774
5775 /* Look up the hook_stop and run it (CLI internally handles problem
5776 of stop_command's pre-hook not existing). */
5777 if (stop_command)
5778 catch_errors (hook_stop_stub, stop_command,
5779 "Error while running hook_stop:\n", RETURN_MASK_ALL);
5780
d729566a 5781 if (!has_stack_frames ())
d51fd4c8 5782 goto done;
c906108c 5783
32400beb
PA
5784 if (last.kind == TARGET_WAITKIND_SIGNALLED
5785 || last.kind == TARGET_WAITKIND_EXITED)
5786 goto done;
5787
c906108c
SS
5788 /* Select innermost stack frame - i.e., current frame is frame 0,
5789 and current location is based on that.
5790 Don't do this on return from a stack dummy routine,
1777feb0 5791 or if the program has exited. */
c906108c
SS
5792
5793 if (!stop_stack_dummy)
5794 {
0f7d239c 5795 select_frame (get_current_frame ());
c906108c
SS
5796
5797 /* Print current location without a level number, if
c5aa993b
JM
5798 we have changed functions or hit a breakpoint.
5799 Print source line if we have one.
5800 bpstat_print() contains the logic deciding in detail
1777feb0 5801 what to print, based on the event(s) that just occurred. */
c906108c 5802
d01a8610
AS
5803 /* If --batch-silent is enabled then there's no need to print the current
5804 source location, and to try risks causing an error message about
5805 missing source files. */
5806 if (stop_print_frame && !batch_silent)
c906108c
SS
5807 {
5808 int bpstat_ret;
5809 int source_flag;
917317f4 5810 int do_frame_printing = 1;
347bddb7 5811 struct thread_info *tp = inferior_thread ();
c906108c 5812
16c381f0 5813 bpstat_ret = bpstat_print (tp->control.stop_bpstat);
917317f4
JM
5814 switch (bpstat_ret)
5815 {
5816 case PRINT_UNKNOWN:
b0f4b84b
DJ
5817 /* If we had hit a shared library event breakpoint,
5818 bpstat_print would print out this message. If we hit
5819 an OS-level shared library event, do the same
5820 thing. */
5821 if (last.kind == TARGET_WAITKIND_LOADED)
5822 {
5823 printf_filtered (_("Stopped due to shared library event\n"));
5824 source_flag = SRC_LINE; /* something bogus */
5825 do_frame_printing = 0;
5826 break;
5827 }
5828
aa0cd9c1 5829 /* FIXME: cagney/2002-12-01: Given that a frame ID does
8fb3e588
AC
5830 (or should) carry around the function and does (or
5831 should) use that when doing a frame comparison. */
16c381f0
JK
5832 if (tp->control.stop_step
5833 && frame_id_eq (tp->control.step_frame_id,
aa0cd9c1 5834 get_frame_id (get_current_frame ()))
917317f4 5835 && step_start_function == find_pc_function (stop_pc))
1777feb0
MS
5836 source_flag = SRC_LINE; /* Finished step, just
5837 print source line. */
917317f4 5838 else
1777feb0
MS
5839 source_flag = SRC_AND_LOC; /* Print location and
5840 source line. */
917317f4
JM
5841 break;
5842 case PRINT_SRC_AND_LOC:
1777feb0
MS
5843 source_flag = SRC_AND_LOC; /* Print location and
5844 source line. */
917317f4
JM
5845 break;
5846 case PRINT_SRC_ONLY:
c5394b80 5847 source_flag = SRC_LINE;
917317f4
JM
5848 break;
5849 case PRINT_NOTHING:
488f131b 5850 source_flag = SRC_LINE; /* something bogus */
917317f4
JM
5851 do_frame_printing = 0;
5852 break;
5853 default:
e2e0b3e5 5854 internal_error (__FILE__, __LINE__, _("Unknown value."));
917317f4 5855 }
c906108c
SS
5856
5857 /* The behavior of this routine with respect to the source
5858 flag is:
c5394b80
JM
5859 SRC_LINE: Print only source line
5860 LOCATION: Print only location
1777feb0 5861 SRC_AND_LOC: Print location and source line. */
917317f4 5862 if (do_frame_printing)
b04f3ab4 5863 print_stack_frame (get_selected_frame (NULL), 0, source_flag);
c906108c
SS
5864
5865 /* Display the auto-display expressions. */
5866 do_displays ();
5867 }
5868 }
5869
5870 /* Save the function value return registers, if we care.
5871 We might be about to restore their previous contents. */
9da8c2a0
PA
5872 if (inferior_thread ()->control.proceed_to_finish
5873 && execution_direction != EXEC_REVERSE)
d5c31457
UW
5874 {
5875 /* This should not be necessary. */
5876 if (stop_registers)
5877 regcache_xfree (stop_registers);
5878
5879 /* NB: The copy goes through to the target picking up the value of
5880 all the registers. */
5881 stop_registers = regcache_dup (get_current_regcache ());
5882 }
c906108c 5883
aa7d318d 5884 if (stop_stack_dummy == STOP_STACK_DUMMY)
c906108c 5885 {
b89667eb
DE
5886 /* Pop the empty frame that contains the stack dummy.
5887 This also restores inferior state prior to the call
16c381f0 5888 (struct infcall_suspend_state). */
b89667eb 5889 struct frame_info *frame = get_current_frame ();
abbb1732 5890
b89667eb
DE
5891 gdb_assert (get_frame_type (frame) == DUMMY_FRAME);
5892 frame_pop (frame);
3e43a32a
MS
5893 /* frame_pop() calls reinit_frame_cache as the last thing it
5894 does which means there's currently no selected frame. We
5895 don't need to re-establish a selected frame if the dummy call
5896 returns normally, that will be done by
5897 restore_infcall_control_state. However, we do have to handle
5898 the case where the dummy call is returning after being
5899 stopped (e.g. the dummy call previously hit a breakpoint).
5900 We can't know which case we have so just always re-establish
5901 a selected frame here. */
0f7d239c 5902 select_frame (get_current_frame ());
c906108c
SS
5903 }
5904
c906108c
SS
5905done:
5906 annotate_stopped ();
41d2bdb4
PA
5907
5908 /* Suppress the stop observer if we're in the middle of:
5909
5910 - a step n (n > 1), as there still more steps to be done.
5911
5912 - a "finish" command, as the observer will be called in
5913 finish_command_continuation, so it can include the inferior
5914 function's return value.
5915
5916 - calling an inferior function, as we pretend we inferior didn't
5917 run at all. The return value of the call is handled by the
5918 expression evaluator, through call_function_by_hand. */
5919
5920 if (!target_has_execution
5921 || last.kind == TARGET_WAITKIND_SIGNALLED
5922 || last.kind == TARGET_WAITKIND_EXITED
5923 || (!inferior_thread ()->step_multi
16c381f0
JK
5924 && !(inferior_thread ()->control.stop_bpstat
5925 && inferior_thread ()->control.proceed_to_finish)
5926 && !inferior_thread ()->control.in_infcall))
347bddb7
PA
5927 {
5928 if (!ptid_equal (inferior_ptid, null_ptid))
16c381f0 5929 observer_notify_normal_stop (inferior_thread ()->control.stop_bpstat,
1d33d6ba 5930 stop_print_frame);
347bddb7 5931 else
1d33d6ba 5932 observer_notify_normal_stop (NULL, stop_print_frame);
347bddb7 5933 }
347bddb7 5934
48844aa6
PA
5935 if (target_has_execution)
5936 {
5937 if (last.kind != TARGET_WAITKIND_SIGNALLED
5938 && last.kind != TARGET_WAITKIND_EXITED)
5939 /* Delete the breakpoint we stopped at, if it wants to be deleted.
5940 Delete any breakpoint that is to be deleted at the next stop. */
16c381f0 5941 breakpoint_auto_delete (inferior_thread ()->control.stop_bpstat);
94cc34af 5942 }
6c95b8df
PA
5943
5944 /* Try to get rid of automatically added inferiors that are no
5945 longer needed. Keeping those around slows down things linearly.
5946 Note that this never removes the current inferior. */
5947 prune_inferiors ();
c906108c
SS
5948}
5949
5950static int
96baa820 5951hook_stop_stub (void *cmd)
c906108c 5952{
5913bcb0 5953 execute_cmd_pre_hook ((struct cmd_list_element *) cmd);
c906108c
SS
5954 return (0);
5955}
5956\f
c5aa993b 5957int
96baa820 5958signal_stop_state (int signo)
c906108c 5959{
d6b48e9c 5960 return signal_stop[signo];
c906108c
SS
5961}
5962
c5aa993b 5963int
96baa820 5964signal_print_state (int signo)
c906108c
SS
5965{
5966 return signal_print[signo];
5967}
5968
c5aa993b 5969int
96baa820 5970signal_pass_state (int signo)
c906108c
SS
5971{
5972 return signal_program[signo];
5973}
5974
2455069d
UW
5975static void
5976signal_cache_update (int signo)
5977{
5978 if (signo == -1)
5979 {
5980 for (signo = 0; signo < (int) TARGET_SIGNAL_LAST; signo++)
5981 signal_cache_update (signo);
5982
5983 return;
5984 }
5985
5986 signal_pass[signo] = (signal_stop[signo] == 0
5987 && signal_print[signo] == 0
5988 && signal_program[signo] == 1);
5989}
5990
488f131b 5991int
7bda5e4a 5992signal_stop_update (int signo, int state)
d4f3574e
SS
5993{
5994 int ret = signal_stop[signo];
abbb1732 5995
d4f3574e 5996 signal_stop[signo] = state;
2455069d 5997 signal_cache_update (signo);
d4f3574e
SS
5998 return ret;
5999}
6000
488f131b 6001int
7bda5e4a 6002signal_print_update (int signo, int state)
d4f3574e
SS
6003{
6004 int ret = signal_print[signo];
abbb1732 6005
d4f3574e 6006 signal_print[signo] = state;
2455069d 6007 signal_cache_update (signo);
d4f3574e
SS
6008 return ret;
6009}
6010
488f131b 6011int
7bda5e4a 6012signal_pass_update (int signo, int state)
d4f3574e
SS
6013{
6014 int ret = signal_program[signo];
abbb1732 6015
d4f3574e 6016 signal_program[signo] = state;
2455069d 6017 signal_cache_update (signo);
d4f3574e
SS
6018 return ret;
6019}
6020
c906108c 6021static void
96baa820 6022sig_print_header (void)
c906108c 6023{
3e43a32a
MS
6024 printf_filtered (_("Signal Stop\tPrint\tPass "
6025 "to program\tDescription\n"));
c906108c
SS
6026}
6027
6028static void
96baa820 6029sig_print_info (enum target_signal oursig)
c906108c 6030{
54363045 6031 const char *name = target_signal_to_name (oursig);
c906108c 6032 int name_padding = 13 - strlen (name);
96baa820 6033
c906108c
SS
6034 if (name_padding <= 0)
6035 name_padding = 0;
6036
6037 printf_filtered ("%s", name);
488f131b 6038 printf_filtered ("%*.*s ", name_padding, name_padding, " ");
c906108c
SS
6039 printf_filtered ("%s\t", signal_stop[oursig] ? "Yes" : "No");
6040 printf_filtered ("%s\t", signal_print[oursig] ? "Yes" : "No");
6041 printf_filtered ("%s\t\t", signal_program[oursig] ? "Yes" : "No");
6042 printf_filtered ("%s\n", target_signal_to_string (oursig));
6043}
6044
6045/* Specify how various signals in the inferior should be handled. */
6046
6047static void
96baa820 6048handle_command (char *args, int from_tty)
c906108c
SS
6049{
6050 char **argv;
6051 int digits, wordlen;
6052 int sigfirst, signum, siglast;
6053 enum target_signal oursig;
6054 int allsigs;
6055 int nsigs;
6056 unsigned char *sigs;
6057 struct cleanup *old_chain;
6058
6059 if (args == NULL)
6060 {
e2e0b3e5 6061 error_no_arg (_("signal to handle"));
c906108c
SS
6062 }
6063
1777feb0 6064 /* Allocate and zero an array of flags for which signals to handle. */
c906108c
SS
6065
6066 nsigs = (int) TARGET_SIGNAL_LAST;
6067 sigs = (unsigned char *) alloca (nsigs);
6068 memset (sigs, 0, nsigs);
6069
1777feb0 6070 /* Break the command line up into args. */
c906108c 6071
d1a41061 6072 argv = gdb_buildargv (args);
7a292a7a 6073 old_chain = make_cleanup_freeargv (argv);
c906108c
SS
6074
6075 /* Walk through the args, looking for signal oursigs, signal names, and
6076 actions. Signal numbers and signal names may be interspersed with
6077 actions, with the actions being performed for all signals cumulatively
1777feb0 6078 specified. Signal ranges can be specified as <LOW>-<HIGH>. */
c906108c
SS
6079
6080 while (*argv != NULL)
6081 {
6082 wordlen = strlen (*argv);
6083 for (digits = 0; isdigit ((*argv)[digits]); digits++)
6084 {;
6085 }
6086 allsigs = 0;
6087 sigfirst = siglast = -1;
6088
6089 if (wordlen >= 1 && !strncmp (*argv, "all", wordlen))
6090 {
6091 /* Apply action to all signals except those used by the
1777feb0 6092 debugger. Silently skip those. */
c906108c
SS
6093 allsigs = 1;
6094 sigfirst = 0;
6095 siglast = nsigs - 1;
6096 }
6097 else if (wordlen >= 1 && !strncmp (*argv, "stop", wordlen))
6098 {
6099 SET_SIGS (nsigs, sigs, signal_stop);
6100 SET_SIGS (nsigs, sigs, signal_print);
6101 }
6102 else if (wordlen >= 1 && !strncmp (*argv, "ignore", wordlen))
6103 {
6104 UNSET_SIGS (nsigs, sigs, signal_program);
6105 }
6106 else if (wordlen >= 2 && !strncmp (*argv, "print", wordlen))
6107 {
6108 SET_SIGS (nsigs, sigs, signal_print);
6109 }
6110 else if (wordlen >= 2 && !strncmp (*argv, "pass", wordlen))
6111 {
6112 SET_SIGS (nsigs, sigs, signal_program);
6113 }
6114 else if (wordlen >= 3 && !strncmp (*argv, "nostop", wordlen))
6115 {
6116 UNSET_SIGS (nsigs, sigs, signal_stop);
6117 }
6118 else if (wordlen >= 3 && !strncmp (*argv, "noignore", wordlen))
6119 {
6120 SET_SIGS (nsigs, sigs, signal_program);
6121 }
6122 else if (wordlen >= 4 && !strncmp (*argv, "noprint", wordlen))
6123 {
6124 UNSET_SIGS (nsigs, sigs, signal_print);
6125 UNSET_SIGS (nsigs, sigs, signal_stop);
6126 }
6127 else if (wordlen >= 4 && !strncmp (*argv, "nopass", wordlen))
6128 {
6129 UNSET_SIGS (nsigs, sigs, signal_program);
6130 }
6131 else if (digits > 0)
6132 {
6133 /* It is numeric. The numeric signal refers to our own
6134 internal signal numbering from target.h, not to host/target
6135 signal number. This is a feature; users really should be
6136 using symbolic names anyway, and the common ones like
6137 SIGHUP, SIGINT, SIGALRM, etc. will work right anyway. */
6138
6139 sigfirst = siglast = (int)
6140 target_signal_from_command (atoi (*argv));
6141 if ((*argv)[digits] == '-')
6142 {
6143 siglast = (int)
6144 target_signal_from_command (atoi ((*argv) + digits + 1));
6145 }
6146 if (sigfirst > siglast)
6147 {
1777feb0 6148 /* Bet he didn't figure we'd think of this case... */
c906108c
SS
6149 signum = sigfirst;
6150 sigfirst = siglast;
6151 siglast = signum;
6152 }
6153 }
6154 else
6155 {
6156 oursig = target_signal_from_name (*argv);
6157 if (oursig != TARGET_SIGNAL_UNKNOWN)
6158 {
6159 sigfirst = siglast = (int) oursig;
6160 }
6161 else
6162 {
6163 /* Not a number and not a recognized flag word => complain. */
8a3fe4f8 6164 error (_("Unrecognized or ambiguous flag word: \"%s\"."), *argv);
c906108c
SS
6165 }
6166 }
6167
6168 /* If any signal numbers or symbol names were found, set flags for
1777feb0 6169 which signals to apply actions to. */
c906108c
SS
6170
6171 for (signum = sigfirst; signum >= 0 && signum <= siglast; signum++)
6172 {
6173 switch ((enum target_signal) signum)
6174 {
6175 case TARGET_SIGNAL_TRAP:
6176 case TARGET_SIGNAL_INT:
6177 if (!allsigs && !sigs[signum])
6178 {
9e2f0ad4 6179 if (query (_("%s is used by the debugger.\n\
3e43a32a
MS
6180Are you sure you want to change it? "),
6181 target_signal_to_name ((enum target_signal) signum)))
c906108c
SS
6182 {
6183 sigs[signum] = 1;
6184 }
6185 else
6186 {
a3f17187 6187 printf_unfiltered (_("Not confirmed, unchanged.\n"));
c906108c
SS
6188 gdb_flush (gdb_stdout);
6189 }
6190 }
6191 break;
6192 case TARGET_SIGNAL_0:
6193 case TARGET_SIGNAL_DEFAULT:
6194 case TARGET_SIGNAL_UNKNOWN:
6195 /* Make sure that "all" doesn't print these. */
6196 break;
6197 default:
6198 sigs[signum] = 1;
6199 break;
6200 }
6201 }
6202
6203 argv++;
6204 }
6205
3a031f65
PA
6206 for (signum = 0; signum < nsigs; signum++)
6207 if (sigs[signum])
6208 {
2455069d
UW
6209 signal_cache_update (-1);
6210 target_pass_signals ((int) TARGET_SIGNAL_LAST, signal_pass);
c906108c 6211
3a031f65
PA
6212 if (from_tty)
6213 {
6214 /* Show the results. */
6215 sig_print_header ();
6216 for (; signum < nsigs; signum++)
6217 if (sigs[signum])
6218 sig_print_info (signum);
6219 }
6220
6221 break;
6222 }
c906108c
SS
6223
6224 do_cleanups (old_chain);
6225}
6226
6227static void
96baa820 6228xdb_handle_command (char *args, int from_tty)
c906108c
SS
6229{
6230 char **argv;
6231 struct cleanup *old_chain;
6232
d1a41061
PP
6233 if (args == NULL)
6234 error_no_arg (_("xdb command"));
6235
1777feb0 6236 /* Break the command line up into args. */
c906108c 6237
d1a41061 6238 argv = gdb_buildargv (args);
7a292a7a 6239 old_chain = make_cleanup_freeargv (argv);
c906108c
SS
6240 if (argv[1] != (char *) NULL)
6241 {
6242 char *argBuf;
6243 int bufLen;
6244
6245 bufLen = strlen (argv[0]) + 20;
6246 argBuf = (char *) xmalloc (bufLen);
6247 if (argBuf)
6248 {
6249 int validFlag = 1;
6250 enum target_signal oursig;
6251
6252 oursig = target_signal_from_name (argv[0]);
6253 memset (argBuf, 0, bufLen);
6254 if (strcmp (argv[1], "Q") == 0)
6255 sprintf (argBuf, "%s %s", argv[0], "noprint");
6256 else
6257 {
6258 if (strcmp (argv[1], "s") == 0)
6259 {
6260 if (!signal_stop[oursig])
6261 sprintf (argBuf, "%s %s", argv[0], "stop");
6262 else
6263 sprintf (argBuf, "%s %s", argv[0], "nostop");
6264 }
6265 else if (strcmp (argv[1], "i") == 0)
6266 {
6267 if (!signal_program[oursig])
6268 sprintf (argBuf, "%s %s", argv[0], "pass");
6269 else
6270 sprintf (argBuf, "%s %s", argv[0], "nopass");
6271 }
6272 else if (strcmp (argv[1], "r") == 0)
6273 {
6274 if (!signal_print[oursig])
6275 sprintf (argBuf, "%s %s", argv[0], "print");
6276 else
6277 sprintf (argBuf, "%s %s", argv[0], "noprint");
6278 }
6279 else
6280 validFlag = 0;
6281 }
6282 if (validFlag)
6283 handle_command (argBuf, from_tty);
6284 else
a3f17187 6285 printf_filtered (_("Invalid signal handling flag.\n"));
c906108c 6286 if (argBuf)
b8c9b27d 6287 xfree (argBuf);
c906108c
SS
6288 }
6289 }
6290 do_cleanups (old_chain);
6291}
6292
6293/* Print current contents of the tables set by the handle command.
6294 It is possible we should just be printing signals actually used
6295 by the current target (but for things to work right when switching
6296 targets, all signals should be in the signal tables). */
6297
6298static void
96baa820 6299signals_info (char *signum_exp, int from_tty)
c906108c
SS
6300{
6301 enum target_signal oursig;
abbb1732 6302
c906108c
SS
6303 sig_print_header ();
6304
6305 if (signum_exp)
6306 {
6307 /* First see if this is a symbol name. */
6308 oursig = target_signal_from_name (signum_exp);
6309 if (oursig == TARGET_SIGNAL_UNKNOWN)
6310 {
6311 /* No, try numeric. */
6312 oursig =
bb518678 6313 target_signal_from_command (parse_and_eval_long (signum_exp));
c906108c
SS
6314 }
6315 sig_print_info (oursig);
6316 return;
6317 }
6318
6319 printf_filtered ("\n");
6320 /* These ugly casts brought to you by the native VAX compiler. */
6321 for (oursig = TARGET_SIGNAL_FIRST;
6322 (int) oursig < (int) TARGET_SIGNAL_LAST;
6323 oursig = (enum target_signal) ((int) oursig + 1))
6324 {
6325 QUIT;
6326
6327 if (oursig != TARGET_SIGNAL_UNKNOWN
488f131b 6328 && oursig != TARGET_SIGNAL_DEFAULT && oursig != TARGET_SIGNAL_0)
c906108c
SS
6329 sig_print_info (oursig);
6330 }
6331
3e43a32a
MS
6332 printf_filtered (_("\nUse the \"handle\" command "
6333 "to change these tables.\n"));
c906108c 6334}
4aa995e1
PA
6335
6336/* The $_siginfo convenience variable is a bit special. We don't know
6337 for sure the type of the value until we actually have a chance to
7a9dd1b2 6338 fetch the data. The type can change depending on gdbarch, so it is
4aa995e1
PA
6339 also dependent on which thread you have selected.
6340
6341 1. making $_siginfo be an internalvar that creates a new value on
6342 access.
6343
6344 2. making the value of $_siginfo be an lval_computed value. */
6345
6346/* This function implements the lval_computed support for reading a
6347 $_siginfo value. */
6348
6349static void
6350siginfo_value_read (struct value *v)
6351{
6352 LONGEST transferred;
6353
6354 transferred =
6355 target_read (&current_target, TARGET_OBJECT_SIGNAL_INFO,
6356 NULL,
6357 value_contents_all_raw (v),
6358 value_offset (v),
6359 TYPE_LENGTH (value_type (v)));
6360
6361 if (transferred != TYPE_LENGTH (value_type (v)))
6362 error (_("Unable to read siginfo"));
6363}
6364
6365/* This function implements the lval_computed support for writing a
6366 $_siginfo value. */
6367
6368static void
6369siginfo_value_write (struct value *v, struct value *fromval)
6370{
6371 LONGEST transferred;
6372
6373 transferred = target_write (&current_target,
6374 TARGET_OBJECT_SIGNAL_INFO,
6375 NULL,
6376 value_contents_all_raw (fromval),
6377 value_offset (v),
6378 TYPE_LENGTH (value_type (fromval)));
6379
6380 if (transferred != TYPE_LENGTH (value_type (fromval)))
6381 error (_("Unable to write siginfo"));
6382}
6383
6384static struct lval_funcs siginfo_value_funcs =
6385 {
6386 siginfo_value_read,
6387 siginfo_value_write
6388 };
6389
6390/* Return a new value with the correct type for the siginfo object of
78267919
UW
6391 the current thread using architecture GDBARCH. Return a void value
6392 if there's no object available. */
4aa995e1 6393
2c0b251b 6394static struct value *
78267919 6395siginfo_make_value (struct gdbarch *gdbarch, struct internalvar *var)
4aa995e1 6396{
4aa995e1 6397 if (target_has_stack
78267919
UW
6398 && !ptid_equal (inferior_ptid, null_ptid)
6399 && gdbarch_get_siginfo_type_p (gdbarch))
4aa995e1 6400 {
78267919 6401 struct type *type = gdbarch_get_siginfo_type (gdbarch);
abbb1732 6402
78267919 6403 return allocate_computed_value (type, &siginfo_value_funcs, NULL);
4aa995e1
PA
6404 }
6405
78267919 6406 return allocate_value (builtin_type (gdbarch)->builtin_void);
4aa995e1
PA
6407}
6408
c906108c 6409\f
16c381f0
JK
6410/* infcall_suspend_state contains state about the program itself like its
6411 registers and any signal it received when it last stopped.
6412 This state must be restored regardless of how the inferior function call
6413 ends (either successfully, or after it hits a breakpoint or signal)
6414 if the program is to properly continue where it left off. */
6415
6416struct infcall_suspend_state
7a292a7a 6417{
16c381f0
JK
6418 struct thread_suspend_state thread_suspend;
6419 struct inferior_suspend_state inferior_suspend;
6420
6421 /* Other fields: */
7a292a7a 6422 CORE_ADDR stop_pc;
b89667eb 6423 struct regcache *registers;
1736ad11 6424
35515841 6425 /* Format of SIGINFO_DATA or NULL if it is not present. */
1736ad11
JK
6426 struct gdbarch *siginfo_gdbarch;
6427
6428 /* The inferior format depends on SIGINFO_GDBARCH and it has a length of
6429 TYPE_LENGTH (gdbarch_get_siginfo_type ()). For different gdbarch the
6430 content would be invalid. */
6431 gdb_byte *siginfo_data;
b89667eb
DE
6432};
6433
16c381f0
JK
6434struct infcall_suspend_state *
6435save_infcall_suspend_state (void)
b89667eb 6436{
16c381f0 6437 struct infcall_suspend_state *inf_state;
b89667eb 6438 struct thread_info *tp = inferior_thread ();
16c381f0 6439 struct inferior *inf = current_inferior ();
1736ad11
JK
6440 struct regcache *regcache = get_current_regcache ();
6441 struct gdbarch *gdbarch = get_regcache_arch (regcache);
6442 gdb_byte *siginfo_data = NULL;
6443
6444 if (gdbarch_get_siginfo_type_p (gdbarch))
6445 {
6446 struct type *type = gdbarch_get_siginfo_type (gdbarch);
6447 size_t len = TYPE_LENGTH (type);
6448 struct cleanup *back_to;
6449
6450 siginfo_data = xmalloc (len);
6451 back_to = make_cleanup (xfree, siginfo_data);
6452
6453 if (target_read (&current_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
6454 siginfo_data, 0, len) == len)
6455 discard_cleanups (back_to);
6456 else
6457 {
6458 /* Errors ignored. */
6459 do_cleanups (back_to);
6460 siginfo_data = NULL;
6461 }
6462 }
6463
16c381f0 6464 inf_state = XZALLOC (struct infcall_suspend_state);
1736ad11
JK
6465
6466 if (siginfo_data)
6467 {
6468 inf_state->siginfo_gdbarch = gdbarch;
6469 inf_state->siginfo_data = siginfo_data;
6470 }
b89667eb 6471
16c381f0
JK
6472 inf_state->thread_suspend = tp->suspend;
6473 inf_state->inferior_suspend = inf->suspend;
6474
35515841
JK
6475 /* run_inferior_call will not use the signal due to its `proceed' call with
6476 TARGET_SIGNAL_0 anyway. */
16c381f0 6477 tp->suspend.stop_signal = TARGET_SIGNAL_0;
35515841 6478
b89667eb
DE
6479 inf_state->stop_pc = stop_pc;
6480
1736ad11 6481 inf_state->registers = regcache_dup (regcache);
b89667eb
DE
6482
6483 return inf_state;
6484}
6485
6486/* Restore inferior session state to INF_STATE. */
6487
6488void
16c381f0 6489restore_infcall_suspend_state (struct infcall_suspend_state *inf_state)
b89667eb
DE
6490{
6491 struct thread_info *tp = inferior_thread ();
16c381f0 6492 struct inferior *inf = current_inferior ();
1736ad11
JK
6493 struct regcache *regcache = get_current_regcache ();
6494 struct gdbarch *gdbarch = get_regcache_arch (regcache);
b89667eb 6495
16c381f0
JK
6496 tp->suspend = inf_state->thread_suspend;
6497 inf->suspend = inf_state->inferior_suspend;
6498
b89667eb
DE
6499 stop_pc = inf_state->stop_pc;
6500
1736ad11
JK
6501 if (inf_state->siginfo_gdbarch == gdbarch)
6502 {
6503 struct type *type = gdbarch_get_siginfo_type (gdbarch);
6504 size_t len = TYPE_LENGTH (type);
6505
6506 /* Errors ignored. */
6507 target_write (&current_target, TARGET_OBJECT_SIGNAL_INFO, NULL,
6508 inf_state->siginfo_data, 0, len);
6509 }
6510
b89667eb
DE
6511 /* The inferior can be gone if the user types "print exit(0)"
6512 (and perhaps other times). */
6513 if (target_has_execution)
6514 /* NB: The register write goes through to the target. */
1736ad11 6515 regcache_cpy (regcache, inf_state->registers);
803b5f95 6516
16c381f0 6517 discard_infcall_suspend_state (inf_state);
b89667eb
DE
6518}
6519
6520static void
16c381f0 6521do_restore_infcall_suspend_state_cleanup (void *state)
b89667eb 6522{
16c381f0 6523 restore_infcall_suspend_state (state);
b89667eb
DE
6524}
6525
6526struct cleanup *
16c381f0
JK
6527make_cleanup_restore_infcall_suspend_state
6528 (struct infcall_suspend_state *inf_state)
b89667eb 6529{
16c381f0 6530 return make_cleanup (do_restore_infcall_suspend_state_cleanup, inf_state);
b89667eb
DE
6531}
6532
6533void
16c381f0 6534discard_infcall_suspend_state (struct infcall_suspend_state *inf_state)
b89667eb
DE
6535{
6536 regcache_xfree (inf_state->registers);
803b5f95 6537 xfree (inf_state->siginfo_data);
b89667eb
DE
6538 xfree (inf_state);
6539}
6540
6541struct regcache *
16c381f0 6542get_infcall_suspend_state_regcache (struct infcall_suspend_state *inf_state)
b89667eb
DE
6543{
6544 return inf_state->registers;
6545}
6546
16c381f0
JK
6547/* infcall_control_state contains state regarding gdb's control of the
6548 inferior itself like stepping control. It also contains session state like
6549 the user's currently selected frame. */
b89667eb 6550
16c381f0 6551struct infcall_control_state
b89667eb 6552{
16c381f0
JK
6553 struct thread_control_state thread_control;
6554 struct inferior_control_state inferior_control;
d82142e2
JK
6555
6556 /* Other fields: */
6557 enum stop_stack_kind stop_stack_dummy;
6558 int stopped_by_random_signal;
7a292a7a 6559 int stop_after_trap;
7a292a7a 6560
b89667eb 6561 /* ID if the selected frame when the inferior function call was made. */
101dcfbe 6562 struct frame_id selected_frame_id;
7a292a7a
SS
6563};
6564
c906108c 6565/* Save all of the information associated with the inferior<==>gdb
b89667eb 6566 connection. */
c906108c 6567
16c381f0
JK
6568struct infcall_control_state *
6569save_infcall_control_state (void)
c906108c 6570{
16c381f0 6571 struct infcall_control_state *inf_status = xmalloc (sizeof (*inf_status));
4e1c45ea 6572 struct thread_info *tp = inferior_thread ();
d6b48e9c 6573 struct inferior *inf = current_inferior ();
7a292a7a 6574
16c381f0
JK
6575 inf_status->thread_control = tp->control;
6576 inf_status->inferior_control = inf->control;
d82142e2 6577
8358c15c 6578 tp->control.step_resume_breakpoint = NULL;
5b79abe7 6579 tp->control.exception_resume_breakpoint = NULL;
8358c15c 6580
16c381f0
JK
6581 /* Save original bpstat chain to INF_STATUS; replace it in TP with copy of
6582 chain. If caller's caller is walking the chain, they'll be happier if we
6583 hand them back the original chain when restore_infcall_control_state is
6584 called. */
6585 tp->control.stop_bpstat = bpstat_copy (tp->control.stop_bpstat);
d82142e2
JK
6586
6587 /* Other fields: */
6588 inf_status->stop_stack_dummy = stop_stack_dummy;
6589 inf_status->stopped_by_random_signal = stopped_by_random_signal;
6590 inf_status->stop_after_trap = stop_after_trap;
c5aa993b 6591
206415a3 6592 inf_status->selected_frame_id = get_frame_id (get_selected_frame (NULL));
b89667eb 6593
7a292a7a 6594 return inf_status;
c906108c
SS
6595}
6596
c906108c 6597static int
96baa820 6598restore_selected_frame (void *args)
c906108c 6599{
488f131b 6600 struct frame_id *fid = (struct frame_id *) args;
c906108c 6601 struct frame_info *frame;
c906108c 6602
101dcfbe 6603 frame = frame_find_by_id (*fid);
c906108c 6604
aa0cd9c1
AC
6605 /* If inf_status->selected_frame_id is NULL, there was no previously
6606 selected frame. */
101dcfbe 6607 if (frame == NULL)
c906108c 6608 {
8a3fe4f8 6609 warning (_("Unable to restore previously selected frame."));
c906108c
SS
6610 return 0;
6611 }
6612
0f7d239c 6613 select_frame (frame);
c906108c
SS
6614
6615 return (1);
6616}
6617
b89667eb
DE
6618/* Restore inferior session state to INF_STATUS. */
6619
c906108c 6620void
16c381f0 6621restore_infcall_control_state (struct infcall_control_state *inf_status)
c906108c 6622{
4e1c45ea 6623 struct thread_info *tp = inferior_thread ();
d6b48e9c 6624 struct inferior *inf = current_inferior ();
4e1c45ea 6625
8358c15c
JK
6626 if (tp->control.step_resume_breakpoint)
6627 tp->control.step_resume_breakpoint->disposition = disp_del_at_next_stop;
6628
5b79abe7
TT
6629 if (tp->control.exception_resume_breakpoint)
6630 tp->control.exception_resume_breakpoint->disposition
6631 = disp_del_at_next_stop;
6632
d82142e2 6633 /* Handle the bpstat_copy of the chain. */
16c381f0 6634 bpstat_clear (&tp->control.stop_bpstat);
d82142e2 6635
16c381f0
JK
6636 tp->control = inf_status->thread_control;
6637 inf->control = inf_status->inferior_control;
d82142e2
JK
6638
6639 /* Other fields: */
6640 stop_stack_dummy = inf_status->stop_stack_dummy;
6641 stopped_by_random_signal = inf_status->stopped_by_random_signal;
6642 stop_after_trap = inf_status->stop_after_trap;
c906108c 6643
b89667eb 6644 if (target_has_stack)
c906108c 6645 {
c906108c 6646 /* The point of catch_errors is that if the stack is clobbered,
101dcfbe
AC
6647 walking the stack might encounter a garbage pointer and
6648 error() trying to dereference it. */
488f131b
JB
6649 if (catch_errors
6650 (restore_selected_frame, &inf_status->selected_frame_id,
6651 "Unable to restore previously selected frame:\n",
6652 RETURN_MASK_ERROR) == 0)
c906108c
SS
6653 /* Error in restoring the selected frame. Select the innermost
6654 frame. */
0f7d239c 6655 select_frame (get_current_frame ());
c906108c 6656 }
c906108c 6657
72cec141 6658 xfree (inf_status);
7a292a7a 6659}
c906108c 6660
74b7792f 6661static void
16c381f0 6662do_restore_infcall_control_state_cleanup (void *sts)
74b7792f 6663{
16c381f0 6664 restore_infcall_control_state (sts);
74b7792f
AC
6665}
6666
6667struct cleanup *
16c381f0
JK
6668make_cleanup_restore_infcall_control_state
6669 (struct infcall_control_state *inf_status)
74b7792f 6670{
16c381f0 6671 return make_cleanup (do_restore_infcall_control_state_cleanup, inf_status);
74b7792f
AC
6672}
6673
c906108c 6674void
16c381f0 6675discard_infcall_control_state (struct infcall_control_state *inf_status)
7a292a7a 6676{
8358c15c
JK
6677 if (inf_status->thread_control.step_resume_breakpoint)
6678 inf_status->thread_control.step_resume_breakpoint->disposition
6679 = disp_del_at_next_stop;
6680
5b79abe7
TT
6681 if (inf_status->thread_control.exception_resume_breakpoint)
6682 inf_status->thread_control.exception_resume_breakpoint->disposition
6683 = disp_del_at_next_stop;
6684
1777feb0 6685 /* See save_infcall_control_state for info on stop_bpstat. */
16c381f0 6686 bpstat_clear (&inf_status->thread_control.stop_bpstat);
8358c15c 6687
72cec141 6688 xfree (inf_status);
7a292a7a 6689}
b89667eb 6690\f
47932f85 6691int
3a3e9ee3 6692inferior_has_forked (ptid_t pid, ptid_t *child_pid)
47932f85
DJ
6693{
6694 struct target_waitstatus last;
6695 ptid_t last_ptid;
6696
6697 get_last_target_status (&last_ptid, &last);
6698
6699 if (last.kind != TARGET_WAITKIND_FORKED)
6700 return 0;
6701
3a3e9ee3 6702 if (!ptid_equal (last_ptid, pid))
47932f85
DJ
6703 return 0;
6704
6705 *child_pid = last.value.related_pid;
6706 return 1;
6707}
6708
6709int
3a3e9ee3 6710inferior_has_vforked (ptid_t pid, ptid_t *child_pid)
47932f85
DJ
6711{
6712 struct target_waitstatus last;
6713 ptid_t last_ptid;
6714
6715 get_last_target_status (&last_ptid, &last);
6716
6717 if (last.kind != TARGET_WAITKIND_VFORKED)
6718 return 0;
6719
3a3e9ee3 6720 if (!ptid_equal (last_ptid, pid))
47932f85
DJ
6721 return 0;
6722
6723 *child_pid = last.value.related_pid;
6724 return 1;
6725}
6726
6727int
3a3e9ee3 6728inferior_has_execd (ptid_t pid, char **execd_pathname)
47932f85
DJ
6729{
6730 struct target_waitstatus last;
6731 ptid_t last_ptid;
6732
6733 get_last_target_status (&last_ptid, &last);
6734
6735 if (last.kind != TARGET_WAITKIND_EXECD)
6736 return 0;
6737
3a3e9ee3 6738 if (!ptid_equal (last_ptid, pid))
47932f85
DJ
6739 return 0;
6740
6741 *execd_pathname = xstrdup (last.value.execd_pathname);
6742 return 1;
6743}
6744
a96d9b2e
SDJ
6745int
6746inferior_has_called_syscall (ptid_t pid, int *syscall_number)
6747{
6748 struct target_waitstatus last;
6749 ptid_t last_ptid;
6750
6751 get_last_target_status (&last_ptid, &last);
6752
6753 if (last.kind != TARGET_WAITKIND_SYSCALL_ENTRY &&
6754 last.kind != TARGET_WAITKIND_SYSCALL_RETURN)
6755 return 0;
6756
6757 if (!ptid_equal (last_ptid, pid))
6758 return 0;
6759
6760 *syscall_number = last.value.syscall_number;
6761 return 1;
6762}
6763
ca6724c1
KB
6764/* Oft used ptids */
6765ptid_t null_ptid;
6766ptid_t minus_one_ptid;
6767
6768/* Create a ptid given the necessary PID, LWP, and TID components. */
488f131b 6769
ca6724c1
KB
6770ptid_t
6771ptid_build (int pid, long lwp, long tid)
6772{
6773 ptid_t ptid;
6774
6775 ptid.pid = pid;
6776 ptid.lwp = lwp;
6777 ptid.tid = tid;
6778 return ptid;
6779}
6780
6781/* Create a ptid from just a pid. */
6782
6783ptid_t
6784pid_to_ptid (int pid)
6785{
6786 return ptid_build (pid, 0, 0);
6787}
6788
6789/* Fetch the pid (process id) component from a ptid. */
6790
6791int
6792ptid_get_pid (ptid_t ptid)
6793{
6794 return ptid.pid;
6795}
6796
6797/* Fetch the lwp (lightweight process) component from a ptid. */
6798
6799long
6800ptid_get_lwp (ptid_t ptid)
6801{
6802 return ptid.lwp;
6803}
6804
6805/* Fetch the tid (thread id) component from a ptid. */
6806
6807long
6808ptid_get_tid (ptid_t ptid)
6809{
6810 return ptid.tid;
6811}
6812
6813/* ptid_equal() is used to test equality of two ptids. */
6814
6815int
6816ptid_equal (ptid_t ptid1, ptid_t ptid2)
6817{
6818 return (ptid1.pid == ptid2.pid && ptid1.lwp == ptid2.lwp
488f131b 6819 && ptid1.tid == ptid2.tid);
ca6724c1
KB
6820}
6821
252fbfc8
PA
6822/* Returns true if PTID represents a process. */
6823
6824int
6825ptid_is_pid (ptid_t ptid)
6826{
6827 if (ptid_equal (minus_one_ptid, ptid))
6828 return 0;
6829 if (ptid_equal (null_ptid, ptid))
6830 return 0;
6831
6832 return (ptid_get_lwp (ptid) == 0 && ptid_get_tid (ptid) == 0);
6833}
6834
0723dbf5
PA
6835int
6836ptid_match (ptid_t ptid, ptid_t filter)
6837{
0723dbf5
PA
6838 if (ptid_equal (filter, minus_one_ptid))
6839 return 1;
6840 if (ptid_is_pid (filter)
6841 && ptid_get_pid (ptid) == ptid_get_pid (filter))
6842 return 1;
6843 else if (ptid_equal (ptid, filter))
6844 return 1;
6845
6846 return 0;
6847}
6848
ca6724c1
KB
6849/* restore_inferior_ptid() will be used by the cleanup machinery
6850 to restore the inferior_ptid value saved in a call to
6851 save_inferior_ptid(). */
ce696e05
KB
6852
6853static void
6854restore_inferior_ptid (void *arg)
6855{
6856 ptid_t *saved_ptid_ptr = arg;
abbb1732 6857
ce696e05
KB
6858 inferior_ptid = *saved_ptid_ptr;
6859 xfree (arg);
6860}
6861
6862/* Save the value of inferior_ptid so that it may be restored by a
6863 later call to do_cleanups(). Returns the struct cleanup pointer
6864 needed for later doing the cleanup. */
6865
6866struct cleanup *
6867save_inferior_ptid (void)
6868{
6869 ptid_t *saved_ptid_ptr;
6870
6871 saved_ptid_ptr = xmalloc (sizeof (ptid_t));
6872 *saved_ptid_ptr = inferior_ptid;
6873 return make_cleanup (restore_inferior_ptid, saved_ptid_ptr);
6874}
c5aa993b 6875\f
488f131b 6876
b2175913
MS
6877/* User interface for reverse debugging:
6878 Set exec-direction / show exec-direction commands
6879 (returns error unless target implements to_set_exec_direction method). */
6880
6881enum exec_direction_kind execution_direction = EXEC_FORWARD;
6882static const char exec_forward[] = "forward";
6883static const char exec_reverse[] = "reverse";
6884static const char *exec_direction = exec_forward;
6885static const char *exec_direction_names[] = {
6886 exec_forward,
6887 exec_reverse,
6888 NULL
6889};
6890
6891static void
6892set_exec_direction_func (char *args, int from_tty,
6893 struct cmd_list_element *cmd)
6894{
6895 if (target_can_execute_reverse)
6896 {
6897 if (!strcmp (exec_direction, exec_forward))
6898 execution_direction = EXEC_FORWARD;
6899 else if (!strcmp (exec_direction, exec_reverse))
6900 execution_direction = EXEC_REVERSE;
6901 }
8bbed405
MS
6902 else
6903 {
6904 exec_direction = exec_forward;
6905 error (_("Target does not support this operation."));
6906 }
b2175913
MS
6907}
6908
6909static void
6910show_exec_direction_func (struct ui_file *out, int from_tty,
6911 struct cmd_list_element *cmd, const char *value)
6912{
6913 switch (execution_direction) {
6914 case EXEC_FORWARD:
6915 fprintf_filtered (out, _("Forward.\n"));
6916 break;
6917 case EXEC_REVERSE:
6918 fprintf_filtered (out, _("Reverse.\n"));
6919 break;
6920 case EXEC_ERROR:
6921 default:
3e43a32a
MS
6922 fprintf_filtered (out, _("Forward (target `%s' does not "
6923 "support exec-direction).\n"),
b2175913
MS
6924 target_shortname);
6925 break;
6926 }
6927}
6928
6929/* User interface for non-stop mode. */
6930
ad52ddc6 6931int non_stop = 0;
ad52ddc6
PA
6932
6933static void
6934set_non_stop (char *args, int from_tty,
6935 struct cmd_list_element *c)
6936{
6937 if (target_has_execution)
6938 {
6939 non_stop_1 = non_stop;
6940 error (_("Cannot change this setting while the inferior is running."));
6941 }
6942
6943 non_stop = non_stop_1;
6944}
6945
6946static void
6947show_non_stop (struct ui_file *file, int from_tty,
6948 struct cmd_list_element *c, const char *value)
6949{
6950 fprintf_filtered (file,
6951 _("Controlling the inferior in non-stop mode is %s.\n"),
6952 value);
6953}
6954
d4db2f36
PA
6955static void
6956show_schedule_multiple (struct ui_file *file, int from_tty,
6957 struct cmd_list_element *c, const char *value)
6958{
3e43a32a
MS
6959 fprintf_filtered (file, _("Resuming the execution of threads "
6960 "of all processes is %s.\n"), value);
d4db2f36 6961}
ad52ddc6 6962
c906108c 6963void
96baa820 6964_initialize_infrun (void)
c906108c 6965{
52f0bd74
AC
6966 int i;
6967 int numsigs;
c906108c 6968
1bedd215
AC
6969 add_info ("signals", signals_info, _("\
6970What debugger does when program gets various signals.\n\
6971Specify a signal as argument to print info on that signal only."));
c906108c
SS
6972 add_info_alias ("handle", "signals", 0);
6973
1bedd215
AC
6974 add_com ("handle", class_run, handle_command, _("\
6975Specify how to handle a signal.\n\
c906108c
SS
6976Args are signals and actions to apply to those signals.\n\
6977Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
6978from 1-15 are allowed for compatibility with old versions of GDB.\n\
6979Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
6980The special arg \"all\" is recognized to mean all signals except those\n\
1bedd215
AC
6981used by the debugger, typically SIGTRAP and SIGINT.\n\
6982Recognized actions include \"stop\", \"nostop\", \"print\", \"noprint\",\n\
c906108c
SS
6983\"pass\", \"nopass\", \"ignore\", or \"noignore\".\n\
6984Stop means reenter debugger if this signal happens (implies print).\n\
6985Print means print a message if this signal happens.\n\
6986Pass means let program see this signal; otherwise program doesn't know.\n\
6987Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
1bedd215 6988Pass and Stop may be combined."));
c906108c
SS
6989 if (xdb_commands)
6990 {
1bedd215
AC
6991 add_com ("lz", class_info, signals_info, _("\
6992What debugger does when program gets various signals.\n\
6993Specify a signal as argument to print info on that signal only."));
6994 add_com ("z", class_run, xdb_handle_command, _("\
6995Specify how to handle a signal.\n\
c906108c
SS
6996Args are signals and actions to apply to those signals.\n\
6997Symbolic signals (e.g. SIGSEGV) are recommended but numeric signals\n\
6998from 1-15 are allowed for compatibility with old versions of GDB.\n\
6999Numeric ranges may be specified with the form LOW-HIGH (e.g. 1-5).\n\
7000The special arg \"all\" is recognized to mean all signals except those\n\
1bedd215 7001used by the debugger, typically SIGTRAP and SIGINT.\n\
cce7e648 7002Recognized actions include \"s\" (toggles between stop and nostop),\n\
c906108c
SS
7003\"r\" (toggles between print and noprint), \"i\" (toggles between pass and \
7004nopass), \"Q\" (noprint)\n\
7005Stop means reenter debugger if this signal happens (implies print).\n\
7006Print means print a message if this signal happens.\n\
7007Pass means let program see this signal; otherwise program doesn't know.\n\
7008Ignore is a synonym for nopass and noignore is a synonym for pass.\n\
1bedd215 7009Pass and Stop may be combined."));
c906108c
SS
7010 }
7011
7012 if (!dbx_commands)
1a966eab
AC
7013 stop_command = add_cmd ("stop", class_obscure,
7014 not_just_help_class_command, _("\
7015There is no `stop' command, but you can set a hook on `stop'.\n\
c906108c 7016This allows you to set a list of commands to be run each time execution\n\
1a966eab 7017of the program stops."), &cmdlist);
c906108c 7018
85c07804
AC
7019 add_setshow_zinteger_cmd ("infrun", class_maintenance, &debug_infrun, _("\
7020Set inferior debugging."), _("\
7021Show inferior debugging."), _("\
7022When non-zero, inferior specific debugging is enabled."),
7023 NULL,
920d2a44 7024 show_debug_infrun,
85c07804 7025 &setdebuglist, &showdebuglist);
527159b7 7026
3e43a32a
MS
7027 add_setshow_boolean_cmd ("displaced", class_maintenance,
7028 &debug_displaced, _("\
237fc4c9
PA
7029Set displaced stepping debugging."), _("\
7030Show displaced stepping debugging."), _("\
7031When non-zero, displaced stepping specific debugging is enabled."),
7032 NULL,
7033 show_debug_displaced,
7034 &setdebuglist, &showdebuglist);
7035
ad52ddc6
PA
7036 add_setshow_boolean_cmd ("non-stop", no_class,
7037 &non_stop_1, _("\
7038Set whether gdb controls the inferior in non-stop mode."), _("\
7039Show whether gdb controls the inferior in non-stop mode."), _("\
7040When debugging a multi-threaded program and this setting is\n\
7041off (the default, also called all-stop mode), when one thread stops\n\
7042(for a breakpoint, watchpoint, exception, or similar events), GDB stops\n\
7043all other threads in the program while you interact with the thread of\n\
7044interest. When you continue or step a thread, you can allow the other\n\
7045threads to run, or have them remain stopped, but while you inspect any\n\
7046thread's state, all threads stop.\n\
7047\n\
7048In non-stop mode, when one thread stops, other threads can continue\n\
7049to run freely. You'll be able to step each thread independently,\n\
7050leave it stopped or free to run as needed."),
7051 set_non_stop,
7052 show_non_stop,
7053 &setlist,
7054 &showlist);
7055
c906108c 7056 numsigs = (int) TARGET_SIGNAL_LAST;
488f131b 7057 signal_stop = (unsigned char *) xmalloc (sizeof (signal_stop[0]) * numsigs);
c906108c
SS
7058 signal_print = (unsigned char *)
7059 xmalloc (sizeof (signal_print[0]) * numsigs);
7060 signal_program = (unsigned char *)
7061 xmalloc (sizeof (signal_program[0]) * numsigs);
2455069d
UW
7062 signal_pass = (unsigned char *)
7063 xmalloc (sizeof (signal_program[0]) * numsigs);
c906108c
SS
7064 for (i = 0; i < numsigs; i++)
7065 {
7066 signal_stop[i] = 1;
7067 signal_print[i] = 1;
7068 signal_program[i] = 1;
7069 }
7070
7071 /* Signals caused by debugger's own actions
7072 should not be given to the program afterwards. */
7073 signal_program[TARGET_SIGNAL_TRAP] = 0;
7074 signal_program[TARGET_SIGNAL_INT] = 0;
7075
7076 /* Signals that are not errors should not normally enter the debugger. */
7077 signal_stop[TARGET_SIGNAL_ALRM] = 0;
7078 signal_print[TARGET_SIGNAL_ALRM] = 0;
7079 signal_stop[TARGET_SIGNAL_VTALRM] = 0;
7080 signal_print[TARGET_SIGNAL_VTALRM] = 0;
7081 signal_stop[TARGET_SIGNAL_PROF] = 0;
7082 signal_print[TARGET_SIGNAL_PROF] = 0;
7083 signal_stop[TARGET_SIGNAL_CHLD] = 0;
7084 signal_print[TARGET_SIGNAL_CHLD] = 0;
7085 signal_stop[TARGET_SIGNAL_IO] = 0;
7086 signal_print[TARGET_SIGNAL_IO] = 0;
7087 signal_stop[TARGET_SIGNAL_POLL] = 0;
7088 signal_print[TARGET_SIGNAL_POLL] = 0;
7089 signal_stop[TARGET_SIGNAL_URG] = 0;
7090 signal_print[TARGET_SIGNAL_URG] = 0;
7091 signal_stop[TARGET_SIGNAL_WINCH] = 0;
7092 signal_print[TARGET_SIGNAL_WINCH] = 0;
16dfc9ce
JB
7093 signal_stop[TARGET_SIGNAL_PRIO] = 0;
7094 signal_print[TARGET_SIGNAL_PRIO] = 0;
c906108c 7095
cd0fc7c3
SS
7096 /* These signals are used internally by user-level thread
7097 implementations. (See signal(5) on Solaris.) Like the above
7098 signals, a healthy program receives and handles them as part of
7099 its normal operation. */
7100 signal_stop[TARGET_SIGNAL_LWP] = 0;
7101 signal_print[TARGET_SIGNAL_LWP] = 0;
7102 signal_stop[TARGET_SIGNAL_WAITING] = 0;
7103 signal_print[TARGET_SIGNAL_WAITING] = 0;
7104 signal_stop[TARGET_SIGNAL_CANCEL] = 0;
7105 signal_print[TARGET_SIGNAL_CANCEL] = 0;
7106
2455069d
UW
7107 /* Update cached state. */
7108 signal_cache_update (-1);
7109
85c07804
AC
7110 add_setshow_zinteger_cmd ("stop-on-solib-events", class_support,
7111 &stop_on_solib_events, _("\
7112Set stopping for shared library events."), _("\
7113Show stopping for shared library events."), _("\
c906108c
SS
7114If nonzero, gdb will give control to the user when the dynamic linker\n\
7115notifies gdb of shared library events. The most common event of interest\n\
85c07804
AC
7116to the user would be loading/unloading of a new library."),
7117 NULL,
920d2a44 7118 show_stop_on_solib_events,
85c07804 7119 &setlist, &showlist);
c906108c 7120
7ab04401
AC
7121 add_setshow_enum_cmd ("follow-fork-mode", class_run,
7122 follow_fork_mode_kind_names,
7123 &follow_fork_mode_string, _("\
7124Set debugger response to a program call of fork or vfork."), _("\
7125Show debugger response to a program call of fork or vfork."), _("\
c906108c
SS
7126A fork or vfork creates a new process. follow-fork-mode can be:\n\
7127 parent - the original process is debugged after a fork\n\
7128 child - the new process is debugged after a fork\n\
ea1dd7bc 7129The unfollowed process will continue to run.\n\
7ab04401
AC
7130By default, the debugger will follow the parent process."),
7131 NULL,
920d2a44 7132 show_follow_fork_mode_string,
7ab04401
AC
7133 &setlist, &showlist);
7134
6c95b8df
PA
7135 add_setshow_enum_cmd ("follow-exec-mode", class_run,
7136 follow_exec_mode_names,
7137 &follow_exec_mode_string, _("\
7138Set debugger response to a program call of exec."), _("\
7139Show debugger response to a program call of exec."), _("\
7140An exec call replaces the program image of a process.\n\
7141\n\
7142follow-exec-mode can be:\n\
7143\n\
cce7e648 7144 new - the debugger creates a new inferior and rebinds the process\n\
6c95b8df
PA
7145to this new inferior. The program the process was running before\n\
7146the exec call can be restarted afterwards by restarting the original\n\
7147inferior.\n\
7148\n\
7149 same - the debugger keeps the process bound to the same inferior.\n\
7150The new executable image replaces the previous executable loaded in\n\
7151the inferior. Restarting the inferior after the exec call restarts\n\
7152the executable the process was running after the exec call.\n\
7153\n\
7154By default, the debugger will use the same inferior."),
7155 NULL,
7156 show_follow_exec_mode_string,
7157 &setlist, &showlist);
7158
7ab04401
AC
7159 add_setshow_enum_cmd ("scheduler-locking", class_run,
7160 scheduler_enums, &scheduler_mode, _("\
7161Set mode for locking scheduler during execution."), _("\
7162Show mode for locking scheduler during execution."), _("\
c906108c
SS
7163off == no locking (threads may preempt at any time)\n\
7164on == full locking (no thread except the current thread may run)\n\
7165step == scheduler locked during every single-step operation.\n\
7166 In this mode, no other thread may run during a step command.\n\
7ab04401
AC
7167 Other threads may run while stepping over a function call ('next')."),
7168 set_schedlock_func, /* traps on target vector */
920d2a44 7169 show_scheduler_mode,
7ab04401 7170 &setlist, &showlist);
5fbbeb29 7171
d4db2f36
PA
7172 add_setshow_boolean_cmd ("schedule-multiple", class_run, &sched_multi, _("\
7173Set mode for resuming threads of all processes."), _("\
7174Show mode for resuming threads of all processes."), _("\
7175When on, execution commands (such as 'continue' or 'next') resume all\n\
7176threads of all processes. When off (which is the default), execution\n\
7177commands only resume the threads of the current process. The set of\n\
7178threads that are resumed is further refined by the scheduler-locking\n\
7179mode (see help set scheduler-locking)."),
7180 NULL,
7181 show_schedule_multiple,
7182 &setlist, &showlist);
7183
5bf193a2
AC
7184 add_setshow_boolean_cmd ("step-mode", class_run, &step_stop_if_no_debug, _("\
7185Set mode of the step operation."), _("\
7186Show mode of the step operation."), _("\
7187When set, doing a step over a function without debug line information\n\
7188will stop at the first instruction of that function. Otherwise, the\n\
7189function is skipped and the step command stops at a different source line."),
7190 NULL,
920d2a44 7191 show_step_stop_if_no_debug,
5bf193a2 7192 &setlist, &showlist);
ca6724c1 7193
fff08868
HZ
7194 add_setshow_enum_cmd ("displaced-stepping", class_run,
7195 can_use_displaced_stepping_enum,
7196 &can_use_displaced_stepping, _("\
237fc4c9
PA
7197Set debugger's willingness to use displaced stepping."), _("\
7198Show debugger's willingness to use displaced stepping."), _("\
fff08868
HZ
7199If on, gdb will use displaced stepping to step over breakpoints if it is\n\
7200supported by the target architecture. If off, gdb will not use displaced\n\
7201stepping to step over breakpoints, even if such is supported by the target\n\
7202architecture. If auto (which is the default), gdb will use displaced stepping\n\
7203if the target architecture supports it and non-stop mode is active, but will not\n\
7204use it in all-stop mode (see help set non-stop)."),
7205 NULL,
7206 show_can_use_displaced_stepping,
7207 &setlist, &showlist);
237fc4c9 7208
b2175913
MS
7209 add_setshow_enum_cmd ("exec-direction", class_run, exec_direction_names,
7210 &exec_direction, _("Set direction of execution.\n\
7211Options are 'forward' or 'reverse'."),
7212 _("Show direction of execution (forward/reverse)."),
7213 _("Tells gdb whether to execute forward or backward."),
7214 set_exec_direction_func, show_exec_direction_func,
7215 &setlist, &showlist);
7216
6c95b8df
PA
7217 /* Set/show detach-on-fork: user-settable mode. */
7218
7219 add_setshow_boolean_cmd ("detach-on-fork", class_run, &detach_fork, _("\
7220Set whether gdb will detach the child of a fork."), _("\
7221Show whether gdb will detach the child of a fork."), _("\
7222Tells gdb whether to detach the child of a fork."),
7223 NULL, NULL, &setlist, &showlist);
7224
ca6724c1
KB
7225 /* ptid initializations */
7226 null_ptid = ptid_build (0, 0, 0);
7227 minus_one_ptid = ptid_build (-1, 0, 0);
7228 inferior_ptid = null_ptid;
7229 target_last_wait_ptid = minus_one_ptid;
5231c1fd
PA
7230
7231 observer_attach_thread_ptid_changed (infrun_thread_ptid_changed);
252fbfc8 7232 observer_attach_thread_stop_requested (infrun_thread_stop_requested);
a07daef3 7233 observer_attach_thread_exit (infrun_thread_thread_exit);
fc1cf338 7234 observer_attach_inferior_exit (infrun_inferior_exit);
4aa995e1
PA
7235
7236 /* Explicitly create without lookup, since that tries to create a
7237 value with a void typed value, and when we get here, gdbarch
7238 isn't initialized yet. At this point, we're quite sure there
7239 isn't another convenience variable of the same name. */
7240 create_internalvar_type_lazy ("_siginfo", siginfo_make_value);
d914c394
SS
7241
7242 add_setshow_boolean_cmd ("observer", no_class,
7243 &observer_mode_1, _("\
7244Set whether gdb controls the inferior in observer mode."), _("\
7245Show whether gdb controls the inferior in observer mode."), _("\
7246In observer mode, GDB can get data from the inferior, but not\n\
7247affect its execution. Registers and memory may not be changed,\n\
7248breakpoints may not be set, and the program cannot be interrupted\n\
7249or signalled."),
7250 set_observer_mode,
7251 show_observer_mode,
7252 &setlist,
7253 &showlist);
c906108c 7254}
This page took 2.112609 seconds and 4 git commands to generate.