1 /* Memory-access and commands for "inferior" process, for GDB.
3 Copyright (C) 1986-2019 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"
28 #include "gdbsupport/environ.h"
36 #include "completer.h"
38 #include "event-top.h"
39 #include "parser-defs.h"
41 #include "reggroups.h"
45 #include "observable.h"
46 #include "target-descriptions.h"
47 #include "user-regs.h"
48 #include "cli/cli-decode.h"
49 #include "gdbthread.h"
51 #include "inline-frame.h"
52 #include "tracepoint.h"
54 #include "continuations.h"
56 #include "cli/cli-utils.h"
58 #include "thread-fsm.h"
61 #include "gdbsupport/gdb_optional.h"
64 /* Local functions: */
66 static void until_next_command (int);
68 static void step_1 (int, int, const char *);
70 #define ERROR_NO_INFERIOR \
71 if (!target_has_execution) error (_("The program is not being run."));
73 /* Scratch area where string containing arguments to give to the
74 program will be stored by 'set args'. As soon as anything is
75 stored, notice_args_set will move it into per-inferior storage.
76 Arguments are separated by spaces. Empty string (pointer to '\0')
79 static char *inferior_args_scratch;
81 /* Scratch area where the new cwd will be stored by 'set cwd'. */
83 static char *inferior_cwd_scratch;
85 /* Scratch area where 'set inferior-tty' will store user-provided value.
86 We'll immediate copy it into per-inferior storage. */
88 static char *inferior_io_terminal_scratch;
90 /* Pid of our debugged inferior, or 0 if no inferior now.
91 Since various parts of infrun.c test this to see whether there is a program
92 being debugged it should be nonzero (currently 3 is used) for remote
97 /* Nonzero if stopped due to completion of a stack dummy routine. */
99 enum stop_stack_kind stop_stack_dummy;
101 /* Nonzero if stopped due to a random (unexpected) signal in inferior
104 int stopped_by_random_signal;
106 /* See inferior.h. */
108 int startup_with_shell = 1;
111 /* Accessor routines. */
113 /* Set the io terminal for the current inferior. Ownership of
114 TERMINAL_NAME is not transferred. */
117 set_inferior_io_terminal (const char *terminal_name)
119 xfree (current_inferior ()->terminal);
121 if (terminal_name != NULL && *terminal_name != '\0')
122 current_inferior ()->terminal = xstrdup (terminal_name);
124 current_inferior ()->terminal = NULL;
128 get_inferior_io_terminal (void)
130 return current_inferior ()->terminal;
134 set_inferior_tty_command (const char *args, int from_tty,
135 struct cmd_list_element *c)
137 /* CLI has assigned the user-provided value to inferior_io_terminal_scratch.
138 Now route it to current inferior. */
139 set_inferior_io_terminal (inferior_io_terminal_scratch);
143 show_inferior_tty_command (struct ui_file *file, int from_tty,
144 struct cmd_list_element *c, const char *value)
146 /* Note that we ignore the passed-in value in favor of computing it
148 const char *inferior_io_terminal = get_inferior_io_terminal ();
150 if (inferior_io_terminal == NULL)
151 inferior_io_terminal = "";
152 fprintf_filtered (gdb_stdout,
153 _("Terminal for future runs of program being debugged "
154 "is \"%s\".\n"), inferior_io_terminal);
158 get_inferior_args (void)
160 if (current_inferior ()->argc != 0)
164 n = construct_inferior_arguments (current_inferior ()->argc,
165 current_inferior ()->argv);
166 set_inferior_args (n);
170 if (current_inferior ()->args == NULL)
171 current_inferior ()->args = xstrdup ("");
173 return current_inferior ()->args;
176 /* Set the arguments for the current inferior. Ownership of
177 NEWARGS is not transferred. */
180 set_inferior_args (const char *newargs)
182 xfree (current_inferior ()->args);
183 current_inferior ()->args = newargs ? xstrdup (newargs) : NULL;
184 current_inferior ()->argc = 0;
185 current_inferior ()->argv = 0;
189 set_inferior_args_vector (int argc, char **argv)
191 current_inferior ()->argc = argc;
192 current_inferior ()->argv = argv;
195 /* Notice when `set args' is run. */
198 set_args_command (const char *args, int from_tty, struct cmd_list_element *c)
200 /* CLI has assigned the user-provided value to inferior_args_scratch.
201 Now route it to current inferior. */
202 set_inferior_args (inferior_args_scratch);
205 /* Notice when `show args' is run. */
208 show_args_command (struct ui_file *file, int from_tty,
209 struct cmd_list_element *c, const char *value)
211 /* Note that we ignore the passed-in value in favor of computing it
213 deprecated_show_value_hack (file, from_tty, c, get_inferior_args ());
216 /* See gdbsupport/common-inferior.h. */
219 set_inferior_cwd (const char *cwd)
221 struct inferior *inf = current_inferior ();
223 gdb_assert (inf != NULL);
228 inf->cwd.reset (xstrdup (cwd));
231 /* See gdbsupport/common-inferior.h. */
236 return current_inferior ()->cwd.get ();
239 /* Handle the 'set cwd' command. */
242 set_cwd_command (const char *args, int from_tty, struct cmd_list_element *c)
244 if (*inferior_cwd_scratch == '\0')
245 set_inferior_cwd (NULL);
247 set_inferior_cwd (inferior_cwd_scratch);
250 /* Handle the 'show cwd' command. */
253 show_cwd_command (struct ui_file *file, int from_tty,
254 struct cmd_list_element *c, const char *value)
256 const char *cwd = get_inferior_cwd ();
259 fprintf_filtered (gdb_stdout,
261 You have not set the inferior's current working directory.\n\
262 The inferior will inherit GDB's cwd if native debugging, or the remote\n\
263 server's cwd if remote debugging.\n"));
265 fprintf_filtered (gdb_stdout,
266 _("Current working directory that will be used "
267 "when starting the inferior is \"%s\".\n"), cwd);
271 /* Compute command-line string given argument vector. This does the
272 same shell processing as fork_inferior. */
275 construct_inferior_arguments (int argc, char **argv)
279 if (startup_with_shell)
282 /* This holds all the characters considered special to the
284 static const char special[] = "\"!&*|[]{}<>?`~^=;, \t\n";
285 static const char quote = '"';
287 /* This holds all the characters considered special to the
288 typical Unix shells. We include `^' because the SunOS
289 /bin/sh treats it as a synonym for `|'. */
290 static const char special[] = "\"!#$&*()\\|[]{}<>?'`~^; \t\n";
291 static const char quote = '\'';
297 /* We over-compute the size. It shouldn't matter. */
298 for (i = 0; i < argc; ++i)
299 length += 3 * strlen (argv[i]) + 1 + 2 * (argv[i][0] == '\0');
301 result = (char *) xmalloc (length);
304 for (i = 0; i < argc; ++i)
309 /* Need to handle empty arguments specially. */
310 if (argv[i][0] == '\0')
320 if (strpbrk (argv[i], special))
326 for (cp = argv[i]; *cp; ++cp)
330 /* A newline cannot be quoted with a backslash (it
331 just disappears), only by putting it inside
342 if (strchr (special, *cp) != NULL)
358 /* In this case we can't handle arguments that contain spaces,
359 tabs, or newlines -- see breakup_args(). */
363 for (i = 0; i < argc; ++i)
365 char *cp = strchr (argv[i], ' ');
367 cp = strchr (argv[i], '\t');
369 cp = strchr (argv[i], '\n');
371 error (_("can't handle command-line "
372 "argument containing whitespace"));
373 length += strlen (argv[i]) + 1;
376 result = (char *) xmalloc (length);
378 for (i = 0; i < argc; ++i)
381 strcat (result, " ");
382 strcat (result, argv[i]);
390 /* This function strips the '&' character (indicating background
391 execution) that is added as *the last* of the arguments ARGS of a
392 command. A copy of the incoming ARGS without the '&' is returned,
393 unless the resulting string after stripping is empty, in which case
394 NULL is returned. *BG_CHAR_P is an output boolean that indicates
395 whether the '&' character was found. */
397 static gdb::unique_xmalloc_ptr<char>
398 strip_bg_char (const char *args, int *bg_char_p)
402 if (args == NULL || *args == '\0')
408 p = args + strlen (args);
412 while (p > args && isspace (p[-1]))
417 return gdb::unique_xmalloc_ptr<char>
418 (savestring (args, p - args));
420 return gdb::unique_xmalloc_ptr<char> (nullptr);
424 return make_unique_xstrdup (args);
427 /* Common actions to take after creating any sort of inferior, by any
428 means (running, attaching, connecting, et cetera). The target
429 should be stopped. */
432 post_create_inferior (struct target_ops *target, int from_tty)
435 /* Be sure we own the terminal in case write operations are performed. */
436 target_terminal::ours_for_output ();
438 /* If the target hasn't taken care of this already, do it now.
439 Targets which need to access registers during to_open,
440 to_create_inferior, or to_attach should do it earlier; but many
442 target_find_description ();
444 /* Now that we know the register layout, retrieve current PC. But
445 if the PC is unavailable (e.g., we're opening a core file with
446 missing registers info), ignore it. */
447 thread_info *thr = inferior_thread ();
449 thr->suspend.stop_pc = 0;
452 thr->suspend.stop_pc = regcache_read_pc (get_current_regcache ());
454 catch (const gdb_exception_error &ex)
456 if (ex.error != NOT_AVAILABLE_ERROR)
462 const unsigned solib_add_generation
463 = current_program_space->solib_add_generation;
465 /* Create the hooks to handle shared library load and unload
467 solib_create_inferior_hook (from_tty);
469 if (current_program_space->solib_add_generation == solib_add_generation)
471 /* The platform-specific hook should load initial shared libraries,
472 but didn't. FROM_TTY will be incorrectly 0 but such solib
473 targets should be fixed anyway. Call it only after the solib
474 target has been initialized by solib_create_inferior_hook. */
477 warning (_("platform-specific solib_create_inferior_hook did "
478 "not load initial shared libraries."));
480 /* If the solist is global across processes, there's no need to
482 if (!gdbarch_has_global_solist (target_gdbarch ()))
483 solib_add (NULL, 0, auto_solib_add);
487 /* If the user sets watchpoints before execution having started,
488 then she gets software watchpoints, because GDB can't know which
489 target will end up being pushed, or if it supports hardware
490 watchpoints or not. breakpoint_re_set takes care of promoting
491 watchpoints to hardware watchpoints if possible, however, if this
492 new inferior doesn't load shared libraries or we don't pull in
493 symbols from any other source on this target/arch,
494 breakpoint_re_set is never called. Call it now so that software
495 watchpoints get a chance to be promoted to hardware watchpoints
496 if the now pushed target supports hardware watchpoints. */
497 breakpoint_re_set ();
499 gdb::observers::inferior_created.notify (target, from_tty);
502 /* Kill the inferior if already running. This function is designed
503 to be called when we are about to start the execution of the program
504 from the beginning. Ask the user to confirm that he wants to restart
505 the program being debugged when FROM_TTY is non-null. */
508 kill_if_already_running (int from_tty)
510 if (inferior_ptid != null_ptid && target_has_execution)
512 /* Bail out before killing the program if we will not be able to
514 target_require_runnable ();
517 && !query (_("The program being debugged has been started already.\n\
518 Start it from the beginning? ")))
519 error (_("Program not restarted."));
524 /* See inferior.h. */
527 prepare_execution_command (struct target_ops *target, int background)
529 /* If we get a request for running in the bg but the target
530 doesn't support it, error out. */
531 if (background && !target->can_async_p ())
532 error (_("Asynchronous execution not supported on this target."));
536 /* If we get a request for running in the fg, then we need to
537 simulate synchronous (fg) execution. Note no cleanup is
538 necessary for this. stdin is re-enabled whenever an error
539 reaches the top level. */
540 all_uis_on_sync_execution_starting ();
544 /* Determine how the new inferior will behave. */
548 /* Run program without any explicit stop during startup. */
551 /* Stop at the beginning of the program's main function. */
554 /* Stop at the first instruction of the program. */
555 RUN_STOP_AT_FIRST_INSN
558 /* Implement the "run" command. Force a stop during program start if
559 requested by RUN_HOW. */
562 run_command_1 (const char *args, int from_tty, enum run_how run_how)
564 const char *exec_file;
565 struct ui_out *uiout = current_uiout;
566 struct target_ops *run_target;
571 kill_if_already_running (from_tty);
573 init_wait_for_inferior ();
574 clear_breakpoint_hit_counts ();
576 /* Clean up any leftovers from other runs. Some other things from
577 this function should probably be moved into target_pre_inferior. */
578 target_pre_inferior (from_tty);
580 /* The comment here used to read, "The exec file is re-read every
581 time we do a generic_mourn_inferior, so we just have to worry
582 about the symbol file." The `generic_mourn_inferior' function
583 gets called whenever the program exits. However, suppose the
584 program exits, and *then* the executable file changes? We need
585 to check again here. Since reopen_exec_file doesn't do anything
586 if the timestamp hasn't changed, I don't see the harm. */
590 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (args, &async_exec);
591 args = stripped.get ();
593 /* Do validation and preparation before possibly changing anything
596 run_target = find_run_target ();
598 prepare_execution_command (run_target, async_exec);
600 if (non_stop && !run_target->supports_non_stop ())
601 error (_("The target does not support running in non-stop mode."));
603 /* Done. Can now set breakpoints, change inferior args, etc. */
605 /* Insert temporary breakpoint in main function if requested. */
606 if (run_how == RUN_STOP_AT_MAIN)
608 std::string arg = string_printf ("-qualified %s", main_name ());
609 tbreak_command (arg.c_str (), 0);
612 exec_file = get_exec_file (0);
614 /* We keep symbols from add-symbol-file, on the grounds that the
615 user might want to add some symbols before running the program
616 (right?). But sometimes (dynamic loading where the user manually
617 introduces the new symbols with add-symbol-file), the code which
618 the symbols describe does not persist between runs. Currently
619 the user has to manually nuke all symbols between runs if they
620 want them to go away (PR 2207). This is probably reasonable. */
622 /* If there were other args, beside '&', process them. */
624 set_inferior_args (args);
628 uiout->field_string (NULL, "Starting program");
631 uiout->field_string ("execfile", exec_file);
633 /* We call get_inferior_args() because we might need to compute
635 uiout->field_string ("infargs", get_inferior_args ());
640 /* We call get_inferior_args() because we might need to compute
642 run_target->create_inferior (exec_file,
643 std::string (get_inferior_args ()),
644 current_inferior ()->environment.envp (),
646 /* to_create_inferior should push the target, so after this point we
647 shouldn't refer to run_target again. */
650 /* We're starting off a new process. When we get out of here, in
651 non-stop mode, finish the state of all threads of that process,
652 but leave other threads alone, as they may be stopped in internal
653 events --- the frontend shouldn't see them as stopped. In
654 all-stop, always finish the state of all threads, as we may be
655 resuming more than just the new process. */
656 ptid_t finish_ptid = (non_stop
657 ? ptid_t (current_inferior ()->pid)
659 scoped_finish_thread_state finish_state (finish_ptid);
661 /* Pass zero for FROM_TTY, because at this point the "run" command
662 has done its thing; now we are setting up the running program. */
663 post_create_inferior (current_top_target (), 0);
665 /* Queue a pending event so that the program stops immediately. */
666 if (run_how == RUN_STOP_AT_FIRST_INSN)
668 thread_info *thr = inferior_thread ();
669 thr->suspend.waitstatus_pending_p = 1;
670 thr->suspend.waitstatus.kind = TARGET_WAITKIND_STOPPED;
671 thr->suspend.waitstatus.value.sig = GDB_SIGNAL_0;
674 /* Start the target running. Do not use -1 continuation as it would skip
675 breakpoint right at the entry point. */
676 proceed (regcache_read_pc (get_current_regcache ()), GDB_SIGNAL_0);
678 /* Since there was no error, there's no need to finish the thread
680 finish_state.release ();
684 run_command (const char *args, int from_tty)
686 run_command_1 (args, from_tty, RUN_NORMAL);
689 /* Start the execution of the program up until the beginning of the main
693 start_command (const char *args, int from_tty)
695 /* Some languages such as Ada need to search inside the program
696 minimal symbols for the location where to put the temporary
697 breakpoint before starting. */
698 if (!have_minimal_symbols ())
699 error (_("No symbol table loaded. Use the \"file\" command."));
701 /* Run the program until reaching the main procedure... */
702 run_command_1 (args, from_tty, RUN_STOP_AT_MAIN);
705 /* Start the execution of the program stopping at the first
709 starti_command (const char *args, int from_tty)
711 run_command_1 (args, from_tty, RUN_STOP_AT_FIRST_INSN);
715 proceed_thread_callback (struct thread_info *thread, void *arg)
717 /* We go through all threads individually instead of compressing
718 into a single target `resume_all' request, because some threads
719 may be stopped in internal breakpoints/events, or stopped waiting
720 for its turn in the displaced stepping queue (that is, they are
721 running && !executing). The target side has no idea about why
722 the thread is stopped, so a `resume_all' command would resume too
723 much. If/when GDB gains a way to tell the target `hold this
724 thread stopped until I say otherwise', then we can optimize
726 if (thread->state != THREAD_STOPPED)
729 switch_to_thread (thread);
730 clear_proceed_status (0);
731 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
736 ensure_valid_thread (void)
738 if (inferior_ptid == null_ptid
739 || inferior_thread ()->state == THREAD_EXITED)
740 error (_("Cannot execute this command without a live selected thread."));
743 /* If the user is looking at trace frames, any resumption of execution
744 is likely to mix up recorded and live target data. So simply
745 disallow those commands. */
748 ensure_not_tfind_mode (void)
750 if (get_traceframe_number () >= 0)
751 error (_("Cannot execute this command while looking at trace frames."));
754 /* Throw an error indicating the current thread is running. */
757 error_is_running (void)
759 error (_("Cannot execute this command while "
760 "the selected thread is running."));
763 /* Calls error_is_running if the current thread is running. */
766 ensure_not_running (void)
768 if (inferior_thread ()->state == THREAD_RUNNING)
773 continue_1 (int all_threads)
776 ensure_not_tfind_mode ();
778 if (non_stop && all_threads)
780 /* Don't error out if the current thread is running, because
781 there may be other stopped threads. */
783 /* Backup current thread and selected frame and restore on scope
785 scoped_restore_current_thread restore_thread;
787 iterate_over_threads (proceed_thread_callback, NULL);
789 if (current_ui->prompt_state == PROMPT_BLOCKED)
791 /* If all threads in the target were already running,
792 proceed_thread_callback ends up never calling proceed,
793 and so nothing calls this to put the inferior's terminal
794 settings in effect and remove stdin from the event loop,
795 which we must when running a foreground command. E.g.:
799 <all threads are running now>
802 <no thread was resumed, but the inferior now owns the terminal>
804 target_terminal::inferior ();
809 ensure_valid_thread ();
810 ensure_not_running ();
811 clear_proceed_status (0);
812 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
816 /* continue [-a] [proceed-count] [&] */
819 continue_command (const char *args, int from_tty)
826 /* Find out whether we must run in the background. */
827 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (args, &async_exec);
828 args = stripped.get ();
832 if (startswith (args, "-a"))
835 args += sizeof ("-a") - 1;
841 if (!non_stop && all_threads)
842 error (_("`-a' is meaningless in all-stop mode."));
844 if (args != NULL && all_threads)
845 error (_("Can't resume all threads and specify "
846 "proceed count simultaneously."));
848 /* If we have an argument left, set proceed count of breakpoint we
855 struct thread_info *tp;
858 tp = inferior_thread ();
862 struct target_waitstatus ws;
864 get_last_target_status (&last_ptid, &ws);
865 tp = find_thread_ptid (last_ptid);
868 bs = tp->control.stop_bpstat;
870 while ((stat = bpstat_num (&bs, &num)) != 0)
873 set_ignore_count (num,
874 parse_and_eval_long (args) - 1,
876 /* set_ignore_count prints a message ending with a period.
877 So print two spaces before "Continuing.". */
879 printf_filtered (" ");
883 if (!stopped && from_tty)
886 ("Not stopped at any breakpoint; argument ignored.\n");
891 ensure_not_tfind_mode ();
893 if (!non_stop || !all_threads)
895 ensure_valid_thread ();
896 ensure_not_running ();
899 prepare_execution_command (current_top_target (), async_exec);
902 printf_filtered (_("Continuing.\n"));
904 continue_1 (all_threads);
907 /* Record the starting point of a "step" or "next" command. */
910 set_step_frame (void)
912 frame_info *frame = get_current_frame ();
914 symtab_and_line sal = find_frame_sal (frame);
915 set_step_info (frame, sal);
917 CORE_ADDR pc = get_frame_pc (frame);
918 thread_info *tp = inferior_thread ();
919 tp->control.step_start_function = find_pc_function (pc);
922 /* Step until outside of current statement. */
925 step_command (const char *count_string, int from_tty)
927 step_1 (0, 0, count_string);
930 /* Likewise, but skip over subroutine calls as if single instructions. */
933 next_command (const char *count_string, int from_tty)
935 step_1 (1, 0, count_string);
938 /* Likewise, but step only one instruction. */
941 stepi_command (const char *count_string, int from_tty)
943 step_1 (0, 1, count_string);
947 nexti_command (const char *count_string, int from_tty)
949 step_1 (1, 1, count_string);
952 /* Data for the FSM that manages the step/next/stepi/nexti
955 struct step_command_fsm : public thread_fsm
957 /* How many steps left in a "step N"-like command. */
960 /* If true, this is a next/nexti, otherwise a step/stepi. */
961 int skip_subroutines;
963 /* If true, this is a stepi/nexti, otherwise a step/step. */
966 explicit step_command_fsm (struct interp *cmd_interp)
967 : thread_fsm (cmd_interp)
971 void clean_up (struct thread_info *thread) override;
972 bool should_stop (struct thread_info *thread) override;
973 enum async_reply_reason do_async_reply_reason () override;
976 /* Prepare for a step/next/etc. command. Any target resource
977 allocated here is undone in the FSM's clean_up method. */
980 step_command_fsm_prepare (struct step_command_fsm *sm,
981 int skip_subroutines, int single_inst,
982 int count, struct thread_info *thread)
984 sm->skip_subroutines = skip_subroutines;
985 sm->single_inst = single_inst;
988 /* Leave the si command alone. */
989 if (!sm->single_inst || sm->skip_subroutines)
990 set_longjmp_breakpoint (thread, get_frame_id (get_current_frame ()));
992 thread->control.stepping_command = 1;
995 static int prepare_one_step (struct step_command_fsm *sm);
998 step_1 (int skip_subroutines, int single_inst, const char *count_string)
1002 struct thread_info *thr;
1003 struct step_command_fsm *step_sm;
1006 ensure_not_tfind_mode ();
1007 ensure_valid_thread ();
1008 ensure_not_running ();
1010 gdb::unique_xmalloc_ptr<char> stripped
1011 = strip_bg_char (count_string, &async_exec);
1012 count_string = stripped.get ();
1014 prepare_execution_command (current_top_target (), async_exec);
1016 count = count_string ? parse_and_eval_long (count_string) : 1;
1018 clear_proceed_status (1);
1020 /* Setup the execution command state machine to handle all the COUNT
1022 thr = inferior_thread ();
1023 step_sm = new step_command_fsm (command_interp ());
1024 thr->thread_fsm = step_sm;
1026 step_command_fsm_prepare (step_sm, skip_subroutines,
1027 single_inst, count, thr);
1029 /* Do only one step for now, before returning control to the event
1030 loop. Let the continuation figure out how many other steps we
1031 need to do, and handle them one at the time, through
1033 if (!prepare_one_step (step_sm))
1034 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
1039 /* Stepped into an inline frame. Pretend that we've
1041 thr->thread_fsm->clean_up (thr);
1042 proceeded = normal_stop ();
1044 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
1045 all_uis_check_sync_execution_done ();
1049 /* Implementation of the 'should_stop' FSM method for stepping
1050 commands. Called after we are done with one step operation, to
1051 check whether we need to step again, before we print the prompt and
1052 return control to the user. If count is > 1, returns false, as we
1053 will need to keep going. */
1056 step_command_fsm::should_stop (struct thread_info *tp)
1058 if (tp->control.stop_step)
1060 /* There are more steps to make, and we did stop due to
1061 ending a stepping range. Do another step. */
1063 return prepare_one_step (this);
1071 /* Implementation of the 'clean_up' FSM method for stepping commands. */
1074 step_command_fsm::clean_up (struct thread_info *thread)
1076 if (!single_inst || skip_subroutines)
1077 delete_longjmp_breakpoint (thread->global_num);
1080 /* Implementation of the 'async_reply_reason' FSM method for stepping
1083 enum async_reply_reason
1084 step_command_fsm::do_async_reply_reason ()
1086 return EXEC_ASYNC_END_STEPPING_RANGE;
1089 /* Prepare for one step in "step N". The actual target resumption is
1090 done by the caller. Return true if we're done and should thus
1091 report a stop to the user. Returns false if the target needs to be
1095 prepare_one_step (struct step_command_fsm *sm)
1099 struct frame_info *frame = get_current_frame ();
1101 /* Don't assume THREAD is a valid thread id. It is set to -1 if
1102 the longjmp breakpoint was not required. Use the
1103 INFERIOR_PTID thread instead, which is the same thread when
1105 struct thread_info *tp = inferior_thread ();
1109 if (!sm->single_inst)
1113 /* Step at an inlined function behaves like "down". */
1114 if (!sm->skip_subroutines
1115 && inline_skipped_frames (tp))
1119 /* Pretend that we've ran. */
1120 resume_ptid = user_visible_resume_ptid (1);
1121 set_running (resume_ptid, 1);
1123 step_into_inline_frame (tp);
1125 return prepare_one_step (sm);
1128 pc = get_frame_pc (frame);
1129 find_pc_line_pc_range (pc,
1130 &tp->control.step_range_start,
1131 &tp->control.step_range_end);
1133 tp->control.may_range_step = 1;
1135 /* If we have no line info, switch to stepi mode. */
1136 if (tp->control.step_range_end == 0 && step_stop_if_no_debug)
1138 tp->control.step_range_start = tp->control.step_range_end = 1;
1139 tp->control.may_range_step = 0;
1141 else if (tp->control.step_range_end == 0)
1145 if (find_pc_partial_function (pc, &name,
1146 &tp->control.step_range_start,
1147 &tp->control.step_range_end) == 0)
1148 error (_("Cannot find bounds of current function"));
1150 target_terminal::ours_for_output ();
1151 printf_filtered (_("Single stepping until exit from function %s,"
1152 "\nwhich has no line number information.\n"),
1158 /* Say we are stepping, but stop after one insn whatever it does. */
1159 tp->control.step_range_start = tp->control.step_range_end = 1;
1160 if (!sm->skip_subroutines)
1162 Don't step over function calls, not even to functions lacking
1164 tp->control.step_over_calls = STEP_OVER_NONE;
1167 if (sm->skip_subroutines)
1168 tp->control.step_over_calls = STEP_OVER_ALL;
1174 sm->set_finished ();
1179 /* Continue program at specified address. */
1182 jump_command (const char *arg, int from_tty)
1184 struct gdbarch *gdbarch = get_current_arch ();
1191 ensure_not_tfind_mode ();
1192 ensure_valid_thread ();
1193 ensure_not_running ();
1195 /* Find out whether we must run in the background. */
1196 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (arg, &async_exec);
1197 arg = stripped.get ();
1199 prepare_execution_command (current_top_target (), async_exec);
1202 error_no_arg (_("starting address"));
1204 std::vector<symtab_and_line> sals
1205 = decode_line_with_last_displayed (arg, DECODE_LINE_FUNFIRSTLINE);
1206 if (sals.size () != 1)
1207 error (_("Unreasonable jump request"));
1209 symtab_and_line &sal = sals[0];
1211 if (sal.symtab == 0 && sal.pc == 0)
1212 error (_("No source file has been specified."));
1214 resolve_sal_pc (&sal); /* May error out. */
1216 /* See if we are trying to jump to another function. */
1217 fn = get_frame_function (get_current_frame ());
1218 sfn = find_pc_function (sal.pc);
1219 if (fn != NULL && sfn != fn)
1221 if (!query (_("Line %d is not in `%s'. Jump anyway? "), sal.line,
1222 SYMBOL_PRINT_NAME (fn)))
1224 error (_("Not confirmed."));
1231 struct obj_section *section;
1233 fixup_symbol_section (sfn, 0);
1234 section = SYMBOL_OBJ_SECTION (symbol_objfile (sfn), sfn);
1235 if (section_is_overlay (section)
1236 && !section_is_mapped (section))
1238 if (!query (_("WARNING!!! Destination is in "
1239 "unmapped overlay! Jump anyway? ")))
1241 error (_("Not confirmed."));
1251 printf_filtered (_("Continuing at "));
1252 fputs_filtered (paddress (gdbarch, addr), gdb_stdout);
1253 printf_filtered (".\n");
1256 clear_proceed_status (0);
1257 proceed (addr, GDB_SIGNAL_0);
1260 /* Continue program giving it specified signal. */
1263 signal_command (const char *signum_exp, int from_tty)
1265 enum gdb_signal oursig;
1268 dont_repeat (); /* Too dangerous. */
1270 ensure_not_tfind_mode ();
1271 ensure_valid_thread ();
1272 ensure_not_running ();
1274 /* Find out whether we must run in the background. */
1275 gdb::unique_xmalloc_ptr<char> stripped
1276 = strip_bg_char (signum_exp, &async_exec);
1277 signum_exp = stripped.get ();
1279 prepare_execution_command (current_top_target (), async_exec);
1282 error_no_arg (_("signal number"));
1284 /* It would be even slicker to make signal names be valid expressions,
1285 (the type could be "enum $signal" or some such), then the user could
1286 assign them to convenience variables. */
1287 oursig = gdb_signal_from_name (signum_exp);
1289 if (oursig == GDB_SIGNAL_UNKNOWN)
1291 /* No, try numeric. */
1292 int num = parse_and_eval_long (signum_exp);
1295 oursig = GDB_SIGNAL_0;
1297 oursig = gdb_signal_from_command (num);
1300 /* Look for threads other than the current that this command ends up
1301 resuming too (due to schedlock off), and warn if they'll get a
1302 signal delivered. "signal 0" is used to suppress a previous
1303 signal, but if the current thread is no longer the one that got
1304 the signal, then the user is potentially suppressing the signal
1305 of the wrong thread. */
1308 int must_confirm = 0;
1310 /* This indicates what will be resumed. Either a single thread,
1311 a whole process, or all threads of all processes. */
1312 ptid_t resume_ptid = user_visible_resume_ptid (0);
1314 for (thread_info *tp : all_non_exited_threads (resume_ptid))
1316 if (tp->ptid == inferior_ptid)
1319 if (tp->suspend.stop_signal != GDB_SIGNAL_0
1320 && signal_pass_state (tp->suspend.stop_signal))
1323 printf_unfiltered (_("Note:\n"));
1324 printf_unfiltered (_(" Thread %s previously stopped with signal %s, %s.\n"),
1325 print_thread_id (tp),
1326 gdb_signal_to_name (tp->suspend.stop_signal),
1327 gdb_signal_to_string (tp->suspend.stop_signal));
1333 && !query (_("Continuing thread %s (the current thread) with specified signal will\n"
1334 "still deliver the signals noted above to their respective threads.\n"
1335 "Continue anyway? "),
1336 print_thread_id (inferior_thread ())))
1337 error (_("Not confirmed."));
1342 if (oursig == GDB_SIGNAL_0)
1343 printf_filtered (_("Continuing with no signal.\n"));
1345 printf_filtered (_("Continuing with signal %s.\n"),
1346 gdb_signal_to_name (oursig));
1349 clear_proceed_status (0);
1350 proceed ((CORE_ADDR) -1, oursig);
1353 /* Queue a signal to be delivered to the current thread. */
1356 queue_signal_command (const char *signum_exp, int from_tty)
1358 enum gdb_signal oursig;
1359 struct thread_info *tp;
1362 ensure_not_tfind_mode ();
1363 ensure_valid_thread ();
1364 ensure_not_running ();
1366 if (signum_exp == NULL)
1367 error_no_arg (_("signal number"));
1369 /* It would be even slicker to make signal names be valid expressions,
1370 (the type could be "enum $signal" or some such), then the user could
1371 assign them to convenience variables. */
1372 oursig = gdb_signal_from_name (signum_exp);
1374 if (oursig == GDB_SIGNAL_UNKNOWN)
1376 /* No, try numeric. */
1377 int num = parse_and_eval_long (signum_exp);
1380 oursig = GDB_SIGNAL_0;
1382 oursig = gdb_signal_from_command (num);
1385 if (oursig != GDB_SIGNAL_0
1386 && !signal_pass_state (oursig))
1387 error (_("Signal handling set to not pass this signal to the program."));
1389 tp = inferior_thread ();
1390 tp->suspend.stop_signal = oursig;
1393 /* Data for the FSM that manages the until (with no argument)
1396 struct until_next_fsm : public thread_fsm
1398 /* The thread that as current when the command was executed. */
1401 until_next_fsm (struct interp *cmd_interp, int thread)
1402 : thread_fsm (cmd_interp),
1407 bool should_stop (struct thread_info *thread) override;
1408 void clean_up (struct thread_info *thread) override;
1409 enum async_reply_reason do_async_reply_reason () override;
1412 /* Implementation of the 'should_stop' FSM method for the until (with
1416 until_next_fsm::should_stop (struct thread_info *tp)
1418 if (tp->control.stop_step)
1424 /* Implementation of the 'clean_up' FSM method for the until (with no
1428 until_next_fsm::clean_up (struct thread_info *thread)
1430 delete_longjmp_breakpoint (thread->global_num);
1433 /* Implementation of the 'async_reply_reason' FSM method for the until
1434 (with no arg) command. */
1436 enum async_reply_reason
1437 until_next_fsm::do_async_reply_reason ()
1439 return EXEC_ASYNC_END_STEPPING_RANGE;
1442 /* Proceed until we reach a different source line with pc greater than
1443 our current one or exit the function. We skip calls in both cases.
1445 Note that eventually this command should probably be changed so
1446 that only source lines are printed out when we hit the breakpoint
1447 we set. This may involve changes to wait_for_inferior and the
1448 proceed status code. */
1451 until_next_command (int from_tty)
1453 struct frame_info *frame;
1455 struct symbol *func;
1456 struct symtab_and_line sal;
1457 struct thread_info *tp = inferior_thread ();
1458 int thread = tp->global_num;
1459 struct until_next_fsm *sm;
1461 clear_proceed_status (0);
1464 frame = get_current_frame ();
1466 /* Step until either exited from this function or greater
1467 than the current line (if in symbolic section) or pc (if
1470 pc = get_frame_pc (frame);
1471 func = find_pc_function (pc);
1475 struct bound_minimal_symbol msymbol = lookup_minimal_symbol_by_pc (pc);
1477 if (msymbol.minsym == NULL)
1478 error (_("Execution is not within a known function."));
1480 tp->control.step_range_start = BMSYMBOL_VALUE_ADDRESS (msymbol);
1481 /* The upper-bound of step_range is exclusive. In order to make PC
1482 within the range, set the step_range_end with PC + 1. */
1483 tp->control.step_range_end = pc + 1;
1487 sal = find_pc_line (pc, 0);
1489 tp->control.step_range_start = BLOCK_ENTRY_PC (SYMBOL_BLOCK_VALUE (func));
1490 tp->control.step_range_end = sal.end;
1492 tp->control.may_range_step = 1;
1494 tp->control.step_over_calls = STEP_OVER_ALL;
1496 set_longjmp_breakpoint (tp, get_frame_id (frame));
1497 delete_longjmp_breakpoint_cleanup lj_deleter (thread);
1499 sm = new until_next_fsm (command_interp (), tp->global_num);
1500 tp->thread_fsm = sm;
1501 lj_deleter.release ();
1503 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
1507 until_command (const char *arg, int from_tty)
1512 ensure_not_tfind_mode ();
1513 ensure_valid_thread ();
1514 ensure_not_running ();
1516 /* Find out whether we must run in the background. */
1517 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (arg, &async_exec);
1518 arg = stripped.get ();
1520 prepare_execution_command (current_top_target (), async_exec);
1523 until_break_command (arg, from_tty, 0);
1525 until_next_command (from_tty);
1529 advance_command (const char *arg, int from_tty)
1534 ensure_not_tfind_mode ();
1535 ensure_valid_thread ();
1536 ensure_not_running ();
1539 error_no_arg (_("a location"));
1541 /* Find out whether we must run in the background. */
1542 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (arg, &async_exec);
1543 arg = stripped.get ();
1545 prepare_execution_command (current_top_target (), async_exec);
1547 until_break_command (arg, from_tty, 1);
1550 /* Return the value of the result of a function at the end of a 'finish'
1551 command/BP. DTOR_DATA (if not NULL) can represent inferior registers
1552 right after an inferior call has finished. */
1555 get_return_value (struct value *function, struct type *value_type)
1557 regcache *stop_regs = get_current_regcache ();
1558 struct gdbarch *gdbarch = stop_regs->arch ();
1559 struct value *value;
1561 value_type = check_typedef (value_type);
1562 gdb_assert (TYPE_CODE (value_type) != TYPE_CODE_VOID);
1564 /* FIXME: 2003-09-27: When returning from a nested inferior function
1565 call, it's possible (with no help from the architecture vector)
1566 to locate and return/print a "struct return" value. This is just
1567 a more complicated case of what is already being done in the
1568 inferior function call code. In fact, when inferior function
1569 calls are made async, this will likely be made the norm. */
1571 switch (gdbarch_return_value (gdbarch, function, value_type,
1574 case RETURN_VALUE_REGISTER_CONVENTION:
1575 case RETURN_VALUE_ABI_RETURNS_ADDRESS:
1576 case RETURN_VALUE_ABI_PRESERVES_ADDRESS:
1577 value = allocate_value (value_type);
1578 gdbarch_return_value (gdbarch, function, value_type, stop_regs,
1579 value_contents_raw (value), NULL);
1581 case RETURN_VALUE_STRUCT_CONVENTION:
1585 internal_error (__FILE__, __LINE__, _("bad switch"));
1591 /* The captured function return value/type and its position in the
1594 struct return_value_info
1596 /* The captured return value. May be NULL if we weren't able to
1597 retrieve it. See get_return_value. */
1598 struct value *value;
1600 /* The return type. In some cases, we'll not be able extract the
1601 return value, but we always know the type. */
1604 /* If we captured a value, this is the value history index. */
1605 int value_history_index;
1608 /* Helper for print_return_value. */
1611 print_return_value_1 (struct ui_out *uiout, struct return_value_info *rv)
1613 if (rv->value != NULL)
1615 struct value_print_options opts;
1618 uiout->text ("Value returned is ");
1619 uiout->field_fmt ("gdb-result-var", "$%d",
1620 rv->value_history_index);
1621 uiout->text (" = ");
1622 get_user_print_options (&opts);
1624 if (opts.finish_print)
1627 value_print (rv->value, &stb, &opts);
1628 uiout->field_stream ("return-value", stb);
1631 uiout->field_string ("return-value", _("<not displayed>"));
1636 std::string type_name = type_to_string (rv->type);
1637 uiout->text ("Value returned has type: ");
1638 uiout->field_string ("return-type", type_name.c_str ());
1640 uiout->text (" Cannot determine contents\n");
1644 /* Print the result of a function at the end of a 'finish' command.
1645 RV points at an object representing the captured return value/type
1646 and its position in the value history. */
1649 print_return_value (struct ui_out *uiout, struct return_value_info *rv)
1651 if (rv->type == NULL
1652 || TYPE_CODE (check_typedef (rv->type)) == TYPE_CODE_VOID)
1657 /* print_return_value_1 can throw an exception in some
1658 circumstances. We need to catch this so that we still
1659 delete the breakpoint. */
1660 print_return_value_1 (uiout, rv);
1662 catch (const gdb_exception &ex)
1664 exception_print (gdb_stdout, ex);
1668 /* Data for the FSM that manages the finish command. */
1670 struct finish_command_fsm : public thread_fsm
1672 /* The momentary breakpoint set at the function's return address in
1674 breakpoint_up breakpoint;
1676 /* The function that we're stepping out of. */
1677 struct symbol *function = nullptr;
1679 /* If the FSM finishes successfully, this stores the function's
1681 struct return_value_info return_value_info {};
1683 explicit finish_command_fsm (struct interp *cmd_interp)
1684 : thread_fsm (cmd_interp)
1688 bool should_stop (struct thread_info *thread) override;
1689 void clean_up (struct thread_info *thread) override;
1690 struct return_value_info *return_value () override;
1691 enum async_reply_reason do_async_reply_reason () override;
1694 /* Implementation of the 'should_stop' FSM method for the finish
1695 commands. Detects whether the thread stepped out of the function
1696 successfully, and if so, captures the function's return value and
1697 marks the FSM finished. */
1700 finish_command_fsm::should_stop (struct thread_info *tp)
1702 struct return_value_info *rv = &return_value_info;
1704 if (function != NULL
1705 && bpstat_find_breakpoint (tp->control.stop_bpstat,
1706 breakpoint.get ()) != NULL)
1711 rv->type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function));
1712 if (rv->type == NULL)
1713 internal_error (__FILE__, __LINE__,
1714 _("finish_command: function has no target type"));
1716 if (TYPE_CODE (check_typedef (rv->type)) != TYPE_CODE_VOID)
1720 func = read_var_value (function, NULL, get_current_frame ());
1721 rv->value = get_return_value (func, rv->type);
1722 if (rv->value != NULL)
1723 rv->value_history_index = record_latest_value (rv->value);
1726 else if (tp->control.stop_step)
1728 /* Finishing from an inline frame, or reverse finishing. In
1729 either case, there's no way to retrieve the return value. */
1736 /* Implementation of the 'clean_up' FSM method for the finish
1740 finish_command_fsm::clean_up (struct thread_info *thread)
1742 breakpoint.reset ();
1743 delete_longjmp_breakpoint (thread->global_num);
1746 /* Implementation of the 'return_value' FSM method for the finish
1749 struct return_value_info *
1750 finish_command_fsm::return_value ()
1752 return &return_value_info;
1755 /* Implementation of the 'async_reply_reason' FSM method for the
1758 enum async_reply_reason
1759 finish_command_fsm::do_async_reply_reason ()
1761 if (execution_direction == EXEC_REVERSE)
1762 return EXEC_ASYNC_END_STEPPING_RANGE;
1764 return EXEC_ASYNC_FUNCTION_FINISHED;
1767 /* finish_backward -- helper function for finish_command. */
1770 finish_backward (struct finish_command_fsm *sm)
1772 struct symtab_and_line sal;
1773 struct thread_info *tp = inferior_thread ();
1775 CORE_ADDR func_addr;
1777 pc = get_frame_pc (get_current_frame ());
1779 if (find_pc_partial_function (pc, NULL, &func_addr, NULL) == 0)
1780 error (_("Cannot find bounds of current function"));
1782 sal = find_pc_line (func_addr, 0);
1784 tp->control.proceed_to_finish = 1;
1785 /* Special case: if we're sitting at the function entry point,
1786 then all we need to do is take a reverse singlestep. We
1787 don't need to set a breakpoint, and indeed it would do us
1790 Note that this can only happen at frame #0, since there's
1791 no way that a function up the stack can have a return address
1792 that's equal to its entry point. */
1796 struct frame_info *frame = get_selected_frame (NULL);
1797 struct gdbarch *gdbarch = get_frame_arch (frame);
1799 /* Set a step-resume at the function's entry point. Once that's
1800 hit, we'll do one more step backwards. */
1801 symtab_and_line sr_sal;
1803 sr_sal.pspace = get_frame_program_space (frame);
1804 insert_step_resume_breakpoint_at_sal (gdbarch,
1805 sr_sal, null_frame_id);
1807 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
1811 /* We're almost there -- we just need to back up by one more
1813 tp->control.step_range_start = tp->control.step_range_end = 1;
1814 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
1818 /* finish_forward -- helper function for finish_command. FRAME is the
1819 frame that called the function we're about to step out of. */
1822 finish_forward (struct finish_command_fsm *sm, struct frame_info *frame)
1824 struct frame_id frame_id = get_frame_id (frame);
1825 struct gdbarch *gdbarch = get_frame_arch (frame);
1826 struct symtab_and_line sal;
1827 struct thread_info *tp = inferior_thread ();
1829 sal = find_pc_line (get_frame_pc (frame), 0);
1830 sal.pc = get_frame_pc (frame);
1832 sm->breakpoint = set_momentary_breakpoint (gdbarch, sal,
1833 get_stack_frame_id (frame),
1836 /* set_momentary_breakpoint invalidates FRAME. */
1839 set_longjmp_breakpoint (tp, frame_id);
1841 /* We want to print return value, please... */
1842 tp->control.proceed_to_finish = 1;
1844 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
1847 /* Skip frames for "finish". */
1849 static struct frame_info *
1850 skip_finish_frames (struct frame_info *frame)
1852 struct frame_info *start;
1858 frame = skip_tailcall_frames (frame);
1862 frame = skip_unwritable_frames (frame);
1866 while (start != frame);
1871 /* "finish": Set a temporary breakpoint at the place the selected
1872 frame will return to, then continue. */
1875 finish_command (const char *arg, int from_tty)
1877 struct frame_info *frame;
1879 struct finish_command_fsm *sm;
1880 struct thread_info *tp;
1883 ensure_not_tfind_mode ();
1884 ensure_valid_thread ();
1885 ensure_not_running ();
1887 /* Find out whether we must run in the background. */
1888 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (arg, &async_exec);
1889 arg = stripped.get ();
1891 prepare_execution_command (current_top_target (), async_exec);
1894 error (_("The \"finish\" command does not take any arguments."));
1896 frame = get_prev_frame (get_selected_frame (_("No selected frame.")));
1898 error (_("\"finish\" not meaningful in the outermost frame."));
1900 clear_proceed_status (0);
1902 tp = inferior_thread ();
1904 sm = new finish_command_fsm (command_interp ());
1906 tp->thread_fsm = sm;
1908 /* Finishing from an inline frame is completely different. We don't
1909 try to show the "return value" - no way to locate it. */
1910 if (get_frame_type (get_selected_frame (_("No selected frame.")))
1913 /* Claim we are stepping in the calling frame. An empty step
1914 range means that we will stop once we aren't in a function
1915 called by that frame. We don't use the magic "1" value for
1916 step_range_end, because then infrun will think this is nexti,
1917 and not step over the rest of this inlined function call. */
1918 set_step_info (frame, {});
1919 tp->control.step_range_start = get_frame_pc (frame);
1920 tp->control.step_range_end = tp->control.step_range_start;
1921 tp->control.step_over_calls = STEP_OVER_ALL;
1923 /* Print info on the selected frame, including level number but not
1927 printf_filtered (_("Run till exit from "));
1928 print_stack_frame (get_selected_frame (NULL), 1, LOCATION, 0);
1931 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
1935 /* Find the function we will return from. */
1937 sm->function = find_pc_function (get_frame_pc (get_selected_frame (NULL)));
1939 /* Print info on the selected frame, including level number but not
1943 if (execution_direction == EXEC_REVERSE)
1944 printf_filtered (_("Run back to call of "));
1947 if (sm->function != NULL && TYPE_NO_RETURN (sm->function->type)
1948 && !query (_("warning: Function %s does not return normally.\n"
1949 "Try to finish anyway? "),
1950 SYMBOL_PRINT_NAME (sm->function)))
1951 error (_("Not confirmed."));
1952 printf_filtered (_("Run till exit from "));
1955 print_stack_frame (get_selected_frame (NULL), 1, LOCATION, 0);
1958 if (execution_direction == EXEC_REVERSE)
1959 finish_backward (sm);
1962 frame = skip_finish_frames (frame);
1965 error (_("Cannot find the caller frame."));
1967 finish_forward (sm, frame);
1973 info_program_command (const char *args, int from_tty)
1979 if (!target_has_execution)
1981 printf_filtered (_("The program being debugged is not being run.\n"));
1986 ptid = inferior_ptid;
1989 struct target_waitstatus ws;
1991 get_last_target_status (&ptid, &ws);
1994 if (ptid == null_ptid || ptid == minus_one_ptid)
1995 error (_("No selected thread."));
1997 thread_info *tp = find_thread_ptid (ptid);
1999 if (tp->state == THREAD_EXITED)
2000 error (_("Invalid selected thread."));
2001 else if (tp->state == THREAD_RUNNING)
2002 error (_("Selected thread is running."));
2004 bs = tp->control.stop_bpstat;
2005 stat = bpstat_num (&bs, &num);
2007 target_files_info ();
2008 printf_filtered (_("Program stopped at %s.\n"),
2009 paddress (target_gdbarch (), tp->suspend.stop_pc));
2010 if (tp->control.stop_step)
2011 printf_filtered (_("It stopped after being stepped.\n"));
2014 /* There may be several breakpoints in the same place, so this
2015 isn't as strange as it seems. */
2020 printf_filtered (_("It stopped at a breakpoint "
2021 "that has since been deleted.\n"));
2024 printf_filtered (_("It stopped at breakpoint %d.\n"), num);
2025 stat = bpstat_num (&bs, &num);
2028 else if (tp->suspend.stop_signal != GDB_SIGNAL_0)
2030 printf_filtered (_("It stopped with signal %s, %s.\n"),
2031 gdb_signal_to_name (tp->suspend.stop_signal),
2032 gdb_signal_to_string (tp->suspend.stop_signal));
2037 printf_filtered (_("Type \"info stack\" or \"info "
2038 "registers\" for more information.\n"));
2043 environment_info (const char *var, int from_tty)
2047 const char *val = current_inferior ()->environment.get (var);
2051 puts_filtered (var);
2052 puts_filtered (" = ");
2053 puts_filtered (val);
2054 puts_filtered ("\n");
2058 puts_filtered ("Environment variable \"");
2059 puts_filtered (var);
2060 puts_filtered ("\" not defined.\n");
2065 char **envp = current_inferior ()->environment.envp ();
2067 for (int idx = 0; envp[idx] != NULL; ++idx)
2069 puts_filtered (envp[idx]);
2070 puts_filtered ("\n");
2076 set_environment_command (const char *arg, int from_tty)
2078 const char *p, *val;
2082 error_no_arg (_("environment variable and value"));
2084 /* Find seperation between variable name and value. */
2085 p = (char *) strchr (arg, '=');
2086 val = (char *) strchr (arg, ' ');
2088 if (p != 0 && val != 0)
2090 /* We have both a space and an equals. If the space is before the
2091 equals, walk forward over the spaces til we see a nonspace
2092 (possibly the equals). */
2097 /* Now if the = is after the char following the spaces,
2098 take the char following the spaces. */
2102 else if (val != 0 && p == 0)
2106 error_no_arg (_("environment variable to set"));
2108 if (p == 0 || p[1] == 0)
2112 p = arg + strlen (arg); /* So that savestring below will work. */
2116 /* Not setting variable value to null. */
2118 while (*val == ' ' || *val == '\t')
2122 while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
2125 std::string var (arg, p - arg);
2128 printf_filtered (_("Setting environment variable "
2129 "\"%s\" to null value.\n"),
2131 current_inferior ()->environment.set (var.c_str (), "");
2134 current_inferior ()->environment.set (var.c_str (), val);
2138 unset_environment_command (const char *var, int from_tty)
2142 /* If there is no argument, delete all environment variables.
2143 Ask for confirmation if reading from the terminal. */
2144 if (!from_tty || query (_("Delete all environment variables? ")))
2145 current_inferior ()->environment.clear ();
2148 current_inferior ()->environment.unset (var);
2151 /* Handle the execution path (PATH variable). */
2153 static const char path_var_name[] = "PATH";
2156 path_info (const char *args, int from_tty)
2158 puts_filtered ("Executable and object file path: ");
2159 puts_filtered (current_inferior ()->environment.get (path_var_name));
2160 puts_filtered ("\n");
2163 /* Add zero or more directories to the front of the execution path. */
2166 path_command (const char *dirname, int from_tty)
2172 env = current_inferior ()->environment.get (path_var_name);
2173 /* Can be null if path is not set. */
2176 exec_path = xstrdup (env);
2177 mod_path (dirname, &exec_path);
2178 current_inferior ()->environment.set (path_var_name, exec_path);
2181 path_info (NULL, from_tty);
2186 pad_to_column (string_file &stream, int col)
2188 /* At least one space must be printed to separate columns. */
2190 const int size = stream.size ();
2192 stream.puts (n_spaces (col - size));
2195 /* Print out the register NAME with value VAL, to FILE, in the default
2199 default_print_one_register_info (struct ui_file *file,
2203 struct type *regtype = value_type (val);
2204 int print_raw_format;
2205 string_file format_stream;
2208 value_column_1 = 15,
2209 /* Give enough room for "0x", 16 hex digits and two spaces in
2210 preceding column. */
2211 value_column_2 = value_column_1 + 2 + 16 + 2,
2214 format_stream.puts (name);
2215 pad_to_column (format_stream, value_column_1);
2217 print_raw_format = (value_entirely_available (val)
2218 && !value_optimized_out (val));
2220 /* If virtual format is floating, print it that way, and in raw
2222 if (TYPE_CODE (regtype) == TYPE_CODE_FLT
2223 || TYPE_CODE (regtype) == TYPE_CODE_DECFLOAT)
2225 struct value_print_options opts;
2226 const gdb_byte *valaddr = value_contents_for_printing (val);
2227 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (regtype));
2229 get_user_print_options (&opts);
2233 value_embedded_offset (val), 0,
2234 &format_stream, 0, val, &opts, current_language);
2236 if (print_raw_format)
2238 pad_to_column (format_stream, value_column_2);
2239 format_stream.puts ("(raw ");
2240 print_hex_chars (&format_stream, valaddr, TYPE_LENGTH (regtype),
2242 format_stream.putc (')');
2247 struct value_print_options opts;
2249 /* Print the register in hex. */
2250 get_formatted_print_options (&opts, 'x');
2253 value_embedded_offset (val), 0,
2254 &format_stream, 0, val, &opts, current_language);
2255 /* If not a vector register, print it also according to its
2257 if (print_raw_format && TYPE_VECTOR (regtype) == 0)
2259 pad_to_column (format_stream, value_column_2);
2260 get_user_print_options (&opts);
2263 value_embedded_offset (val), 0,
2264 &format_stream, 0, val, &opts, current_language);
2268 fputs_filtered (format_stream.c_str (), file);
2269 fprintf_filtered (file, "\n");
2272 /* Print out the machine register regnum. If regnum is -1, print all
2273 registers (print_all == 1) or all non-float and non-vector
2274 registers (print_all == 0).
2276 For most machines, having all_registers_info() print the
2277 register(s) one per line is good enough. If a different format is
2278 required, (eg, for MIPS or Pyramid 90x, which both have lots of
2279 regs), or there is an existing convention for showing all the
2280 registers, define the architecture method PRINT_REGISTERS_INFO to
2281 provide that format. */
2284 default_print_registers_info (struct gdbarch *gdbarch,
2285 struct ui_file *file,
2286 struct frame_info *frame,
2287 int regnum, int print_all)
2290 const int numregs = gdbarch_num_cooked_regs (gdbarch);
2292 for (i = 0; i < numregs; i++)
2294 /* Decide between printing all regs, non-float / vector regs, or
2300 if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
2305 if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
2315 /* If the register name is empty, it is undefined for this
2316 processor, so don't display anything. */
2317 if (gdbarch_register_name (gdbarch, i) == NULL
2318 || *(gdbarch_register_name (gdbarch, i)) == '\0')
2321 default_print_one_register_info (file,
2322 gdbarch_register_name (gdbarch, i),
2323 value_of_register (i, frame));
2328 registers_info (const char *addr_exp, int fpregs)
2330 struct frame_info *frame;
2331 struct gdbarch *gdbarch;
2333 if (!target_has_registers)
2334 error (_("The program has no registers now."));
2335 frame = get_selected_frame (NULL);
2336 gdbarch = get_frame_arch (frame);
2340 gdbarch_print_registers_info (gdbarch, gdb_stdout,
2345 while (*addr_exp != '\0')
2350 /* Skip leading white space. */
2351 addr_exp = skip_spaces (addr_exp);
2353 /* Discard any leading ``$''. Check that there is something
2354 resembling a register following it. */
2355 if (addr_exp[0] == '$')
2357 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
2358 error (_("Missing register name"));
2360 /* Find the start/end of this register name/num/group. */
2362 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
2366 /* Figure out what we've found and display it. */
2368 /* A register name? */
2370 int regnum = user_reg_map_name_to_regnum (gdbarch, start, end - start);
2374 /* User registers lie completely outside of the range of
2375 normal registers. Catch them early so that the target
2377 if (regnum >= gdbarch_num_cooked_regs (gdbarch))
2379 struct value *regval = value_of_user_reg (regnum, frame);
2380 const char *regname = user_reg_map_regnum_to_name (gdbarch,
2383 /* Print in the same fashion
2384 gdbarch_print_registers_info's default
2385 implementation prints. */
2386 default_print_one_register_info (gdb_stdout,
2391 gdbarch_print_registers_info (gdbarch, gdb_stdout,
2392 frame, regnum, fpregs);
2397 /* A register group? */
2399 struct reggroup *group;
2401 for (group = reggroup_next (gdbarch, NULL);
2403 group = reggroup_next (gdbarch, group))
2405 /* Don't bother with a length check. Should the user
2406 enter a short register group name, go with the first
2407 group that matches. */
2408 if (strncmp (start, reggroup_name (group), end - start) == 0)
2416 regnum < gdbarch_num_cooked_regs (gdbarch);
2419 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
2420 gdbarch_print_registers_info (gdbarch,
2428 /* Nothing matched. */
2429 error (_("Invalid register `%.*s'"), (int) (end - start), start);
2434 info_all_registers_command (const char *addr_exp, int from_tty)
2436 registers_info (addr_exp, 1);
2440 info_registers_command (const char *addr_exp, int from_tty)
2442 registers_info (addr_exp, 0);
2446 print_vector_info (struct ui_file *file,
2447 struct frame_info *frame, const char *args)
2449 struct gdbarch *gdbarch = get_frame_arch (frame);
2451 if (gdbarch_print_vector_info_p (gdbarch))
2452 gdbarch_print_vector_info (gdbarch, file, frame, args);
2456 int printed_something = 0;
2458 for (regnum = 0; regnum < gdbarch_num_cooked_regs (gdbarch); regnum++)
2460 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
2462 printed_something = 1;
2463 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2466 if (!printed_something)
2467 fprintf_filtered (file, "No vector information\n");
2472 info_vector_command (const char *args, int from_tty)
2474 if (!target_has_registers)
2475 error (_("The program has no registers now."));
2477 print_vector_info (gdb_stdout, get_selected_frame (NULL), args);
2480 /* Kill the inferior process. Make us have no inferior. */
2483 kill_command (const char *arg, int from_tty)
2485 /* FIXME: This should not really be inferior_ptid (or target_has_execution).
2486 It should be a distinct flag that indicates that a target is active, cuz
2487 some targets don't have processes! */
2489 if (inferior_ptid == null_ptid)
2490 error (_("The program is not being run."));
2491 if (!query (_("Kill the program being debugged? ")))
2492 error (_("Not confirmed."));
2494 int pid = current_inferior ()->pid;
2495 /* Save the pid as a string before killing the inferior, since that
2496 may unpush the current target, and we need the string after. */
2497 std::string pid_str = target_pid_to_str (ptid_t (pid));
2498 int infnum = current_inferior ()->num;
2502 if (print_inferior_events)
2503 printf_unfiltered (_("[Inferior %d (%s) killed]\n"),
2504 infnum, pid_str.c_str ());
2506 /* If we still have other inferiors to debug, then don't mess with
2507 with their threads. */
2508 if (!have_inferiors ())
2510 init_thread_list (); /* Destroy thread info. */
2512 /* Killing off the inferior can leave us with a core file. If
2513 so, print the state we are left in. */
2514 if (target_has_stack)
2516 printf_filtered (_("In %s,\n"), target_longname);
2517 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
2520 bfd_cache_close_all ();
2523 /* Used in `attach&' command. Proceed threads of inferior INF iff
2524 they stopped due to debugger request, and when they did, they
2525 reported a clean stop (GDB_SIGNAL_0). Do not proceed threads that
2526 have been explicitly been told to stop. */
2529 proceed_after_attach (inferior *inf)
2531 /* Don't error out if the current thread is running, because
2532 there may be other stopped threads. */
2534 /* Backup current thread and selected frame. */
2535 scoped_restore_current_thread restore_thread;
2537 for (thread_info *thread : inf->non_exited_threads ())
2538 if (!thread->executing
2539 && !thread->stop_requested
2540 && thread->suspend.stop_signal == GDB_SIGNAL_0)
2542 switch_to_thread (thread);
2543 clear_proceed_status (0);
2544 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
2548 /* See inferior.h. */
2551 setup_inferior (int from_tty)
2553 struct inferior *inferior;
2555 inferior = current_inferior ();
2556 inferior->needs_setup = 0;
2558 /* If no exec file is yet known, try to determine it from the
2560 if (get_exec_file (0) == NULL)
2561 exec_file_locate_attach (inferior_ptid.pid (), 1, from_tty);
2564 reopen_exec_file ();
2568 /* Take any necessary post-attaching actions for this platform. */
2569 target_post_attach (inferior_ptid.pid ());
2571 post_create_inferior (current_top_target (), from_tty);
2574 /* What to do after the first program stops after attaching. */
2575 enum attach_post_wait_mode
2577 /* Do nothing. Leaves threads as they are. */
2578 ATTACH_POST_WAIT_NOTHING,
2580 /* Re-resume threads that are marked running. */
2581 ATTACH_POST_WAIT_RESUME,
2583 /* Stop all threads. */
2584 ATTACH_POST_WAIT_STOP,
2587 /* Called after we've attached to a process and we've seen it stop for
2588 the first time. If ASYNC_EXEC is true, re-resume threads that
2589 should be running. Else if ATTACH, */
2592 attach_post_wait (const char *args, int from_tty, enum attach_post_wait_mode mode)
2594 struct inferior *inferior;
2596 inferior = current_inferior ();
2597 inferior->control.stop_soon = NO_STOP_QUIETLY;
2599 if (inferior->needs_setup)
2600 setup_inferior (from_tty);
2602 if (mode == ATTACH_POST_WAIT_RESUME)
2604 /* The user requested an `attach&', so be sure to leave threads
2605 that didn't get a signal running. */
2607 /* Immediatelly resume all suspended threads of this inferior,
2608 and this inferior only. This should have no effect on
2609 already running threads. If a thread has been stopped with a
2610 signal, leave it be. */
2612 proceed_after_attach (inferior);
2615 if (inferior_thread ()->suspend.stop_signal == GDB_SIGNAL_0)
2617 clear_proceed_status (0);
2618 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
2622 else if (mode == ATTACH_POST_WAIT_STOP)
2624 /* The user requested a plain `attach', so be sure to leave
2625 the inferior stopped. */
2627 /* At least the current thread is already stopped. */
2629 /* In all-stop, by definition, all threads have to be already
2630 stopped at this point. In non-stop, however, although the
2631 selected thread is stopped, others may still be executing.
2632 Be sure to explicitly stop all threads of the process. This
2633 should have no effect on already stopped threads. */
2635 target_stop (ptid_t (inferior->pid));
2636 else if (target_is_non_stop_p ())
2638 struct thread_info *lowest = inferior_thread ();
2640 stop_all_threads ();
2642 /* It's not defined which thread will report the attach
2643 stop. For consistency, always select the thread with
2644 lowest GDB number, which should be the main thread, if it
2646 for (thread_info *thread : current_inferior ()->non_exited_threads ())
2647 if (thread->inf->num < lowest->inf->num
2648 || thread->per_inf_num < lowest->per_inf_num)
2651 switch_to_thread (lowest);
2654 /* Tell the user/frontend where we're stopped. */
2656 if (deprecated_attach_hook)
2657 deprecated_attach_hook ();
2661 struct attach_command_continuation_args
2665 enum attach_post_wait_mode mode;
2669 attach_command_continuation (void *args, int err)
2671 struct attach_command_continuation_args *a
2672 = (struct attach_command_continuation_args *) args;
2677 attach_post_wait (a->args, a->from_tty, a->mode);
2681 attach_command_continuation_free_args (void *args)
2683 struct attach_command_continuation_args *a
2684 = (struct attach_command_continuation_args *) args;
2690 /* "attach" command entry point. Takes a program started up outside
2691 of gdb and ``attaches'' to it. This stops it cold in its tracks
2692 and allows us to start debugging it. */
2695 attach_command (const char *args, int from_tty)
2698 struct target_ops *attach_target;
2699 struct inferior *inferior = current_inferior ();
2700 enum attach_post_wait_mode mode;
2702 dont_repeat (); /* Not for the faint of heart */
2704 if (gdbarch_has_global_solist (target_gdbarch ()))
2705 /* Don't complain if all processes share the same symbol
2708 else if (target_has_execution)
2710 if (query (_("A program is being debugged already. Kill it? ")))
2713 error (_("Not killed."));
2716 /* Clean up any leftovers from other runs. Some other things from
2717 this function should probably be moved into target_pre_inferior. */
2718 target_pre_inferior (from_tty);
2720 gdb::unique_xmalloc_ptr<char> stripped = strip_bg_char (args, &async_exec);
2721 args = stripped.get ();
2723 attach_target = find_attach_target ();
2725 prepare_execution_command (attach_target, async_exec);
2727 if (non_stop && !attach_target->supports_non_stop ())
2728 error (_("Cannot attach to this target in non-stop mode"));
2730 attach_target->attach (args, from_tty);
2731 /* to_attach should push the target, so after this point we
2732 shouldn't refer to attach_target again. */
2733 attach_target = NULL;
2735 /* Set up the "saved terminal modes" of the inferior
2736 based on what modes we are starting it with. */
2737 target_terminal::init ();
2739 /* Install inferior's terminal modes. This may look like a no-op,
2740 as we've just saved them above, however, this does more than
2741 restore terminal settings:
2743 - installs a SIGINT handler that forwards SIGINT to the inferior.
2744 Otherwise a Ctrl-C pressed just while waiting for the initial
2745 stop would end up as a spurious Quit.
2747 - removes stdin from the event loop, which we need if attaching
2748 in the foreground, otherwise on targets that report an initial
2749 stop on attach (which are most) we'd process input/commands
2750 while we're in the event loop waiting for that stop. That is,
2751 before the attach continuation runs and the command is really
2753 target_terminal::inferior ();
2755 /* Set up execution context to know that we should return from
2756 wait_for_inferior as soon as the target reports a stop. */
2757 init_wait_for_inferior ();
2758 clear_proceed_status (0);
2760 inferior->needs_setup = 1;
2762 if (target_is_non_stop_p ())
2764 /* If we find that the current thread isn't stopped, explicitly
2765 do so now, because we're going to install breakpoints and
2769 /* The user requested an `attach&'; stop just one thread. */
2770 target_stop (inferior_ptid);
2772 /* The user requested an `attach', so stop all threads of this
2774 target_stop (ptid_t (inferior_ptid.pid ()));
2777 mode = async_exec ? ATTACH_POST_WAIT_RESUME : ATTACH_POST_WAIT_STOP;
2779 /* Some system don't generate traps when attaching to inferior.
2780 E.g. Mach 3 or GNU hurd. */
2781 if (!target_attach_no_wait ())
2783 struct attach_command_continuation_args *a;
2785 /* Careful here. See comments in inferior.h. Basically some
2786 OSes don't ignore SIGSTOPs on continue requests anymore. We
2787 need a way for handle_inferior_event to reset the stop_signal
2788 variable after an attach, and this is what
2789 STOP_QUIETLY_NO_SIGSTOP is for. */
2790 inferior->control.stop_soon = STOP_QUIETLY_NO_SIGSTOP;
2792 /* Wait for stop. */
2793 a = XNEW (struct attach_command_continuation_args);
2794 a->args = xstrdup (args);
2795 a->from_tty = from_tty;
2797 add_inferior_continuation (attach_command_continuation, a,
2798 attach_command_continuation_free_args);
2800 if (!target_is_async_p ())
2801 mark_infrun_async_event_handler ();
2805 attach_post_wait (args, from_tty, mode);
2808 /* We had just found out that the target was already attached to an
2809 inferior. PTID points at a thread of this new inferior, that is
2810 the most likely to be stopped right now, but not necessarily so.
2811 The new inferior is assumed to be already added to the inferior
2812 list at this point. If LEAVE_RUNNING, then leave the threads of
2813 this inferior running, except those we've explicitly seen reported
2817 notice_new_inferior (thread_info *thr, int leave_running, int from_tty)
2819 enum attach_post_wait_mode mode
2820 = leave_running ? ATTACH_POST_WAIT_RESUME : ATTACH_POST_WAIT_NOTHING;
2822 gdb::optional<scoped_restore_current_thread> restore_thread;
2824 if (inferior_ptid != null_ptid)
2825 restore_thread.emplace ();
2827 /* Avoid reading registers -- we haven't fetched the target
2829 switch_to_thread_no_regs (thr);
2831 /* When we "notice" a new inferior we need to do all the things we
2832 would normally do if we had just attached to it. */
2836 struct attach_command_continuation_args *a;
2837 struct inferior *inferior = current_inferior ();
2839 /* We're going to install breakpoints, and poke at memory,
2840 ensure that the inferior is stopped for a moment while we do
2842 target_stop (inferior_ptid);
2844 inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
2846 /* Wait for stop before proceeding. */
2847 a = XNEW (struct attach_command_continuation_args);
2848 a->args = xstrdup ("");
2849 a->from_tty = from_tty;
2851 add_inferior_continuation (attach_command_continuation, a,
2852 attach_command_continuation_free_args);
2857 attach_post_wait ("" /* args */, from_tty, mode);
2862 * takes a program previously attached to and detaches it.
2863 * The program resumes execution and will no longer stop
2864 * on signals, etc. We better not have left any breakpoints
2865 * in the program or it'll die when it hits one. For this
2866 * to work, it may be necessary for the process to have been
2867 * previously attached. It *might* work if the program was
2868 * started via the normal ptrace (PTRACE_TRACEME).
2872 detach_command (const char *args, int from_tty)
2874 dont_repeat (); /* Not for the faint of heart. */
2876 if (inferior_ptid == null_ptid)
2877 error (_("The program is not being run."));
2879 query_if_trace_running (from_tty);
2881 disconnect_tracing ();
2883 target_detach (current_inferior (), from_tty);
2885 /* The current inferior process was just detached successfully. Get
2886 rid of breakpoints that no longer make sense. Note we don't do
2887 this within target_detach because that is also used when
2888 following child forks, and in that case we will want to transfer
2889 breakpoints to the child, not delete them. */
2890 breakpoint_init_inferior (inf_exited);
2892 /* If the solist is global across inferiors, don't clear it when we
2893 detach from a single inferior. */
2894 if (!gdbarch_has_global_solist (target_gdbarch ()))
2895 no_shared_libraries (NULL, from_tty);
2897 if (deprecated_detach_hook)
2898 deprecated_detach_hook ();
2901 /* Disconnect from the current target without resuming it (leaving it
2902 waiting for a debugger).
2904 We'd better not have left any breakpoints in the program or the
2905 next debugger will get confused. Currently only supported for some
2906 remote targets, since the normal attach mechanisms don't work on
2907 stopped processes on some native platforms (e.g. GNU/Linux). */
2910 disconnect_command (const char *args, int from_tty)
2912 dont_repeat (); /* Not for the faint of heart. */
2913 query_if_trace_running (from_tty);
2914 disconnect_tracing ();
2915 target_disconnect (args, from_tty);
2916 no_shared_libraries (NULL, from_tty);
2917 init_thread_list ();
2918 if (deprecated_detach_hook)
2919 deprecated_detach_hook ();
2923 interrupt_target_1 (int all_threads)
2928 ptid = minus_one_ptid;
2930 ptid = inferior_ptid;
2935 target_interrupt ();
2937 /* Tag the thread as having been explicitly requested to stop, so
2938 other parts of gdb know not to resume this thread automatically,
2939 if it was stopped due to an internal event. Limit this to
2940 non-stop mode, as when debugging a multi-threaded application in
2941 all-stop mode, we will only get one stop event --- it's undefined
2942 which thread will report the event. */
2944 set_stop_requested (ptid, 1);
2948 Stop the execution of the target while running in async mode, in
2949 the background. In all-stop, stop the whole process. In non-stop
2950 mode, stop the current thread only by default, or stop all threads
2951 if the `-a' switch is used. */
2954 interrupt_command (const char *args, int from_tty)
2956 if (target_can_async_p ())
2958 int all_threads = 0;
2960 dont_repeat (); /* Not for the faint of heart. */
2963 && startswith (args, "-a"))
2966 if (!non_stop && all_threads)
2967 error (_("-a is meaningless in all-stop mode."));
2969 interrupt_target_1 (all_threads);
2973 /* See inferior.h. */
2976 default_print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
2977 struct frame_info *frame, const char *args)
2980 int printed_something = 0;
2982 for (regnum = 0; regnum < gdbarch_num_cooked_regs (gdbarch); regnum++)
2984 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
2986 printed_something = 1;
2987 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2990 if (!printed_something)
2991 fprintf_filtered (file, "No floating-point info "
2992 "available for this processor.\n");
2996 info_float_command (const char *args, int from_tty)
2998 struct frame_info *frame;
3000 if (!target_has_registers)
3001 error (_("The program has no registers now."));
3003 frame = get_selected_frame (NULL);
3004 gdbarch_print_float_info (get_frame_arch (frame), gdb_stdout, frame, args);
3008 unset_command (const char *args, int from_tty)
3010 printf_filtered (_("\"unset\" must be followed by the "
3011 "name of an unset subcommand.\n"));
3012 help_list (unsetlist, "unset ", all_commands, gdb_stdout);
3015 /* Implement `info proc' family of commands. */
3018 info_proc_cmd_1 (const char *args, enum info_proc_what what, int from_tty)
3020 struct gdbarch *gdbarch = get_current_arch ();
3022 if (!target_info_proc (args, what))
3024 if (gdbarch_info_proc_p (gdbarch))
3025 gdbarch_info_proc (gdbarch, args, what);
3027 error (_("Not supported on this target."));
3031 /* Implement `info proc' when given without any futher parameters. */
3034 info_proc_cmd (const char *args, int from_tty)
3036 info_proc_cmd_1 (args, IP_MINIMAL, from_tty);
3039 /* Implement `info proc mappings'. */
3042 info_proc_cmd_mappings (const char *args, int from_tty)
3044 info_proc_cmd_1 (args, IP_MAPPINGS, from_tty);
3047 /* Implement `info proc stat'. */
3050 info_proc_cmd_stat (const char *args, int from_tty)
3052 info_proc_cmd_1 (args, IP_STAT, from_tty);
3055 /* Implement `info proc status'. */
3058 info_proc_cmd_status (const char *args, int from_tty)
3060 info_proc_cmd_1 (args, IP_STATUS, from_tty);
3063 /* Implement `info proc cwd'. */
3066 info_proc_cmd_cwd (const char *args, int from_tty)
3068 info_proc_cmd_1 (args, IP_CWD, from_tty);
3071 /* Implement `info proc cmdline'. */
3074 info_proc_cmd_cmdline (const char *args, int from_tty)
3076 info_proc_cmd_1 (args, IP_CMDLINE, from_tty);
3079 /* Implement `info proc exe'. */
3082 info_proc_cmd_exe (const char *args, int from_tty)
3084 info_proc_cmd_1 (args, IP_EXE, from_tty);
3087 /* Implement `info proc files'. */
3090 info_proc_cmd_files (const char *args, int from_tty)
3092 info_proc_cmd_1 (args, IP_FILES, from_tty);
3095 /* Implement `info proc all'. */
3098 info_proc_cmd_all (const char *args, int from_tty)
3100 info_proc_cmd_1 (args, IP_ALL, from_tty);
3103 /* Implement `show print finish'. */
3106 show_print_finish (struct ui_file *file, int from_tty,
3107 struct cmd_list_element *c,
3110 fprintf_filtered (file, _("\
3111 Printing of return value after `finish' is %s.\n"),
3116 /* This help string is used for the run, start, and starti commands.
3117 It is defined as a macro to prevent duplication. */
3119 #define RUN_ARGS_HELP \
3120 "You may specify arguments to give it.\n\
3121 Args may include \"*\", or \"[...]\"; they are expanded using the\n\
3122 shell that will start the program (specified by the \"$SHELL\" environment\n\
3123 variable). Input and output redirection with \">\", \"<\", or \">>\"\n\
3124 are also allowed.\n\
3126 With no arguments, uses arguments last specified (with \"run\" or \n\
3127 \"set args\"). To cancel previous arguments and run with no arguments,\n\
3128 use \"set args\" without arguments.\n\
3130 To start the inferior without using a shell, use \"set startup-with-shell off\"."
3133 _initialize_infcmd (void)
3135 static struct cmd_list_element *info_proc_cmdlist;
3136 struct cmd_list_element *c = NULL;
3137 const char *cmd_name;
3139 /* Add the filename of the terminal connected to inferior I/O. */
3140 add_setshow_optional_filename_cmd ("inferior-tty", class_run,
3141 &inferior_io_terminal_scratch, _("\
3142 Set terminal for future runs of program being debugged."), _("\
3143 Show terminal for future runs of program being debugged."), _("\
3144 Usage: set inferior-tty [TTY]\n\n\
3145 If TTY is omitted, the default behavior of using the same terminal as GDB\n\
3147 set_inferior_tty_command,
3148 show_inferior_tty_command,
3149 &setlist, &showlist);
3150 cmd_name = "inferior-tty";
3151 c = lookup_cmd (&cmd_name, setlist, "", -1, 1);
3152 gdb_assert (c != NULL);
3153 add_alias_cmd ("tty", c, class_alias, 0, &cmdlist);
3156 add_setshow_string_noescape_cmd (cmd_name, class_run,
3157 &inferior_args_scratch, _("\
3158 Set argument list to give program being debugged when it is started."), _("\
3159 Show argument list to give program being debugged when it is started."), _("\
3160 Follow this command with any number of args, to be passed to the program."),
3163 &setlist, &showlist);
3164 c = lookup_cmd (&cmd_name, setlist, "", -1, 1);
3165 gdb_assert (c != NULL);
3166 set_cmd_completer (c, filename_completer);
3169 add_setshow_string_noescape_cmd (cmd_name, class_run,
3170 &inferior_cwd_scratch, _("\
3171 Set the current working directory to be used when the inferior is started.\n\
3172 Changing this setting does not have any effect on inferiors that are\n\
3175 Show the current working directory that is used when the inferior is started."),
3177 Use this command to change the current working directory that will be used\n\
3178 when the inferior is started. This setting does not affect GDB's current\n\
3179 working directory."),
3182 &setlist, &showlist);
3183 c = lookup_cmd (&cmd_name, setlist, "", -1, 1);
3184 gdb_assert (c != NULL);
3185 set_cmd_completer (c, filename_completer);
3187 c = add_cmd ("environment", no_class, environment_info, _("\
3188 The environment to give the program, or one variable's value.\n\
3189 With an argument VAR, prints the value of environment variable VAR to\n\
3190 give the program being debugged. With no arguments, prints the entire\n\
3191 environment to be given to the program."), &showlist);
3192 set_cmd_completer (c, noop_completer);
3194 add_prefix_cmd ("unset", no_class, unset_command,
3195 _("Complement to certain \"set\" commands."),
3196 &unsetlist, "unset ", 0, &cmdlist);
3198 c = add_cmd ("environment", class_run, unset_environment_command, _("\
3199 Cancel environment variable VAR for the program.\n\
3200 This does not affect the program until the next \"run\" command."),
3202 set_cmd_completer (c, noop_completer);
3204 c = add_cmd ("environment", class_run, set_environment_command, _("\
3205 Set environment variable value to give the program.\n\
3206 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
3207 VALUES of environment variables are uninterpreted strings.\n\
3208 This does not affect the program until the next \"run\" command."),
3210 set_cmd_completer (c, noop_completer);
3212 c = add_com ("path", class_files, path_command, _("\
3213 Add directory DIR(s) to beginning of search path for object files.\n\
3214 $cwd in the path means the current working directory.\n\
3215 This path is equivalent to the $PATH shell variable. It is a list of\n\
3216 directories, separated by colons. These directories are searched to find\n\
3217 fully linked executable files and separately compiled object files as \
3219 set_cmd_completer (c, filename_completer);
3221 c = add_cmd ("paths", no_class, path_info, _("\
3222 Current search path for finding object files.\n\
3223 $cwd in the path means the current working directory.\n\
3224 This path is equivalent to the $PATH shell variable. It is a list of\n\
3225 directories, separated by colons. These directories are searched to find\n\
3226 fully linked executable files and separately compiled object files as \
3229 set_cmd_completer (c, noop_completer);
3231 add_prefix_cmd ("kill", class_run, kill_command,
3232 _("Kill execution of program being debugged."),
3233 &killlist, "kill ", 0, &cmdlist);
3235 add_com ("attach", class_run, attach_command, _("\
3236 Attach to a process or file outside of GDB.\n\
3237 This command attaches to another target, of the same type as your last\n\
3238 \"target\" command (\"info files\" will show your target stack).\n\
3239 The command may take as argument a process id or a device file.\n\
3240 For a process id, you must have permission to send the process a signal,\n\
3241 and it must have the same effective uid as the debugger.\n\
3242 When using \"attach\" with a process id, the debugger finds the\n\
3243 program running in the process, looking first in the current working\n\
3244 directory, or (if not found there) using the source file search path\n\
3245 (see the \"directory\" command). You can also use the \"file\" command\n\
3246 to specify the program, and to load its symbol table."));
3248 add_prefix_cmd ("detach", class_run, detach_command, _("\
3249 Detach a process or file previously attached.\n\
3250 If a process, it is no longer traced, and it continues its execution. If\n\
3251 you were debugging a file, the file is closed and gdb no longer accesses it."),
3252 &detachlist, "detach ", 0, &cmdlist);
3254 add_com ("disconnect", class_run, disconnect_command, _("\
3255 Disconnect from a target.\n\
3256 The target will wait for another debugger to connect. Not available for\n\
3259 c = add_com ("signal", class_run, signal_command, _("\
3260 Continue program with the specified signal.\n\
3261 Usage: signal SIGNAL\n\
3262 The SIGNAL argument is processed the same as the handle command.\n\
3264 An argument of \"0\" means continue the program without sending it a signal.\n\
3265 This is useful in cases where the program stopped because of a signal,\n\
3266 and you want to resume the program while discarding the signal.\n\
3268 In a multi-threaded program the signal is delivered to, or discarded from,\n\
3269 the current thread only."));
3270 set_cmd_completer (c, signal_completer);
3272 c = add_com ("queue-signal", class_run, queue_signal_command, _("\
3273 Queue a signal to be delivered to the current thread when it is resumed.\n\
3274 Usage: queue-signal SIGNAL\n\
3275 The SIGNAL argument is processed the same as the handle command.\n\
3276 It is an error if the handling state of SIGNAL is \"nopass\".\n\
3278 An argument of \"0\" means remove any currently queued signal from\n\
3279 the current thread. This is useful in cases where the program stopped\n\
3280 because of a signal, and you want to resume it while discarding the signal.\n\
3282 In a multi-threaded program the signal is queued with, or discarded from,\n\
3283 the current thread only."));
3284 set_cmd_completer (c, signal_completer);
3286 add_com ("stepi", class_run, stepi_command, _("\
3287 Step one instruction exactly.\n\
3289 Argument N means step N times (or till program stops for another \
3291 add_com_alias ("si", "stepi", class_alias, 0);
3293 add_com ("nexti", class_run, nexti_command, _("\
3294 Step one instruction, but proceed through subroutine calls.\n\
3296 Argument N means step N times (or till program stops for another \
3298 add_com_alias ("ni", "nexti", class_alias, 0);
3300 add_com ("finish", class_run, finish_command, _("\
3301 Execute until selected stack frame returns.\n\
3303 Upon return, the value returned is printed and put in the value history."));
3304 add_com_alias ("fin", "finish", class_run, 1);
3306 add_com ("next", class_run, next_command, _("\
3307 Step program, proceeding through subroutine calls.\n\
3309 Unlike \"step\", if the current source line calls a subroutine,\n\
3310 this command does not enter the subroutine, but instead steps over\n\
3311 the call, in effect treating it as a single source line."));
3312 add_com_alias ("n", "next", class_run, 1);
3314 add_com ("step", class_run, step_command, _("\
3315 Step program until it reaches a different source line.\n\
3317 Argument N means step N times (or till program stops for another \
3319 add_com_alias ("s", "step", class_run, 1);
3321 c = add_com ("until", class_run, until_command, _("\
3322 Execute until past the current line or past a LOCATION.\n\
3323 Execute until the program reaches a source line greater than the current\n\
3324 or a specified location (same args as break command) within the current \
3326 set_cmd_completer (c, location_completer);
3327 add_com_alias ("u", "until", class_run, 1);
3329 c = add_com ("advance", class_run, advance_command, _("\
3330 Continue the program up to the given location (same form as args for break \
3332 Execution will also stop upon exit from the current stack frame."));
3333 set_cmd_completer (c, location_completer);
3335 c = add_com ("jump", class_run, jump_command, _("\
3336 Continue program being debugged at specified line or address.\n\
3337 Usage: jump LOCATION\n\
3338 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
3339 for an address to start at."));
3340 set_cmd_completer (c, location_completer);
3341 add_com_alias ("j", "jump", class_run, 1);
3343 add_com ("continue", class_run, continue_command, _("\
3344 Continue program being debugged, after signal or breakpoint.\n\
3345 Usage: continue [N]\n\
3346 If proceeding from breakpoint, a number N may be used as an argument,\n\
3347 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
3348 the breakpoint won't break until the Nth time it is reached).\n\
3350 If non-stop mode is enabled, continue only the current thread,\n\
3351 otherwise all the threads in the program are continued. To \n\
3352 continue all stopped threads in non-stop mode, use the -a option.\n\
3353 Specifying -a and an ignore count simultaneously is an error."));
3354 add_com_alias ("c", "cont", class_run, 1);
3355 add_com_alias ("fg", "cont", class_run, 1);
3357 c = add_com ("run", class_run, run_command, _("\
3358 Start debugged program.\n"
3360 set_cmd_completer (c, filename_completer);
3361 add_com_alias ("r", "run", class_run, 1);
3363 c = add_com ("start", class_run, start_command, _("\
3364 Start the debugged program stopping at the beginning of the main procedure.\n"
3366 set_cmd_completer (c, filename_completer);
3368 c = add_com ("starti", class_run, starti_command, _("\
3369 Start the debugged program stopping at the first instruction.\n"
3371 set_cmd_completer (c, filename_completer);
3373 add_com ("interrupt", class_run, interrupt_command,
3374 _("Interrupt the execution of the debugged program.\n\
3375 If non-stop mode is enabled, interrupt only the current thread,\n\
3376 otherwise all the threads in the program are stopped. To \n\
3377 interrupt all running threads in non-stop mode, use the -a option."));
3379 c = add_info ("registers", info_registers_command, _("\
3380 List of integer registers and their contents, for selected stack frame.\n\
3381 One or more register names as argument means describe the given registers.\n\
3382 One or more register group names as argument means describe the registers\n\
3383 in the named register groups."));
3384 add_info_alias ("r", "registers", 1);
3385 set_cmd_completer (c, reg_or_group_completer);
3387 c = add_info ("all-registers", info_all_registers_command, _("\
3388 List of all registers and their contents, for selected stack frame.\n\
3389 One or more register names as argument means describe the given registers.\n\
3390 One or more register group names as argument means describe the registers\n\
3391 in the named register groups."));
3392 set_cmd_completer (c, reg_or_group_completer);
3394 add_info ("program", info_program_command,
3395 _("Execution status of the program."));
3397 add_info ("float", info_float_command,
3398 _("Print the status of the floating point unit."));
3400 add_info ("vector", info_vector_command,
3401 _("Print the status of the vector unit."));
3403 add_prefix_cmd ("proc", class_info, info_proc_cmd,
3405 Show additional information about a process.\n\
3406 Specify any process id, or use the program being debugged by default."),
3407 &info_proc_cmdlist, "info proc ",
3408 1/*allow-unknown*/, &infolist);
3410 add_cmd ("mappings", class_info, info_proc_cmd_mappings, _("\
3411 List memory regions mapped by the specified process."),
3412 &info_proc_cmdlist);
3414 add_cmd ("stat", class_info, info_proc_cmd_stat, _("\
3415 List process info from /proc/PID/stat."),
3416 &info_proc_cmdlist);
3418 add_cmd ("status", class_info, info_proc_cmd_status, _("\
3419 List process info from /proc/PID/status."),
3420 &info_proc_cmdlist);
3422 add_cmd ("cwd", class_info, info_proc_cmd_cwd, _("\
3423 List current working directory of the specified process."),
3424 &info_proc_cmdlist);
3426 add_cmd ("cmdline", class_info, info_proc_cmd_cmdline, _("\
3427 List command line arguments of the specified process."),
3428 &info_proc_cmdlist);
3430 add_cmd ("exe", class_info, info_proc_cmd_exe, _("\
3431 List absolute filename for executable of the specified process."),
3432 &info_proc_cmdlist);
3434 add_cmd ("files", class_info, info_proc_cmd_files, _("\
3435 List files opened by the specified process."),
3436 &info_proc_cmdlist);
3438 add_cmd ("all", class_info, info_proc_cmd_all, _("\
3439 List all available info about the specified process."),
3440 &info_proc_cmdlist);
3442 add_setshow_boolean_cmd ("finish", class_support,
3443 &user_print_options.finish_print, _("\
3444 Set whether `finish' prints the return value."), _("\
3445 Show whether `finish' prints the return value."), NULL,
3448 &setprintlist, &showprintlist);