1 /* Memory-access and commands for "inferior" process, for GDB.
3 Copyright (C) 1986-2016 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"
36 #include "completer.h"
38 #include "event-top.h"
39 #include "parser-defs.h"
41 #include "reggroups.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"
62 /* Local functions: */
64 static void nofp_registers_info (char *, int);
66 static void until_next_command (int);
68 static void until_command (char *, int);
70 static void path_info (char *, int);
72 static void path_command (char *, int);
74 static void unset_command (char *, int);
76 static void float_info (char *, int);
78 static void disconnect_command (char *, int);
80 static void unset_environment_command (char *, int);
82 static void set_environment_command (char *, int);
84 static void environment_info (char *, int);
86 static void program_info (char *, int);
88 static void finish_command (char *, int);
90 static void signal_command (char *, int);
92 static void jump_command (char *, int);
94 static void step_1 (int, int, char *);
96 static void next_command (char *, int);
98 static void step_command (char *, int);
100 static void run_command (char *, int);
102 void _initialize_infcmd (void);
104 #define ERROR_NO_INFERIOR \
105 if (!target_has_execution) error (_("The program is not being run."));
107 /* Scratch area where string containing arguments to give to the
108 program will be stored by 'set args'. As soon as anything is
109 stored, notice_args_set will move it into per-inferior storage.
110 Arguments are separated by spaces. Empty string (pointer to '\0')
113 static char *inferior_args_scratch;
115 /* Scratch area where 'set inferior-tty' will store user-provided value.
116 We'll immediate copy it into per-inferior storage. */
118 static char *inferior_io_terminal_scratch;
120 /* Pid of our debugged inferior, or 0 if no inferior now.
121 Since various parts of infrun.c test this to see whether there is a program
122 being debugged it should be nonzero (currently 3 is used) for remote
125 ptid_t inferior_ptid;
127 /* Address at which inferior stopped. */
131 /* Nonzero if stopped due to completion of a stack dummy routine. */
133 enum stop_stack_kind stop_stack_dummy;
135 /* Nonzero if stopped due to a random (unexpected) signal in inferior
138 int stopped_by_random_signal;
140 /* See inferior.h. */
142 int startup_with_shell = 1;
145 /* Accessor routines. */
147 /* Set the io terminal for the current inferior. Ownership of
148 TERMINAL_NAME is not transferred. */
151 set_inferior_io_terminal (const char *terminal_name)
153 xfree (current_inferior ()->terminal);
155 if (terminal_name != NULL && *terminal_name != '\0')
156 current_inferior ()->terminal = xstrdup (terminal_name);
158 current_inferior ()->terminal = NULL;
162 get_inferior_io_terminal (void)
164 return current_inferior ()->terminal;
168 set_inferior_tty_command (char *args, int from_tty,
169 struct cmd_list_element *c)
171 /* CLI has assigned the user-provided value to inferior_io_terminal_scratch.
172 Now route it to current inferior. */
173 set_inferior_io_terminal (inferior_io_terminal_scratch);
177 show_inferior_tty_command (struct ui_file *file, int from_tty,
178 struct cmd_list_element *c, const char *value)
180 /* Note that we ignore the passed-in value in favor of computing it
182 const char *inferior_io_terminal = get_inferior_io_terminal ();
184 if (inferior_io_terminal == NULL)
185 inferior_io_terminal = "";
186 fprintf_filtered (gdb_stdout,
187 _("Terminal for future runs of program being debugged "
188 "is \"%s\".\n"), inferior_io_terminal);
192 get_inferior_args (void)
194 if (current_inferior ()->argc != 0)
198 n = construct_inferior_arguments (current_inferior ()->argc,
199 current_inferior ()->argv);
200 set_inferior_args (n);
204 if (current_inferior ()->args == NULL)
205 current_inferior ()->args = xstrdup ("");
207 return current_inferior ()->args;
210 /* Set the arguments for the current inferior. Ownership of
211 NEWARGS is not transferred. */
214 set_inferior_args (char *newargs)
216 xfree (current_inferior ()->args);
217 current_inferior ()->args = newargs ? xstrdup (newargs) : NULL;
218 current_inferior ()->argc = 0;
219 current_inferior ()->argv = 0;
223 set_inferior_args_vector (int argc, char **argv)
225 current_inferior ()->argc = argc;
226 current_inferior ()->argv = argv;
229 /* Notice when `set args' is run. */
232 set_args_command (char *args, int from_tty, struct cmd_list_element *c)
234 /* CLI has assigned the user-provided value to inferior_args_scratch.
235 Now route it to current inferior. */
236 set_inferior_args (inferior_args_scratch);
239 /* Notice when `show args' is run. */
242 show_args_command (struct ui_file *file, int from_tty,
243 struct cmd_list_element *c, const char *value)
245 /* Note that we ignore the passed-in value in favor of computing it
247 deprecated_show_value_hack (file, from_tty, c, get_inferior_args ());
251 /* Compute command-line string given argument vector. This does the
252 same shell processing as fork_inferior. */
255 construct_inferior_arguments (int argc, char **argv)
259 if (startup_with_shell)
262 /* This holds all the characters considered special to the
264 char *special = "\"!&*|[]{}<>?`~^=;, \t\n";
265 const char quote = '"';
267 /* This holds all the characters considered special to the
268 typical Unix shells. We include `^' because the SunOS
269 /bin/sh treats it as a synonym for `|'. */
270 char *special = "\"!#$&*()\\|[]{}<>?'`~^; \t\n";
271 const char quote = '\'';
277 /* We over-compute the size. It shouldn't matter. */
278 for (i = 0; i < argc; ++i)
279 length += 3 * strlen (argv[i]) + 1 + 2 * (argv[i][0] == '\0');
281 result = (char *) xmalloc (length);
284 for (i = 0; i < argc; ++i)
289 /* Need to handle empty arguments specially. */
290 if (argv[i][0] == '\0')
300 if (strpbrk (argv[i], special))
306 for (cp = argv[i]; *cp; ++cp)
310 /* A newline cannot be quoted with a backslash (it
311 just disappears), only by putting it inside
322 if (strchr (special, *cp) != NULL)
338 /* In this case we can't handle arguments that contain spaces,
339 tabs, or newlines -- see breakup_args(). */
343 for (i = 0; i < argc; ++i)
345 char *cp = strchr (argv[i], ' ');
347 cp = strchr (argv[i], '\t');
349 cp = strchr (argv[i], '\n');
351 error (_("can't handle command-line "
352 "argument containing whitespace"));
353 length += strlen (argv[i]) + 1;
356 result = (char *) xmalloc (length);
358 for (i = 0; i < argc; ++i)
361 strcat (result, " ");
362 strcat (result, argv[i]);
370 /* This function strips the '&' character (indicating background
371 execution) that is added as *the last* of the arguments ARGS of a
372 command. A copy of the incoming ARGS without the '&' is returned,
373 unless the resulting string after stripping is empty, in which case
374 NULL is returned. *BG_CHAR_P is an output boolean that indicates
375 whether the '&' character was found. */
378 strip_bg_char (const char *args, int *bg_char_p)
382 if (args == NULL || *args == '\0')
388 p = args + strlen (args);
392 while (p > args && isspace (p[-1]))
397 return savestring (args, p - args);
403 return xstrdup (args);
406 /* Common actions to take after creating any sort of inferior, by any
407 means (running, attaching, connecting, et cetera). The target
408 should be stopped. */
411 post_create_inferior (struct target_ops *target, int from_tty)
414 /* Be sure we own the terminal in case write operations are performed. */
415 target_terminal_ours_for_output ();
417 /* If the target hasn't taken care of this already, do it now.
418 Targets which need to access registers during to_open,
419 to_create_inferior, or to_attach should do it earlier; but many
421 target_find_description ();
423 /* Now that we know the register layout, retrieve current PC. But
424 if the PC is unavailable (e.g., we're opening a core file with
425 missing registers info), ignore it. */
429 stop_pc = regcache_read_pc (get_current_regcache ());
431 CATCH (ex, RETURN_MASK_ERROR)
433 if (ex.error != NOT_AVAILABLE_ERROR)
434 throw_exception (ex);
440 const unsigned solib_add_generation
441 = current_program_space->solib_add_generation;
443 /* Create the hooks to handle shared library load and unload
445 solib_create_inferior_hook (from_tty);
447 if (current_program_space->solib_add_generation == solib_add_generation)
449 /* The platform-specific hook should load initial shared libraries,
450 but didn't. FROM_TTY will be incorrectly 0 but such solib
451 targets should be fixed anyway. Call it only after the solib
452 target has been initialized by solib_create_inferior_hook. */
455 warning (_("platform-specific solib_create_inferior_hook did "
456 "not load initial shared libraries."));
458 /* If the solist is global across processes, there's no need to
460 if (!gdbarch_has_global_solist (target_gdbarch ()))
461 solib_add (NULL, 0, target, auto_solib_add);
465 /* If the user sets watchpoints before execution having started,
466 then she gets software watchpoints, because GDB can't know which
467 target will end up being pushed, or if it supports hardware
468 watchpoints or not. breakpoint_re_set takes care of promoting
469 watchpoints to hardware watchpoints if possible, however, if this
470 new inferior doesn't load shared libraries or we don't pull in
471 symbols from any other source on this target/arch,
472 breakpoint_re_set is never called. Call it now so that software
473 watchpoints get a chance to be promoted to hardware watchpoints
474 if the now pushed target supports hardware watchpoints. */
475 breakpoint_re_set ();
477 observer_notify_inferior_created (target, from_tty);
480 /* Kill the inferior if already running. This function is designed
481 to be called when we are about to start the execution of the program
482 from the beginning. Ask the user to confirm that he wants to restart
483 the program being debugged when FROM_TTY is non-null. */
486 kill_if_already_running (int from_tty)
488 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
490 /* Bail out before killing the program if we will not be able to
492 target_require_runnable ();
495 && !query (_("The program being debugged has been started already.\n\
496 Start it from the beginning? ")))
497 error (_("Program not restarted."));
502 /* See inferior.h. */
505 prepare_execution_command (struct target_ops *target, int background)
507 /* If we get a request for running in the bg but the target
508 doesn't support it, error out. */
509 if (background && !target->to_can_async_p (target))
510 error (_("Asynchronous execution not supported on this target."));
514 /* If we get a request for running in the fg, then we need to
515 simulate synchronous (fg) execution. Note no cleanup is
516 necessary for this. stdin is re-enabled whenever an error
517 reaches the top level. */
518 all_uis_on_sync_execution_starting ();
522 /* Implement the "run" command. If TBREAK_AT_MAIN is set, then insert
523 a temporary breakpoint at the begining of the main program before
524 running the program. */
527 run_command_1 (char *args, int from_tty, int tbreak_at_main)
530 struct cleanup *old_chain;
532 struct ui_out *uiout = current_uiout;
533 struct target_ops *run_target;
535 struct cleanup *args_chain;
539 kill_if_already_running (from_tty);
541 init_wait_for_inferior ();
542 clear_breakpoint_hit_counts ();
544 /* Clean up any leftovers from other runs. Some other things from
545 this function should probably be moved into target_pre_inferior. */
546 target_pre_inferior (from_tty);
548 /* The comment here used to read, "The exec file is re-read every
549 time we do a generic_mourn_inferior, so we just have to worry
550 about the symbol file." The `generic_mourn_inferior' function
551 gets called whenever the program exits. However, suppose the
552 program exits, and *then* the executable file changes? We need
553 to check again here. Since reopen_exec_file doesn't do anything
554 if the timestamp hasn't changed, I don't see the harm. */
558 args = strip_bg_char (args, &async_exec);
559 args_chain = make_cleanup (xfree, args);
561 /* Do validation and preparation before possibly changing anything
564 run_target = find_run_target ();
566 prepare_execution_command (run_target, async_exec);
568 if (non_stop && !run_target->to_supports_non_stop (run_target))
569 error (_("The target does not support running in non-stop mode."));
571 /* Done. Can now set breakpoints, change inferior args, etc. */
573 /* Insert the temporary breakpoint if a location was specified. */
575 tbreak_command (main_name (), 0);
577 exec_file = (char *) get_exec_file (0);
579 /* We keep symbols from add-symbol-file, on the grounds that the
580 user might want to add some symbols before running the program
581 (right?). But sometimes (dynamic loading where the user manually
582 introduces the new symbols with add-symbol-file), the code which
583 the symbols describe does not persist between runs. Currently
584 the user has to manually nuke all symbols between runs if they
585 want them to go away (PR 2207). This is probably reasonable. */
587 /* If there were other args, beside '&', process them. */
589 set_inferior_args (args);
593 ui_out_field_string (uiout, NULL, "Starting program");
594 ui_out_text (uiout, ": ");
596 ui_out_field_string (uiout, "execfile", exec_file);
597 ui_out_spaces (uiout, 1);
598 /* We call get_inferior_args() because we might need to compute
600 ui_out_field_string (uiout, "infargs", get_inferior_args ());
601 ui_out_text (uiout, "\n");
602 ui_out_flush (uiout);
605 /* Done with ARGS. */
606 do_cleanups (args_chain);
608 /* We call get_inferior_args() because we might need to compute
610 run_target->to_create_inferior (run_target, exec_file, get_inferior_args (),
611 environ_vector (current_inferior ()->environment),
613 /* to_create_inferior should push the target, so after this point we
614 shouldn't refer to run_target again. */
617 /* We're starting off a new process. When we get out of here, in
618 non-stop mode, finish the state of all threads of that process,
619 but leave other threads alone, as they may be stopped in internal
620 events --- the frontend shouldn't see them as stopped. In
621 all-stop, always finish the state of all threads, as we may be
622 resuming more than just the new process. */
624 ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
626 ptid = minus_one_ptid;
627 old_chain = make_cleanup (finish_thread_state_cleanup, &ptid);
629 /* Pass zero for FROM_TTY, because at this point the "run" command
630 has done its thing; now we are setting up the running program. */
631 post_create_inferior (¤t_target, 0);
633 /* Start the target running. Do not use -1 continuation as it would skip
634 breakpoint right at the entry point. */
635 proceed (regcache_read_pc (get_current_regcache ()), GDB_SIGNAL_0);
637 /* Since there was no error, there's no need to finish the thread
639 discard_cleanups (old_chain);
643 run_command (char *args, int from_tty)
645 run_command_1 (args, from_tty, 0);
648 /* Start the execution of the program up until the beginning of the main
652 start_command (char *args, int from_tty)
654 /* Some languages such as Ada need to search inside the program
655 minimal symbols for the location where to put the temporary
656 breakpoint before starting. */
657 if (!have_minimal_symbols ())
658 error (_("No symbol table loaded. Use the \"file\" command."));
660 /* Run the program until reaching the main procedure... */
661 run_command_1 (args, from_tty, 1);
665 proceed_thread_callback (struct thread_info *thread, void *arg)
667 /* We go through all threads individually instead of compressing
668 into a single target `resume_all' request, because some threads
669 may be stopped in internal breakpoints/events, or stopped waiting
670 for its turn in the displaced stepping queue (that is, they are
671 running && !executing). The target side has no idea about why
672 the thread is stopped, so a `resume_all' command would resume too
673 much. If/when GDB gains a way to tell the target `hold this
674 thread stopped until I say otherwise', then we can optimize
676 if (!is_stopped (thread->ptid))
679 switch_to_thread (thread->ptid);
680 clear_proceed_status (0);
681 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
686 ensure_valid_thread (void)
688 if (ptid_equal (inferior_ptid, null_ptid)
689 || is_exited (inferior_ptid))
690 error (_("Cannot execute this command without a live selected thread."));
693 /* If the user is looking at trace frames, any resumption of execution
694 is likely to mix up recorded and live target data. So simply
695 disallow those commands. */
698 ensure_not_tfind_mode (void)
700 if (get_traceframe_number () >= 0)
701 error (_("Cannot execute this command while looking at trace frames."));
704 /* Throw an error indicating the current thread is running. */
707 error_is_running (void)
709 error (_("Cannot execute this command while "
710 "the selected thread is running."));
713 /* Calls error_is_running if the current thread is running. */
716 ensure_not_running (void)
718 if (is_running (inferior_ptid))
723 continue_1 (int all_threads)
726 ensure_not_tfind_mode ();
728 if (non_stop && all_threads)
730 /* Don't error out if the current thread is running, because
731 there may be other stopped threads. */
732 struct cleanup *old_chain;
734 /* Backup current thread and selected frame. */
735 old_chain = make_cleanup_restore_current_thread ();
737 iterate_over_threads (proceed_thread_callback, NULL);
739 if (current_ui->prompt_state == PROMPT_BLOCKED)
741 /* If all threads in the target were already running,
742 proceed_thread_callback ends up never calling proceed,
743 and so nothing calls this to put the inferior's terminal
744 settings in effect and remove stdin from the event loop,
745 which we must when running a foreground command. E.g.:
749 <all threads are running now>
752 <no thread was resumed, but the inferior now owns the terminal>
754 target_terminal_inferior ();
757 /* Restore selected ptid. */
758 do_cleanups (old_chain);
762 ensure_valid_thread ();
763 ensure_not_running ();
764 clear_proceed_status (0);
765 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
769 /* continue [-a] [proceed-count] [&] */
772 continue_command (char *args, int from_tty)
776 struct cleanup *args_chain;
780 /* Find out whether we must run in the background. */
781 args = strip_bg_char (args, &async_exec);
782 args_chain = make_cleanup (xfree, args);
786 if (startswith (args, "-a"))
789 args += sizeof ("-a") - 1;
795 if (!non_stop && all_threads)
796 error (_("`-a' is meaningless in all-stop mode."));
798 if (args != NULL && all_threads)
799 error (_("Can't resume all threads and specify "
800 "proceed count simultaneously."));
802 /* If we have an argument left, set proceed count of breakpoint we
809 struct thread_info *tp;
812 tp = find_thread_ptid (inferior_ptid);
816 struct target_waitstatus ws;
818 get_last_target_status (&last_ptid, &ws);
819 tp = find_thread_ptid (last_ptid);
822 bs = tp->control.stop_bpstat;
824 while ((stat = bpstat_num (&bs, &num)) != 0)
827 set_ignore_count (num,
828 parse_and_eval_long (args) - 1,
830 /* set_ignore_count prints a message ending with a period.
831 So print two spaces before "Continuing.". */
833 printf_filtered (" ");
837 if (!stopped && from_tty)
840 ("Not stopped at any breakpoint; argument ignored.\n");
844 /* Done with ARGS. */
845 do_cleanups (args_chain);
848 ensure_not_tfind_mode ();
850 if (!non_stop || !all_threads)
852 ensure_valid_thread ();
853 ensure_not_running ();
856 prepare_execution_command (¤t_target, async_exec);
859 printf_filtered (_("Continuing.\n"));
861 continue_1 (all_threads);
864 /* Record the starting point of a "step" or "next" command. */
867 set_step_frame (void)
869 struct symtab_and_line sal;
871 struct frame_info *frame = get_current_frame ();
872 struct thread_info *tp = inferior_thread ();
874 find_frame_sal (frame, &sal);
875 set_step_info (frame, sal);
876 pc = get_frame_pc (frame);
877 tp->control.step_start_function = find_pc_function (pc);
880 /* Step until outside of current statement. */
883 step_command (char *count_string, int from_tty)
885 step_1 (0, 0, count_string);
888 /* Likewise, but skip over subroutine calls as if single instructions. */
891 next_command (char *count_string, int from_tty)
893 step_1 (1, 0, count_string);
896 /* Likewise, but step only one instruction. */
899 stepi_command (char *count_string, int from_tty)
901 step_1 (0, 1, count_string);
905 nexti_command (char *count_string, int from_tty)
907 step_1 (1, 1, count_string);
911 delete_longjmp_breakpoint_cleanup (void *arg)
913 int thread = * (int *) arg;
914 delete_longjmp_breakpoint (thread);
917 /* Data for the FSM that manages the step/next/stepi/nexti
920 struct step_command_fsm
922 /* The base class. */
923 struct thread_fsm thread_fsm;
925 /* How many steps left in a "step N"-like command. */
928 /* If true, this is a next/nexti, otherwise a step/stepi. */
929 int skip_subroutines;
931 /* If true, this is a stepi/nexti, otherwise a step/step. */
935 static void step_command_fsm_clean_up (struct thread_fsm *self,
936 struct thread_info *thread);
937 static int step_command_fsm_should_stop (struct thread_fsm *self,
938 struct thread_info *thread);
939 static enum async_reply_reason
940 step_command_fsm_async_reply_reason (struct thread_fsm *self);
942 /* step_command_fsm's vtable. */
944 static struct thread_fsm_ops step_command_fsm_ops =
947 step_command_fsm_clean_up,
948 step_command_fsm_should_stop,
949 NULL, /* return_value */
950 step_command_fsm_async_reply_reason,
953 /* Allocate a new step_command_fsm. */
955 static struct step_command_fsm *
956 new_step_command_fsm (struct interp *cmd_interp)
958 struct step_command_fsm *sm;
960 sm = XCNEW (struct step_command_fsm);
961 thread_fsm_ctor (&sm->thread_fsm, &step_command_fsm_ops, cmd_interp);
966 /* Prepare for a step/next/etc. command. Any target resource
967 allocated here is undone in the FSM's clean_up method. */
970 step_command_fsm_prepare (struct step_command_fsm *sm,
971 int skip_subroutines, int single_inst,
972 int count, struct thread_info *thread)
974 sm->skip_subroutines = skip_subroutines;
975 sm->single_inst = single_inst;
978 /* Leave the si command alone. */
979 if (!sm->single_inst || sm->skip_subroutines)
980 set_longjmp_breakpoint (thread, get_frame_id (get_current_frame ()));
982 thread->control.stepping_command = 1;
985 static int prepare_one_step (struct step_command_fsm *sm);
988 step_1 (int skip_subroutines, int single_inst, char *count_string)
992 struct cleanup *args_chain;
993 struct thread_info *thr;
994 struct step_command_fsm *step_sm;
997 ensure_not_tfind_mode ();
998 ensure_valid_thread ();
999 ensure_not_running ();
1001 count_string = strip_bg_char (count_string, &async_exec);
1002 args_chain = make_cleanup (xfree, count_string);
1004 prepare_execution_command (¤t_target, async_exec);
1006 count = count_string ? parse_and_eval_long (count_string) : 1;
1008 /* Done with ARGS. */
1009 do_cleanups (args_chain);
1011 clear_proceed_status (1);
1013 /* Setup the execution command state machine to handle all the COUNT
1015 thr = inferior_thread ();
1016 step_sm = new_step_command_fsm (command_interp ());
1017 thr->thread_fsm = &step_sm->thread_fsm;
1019 step_command_fsm_prepare (step_sm, skip_subroutines,
1020 single_inst, count, thr);
1022 /* Do only one step for now, before returning control to the event
1023 loop. Let the continuation figure out how many other steps we
1024 need to do, and handle them one at the time, through
1026 if (!prepare_one_step (step_sm))
1027 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
1032 /* Stepped into an inline frame. Pretend that we've
1034 thread_fsm_clean_up (thr->thread_fsm, thr);
1035 proceeded = normal_stop ();
1037 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
1038 all_uis_check_sync_execution_done ();
1042 /* Implementation of the 'should_stop' FSM method for stepping
1043 commands. Called after we are done with one step operation, to
1044 check whether we need to step again, before we print the prompt and
1045 return control to the user. If count is > 1, returns false, as we
1046 will need to keep going. */
1049 step_command_fsm_should_stop (struct thread_fsm *self, struct thread_info *tp)
1051 struct step_command_fsm *sm = (struct step_command_fsm *) self;
1053 if (tp->control.stop_step)
1055 /* There are more steps to make, and we did stop due to
1056 ending a stepping range. Do another step. */
1057 if (--sm->count > 0)
1058 return prepare_one_step (sm);
1060 thread_fsm_set_finished (self);
1066 /* Implementation of the 'clean_up' FSM method for stepping commands. */
1069 step_command_fsm_clean_up (struct thread_fsm *self, struct thread_info *thread)
1071 struct step_command_fsm *sm = (struct step_command_fsm *) self;
1073 if (!sm->single_inst || sm->skip_subroutines)
1074 delete_longjmp_breakpoint (thread->global_num);
1077 /* Implementation of the 'async_reply_reason' FSM method for stepping
1080 static enum async_reply_reason
1081 step_command_fsm_async_reply_reason (struct thread_fsm *self)
1083 return EXEC_ASYNC_END_STEPPING_RANGE;
1086 /* Prepare for one step in "step N". The actual target resumption is
1087 done by the caller. Return true if we're done and should thus
1088 report a stop to the user. Returns false if the target needs to be
1092 prepare_one_step (struct step_command_fsm *sm)
1096 struct frame_info *frame = get_current_frame ();
1098 /* Don't assume THREAD is a valid thread id. It is set to -1 if
1099 the longjmp breakpoint was not required. Use the
1100 INFERIOR_PTID thread instead, which is the same thread when
1102 struct thread_info *tp = inferior_thread ();
1106 if (!sm->single_inst)
1110 /* Step at an inlined function behaves like "down". */
1111 if (!sm->skip_subroutines
1112 && inline_skipped_frames (inferior_ptid))
1116 /* Pretend that we've ran. */
1117 resume_ptid = user_visible_resume_ptid (1);
1118 set_running (resume_ptid, 1);
1120 step_into_inline_frame (inferior_ptid);
1122 return prepare_one_step (sm);
1125 pc = get_frame_pc (frame);
1126 find_pc_line_pc_range (pc,
1127 &tp->control.step_range_start,
1128 &tp->control.step_range_end);
1130 tp->control.may_range_step = 1;
1132 /* If we have no line info, switch to stepi mode. */
1133 if (tp->control.step_range_end == 0 && step_stop_if_no_debug)
1135 tp->control.step_range_start = tp->control.step_range_end = 1;
1136 tp->control.may_range_step = 0;
1138 else if (tp->control.step_range_end == 0)
1142 if (find_pc_partial_function (pc, &name,
1143 &tp->control.step_range_start,
1144 &tp->control.step_range_end) == 0)
1145 error (_("Cannot find bounds of current function"));
1147 target_terminal_ours_for_output ();
1148 printf_filtered (_("Single stepping until exit from function %s,"
1149 "\nwhich has no line number information.\n"),
1155 /* Say we are stepping, but stop after one insn whatever it does. */
1156 tp->control.step_range_start = tp->control.step_range_end = 1;
1157 if (!sm->skip_subroutines)
1159 Don't step over function calls, not even to functions lacking
1161 tp->control.step_over_calls = STEP_OVER_NONE;
1164 if (sm->skip_subroutines)
1165 tp->control.step_over_calls = STEP_OVER_ALL;
1171 thread_fsm_set_finished (&sm->thread_fsm);
1176 /* Continue program at specified address. */
1179 jump_command (char *arg, int from_tty)
1181 struct gdbarch *gdbarch = get_current_arch ();
1183 struct symtabs_and_lines sals;
1184 struct symtab_and_line sal;
1188 struct cleanup *args_chain;
1191 ensure_not_tfind_mode ();
1192 ensure_valid_thread ();
1193 ensure_not_running ();
1195 /* Find out whether we must run in the background. */
1196 arg = strip_bg_char (arg, &async_exec);
1197 args_chain = make_cleanup (xfree, arg);
1199 prepare_execution_command (¤t_target, async_exec);
1202 error_no_arg (_("starting address"));
1204 sals = decode_line_with_last_displayed (arg, DECODE_LINE_FUNFIRSTLINE);
1205 if (sals.nelts != 1)
1207 error (_("Unreasonable jump request"));
1213 /* Done with ARGS. */
1214 do_cleanups (args_chain);
1216 if (sal.symtab == 0 && sal.pc == 0)
1217 error (_("No source file has been specified."));
1219 resolve_sal_pc (&sal); /* May error out. */
1221 /* See if we are trying to jump to another function. */
1222 fn = get_frame_function (get_current_frame ());
1223 sfn = find_pc_function (sal.pc);
1224 if (fn != NULL && sfn != fn)
1226 if (!query (_("Line %d is not in `%s'. Jump anyway? "), sal.line,
1227 SYMBOL_PRINT_NAME (fn)))
1229 error (_("Not confirmed."));
1236 struct obj_section *section;
1238 fixup_symbol_section (sfn, 0);
1239 section = SYMBOL_OBJ_SECTION (symbol_objfile (sfn), sfn);
1240 if (section_is_overlay (section)
1241 && !section_is_mapped (section))
1243 if (!query (_("WARNING!!! Destination is in "
1244 "unmapped overlay! Jump anyway? ")))
1246 error (_("Not confirmed."));
1256 printf_filtered (_("Continuing at "));
1257 fputs_filtered (paddress (gdbarch, addr), gdb_stdout);
1258 printf_filtered (".\n");
1261 clear_proceed_status (0);
1262 proceed (addr, GDB_SIGNAL_0);
1265 /* Continue program giving it specified signal. */
1268 signal_command (char *signum_exp, int from_tty)
1270 enum gdb_signal oursig;
1272 struct cleanup *args_chain;
1274 dont_repeat (); /* Too dangerous. */
1276 ensure_not_tfind_mode ();
1277 ensure_valid_thread ();
1278 ensure_not_running ();
1280 /* Find out whether we must run in the background. */
1281 signum_exp = strip_bg_char (signum_exp, &async_exec);
1282 args_chain = make_cleanup (xfree, signum_exp);
1284 prepare_execution_command (¤t_target, async_exec);
1287 error_no_arg (_("signal number"));
1289 /* It would be even slicker to make signal names be valid expressions,
1290 (the type could be "enum $signal" or some such), then the user could
1291 assign them to convenience variables. */
1292 oursig = gdb_signal_from_name (signum_exp);
1294 if (oursig == GDB_SIGNAL_UNKNOWN)
1296 /* No, try numeric. */
1297 int num = parse_and_eval_long (signum_exp);
1300 oursig = GDB_SIGNAL_0;
1302 oursig = gdb_signal_from_command (num);
1305 do_cleanups (args_chain);
1307 /* Look for threads other than the current that this command ends up
1308 resuming too (due to schedlock off), and warn if they'll get a
1309 signal delivered. "signal 0" is used to suppress a previous
1310 signal, but if the current thread is no longer the one that got
1311 the signal, then the user is potentially suppressing the signal
1312 of the wrong thread. */
1315 struct thread_info *tp;
1317 int must_confirm = 0;
1319 /* This indicates what will be resumed. Either a single thread,
1320 a whole process, or all threads of all processes. */
1321 resume_ptid = user_visible_resume_ptid (0);
1323 ALL_NON_EXITED_THREADS (tp)
1325 if (ptid_equal (tp->ptid, inferior_ptid))
1327 if (!ptid_match (tp->ptid, resume_ptid))
1330 if (tp->suspend.stop_signal != GDB_SIGNAL_0
1331 && signal_pass_state (tp->suspend.stop_signal))
1334 printf_unfiltered (_("Note:\n"));
1335 printf_unfiltered (_(" Thread %s previously stopped with signal %s, %s.\n"),
1336 print_thread_id (tp),
1337 gdb_signal_to_name (tp->suspend.stop_signal),
1338 gdb_signal_to_string (tp->suspend.stop_signal));
1344 && !query (_("Continuing thread %s (the current thread) with specified signal will\n"
1345 "still deliver the signals noted above to their respective threads.\n"
1346 "Continue anyway? "),
1347 print_thread_id (inferior_thread ())))
1348 error (_("Not confirmed."));
1353 if (oursig == GDB_SIGNAL_0)
1354 printf_filtered (_("Continuing with no signal.\n"));
1356 printf_filtered (_("Continuing with signal %s.\n"),
1357 gdb_signal_to_name (oursig));
1360 clear_proceed_status (0);
1361 proceed ((CORE_ADDR) -1, oursig);
1364 /* Queue a signal to be delivered to the current thread. */
1367 queue_signal_command (char *signum_exp, int from_tty)
1369 enum gdb_signal oursig;
1370 struct thread_info *tp;
1373 ensure_not_tfind_mode ();
1374 ensure_valid_thread ();
1375 ensure_not_running ();
1377 if (signum_exp == NULL)
1378 error_no_arg (_("signal number"));
1380 /* It would be even slicker to make signal names be valid expressions,
1381 (the type could be "enum $signal" or some such), then the user could
1382 assign them to convenience variables. */
1383 oursig = gdb_signal_from_name (signum_exp);
1385 if (oursig == GDB_SIGNAL_UNKNOWN)
1387 /* No, try numeric. */
1388 int num = parse_and_eval_long (signum_exp);
1391 oursig = GDB_SIGNAL_0;
1393 oursig = gdb_signal_from_command (num);
1396 if (oursig != GDB_SIGNAL_0
1397 && !signal_pass_state (oursig))
1398 error (_("Signal handling set to not pass this signal to the program."));
1400 tp = inferior_thread ();
1401 tp->suspend.stop_signal = oursig;
1404 /* Data for the FSM that manages the until (with no argument)
1407 struct until_next_fsm
1409 /* The base class. */
1410 struct thread_fsm thread_fsm;
1412 /* The thread that as current when the command was executed. */
1416 static int until_next_fsm_should_stop (struct thread_fsm *self,
1417 struct thread_info *thread);
1418 static void until_next_fsm_clean_up (struct thread_fsm *self,
1419 struct thread_info *thread);
1420 static enum async_reply_reason
1421 until_next_fsm_async_reply_reason (struct thread_fsm *self);
1423 /* until_next_fsm's vtable. */
1425 static struct thread_fsm_ops until_next_fsm_ops =
1428 until_next_fsm_clean_up,
1429 until_next_fsm_should_stop,
1430 NULL, /* return_value */
1431 until_next_fsm_async_reply_reason,
1434 /* Allocate a new until_next_fsm. */
1436 static struct until_next_fsm *
1437 new_until_next_fsm (struct interp *cmd_interp, int thread)
1439 struct until_next_fsm *sm;
1441 sm = XCNEW (struct until_next_fsm);
1442 thread_fsm_ctor (&sm->thread_fsm, &until_next_fsm_ops, cmd_interp);
1444 sm->thread = thread;
1449 /* Implementation of the 'should_stop' FSM method for the until (with
1453 until_next_fsm_should_stop (struct thread_fsm *self,
1454 struct thread_info *tp)
1456 if (tp->control.stop_step)
1457 thread_fsm_set_finished (self);
1462 /* Implementation of the 'clean_up' FSM method for the until (with no
1466 until_next_fsm_clean_up (struct thread_fsm *self, struct thread_info *thread)
1468 struct until_next_fsm *sm = (struct until_next_fsm *) self;
1470 delete_longjmp_breakpoint (thread->global_num);
1473 /* Implementation of the 'async_reply_reason' FSM method for the until
1474 (with no arg) command. */
1476 static enum async_reply_reason
1477 until_next_fsm_async_reply_reason (struct thread_fsm *self)
1479 return EXEC_ASYNC_END_STEPPING_RANGE;
1482 /* Proceed until we reach a different source line with pc greater than
1483 our current one or exit the function. We skip calls in both cases.
1485 Note that eventually this command should probably be changed so
1486 that only source lines are printed out when we hit the breakpoint
1487 we set. This may involve changes to wait_for_inferior and the
1488 proceed status code. */
1491 until_next_command (int from_tty)
1493 struct frame_info *frame;
1495 struct symbol *func;
1496 struct symtab_and_line sal;
1497 struct thread_info *tp = inferior_thread ();
1498 int thread = tp->global_num;
1499 struct cleanup *old_chain;
1500 struct until_next_fsm *sm;
1502 clear_proceed_status (0);
1505 frame = get_current_frame ();
1507 /* Step until either exited from this function or greater
1508 than the current line (if in symbolic section) or pc (if
1511 pc = get_frame_pc (frame);
1512 func = find_pc_function (pc);
1516 struct bound_minimal_symbol msymbol = lookup_minimal_symbol_by_pc (pc);
1518 if (msymbol.minsym == NULL)
1519 error (_("Execution is not within a known function."));
1521 tp->control.step_range_start = BMSYMBOL_VALUE_ADDRESS (msymbol);
1522 /* The upper-bound of step_range is exclusive. In order to make PC
1523 within the range, set the step_range_end with PC + 1. */
1524 tp->control.step_range_end = pc + 1;
1528 sal = find_pc_line (pc, 0);
1530 tp->control.step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
1531 tp->control.step_range_end = sal.end;
1533 tp->control.may_range_step = 1;
1535 tp->control.step_over_calls = STEP_OVER_ALL;
1537 set_longjmp_breakpoint (tp, get_frame_id (frame));
1538 old_chain = make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
1540 sm = new_until_next_fsm (command_interp (), tp->global_num);
1541 tp->thread_fsm = &sm->thread_fsm;
1542 discard_cleanups (old_chain);
1544 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
1548 until_command (char *arg, int from_tty)
1551 struct cleanup *args_chain;
1554 ensure_not_tfind_mode ();
1555 ensure_valid_thread ();
1556 ensure_not_running ();
1558 /* Find out whether we must run in the background. */
1559 arg = strip_bg_char (arg, &async_exec);
1560 args_chain = make_cleanup (xfree, arg);
1562 prepare_execution_command (¤t_target, async_exec);
1565 until_break_command (arg, from_tty, 0);
1567 until_next_command (from_tty);
1569 /* Done with ARGS. */
1570 do_cleanups (args_chain);
1574 advance_command (char *arg, int from_tty)
1577 struct cleanup *args_chain;
1580 ensure_not_tfind_mode ();
1581 ensure_valid_thread ();
1582 ensure_not_running ();
1585 error_no_arg (_("a location"));
1587 /* Find out whether we must run in the background. */
1588 arg = strip_bg_char (arg, &async_exec);
1589 args_chain = make_cleanup (xfree, arg);
1591 prepare_execution_command (¤t_target, async_exec);
1593 until_break_command (arg, from_tty, 1);
1595 /* Done with ARGS. */
1596 do_cleanups (args_chain);
1599 /* Return the value of the result of a function at the end of a 'finish'
1600 command/BP. DTOR_DATA (if not NULL) can represent inferior registers
1601 right after an inferior call has finished. */
1604 get_return_value (struct value *function, struct type *value_type)
1606 struct regcache *stop_regs;
1607 struct gdbarch *gdbarch;
1608 struct value *value;
1609 struct cleanup *cleanup;
1611 stop_regs = regcache_dup (get_current_regcache ());
1612 cleanup = make_cleanup_regcache_xfree (stop_regs);
1614 gdbarch = get_regcache_arch (stop_regs);
1616 value_type = check_typedef (value_type);
1617 gdb_assert (TYPE_CODE (value_type) != TYPE_CODE_VOID);
1619 /* FIXME: 2003-09-27: When returning from a nested inferior function
1620 call, it's possible (with no help from the architecture vector)
1621 to locate and return/print a "struct return" value. This is just
1622 a more complicated case of what is already being done in the
1623 inferior function call code. In fact, when inferior function
1624 calls are made async, this will likely be made the norm. */
1626 switch (gdbarch_return_value (gdbarch, function, value_type,
1629 case RETURN_VALUE_REGISTER_CONVENTION:
1630 case RETURN_VALUE_ABI_RETURNS_ADDRESS:
1631 case RETURN_VALUE_ABI_PRESERVES_ADDRESS:
1632 value = allocate_value (value_type);
1633 gdbarch_return_value (gdbarch, function, value_type, stop_regs,
1634 value_contents_raw (value), NULL);
1636 case RETURN_VALUE_STRUCT_CONVENTION:
1640 internal_error (__FILE__, __LINE__, _("bad switch"));
1643 do_cleanups (cleanup);
1648 /* The captured function return value/type and its position in the
1651 struct return_value_info
1653 /* The captured return value. May be NULL if we weren't able to
1654 retrieve it. See get_return_value. */
1655 struct value *value;
1657 /* The return type. In some cases, we'll not be able extract the
1658 return value, but we always know the type. */
1661 /* If we captured a value, this is the value history index. */
1662 int value_history_index;
1665 /* Helper for print_return_value. */
1668 print_return_value_1 (struct ui_out *uiout, struct return_value_info *rv)
1670 if (rv->value != NULL)
1672 struct value_print_options opts;
1673 struct ui_file *stb;
1674 struct cleanup *old_chain;
1677 stb = mem_fileopen ();
1678 old_chain = make_cleanup_ui_file_delete (stb);
1679 ui_out_text (uiout, "Value returned is ");
1680 ui_out_field_fmt (uiout, "gdb-result-var", "$%d",
1681 rv->value_history_index);
1682 ui_out_text (uiout, " = ");
1683 get_no_prettyformat_print_options (&opts);
1684 value_print (rv->value, stb, &opts);
1685 ui_out_field_stream (uiout, "return-value", stb);
1686 ui_out_text (uiout, "\n");
1687 do_cleanups (old_chain);
1691 struct cleanup *oldchain;
1694 type_name = type_to_string (rv->type);
1695 oldchain = make_cleanup (xfree, type_name);
1696 ui_out_text (uiout, "Value returned has type: ");
1697 ui_out_field_string (uiout, "return-type", type_name);
1698 ui_out_text (uiout, ".");
1699 ui_out_text (uiout, " Cannot determine contents\n");
1700 do_cleanups (oldchain);
1704 /* Print the result of a function at the end of a 'finish' command.
1705 RV points at an object representing the captured return value/type
1706 and its position in the value history. */
1709 print_return_value (struct ui_out *uiout, struct return_value_info *rv)
1711 if (rv->type == NULL || TYPE_CODE (rv->type) == TYPE_CODE_VOID)
1716 /* print_return_value_1 can throw an exception in some
1717 circumstances. We need to catch this so that we still
1718 delete the breakpoint. */
1719 print_return_value_1 (uiout, rv);
1721 CATCH (ex, RETURN_MASK_ALL)
1723 exception_print (gdb_stdout, ex);
1728 /* Data for the FSM that manages the finish command. */
1730 struct finish_command_fsm
1732 /* The base class. */
1733 struct thread_fsm thread_fsm;
1735 /* The momentary breakpoint set at the function's return address in
1737 struct breakpoint *breakpoint;
1739 /* The function that we're stepping out of. */
1740 struct symbol *function;
1742 /* If the FSM finishes successfully, this stores the function's
1744 struct return_value_info return_value;
1747 static int finish_command_fsm_should_stop (struct thread_fsm *self,
1748 struct thread_info *thread);
1749 static void finish_command_fsm_clean_up (struct thread_fsm *self,
1750 struct thread_info *thread);
1751 static struct return_value_info *
1752 finish_command_fsm_return_value (struct thread_fsm *self);
1753 static enum async_reply_reason
1754 finish_command_fsm_async_reply_reason (struct thread_fsm *self);
1756 /* finish_command_fsm's vtable. */
1758 static struct thread_fsm_ops finish_command_fsm_ops =
1761 finish_command_fsm_clean_up,
1762 finish_command_fsm_should_stop,
1763 finish_command_fsm_return_value,
1764 finish_command_fsm_async_reply_reason,
1765 NULL, /* should_notify_stop */
1768 /* Allocate a new finish_command_fsm. */
1770 static struct finish_command_fsm *
1771 new_finish_command_fsm (struct interp *cmd_interp)
1773 struct finish_command_fsm *sm;
1775 sm = XCNEW (struct finish_command_fsm);
1776 thread_fsm_ctor (&sm->thread_fsm, &finish_command_fsm_ops, cmd_interp);
1781 /* Implementation of the 'should_stop' FSM method for the finish
1782 commands. Detects whether the thread stepped out of the function
1783 successfully, and if so, captures the function's return value and
1784 marks the FSM finished. */
1787 finish_command_fsm_should_stop (struct thread_fsm *self,
1788 struct thread_info *tp)
1790 struct finish_command_fsm *f = (struct finish_command_fsm *) self;
1791 struct return_value_info *rv = &f->return_value;
1793 if (f->function != NULL
1794 && bpstat_find_breakpoint (tp->control.stop_bpstat,
1795 f->breakpoint) != NULL)
1798 thread_fsm_set_finished (self);
1800 rv->type = TYPE_TARGET_TYPE (SYMBOL_TYPE (f->function));
1801 if (rv->type == NULL)
1802 internal_error (__FILE__, __LINE__,
1803 _("finish_command: function has no target type"));
1805 if (TYPE_CODE (rv->type) != TYPE_CODE_VOID)
1809 func = read_var_value (f->function, NULL, get_current_frame ());
1810 rv->value = get_return_value (func, rv->type);
1811 if (rv->value != NULL)
1812 rv->value_history_index = record_latest_value (rv->value);
1815 else if (tp->control.stop_step)
1817 /* Finishing from an inline frame, or reverse finishing. In
1818 either case, there's no way to retrieve the return value. */
1819 thread_fsm_set_finished (self);
1825 /* Implementation of the 'clean_up' FSM method for the finish
1829 finish_command_fsm_clean_up (struct thread_fsm *self,
1830 struct thread_info *thread)
1832 struct finish_command_fsm *f = (struct finish_command_fsm *) self;
1834 if (f->breakpoint != NULL)
1836 delete_breakpoint (f->breakpoint);
1837 f->breakpoint = NULL;
1839 delete_longjmp_breakpoint (thread->global_num);
1842 /* Implementation of the 'return_value' FSM method for the finish
1845 static struct return_value_info *
1846 finish_command_fsm_return_value (struct thread_fsm *self)
1848 struct finish_command_fsm *f = (struct finish_command_fsm *) self;
1850 return &f->return_value;
1853 /* Implementation of the 'async_reply_reason' FSM method for the
1856 static enum async_reply_reason
1857 finish_command_fsm_async_reply_reason (struct thread_fsm *self)
1859 if (execution_direction == EXEC_REVERSE)
1860 return EXEC_ASYNC_END_STEPPING_RANGE;
1862 return EXEC_ASYNC_FUNCTION_FINISHED;
1865 /* finish_backward -- helper function for finish_command. */
1868 finish_backward (struct finish_command_fsm *sm)
1870 struct symtab_and_line sal;
1871 struct thread_info *tp = inferior_thread ();
1873 CORE_ADDR func_addr;
1875 pc = get_frame_pc (get_current_frame ());
1877 if (find_pc_partial_function (pc, NULL, &func_addr, NULL) == 0)
1878 error (_("Cannot find bounds of current function"));
1880 sal = find_pc_line (func_addr, 0);
1882 tp->control.proceed_to_finish = 1;
1883 /* Special case: if we're sitting at the function entry point,
1884 then all we need to do is take a reverse singlestep. We
1885 don't need to set a breakpoint, and indeed it would do us
1888 Note that this can only happen at frame #0, since there's
1889 no way that a function up the stack can have a return address
1890 that's equal to its entry point. */
1894 struct frame_info *frame = get_selected_frame (NULL);
1895 struct gdbarch *gdbarch = get_frame_arch (frame);
1896 struct symtab_and_line sr_sal;
1898 /* Set a step-resume at the function's entry point. Once that's
1899 hit, we'll do one more step backwards. */
1902 sr_sal.pspace = get_frame_program_space (frame);
1903 insert_step_resume_breakpoint_at_sal (gdbarch,
1904 sr_sal, null_frame_id);
1906 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
1910 /* We're almost there -- we just need to back up by one more
1912 tp->control.step_range_start = tp->control.step_range_end = 1;
1913 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
1917 /* finish_forward -- helper function for finish_command. FRAME is the
1918 frame that called the function we're about to step out of. */
1921 finish_forward (struct finish_command_fsm *sm, struct frame_info *frame)
1923 struct frame_id frame_id = get_frame_id (frame);
1924 struct gdbarch *gdbarch = get_frame_arch (frame);
1925 struct symtab_and_line sal;
1926 struct thread_info *tp = inferior_thread ();
1928 sal = find_pc_line (get_frame_pc (frame), 0);
1929 sal.pc = get_frame_pc (frame);
1931 sm->breakpoint = set_momentary_breakpoint (gdbarch, sal,
1932 get_stack_frame_id (frame),
1935 /* set_momentary_breakpoint invalidates FRAME. */
1938 set_longjmp_breakpoint (tp, frame_id);
1940 /* We want to print return value, please... */
1941 tp->control.proceed_to_finish = 1;
1943 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
1946 /* Skip frames for "finish". */
1948 static struct frame_info *
1949 skip_finish_frames (struct frame_info *frame)
1951 struct frame_info *start;
1957 frame = skip_tailcall_frames (frame);
1961 frame = skip_unwritable_frames (frame);
1965 while (start != frame);
1970 /* "finish": Set a temporary breakpoint at the place the selected
1971 frame will return to, then continue. */
1974 finish_command (char *arg, int from_tty)
1976 struct frame_info *frame;
1978 struct cleanup *args_chain;
1979 struct finish_command_fsm *sm;
1980 struct thread_info *tp;
1983 ensure_not_tfind_mode ();
1984 ensure_valid_thread ();
1985 ensure_not_running ();
1987 /* Find out whether we must run in the background. */
1988 arg = strip_bg_char (arg, &async_exec);
1989 args_chain = make_cleanup (xfree, arg);
1991 prepare_execution_command (¤t_target, async_exec);
1994 error (_("The \"finish\" command does not take any arguments."));
1996 /* Done with ARGS. */
1997 do_cleanups (args_chain);
1999 frame = get_prev_frame (get_selected_frame (_("No selected frame.")));
2001 error (_("\"finish\" not meaningful in the outermost frame."));
2003 clear_proceed_status (0);
2005 tp = inferior_thread ();
2007 sm = new_finish_command_fsm (command_interp ());
2009 tp->thread_fsm = &sm->thread_fsm;
2011 /* Finishing from an inline frame is completely different. We don't
2012 try to show the "return value" - no way to locate it. */
2013 if (get_frame_type (get_selected_frame (_("No selected frame.")))
2016 /* Claim we are stepping in the calling frame. An empty step
2017 range means that we will stop once we aren't in a function
2018 called by that frame. We don't use the magic "1" value for
2019 step_range_end, because then infrun will think this is nexti,
2020 and not step over the rest of this inlined function call. */
2021 struct symtab_and_line empty_sal;
2023 init_sal (&empty_sal);
2024 set_step_info (frame, empty_sal);
2025 tp->control.step_range_start = get_frame_pc (frame);
2026 tp->control.step_range_end = tp->control.step_range_start;
2027 tp->control.step_over_calls = STEP_OVER_ALL;
2029 /* Print info on the selected frame, including level number but not
2033 printf_filtered (_("Run till exit from "));
2034 print_stack_frame (get_selected_frame (NULL), 1, LOCATION, 0);
2037 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
2041 /* Find the function we will return from. */
2043 sm->function = find_pc_function (get_frame_pc (get_selected_frame (NULL)));
2045 /* Print info on the selected frame, including level number but not
2049 if (execution_direction == EXEC_REVERSE)
2050 printf_filtered (_("Run back to call of "));
2053 if (sm->function != NULL && TYPE_NO_RETURN (sm->function->type)
2054 && !query (_("warning: Function %s does not return normally.\n"
2055 "Try to finish anyway? "),
2056 SYMBOL_PRINT_NAME (sm->function)))
2057 error (_("Not confirmed."));
2058 printf_filtered (_("Run till exit from "));
2061 print_stack_frame (get_selected_frame (NULL), 1, LOCATION, 0);
2064 if (execution_direction == EXEC_REVERSE)
2065 finish_backward (sm);
2068 frame = skip_finish_frames (frame);
2071 error (_("Cannot find the caller frame."));
2073 finish_forward (sm, frame);
2079 program_info (char *args, int from_tty)
2083 struct thread_info *tp;
2086 if (!target_has_execution)
2088 printf_filtered (_("The program being debugged is not being run.\n"));
2093 ptid = inferior_ptid;
2096 struct target_waitstatus ws;
2098 get_last_target_status (&ptid, &ws);
2101 if (ptid_equal (ptid, null_ptid) || is_exited (ptid))
2102 error (_("Invalid selected thread."));
2103 else if (is_running (ptid))
2104 error (_("Selected thread is running."));
2106 tp = find_thread_ptid (ptid);
2107 bs = tp->control.stop_bpstat;
2108 stat = bpstat_num (&bs, &num);
2110 target_files_info ();
2111 printf_filtered (_("Program stopped at %s.\n"),
2112 paddress (target_gdbarch (), stop_pc));
2113 if (tp->control.stop_step)
2114 printf_filtered (_("It stopped after being stepped.\n"));
2117 /* There may be several breakpoints in the same place, so this
2118 isn't as strange as it seems. */
2123 printf_filtered (_("It stopped at a breakpoint "
2124 "that has since been deleted.\n"));
2127 printf_filtered (_("It stopped at breakpoint %d.\n"), num);
2128 stat = bpstat_num (&bs, &num);
2131 else if (tp->suspend.stop_signal != GDB_SIGNAL_0)
2133 printf_filtered (_("It stopped with signal %s, %s.\n"),
2134 gdb_signal_to_name (tp->suspend.stop_signal),
2135 gdb_signal_to_string (tp->suspend.stop_signal));
2140 printf_filtered (_("Type \"info stack\" or \"info "
2141 "registers\" for more information.\n"));
2146 environment_info (char *var, int from_tty)
2150 char *val = get_in_environ (current_inferior ()->environment, var);
2154 puts_filtered (var);
2155 puts_filtered (" = ");
2156 puts_filtered (val);
2157 puts_filtered ("\n");
2161 puts_filtered ("Environment variable \"");
2162 puts_filtered (var);
2163 puts_filtered ("\" not defined.\n");
2168 char **vector = environ_vector (current_inferior ()->environment);
2172 puts_filtered (*vector++);
2173 puts_filtered ("\n");
2179 set_environment_command (char *arg, int from_tty)
2181 char *p, *val, *var;
2185 error_no_arg (_("environment variable and value"));
2187 /* Find seperation between variable name and value. */
2188 p = (char *) strchr (arg, '=');
2189 val = (char *) strchr (arg, ' ');
2191 if (p != 0 && val != 0)
2193 /* We have both a space and an equals. If the space is before the
2194 equals, walk forward over the spaces til we see a nonspace
2195 (possibly the equals). */
2200 /* Now if the = is after the char following the spaces,
2201 take the char following the spaces. */
2205 else if (val != 0 && p == 0)
2209 error_no_arg (_("environment variable to set"));
2211 if (p == 0 || p[1] == 0)
2215 p = arg + strlen (arg); /* So that savestring below will work. */
2219 /* Not setting variable value to null. */
2221 while (*val == ' ' || *val == '\t')
2225 while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
2228 var = savestring (arg, p - arg);
2231 printf_filtered (_("Setting environment variable "
2232 "\"%s\" to null value.\n"),
2234 set_in_environ (current_inferior ()->environment, var, "");
2237 set_in_environ (current_inferior ()->environment, var, val);
2242 unset_environment_command (char *var, int from_tty)
2246 /* If there is no argument, delete all environment variables.
2247 Ask for confirmation if reading from the terminal. */
2248 if (!from_tty || query (_("Delete all environment variables? ")))
2250 free_environ (current_inferior ()->environment);
2251 current_inferior ()->environment = make_environ ();
2255 unset_in_environ (current_inferior ()->environment, var);
2258 /* Handle the execution path (PATH variable). */
2260 static const char path_var_name[] = "PATH";
2263 path_info (char *args, int from_tty)
2265 puts_filtered ("Executable and object file path: ");
2266 puts_filtered (get_in_environ (current_inferior ()->environment,
2268 puts_filtered ("\n");
2271 /* Add zero or more directories to the front of the execution path. */
2274 path_command (char *dirname, int from_tty)
2280 env = get_in_environ (current_inferior ()->environment, path_var_name);
2281 /* Can be null if path is not set. */
2284 exec_path = xstrdup (env);
2285 mod_path (dirname, &exec_path);
2286 set_in_environ (current_inferior ()->environment, path_var_name, exec_path);
2289 path_info ((char *) NULL, from_tty);
2293 /* Print out the register NAME with value VAL, to FILE, in the default
2297 default_print_one_register_info (struct ui_file *file,
2301 struct type *regtype = value_type (val);
2302 int print_raw_format;
2304 fputs_filtered (name, file);
2305 print_spaces_filtered (15 - strlen (name), file);
2307 print_raw_format = (value_entirely_available (val)
2308 && !value_optimized_out (val));
2310 /* If virtual format is floating, print it that way, and in raw
2312 if (TYPE_CODE (regtype) == TYPE_CODE_FLT
2313 || TYPE_CODE (regtype) == TYPE_CODE_DECFLOAT)
2315 struct value_print_options opts;
2316 const gdb_byte *valaddr = value_contents_for_printing (val);
2317 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (regtype));
2319 get_user_print_options (&opts);
2323 value_contents_for_printing (val),
2324 value_embedded_offset (val), 0,
2325 file, 0, val, &opts, current_language);
2327 if (print_raw_format)
2329 fprintf_filtered (file, "\t(raw ");
2330 print_hex_chars (file, valaddr, TYPE_LENGTH (regtype), byte_order);
2331 fprintf_filtered (file, ")");
2336 struct value_print_options opts;
2338 /* Print the register in hex. */
2339 get_formatted_print_options (&opts, 'x');
2342 value_contents_for_printing (val),
2343 value_embedded_offset (val), 0,
2344 file, 0, val, &opts, current_language);
2345 /* If not a vector register, print it also according to its
2347 if (print_raw_format && TYPE_VECTOR (regtype) == 0)
2349 get_user_print_options (&opts);
2351 fprintf_filtered (file, "\t");
2353 value_contents_for_printing (val),
2354 value_embedded_offset (val), 0,
2355 file, 0, val, &opts, current_language);
2359 fprintf_filtered (file, "\n");
2362 /* Print out the machine register regnum. If regnum is -1, print all
2363 registers (print_all == 1) or all non-float and non-vector
2364 registers (print_all == 0).
2366 For most machines, having all_registers_info() print the
2367 register(s) one per line is good enough. If a different format is
2368 required, (eg, for MIPS or Pyramid 90x, which both have lots of
2369 regs), or there is an existing convention for showing all the
2370 registers, define the architecture method PRINT_REGISTERS_INFO to
2371 provide that format. */
2374 default_print_registers_info (struct gdbarch *gdbarch,
2375 struct ui_file *file,
2376 struct frame_info *frame,
2377 int regnum, int print_all)
2380 const int numregs = gdbarch_num_regs (gdbarch)
2381 + gdbarch_num_pseudo_regs (gdbarch);
2383 for (i = 0; i < numregs; i++)
2385 /* Decide between printing all regs, non-float / vector regs, or
2391 if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
2396 if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
2406 /* If the register name is empty, it is undefined for this
2407 processor, so don't display anything. */
2408 if (gdbarch_register_name (gdbarch, i) == NULL
2409 || *(gdbarch_register_name (gdbarch, i)) == '\0')
2412 default_print_one_register_info (file,
2413 gdbarch_register_name (gdbarch, i),
2414 value_of_register (i, frame));
2419 registers_info (char *addr_exp, int fpregs)
2421 struct frame_info *frame;
2422 struct gdbarch *gdbarch;
2424 if (!target_has_registers)
2425 error (_("The program has no registers now."));
2426 frame = get_selected_frame (NULL);
2427 gdbarch = get_frame_arch (frame);
2431 gdbarch_print_registers_info (gdbarch, gdb_stdout,
2436 while (*addr_exp != '\0')
2441 /* Skip leading white space. */
2442 addr_exp = skip_spaces (addr_exp);
2444 /* Discard any leading ``$''. Check that there is something
2445 resembling a register following it. */
2446 if (addr_exp[0] == '$')
2448 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
2449 error (_("Missing register name"));
2451 /* Find the start/end of this register name/num/group. */
2453 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
2457 /* Figure out what we've found and display it. */
2459 /* A register name? */
2461 int regnum = user_reg_map_name_to_regnum (gdbarch, start, end - start);
2465 /* User registers lie completely outside of the range of
2466 normal registers. Catch them early so that the target
2468 if (regnum >= gdbarch_num_regs (gdbarch)
2469 + gdbarch_num_pseudo_regs (gdbarch))
2471 struct value *regval = value_of_user_reg (regnum, frame);
2472 const char *regname = user_reg_map_regnum_to_name (gdbarch,
2475 /* Print in the same fashion
2476 gdbarch_print_registers_info's default
2477 implementation prints. */
2478 default_print_one_register_info (gdb_stdout,
2483 gdbarch_print_registers_info (gdbarch, gdb_stdout,
2484 frame, regnum, fpregs);
2489 /* A register group? */
2491 struct reggroup *group;
2493 for (group = reggroup_next (gdbarch, NULL);
2495 group = reggroup_next (gdbarch, group))
2497 /* Don't bother with a length check. Should the user
2498 enter a short register group name, go with the first
2499 group that matches. */
2500 if (strncmp (start, reggroup_name (group), end - start) == 0)
2508 regnum < gdbarch_num_regs (gdbarch)
2509 + gdbarch_num_pseudo_regs (gdbarch);
2512 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
2513 gdbarch_print_registers_info (gdbarch,
2521 /* Nothing matched. */
2522 error (_("Invalid register `%.*s'"), (int) (end - start), start);
2527 all_registers_info (char *addr_exp, int from_tty)
2529 registers_info (addr_exp, 1);
2533 nofp_registers_info (char *addr_exp, int from_tty)
2535 registers_info (addr_exp, 0);
2539 print_vector_info (struct ui_file *file,
2540 struct frame_info *frame, const char *args)
2542 struct gdbarch *gdbarch = get_frame_arch (frame);
2544 if (gdbarch_print_vector_info_p (gdbarch))
2545 gdbarch_print_vector_info (gdbarch, file, frame, args);
2549 int printed_something = 0;
2552 regnum < gdbarch_num_regs (gdbarch)
2553 + gdbarch_num_pseudo_regs (gdbarch);
2556 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
2558 printed_something = 1;
2559 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2562 if (!printed_something)
2563 fprintf_filtered (file, "No vector information\n");
2568 vector_info (char *args, int from_tty)
2570 if (!target_has_registers)
2571 error (_("The program has no registers now."));
2573 print_vector_info (gdb_stdout, get_selected_frame (NULL), args);
2576 /* Kill the inferior process. Make us have no inferior. */
2579 kill_command (char *arg, int from_tty)
2581 /* FIXME: This should not really be inferior_ptid (or target_has_execution).
2582 It should be a distinct flag that indicates that a target is active, cuz
2583 some targets don't have processes! */
2585 if (ptid_equal (inferior_ptid, null_ptid))
2586 error (_("The program is not being run."));
2587 if (!query (_("Kill the program being debugged? ")))
2588 error (_("Not confirmed."));
2591 /* If we still have other inferiors to debug, then don't mess with
2592 with their threads. */
2593 if (!have_inferiors ())
2595 init_thread_list (); /* Destroy thread info. */
2597 /* Killing off the inferior can leave us with a core file. If
2598 so, print the state we are left in. */
2599 if (target_has_stack)
2601 printf_filtered (_("In %s,\n"), target_longname);
2602 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC, 1);
2605 bfd_cache_close_all ();
2608 /* Used in `attach&' command. ARG is a point to an integer
2609 representing a process id. Proceed threads of this process iff
2610 they stopped due to debugger request, and when they did, they
2611 reported a clean stop (GDB_SIGNAL_0). Do not proceed threads
2612 that have been explicitly been told to stop. */
2615 proceed_after_attach_callback (struct thread_info *thread,
2618 int pid = * (int *) arg;
2620 if (ptid_get_pid (thread->ptid) == pid
2621 && !is_exited (thread->ptid)
2622 && !is_executing (thread->ptid)
2623 && !thread->stop_requested
2624 && thread->suspend.stop_signal == GDB_SIGNAL_0)
2626 switch_to_thread (thread->ptid);
2627 clear_proceed_status (0);
2628 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
2635 proceed_after_attach (int pid)
2637 /* Don't error out if the current thread is running, because
2638 there may be other stopped threads. */
2639 struct cleanup *old_chain;
2641 /* Backup current thread and selected frame. */
2642 old_chain = make_cleanup_restore_current_thread ();
2644 iterate_over_threads (proceed_after_attach_callback, &pid);
2646 /* Restore selected ptid. */
2647 do_cleanups (old_chain);
2650 /* See inferior.h. */
2653 setup_inferior (int from_tty)
2655 struct inferior *inferior;
2657 inferior = current_inferior ();
2658 inferior->needs_setup = 0;
2660 /* If no exec file is yet known, try to determine it from the
2662 if (get_exec_file (0) == NULL)
2663 exec_file_locate_attach (ptid_get_pid (inferior_ptid), 1, from_tty);
2666 reopen_exec_file ();
2670 /* Take any necessary post-attaching actions for this platform. */
2671 target_post_attach (ptid_get_pid (inferior_ptid));
2673 post_create_inferior (¤t_target, from_tty);
2676 /* What to do after the first program stops after attaching. */
2677 enum attach_post_wait_mode
2679 /* Do nothing. Leaves threads as they are. */
2680 ATTACH_POST_WAIT_NOTHING,
2682 /* Re-resume threads that are marked running. */
2683 ATTACH_POST_WAIT_RESUME,
2685 /* Stop all threads. */
2686 ATTACH_POST_WAIT_STOP,
2689 /* Called after we've attached to a process and we've seen it stop for
2690 the first time. If ASYNC_EXEC is true, re-resume threads that
2691 should be running. Else if ATTACH, */
2694 attach_post_wait (char *args, int from_tty, enum attach_post_wait_mode mode)
2696 struct inferior *inferior;
2698 inferior = current_inferior ();
2699 inferior->control.stop_soon = NO_STOP_QUIETLY;
2701 if (inferior->needs_setup)
2702 setup_inferior (from_tty);
2704 if (mode == ATTACH_POST_WAIT_RESUME)
2706 /* The user requested an `attach&', so be sure to leave threads
2707 that didn't get a signal running. */
2709 /* Immediatelly resume all suspended threads of this inferior,
2710 and this inferior only. This should have no effect on
2711 already running threads. If a thread has been stopped with a
2712 signal, leave it be. */
2714 proceed_after_attach (inferior->pid);
2717 if (inferior_thread ()->suspend.stop_signal == GDB_SIGNAL_0)
2719 clear_proceed_status (0);
2720 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT);
2724 else if (mode == ATTACH_POST_WAIT_STOP)
2726 /* The user requested a plain `attach', so be sure to leave
2727 the inferior stopped. */
2729 /* At least the current thread is already stopped. */
2731 /* In all-stop, by definition, all threads have to be already
2732 stopped at this point. In non-stop, however, although the
2733 selected thread is stopped, others may still be executing.
2734 Be sure to explicitly stop all threads of the process. This
2735 should have no effect on already stopped threads. */
2737 target_stop (pid_to_ptid (inferior->pid));
2738 else if (target_is_non_stop_p ())
2740 struct thread_info *thread;
2741 struct thread_info *lowest = inferior_thread ();
2742 int pid = current_inferior ()->pid;
2744 stop_all_threads ();
2746 /* It's not defined which thread will report the attach
2747 stop. For consistency, always select the thread with
2748 lowest GDB number, which should be the main thread, if it
2750 ALL_NON_EXITED_THREADS (thread)
2752 if (ptid_get_pid (thread->ptid) == pid)
2754 if (thread->inf->num < lowest->inf->num
2755 || thread->per_inf_num < lowest->per_inf_num)
2760 switch_to_thread (lowest->ptid);
2763 /* Tell the user/frontend where we're stopped. */
2765 if (deprecated_attach_hook)
2766 deprecated_attach_hook ();
2770 struct attach_command_continuation_args
2774 enum attach_post_wait_mode mode;
2778 attach_command_continuation (void *args, int err)
2780 struct attach_command_continuation_args *a
2781 = (struct attach_command_continuation_args *) args;
2786 attach_post_wait (a->args, a->from_tty, a->mode);
2790 attach_command_continuation_free_args (void *args)
2792 struct attach_command_continuation_args *a
2793 = (struct attach_command_continuation_args *) args;
2799 /* "attach" command entry point. Takes a program started up outside
2800 of gdb and ``attaches'' to it. This stops it cold in its tracks
2801 and allows us to start debugging it. */
2804 attach_command (char *args, int from_tty)
2807 struct cleanup *args_chain;
2808 struct target_ops *attach_target;
2809 struct inferior *inferior = current_inferior ();
2810 enum attach_post_wait_mode mode;
2812 dont_repeat (); /* Not for the faint of heart */
2814 if (gdbarch_has_global_solist (target_gdbarch ()))
2815 /* Don't complain if all processes share the same symbol
2818 else if (target_has_execution)
2820 if (query (_("A program is being debugged already. Kill it? ")))
2823 error (_("Not killed."));
2826 /* Clean up any leftovers from other runs. Some other things from
2827 this function should probably be moved into target_pre_inferior. */
2828 target_pre_inferior (from_tty);
2830 args = strip_bg_char (args, &async_exec);
2831 args_chain = make_cleanup (xfree, args);
2833 attach_target = find_attach_target ();
2835 prepare_execution_command (attach_target, async_exec);
2837 if (non_stop && !attach_target->to_supports_non_stop (attach_target))
2838 error (_("Cannot attach to this target in non-stop mode"));
2840 attach_target->to_attach (attach_target, args, from_tty);
2841 /* to_attach should push the target, so after this point we
2842 shouldn't refer to attach_target again. */
2843 attach_target = NULL;
2845 /* Set up the "saved terminal modes" of the inferior
2846 based on what modes we are starting it with. */
2847 target_terminal_init ();
2849 /* Install inferior's terminal modes. This may look like a no-op,
2850 as we've just saved them above, however, this does more than
2851 restore terminal settings:
2853 - installs a SIGINT handler that forwards SIGINT to the inferior.
2854 Otherwise a Ctrl-C pressed just while waiting for the initial
2855 stop would end up as a spurious Quit.
2857 - removes stdin from the event loop, which we need if attaching
2858 in the foreground, otherwise on targets that report an initial
2859 stop on attach (which are most) we'd process input/commands
2860 while we're in the event loop waiting for that stop. That is,
2861 before the attach continuation runs and the command is really
2863 target_terminal_inferior ();
2865 /* Set up execution context to know that we should return from
2866 wait_for_inferior as soon as the target reports a stop. */
2867 init_wait_for_inferior ();
2868 clear_proceed_status (0);
2870 inferior->needs_setup = 1;
2872 if (target_is_non_stop_p ())
2874 /* If we find that the current thread isn't stopped, explicitly
2875 do so now, because we're going to install breakpoints and
2879 /* The user requested an `attach&'; stop just one thread. */
2880 target_stop (inferior_ptid);
2882 /* The user requested an `attach', so stop all threads of this
2884 target_stop (pid_to_ptid (ptid_get_pid (inferior_ptid)));
2887 mode = async_exec ? ATTACH_POST_WAIT_RESUME : ATTACH_POST_WAIT_STOP;
2889 /* Some system don't generate traps when attaching to inferior.
2890 E.g. Mach 3 or GNU hurd. */
2891 if (!target_attach_no_wait)
2893 struct attach_command_continuation_args *a;
2895 /* Careful here. See comments in inferior.h. Basically some
2896 OSes don't ignore SIGSTOPs on continue requests anymore. We
2897 need a way for handle_inferior_event to reset the stop_signal
2898 variable after an attach, and this is what
2899 STOP_QUIETLY_NO_SIGSTOP is for. */
2900 inferior->control.stop_soon = STOP_QUIETLY_NO_SIGSTOP;
2902 /* Wait for stop. */
2903 a = XNEW (struct attach_command_continuation_args);
2904 a->args = xstrdup (args);
2905 a->from_tty = from_tty;
2907 add_inferior_continuation (attach_command_continuation, a,
2908 attach_command_continuation_free_args);
2909 /* Done with ARGS. */
2910 do_cleanups (args_chain);
2912 if (!target_is_async_p ())
2913 mark_infrun_async_event_handler ();
2917 /* Done with ARGS. */
2918 do_cleanups (args_chain);
2920 attach_post_wait (args, from_tty, mode);
2923 /* We had just found out that the target was already attached to an
2924 inferior. PTID points at a thread of this new inferior, that is
2925 the most likely to be stopped right now, but not necessarily so.
2926 The new inferior is assumed to be already added to the inferior
2927 list at this point. If LEAVE_RUNNING, then leave the threads of
2928 this inferior running, except those we've explicitly seen reported
2932 notice_new_inferior (ptid_t ptid, int leave_running, int from_tty)
2934 struct cleanup* old_chain;
2935 enum attach_post_wait_mode mode;
2937 old_chain = make_cleanup (null_cleanup, NULL);
2939 mode = leave_running ? ATTACH_POST_WAIT_RESUME : ATTACH_POST_WAIT_NOTHING;
2941 if (!ptid_equal (inferior_ptid, null_ptid))
2942 make_cleanup_restore_current_thread ();
2944 /* Avoid reading registers -- we haven't fetched the target
2946 switch_to_thread_no_regs (find_thread_ptid (ptid));
2948 /* When we "notice" a new inferior we need to do all the things we
2949 would normally do if we had just attached to it. */
2951 if (is_executing (inferior_ptid))
2953 struct attach_command_continuation_args *a;
2954 struct inferior *inferior = current_inferior ();
2956 /* We're going to install breakpoints, and poke at memory,
2957 ensure that the inferior is stopped for a moment while we do
2959 target_stop (inferior_ptid);
2961 inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
2963 /* Wait for stop before proceeding. */
2964 a = XNEW (struct attach_command_continuation_args);
2965 a->args = xstrdup ("");
2966 a->from_tty = from_tty;
2968 add_inferior_continuation (attach_command_continuation, a,
2969 attach_command_continuation_free_args);
2971 do_cleanups (old_chain);
2975 attach_post_wait ("" /* args */, from_tty, mode);
2977 do_cleanups (old_chain);
2982 * takes a program previously attached to and detaches it.
2983 * The program resumes execution and will no longer stop
2984 * on signals, etc. We better not have left any breakpoints
2985 * in the program or it'll die when it hits one. For this
2986 * to work, it may be necessary for the process to have been
2987 * previously attached. It *might* work if the program was
2988 * started via the normal ptrace (PTRACE_TRACEME).
2992 detach_command (char *args, int from_tty)
2994 dont_repeat (); /* Not for the faint of heart. */
2996 if (ptid_equal (inferior_ptid, null_ptid))
2997 error (_("The program is not being run."));
2999 query_if_trace_running (from_tty);
3001 disconnect_tracing ();
3003 target_detach (args, from_tty);
3005 /* The current inferior process was just detached successfully. Get
3006 rid of breakpoints that no longer make sense. Note we don't do
3007 this within target_detach because that is also used when
3008 following child forks, and in that case we will want to transfer
3009 breakpoints to the child, not delete them. */
3010 breakpoint_init_inferior (inf_exited);
3012 /* If the solist is global across inferiors, don't clear it when we
3013 detach from a single inferior. */
3014 if (!gdbarch_has_global_solist (target_gdbarch ()))
3015 no_shared_libraries (NULL, from_tty);
3017 /* If we still have inferiors to debug, then don't mess with their
3019 if (!have_inferiors ())
3020 init_thread_list ();
3022 if (deprecated_detach_hook)
3023 deprecated_detach_hook ();
3026 /* Disconnect from the current target without resuming it (leaving it
3027 waiting for a debugger).
3029 We'd better not have left any breakpoints in the program or the
3030 next debugger will get confused. Currently only supported for some
3031 remote targets, since the normal attach mechanisms don't work on
3032 stopped processes on some native platforms (e.g. GNU/Linux). */
3035 disconnect_command (char *args, int from_tty)
3037 dont_repeat (); /* Not for the faint of heart. */
3038 query_if_trace_running (from_tty);
3039 disconnect_tracing ();
3040 target_disconnect (args, from_tty);
3041 no_shared_libraries (NULL, from_tty);
3042 init_thread_list ();
3043 if (deprecated_detach_hook)
3044 deprecated_detach_hook ();
3048 interrupt_target_1 (int all_threads)
3053 ptid = minus_one_ptid;
3055 ptid = inferior_ptid;
3060 target_interrupt (ptid);
3062 /* Tag the thread as having been explicitly requested to stop, so
3063 other parts of gdb know not to resume this thread automatically,
3064 if it was stopped due to an internal event. Limit this to
3065 non-stop mode, as when debugging a multi-threaded application in
3066 all-stop mode, we will only get one stop event --- it's undefined
3067 which thread will report the event. */
3069 set_stop_requested (ptid, 1);
3073 Stop the execution of the target while running in async mode, in
3074 the backgound. In all-stop, stop the whole process. In non-stop
3075 mode, stop the current thread only by default, or stop all threads
3076 if the `-a' switch is used. */
3079 interrupt_command (char *args, int from_tty)
3081 if (target_can_async_p ())
3083 int all_threads = 0;
3085 dont_repeat (); /* Not for the faint of heart. */
3088 && startswith (args, "-a"))
3091 if (!non_stop && all_threads)
3092 error (_("-a is meaningless in all-stop mode."));
3094 interrupt_target_1 (all_threads);
3098 /* See inferior.h. */
3101 default_print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
3102 struct frame_info *frame, const char *args)
3105 int printed_something = 0;
3108 regnum < gdbarch_num_regs (gdbarch)
3109 + gdbarch_num_pseudo_regs (gdbarch);
3112 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
3114 printed_something = 1;
3115 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
3118 if (!printed_something)
3119 fprintf_filtered (file, "No floating-point info "
3120 "available for this processor.\n");
3124 float_info (char *args, int from_tty)
3126 struct frame_info *frame;
3128 if (!target_has_registers)
3129 error (_("The program has no registers now."));
3131 frame = get_selected_frame (NULL);
3132 gdbarch_print_float_info (get_frame_arch (frame), gdb_stdout, frame, args);
3136 unset_command (char *args, int from_tty)
3138 printf_filtered (_("\"unset\" must be followed by the "
3139 "name of an unset subcommand.\n"));
3140 help_list (unsetlist, "unset ", all_commands, gdb_stdout);
3143 /* Implement `info proc' family of commands. */
3146 info_proc_cmd_1 (char *args, enum info_proc_what what, int from_tty)
3148 struct gdbarch *gdbarch = get_current_arch ();
3150 if (!target_info_proc (args, what))
3152 if (gdbarch_info_proc_p (gdbarch))
3153 gdbarch_info_proc (gdbarch, args, what);
3155 error (_("Not supported on this target."));
3159 /* Implement `info proc' when given without any futher parameters. */
3162 info_proc_cmd (char *args, int from_tty)
3164 info_proc_cmd_1 (args, IP_MINIMAL, from_tty);
3167 /* Implement `info proc mappings'. */
3170 info_proc_cmd_mappings (char *args, int from_tty)
3172 info_proc_cmd_1 (args, IP_MAPPINGS, from_tty);
3175 /* Implement `info proc stat'. */
3178 info_proc_cmd_stat (char *args, int from_tty)
3180 info_proc_cmd_1 (args, IP_STAT, from_tty);
3183 /* Implement `info proc status'. */
3186 info_proc_cmd_status (char *args, int from_tty)
3188 info_proc_cmd_1 (args, IP_STATUS, from_tty);
3191 /* Implement `info proc cwd'. */
3194 info_proc_cmd_cwd (char *args, int from_tty)
3196 info_proc_cmd_1 (args, IP_CWD, from_tty);
3199 /* Implement `info proc cmdline'. */
3202 info_proc_cmd_cmdline (char *args, int from_tty)
3204 info_proc_cmd_1 (args, IP_CMDLINE, from_tty);
3207 /* Implement `info proc exe'. */
3210 info_proc_cmd_exe (char *args, int from_tty)
3212 info_proc_cmd_1 (args, IP_EXE, from_tty);
3215 /* Implement `info proc all'. */
3218 info_proc_cmd_all (char *args, int from_tty)
3220 info_proc_cmd_1 (args, IP_ALL, from_tty);
3224 _initialize_infcmd (void)
3226 static struct cmd_list_element *info_proc_cmdlist;
3227 struct cmd_list_element *c = NULL;
3228 const char *cmd_name;
3230 /* Add the filename of the terminal connected to inferior I/O. */
3231 add_setshow_optional_filename_cmd ("inferior-tty", class_run,
3232 &inferior_io_terminal_scratch, _("\
3233 Set terminal for future runs of program being debugged."), _("\
3234 Show terminal for future runs of program being debugged."), _("\
3235 Usage: set inferior-tty [TTY]\n\n\
3236 If TTY is omitted, the default behavior of using the same terminal as GDB\n\
3238 set_inferior_tty_command,
3239 show_inferior_tty_command,
3240 &setlist, &showlist);
3241 add_com_alias ("tty", "set inferior-tty", class_alias, 0);
3244 add_setshow_string_noescape_cmd (cmd_name, class_run,
3245 &inferior_args_scratch, _("\
3246 Set argument list to give program being debugged when it is started."), _("\
3247 Show argument list to give program being debugged when it is started."), _("\
3248 Follow this command with any number of args, to be passed to the program."),
3251 &setlist, &showlist);
3252 c = lookup_cmd (&cmd_name, setlist, "", -1, 1);
3253 gdb_assert (c != NULL);
3254 set_cmd_completer (c, filename_completer);
3256 c = add_cmd ("environment", no_class, environment_info, _("\
3257 The environment to give the program, or one variable's value.\n\
3258 With an argument VAR, prints the value of environment variable VAR to\n\
3259 give the program being debugged. With no arguments, prints the entire\n\
3260 environment to be given to the program."), &showlist);
3261 set_cmd_completer (c, noop_completer);
3263 add_prefix_cmd ("unset", no_class, unset_command,
3264 _("Complement to certain \"set\" commands."),
3265 &unsetlist, "unset ", 0, &cmdlist);
3267 c = add_cmd ("environment", class_run, unset_environment_command, _("\
3268 Cancel environment variable VAR for the program.\n\
3269 This does not affect the program until the next \"run\" command."),
3271 set_cmd_completer (c, noop_completer);
3273 c = add_cmd ("environment", class_run, set_environment_command, _("\
3274 Set environment variable value to give the program.\n\
3275 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
3276 VALUES of environment variables are uninterpreted strings.\n\
3277 This does not affect the program until the next \"run\" command."),
3279 set_cmd_completer (c, noop_completer);
3281 c = add_com ("path", class_files, path_command, _("\
3282 Add directory DIR(s) to beginning of search path for object files.\n\
3283 $cwd in the path means the current working directory.\n\
3284 This path is equivalent to the $PATH shell variable. It is a list of\n\
3285 directories, separated by colons. These directories are searched to find\n\
3286 fully linked executable files and separately compiled object files as \
3288 set_cmd_completer (c, filename_completer);
3290 c = add_cmd ("paths", no_class, path_info, _("\
3291 Current search path for finding object files.\n\
3292 $cwd in the path means the current working directory.\n\
3293 This path is equivalent to the $PATH shell variable. It is a list of\n\
3294 directories, separated by colons. These directories are searched to find\n\
3295 fully linked executable files and separately compiled object files as \
3298 set_cmd_completer (c, noop_completer);
3300 add_prefix_cmd ("kill", class_run, kill_command,
3301 _("Kill execution of program being debugged."),
3302 &killlist, "kill ", 0, &cmdlist);
3304 add_com ("attach", class_run, attach_command, _("\
3305 Attach to a process or file outside of GDB.\n\
3306 This command attaches to another target, of the same type as your last\n\
3307 \"target\" command (\"info files\" will show your target stack).\n\
3308 The command may take as argument a process id or a device file.\n\
3309 For a process id, you must have permission to send the process a signal,\n\
3310 and it must have the same effective uid as the debugger.\n\
3311 When using \"attach\" with a process id, the debugger finds the\n\
3312 program running in the process, looking first in the current working\n\
3313 directory, or (if not found there) using the source file search path\n\
3314 (see the \"directory\" command). You can also use the \"file\" command\n\
3315 to specify the program, and to load its symbol table."));
3317 add_prefix_cmd ("detach", class_run, detach_command, _("\
3318 Detach a process or file previously attached.\n\
3319 If a process, it is no longer traced, and it continues its execution. If\n\
3320 you were debugging a file, the file is closed and gdb no longer accesses it."),
3321 &detachlist, "detach ", 0, &cmdlist);
3323 add_com ("disconnect", class_run, disconnect_command, _("\
3324 Disconnect from a target.\n\
3325 The target will wait for another debugger to connect. Not available for\n\
3328 c = add_com ("signal", class_run, signal_command, _("\
3329 Continue program with the specified signal.\n\
3330 Usage: signal SIGNAL\n\
3331 The SIGNAL argument is processed the same as the handle command.\n\
3333 An argument of \"0\" means continue the program without sending it a signal.\n\
3334 This is useful in cases where the program stopped because of a signal,\n\
3335 and you want to resume the program while discarding the signal.\n\
3337 In a multi-threaded program the signal is delivered to, or discarded from,\n\
3338 the current thread only."));
3339 set_cmd_completer (c, signal_completer);
3341 c = add_com ("queue-signal", class_run, queue_signal_command, _("\
3342 Queue a signal to be delivered to the current thread when it is resumed.\n\
3343 Usage: queue-signal SIGNAL\n\
3344 The SIGNAL argument is processed the same as the handle command.\n\
3345 It is an error if the handling state of SIGNAL is \"nopass\".\n\
3347 An argument of \"0\" means remove any currently queued signal from\n\
3348 the current thread. This is useful in cases where the program stopped\n\
3349 because of a signal, and you want to resume it while discarding the signal.\n\
3351 In a multi-threaded program the signal is queued with, or discarded from,\n\
3352 the current thread only."));
3353 set_cmd_completer (c, signal_completer);
3355 add_com ("stepi", class_run, stepi_command, _("\
3356 Step one instruction exactly.\n\
3358 Argument N means step N times (or till program stops for another \
3360 add_com_alias ("si", "stepi", class_alias, 0);
3362 add_com ("nexti", class_run, nexti_command, _("\
3363 Step one instruction, but proceed through subroutine calls.\n\
3365 Argument N means step N times (or till program stops for another \
3367 add_com_alias ("ni", "nexti", class_alias, 0);
3369 add_com ("finish", class_run, finish_command, _("\
3370 Execute until selected stack frame returns.\n\
3372 Upon return, the value returned is printed and put in the value history."));
3373 add_com_alias ("fin", "finish", class_run, 1);
3375 add_com ("next", class_run, next_command, _("\
3376 Step program, proceeding through subroutine calls.\n\
3378 Unlike \"step\", if the current source line calls a subroutine,\n\
3379 this command does not enter the subroutine, but instead steps over\n\
3380 the call, in effect treating it as a single source line."));
3381 add_com_alias ("n", "next", class_run, 1);
3383 add_com ("step", class_run, step_command, _("\
3384 Step program until it reaches a different source line.\n\
3386 Argument N means step N times (or till program stops for another \
3388 add_com_alias ("s", "step", class_run, 1);
3390 c = add_com ("until", class_run, until_command, _("\
3391 Execute until the program reaches a source line greater than the current\n\
3392 or a specified location (same args as break command) within the current \
3394 set_cmd_completer (c, location_completer);
3395 add_com_alias ("u", "until", class_run, 1);
3397 c = add_com ("advance", class_run, advance_command, _("\
3398 Continue the program up to the given location (same form as args for break \
3400 Execution will also stop upon exit from the current stack frame."));
3401 set_cmd_completer (c, location_completer);
3403 c = add_com ("jump", class_run, jump_command, _("\
3404 Continue program being debugged at specified line or address.\n\
3405 Usage: jump <location>\n\
3406 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
3407 for an address to start at."));
3408 set_cmd_completer (c, location_completer);
3409 add_com_alias ("j", "jump", class_run, 1);
3411 add_com ("continue", class_run, continue_command, _("\
3412 Continue program being debugged, after signal or breakpoint.\n\
3413 Usage: continue [N]\n\
3414 If proceeding from breakpoint, a number N may be used as an argument,\n\
3415 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
3416 the breakpoint won't break until the Nth time it is reached).\n\
3418 If non-stop mode is enabled, continue only the current thread,\n\
3419 otherwise all the threads in the program are continued. To \n\
3420 continue all stopped threads in non-stop mode, use the -a option.\n\
3421 Specifying -a and an ignore count simultaneously is an error."));
3422 add_com_alias ("c", "cont", class_run, 1);
3423 add_com_alias ("fg", "cont", class_run, 1);
3425 c = add_com ("run", class_run, run_command, _("\
3426 Start debugged program. You may specify arguments to give it.\n\
3427 Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
3428 Input and output redirection with \">\", \"<\", or \">>\" are also \
3430 With no arguments, uses arguments last specified (with \"run\" \
3431 or \"set args\").\n\
3432 To cancel previous arguments and run with no arguments,\n\
3433 use \"set args\" without arguments."));
3434 set_cmd_completer (c, filename_completer);
3435 add_com_alias ("r", "run", class_run, 1);
3437 c = add_com ("start", class_run, start_command, _("\
3438 Run the debugged program until the beginning of the main procedure.\n\
3439 You may specify arguments to give to your program, just as with the\n\
3440 \"run\" command."));
3441 set_cmd_completer (c, filename_completer);
3443 add_com ("interrupt", class_run, interrupt_command,
3444 _("Interrupt the execution of the debugged program.\n\
3445 If non-stop mode is enabled, interrupt only the current thread,\n\
3446 otherwise all the threads in the program are stopped. To \n\
3447 interrupt all running threads in non-stop mode, use the -a option."));
3449 c = add_info ("registers", nofp_registers_info, _("\
3450 List of integer registers and their contents, for selected stack frame.\n\
3451 Register name as argument means describe only that register."));
3452 add_info_alias ("r", "registers", 1);
3453 set_cmd_completer (c, reg_or_group_completer);
3455 c = add_info ("all-registers", all_registers_info, _("\
3456 List of all registers and their contents, for selected stack frame.\n\
3457 Register name as argument means describe only that register."));
3458 set_cmd_completer (c, reg_or_group_completer);
3460 add_info ("program", program_info,
3461 _("Execution status of the program."));
3463 add_info ("float", float_info,
3464 _("Print the status of the floating point unit\n"));
3466 add_info ("vector", vector_info,
3467 _("Print the status of the vector unit\n"));
3469 add_prefix_cmd ("proc", class_info, info_proc_cmd,
3471 Show /proc process information about any running process.\n\
3472 Specify any process id, or use the program being debugged by default."),
3473 &info_proc_cmdlist, "info proc ",
3474 1/*allow-unknown*/, &infolist);
3476 add_cmd ("mappings", class_info, info_proc_cmd_mappings, _("\
3477 List of mapped memory regions."),
3478 &info_proc_cmdlist);
3480 add_cmd ("stat", class_info, info_proc_cmd_stat, _("\
3481 List process info from /proc/PID/stat."),
3482 &info_proc_cmdlist);
3484 add_cmd ("status", class_info, info_proc_cmd_status, _("\
3485 List process info from /proc/PID/status."),
3486 &info_proc_cmdlist);
3488 add_cmd ("cwd", class_info, info_proc_cmd_cwd, _("\
3489 List current working directory of the process."),
3490 &info_proc_cmdlist);
3492 add_cmd ("cmdline", class_info, info_proc_cmd_cmdline, _("\
3493 List command line arguments of the process."),
3494 &info_proc_cmdlist);
3496 add_cmd ("exe", class_info, info_proc_cmd_exe, _("\
3497 List absolute filename for executable of the process."),
3498 &info_proc_cmdlist);
3500 add_cmd ("all", class_info, info_proc_cmd_all, _("\
3501 List all available /proc info."),
3502 &info_proc_cmdlist);