1 /* Memory-access and commands for "inferior" process, for GDB.
3 Copyright (C) 1986-2020 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "arch-utils.h"
27 #include "gdbsupport/environ.h"
35 #include "completer.h"
38 #include "reggroups.h"
42 #include "observable.h"
43 #include "target-descriptions.h"
44 #include "user-regs.h"
45 #include "gdbthread.h"
47 #include "inline-frame.h"
48 #include "tracepoint.h"
50 #include "continuations.h"
52 #include "thread-fsm.h"
56 #include "gdbsupport/gdb_optional.h"
58 #include "cli/cli-style.h"
60 /* Local functions: */
62 static void until_next_command (int);
64 static void step_1 (int, int, const char *);
66 #define ERROR_NO_INFERIOR \
67 if (!target_has_execution) error (_("The program is not being run."));
69 /* Scratch area where string containing arguments to give to the
70 program will be stored by 'set args'. As soon as anything is
71 stored, notice_args_set will move it into per-inferior storage.
72 Arguments are separated by spaces. Empty string (pointer to '\0')
75 static char *inferior_args_scratch
;
77 /* Scratch area where the new cwd will be stored by 'set cwd'. */
79 static char *inferior_cwd_scratch
;
81 /* Scratch area where 'set inferior-tty' will store user-provided value.
82 We'll immediate copy it into per-inferior storage. */
84 static char *inferior_io_terminal_scratch
;
86 /* Pid of our debugged inferior, or 0 if no inferior now.
87 Since various parts of infrun.c test this to see whether there is a program
88 being debugged it should be nonzero (currently 3 is used) for remote
93 /* Nonzero if stopped due to completion of a stack dummy routine. */
95 enum stop_stack_kind stop_stack_dummy
;
97 /* Nonzero if stopped due to a random (unexpected) signal in inferior
100 int stopped_by_random_signal
;
103 /* Accessor routines. */
105 /* Set the io terminal for the current inferior. Ownership of
106 TERMINAL_NAME is not transferred. */
109 set_inferior_io_terminal (const char *terminal_name
)
111 xfree (current_inferior ()->terminal
);
113 if (terminal_name
!= NULL
&& *terminal_name
!= '\0')
114 current_inferior ()->terminal
= xstrdup (terminal_name
);
116 current_inferior ()->terminal
= NULL
;
120 get_inferior_io_terminal (void)
122 return current_inferior ()->terminal
;
126 set_inferior_tty_command (const char *args
, int from_tty
,
127 struct cmd_list_element
*c
)
129 /* CLI has assigned the user-provided value to inferior_io_terminal_scratch.
130 Now route it to current inferior. */
131 set_inferior_io_terminal (inferior_io_terminal_scratch
);
135 show_inferior_tty_command (struct ui_file
*file
, int from_tty
,
136 struct cmd_list_element
*c
, const char *value
)
138 /* Note that we ignore the passed-in value in favor of computing it
140 const char *inferior_io_terminal
= get_inferior_io_terminal ();
142 if (inferior_io_terminal
== NULL
)
143 inferior_io_terminal
= "";
144 fprintf_filtered (gdb_stdout
,
145 _("Terminal for future runs of program being debugged "
146 "is \"%s\".\n"), inferior_io_terminal
);
150 get_inferior_args (void)
152 if (current_inferior ()->argc
!= 0)
156 n
= construct_inferior_arguments (current_inferior ()->argc
,
157 current_inferior ()->argv
);
158 set_inferior_args (n
);
162 if (current_inferior ()->args
== NULL
)
163 current_inferior ()->args
= xstrdup ("");
165 return current_inferior ()->args
;
168 /* Set the arguments for the current inferior. Ownership of
169 NEWARGS is not transferred. */
172 set_inferior_args (const char *newargs
)
174 xfree (current_inferior ()->args
);
175 current_inferior ()->args
= newargs
? xstrdup (newargs
) : NULL
;
176 current_inferior ()->argc
= 0;
177 current_inferior ()->argv
= 0;
181 set_inferior_args_vector (int argc
, char **argv
)
183 current_inferior ()->argc
= argc
;
184 current_inferior ()->argv
= argv
;
187 /* Notice when `set args' is run. */
190 set_args_command (const char *args
, int from_tty
, struct cmd_list_element
*c
)
192 /* CLI has assigned the user-provided value to inferior_args_scratch.
193 Now route it to current inferior. */
194 set_inferior_args (inferior_args_scratch
);
197 /* Notice when `show args' is run. */
200 show_args_command (struct ui_file
*file
, int from_tty
,
201 struct cmd_list_element
*c
, const char *value
)
203 /* Note that we ignore the passed-in value in favor of computing it
205 deprecated_show_value_hack (file
, from_tty
, c
, get_inferior_args ());
208 /* See gdbsupport/common-inferior.h. */
211 set_inferior_cwd (const char *cwd
)
213 struct inferior
*inf
= current_inferior ();
215 gdb_assert (inf
!= NULL
);
220 inf
->cwd
.reset (xstrdup (cwd
));
223 /* See gdbsupport/common-inferior.h. */
228 return current_inferior ()->cwd
.get ();
231 /* Handle the 'set cwd' command. */
234 set_cwd_command (const char *args
, int from_tty
, struct cmd_list_element
*c
)
236 if (*inferior_cwd_scratch
== '\0')
237 set_inferior_cwd (NULL
);
239 set_inferior_cwd (inferior_cwd_scratch
);
242 /* Handle the 'show cwd' command. */
245 show_cwd_command (struct ui_file
*file
, int from_tty
,
246 struct cmd_list_element
*c
, const char *value
)
248 const char *cwd
= get_inferior_cwd ();
251 fprintf_filtered (gdb_stdout
,
253 You have not set the inferior's current working directory.\n\
254 The inferior will inherit GDB's cwd if native debugging, or the remote\n\
255 server's cwd if remote debugging.\n"));
257 fprintf_filtered (gdb_stdout
,
258 _("Current working directory that will be used "
259 "when starting the inferior is \"%s\".\n"), cwd
);
263 /* Compute command-line string given argument vector. This does the
264 same shell processing as fork_inferior. */
267 construct_inferior_arguments (int argc
, char **argv
)
271 if (startup_with_shell
)
274 /* This holds all the characters considered special to the
276 static const char special
[] = "\"!&*|[]{}<>?`~^=;, \t\n";
277 static const char quote
= '"';
279 /* This holds all the characters considered special to the
280 typical Unix shells. We include `^' because the SunOS
281 /bin/sh treats it as a synonym for `|'. */
282 static const char special
[] = "\"!#$&*()\\|[]{}<>?'`~^; \t\n";
283 static const char quote
= '\'';
289 /* We over-compute the size. It shouldn't matter. */
290 for (i
= 0; i
< argc
; ++i
)
291 length
+= 3 * strlen (argv
[i
]) + 1 + 2 * (argv
[i
][0] == '\0');
293 result
= (char *) xmalloc (length
);
296 for (i
= 0; i
< argc
; ++i
)
301 /* Need to handle empty arguments specially. */
302 if (argv
[i
][0] == '\0')
312 if (strpbrk (argv
[i
], special
))
318 for (cp
= argv
[i
]; *cp
; ++cp
)
322 /* A newline cannot be quoted with a backslash (it
323 just disappears), only by putting it inside
334 if (strchr (special
, *cp
) != NULL
)
350 /* In this case we can't handle arguments that contain spaces,
351 tabs, or newlines -- see breakup_args(). */
355 for (i
= 0; i
< argc
; ++i
)
357 char *cp
= strchr (argv
[i
], ' ');
359 cp
= strchr (argv
[i
], '\t');
361 cp
= strchr (argv
[i
], '\n');
363 error (_("can't handle command-line "
364 "argument containing whitespace"));
365 length
+= strlen (argv
[i
]) + 1;
368 result
= (char *) xmalloc (length
);
370 for (i
= 0; i
< argc
; ++i
)
373 strcat (result
, " ");
374 strcat (result
, argv
[i
]);
382 /* This function strips the '&' character (indicating background
383 execution) that is added as *the last* of the arguments ARGS of a
384 command. A copy of the incoming ARGS without the '&' is returned,
385 unless the resulting string after stripping is empty, in which case
386 NULL is returned. *BG_CHAR_P is an output boolean that indicates
387 whether the '&' character was found. */
389 static gdb::unique_xmalloc_ptr
<char>
390 strip_bg_char (const char *args
, int *bg_char_p
)
394 if (args
== NULL
|| *args
== '\0')
400 p
= args
+ strlen (args
);
404 while (p
> args
&& isspace (p
[-1]))
409 return gdb::unique_xmalloc_ptr
<char>
410 (savestring (args
, p
- args
));
412 return gdb::unique_xmalloc_ptr
<char> (nullptr);
416 return make_unique_xstrdup (args
);
419 /* Common actions to take after creating any sort of inferior, by any
420 means (running, attaching, connecting, et cetera). The target
421 should be stopped. */
424 post_create_inferior (struct target_ops
*target
, int from_tty
)
427 /* Be sure we own the terminal in case write operations are performed. */
428 target_terminal::ours_for_output ();
430 /* If the target hasn't taken care of this already, do it now.
431 Targets which need to access registers during to_open,
432 to_create_inferior, or to_attach should do it earlier; but many
434 target_find_description ();
436 /* Now that we know the register layout, retrieve current PC. But
437 if the PC is unavailable (e.g., we're opening a core file with
438 missing registers info), ignore it. */
439 thread_info
*thr
= inferior_thread ();
441 thr
->suspend
.stop_pc
= 0;
444 regcache
*rc
= get_thread_regcache (thr
);
445 thr
->suspend
.stop_pc
= regcache_read_pc (rc
);
447 catch (const gdb_exception_error
&ex
)
449 if (ex
.error
!= NOT_AVAILABLE_ERROR
)
455 const unsigned solib_add_generation
456 = current_program_space
->solib_add_generation
;
458 /* Create the hooks to handle shared library load and unload
460 solib_create_inferior_hook (from_tty
);
462 if (current_program_space
->solib_add_generation
== solib_add_generation
)
464 /* The platform-specific hook should load initial shared libraries,
465 but didn't. FROM_TTY will be incorrectly 0 but such solib
466 targets should be fixed anyway. Call it only after the solib
467 target has been initialized by solib_create_inferior_hook. */
470 warning (_("platform-specific solib_create_inferior_hook did "
471 "not load initial shared libraries."));
473 /* If the solist is global across processes, there's no need to
475 if (!gdbarch_has_global_solist (target_gdbarch ()))
476 solib_add (NULL
, 0, auto_solib_add
);
480 /* If the user sets watchpoints before execution having started,
481 then she gets software watchpoints, because GDB can't know which
482 target will end up being pushed, or if it supports hardware
483 watchpoints or not. breakpoint_re_set takes care of promoting
484 watchpoints to hardware watchpoints if possible, however, if this
485 new inferior doesn't load shared libraries or we don't pull in
486 symbols from any other source on this target/arch,
487 breakpoint_re_set is never called. Call it now so that software
488 watchpoints get a chance to be promoted to hardware watchpoints
489 if the now pushed target supports hardware watchpoints. */
490 breakpoint_re_set ();
492 gdb::observers::inferior_created
.notify (target
, from_tty
);
495 /* Kill the inferior if already running. This function is designed
496 to be called when we are about to start the execution of the program
497 from the beginning. Ask the user to confirm that he wants to restart
498 the program being debugged when FROM_TTY is non-null. */
501 kill_if_already_running (int from_tty
)
503 if (inferior_ptid
!= null_ptid
&& target_has_execution
)
505 /* Bail out before killing the program if we will not be able to
507 target_require_runnable ();
510 && !query (_("The program being debugged has been started already.\n\
511 Start it from the beginning? ")))
512 error (_("Program not restarted."));
517 /* See inferior.h. */
520 prepare_execution_command (struct target_ops
*target
, int background
)
522 /* If we get a request for running in the bg but the target
523 doesn't support it, error out. */
524 if (background
&& !target
->can_async_p ())
525 error (_("Asynchronous execution not supported on this target."));
529 /* If we get a request for running in the fg, then we need to
530 simulate synchronous (fg) execution. Note no cleanup is
531 necessary for this. stdin is re-enabled whenever an error
532 reaches the top level. */
533 all_uis_on_sync_execution_starting ();
537 /* Determine how the new inferior will behave. */
541 /* Run program without any explicit stop during startup. */
544 /* Stop at the beginning of the program's main function. */
547 /* Stop at the first instruction of the program. */
548 RUN_STOP_AT_FIRST_INSN
551 /* Implement the "run" command. Force a stop during program start if
552 requested by RUN_HOW. */
555 run_command_1 (const char *args
, int from_tty
, enum run_how run_how
)
557 const char *exec_file
;
558 struct ui_out
*uiout
= current_uiout
;
559 struct target_ops
*run_target
;
564 kill_if_already_running (from_tty
);
566 init_wait_for_inferior ();
567 clear_breakpoint_hit_counts ();
569 /* Clean up any leftovers from other runs. Some other things from
570 this function should probably be moved into target_pre_inferior. */
571 target_pre_inferior (from_tty
);
573 /* The comment here used to read, "The exec file is re-read every
574 time we do a generic_mourn_inferior, so we just have to worry
575 about the symbol file." The `generic_mourn_inferior' function
576 gets called whenever the program exits. However, suppose the
577 program exits, and *then* the executable file changes? We need
578 to check again here. Since reopen_exec_file doesn't do anything
579 if the timestamp hasn't changed, I don't see the harm. */
583 gdb::unique_xmalloc_ptr
<char> stripped
= strip_bg_char (args
, &async_exec
);
584 args
= stripped
.get ();
586 /* Do validation and preparation before possibly changing anything
589 run_target
= find_run_target ();
591 prepare_execution_command (run_target
, async_exec
);
593 if (non_stop
&& !run_target
->supports_non_stop ())
594 error (_("The target does not support running in non-stop mode."));
596 /* Done. Can now set breakpoints, change inferior args, etc. */
598 /* Insert temporary breakpoint in main function if requested. */
599 if (run_how
== RUN_STOP_AT_MAIN
)
601 std::string arg
= string_printf ("-qualified %s", main_name ());
602 tbreak_command (arg
.c_str (), 0);
605 exec_file
= get_exec_file (0);
607 /* We keep symbols from add-symbol-file, on the grounds that the
608 user might want to add some symbols before running the program
609 (right?). But sometimes (dynamic loading where the user manually
610 introduces the new symbols with add-symbol-file), the code which
611 the symbols describe does not persist between runs. Currently
612 the user has to manually nuke all symbols between runs if they
613 want them to go away (PR 2207). This is probably reasonable. */
615 /* If there were other args, beside '&', process them. */
617 set_inferior_args (args
);
621 uiout
->field_string (NULL
, "Starting program");
624 uiout
->field_string ("execfile", exec_file
);
626 /* We call get_inferior_args() because we might need to compute
628 uiout
->field_string ("infargs", get_inferior_args ());
633 /* We call get_inferior_args() because we might need to compute
635 run_target
->create_inferior (exec_file
,
636 std::string (get_inferior_args ()),
637 current_inferior ()->environment
.envp (),
639 /* to_create_inferior should push the target, so after this point we
640 shouldn't refer to run_target again. */
643 /* We're starting off a new process. When we get out of here, in
644 non-stop mode, finish the state of all threads of that process,
645 but leave other threads alone, as they may be stopped in internal
646 events --- the frontend shouldn't see them as stopped. In
647 all-stop, always finish the state of all threads, as we may be
648 resuming more than just the new process. */
649 process_stratum_target
*finish_target
;
653 finish_target
= current_inferior ()->process_target ();
654 finish_ptid
= ptid_t (current_inferior ()->pid
);
658 finish_target
= nullptr;
659 finish_ptid
= minus_one_ptid
;
661 scoped_finish_thread_state
finish_state (finish_target
, finish_ptid
);
663 /* Pass zero for FROM_TTY, because at this point the "run" command
664 has done its thing; now we are setting up the running program. */
665 post_create_inferior (current_top_target (), 0);
667 /* Queue a pending event so that the program stops immediately. */
668 if (run_how
== RUN_STOP_AT_FIRST_INSN
)
670 thread_info
*thr
= inferior_thread ();
671 thr
->suspend
.waitstatus_pending_p
= 1;
672 thr
->suspend
.waitstatus
.kind
= TARGET_WAITKIND_STOPPED
;
673 thr
->suspend
.waitstatus
.value
.sig
= GDB_SIGNAL_0
;
676 /* Start the target running. Do not use -1 continuation as it would skip
677 breakpoint right at the entry point. */
678 proceed (regcache_read_pc (get_current_regcache ()), GDB_SIGNAL_0
);
680 /* Since there was no error, there's no need to finish the thread
682 finish_state
.release ();
686 run_command (const char *args
, int from_tty
)
688 run_command_1 (args
, from_tty
, RUN_NORMAL
);
691 /* Start the execution of the program up until the beginning of the main
695 start_command (const char *args
, int from_tty
)
697 /* Some languages such as Ada need to search inside the program
698 minimal symbols for the location where to put the temporary
699 breakpoint before starting. */
700 if (!have_minimal_symbols ())
701 error (_("No symbol table loaded. Use the \"file\" command."));
703 /* Run the program until reaching the main procedure... */
704 run_command_1 (args
, from_tty
, RUN_STOP_AT_MAIN
);
707 /* Start the execution of the program stopping at the first
711 starti_command (const char *args
, int from_tty
)
713 run_command_1 (args
, from_tty
, RUN_STOP_AT_FIRST_INSN
);
717 proceed_thread_callback (struct thread_info
*thread
, void *arg
)
719 /* We go through all threads individually instead of compressing
720 into a single target `resume_all' request, because some threads
721 may be stopped in internal breakpoints/events, or stopped waiting
722 for its turn in the displaced stepping queue (that is, they are
723 running && !executing). The target side has no idea about why
724 the thread is stopped, so a `resume_all' command would resume too
725 much. If/when GDB gains a way to tell the target `hold this
726 thread stopped until I say otherwise', then we can optimize
728 if (thread
->state
!= THREAD_STOPPED
)
731 if (!thread
->inf
->has_execution ())
734 switch_to_thread (thread
);
735 clear_proceed_status (0);
736 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
);
741 ensure_valid_thread (void)
743 if (inferior_ptid
== null_ptid
744 || inferior_thread ()->state
== THREAD_EXITED
)
745 error (_("Cannot execute this command without a live selected thread."));
748 /* If the user is looking at trace frames, any resumption of execution
749 is likely to mix up recorded and live target data. So simply
750 disallow those commands. */
753 ensure_not_tfind_mode (void)
755 if (get_traceframe_number () >= 0)
756 error (_("Cannot execute this command while looking at trace frames."));
759 /* Throw an error indicating the current thread is running. */
762 error_is_running (void)
764 error (_("Cannot execute this command while "
765 "the selected thread is running."));
768 /* Calls error_is_running if the current thread is running. */
771 ensure_not_running (void)
773 if (inferior_thread ()->state
== THREAD_RUNNING
)
778 continue_1 (int all_threads
)
781 ensure_not_tfind_mode ();
783 if (non_stop
&& all_threads
)
785 /* Don't error out if the current thread is running, because
786 there may be other stopped threads. */
788 /* Backup current thread and selected frame and restore on scope
790 scoped_restore_current_thread restore_thread
;
792 iterate_over_threads (proceed_thread_callback
, NULL
);
794 if (current_ui
->prompt_state
== PROMPT_BLOCKED
)
796 /* If all threads in the target were already running,
797 proceed_thread_callback ends up never calling proceed,
798 and so nothing calls this to put the inferior's terminal
799 settings in effect and remove stdin from the event loop,
800 which we must when running a foreground command. E.g.:
804 <all threads are running now>
807 <no thread was resumed, but the inferior now owns the terminal>
809 target_terminal::inferior ();
814 ensure_valid_thread ();
815 ensure_not_running ();
816 clear_proceed_status (0);
817 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
);
821 /* continue [-a] [proceed-count] [&] */
824 continue_command (const char *args
, int from_tty
)
827 bool all_threads_p
= false;
831 /* Find out whether we must run in the background. */
832 gdb::unique_xmalloc_ptr
<char> stripped
= strip_bg_char (args
, &async_exec
);
833 args
= stripped
.get ();
837 if (startswith (args
, "-a"))
839 all_threads_p
= true;
840 args
+= sizeof ("-a") - 1;
846 if (!non_stop
&& all_threads_p
)
847 error (_("`-a' is meaningless in all-stop mode."));
849 if (args
!= NULL
&& all_threads_p
)
850 error (_("Can't resume all threads and specify "
851 "proceed count simultaneously."));
853 /* If we have an argument left, set proceed count of breakpoint we
860 struct thread_info
*tp
;
863 tp
= inferior_thread ();
866 process_stratum_target
*last_target
;
869 get_last_target_status (&last_target
, &last_ptid
, nullptr);
870 tp
= find_thread_ptid (last_target
, last_ptid
);
873 bs
= tp
->control
.stop_bpstat
;
875 while ((stat
= bpstat_num (&bs
, &num
)) != 0)
878 set_ignore_count (num
,
879 parse_and_eval_long (args
) - 1,
881 /* set_ignore_count prints a message ending with a period.
882 So print two spaces before "Continuing.". */
884 printf_filtered (" ");
888 if (!stopped
&& from_tty
)
891 ("Not stopped at any breakpoint; argument ignored.\n");
896 ensure_not_tfind_mode ();
898 if (!non_stop
|| !all_threads_p
)
900 ensure_valid_thread ();
901 ensure_not_running ();
904 prepare_execution_command (current_top_target (), async_exec
);
907 printf_filtered (_("Continuing.\n"));
909 continue_1 (all_threads_p
);
912 /* Record the starting point of a "step" or "next" command. */
915 set_step_frame (void)
917 frame_info
*frame
= get_current_frame ();
919 symtab_and_line sal
= find_frame_sal (frame
);
920 set_step_info (frame
, sal
);
922 CORE_ADDR pc
= get_frame_pc (frame
);
923 thread_info
*tp
= inferior_thread ();
924 tp
->control
.step_start_function
= find_pc_function (pc
);
927 /* Step until outside of current statement. */
930 step_command (const char *count_string
, int from_tty
)
932 step_1 (0, 0, count_string
);
935 /* Likewise, but skip over subroutine calls as if single instructions. */
938 next_command (const char *count_string
, int from_tty
)
940 step_1 (1, 0, count_string
);
943 /* Likewise, but step only one instruction. */
946 stepi_command (const char *count_string
, int from_tty
)
948 step_1 (0, 1, count_string
);
952 nexti_command (const char *count_string
, int from_tty
)
954 step_1 (1, 1, count_string
);
957 /* Data for the FSM that manages the step/next/stepi/nexti
960 struct step_command_fsm
: public thread_fsm
962 /* How many steps left in a "step N"-like command. */
965 /* If true, this is a next/nexti, otherwise a step/stepi. */
966 int skip_subroutines
;
968 /* If true, this is a stepi/nexti, otherwise a step/step. */
971 explicit step_command_fsm (struct interp
*cmd_interp
)
972 : thread_fsm (cmd_interp
)
976 void clean_up (struct thread_info
*thread
) override
;
977 bool should_stop (struct thread_info
*thread
) override
;
978 enum async_reply_reason
do_async_reply_reason () override
;
981 /* Prepare for a step/next/etc. command. Any target resource
982 allocated here is undone in the FSM's clean_up method. */
985 step_command_fsm_prepare (struct step_command_fsm
*sm
,
986 int skip_subroutines
, int single_inst
,
987 int count
, struct thread_info
*thread
)
989 sm
->skip_subroutines
= skip_subroutines
;
990 sm
->single_inst
= single_inst
;
993 /* Leave the si command alone. */
994 if (!sm
->single_inst
|| sm
->skip_subroutines
)
995 set_longjmp_breakpoint (thread
, get_frame_id (get_current_frame ()));
997 thread
->control
.stepping_command
= 1;
1000 static int prepare_one_step (struct step_command_fsm
*sm
);
1003 step_1 (int skip_subroutines
, int single_inst
, const char *count_string
)
1007 struct thread_info
*thr
;
1008 struct step_command_fsm
*step_sm
;
1011 ensure_not_tfind_mode ();
1012 ensure_valid_thread ();
1013 ensure_not_running ();
1015 gdb::unique_xmalloc_ptr
<char> stripped
1016 = strip_bg_char (count_string
, &async_exec
);
1017 count_string
= stripped
.get ();
1019 prepare_execution_command (current_top_target (), async_exec
);
1021 count
= count_string
? parse_and_eval_long (count_string
) : 1;
1023 clear_proceed_status (1);
1025 /* Setup the execution command state machine to handle all the COUNT
1027 thr
= inferior_thread ();
1028 step_sm
= new step_command_fsm (command_interp ());
1029 thr
->thread_fsm
= step_sm
;
1031 step_command_fsm_prepare (step_sm
, skip_subroutines
,
1032 single_inst
, count
, thr
);
1034 /* Do only one step for now, before returning control to the event
1035 loop. Let the continuation figure out how many other steps we
1036 need to do, and handle them one at the time, through
1038 if (!prepare_one_step (step_sm
))
1039 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
);
1044 /* Stepped into an inline frame. Pretend that we've
1046 thr
->thread_fsm
->clean_up (thr
);
1047 proceeded
= normal_stop ();
1049 inferior_event_handler (INF_EXEC_COMPLETE
, NULL
);
1050 all_uis_check_sync_execution_done ();
1054 /* Implementation of the 'should_stop' FSM method for stepping
1055 commands. Called after we are done with one step operation, to
1056 check whether we need to step again, before we print the prompt and
1057 return control to the user. If count is > 1, returns false, as we
1058 will need to keep going. */
1061 step_command_fsm::should_stop (struct thread_info
*tp
)
1063 if (tp
->control
.stop_step
)
1065 /* There are more steps to make, and we did stop due to
1066 ending a stepping range. Do another step. */
1068 return prepare_one_step (this);
1076 /* Implementation of the 'clean_up' FSM method for stepping commands. */
1079 step_command_fsm::clean_up (struct thread_info
*thread
)
1081 if (!single_inst
|| skip_subroutines
)
1082 delete_longjmp_breakpoint (thread
->global_num
);
1085 /* Implementation of the 'async_reply_reason' FSM method for stepping
1088 enum async_reply_reason
1089 step_command_fsm::do_async_reply_reason ()
1091 return EXEC_ASYNC_END_STEPPING_RANGE
;
1094 /* Prepare for one step in "step N". The actual target resumption is
1095 done by the caller. Return true if we're done and should thus
1096 report a stop to the user. Returns false if the target needs to be
1100 prepare_one_step (struct step_command_fsm
*sm
)
1104 struct frame_info
*frame
= get_current_frame ();
1106 /* Don't assume THREAD is a valid thread id. It is set to -1 if
1107 the longjmp breakpoint was not required. Use the
1108 INFERIOR_PTID thread instead, which is the same thread when
1110 struct thread_info
*tp
= inferior_thread ();
1114 if (!sm
->single_inst
)
1118 /* Step at an inlined function behaves like "down". */
1119 if (!sm
->skip_subroutines
1120 && inline_skipped_frames (tp
))
1123 const char *fn
= NULL
;
1124 symtab_and_line sal
;
1127 /* Pretend that we've ran. */
1128 resume_ptid
= user_visible_resume_ptid (1);
1129 set_running (tp
->inf
->process_target (), resume_ptid
, true);
1131 step_into_inline_frame (tp
);
1133 frame
= get_current_frame ();
1134 sal
= find_frame_sal (frame
);
1135 sym
= get_frame_function (frame
);
1138 fn
= sym
->print_name ();
1141 || !function_name_is_marked_for_skip (fn
, sal
))
1144 return prepare_one_step (sm
);
1148 pc
= get_frame_pc (frame
);
1149 find_pc_line_pc_range (pc
,
1150 &tp
->control
.step_range_start
,
1151 &tp
->control
.step_range_end
);
1153 tp
->control
.may_range_step
= 1;
1155 /* If we have no line info, switch to stepi mode. */
1156 if (tp
->control
.step_range_end
== 0 && step_stop_if_no_debug
)
1158 tp
->control
.step_range_start
= tp
->control
.step_range_end
= 1;
1159 tp
->control
.may_range_step
= 0;
1161 else if (tp
->control
.step_range_end
== 0)
1165 if (find_pc_partial_function (pc
, &name
,
1166 &tp
->control
.step_range_start
,
1167 &tp
->control
.step_range_end
) == 0)
1168 error (_("Cannot find bounds of current function"));
1170 target_terminal::ours_for_output ();
1171 printf_filtered (_("Single stepping until exit from function %s,"
1172 "\nwhich has no line number information.\n"),
1178 /* Say we are stepping, but stop after one insn whatever it does. */
1179 tp
->control
.step_range_start
= tp
->control
.step_range_end
= 1;
1180 if (!sm
->skip_subroutines
)
1182 Don't step over function calls, not even to functions lacking
1184 tp
->control
.step_over_calls
= STEP_OVER_NONE
;
1187 if (sm
->skip_subroutines
)
1188 tp
->control
.step_over_calls
= STEP_OVER_ALL
;
1194 sm
->set_finished ();
1199 /* Continue program at specified address. */
1202 jump_command (const char *arg
, int from_tty
)
1204 struct gdbarch
*gdbarch
= get_current_arch ();
1211 ensure_not_tfind_mode ();
1212 ensure_valid_thread ();
1213 ensure_not_running ();
1215 /* Find out whether we must run in the background. */
1216 gdb::unique_xmalloc_ptr
<char> stripped
= strip_bg_char (arg
, &async_exec
);
1217 arg
= stripped
.get ();
1219 prepare_execution_command (current_top_target (), async_exec
);
1222 error_no_arg (_("starting address"));
1224 std::vector
<symtab_and_line
> sals
1225 = decode_line_with_last_displayed (arg
, DECODE_LINE_FUNFIRSTLINE
);
1226 if (sals
.size () != 1)
1227 error (_("Unreasonable jump request"));
1229 symtab_and_line
&sal
= sals
[0];
1231 if (sal
.symtab
== 0 && sal
.pc
== 0)
1232 error (_("No source file has been specified."));
1234 resolve_sal_pc (&sal
); /* May error out. */
1236 /* See if we are trying to jump to another function. */
1237 fn
= get_frame_function (get_current_frame ());
1238 sfn
= find_pc_function (sal
.pc
);
1239 if (fn
!= NULL
&& sfn
!= fn
)
1241 if (!query (_("Line %d is not in `%s'. Jump anyway? "), sal
.line
,
1244 error (_("Not confirmed."));
1251 struct obj_section
*section
;
1253 fixup_symbol_section (sfn
, 0);
1254 section
= SYMBOL_OBJ_SECTION (symbol_objfile (sfn
), sfn
);
1255 if (section_is_overlay (section
)
1256 && !section_is_mapped (section
))
1258 if (!query (_("WARNING!!! Destination is in "
1259 "unmapped overlay! Jump anyway? ")))
1261 error (_("Not confirmed."));
1271 printf_filtered (_("Continuing at "));
1272 fputs_filtered (paddress (gdbarch
, addr
), gdb_stdout
);
1273 printf_filtered (".\n");
1276 clear_proceed_status (0);
1277 proceed (addr
, GDB_SIGNAL_0
);
1280 /* Continue program giving it specified signal. */
1283 signal_command (const char *signum_exp
, int from_tty
)
1285 enum gdb_signal oursig
;
1288 dont_repeat (); /* Too dangerous. */
1290 ensure_not_tfind_mode ();
1291 ensure_valid_thread ();
1292 ensure_not_running ();
1294 /* Find out whether we must run in the background. */
1295 gdb::unique_xmalloc_ptr
<char> stripped
1296 = strip_bg_char (signum_exp
, &async_exec
);
1297 signum_exp
= stripped
.get ();
1299 prepare_execution_command (current_top_target (), async_exec
);
1302 error_no_arg (_("signal number"));
1304 /* It would be even slicker to make signal names be valid expressions,
1305 (the type could be "enum $signal" or some such), then the user could
1306 assign them to convenience variables. */
1307 oursig
= gdb_signal_from_name (signum_exp
);
1309 if (oursig
== GDB_SIGNAL_UNKNOWN
)
1311 /* No, try numeric. */
1312 int num
= parse_and_eval_long (signum_exp
);
1315 oursig
= GDB_SIGNAL_0
;
1317 oursig
= gdb_signal_from_command (num
);
1320 /* Look for threads other than the current that this command ends up
1321 resuming too (due to schedlock off), and warn if they'll get a
1322 signal delivered. "signal 0" is used to suppress a previous
1323 signal, but if the current thread is no longer the one that got
1324 the signal, then the user is potentially suppressing the signal
1325 of the wrong thread. */
1328 int must_confirm
= 0;
1330 /* This indicates what will be resumed. Either a single thread,
1331 a whole process, or all threads of all processes. */
1332 ptid_t resume_ptid
= user_visible_resume_ptid (0);
1333 process_stratum_target
*resume_target
1334 = user_visible_resume_target (resume_ptid
);
1336 thread_info
*current
= inferior_thread ();
1338 for (thread_info
*tp
: all_non_exited_threads (resume_target
, resume_ptid
))
1343 if (tp
->suspend
.stop_signal
!= GDB_SIGNAL_0
1344 && signal_pass_state (tp
->suspend
.stop_signal
))
1347 printf_unfiltered (_("Note:\n"));
1348 printf_unfiltered (_(" Thread %s previously stopped with signal %s, %s.\n"),
1349 print_thread_id (tp
),
1350 gdb_signal_to_name (tp
->suspend
.stop_signal
),
1351 gdb_signal_to_string (tp
->suspend
.stop_signal
));
1357 && !query (_("Continuing thread %s (the current thread) with specified signal will\n"
1358 "still deliver the signals noted above to their respective threads.\n"
1359 "Continue anyway? "),
1360 print_thread_id (inferior_thread ())))
1361 error (_("Not confirmed."));
1366 if (oursig
== GDB_SIGNAL_0
)
1367 printf_filtered (_("Continuing with no signal.\n"));
1369 printf_filtered (_("Continuing with signal %s.\n"),
1370 gdb_signal_to_name (oursig
));
1373 clear_proceed_status (0);
1374 proceed ((CORE_ADDR
) -1, oursig
);
1377 /* Queue a signal to be delivered to the current thread. */
1380 queue_signal_command (const char *signum_exp
, int from_tty
)
1382 enum gdb_signal oursig
;
1383 struct thread_info
*tp
;
1386 ensure_not_tfind_mode ();
1387 ensure_valid_thread ();
1388 ensure_not_running ();
1390 if (signum_exp
== NULL
)
1391 error_no_arg (_("signal number"));
1393 /* It would be even slicker to make signal names be valid expressions,
1394 (the type could be "enum $signal" or some such), then the user could
1395 assign them to convenience variables. */
1396 oursig
= gdb_signal_from_name (signum_exp
);
1398 if (oursig
== GDB_SIGNAL_UNKNOWN
)
1400 /* No, try numeric. */
1401 int num
= parse_and_eval_long (signum_exp
);
1404 oursig
= GDB_SIGNAL_0
;
1406 oursig
= gdb_signal_from_command (num
);
1409 if (oursig
!= GDB_SIGNAL_0
1410 && !signal_pass_state (oursig
))
1411 error (_("Signal handling set to not pass this signal to the program."));
1413 tp
= inferior_thread ();
1414 tp
->suspend
.stop_signal
= oursig
;
1417 /* Data for the FSM that manages the until (with no argument)
1420 struct until_next_fsm
: public thread_fsm
1422 /* The thread that as current when the command was executed. */
1425 until_next_fsm (struct interp
*cmd_interp
, int thread
)
1426 : thread_fsm (cmd_interp
),
1431 bool should_stop (struct thread_info
*thread
) override
;
1432 void clean_up (struct thread_info
*thread
) override
;
1433 enum async_reply_reason
do_async_reply_reason () override
;
1436 /* Implementation of the 'should_stop' FSM method for the until (with
1440 until_next_fsm::should_stop (struct thread_info
*tp
)
1442 if (tp
->control
.stop_step
)
1448 /* Implementation of the 'clean_up' FSM method for the until (with no
1452 until_next_fsm::clean_up (struct thread_info
*thread
)
1454 delete_longjmp_breakpoint (thread
->global_num
);
1457 /* Implementation of the 'async_reply_reason' FSM method for the until
1458 (with no arg) command. */
1460 enum async_reply_reason
1461 until_next_fsm::do_async_reply_reason ()
1463 return EXEC_ASYNC_END_STEPPING_RANGE
;
1466 /* Proceed until we reach a different source line with pc greater than
1467 our current one or exit the function. We skip calls in both cases.
1469 Note that eventually this command should probably be changed so
1470 that only source lines are printed out when we hit the breakpoint
1471 we set. This may involve changes to wait_for_inferior and the
1472 proceed status code. */
1475 until_next_command (int from_tty
)
1477 struct frame_info
*frame
;
1479 struct symbol
*func
;
1480 struct symtab_and_line sal
;
1481 struct thread_info
*tp
= inferior_thread ();
1482 int thread
= tp
->global_num
;
1483 struct until_next_fsm
*sm
;
1485 clear_proceed_status (0);
1488 frame
= get_current_frame ();
1490 /* Step until either exited from this function or greater
1491 than the current line (if in symbolic section) or pc (if
1494 pc
= get_frame_pc (frame
);
1495 func
= find_pc_function (pc
);
1499 struct bound_minimal_symbol msymbol
= lookup_minimal_symbol_by_pc (pc
);
1501 if (msymbol
.minsym
== NULL
)
1502 error (_("Execution is not within a known function."));
1504 tp
->control
.step_range_start
= BMSYMBOL_VALUE_ADDRESS (msymbol
);
1505 /* The upper-bound of step_range is exclusive. In order to make PC
1506 within the range, set the step_range_end with PC + 1. */
1507 tp
->control
.step_range_end
= pc
+ 1;
1511 sal
= find_pc_line (pc
, 0);
1513 tp
->control
.step_range_start
= BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (func
));
1514 tp
->control
.step_range_end
= sal
.end
;
1516 tp
->control
.may_range_step
= 1;
1518 tp
->control
.step_over_calls
= STEP_OVER_ALL
;
1520 set_longjmp_breakpoint (tp
, get_frame_id (frame
));
1521 delete_longjmp_breakpoint_cleanup
lj_deleter (thread
);
1523 sm
= new until_next_fsm (command_interp (), tp
->global_num
);
1524 tp
->thread_fsm
= sm
;
1525 lj_deleter
.release ();
1527 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
);
1531 until_command (const char *arg
, int from_tty
)
1536 ensure_not_tfind_mode ();
1537 ensure_valid_thread ();
1538 ensure_not_running ();
1540 /* Find out whether we must run in the background. */
1541 gdb::unique_xmalloc_ptr
<char> stripped
= strip_bg_char (arg
, &async_exec
);
1542 arg
= stripped
.get ();
1544 prepare_execution_command (current_top_target (), async_exec
);
1547 until_break_command (arg
, from_tty
, 0);
1549 until_next_command (from_tty
);
1553 advance_command (const char *arg
, int from_tty
)
1558 ensure_not_tfind_mode ();
1559 ensure_valid_thread ();
1560 ensure_not_running ();
1563 error_no_arg (_("a location"));
1565 /* Find out whether we must run in the background. */
1566 gdb::unique_xmalloc_ptr
<char> stripped
= strip_bg_char (arg
, &async_exec
);
1567 arg
= stripped
.get ();
1569 prepare_execution_command (current_top_target (), async_exec
);
1571 until_break_command (arg
, from_tty
, 1);
1574 /* Return the value of the result of a function at the end of a 'finish'
1575 command/BP. DTOR_DATA (if not NULL) can represent inferior registers
1576 right after an inferior call has finished. */
1579 get_return_value (struct value
*function
, struct type
*value_type
)
1581 regcache
*stop_regs
= get_current_regcache ();
1582 struct gdbarch
*gdbarch
= stop_regs
->arch ();
1583 struct value
*value
;
1585 value_type
= check_typedef (value_type
);
1586 gdb_assert (TYPE_CODE (value_type
) != TYPE_CODE_VOID
);
1588 /* FIXME: 2003-09-27: When returning from a nested inferior function
1589 call, it's possible (with no help from the architecture vector)
1590 to locate and return/print a "struct return" value. This is just
1591 a more complicated case of what is already being done in the
1592 inferior function call code. In fact, when inferior function
1593 calls are made async, this will likely be made the norm. */
1595 switch (gdbarch_return_value (gdbarch
, function
, value_type
,
1598 case RETURN_VALUE_REGISTER_CONVENTION
:
1599 case RETURN_VALUE_ABI_RETURNS_ADDRESS
:
1600 case RETURN_VALUE_ABI_PRESERVES_ADDRESS
:
1601 value
= allocate_value (value_type
);
1602 gdbarch_return_value (gdbarch
, function
, value_type
, stop_regs
,
1603 value_contents_raw (value
), NULL
);
1605 case RETURN_VALUE_STRUCT_CONVENTION
:
1609 internal_error (__FILE__
, __LINE__
, _("bad switch"));
1615 /* The captured function return value/type and its position in the
1618 struct return_value_info
1620 /* The captured return value. May be NULL if we weren't able to
1621 retrieve it. See get_return_value. */
1622 struct value
*value
;
1624 /* The return type. In some cases, we'll not be able extract the
1625 return value, but we always know the type. */
1628 /* If we captured a value, this is the value history index. */
1629 int value_history_index
;
1632 /* Helper for print_return_value. */
1635 print_return_value_1 (struct ui_out
*uiout
, struct return_value_info
*rv
)
1637 if (rv
->value
!= NULL
)
1639 struct value_print_options opts
;
1642 uiout
->text ("Value returned is ");
1643 uiout
->field_fmt ("gdb-result-var", "$%d",
1644 rv
->value_history_index
);
1645 uiout
->text (" = ");
1646 get_user_print_options (&opts
);
1648 if (opts
.finish_print
)
1651 value_print (rv
->value
, &stb
, &opts
);
1652 uiout
->field_stream ("return-value", stb
);
1655 uiout
->field_string ("return-value", _("<not displayed>"),
1656 metadata_style
.style ());
1661 std::string type_name
= type_to_string (rv
->type
);
1662 uiout
->text ("Value returned has type: ");
1663 uiout
->field_string ("return-type", type_name
.c_str ());
1665 uiout
->text (" Cannot determine contents\n");
1669 /* Print the result of a function at the end of a 'finish' command.
1670 RV points at an object representing the captured return value/type
1671 and its position in the value history. */
1674 print_return_value (struct ui_out
*uiout
, struct return_value_info
*rv
)
1676 if (rv
->type
== NULL
1677 || TYPE_CODE (check_typedef (rv
->type
)) == TYPE_CODE_VOID
)
1682 /* print_return_value_1 can throw an exception in some
1683 circumstances. We need to catch this so that we still
1684 delete the breakpoint. */
1685 print_return_value_1 (uiout
, rv
);
1687 catch (const gdb_exception
&ex
)
1689 exception_print (gdb_stdout
, ex
);
1693 /* Data for the FSM that manages the finish command. */
1695 struct finish_command_fsm
: public thread_fsm
1697 /* The momentary breakpoint set at the function's return address in
1699 breakpoint_up breakpoint
;
1701 /* The function that we're stepping out of. */
1702 struct symbol
*function
= nullptr;
1704 /* If the FSM finishes successfully, this stores the function's
1706 struct return_value_info return_value_info
{};
1708 explicit finish_command_fsm (struct interp
*cmd_interp
)
1709 : thread_fsm (cmd_interp
)
1713 bool should_stop (struct thread_info
*thread
) override
;
1714 void clean_up (struct thread_info
*thread
) override
;
1715 struct return_value_info
*return_value () override
;
1716 enum async_reply_reason
do_async_reply_reason () override
;
1719 /* Implementation of the 'should_stop' FSM method for the finish
1720 commands. Detects whether the thread stepped out of the function
1721 successfully, and if so, captures the function's return value and
1722 marks the FSM finished. */
1725 finish_command_fsm::should_stop (struct thread_info
*tp
)
1727 struct return_value_info
*rv
= &return_value_info
;
1729 if (function
!= NULL
1730 && bpstat_find_breakpoint (tp
->control
.stop_bpstat
,
1731 breakpoint
.get ()) != NULL
)
1736 rv
->type
= TYPE_TARGET_TYPE (SYMBOL_TYPE (function
));
1737 if (rv
->type
== NULL
)
1738 internal_error (__FILE__
, __LINE__
,
1739 _("finish_command: function has no target type"));
1741 if (TYPE_CODE (check_typedef (rv
->type
)) != TYPE_CODE_VOID
)
1745 func
= read_var_value (function
, NULL
, get_current_frame ());
1746 rv
->value
= get_return_value (func
, rv
->type
);
1747 if (rv
->value
!= NULL
)
1748 rv
->value_history_index
= record_latest_value (rv
->value
);
1751 else if (tp
->control
.stop_step
)
1753 /* Finishing from an inline frame, or reverse finishing. In
1754 either case, there's no way to retrieve the return value. */
1761 /* Implementation of the 'clean_up' FSM method for the finish
1765 finish_command_fsm::clean_up (struct thread_info
*thread
)
1767 breakpoint
.reset ();
1768 delete_longjmp_breakpoint (thread
->global_num
);
1771 /* Implementation of the 'return_value' FSM method for the finish
1774 struct return_value_info
*
1775 finish_command_fsm::return_value ()
1777 return &return_value_info
;
1780 /* Implementation of the 'async_reply_reason' FSM method for the
1783 enum async_reply_reason
1784 finish_command_fsm::do_async_reply_reason ()
1786 if (execution_direction
== EXEC_REVERSE
)
1787 return EXEC_ASYNC_END_STEPPING_RANGE
;
1789 return EXEC_ASYNC_FUNCTION_FINISHED
;
1792 /* finish_backward -- helper function for finish_command. */
1795 finish_backward (struct finish_command_fsm
*sm
)
1797 struct symtab_and_line sal
;
1798 struct thread_info
*tp
= inferior_thread ();
1800 CORE_ADDR func_addr
;
1802 pc
= get_frame_pc (get_current_frame ());
1804 if (find_pc_partial_function (pc
, NULL
, &func_addr
, NULL
) == 0)
1805 error (_("Cannot find bounds of current function"));
1807 sal
= find_pc_line (func_addr
, 0);
1809 tp
->control
.proceed_to_finish
= 1;
1810 /* Special case: if we're sitting at the function entry point,
1811 then all we need to do is take a reverse singlestep. We
1812 don't need to set a breakpoint, and indeed it would do us
1815 Note that this can only happen at frame #0, since there's
1816 no way that a function up the stack can have a return address
1817 that's equal to its entry point. */
1821 struct frame_info
*frame
= get_selected_frame (NULL
);
1822 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
1824 /* Set a step-resume at the function's entry point. Once that's
1825 hit, we'll do one more step backwards. */
1826 symtab_and_line sr_sal
;
1828 sr_sal
.pspace
= get_frame_program_space (frame
);
1829 insert_step_resume_breakpoint_at_sal (gdbarch
,
1830 sr_sal
, null_frame_id
);
1832 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
);
1836 /* We're almost there -- we just need to back up by one more
1838 tp
->control
.step_range_start
= tp
->control
.step_range_end
= 1;
1839 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
);
1843 /* finish_forward -- helper function for finish_command. FRAME is the
1844 frame that called the function we're about to step out of. */
1847 finish_forward (struct finish_command_fsm
*sm
, struct frame_info
*frame
)
1849 struct frame_id frame_id
= get_frame_id (frame
);
1850 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
1851 struct symtab_and_line sal
;
1852 struct thread_info
*tp
= inferior_thread ();
1854 sal
= find_pc_line (get_frame_pc (frame
), 0);
1855 sal
.pc
= get_frame_pc (frame
);
1857 sm
->breakpoint
= set_momentary_breakpoint (gdbarch
, sal
,
1858 get_stack_frame_id (frame
),
1861 /* set_momentary_breakpoint invalidates FRAME. */
1864 set_longjmp_breakpoint (tp
, frame_id
);
1866 /* We want to print return value, please... */
1867 tp
->control
.proceed_to_finish
= 1;
1869 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
);
1872 /* Skip frames for "finish". */
1874 static struct frame_info
*
1875 skip_finish_frames (struct frame_info
*frame
)
1877 struct frame_info
*start
;
1883 frame
= skip_tailcall_frames (frame
);
1887 frame
= skip_unwritable_frames (frame
);
1891 while (start
!= frame
);
1896 /* "finish": Set a temporary breakpoint at the place the selected
1897 frame will return to, then continue. */
1900 finish_command (const char *arg
, int from_tty
)
1902 struct frame_info
*frame
;
1904 struct finish_command_fsm
*sm
;
1905 struct thread_info
*tp
;
1908 ensure_not_tfind_mode ();
1909 ensure_valid_thread ();
1910 ensure_not_running ();
1912 /* Find out whether we must run in the background. */
1913 gdb::unique_xmalloc_ptr
<char> stripped
= strip_bg_char (arg
, &async_exec
);
1914 arg
= stripped
.get ();
1916 prepare_execution_command (current_top_target (), async_exec
);
1919 error (_("The \"finish\" command does not take any arguments."));
1921 frame
= get_prev_frame (get_selected_frame (_("No selected frame.")));
1923 error (_("\"finish\" not meaningful in the outermost frame."));
1925 clear_proceed_status (0);
1927 tp
= inferior_thread ();
1929 sm
= new finish_command_fsm (command_interp ());
1931 tp
->thread_fsm
= sm
;
1933 /* Finishing from an inline frame is completely different. We don't
1934 try to show the "return value" - no way to locate it. */
1935 if (get_frame_type (get_selected_frame (_("No selected frame.")))
1938 /* Claim we are stepping in the calling frame. An empty step
1939 range means that we will stop once we aren't in a function
1940 called by that frame. We don't use the magic "1" value for
1941 step_range_end, because then infrun will think this is nexti,
1942 and not step over the rest of this inlined function call. */
1943 set_step_info (frame
, {});
1944 tp
->control
.step_range_start
= get_frame_pc (frame
);
1945 tp
->control
.step_range_end
= tp
->control
.step_range_start
;
1946 tp
->control
.step_over_calls
= STEP_OVER_ALL
;
1948 /* Print info on the selected frame, including level number but not
1952 printf_filtered (_("Run till exit from "));
1953 print_stack_frame (get_selected_frame (NULL
), 1, LOCATION
, 0);
1956 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
);
1960 /* Find the function we will return from. */
1962 sm
->function
= find_pc_function (get_frame_pc (get_selected_frame (NULL
)));
1964 /* Print info on the selected frame, including level number but not
1968 if (execution_direction
== EXEC_REVERSE
)
1969 printf_filtered (_("Run back to call of "));
1972 if (sm
->function
!= NULL
&& TYPE_NO_RETURN (sm
->function
->type
)
1973 && !query (_("warning: Function %s does not return normally.\n"
1974 "Try to finish anyway? "),
1975 sm
->function
->print_name ()))
1976 error (_("Not confirmed."));
1977 printf_filtered (_("Run till exit from "));
1980 print_stack_frame (get_selected_frame (NULL
), 1, LOCATION
, 0);
1983 if (execution_direction
== EXEC_REVERSE
)
1984 finish_backward (sm
);
1987 frame
= skip_finish_frames (frame
);
1990 error (_("Cannot find the caller frame."));
1992 finish_forward (sm
, frame
);
1998 info_program_command (const char *args
, int from_tty
)
2003 process_stratum_target
*proc_target
;
2005 if (!target_has_execution
)
2007 printf_filtered (_("The program being debugged is not being run.\n"));
2013 ptid
= inferior_ptid
;
2014 proc_target
= current_inferior ()->process_target ();
2017 get_last_target_status (&proc_target
, &ptid
, nullptr);
2019 if (ptid
== null_ptid
|| ptid
== minus_one_ptid
)
2020 error (_("No selected thread."));
2022 thread_info
*tp
= find_thread_ptid (proc_target
, ptid
);
2024 if (tp
->state
== THREAD_EXITED
)
2025 error (_("Invalid selected thread."));
2026 else if (tp
->state
== THREAD_RUNNING
)
2027 error (_("Selected thread is running."));
2029 bs
= tp
->control
.stop_bpstat
;
2030 stat
= bpstat_num (&bs
, &num
);
2032 target_files_info ();
2033 printf_filtered (_("Program stopped at %s.\n"),
2034 paddress (target_gdbarch (), tp
->suspend
.stop_pc
));
2035 if (tp
->control
.stop_step
)
2036 printf_filtered (_("It stopped after being stepped.\n"));
2039 /* There may be several breakpoints in the same place, so this
2040 isn't as strange as it seems. */
2045 printf_filtered (_("It stopped at a breakpoint "
2046 "that has since been deleted.\n"));
2049 printf_filtered (_("It stopped at breakpoint %d.\n"), num
);
2050 stat
= bpstat_num (&bs
, &num
);
2053 else if (tp
->suspend
.stop_signal
!= GDB_SIGNAL_0
)
2055 printf_filtered (_("It stopped with signal %s, %s.\n"),
2056 gdb_signal_to_name (tp
->suspend
.stop_signal
),
2057 gdb_signal_to_string (tp
->suspend
.stop_signal
));
2062 printf_filtered (_("Type \"info stack\" or \"info "
2063 "registers\" for more information.\n"));
2068 environment_info (const char *var
, int from_tty
)
2072 const char *val
= current_inferior ()->environment
.get (var
);
2076 puts_filtered (var
);
2077 puts_filtered (" = ");
2078 puts_filtered (val
);
2079 puts_filtered ("\n");
2083 puts_filtered ("Environment variable \"");
2084 puts_filtered (var
);
2085 puts_filtered ("\" not defined.\n");
2090 char **envp
= current_inferior ()->environment
.envp ();
2092 for (int idx
= 0; envp
[idx
] != NULL
; ++idx
)
2094 puts_filtered (envp
[idx
]);
2095 puts_filtered ("\n");
2101 set_environment_command (const char *arg
, int from_tty
)
2103 const char *p
, *val
;
2107 error_no_arg (_("environment variable and value"));
2109 /* Find separation between variable name and value. */
2110 p
= (char *) strchr (arg
, '=');
2111 val
= (char *) strchr (arg
, ' ');
2113 if (p
!= 0 && val
!= 0)
2115 /* We have both a space and an equals. If the space is before the
2116 equals, walk forward over the spaces til we see a nonspace
2117 (possibly the equals). */
2122 /* Now if the = is after the char following the spaces,
2123 take the char following the spaces. */
2127 else if (val
!= 0 && p
== 0)
2131 error_no_arg (_("environment variable to set"));
2133 if (p
== 0 || p
[1] == 0)
2137 p
= arg
+ strlen (arg
); /* So that savestring below will work. */
2141 /* Not setting variable value to null. */
2143 while (*val
== ' ' || *val
== '\t')
2147 while (p
!= arg
&& (p
[-1] == ' ' || p
[-1] == '\t'))
2150 std::string
var (arg
, p
- arg
);
2153 printf_filtered (_("Setting environment variable "
2154 "\"%s\" to null value.\n"),
2156 current_inferior ()->environment
.set (var
.c_str (), "");
2159 current_inferior ()->environment
.set (var
.c_str (), val
);
2163 unset_environment_command (const char *var
, int from_tty
)
2167 /* If there is no argument, delete all environment variables.
2168 Ask for confirmation if reading from the terminal. */
2169 if (!from_tty
|| query (_("Delete all environment variables? ")))
2170 current_inferior ()->environment
.clear ();
2173 current_inferior ()->environment
.unset (var
);
2176 /* Handle the execution path (PATH variable). */
2178 static const char path_var_name
[] = "PATH";
2181 path_info (const char *args
, int from_tty
)
2183 puts_filtered ("Executable and object file path: ");
2184 puts_filtered (current_inferior ()->environment
.get (path_var_name
));
2185 puts_filtered ("\n");
2188 /* Add zero or more directories to the front of the execution path. */
2191 path_command (const char *dirname
, int from_tty
)
2197 env
= current_inferior ()->environment
.get (path_var_name
);
2198 /* Can be null if path is not set. */
2201 exec_path
= xstrdup (env
);
2202 mod_path (dirname
, &exec_path
);
2203 current_inferior ()->environment
.set (path_var_name
, exec_path
);
2206 path_info (NULL
, from_tty
);
2211 pad_to_column (string_file
&stream
, int col
)
2213 /* At least one space must be printed to separate columns. */
2215 const int size
= stream
.size ();
2217 stream
.puts (n_spaces (col
- size
));
2220 /* Print out the register NAME with value VAL, to FILE, in the default
2224 default_print_one_register_info (struct ui_file
*file
,
2228 struct type
*regtype
= value_type (val
);
2229 int print_raw_format
;
2230 string_file format_stream
;
2233 value_column_1
= 15,
2234 /* Give enough room for "0x", 16 hex digits and two spaces in
2235 preceding column. */
2236 value_column_2
= value_column_1
+ 2 + 16 + 2,
2239 format_stream
.puts (name
);
2240 pad_to_column (format_stream
, value_column_1
);
2242 print_raw_format
= (value_entirely_available (val
)
2243 && !value_optimized_out (val
));
2245 /* If virtual format is floating, print it that way, and in raw
2247 if (TYPE_CODE (regtype
) == TYPE_CODE_FLT
2248 || TYPE_CODE (regtype
) == TYPE_CODE_DECFLOAT
)
2250 struct value_print_options opts
;
2251 const gdb_byte
*valaddr
= value_contents_for_printing (val
);
2252 enum bfd_endian byte_order
= type_byte_order (regtype
);
2254 get_user_print_options (&opts
);
2258 value_embedded_offset (val
), 0,
2259 &format_stream
, 0, val
, &opts
, current_language
);
2261 if (print_raw_format
)
2263 pad_to_column (format_stream
, value_column_2
);
2264 format_stream
.puts ("(raw ");
2265 print_hex_chars (&format_stream
, valaddr
, TYPE_LENGTH (regtype
),
2267 format_stream
.putc (')');
2272 struct value_print_options opts
;
2274 /* Print the register in hex. */
2275 get_formatted_print_options (&opts
, 'x');
2278 value_embedded_offset (val
), 0,
2279 &format_stream
, 0, val
, &opts
, current_language
);
2280 /* If not a vector register, print it also according to its
2282 if (print_raw_format
&& TYPE_VECTOR (regtype
) == 0)
2284 pad_to_column (format_stream
, value_column_2
);
2285 get_user_print_options (&opts
);
2288 value_embedded_offset (val
), 0,
2289 &format_stream
, 0, val
, &opts
, current_language
);
2293 fputs_filtered (format_stream
.c_str (), file
);
2294 fprintf_filtered (file
, "\n");
2297 /* Print out the machine register regnum. If regnum is -1, print all
2298 registers (print_all == 1) or all non-float and non-vector
2299 registers (print_all == 0).
2301 For most machines, having all_registers_info() print the
2302 register(s) one per line is good enough. If a different format is
2303 required, (eg, for MIPS or Pyramid 90x, which both have lots of
2304 regs), or there is an existing convention for showing all the
2305 registers, define the architecture method PRINT_REGISTERS_INFO to
2306 provide that format. */
2309 default_print_registers_info (struct gdbarch
*gdbarch
,
2310 struct ui_file
*file
,
2311 struct frame_info
*frame
,
2312 int regnum
, int print_all
)
2315 const int numregs
= gdbarch_num_cooked_regs (gdbarch
);
2317 for (i
= 0; i
< numregs
; i
++)
2319 /* Decide between printing all regs, non-float / vector regs, or
2325 if (!gdbarch_register_reggroup_p (gdbarch
, i
, all_reggroup
))
2330 if (!gdbarch_register_reggroup_p (gdbarch
, i
, general_reggroup
))
2340 /* If the register name is empty, it is undefined for this
2341 processor, so don't display anything. */
2342 if (gdbarch_register_name (gdbarch
, i
) == NULL
2343 || *(gdbarch_register_name (gdbarch
, i
)) == '\0')
2346 default_print_one_register_info (file
,
2347 gdbarch_register_name (gdbarch
, i
),
2348 value_of_register (i
, frame
));
2353 registers_info (const char *addr_exp
, int fpregs
)
2355 struct frame_info
*frame
;
2356 struct gdbarch
*gdbarch
;
2358 if (!target_has_registers
)
2359 error (_("The program has no registers now."));
2360 frame
= get_selected_frame (NULL
);
2361 gdbarch
= get_frame_arch (frame
);
2365 gdbarch_print_registers_info (gdbarch
, gdb_stdout
,
2370 while (*addr_exp
!= '\0')
2375 /* Skip leading white space. */
2376 addr_exp
= skip_spaces (addr_exp
);
2378 /* Discard any leading ``$''. Check that there is something
2379 resembling a register following it. */
2380 if (addr_exp
[0] == '$')
2382 if (isspace ((*addr_exp
)) || (*addr_exp
) == '\0')
2383 error (_("Missing register name"));
2385 /* Find the start/end of this register name/num/group. */
2387 while ((*addr_exp
) != '\0' && !isspace ((*addr_exp
)))
2391 /* Figure out what we've found and display it. */
2393 /* A register name? */
2395 int regnum
= user_reg_map_name_to_regnum (gdbarch
, start
, end
- start
);
2399 /* User registers lie completely outside of the range of
2400 normal registers. Catch them early so that the target
2402 if (regnum
>= gdbarch_num_cooked_regs (gdbarch
))
2404 struct value
*regval
= value_of_user_reg (regnum
, frame
);
2405 const char *regname
= user_reg_map_regnum_to_name (gdbarch
,
2408 /* Print in the same fashion
2409 gdbarch_print_registers_info's default
2410 implementation prints. */
2411 default_print_one_register_info (gdb_stdout
,
2416 gdbarch_print_registers_info (gdbarch
, gdb_stdout
,
2417 frame
, regnum
, fpregs
);
2422 /* A register group? */
2424 struct reggroup
*group
;
2426 for (group
= reggroup_next (gdbarch
, NULL
);
2428 group
= reggroup_next (gdbarch
, group
))
2430 /* Don't bother with a length check. Should the user
2431 enter a short register group name, go with the first
2432 group that matches. */
2433 if (strncmp (start
, reggroup_name (group
), end
- start
) == 0)
2441 regnum
< gdbarch_num_cooked_regs (gdbarch
);
2444 if (gdbarch_register_reggroup_p (gdbarch
, regnum
, group
))
2445 gdbarch_print_registers_info (gdbarch
,
2453 /* Nothing matched. */
2454 error (_("Invalid register `%.*s'"), (int) (end
- start
), start
);
2459 info_all_registers_command (const char *addr_exp
, int from_tty
)
2461 registers_info (addr_exp
, 1);
2465 info_registers_command (const char *addr_exp
, int from_tty
)
2467 registers_info (addr_exp
, 0);
2471 print_vector_info (struct ui_file
*file
,
2472 struct frame_info
*frame
, const char *args
)
2474 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
2476 if (gdbarch_print_vector_info_p (gdbarch
))
2477 gdbarch_print_vector_info (gdbarch
, file
, frame
, args
);
2481 int printed_something
= 0;
2483 for (regnum
= 0; regnum
< gdbarch_num_cooked_regs (gdbarch
); regnum
++)
2485 if (gdbarch_register_reggroup_p (gdbarch
, regnum
, vector_reggroup
))
2487 printed_something
= 1;
2488 gdbarch_print_registers_info (gdbarch
, file
, frame
, regnum
, 1);
2491 if (!printed_something
)
2492 fprintf_filtered (file
, "No vector information\n");
2497 info_vector_command (const char *args
, int from_tty
)
2499 if (!target_has_registers
)
2500 error (_("The program has no registers now."));
2502 print_vector_info (gdb_stdout
, get_selected_frame (NULL
), args
);
2505 /* Kill the inferior process. Make us have no inferior. */
2508 kill_command (const char *arg
, int from_tty
)
2510 /* FIXME: This should not really be inferior_ptid (or target_has_execution).
2511 It should be a distinct flag that indicates that a target is active, cuz
2512 some targets don't have processes! */
2514 if (inferior_ptid
== null_ptid
)
2515 error (_("The program is not being run."));
2516 if (!query (_("Kill the program being debugged? ")))
2517 error (_("Not confirmed."));
2519 int pid
= current_inferior ()->pid
;
2520 /* Save the pid as a string before killing the inferior, since that
2521 may unpush the current target, and we need the string after. */
2522 std::string pid_str
= target_pid_to_str (ptid_t (pid
));
2523 int infnum
= current_inferior ()->num
;
2527 if (print_inferior_events
)
2528 printf_unfiltered (_("[Inferior %d (%s) killed]\n"),
2529 infnum
, pid_str
.c_str ());
2531 bfd_cache_close_all ();
2534 /* Used in `attach&' command. Proceed threads of inferior INF iff
2535 they stopped due to debugger request, and when they did, they
2536 reported a clean stop (GDB_SIGNAL_0). Do not proceed threads that
2537 have been explicitly been told to stop. */
2540 proceed_after_attach (inferior
*inf
)
2542 /* Don't error out if the current thread is running, because
2543 there may be other stopped threads. */
2545 /* Backup current thread and selected frame. */
2546 scoped_restore_current_thread restore_thread
;
2548 for (thread_info
*thread
: inf
->non_exited_threads ())
2549 if (!thread
->executing
2550 && !thread
->stop_requested
2551 && thread
->suspend
.stop_signal
== GDB_SIGNAL_0
)
2553 switch_to_thread (thread
);
2554 clear_proceed_status (0);
2555 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
);
2559 /* See inferior.h. */
2562 setup_inferior (int from_tty
)
2564 struct inferior
*inferior
;
2566 inferior
= current_inferior ();
2567 inferior
->needs_setup
= 0;
2569 /* If no exec file is yet known, try to determine it from the
2571 if (get_exec_file (0) == NULL
)
2572 exec_file_locate_attach (inferior_ptid
.pid (), 1, from_tty
);
2575 reopen_exec_file ();
2579 /* Take any necessary post-attaching actions for this platform. */
2580 target_post_attach (inferior_ptid
.pid ());
2582 post_create_inferior (current_top_target (), from_tty
);
2585 /* What to do after the first program stops after attaching. */
2586 enum attach_post_wait_mode
2588 /* Do nothing. Leaves threads as they are. */
2589 ATTACH_POST_WAIT_NOTHING
,
2591 /* Re-resume threads that are marked running. */
2592 ATTACH_POST_WAIT_RESUME
,
2594 /* Stop all threads. */
2595 ATTACH_POST_WAIT_STOP
,
2598 /* Called after we've attached to a process and we've seen it stop for
2599 the first time. If ASYNC_EXEC is true, re-resume threads that
2600 should be running. Else if ATTACH, */
2603 attach_post_wait (const char *args
, int from_tty
, enum attach_post_wait_mode mode
)
2605 struct inferior
*inferior
;
2607 inferior
= current_inferior ();
2608 inferior
->control
.stop_soon
= NO_STOP_QUIETLY
;
2610 if (inferior
->needs_setup
)
2611 setup_inferior (from_tty
);
2613 if (mode
== ATTACH_POST_WAIT_RESUME
)
2615 /* The user requested an `attach&', so be sure to leave threads
2616 that didn't get a signal running. */
2618 /* Immediatelly resume all suspended threads of this inferior,
2619 and this inferior only. This should have no effect on
2620 already running threads. If a thread has been stopped with a
2621 signal, leave it be. */
2623 proceed_after_attach (inferior
);
2626 if (inferior_thread ()->suspend
.stop_signal
== GDB_SIGNAL_0
)
2628 clear_proceed_status (0);
2629 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
);
2633 else if (mode
== ATTACH_POST_WAIT_STOP
)
2635 /* The user requested a plain `attach', so be sure to leave
2636 the inferior stopped. */
2638 /* At least the current thread is already stopped. */
2640 /* In all-stop, by definition, all threads have to be already
2641 stopped at this point. In non-stop, however, although the
2642 selected thread is stopped, others may still be executing.
2643 Be sure to explicitly stop all threads of the process. This
2644 should have no effect on already stopped threads. */
2646 target_stop (ptid_t (inferior
->pid
));
2647 else if (target_is_non_stop_p ())
2649 struct thread_info
*lowest
= inferior_thread ();
2651 stop_all_threads ();
2653 /* It's not defined which thread will report the attach
2654 stop. For consistency, always select the thread with
2655 lowest GDB number, which should be the main thread, if it
2657 for (thread_info
*thread
: current_inferior ()->non_exited_threads ())
2658 if (thread
->inf
->num
< lowest
->inf
->num
2659 || thread
->per_inf_num
< lowest
->per_inf_num
)
2662 switch_to_thread (lowest
);
2665 /* Tell the user/frontend where we're stopped. */
2667 if (deprecated_attach_hook
)
2668 deprecated_attach_hook ();
2672 struct attach_command_continuation_args
2676 enum attach_post_wait_mode mode
;
2680 attach_command_continuation (void *args
, int err
)
2682 struct attach_command_continuation_args
*a
2683 = (struct attach_command_continuation_args
*) args
;
2688 attach_post_wait (a
->args
, a
->from_tty
, a
->mode
);
2692 attach_command_continuation_free_args (void *args
)
2694 struct attach_command_continuation_args
*a
2695 = (struct attach_command_continuation_args
*) args
;
2701 /* "attach" command entry point. Takes a program started up outside
2702 of gdb and ``attaches'' to it. This stops it cold in its tracks
2703 and allows us to start debugging it. */
2706 attach_command (const char *args
, int from_tty
)
2709 struct target_ops
*attach_target
;
2710 struct inferior
*inferior
= current_inferior ();
2711 enum attach_post_wait_mode mode
;
2713 dont_repeat (); /* Not for the faint of heart */
2715 if (gdbarch_has_global_solist (target_gdbarch ()))
2716 /* Don't complain if all processes share the same symbol
2719 else if (target_has_execution
)
2721 if (query (_("A program is being debugged already. Kill it? ")))
2724 error (_("Not killed."));
2727 /* Clean up any leftovers from other runs. Some other things from
2728 this function should probably be moved into target_pre_inferior. */
2729 target_pre_inferior (from_tty
);
2731 gdb::unique_xmalloc_ptr
<char> stripped
= strip_bg_char (args
, &async_exec
);
2732 args
= stripped
.get ();
2734 attach_target
= find_attach_target ();
2736 prepare_execution_command (attach_target
, async_exec
);
2738 if (non_stop
&& !attach_target
->supports_non_stop ())
2739 error (_("Cannot attach to this target in non-stop mode"));
2741 attach_target
->attach (args
, from_tty
);
2742 /* to_attach should push the target, so after this point we
2743 shouldn't refer to attach_target again. */
2744 attach_target
= NULL
;
2746 /* Set up the "saved terminal modes" of the inferior
2747 based on what modes we are starting it with. */
2748 target_terminal::init ();
2750 /* Install inferior's terminal modes. This may look like a no-op,
2751 as we've just saved them above, however, this does more than
2752 restore terminal settings:
2754 - installs a SIGINT handler that forwards SIGINT to the inferior.
2755 Otherwise a Ctrl-C pressed just while waiting for the initial
2756 stop would end up as a spurious Quit.
2758 - removes stdin from the event loop, which we need if attaching
2759 in the foreground, otherwise on targets that report an initial
2760 stop on attach (which are most) we'd process input/commands
2761 while we're in the event loop waiting for that stop. That is,
2762 before the attach continuation runs and the command is really
2764 target_terminal::inferior ();
2766 /* Set up execution context to know that we should return from
2767 wait_for_inferior as soon as the target reports a stop. */
2768 init_wait_for_inferior ();
2769 clear_proceed_status (0);
2771 inferior
->needs_setup
= 1;
2773 if (target_is_non_stop_p ())
2775 /* If we find that the current thread isn't stopped, explicitly
2776 do so now, because we're going to install breakpoints and
2780 /* The user requested an `attach&'; stop just one thread. */
2781 target_stop (inferior_ptid
);
2783 /* The user requested an `attach', so stop all threads of this
2785 target_stop (ptid_t (inferior_ptid
.pid ()));
2788 mode
= async_exec
? ATTACH_POST_WAIT_RESUME
: ATTACH_POST_WAIT_STOP
;
2790 /* Some system don't generate traps when attaching to inferior.
2791 E.g. Mach 3 or GNU hurd. */
2792 if (!target_attach_no_wait ())
2794 struct attach_command_continuation_args
*a
;
2796 /* Careful here. See comments in inferior.h. Basically some
2797 OSes don't ignore SIGSTOPs on continue requests anymore. We
2798 need a way for handle_inferior_event to reset the stop_signal
2799 variable after an attach, and this is what
2800 STOP_QUIETLY_NO_SIGSTOP is for. */
2801 inferior
->control
.stop_soon
= STOP_QUIETLY_NO_SIGSTOP
;
2803 /* Wait for stop. */
2804 a
= XNEW (struct attach_command_continuation_args
);
2805 a
->args
= xstrdup (args
);
2806 a
->from_tty
= from_tty
;
2808 add_inferior_continuation (attach_command_continuation
, a
,
2809 attach_command_continuation_free_args
);
2811 /* Let infrun consider waiting for events out of this
2813 inferior
->process_target ()->threads_executing
= true;
2815 if (!target_is_async_p ())
2816 mark_infrun_async_event_handler ();
2820 attach_post_wait (args
, from_tty
, mode
);
2823 /* We had just found out that the target was already attached to an
2824 inferior. PTID points at a thread of this new inferior, that is
2825 the most likely to be stopped right now, but not necessarily so.
2826 The new inferior is assumed to be already added to the inferior
2827 list at this point. If LEAVE_RUNNING, then leave the threads of
2828 this inferior running, except those we've explicitly seen reported
2832 notice_new_inferior (thread_info
*thr
, int leave_running
, int from_tty
)
2834 enum attach_post_wait_mode mode
2835 = leave_running
? ATTACH_POST_WAIT_RESUME
: ATTACH_POST_WAIT_NOTHING
;
2837 gdb::optional
<scoped_restore_current_thread
> restore_thread
;
2839 if (inferior_ptid
!= null_ptid
)
2840 restore_thread
.emplace ();
2842 /* Avoid reading registers -- we haven't fetched the target
2844 switch_to_thread_no_regs (thr
);
2846 /* When we "notice" a new inferior we need to do all the things we
2847 would normally do if we had just attached to it. */
2851 struct attach_command_continuation_args
*a
;
2852 struct inferior
*inferior
= current_inferior ();
2854 /* We're going to install breakpoints, and poke at memory,
2855 ensure that the inferior is stopped for a moment while we do
2857 target_stop (inferior_ptid
);
2859 inferior
->control
.stop_soon
= STOP_QUIETLY_REMOTE
;
2861 /* Wait for stop before proceeding. */
2862 a
= XNEW (struct attach_command_continuation_args
);
2863 a
->args
= xstrdup ("");
2864 a
->from_tty
= from_tty
;
2866 add_inferior_continuation (attach_command_continuation
, a
,
2867 attach_command_continuation_free_args
);
2872 attach_post_wait ("" /* args */, from_tty
, mode
);
2877 * takes a program previously attached to and detaches it.
2878 * The program resumes execution and will no longer stop
2879 * on signals, etc. We better not have left any breakpoints
2880 * in the program or it'll die when it hits one. For this
2881 * to work, it may be necessary for the process to have been
2882 * previously attached. It *might* work if the program was
2883 * started via the normal ptrace (PTRACE_TRACEME).
2887 detach_command (const char *args
, int from_tty
)
2889 dont_repeat (); /* Not for the faint of heart. */
2891 if (inferior_ptid
== null_ptid
)
2892 error (_("The program is not being run."));
2894 query_if_trace_running (from_tty
);
2896 disconnect_tracing ();
2898 target_detach (current_inferior (), from_tty
);
2900 /* The current inferior process was just detached successfully. Get
2901 rid of breakpoints that no longer make sense. Note we don't do
2902 this within target_detach because that is also used when
2903 following child forks, and in that case we will want to transfer
2904 breakpoints to the child, not delete them. */
2905 breakpoint_init_inferior (inf_exited
);
2907 /* If the solist is global across inferiors, don't clear it when we
2908 detach from a single inferior. */
2909 if (!gdbarch_has_global_solist (target_gdbarch ()))
2910 no_shared_libraries (NULL
, from_tty
);
2912 if (deprecated_detach_hook
)
2913 deprecated_detach_hook ();
2916 /* Disconnect from the current target without resuming it (leaving it
2917 waiting for a debugger).
2919 We'd better not have left any breakpoints in the program or the
2920 next debugger will get confused. Currently only supported for some
2921 remote targets, since the normal attach mechanisms don't work on
2922 stopped processes on some native platforms (e.g. GNU/Linux). */
2925 disconnect_command (const char *args
, int from_tty
)
2927 dont_repeat (); /* Not for the faint of heart. */
2928 query_if_trace_running (from_tty
);
2929 disconnect_tracing ();
2930 target_disconnect (args
, from_tty
);
2931 no_shared_libraries (NULL
, from_tty
);
2932 init_thread_list ();
2933 if (deprecated_detach_hook
)
2934 deprecated_detach_hook ();
2937 /* Stop PTID in the current target, and tag the PTID threads as having
2938 been explicitly requested to stop. PTID can be a thread, a
2939 process, or minus_one_ptid, meaning all threads of all inferiors of
2940 the current target. */
2943 stop_current_target_threads_ns (ptid_t ptid
)
2947 /* Tag the thread as having been explicitly requested to stop, so
2948 other parts of gdb know not to resume this thread automatically,
2949 if it was stopped due to an internal event. Limit this to
2950 non-stop mode, as when debugging a multi-threaded application in
2951 all-stop mode, we will only get one stop event --- it's undefined
2952 which thread will report the event. */
2953 set_stop_requested (current_inferior ()->process_target (),
2957 /* See inferior.h. */
2960 interrupt_target_1 (bool all_threads
)
2966 scoped_restore_current_thread restore_thread
;
2968 for (inferior
*inf
: all_inferiors ())
2970 switch_to_inferior_no_thread (inf
);
2971 stop_current_target_threads_ns (minus_one_ptid
);
2975 stop_current_target_threads_ns (inferior_ptid
);
2978 target_interrupt ();
2982 Stop the execution of the target while running in async mode, in
2983 the background. In all-stop, stop the whole process. In non-stop
2984 mode, stop the current thread only by default, or stop all threads
2985 if the `-a' switch is used. */
2988 interrupt_command (const char *args
, int from_tty
)
2990 if (target_can_async_p ())
2992 int all_threads
= 0;
2994 dont_repeat (); /* Not for the faint of heart. */
2997 && startswith (args
, "-a"))
3000 if (!non_stop
&& all_threads
)
3001 error (_("-a is meaningless in all-stop mode."));
3003 interrupt_target_1 (all_threads
);
3007 /* See inferior.h. */
3010 default_print_float_info (struct gdbarch
*gdbarch
, struct ui_file
*file
,
3011 struct frame_info
*frame
, const char *args
)
3014 int printed_something
= 0;
3016 for (regnum
= 0; regnum
< gdbarch_num_cooked_regs (gdbarch
); regnum
++)
3018 if (gdbarch_register_reggroup_p (gdbarch
, regnum
, float_reggroup
))
3020 printed_something
= 1;
3021 gdbarch_print_registers_info (gdbarch
, file
, frame
, regnum
, 1);
3024 if (!printed_something
)
3025 fprintf_filtered (file
, "No floating-point info "
3026 "available for this processor.\n");
3030 info_float_command (const char *args
, int from_tty
)
3032 struct frame_info
*frame
;
3034 if (!target_has_registers
)
3035 error (_("The program has no registers now."));
3037 frame
= get_selected_frame (NULL
);
3038 gdbarch_print_float_info (get_frame_arch (frame
), gdb_stdout
, frame
, args
);
3042 unset_command (const char *args
, int from_tty
)
3044 printf_filtered (_("\"unset\" must be followed by the "
3045 "name of an unset subcommand.\n"));
3046 help_list (unsetlist
, "unset ", all_commands
, gdb_stdout
);
3049 /* Implement `info proc' family of commands. */
3052 info_proc_cmd_1 (const char *args
, enum info_proc_what what
, int from_tty
)
3054 struct gdbarch
*gdbarch
= get_current_arch ();
3056 if (!target_info_proc (args
, what
))
3058 if (gdbarch_info_proc_p (gdbarch
))
3059 gdbarch_info_proc (gdbarch
, args
, what
);
3061 error (_("Not supported on this target."));
3065 /* Implement `info proc' when given without any further parameters. */
3068 info_proc_cmd (const char *args
, int from_tty
)
3070 info_proc_cmd_1 (args
, IP_MINIMAL
, from_tty
);
3073 /* Implement `info proc mappings'. */
3076 info_proc_cmd_mappings (const char *args
, int from_tty
)
3078 info_proc_cmd_1 (args
, IP_MAPPINGS
, from_tty
);
3081 /* Implement `info proc stat'. */
3084 info_proc_cmd_stat (const char *args
, int from_tty
)
3086 info_proc_cmd_1 (args
, IP_STAT
, from_tty
);
3089 /* Implement `info proc status'. */
3092 info_proc_cmd_status (const char *args
, int from_tty
)
3094 info_proc_cmd_1 (args
, IP_STATUS
, from_tty
);
3097 /* Implement `info proc cwd'. */
3100 info_proc_cmd_cwd (const char *args
, int from_tty
)
3102 info_proc_cmd_1 (args
, IP_CWD
, from_tty
);
3105 /* Implement `info proc cmdline'. */
3108 info_proc_cmd_cmdline (const char *args
, int from_tty
)
3110 info_proc_cmd_1 (args
, IP_CMDLINE
, from_tty
);
3113 /* Implement `info proc exe'. */
3116 info_proc_cmd_exe (const char *args
, int from_tty
)
3118 info_proc_cmd_1 (args
, IP_EXE
, from_tty
);
3121 /* Implement `info proc files'. */
3124 info_proc_cmd_files (const char *args
, int from_tty
)
3126 info_proc_cmd_1 (args
, IP_FILES
, from_tty
);
3129 /* Implement `info proc all'. */
3132 info_proc_cmd_all (const char *args
, int from_tty
)
3134 info_proc_cmd_1 (args
, IP_ALL
, from_tty
);
3137 /* Implement `show print finish'. */
3140 show_print_finish (struct ui_file
*file
, int from_tty
,
3141 struct cmd_list_element
*c
,
3144 fprintf_filtered (file
, _("\
3145 Printing of return value after `finish' is %s.\n"),
3150 /* This help string is used for the run, start, and starti commands.
3151 It is defined as a macro to prevent duplication. */
3153 #define RUN_ARGS_HELP \
3154 "You may specify arguments to give it.\n\
3155 Args may include \"*\", or \"[...]\"; they are expanded using the\n\
3156 shell that will start the program (specified by the \"$SHELL\" environment\n\
3157 variable). Input and output redirection with \">\", \"<\", or \">>\"\n\
3158 are also allowed.\n\
3160 With no arguments, uses arguments last specified (with \"run\" or \n\
3161 \"set args\"). To cancel previous arguments and run with no arguments,\n\
3162 use \"set args\" without arguments.\n\
3164 To start the inferior without using a shell, use \"set startup-with-shell off\"."
3166 void _initialize_infcmd ();
3168 _initialize_infcmd ()
3170 static struct cmd_list_element
*info_proc_cmdlist
;
3171 struct cmd_list_element
*c
= NULL
;
3172 const char *cmd_name
;
3174 /* Add the filename of the terminal connected to inferior I/O. */
3175 add_setshow_optional_filename_cmd ("inferior-tty", class_run
,
3176 &inferior_io_terminal_scratch
, _("\
3177 Set terminal for future runs of program being debugged."), _("\
3178 Show terminal for future runs of program being debugged."), _("\
3179 Usage: set inferior-tty [TTY]\n\n\
3180 If TTY is omitted, the default behavior of using the same terminal as GDB\n\
3182 set_inferior_tty_command
,
3183 show_inferior_tty_command
,
3184 &setlist
, &showlist
);
3185 cmd_name
= "inferior-tty";
3186 c
= lookup_cmd (&cmd_name
, setlist
, "", -1, 1);
3187 gdb_assert (c
!= NULL
);
3188 add_alias_cmd ("tty", c
, class_alias
, 0, &cmdlist
);
3191 add_setshow_string_noescape_cmd (cmd_name
, class_run
,
3192 &inferior_args_scratch
, _("\
3193 Set argument list to give program being debugged when it is started."), _("\
3194 Show argument list to give program being debugged when it is started."), _("\
3195 Follow this command with any number of args, to be passed to the program."),
3198 &setlist
, &showlist
);
3199 c
= lookup_cmd (&cmd_name
, setlist
, "", -1, 1);
3200 gdb_assert (c
!= NULL
);
3201 set_cmd_completer (c
, filename_completer
);
3204 add_setshow_string_noescape_cmd (cmd_name
, class_run
,
3205 &inferior_cwd_scratch
, _("\
3206 Set the current working directory to be used when the inferior is started.\n\
3207 Changing this setting does not have any effect on inferiors that are\n\
3210 Show the current working directory that is used when the inferior is started."),
3212 Use this command to change the current working directory that will be used\n\
3213 when the inferior is started. This setting does not affect GDB's current\n\
3214 working directory."),
3217 &setlist
, &showlist
);
3218 c
= lookup_cmd (&cmd_name
, setlist
, "", -1, 1);
3219 gdb_assert (c
!= NULL
);
3220 set_cmd_completer (c
, filename_completer
);
3222 c
= add_cmd ("environment", no_class
, environment_info
, _("\
3223 The environment to give the program, or one variable's value.\n\
3224 With an argument VAR, prints the value of environment variable VAR to\n\
3225 give the program being debugged. With no arguments, prints the entire\n\
3226 environment to be given to the program."), &showlist
);
3227 set_cmd_completer (c
, noop_completer
);
3229 add_prefix_cmd ("unset", no_class
, unset_command
,
3230 _("Complement to certain \"set\" commands."),
3231 &unsetlist
, "unset ", 0, &cmdlist
);
3233 c
= add_cmd ("environment", class_run
, unset_environment_command
, _("\
3234 Cancel environment variable VAR for the program.\n\
3235 This does not affect the program until the next \"run\" command."),
3237 set_cmd_completer (c
, noop_completer
);
3239 c
= add_cmd ("environment", class_run
, set_environment_command
, _("\
3240 Set environment variable value to give the program.\n\
3241 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
3242 VALUES of environment variables are uninterpreted strings.\n\
3243 This does not affect the program until the next \"run\" command."),
3245 set_cmd_completer (c
, noop_completer
);
3247 c
= add_com ("path", class_files
, path_command
, _("\
3248 Add directory DIR(s) to beginning of search path for object files.\n\
3249 $cwd in the path means the current working directory.\n\
3250 This path is equivalent to the $PATH shell variable. It is a list of\n\
3251 directories, separated by colons. These directories are searched to find\n\
3252 fully linked executable files and separately compiled object files as \
3254 set_cmd_completer (c
, filename_completer
);
3256 c
= add_cmd ("paths", no_class
, path_info
, _("\
3257 Current search path for finding object files.\n\
3258 $cwd in the path means the current working directory.\n\
3259 This path is equivalent to the $PATH shell variable. It is a list of\n\
3260 directories, separated by colons. These directories are searched to find\n\
3261 fully linked executable files and separately compiled object files as \
3264 set_cmd_completer (c
, noop_completer
);
3266 add_prefix_cmd ("kill", class_run
, kill_command
,
3267 _("Kill execution of program being debugged."),
3268 &killlist
, "kill ", 0, &cmdlist
);
3270 add_com ("attach", class_run
, attach_command
, _("\
3271 Attach to a process or file outside of GDB.\n\
3272 This command attaches to another target, of the same type as your last\n\
3273 \"target\" command (\"info files\" will show your target stack).\n\
3274 The command may take as argument a process id or a device file.\n\
3275 For a process id, you must have permission to send the process a signal,\n\
3276 and it must have the same effective uid as the debugger.\n\
3277 When using \"attach\" with a process id, the debugger finds the\n\
3278 program running in the process, looking first in the current working\n\
3279 directory, or (if not found there) using the source file search path\n\
3280 (see the \"directory\" command). You can also use the \"file\" command\n\
3281 to specify the program, and to load its symbol table."));
3283 add_prefix_cmd ("detach", class_run
, detach_command
, _("\
3284 Detach a process or file previously attached.\n\
3285 If a process, it is no longer traced, and it continues its execution. If\n\
3286 you were debugging a file, the file is closed and gdb no longer accesses it."),
3287 &detachlist
, "detach ", 0, &cmdlist
);
3289 add_com ("disconnect", class_run
, disconnect_command
, _("\
3290 Disconnect from a target.\n\
3291 The target will wait for another debugger to connect. Not available for\n\
3294 c
= add_com ("signal", class_run
, signal_command
, _("\
3295 Continue program with the specified signal.\n\
3296 Usage: signal SIGNAL\n\
3297 The SIGNAL argument is processed the same as the handle command.\n\
3299 An argument of \"0\" means continue the program without sending it a signal.\n\
3300 This is useful in cases where the program stopped because of a signal,\n\
3301 and you want to resume the program while discarding the signal.\n\
3303 In a multi-threaded program the signal is delivered to, or discarded from,\n\
3304 the current thread only."));
3305 set_cmd_completer (c
, signal_completer
);
3307 c
= add_com ("queue-signal", class_run
, queue_signal_command
, _("\
3308 Queue a signal to be delivered to the current thread when it is resumed.\n\
3309 Usage: queue-signal SIGNAL\n\
3310 The SIGNAL argument is processed the same as the handle command.\n\
3311 It is an error if the handling state of SIGNAL is \"nopass\".\n\
3313 An argument of \"0\" means remove any currently queued signal from\n\
3314 the current thread. This is useful in cases where the program stopped\n\
3315 because of a signal, and you want to resume it while discarding the signal.\n\
3317 In a multi-threaded program the signal is queued with, or discarded from,\n\
3318 the current thread only."));
3319 set_cmd_completer (c
, signal_completer
);
3321 add_com ("stepi", class_run
, stepi_command
, _("\
3322 Step one instruction exactly.\n\
3324 Argument N means step N times (or till program stops for another \
3326 add_com_alias ("si", "stepi", class_alias
, 0);
3328 add_com ("nexti", class_run
, nexti_command
, _("\
3329 Step one instruction, but proceed through subroutine calls.\n\
3331 Argument N means step N times (or till program stops for another \
3333 add_com_alias ("ni", "nexti", class_alias
, 0);
3335 add_com ("finish", class_run
, finish_command
, _("\
3336 Execute until selected stack frame returns.\n\
3338 Upon return, the value returned is printed and put in the value history."));
3339 add_com_alias ("fin", "finish", class_run
, 1);
3341 add_com ("next", class_run
, next_command
, _("\
3342 Step program, proceeding through subroutine calls.\n\
3344 Unlike \"step\", if the current source line calls a subroutine,\n\
3345 this command does not enter the subroutine, but instead steps over\n\
3346 the call, in effect treating it as a single source line."));
3347 add_com_alias ("n", "next", class_run
, 1);
3349 add_com ("step", class_run
, step_command
, _("\
3350 Step program until it reaches a different source line.\n\
3352 Argument N means step N times (or till program stops for another \
3354 add_com_alias ("s", "step", class_run
, 1);
3356 c
= add_com ("until", class_run
, until_command
, _("\
3357 Execute until past the current line or past a LOCATION.\n\
3358 Execute until the program reaches a source line greater than the current\n\
3359 or a specified location (same args as break command) within the current \
3361 set_cmd_completer (c
, location_completer
);
3362 add_com_alias ("u", "until", class_run
, 1);
3364 c
= add_com ("advance", class_run
, advance_command
, _("\
3365 Continue the program up to the given location (same form as args for break \
3367 Execution will also stop upon exit from the current stack frame."));
3368 set_cmd_completer (c
, location_completer
);
3370 c
= add_com ("jump", class_run
, jump_command
, _("\
3371 Continue program being debugged at specified line or address.\n\
3372 Usage: jump LOCATION\n\
3373 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
3374 for an address to start at."));
3375 set_cmd_completer (c
, location_completer
);
3376 add_com_alias ("j", "jump", class_run
, 1);
3378 add_com ("continue", class_run
, continue_command
, _("\
3379 Continue program being debugged, after signal or breakpoint.\n\
3380 Usage: continue [N]\n\
3381 If proceeding from breakpoint, a number N may be used as an argument,\n\
3382 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
3383 the breakpoint won't break until the Nth time it is reached).\n\
3385 If non-stop mode is enabled, continue only the current thread,\n\
3386 otherwise all the threads in the program are continued. To \n\
3387 continue all stopped threads in non-stop mode, use the -a option.\n\
3388 Specifying -a and an ignore count simultaneously is an error."));
3389 add_com_alias ("c", "cont", class_run
, 1);
3390 add_com_alias ("fg", "cont", class_run
, 1);
3392 c
= add_com ("run", class_run
, run_command
, _("\
3393 Start debugged program.\n"
3395 set_cmd_completer (c
, filename_completer
);
3396 add_com_alias ("r", "run", class_run
, 1);
3398 c
= add_com ("start", class_run
, start_command
, _("\
3399 Start the debugged program stopping at the beginning of the main procedure.\n"
3401 set_cmd_completer (c
, filename_completer
);
3403 c
= add_com ("starti", class_run
, starti_command
, _("\
3404 Start the debugged program stopping at the first instruction.\n"
3406 set_cmd_completer (c
, filename_completer
);
3408 add_com ("interrupt", class_run
, interrupt_command
,
3409 _("Interrupt the execution of the debugged program.\n\
3410 If non-stop mode is enabled, interrupt only the current thread,\n\
3411 otherwise all the threads in the program are stopped. To \n\
3412 interrupt all running threads in non-stop mode, use the -a option."));
3414 c
= add_info ("registers", info_registers_command
, _("\
3415 List of integer registers and their contents, for selected stack frame.\n\
3416 One or more register names as argument means describe the given registers.\n\
3417 One or more register group names as argument means describe the registers\n\
3418 in the named register groups."));
3419 add_info_alias ("r", "registers", 1);
3420 set_cmd_completer (c
, reg_or_group_completer
);
3422 c
= add_info ("all-registers", info_all_registers_command
, _("\
3423 List of all registers and their contents, for selected stack frame.\n\
3424 One or more register names as argument means describe the given registers.\n\
3425 One or more register group names as argument means describe the registers\n\
3426 in the named register groups."));
3427 set_cmd_completer (c
, reg_or_group_completer
);
3429 add_info ("program", info_program_command
,
3430 _("Execution status of the program."));
3432 add_info ("float", info_float_command
,
3433 _("Print the status of the floating point unit."));
3435 add_info ("vector", info_vector_command
,
3436 _("Print the status of the vector unit."));
3438 add_prefix_cmd ("proc", class_info
, info_proc_cmd
,
3440 Show additional information about a process.\n\
3441 Specify any process id, or use the program being debugged by default."),
3442 &info_proc_cmdlist
, "info proc ",
3443 1/*allow-unknown*/, &infolist
);
3445 add_cmd ("mappings", class_info
, info_proc_cmd_mappings
, _("\
3446 List memory regions mapped by the specified process."),
3447 &info_proc_cmdlist
);
3449 add_cmd ("stat", class_info
, info_proc_cmd_stat
, _("\
3450 List process info from /proc/PID/stat."),
3451 &info_proc_cmdlist
);
3453 add_cmd ("status", class_info
, info_proc_cmd_status
, _("\
3454 List process info from /proc/PID/status."),
3455 &info_proc_cmdlist
);
3457 add_cmd ("cwd", class_info
, info_proc_cmd_cwd
, _("\
3458 List current working directory of the specified process."),
3459 &info_proc_cmdlist
);
3461 add_cmd ("cmdline", class_info
, info_proc_cmd_cmdline
, _("\
3462 List command line arguments of the specified process."),
3463 &info_proc_cmdlist
);
3465 add_cmd ("exe", class_info
, info_proc_cmd_exe
, _("\
3466 List absolute filename for executable of the specified process."),
3467 &info_proc_cmdlist
);
3469 add_cmd ("files", class_info
, info_proc_cmd_files
, _("\
3470 List files opened by the specified process."),
3471 &info_proc_cmdlist
);
3473 add_cmd ("all", class_info
, info_proc_cmd_all
, _("\
3474 List all available info about the specified process."),
3475 &info_proc_cmdlist
);
3477 add_setshow_boolean_cmd ("finish", class_support
,
3478 &user_print_options
.finish_print
, _("\
3479 Set whether `finish' prints the return value."), _("\
3480 Show whether `finish' prints the return value."), NULL
,
3483 &setprintlist
, &showprintlist
);