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