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