1 /* Memory-access and commands for "inferior" process, for GDB.
3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
5 2008, 2009, 2010 Free Software Foundation, Inc.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
23 #include "arch-utils.h"
25 #include "gdb_string.h"
39 #include "completer.h"
41 #include "event-top.h"
42 #include "parser-defs.h"
44 #include "reggroups.h"
48 #include "gdb_assert.h"
50 #include "target-descriptions.h"
51 #include "user-regs.h"
52 #include "exceptions.h"
53 #include "cli/cli-decode.h"
54 #include "gdbthread.h"
56 #include "inline-frame.h"
58 extern void disconnect_or_stop_tracing (int from_tty);
60 /* Functions exported for general use, in inferior.h: */
62 void all_registers_info (char *, int);
64 void registers_info (char *, int);
66 void nexti_command (char *, int);
68 void stepi_command (char *, int);
70 void continue_command (char *, int);
72 void interrupt_target_command (char *args, int from_tty);
74 /* Local functions: */
76 static void nofp_registers_info (char *, int);
78 static void print_return_value (struct type *func_type,
79 struct type *value_type);
81 static void until_next_command (int);
83 static void until_command (char *, int);
85 static void path_info (char *, int);
87 static void path_command (char *, int);
89 static void unset_command (char *, int);
91 static void float_info (char *, int);
93 static void disconnect_command (char *, int);
95 static void unset_environment_command (char *, int);
97 static void set_environment_command (char *, int);
99 static void environment_info (char *, int);
101 static void program_info (char *, int);
103 static void finish_command (char *, int);
105 static void signal_command (char *, int);
107 static void jump_command (char *, int);
109 static void step_1 (int, int, char *);
110 static void step_once (int skip_subroutines, int single_inst, int count, int thread);
112 static void next_command (char *, int);
114 static void step_command (char *, int);
116 static void run_command (char *, int);
118 static void run_no_args_command (char *args, int from_tty);
120 static void go_command (char *line_no, int from_tty);
122 static int strip_bg_char (char **);
124 void _initialize_infcmd (void);
126 #define ERROR_NO_INFERIOR \
127 if (!target_has_execution) error (_("The program is not being run."));
129 /* Scratch area where string containing arguments to give to the program will be
130 stored by 'set args'. As soon as anything is stored, notice_args_set will
131 move it into per-inferior storage. Arguments are separated by spaces. Empty
132 string (pointer to '\0') means no args. */
134 static char *inferior_args_scratch;
136 /* Scratch area where 'set inferior-tty' will store user-provided value.
137 We'll immediate copy it into per-inferior storage. */
139 static char *inferior_io_terminal_scratch;
141 /* Pid of our debugged inferior, or 0 if no inferior now.
142 Since various parts of infrun.c test this to see whether there is a program
143 being debugged it should be nonzero (currently 3 is used) for remote
146 ptid_t inferior_ptid;
148 /* Address at which inferior stopped. */
152 /* Flag indicating that a command has proceeded the inferior past the
153 current breakpoint. */
155 int breakpoint_proceeded;
157 /* Nonzero if stopped due to completion of a stack dummy routine. */
159 int stop_stack_dummy;
161 /* Nonzero if stopped due to a random (unexpected) signal in inferior
164 int stopped_by_random_signal;
167 /* Accessor routines. */
169 /* Set the io terminal for the current inferior. Ownership of
170 TERMINAL_NAME is not transferred. */
173 set_inferior_io_terminal (const char *terminal_name)
175 xfree (current_inferior ()->terminal);
176 current_inferior ()->terminal = terminal_name ? xstrdup (terminal_name) : 0;
180 get_inferior_io_terminal (void)
182 return current_inferior ()->terminal;
186 set_inferior_tty_command (char *args, int from_tty,
187 struct cmd_list_element *c)
189 /* CLI has assigned the user-provided value to inferior_io_terminal_scratch.
190 Now route it to current inferior. */
191 set_inferior_io_terminal (inferior_io_terminal_scratch);
195 show_inferior_tty_command (struct ui_file *file, int from_tty,
196 struct cmd_list_element *c, const char *value)
198 /* Note that we ignore the passed-in value in favor of computing it
200 const char *inferior_io_terminal = get_inferior_io_terminal ();
201 if (inferior_io_terminal == NULL)
202 inferior_io_terminal = "";
203 fprintf_filtered (gdb_stdout,
204 _("Terminal for future runs of program being debugged "
205 "is \"%s\".\n"), inferior_io_terminal);
209 get_inferior_args (void)
211 if (current_inferior ()->argc != 0)
215 n = construct_inferior_arguments (current_inferior ()->argc,
216 current_inferior ()->argv);
217 set_inferior_args (n);
221 if (current_inferior ()->args == NULL)
222 current_inferior ()->args = xstrdup ("");
224 return current_inferior ()->args;
227 /* Set the arguments for the current inferior. Ownership of
228 NEWARGS is not transferred. */
231 set_inferior_args (char *newargs)
233 xfree (current_inferior ()->args);
234 current_inferior ()->args = newargs ? xstrdup (newargs) : NULL;
235 current_inferior ()->argc = 0;
236 current_inferior ()->argv = 0;
240 set_inferior_args_vector (int argc, char **argv)
242 current_inferior ()->argc = argc;
243 current_inferior ()->argv = argv;
246 /* Notice when `set args' is run. */
248 set_args_command (char *args, int from_tty, struct cmd_list_element *c)
250 /* CLI has assigned the user-provided value to inferior_args_scratch.
251 Now route it to current inferior. */
252 set_inferior_args (inferior_args_scratch);
255 /* Notice when `show args' is run. */
257 show_args_command (struct ui_file *file, int from_tty,
258 struct cmd_list_element *c, const char *value)
260 /* Note that we ignore the passed-in value in favor of computing it
262 deprecated_show_value_hack (file, from_tty, c, get_inferior_args ());
266 /* Compute command-line string given argument vector. This does the
267 same shell processing as fork_inferior. */
269 construct_inferior_arguments (int argc, char **argv)
273 if (STARTUP_WITH_SHELL)
275 /* This holds all the characters considered special to the
276 typical Unix shells. We include `^' because the SunOS
277 /bin/sh treats it as a synonym for `|'. */
278 char *special = "\"!#$&*()\\|[]{}<>?'\"`~^; \t\n";
283 /* We over-compute the size. It shouldn't matter. */
284 for (i = 0; i < argc; ++i)
285 length += 3 * strlen (argv[i]) + 1 + 2 * (argv[i][0] == '\0');
287 result = (char *) xmalloc (length);
290 for (i = 0; i < argc; ++i)
295 /* Need to handle empty arguments specially. */
296 if (argv[i][0] == '\0')
303 for (cp = argv[i]; *cp; ++cp)
307 /* A newline cannot be quoted with a backslash (it
308 just disappears), only by putting it inside
316 if (strchr (special, *cp) != NULL)
327 /* In this case we can't handle arguments that contain spaces,
328 tabs, or newlines -- see breakup_args(). */
332 for (i = 0; i < argc; ++i)
334 char *cp = strchr (argv[i], ' ');
336 cp = strchr (argv[i], '\t');
338 cp = strchr (argv[i], '\n');
340 error (_("can't handle command-line argument containing whitespace"));
341 length += strlen (argv[i]) + 1;
344 result = (char *) xmalloc (length);
346 for (i = 0; i < argc; ++i)
349 strcat (result, " ");
350 strcat (result, argv[i]);
358 /* This function detects whether or not a '&' character (indicating
359 background execution) has been added as *the last* of the arguments ARGS
360 of a command. If it has, it removes it and returns 1. Otherwise it
361 does nothing and returns 0. */
363 strip_bg_char (char **args)
367 p = strchr (*args, '&');
371 if (p == (*args + strlen (*args) - 1))
373 if (strlen (*args) > 1)
377 while (*p == ' ' || *p == '\t');
388 /* Common actions to take after creating any sort of inferior, by any
389 means (running, attaching, connecting, et cetera). The target
390 should be stopped. */
393 post_create_inferior (struct target_ops *target, int from_tty)
395 /* Be sure we own the terminal in case write operations are performed. */
396 target_terminal_ours ();
398 /* If the target hasn't taken care of this already, do it now.
399 Targets which need to access registers during to_open,
400 to_create_inferior, or to_attach should do it earlier; but many
402 target_find_description ();
404 /* Now that we know the register layout, retrieve current PC. */
405 stop_pc = regcache_read_pc (get_current_regcache ());
409 /* Create the hooks to handle shared library load and unload
411 #ifdef SOLIB_CREATE_INFERIOR_HOOK
412 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
414 solib_create_inferior_hook (from_tty);
418 /* If the solist is global across processes, there's no need to
420 if (exec_bfd && !gdbarch_has_global_solist (target_gdbarch))
422 /* Sometimes the platform-specific hook loads initial shared
423 libraries, and sometimes it doesn't. If it doesn't FROM_TTY will be
424 incorrectly 0 but such solib targets should be fixed anyway. If we
425 made all the inferior hook methods consistent, this call could be
426 removed. Call it only after the solib target has been initialized by
427 solib_create_inferior_hook. */
430 SOLIB_ADD (NULL, 0, target, auto_solib_add);
432 solib_add (NULL, 0, target, auto_solib_add);
436 /* If the user sets watchpoints before execution having started,
437 then she gets software watchpoints, because GDB can't know which
438 target will end up being pushed, or if it supports hardware
439 watchpoints or not. breakpoint_re_set takes care of promoting
440 watchpoints to hardware watchpoints if possible, however, if this
441 new inferior doesn't load shared libraries or we don't pull in
442 symbols from any other source on this target/arch,
443 breakpoint_re_set is never called. Call it now so that software
444 watchpoints get a chance to be promoted to hardware watchpoints
445 if the now pushed target supports hardware watchpoints. */
446 breakpoint_re_set ();
448 observer_notify_inferior_created (target, from_tty);
451 /* Kill the inferior if already running. This function is designed
452 to be called when we are about to start the execution of the program
453 from the beginning. Ask the user to confirm that he wants to restart
454 the program being debugged when FROM_TTY is non-null. */
457 kill_if_already_running (int from_tty)
459 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
461 /* Bail out before killing the program if we will not be able to
463 target_require_runnable ();
466 && !query (_("The program being debugged has been started already.\n\
467 Start it from the beginning? ")))
468 error (_("Program not restarted."));
473 /* Implement the "run" command. If TBREAK_AT_MAIN is set, then insert
474 a temporary breakpoint at the begining of the main program before
475 running the program. */
478 run_command_1 (char *args, int from_tty, int tbreak_at_main)
481 struct cleanup *old_chain;
486 kill_if_already_running (from_tty);
488 init_wait_for_inferior ();
489 clear_breakpoint_hit_counts ();
491 /* Clean up any leftovers from other runs. Some other things from
492 this function should probably be moved into target_pre_inferior. */
493 target_pre_inferior (from_tty);
495 /* The comment here used to read, "The exec file is re-read every
496 time we do a generic_mourn_inferior, so we just have to worry
497 about the symbol file." The `generic_mourn_inferior' function
498 gets called whenever the program exits. However, suppose the
499 program exits, and *then* the executable file changes? We need
500 to check again here. Since reopen_exec_file doesn't do anything
501 if the timestamp hasn't changed, I don't see the harm. */
505 /* Insert the temporary breakpoint if a location was specified. */
507 tbreak_command (main_name (), 0);
509 exec_file = (char *) get_exec_file (0);
511 if (non_stop && !target_supports_non_stop ())
512 error (_("The target does not support running in non-stop mode."));
514 /* We keep symbols from add-symbol-file, on the grounds that the
515 user might want to add some symbols before running the program
516 (right?). But sometimes (dynamic loading where the user manually
517 introduces the new symbols with add-symbol-file), the code which
518 the symbols describe does not persist between runs. Currently
519 the user has to manually nuke all symbols between runs if they
520 want them to go away (PR 2207). This is probably reasonable. */
524 if (target_can_async_p ())
525 async_disable_stdin ();
529 int async_exec = strip_bg_char (&args);
531 /* If we get a request for running in the bg but the target
532 doesn't support it, error out. */
533 if (async_exec && !target_can_async_p ())
534 error (_("Asynchronous execution not supported on this target."));
536 /* If we don't get a request of running in the bg, then we need
537 to simulate synchronous (fg) execution. */
538 if (!async_exec && target_can_async_p ())
540 /* Simulate synchronous execution */
541 async_disable_stdin ();
544 /* If there were other args, beside '&', process them. */
546 set_inferior_args (args);
551 ui_out_field_string (uiout, NULL, "Starting program");
552 ui_out_text (uiout, ": ");
554 ui_out_field_string (uiout, "execfile", exec_file);
555 ui_out_spaces (uiout, 1);
556 /* We call get_inferior_args() because we might need to compute
558 ui_out_field_string (uiout, "infargs", get_inferior_args ());
559 ui_out_text (uiout, "\n");
560 ui_out_flush (uiout);
563 /* We call get_inferior_args() because we might need to compute
565 target_create_inferior (exec_file, get_inferior_args (),
566 environ_vector (current_inferior ()->environment), from_tty);
568 /* We're starting off a new process. When we get out of here, in
569 non-stop mode, finish the state of all threads of that process,
570 but leave other threads alone, as they may be stopped in internal
571 events --- the frontend shouldn't see them as stopped. In
572 all-stop, always finish the state of all threads, as we may be
573 resuming more than just the new process. */
575 ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
577 ptid = minus_one_ptid;
578 old_chain = make_cleanup (finish_thread_state_cleanup, &ptid);
580 /* Pass zero for FROM_TTY, because at this point the "run" command
581 has done its thing; now we are setting up the running program. */
582 post_create_inferior (¤t_target, 0);
584 /* Start the target running. */
585 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_0, 0);
587 /* Since there was no error, there's no need to finish the thread
589 discard_cleanups (old_chain);
593 run_command (char *args, int from_tty)
595 run_command_1 (args, from_tty, 0);
599 run_no_args_command (char *args, int from_tty)
601 set_inferior_args ("");
605 /* Start the execution of the program up until the beginning of the main
609 start_command (char *args, int from_tty)
611 /* Some languages such as Ada need to search inside the program
612 minimal symbols for the location where to put the temporary
613 breakpoint before starting. */
614 if (!have_minimal_symbols ())
615 error (_("No symbol table loaded. Use the \"file\" command."));
617 /* Run the program until reaching the main procedure... */
618 run_command_1 (args, from_tty, 1);
622 proceed_thread_callback (struct thread_info *thread, void *arg)
624 /* We go through all threads individually instead of compressing
625 into a single target `resume_all' request, because some threads
626 may be stopped in internal breakpoints/events, or stopped waiting
627 for its turn in the displaced stepping queue (that is, they are
628 running && !executing). The target side has no idea about why
629 the thread is stopped, so a `resume_all' command would resume too
630 much. If/when GDB gains a way to tell the target `hold this
631 thread stopped until I say otherwise', then we can optimize
633 if (!is_stopped (thread->ptid))
636 switch_to_thread (thread->ptid);
637 clear_proceed_status ();
638 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
643 ensure_valid_thread (void)
645 if (ptid_equal (inferior_ptid, null_ptid)
646 || is_exited (inferior_ptid))
648 Cannot execute this command without a live selected thread."));
652 continue_1 (int all_threads)
656 if (non_stop && all_threads)
658 /* Don't error out if the current thread is running, because
659 there may be other stopped threads. */
660 struct cleanup *old_chain;
662 /* Backup current thread and selected frame. */
663 old_chain = make_cleanup_restore_current_thread ();
665 iterate_over_threads (proceed_thread_callback, NULL);
667 /* Restore selected ptid. */
668 do_cleanups (old_chain);
672 ensure_valid_thread ();
673 ensure_not_running ();
674 clear_proceed_status ();
675 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
679 /* continue [-a] [proceed-count] [&] */
681 continue_command (char *args, int from_tty)
687 /* Find out whether we must run in the background. */
689 async_exec = strip_bg_char (&args);
691 /* If we must run in the background, but the target can't do it,
693 if (async_exec && !target_can_async_p ())
694 error (_("Asynchronous execution not supported on this target."));
696 /* If we are not asked to run in the bg, then prepare to run in the
697 foreground, synchronously. */
698 if (!async_exec && target_can_async_p ())
700 /* Simulate synchronous execution */
701 async_disable_stdin ();
706 if (strncmp (args, "-a", sizeof ("-a") - 1) == 0)
709 args += sizeof ("-a") - 1;
715 if (!non_stop && all_threads)
716 error (_("`-a' is meaningless in all-stop mode."));
718 if (args != NULL && all_threads)
720 Can't resume all threads and specify proceed count simultaneously."));
722 /* If we have an argument left, set proceed count of breakpoint we
729 struct thread_info *tp;
732 tp = find_thread_ptid (inferior_ptid);
736 struct target_waitstatus ws;
738 get_last_target_status (&last_ptid, &ws);
739 tp = find_thread_ptid (last_ptid);
742 bs = tp->stop_bpstat;
744 while ((stat = bpstat_num (&bs, &num)) != 0)
747 set_ignore_count (num,
748 parse_and_eval_long (args) - 1,
750 /* set_ignore_count prints a message ending with a period.
751 So print two spaces before "Continuing.". */
753 printf_filtered (" ");
757 if (!stopped && from_tty)
760 ("Not stopped at any breakpoint; argument ignored.\n");
765 printf_filtered (_("Continuing.\n"));
767 continue_1 (all_threads);
770 /* Record the starting point of a "step" or "next" command. */
773 set_step_frame (void)
775 struct symtab_and_line sal;
777 find_frame_sal (get_current_frame (), &sal);
778 set_step_info (get_current_frame (), sal);
781 /* Step until outside of current statement. */
784 step_command (char *count_string, int from_tty)
786 step_1 (0, 0, count_string);
789 /* Likewise, but skip over subroutine calls as if single instructions. */
792 next_command (char *count_string, int from_tty)
794 step_1 (1, 0, count_string);
797 /* Likewise, but step only one instruction. */
800 stepi_command (char *count_string, int from_tty)
802 step_1 (0, 1, count_string);
806 nexti_command (char *count_string, int from_tty)
808 step_1 (1, 1, count_string);
812 delete_longjmp_breakpoint_cleanup (void *arg)
814 int thread = * (int *) arg;
815 delete_longjmp_breakpoint (thread);
819 step_1 (int skip_subroutines, int single_inst, char *count_string)
822 struct frame_info *frame;
823 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
828 ensure_valid_thread ();
829 ensure_not_running ();
832 async_exec = strip_bg_char (&count_string);
834 /* If we get a request for running in the bg but the target
835 doesn't support it, error out. */
836 if (async_exec && !target_can_async_p ())
837 error (_("Asynchronous execution not supported on this target."));
839 /* If we don't get a request of running in the bg, then we need
840 to simulate synchronous (fg) execution. */
841 if (!async_exec && target_can_async_p ())
843 /* Simulate synchronous execution */
844 async_disable_stdin ();
847 count = count_string ? parse_and_eval_long (count_string) : 1;
849 if (!single_inst || skip_subroutines) /* leave si command alone */
851 if (in_thread_list (inferior_ptid))
852 thread = pid_to_thread_id (inferior_ptid);
854 set_longjmp_breakpoint (thread);
856 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
859 /* In synchronous case, all is well; each step_once call will step once. */
860 if (!target_can_async_p ())
862 for (; count > 0; count--)
864 struct thread_info *tp;
865 step_once (skip_subroutines, single_inst, count, thread);
867 if (target_has_execution
868 && !ptid_equal (inferior_ptid, null_ptid))
869 tp = inferior_thread ();
873 if (!tp || !tp->stop_step || !tp->step_multi)
875 /* If we stopped for some reason that is not stepping
876 there are no further steps to make. */
883 do_cleanups (cleanups);
887 /* In the case of an asynchronous target things get complicated;
888 do only one step for now, before returning control to the
889 event loop. Let the continuation figure out how many other
890 steps we need to do, and handle them one at the time, through
892 step_once (skip_subroutines, single_inst, count, thread);
894 /* We are running, and the continuation is installed. It will
895 disable the longjmp breakpoint as appropriate. */
896 discard_cleanups (cleanups);
900 struct step_1_continuation_args
903 int skip_subroutines;
908 /* Called after we are done with one step operation, to check whether
909 we need to step again, before we print the prompt and return control
910 to the user. If count is > 1, we will need to do one more call to
911 proceed(), via step_once(). Basically it is like step_once and
912 step_1_continuation are co-recursive. */
914 step_1_continuation (void *args)
916 struct step_1_continuation_args *a = args;
918 if (target_has_execution)
920 struct thread_info *tp;
922 tp = inferior_thread ();
923 if (tp->step_multi && tp->stop_step)
925 /* There are more steps to make, and we did stop due to
926 ending a stepping range. Do another step. */
927 step_once (a->skip_subroutines, a->single_inst,
928 a->count - 1, a->thread);
934 /* We either stopped for some reason that is not stepping, or there
935 are no further steps to make. Cleanup. */
936 if (!a->single_inst || a->skip_subroutines)
937 delete_longjmp_breakpoint (a->thread);
940 /* Do just one step operation. This is useful to implement the 'step
941 n' kind of commands. In case of asynchronous targets, we will have
942 to set up a continuation to be done after the target stops (after
943 this one step). For synch targets, the caller handles further
947 step_once (int skip_subroutines, int single_inst, int count, int thread)
949 struct frame_info *frame = get_current_frame ();
953 /* Don't assume THREAD is a valid thread id. It is set to -1 if
954 the longjmp breakpoint was not required. Use the
955 INFERIOR_PTID thread instead, which is the same thread when
957 struct thread_info *tp = inferior_thread ();
958 clear_proceed_status ();
965 /* Step at an inlined function behaves like "down". */
966 if (!skip_subroutines && !single_inst
967 && inline_skipped_frames (inferior_ptid))
969 step_into_inline_frame (inferior_ptid);
971 step_once (skip_subroutines, single_inst, count - 1, thread);
973 /* Pretend that we've stopped. */
978 pc = get_frame_pc (frame);
979 find_pc_line_pc_range (pc,
980 &tp->step_range_start, &tp->step_range_end);
982 /* If we have no line info, switch to stepi mode. */
983 if (tp->step_range_end == 0 && step_stop_if_no_debug)
984 tp->step_range_start = tp->step_range_end = 1;
985 else if (tp->step_range_end == 0)
988 if (find_pc_partial_function (pc, &name,
989 &tp->step_range_start,
990 &tp->step_range_end) == 0)
991 error (_("Cannot find bounds of current function"));
993 target_terminal_ours ();
994 printf_filtered (_("\
995 Single stepping until exit from function %s, \n\
996 which has no line number information.\n"), name);
1001 /* Say we are stepping, but stop after one insn whatever it does. */
1002 tp->step_range_start = tp->step_range_end = 1;
1003 if (!skip_subroutines)
1005 Don't step over function calls, not even to functions lacking
1007 tp->step_over_calls = STEP_OVER_NONE;
1010 if (skip_subroutines)
1011 tp->step_over_calls = STEP_OVER_ALL;
1013 tp->step_multi = (count > 1);
1014 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1016 /* For async targets, register a continuation to do any
1017 additional steps. For sync targets, the caller will handle
1018 further stepping. */
1019 if (target_can_async_p ())
1021 struct step_1_continuation_args *args;
1023 args = xmalloc (sizeof (*args));
1024 args->skip_subroutines = skip_subroutines;
1025 args->single_inst = single_inst;
1026 args->count = count;
1027 args->thread = thread;
1029 add_intermediate_continuation (tp, step_1_continuation, args, xfree);
1035 /* Continue program at specified address. */
1038 jump_command (char *arg, int from_tty)
1040 struct gdbarch *gdbarch = get_current_arch ();
1042 struct symtabs_and_lines sals;
1043 struct symtab_and_line sal;
1049 ensure_valid_thread ();
1050 ensure_not_running ();
1052 /* Find out whether we must run in the background. */
1054 async_exec = strip_bg_char (&arg);
1056 /* If we must run in the background, but the target can't do it,
1058 if (async_exec && !target_can_async_p ())
1059 error (_("Asynchronous execution not supported on this target."));
1062 error_no_arg (_("starting address"));
1064 sals = decode_line_spec_1 (arg, 1);
1065 if (sals.nelts != 1)
1067 error (_("Unreasonable jump request"));
1073 if (sal.symtab == 0 && sal.pc == 0)
1074 error (_("No source file has been specified."));
1076 resolve_sal_pc (&sal); /* May error out */
1078 /* See if we are trying to jump to another function. */
1079 fn = get_frame_function (get_current_frame ());
1080 sfn = find_pc_function (sal.pc);
1081 if (fn != NULL && sfn != fn)
1083 if (!query (_("Line %d is not in `%s'. Jump anyway? "), sal.line,
1084 SYMBOL_PRINT_NAME (fn)))
1086 error (_("Not confirmed."));
1093 fixup_symbol_section (sfn, 0);
1094 if (section_is_overlay (SYMBOL_OBJ_SECTION (sfn)) &&
1095 !section_is_mapped (SYMBOL_OBJ_SECTION (sfn)))
1097 if (!query (_("WARNING!!! Destination is in unmapped overlay! Jump anyway? ")))
1099 error (_("Not confirmed."));
1109 printf_filtered (_("Continuing at "));
1110 fputs_filtered (paddress (gdbarch, addr), gdb_stdout);
1111 printf_filtered (".\n");
1114 /* If we are not asked to run in the bg, then prepare to run in the
1115 foreground, synchronously. */
1116 if (!async_exec && target_can_async_p ())
1118 /* Simulate synchronous execution */
1119 async_disable_stdin ();
1122 clear_proceed_status ();
1123 proceed (addr, TARGET_SIGNAL_0, 0);
1127 /* Go to line or address in current procedure */
1129 go_command (char *line_no, int from_tty)
1131 if (line_no == (char *) NULL || !*line_no)
1132 printf_filtered (_("Usage: go <location>\n"));
1135 tbreak_command (line_no, from_tty);
1136 jump_command (line_no, from_tty);
1141 /* Continue program giving it specified signal. */
1144 signal_command (char *signum_exp, int from_tty)
1146 enum target_signal oursig;
1149 dont_repeat (); /* Too dangerous. */
1151 ensure_valid_thread ();
1152 ensure_not_running ();
1154 /* Find out whether we must run in the background. */
1155 if (signum_exp != NULL)
1156 async_exec = strip_bg_char (&signum_exp);
1158 /* If we must run in the background, but the target can't do it,
1160 if (async_exec && !target_can_async_p ())
1161 error (_("Asynchronous execution not supported on this target."));
1163 /* If we are not asked to run in the bg, then prepare to run in the
1164 foreground, synchronously. */
1165 if (!async_exec && target_can_async_p ())
1167 /* Simulate synchronous execution. */
1168 async_disable_stdin ();
1172 error_no_arg (_("signal number"));
1174 /* It would be even slicker to make signal names be valid expressions,
1175 (the type could be "enum $signal" or some such), then the user could
1176 assign them to convenience variables. */
1177 oursig = target_signal_from_name (signum_exp);
1179 if (oursig == TARGET_SIGNAL_UNKNOWN)
1181 /* No, try numeric. */
1182 int num = parse_and_eval_long (signum_exp);
1185 oursig = TARGET_SIGNAL_0;
1187 oursig = target_signal_from_command (num);
1192 if (oursig == TARGET_SIGNAL_0)
1193 printf_filtered (_("Continuing with no signal.\n"));
1195 printf_filtered (_("Continuing with signal %s.\n"),
1196 target_signal_to_name (oursig));
1199 clear_proceed_status ();
1200 proceed ((CORE_ADDR) -1, oursig, 0);
1203 /* Proceed until we reach a different source line with pc greater than
1204 our current one or exit the function. We skip calls in both cases.
1206 Note that eventually this command should probably be changed so
1207 that only source lines are printed out when we hit the breakpoint
1208 we set. This may involve changes to wait_for_inferior and the
1209 proceed status code. */
1212 until_next_command (int from_tty)
1214 struct frame_info *frame;
1216 struct symbol *func;
1217 struct symtab_and_line sal;
1218 struct thread_info *tp = inferior_thread ();
1220 clear_proceed_status ();
1223 frame = get_current_frame ();
1225 /* Step until either exited from this function or greater
1226 than the current line (if in symbolic section) or pc (if
1229 pc = get_frame_pc (frame);
1230 func = find_pc_function (pc);
1234 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc);
1236 if (msymbol == NULL)
1237 error (_("Execution is not within a known function."));
1239 tp->step_range_start = SYMBOL_VALUE_ADDRESS (msymbol);
1240 tp->step_range_end = pc;
1244 sal = find_pc_line (pc, 0);
1246 tp->step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
1247 tp->step_range_end = sal.end;
1250 tp->step_over_calls = STEP_OVER_ALL;
1252 tp->step_multi = 0; /* Only one call to proceed */
1254 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1258 until_command (char *arg, int from_tty)
1262 if (!target_has_execution)
1263 error (_("The program is not running."));
1265 /* Find out whether we must run in the background. */
1267 async_exec = strip_bg_char (&arg);
1269 /* If we must run in the background, but the target can't do it,
1271 if (async_exec && !target_can_async_p ())
1272 error (_("Asynchronous execution not supported on this target."));
1274 /* If we are not asked to run in the bg, then prepare to run in the
1275 foreground, synchronously. */
1276 if (!async_exec && target_can_async_p ())
1278 /* Simulate synchronous execution */
1279 async_disable_stdin ();
1283 until_break_command (arg, from_tty, 0);
1285 until_next_command (from_tty);
1289 advance_command (char *arg, int from_tty)
1293 if (!target_has_execution)
1294 error (_("The program is not running."));
1297 error_no_arg (_("a location"));
1299 /* Find out whether we must run in the background. */
1301 async_exec = strip_bg_char (&arg);
1303 /* If we must run in the background, but the target can't do it,
1305 if (async_exec && !target_can_async_p ())
1306 error (_("Asynchronous execution not supported on this target."));
1308 /* If we are not asked to run in the bg, then prepare to run in the
1309 foreground, synchronously. */
1310 if (!async_exec && target_can_async_p ())
1312 /* Simulate synchronous execution. */
1313 async_disable_stdin ();
1316 until_break_command (arg, from_tty, 1);
1319 /* Print the result of a function at the end of a 'finish' command. */
1322 print_return_value (struct type *func_type, struct type *value_type)
1324 struct gdbarch *gdbarch = get_regcache_arch (stop_registers);
1325 struct cleanup *old_chain;
1326 struct ui_stream *stb;
1327 struct value *value;
1329 CHECK_TYPEDEF (value_type);
1330 gdb_assert (TYPE_CODE (value_type) != TYPE_CODE_VOID);
1332 /* FIXME: 2003-09-27: When returning from a nested inferior function
1333 call, it's possible (with no help from the architecture vector)
1334 to locate and return/print a "struct return" value. This is just
1335 a more complicated case of what is already being done in in the
1336 inferior function call code. In fact, when inferior function
1337 calls are made async, this will likely be made the norm. */
1339 switch (gdbarch_return_value (gdbarch, func_type, value_type,
1342 case RETURN_VALUE_REGISTER_CONVENTION:
1343 case RETURN_VALUE_ABI_RETURNS_ADDRESS:
1344 case RETURN_VALUE_ABI_PRESERVES_ADDRESS:
1345 value = allocate_value (value_type);
1346 gdbarch_return_value (gdbarch, func_type, value_type, stop_registers,
1347 value_contents_raw (value), NULL);
1349 case RETURN_VALUE_STRUCT_CONVENTION:
1353 internal_error (__FILE__, __LINE__, _("bad switch"));
1358 struct value_print_options opts;
1361 stb = ui_out_stream_new (uiout);
1362 old_chain = make_cleanup_ui_out_stream_delete (stb);
1363 ui_out_text (uiout, "Value returned is ");
1364 ui_out_field_fmt (uiout, "gdb-result-var", "$%d",
1365 record_latest_value (value));
1366 ui_out_text (uiout, " = ");
1367 get_raw_print_options (&opts);
1368 value_print (value, stb->stream, &opts);
1369 ui_out_field_stream (uiout, "return-value", stb);
1370 ui_out_text (uiout, "\n");
1371 do_cleanups (old_chain);
1375 ui_out_text (uiout, "Value returned has type: ");
1376 ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type));
1377 ui_out_text (uiout, ".");
1378 ui_out_text (uiout, " Cannot determine contents\n");
1382 /* Stuff that needs to be done by the finish command after the target
1383 has stopped. In asynchronous mode, we wait for the target to stop
1384 in the call to poll or select in the event loop, so it is
1385 impossible to do all the stuff as part of the finish_command
1386 function itself. The only chance we have to complete this command
1387 is in fetch_inferior_event, which is called by the event loop as
1388 soon as it detects that the target has stopped. This function is
1389 called via the cmd_continuation pointer. */
1391 struct finish_command_continuation_args
1393 struct breakpoint *breakpoint;
1394 struct symbol *function;
1398 finish_command_continuation (void *arg)
1400 struct finish_command_continuation_args *a = arg;
1401 struct thread_info *tp = NULL;
1404 if (!ptid_equal (inferior_ptid, null_ptid)
1405 && target_has_execution
1406 && is_stopped (inferior_ptid))
1408 tp = inferior_thread ();
1409 bs = tp->stop_bpstat;
1412 if (bpstat_find_breakpoint (bs, a->breakpoint) != NULL
1413 && a->function != NULL)
1415 struct type *value_type;
1417 value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (a->function));
1419 internal_error (__FILE__, __LINE__,
1420 _("finish_command: function has no target type"));
1422 if (TYPE_CODE (value_type) != TYPE_CODE_VOID)
1423 print_return_value (SYMBOL_TYPE (a->function), value_type);
1426 /* We suppress normal call of normal_stop observer and do it here so
1427 that the *stopped notification includes the return value. */
1428 if (bs != NULL && tp->proceed_to_finish)
1429 observer_notify_normal_stop (bs, 1 /* print frame */);
1430 delete_breakpoint (a->breakpoint);
1434 finish_command_continuation_free_arg (void *arg)
1439 /* finish_backward -- helper function for finish_command. */
1442 finish_backward (struct symbol *function)
1444 struct symtab_and_line sal;
1445 struct thread_info *tp = inferior_thread ();
1446 struct breakpoint *breakpoint;
1447 struct cleanup *old_chain;
1449 CORE_ADDR func_addr;
1452 pc = get_frame_pc (get_current_frame ());
1454 if (find_pc_partial_function (pc, NULL, &func_addr, NULL) == 0)
1455 internal_error (__FILE__, __LINE__,
1456 _("Finish: couldn't find function."));
1458 sal = find_pc_line (func_addr, 0);
1460 /* We don't need a return value. */
1461 tp->proceed_to_finish = 0;
1462 /* Special case: if we're sitting at the function entry point,
1463 then all we need to do is take a reverse singlestep. We
1464 don't need to set a breakpoint, and indeed it would do us
1467 Note that this can only happen at frame #0, since there's
1468 no way that a function up the stack can have a return address
1469 that's equal to its entry point. */
1473 struct frame_info *frame = get_selected_frame (NULL);
1474 struct gdbarch *gdbarch = get_frame_arch (frame);
1476 /* Set breakpoint and continue. */
1478 set_momentary_breakpoint (gdbarch, sal,
1479 get_stack_frame_id (frame),
1481 /* Tell the breakpoint to keep quiet. We won't be done
1482 until we've done another reverse single-step. */
1483 make_breakpoint_silent (breakpoint);
1484 old_chain = make_cleanup_delete_breakpoint (breakpoint);
1485 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
1486 /* We will be stopped when proceed returns. */
1487 back_up = bpstat_find_breakpoint (tp->stop_bpstat, breakpoint) != NULL;
1488 do_cleanups (old_chain);
1494 /* If in fact we hit the step-resume breakpoint (and not
1495 some other breakpoint), then we're almost there --
1496 we just need to back up by one more single-step. */
1497 tp->step_range_start = tp->step_range_end = 1;
1498 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1503 /* finish_forward -- helper function for finish_command. */
1506 finish_forward (struct symbol *function, struct frame_info *frame)
1508 struct gdbarch *gdbarch = get_frame_arch (frame);
1509 struct symtab_and_line sal;
1510 struct thread_info *tp = inferior_thread ();
1511 struct breakpoint *breakpoint;
1512 struct cleanup *old_chain;
1513 struct finish_command_continuation_args *cargs;
1515 sal = find_pc_line (get_frame_pc (frame), 0);
1516 sal.pc = get_frame_pc (frame);
1518 breakpoint = set_momentary_breakpoint (gdbarch, sal,
1519 get_stack_frame_id (frame),
1522 old_chain = make_cleanup_delete_breakpoint (breakpoint);
1524 tp->proceed_to_finish = 1; /* We want stop_registers, please... */
1525 cargs = xmalloc (sizeof (*cargs));
1527 cargs->breakpoint = breakpoint;
1528 cargs->function = function;
1529 add_continuation (tp, finish_command_continuation, cargs,
1530 finish_command_continuation_free_arg);
1531 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
1533 discard_cleanups (old_chain);
1534 if (!target_can_async_p ())
1535 do_all_continuations ();
1538 /* "finish": Set a temporary breakpoint at the place the selected
1539 frame will return to, then continue. */
1542 finish_command (char *arg, int from_tty)
1544 struct frame_info *frame;
1545 struct symbol *function;
1549 /* Find out whether we must run in the background. */
1551 async_exec = strip_bg_char (&arg);
1553 /* If we must run in the background, but the target can't do it,
1555 if (async_exec && !target_can_async_p ())
1556 error (_("Asynchronous execution not supported on this target."));
1558 /* Don't try to async in reverse. */
1559 if (async_exec && execution_direction == EXEC_REVERSE)
1560 error (_("Asynchronous 'finish' not supported in reverse."));
1562 /* If we are not asked to run in the bg, then prepare to run in the
1563 foreground, synchronously. */
1564 if (!async_exec && target_can_async_p ())
1566 /* Simulate synchronous execution. */
1567 async_disable_stdin ();
1571 error (_("The \"finish\" command does not take any arguments."));
1572 if (!target_has_execution)
1573 error (_("The program is not running."));
1575 frame = get_prev_frame (get_selected_frame (_("No selected frame.")));
1577 error (_("\"finish\" not meaningful in the outermost frame."));
1579 clear_proceed_status ();
1581 /* Finishing from an inline frame is completely different. We don't
1582 try to show the "return value" - no way to locate it. So we do
1583 not need a completion. */
1584 if (get_frame_type (get_selected_frame (_("No selected frame.")))
1587 /* Claim we are stepping in the calling frame. An empty step
1588 range means that we will stop once we aren't in a function
1589 called by that frame. We don't use the magic "1" value for
1590 step_range_end, because then infrun will think this is nexti,
1591 and not step over the rest of this inlined function call. */
1592 struct thread_info *tp = inferior_thread ();
1593 struct symtab_and_line empty_sal;
1594 init_sal (&empty_sal);
1595 set_step_info (frame, empty_sal);
1596 tp->step_range_start = tp->step_range_end = get_frame_pc (frame);
1597 tp->step_over_calls = STEP_OVER_ALL;
1599 /* Print info on the selected frame, including level number but not
1603 printf_filtered (_("Run till exit from "));
1604 print_stack_frame (get_selected_frame (NULL), 1, LOCATION);
1607 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1611 /* Find the function we will return from. */
1613 function = find_pc_function (get_frame_pc (get_selected_frame (NULL)));
1615 /* Print info on the selected frame, including level number but not
1619 if (execution_direction == EXEC_REVERSE)
1620 printf_filtered (_("Run back to call of "));
1622 printf_filtered (_("Run till exit from "));
1624 print_stack_frame (get_selected_frame (NULL), 1, LOCATION);
1627 if (execution_direction == EXEC_REVERSE)
1628 finish_backward (function);
1630 finish_forward (function, frame);
1635 program_info (char *args, int from_tty)
1639 struct thread_info *tp;
1642 if (!target_has_execution)
1644 printf_filtered (_("The program being debugged is not being run.\n"));
1649 ptid = inferior_ptid;
1652 struct target_waitstatus ws;
1653 get_last_target_status (&ptid, &ws);
1656 if (ptid_equal (ptid, null_ptid) || is_exited (ptid))
1657 error (_("Invalid selected thread."));
1658 else if (is_running (ptid))
1659 error (_("Selected thread is running."));
1661 tp = find_thread_ptid (ptid);
1662 bs = tp->stop_bpstat;
1663 stat = bpstat_num (&bs, &num);
1665 target_files_info ();
1666 printf_filtered (_("Program stopped at %s.\n"),
1667 paddress (target_gdbarch, stop_pc));
1669 printf_filtered (_("It stopped after being stepped.\n"));
1672 /* There may be several breakpoints in the same place, so this
1673 isn't as strange as it seems. */
1678 printf_filtered (_("\
1679 It stopped at a breakpoint that has since been deleted.\n"));
1682 printf_filtered (_("It stopped at breakpoint %d.\n"), num);
1683 stat = bpstat_num (&bs, &num);
1686 else if (tp->stop_signal != TARGET_SIGNAL_0)
1688 printf_filtered (_("It stopped with signal %s, %s.\n"),
1689 target_signal_to_name (tp->stop_signal),
1690 target_signal_to_string (tp->stop_signal));
1695 printf_filtered (_("\
1696 Type \"info stack\" or \"info registers\" for more information.\n"));
1701 environment_info (char *var, int from_tty)
1705 char *val = get_in_environ (current_inferior ()->environment, var);
1708 puts_filtered (var);
1709 puts_filtered (" = ");
1710 puts_filtered (val);
1711 puts_filtered ("\n");
1715 puts_filtered ("Environment variable \"");
1716 puts_filtered (var);
1717 puts_filtered ("\" not defined.\n");
1722 char **vector = environ_vector (current_inferior ()->environment);
1725 puts_filtered (*vector++);
1726 puts_filtered ("\n");
1732 set_environment_command (char *arg, int from_tty)
1734 char *p, *val, *var;
1738 error_no_arg (_("environment variable and value"));
1740 /* Find seperation between variable name and value */
1741 p = (char *) strchr (arg, '=');
1742 val = (char *) strchr (arg, ' ');
1744 if (p != 0 && val != 0)
1746 /* We have both a space and an equals. If the space is before the
1747 equals, walk forward over the spaces til we see a nonspace
1748 (possibly the equals). */
1753 /* Now if the = is after the char following the spaces,
1754 take the char following the spaces. */
1758 else if (val != 0 && p == 0)
1762 error_no_arg (_("environment variable to set"));
1764 if (p == 0 || p[1] == 0)
1768 p = arg + strlen (arg); /* So that savestring below will work */
1772 /* Not setting variable value to null */
1774 while (*val == ' ' || *val == '\t')
1778 while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
1781 var = savestring (arg, p - arg);
1784 printf_filtered (_("\
1785 Setting environment variable \"%s\" to null value.\n"),
1787 set_in_environ (current_inferior ()->environment, var, "");
1790 set_in_environ (current_inferior ()->environment, var, val);
1795 unset_environment_command (char *var, int from_tty)
1799 /* If there is no argument, delete all environment variables.
1800 Ask for confirmation if reading from the terminal. */
1801 if (!from_tty || query (_("Delete all environment variables? ")))
1803 free_environ (current_inferior ()->environment);
1804 current_inferior ()->environment = make_environ ();
1808 unset_in_environ (current_inferior ()->environment, var);
1811 /* Handle the execution path (PATH variable) */
1813 static const char path_var_name[] = "PATH";
1816 path_info (char *args, int from_tty)
1818 puts_filtered ("Executable and object file path: ");
1819 puts_filtered (get_in_environ (current_inferior ()->environment, path_var_name));
1820 puts_filtered ("\n");
1823 /* Add zero or more directories to the front of the execution path. */
1826 path_command (char *dirname, int from_tty)
1831 env = get_in_environ (current_inferior ()->environment, path_var_name);
1832 /* Can be null if path is not set */
1835 exec_path = xstrdup (env);
1836 mod_path (dirname, &exec_path);
1837 set_in_environ (current_inferior ()->environment, path_var_name, exec_path);
1840 path_info ((char *) NULL, from_tty);
1844 /* Print out the machine register regnum. If regnum is -1, print all
1845 registers (print_all == 1) or all non-float and non-vector
1846 registers (print_all == 0).
1848 For most machines, having all_registers_info() print the
1849 register(s) one per line is good enough. If a different format is
1850 required, (eg, for MIPS or Pyramid 90x, which both have lots of
1851 regs), or there is an existing convention for showing all the
1852 registers, define the architecture method PRINT_REGISTERS_INFO to
1853 provide that format. */
1856 default_print_registers_info (struct gdbarch *gdbarch,
1857 struct ui_file *file,
1858 struct frame_info *frame,
1859 int regnum, int print_all)
1862 const int numregs = gdbarch_num_regs (gdbarch)
1863 + gdbarch_num_pseudo_regs (gdbarch);
1864 gdb_byte buffer[MAX_REGISTER_SIZE];
1866 for (i = 0; i < numregs; i++)
1868 /* Decide between printing all regs, non-float / vector regs, or
1874 if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
1879 if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
1889 /* If the register name is empty, it is undefined for this
1890 processor, so don't display anything. */
1891 if (gdbarch_register_name (gdbarch, i) == NULL
1892 || *(gdbarch_register_name (gdbarch, i)) == '\0')
1895 fputs_filtered (gdbarch_register_name (gdbarch, i), file);
1896 print_spaces_filtered (15 - strlen (gdbarch_register_name
1897 (gdbarch, i)), file);
1899 /* Get the data in raw format. */
1900 if (! frame_register_read (frame, i, buffer))
1902 fprintf_filtered (file, "*value not available*\n");
1906 /* If virtual format is floating, print it that way, and in raw
1908 if (TYPE_CODE (register_type (gdbarch, i)) == TYPE_CODE_FLT
1909 || TYPE_CODE (register_type (gdbarch, i)) == TYPE_CODE_DECFLOAT)
1912 struct value_print_options opts;
1914 get_user_print_options (&opts);
1916 val_print (register_type (gdbarch, i), buffer, 0, 0,
1917 file, 0, &opts, current_language);
1919 fprintf_filtered (file, "\t(raw 0x");
1920 for (j = 0; j < register_size (gdbarch, i); j++)
1923 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
1926 idx = register_size (gdbarch, i) - 1 - j;
1927 fprintf_filtered (file, "%02x", (unsigned char) buffer[idx]);
1929 fprintf_filtered (file, ")");
1933 struct value_print_options opts;
1935 /* Print the register in hex. */
1936 get_formatted_print_options (&opts, 'x');
1938 val_print (register_type (gdbarch, i), buffer, 0, 0,
1941 /* If not a vector register, print it also according to its
1943 if (TYPE_VECTOR (register_type (gdbarch, i)) == 0)
1945 get_user_print_options (&opts);
1947 fprintf_filtered (file, "\t");
1948 val_print (register_type (gdbarch, i), buffer, 0, 0,
1949 file, 0, &opts, current_language);
1953 fprintf_filtered (file, "\n");
1958 registers_info (char *addr_exp, int fpregs)
1960 struct frame_info *frame;
1961 struct gdbarch *gdbarch;
1962 int regnum, numregs;
1965 if (!target_has_registers)
1966 error (_("The program has no registers now."));
1967 frame = get_selected_frame (NULL);
1968 gdbarch = get_frame_arch (frame);
1972 gdbarch_print_registers_info (gdbarch, gdb_stdout,
1977 while (*addr_exp != '\0')
1982 /* Keep skipping leading white space. */
1983 if (isspace ((*addr_exp)))
1989 /* Discard any leading ``$''. Check that there is something
1990 resembling a register following it. */
1991 if (addr_exp[0] == '$')
1993 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
1994 error (_("Missing register name"));
1996 /* Find the start/end of this register name/num/group. */
1998 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
2002 /* Figure out what we've found and display it. */
2004 /* A register name? */
2006 int regnum = user_reg_map_name_to_regnum (gdbarch, start, end - start);
2009 /* User registers lie completely outside of the range of
2010 normal registers. Catch them early so that the target
2012 if (regnum >= gdbarch_num_regs (gdbarch)
2013 + gdbarch_num_pseudo_regs (gdbarch))
2015 struct value_print_options opts;
2016 struct value *val = value_of_user_reg (regnum, frame);
2018 printf_filtered ("%s: ", start);
2019 get_formatted_print_options (&opts, 'x');
2020 print_scalar_formatted (value_contents (val),
2021 check_typedef (value_type (val)),
2022 &opts, 0, gdb_stdout);
2023 printf_filtered ("\n");
2026 gdbarch_print_registers_info (gdbarch, gdb_stdout,
2027 frame, regnum, fpregs);
2032 /* A register group? */
2034 struct reggroup *group;
2035 for (group = reggroup_next (gdbarch, NULL);
2037 group = reggroup_next (gdbarch, group))
2039 /* Don't bother with a length check. Should the user
2040 enter a short register group name, go with the first
2041 group that matches. */
2042 if (strncmp (start, reggroup_name (group), end - start) == 0)
2049 regnum < gdbarch_num_regs (gdbarch)
2050 + gdbarch_num_pseudo_regs (gdbarch);
2053 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
2054 gdbarch_print_registers_info (gdbarch,
2062 /* Nothing matched. */
2063 error (_("Invalid register `%.*s'"), (int) (end - start), start);
2068 all_registers_info (char *addr_exp, int from_tty)
2070 registers_info (addr_exp, 1);
2074 nofp_registers_info (char *addr_exp, int from_tty)
2076 registers_info (addr_exp, 0);
2080 print_vector_info (struct ui_file *file,
2081 struct frame_info *frame, const char *args)
2083 struct gdbarch *gdbarch = get_frame_arch (frame);
2085 if (gdbarch_print_vector_info_p (gdbarch))
2086 gdbarch_print_vector_info (gdbarch, file, frame, args);
2090 int printed_something = 0;
2093 regnum < gdbarch_num_regs (gdbarch)
2094 + gdbarch_num_pseudo_regs (gdbarch);
2097 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
2099 printed_something = 1;
2100 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2103 if (!printed_something)
2104 fprintf_filtered (file, "No vector information\n");
2109 vector_info (char *args, int from_tty)
2111 if (!target_has_registers)
2112 error (_("The program has no registers now."));
2114 print_vector_info (gdb_stdout, get_selected_frame (NULL), args);
2117 /* Kill the inferior process. Make us have no inferior. */
2120 kill_command (char *arg, int from_tty)
2122 /* FIXME: This should not really be inferior_ptid (or target_has_execution).
2123 It should be a distinct flag that indicates that a target is active, cuz
2124 some targets don't have processes! */
2126 if (ptid_equal (inferior_ptid, null_ptid))
2127 error (_("The program is not being run."));
2128 if (!query (_("Kill the program being debugged? ")))
2129 error (_("Not confirmed."));
2132 /* If we still have other inferiors to debug, then don't mess with
2133 with their threads. */
2134 if (!have_inferiors ())
2136 init_thread_list (); /* Destroy thread info */
2138 /* Killing off the inferior can leave us with a core file. If
2139 so, print the state we are left in. */
2140 if (target_has_stack)
2142 printf_filtered (_("In %s,\n"), target_longname);
2143 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC);
2146 bfd_cache_close_all ();
2149 /* Used in `attach&' command. ARG is a point to an integer
2150 representing a process id. Proceed threads of this process iff
2151 they stopped due to debugger request, and when they did, they
2152 reported a clean stop (TARGET_SIGNAL_0). Do not proceed threads
2153 that have been explicitly been told to stop. */
2156 proceed_after_attach_callback (struct thread_info *thread,
2159 int pid = * (int *) arg;
2161 if (ptid_get_pid (thread->ptid) == pid
2162 && !is_exited (thread->ptid)
2163 && !is_executing (thread->ptid)
2164 && !thread->stop_requested
2165 && thread->stop_signal == TARGET_SIGNAL_0)
2167 switch_to_thread (thread->ptid);
2168 clear_proceed_status ();
2169 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
2176 proceed_after_attach (int pid)
2178 /* Don't error out if the current thread is running, because
2179 there may be other stopped threads. */
2180 struct cleanup *old_chain;
2182 /* Backup current thread and selected frame. */
2183 old_chain = make_cleanup_restore_current_thread ();
2185 iterate_over_threads (proceed_after_attach_callback, &pid);
2187 /* Restore selected ptid. */
2188 do_cleanups (old_chain);
2193 * Should save/restore the tty state since it might be that the
2194 * program to be debugged was started on this tty and it wants
2195 * the tty in some state other than what we want. If it's running
2196 * on another terminal or without a terminal, then saving and
2197 * restoring the tty state is a harmless no-op.
2198 * This only needs to be done if we are attaching to a process.
2203 takes a program started up outside of gdb and ``attaches'' to it.
2204 This stops it cold in its tracks and allows us to start debugging it.
2205 and wait for the trace-trap that results from attaching. */
2208 attach_command_post_wait (char *args, int from_tty, int async_exec)
2211 char *full_exec_path = NULL;
2212 struct inferior *inferior;
2214 inferior = current_inferior ();
2215 inferior->stop_soon = NO_STOP_QUIETLY;
2217 /* If no exec file is yet known, try to determine it from the
2219 exec_file = (char *) get_exec_file (0);
2222 exec_file = target_pid_to_exec_file (PIDGET (inferior_ptid));
2225 /* It's possible we don't have a full path, but rather just a
2226 filename. Some targets, such as HP-UX, don't provide the
2229 Attempt to qualify the filename against the source path.
2230 (If that fails, we'll just fall back on the original
2231 filename. Not much more we can do...)
2233 if (!source_full_path_of (exec_file, &full_exec_path))
2234 full_exec_path = xstrdup (exec_file);
2236 exec_file_attach (full_exec_path, from_tty);
2237 symbol_file_add_main (full_exec_path, from_tty);
2242 reopen_exec_file ();
2246 /* Take any necessary post-attaching actions for this platform. */
2247 target_post_attach (PIDGET (inferior_ptid));
2249 post_create_inferior (¤t_target, from_tty);
2251 /* Install inferior's terminal modes. */
2252 target_terminal_inferior ();
2256 /* The user requested an `attach&', so be sure to leave threads
2257 that didn't get a signal running. */
2259 /* Immediatelly resume all suspended threads of this inferior,
2260 and this inferior only. This should have no effect on
2261 already running threads. If a thread has been stopped with a
2262 signal, leave it be. */
2264 proceed_after_attach (inferior->pid);
2267 if (inferior_thread ()->stop_signal == TARGET_SIGNAL_0)
2269 clear_proceed_status ();
2270 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
2276 /* The user requested a plain `attach', so be sure to leave
2277 the inferior stopped. */
2279 if (target_can_async_p ())
2280 async_enable_stdin ();
2282 /* At least the current thread is already stopped. */
2284 /* In all-stop, by definition, all threads have to be already
2285 stopped at this point. In non-stop, however, although the
2286 selected thread is stopped, others may still be executing.
2287 Be sure to explicitly stop all threads of the process. This
2288 should have no effect on already stopped threads. */
2290 target_stop (pid_to_ptid (inferior->pid));
2292 /* Tell the user/frontend where we're stopped. */
2294 if (deprecated_attach_hook)
2295 deprecated_attach_hook ();
2299 struct attach_command_continuation_args
2307 attach_command_continuation (void *args)
2309 struct attach_command_continuation_args *a = args;
2310 attach_command_post_wait (a->args, a->from_tty, a->async_exec);
2314 attach_command_continuation_free_args (void *args)
2316 struct attach_command_continuation_args *a = args;
2322 attach_command (char *args, int from_tty)
2325 char *full_exec_path = NULL;
2327 struct cleanup *back_to = make_cleanup (null_cleanup, NULL);
2329 dont_repeat (); /* Not for the faint of heart */
2331 if (gdbarch_has_global_solist (target_gdbarch))
2332 /* Don't complain if all processes share the same symbol
2335 else if (target_has_execution)
2337 if (query (_("A program is being debugged already. Kill it? ")))
2340 error (_("Not killed."));
2343 /* Clean up any leftovers from other runs. Some other things from
2344 this function should probably be moved into target_pre_inferior. */
2345 target_pre_inferior (from_tty);
2347 if (non_stop && !target_supports_non_stop ())
2348 error (_("Cannot attach to this target in non-stop mode"));
2352 async_exec = strip_bg_char (&args);
2354 /* If we get a request for running in the bg but the target
2355 doesn't support it, error out. */
2356 if (async_exec && !target_can_async_p ())
2357 error (_("Asynchronous execution not supported on this target."));
2360 /* If we don't get a request of running in the bg, then we need
2361 to simulate synchronous (fg) execution. */
2362 if (!async_exec && target_can_async_p ())
2364 /* Simulate synchronous execution */
2365 async_disable_stdin ();
2366 make_cleanup ((make_cleanup_ftype *)async_enable_stdin, NULL);
2369 target_attach (args, from_tty);
2371 /* Set up the "saved terminal modes" of the inferior
2372 based on what modes we are starting it with. */
2373 target_terminal_init ();
2375 /* Set up execution context to know that we should return from
2376 wait_for_inferior as soon as the target reports a stop. */
2377 init_wait_for_inferior ();
2378 clear_proceed_status ();
2382 /* If we find that the current thread isn't stopped, explicitly
2383 do so now, because we're going to install breakpoints and
2387 /* The user requested an `attach&'; stop just one thread. */
2388 target_stop (inferior_ptid);
2390 /* The user requested an `attach', so stop all threads of this
2392 target_stop (pid_to_ptid (ptid_get_pid (inferior_ptid)));
2395 /* Some system don't generate traps when attaching to inferior.
2396 E.g. Mach 3 or GNU hurd. */
2397 if (!target_attach_no_wait)
2399 struct inferior *inferior = current_inferior ();
2401 /* Careful here. See comments in inferior.h. Basically some
2402 OSes don't ignore SIGSTOPs on continue requests anymore. We
2403 need a way for handle_inferior_event to reset the stop_signal
2404 variable after an attach, and this is what
2405 STOP_QUIETLY_NO_SIGSTOP is for. */
2406 inferior->stop_soon = STOP_QUIETLY_NO_SIGSTOP;
2408 if (target_can_async_p ())
2410 /* sync_execution mode. Wait for stop. */
2411 struct attach_command_continuation_args *a;
2413 a = xmalloc (sizeof (*a));
2414 a->args = xstrdup (args);
2415 a->from_tty = from_tty;
2416 a->async_exec = async_exec;
2417 add_inferior_continuation (attach_command_continuation, a,
2418 attach_command_continuation_free_args);
2419 discard_cleanups (back_to);
2423 wait_for_inferior (0);
2426 attach_command_post_wait (args, from_tty, async_exec);
2427 discard_cleanups (back_to);
2430 /* We had just found out that the target was already attached to an
2431 inferior. PTID points at a thread of this new inferior, that is
2432 the most likely to be stopped right now, but not necessarily so.
2433 The new inferior is assumed to be already added to the inferior
2434 list at this point. If LEAVE_RUNNING, then leave the threads of
2435 this inferior running, except those we've explicitly seen reported
2439 notice_new_inferior (ptid_t ptid, int leave_running, int from_tty)
2441 struct cleanup* old_chain;
2444 old_chain = make_cleanup (null_cleanup, NULL);
2446 /* If in non-stop, leave threads as running as they were. If
2447 they're stopped for some reason other than us telling it to, the
2448 target reports a signal != TARGET_SIGNAL_0. We don't try to
2449 resume threads with such a stop signal. */
2450 async_exec = non_stop;
2452 if (!ptid_equal (inferior_ptid, null_ptid))
2453 make_cleanup_restore_current_thread ();
2455 switch_to_thread (ptid);
2457 /* When we "notice" a new inferior we need to do all the things we
2458 would normally do if we had just attached to it. */
2460 if (is_executing (inferior_ptid))
2462 struct inferior *inferior = current_inferior ();
2464 /* We're going to install breakpoints, and poke at memory,
2465 ensure that the inferior is stopped for a moment while we do
2467 target_stop (inferior_ptid);
2469 inferior->stop_soon = STOP_QUIETLY_REMOTE;
2471 /* Wait for stop before proceeding. */
2472 if (target_can_async_p ())
2474 struct attach_command_continuation_args *a;
2476 a = xmalloc (sizeof (*a));
2477 a->args = xstrdup ("");
2478 a->from_tty = from_tty;
2479 a->async_exec = async_exec;
2480 add_inferior_continuation (attach_command_continuation, a,
2481 attach_command_continuation_free_args);
2483 do_cleanups (old_chain);
2487 wait_for_inferior (0);
2490 async_exec = leave_running;
2491 attach_command_post_wait ("" /* args */, from_tty, async_exec);
2493 do_cleanups (old_chain);
2498 * takes a program previously attached to and detaches it.
2499 * The program resumes execution and will no longer stop
2500 * on signals, etc. We better not have left any breakpoints
2501 * in the program or it'll die when it hits one. For this
2502 * to work, it may be necessary for the process to have been
2503 * previously attached. It *might* work if the program was
2504 * started via the normal ptrace (PTRACE_TRACEME).
2508 detach_command (char *args, int from_tty)
2510 dont_repeat (); /* Not for the faint of heart. */
2512 if (ptid_equal (inferior_ptid, null_ptid))
2513 error (_("The program is not being run."));
2515 disconnect_or_stop_tracing (from_tty);
2517 target_detach (args, from_tty);
2519 /* If the solist is global across inferiors, don't clear it when we
2520 detach from a single inferior. */
2521 if (!gdbarch_has_global_solist (target_gdbarch))
2522 no_shared_libraries (NULL, from_tty);
2524 /* If we still have inferiors to debug, then don't mess with their
2526 if (!have_inferiors ())
2527 init_thread_list ();
2529 if (deprecated_detach_hook)
2530 deprecated_detach_hook ();
2533 /* Disconnect from the current target without resuming it (leaving it
2534 waiting for a debugger).
2536 We'd better not have left any breakpoints in the program or the
2537 next debugger will get confused. Currently only supported for some
2538 remote targets, since the normal attach mechanisms don't work on
2539 stopped processes on some native platforms (e.g. GNU/Linux). */
2542 disconnect_command (char *args, int from_tty)
2544 dont_repeat (); /* Not for the faint of heart */
2545 target_disconnect (args, from_tty);
2546 no_shared_libraries (NULL, from_tty);
2547 init_thread_list ();
2548 if (deprecated_detach_hook)
2549 deprecated_detach_hook ();
2553 interrupt_target_1 (int all_threads)
2557 ptid = minus_one_ptid;
2559 ptid = inferior_ptid;
2562 /* Tag the thread as having been explicitly requested to stop, so
2563 other parts of gdb know not to resume this thread automatically,
2564 if it was stopped due to an internal event. Limit this to
2565 non-stop mode, as when debugging a multi-threaded application in
2566 all-stop mode, we will only get one stop event --- it's undefined
2567 which thread will report the event. */
2569 set_stop_requested (ptid, 1);
2572 /* Stop the execution of the target while running in async mode, in
2573 the backgound. In all-stop, stop the whole process. In non-stop
2574 mode, stop the current thread only by default, or stop all threads
2575 if the `-a' switch is used. */
2577 /* interrupt [-a] */
2579 interrupt_target_command (char *args, int from_tty)
2581 if (target_can_async_p ())
2583 int all_threads = 0;
2585 dont_repeat (); /* Not for the faint of heart */
2588 && strncmp (args, "-a", sizeof ("-a") - 1) == 0)
2591 if (!non_stop && all_threads)
2592 error (_("-a is meaningless in all-stop mode."));
2594 interrupt_target_1 (all_threads);
2599 print_float_info (struct ui_file *file,
2600 struct frame_info *frame, const char *args)
2602 struct gdbarch *gdbarch = get_frame_arch (frame);
2604 if (gdbarch_print_float_info_p (gdbarch))
2605 gdbarch_print_float_info (gdbarch, file, frame, args);
2609 int printed_something = 0;
2612 regnum < gdbarch_num_regs (gdbarch)
2613 + gdbarch_num_pseudo_regs (gdbarch);
2616 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
2618 printed_something = 1;
2619 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2622 if (!printed_something)
2623 fprintf_filtered (file, "\
2624 No floating-point info available for this processor.\n");
2629 float_info (char *args, int from_tty)
2631 if (!target_has_registers)
2632 error (_("The program has no registers now."));
2634 print_float_info (gdb_stdout, get_selected_frame (NULL), args);
2638 unset_command (char *args, int from_tty)
2640 printf_filtered (_("\
2641 \"unset\" must be followed by the name of an unset subcommand.\n"));
2642 help_list (unsetlist, "unset ", -1, gdb_stdout);
2646 _initialize_infcmd (void)
2648 struct cmd_list_element *c = NULL;
2650 /* add the filename of the terminal connected to inferior I/O */
2651 add_setshow_filename_cmd ("inferior-tty", class_run,
2652 &inferior_io_terminal_scratch, _("\
2653 Set terminal for future runs of program being debugged."), _("\
2654 Show terminal for future runs of program being debugged."), _("\
2655 Usage: set inferior-tty /dev/pts/1"),
2656 set_inferior_tty_command,
2657 show_inferior_tty_command,
2658 &setlist, &showlist);
2659 add_com_alias ("tty", "set inferior-tty", class_alias, 0);
2661 add_setshow_optional_filename_cmd ("args", class_run,
2662 &inferior_args_scratch, _("\
2663 Set argument list to give program being debugged when it is started."), _("\
2664 Show argument list to give program being debugged when it is started."), _("\
2665 Follow this command with any number of args, to be passed to the program."),
2668 &setlist, &showlist);
2670 c = add_cmd ("environment", no_class, environment_info, _("\
2671 The environment to give the program, or one variable's value.\n\
2672 With an argument VAR, prints the value of environment variable VAR to\n\
2673 give the program being debugged. With no arguments, prints the entire\n\
2674 environment to be given to the program."), &showlist);
2675 set_cmd_completer (c, noop_completer);
2677 add_prefix_cmd ("unset", no_class, unset_command,
2678 _("Complement to certain \"set\" commands."),
2679 &unsetlist, "unset ", 0, &cmdlist);
2681 c = add_cmd ("environment", class_run, unset_environment_command, _("\
2682 Cancel environment variable VAR for the program.\n\
2683 This does not affect the program until the next \"run\" command."),
2685 set_cmd_completer (c, noop_completer);
2687 c = add_cmd ("environment", class_run, set_environment_command, _("\
2688 Set environment variable value to give the program.\n\
2689 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2690 VALUES of environment variables are uninterpreted strings.\n\
2691 This does not affect the program until the next \"run\" command."),
2693 set_cmd_completer (c, noop_completer);
2695 c = add_com ("path", class_files, path_command, _("\
2696 Add directory DIR(s) to beginning of search path for object files.\n\
2697 $cwd in the path means the current working directory.\n\
2698 This path is equivalent to the $PATH shell variable. It is a list of\n\
2699 directories, separated by colons. These directories are searched to find\n\
2700 fully linked executable files and separately compiled object files as needed."));
2701 set_cmd_completer (c, filename_completer);
2703 c = add_cmd ("paths", no_class, path_info, _("\
2704 Current search path for finding object files.\n\
2705 $cwd in the path means the current working directory.\n\
2706 This path is equivalent to the $PATH shell variable. It is a list of\n\
2707 directories, separated by colons. These directories are searched to find\n\
2708 fully linked executable files and separately compiled object files as needed."),
2710 set_cmd_completer (c, noop_completer);
2712 add_prefix_cmd ("kill", class_run, kill_command,
2713 _("Kill execution of program being debugged."),
2714 &killlist, "kill ", 0, &cmdlist);
2716 add_com ("attach", class_run, attach_command, _("\
2717 Attach to a process or file outside of GDB.\n\
2718 This command attaches to another target, of the same type as your last\n\
2719 \"target\" command (\"info files\" will show your target stack).\n\
2720 The command may take as argument a process id or a device file.\n\
2721 For a process id, you must have permission to send the process a signal,\n\
2722 and it must have the same effective uid as the debugger.\n\
2723 When using \"attach\" with a process id, the debugger finds the\n\
2724 program running in the process, looking first in the current working\n\
2725 directory, or (if not found there) using the source file search path\n\
2726 (see the \"directory\" command). You can also use the \"file\" command\n\
2727 to specify the program, and to load its symbol table."));
2729 add_prefix_cmd ("detach", class_run, detach_command, _("\
2730 Detach a process or file previously attached.\n\
2731 If a process, it is no longer traced, and it continues its execution. If\n\
2732 you were debugging a file, the file is closed and gdb no longer accesses it."),
2733 &detachlist, "detach ", 0, &cmdlist);
2735 add_com ("disconnect", class_run, disconnect_command, _("\
2736 Disconnect from a target.\n\
2737 The target will wait for another debugger to connect. Not available for\n\
2740 add_com ("signal", class_run, signal_command, _("\
2741 Continue program giving it signal specified by the argument.\n\
2742 An argument of \"0\" means continue program without giving it a signal."));
2744 add_com ("stepi", class_run, stepi_command, _("\
2745 Step one instruction exactly.\n\
2746 Argument N means do this N times (or till program stops for another reason)."));
2747 add_com_alias ("si", "stepi", class_alias, 0);
2749 add_com ("nexti", class_run, nexti_command, _("\
2750 Step one instruction, but proceed through subroutine calls.\n\
2751 Argument N means do this N times (or till program stops for another reason)."));
2752 add_com_alias ("ni", "nexti", class_alias, 0);
2754 add_com ("finish", class_run, finish_command, _("\
2755 Execute until selected stack frame returns.\n\
2756 Upon return, the value returned is printed and put in the value history."));
2757 add_com_alias ("fin", "finish", class_run, 1);
2759 add_com ("next", class_run, next_command, _("\
2760 Step program, proceeding through subroutine calls.\n\
2761 Like the \"step\" command as long as subroutine calls do not happen;\n\
2762 when they do, the call is treated as one instruction.\n\
2763 Argument N means do this N times (or till program stops for another reason)."));
2764 add_com_alias ("n", "next", class_run, 1);
2766 add_com_alias ("S", "next", class_run, 1);
2768 add_com ("step", class_run, step_command, _("\
2769 Step program until it reaches a different source line.\n\
2770 Argument N means do this N times (or till program stops for another reason)."));
2771 add_com_alias ("s", "step", class_run, 1);
2773 c = add_com ("until", class_run, until_command, _("\
2774 Execute until the program reaches a source line greater than the current\n\
2775 or a specified location (same args as break command) within the current frame."));
2776 set_cmd_completer (c, location_completer);
2777 add_com_alias ("u", "until", class_run, 1);
2779 c = add_com ("advance", class_run, advance_command, _("\
2780 Continue the program up to the given location (same form as args for break command).\n\
2781 Execution will also stop upon exit from the current stack frame."));
2782 set_cmd_completer (c, location_completer);
2784 c = add_com ("jump", class_run, jump_command, _("\
2785 Continue program being debugged at specified line or address.\n\
2786 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
2787 for an address to start at."));
2788 set_cmd_completer (c, location_completer);
2792 c = add_com ("go", class_run, go_command, _("\
2793 Usage: go <location>\n\
2794 Continue program being debugged, stopping at specified line or \n\
2796 Give as argument either LINENUM or *ADDR, where ADDR is an \n\
2797 expression for an address to start at.\n\
2798 This command is a combination of tbreak and jump."));
2799 set_cmd_completer (c, location_completer);
2803 add_com_alias ("g", "go", class_run, 1);
2805 c = add_com ("continue", class_run, continue_command, _("\
2806 Continue program being debugged, after signal or breakpoint.\n\
2807 If proceeding from breakpoint, a number N may be used as an argument,\n\
2808 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
2809 the breakpoint won't break until the Nth time it is reached).\n\
2811 If non-stop mode is enabled, continue only the current thread,\n\
2812 otherwise all the threads in the program are continued. To \n\
2813 continue all stopped threads in non-stop mode, use the -a option.\n\
2814 Specifying -a and an ignore count simultaneously is an error."));
2815 add_com_alias ("c", "cont", class_run, 1);
2816 add_com_alias ("fg", "cont", class_run, 1);
2818 c = add_com ("run", class_run, run_command, _("\
2819 Start debugged program. You may specify arguments to give it.\n\
2820 Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
2821 Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\
2822 With no arguments, uses arguments last specified (with \"run\" or \"set args\").\n\
2823 To cancel previous arguments and run with no arguments,\n\
2824 use \"set args\" without arguments."));
2825 set_cmd_completer (c, filename_completer);
2826 add_com_alias ("r", "run", class_run, 1);
2828 add_com ("R", class_run, run_no_args_command,
2829 _("Start debugged program with no arguments."));
2831 c = add_com ("start", class_run, start_command, _("\
2832 Run the debugged program until the beginning of the main procedure.\n\
2833 You may specify arguments to give to your program, just as with the\n\
2834 \"run\" command."));
2835 set_cmd_completer (c, filename_completer);
2837 c = add_com ("interrupt", class_run, interrupt_target_command,
2838 _("Interrupt the execution of the debugged program.\n\
2839 If non-stop mode is enabled, interrupt only the current thread,\n\
2840 otherwise all the threads in the program are stopped. To \n\
2841 interrupt all running threads in non-stop mode, use the -a option."));
2843 add_info ("registers", nofp_registers_info, _("\
2844 List of integer registers and their contents, for selected stack frame.\n\
2845 Register name as argument means describe only that register."));
2846 add_info_alias ("r", "registers", 1);
2849 add_com ("lr", class_info, nofp_registers_info, _("\
2850 List of integer registers and their contents, for selected stack frame.\n\
2851 Register name as argument means describe only that register."));
2852 add_info ("all-registers", all_registers_info, _("\
2853 List of all registers and their contents, for selected stack frame.\n\
2854 Register name as argument means describe only that register."));
2856 add_info ("program", program_info,
2857 _("Execution status of the program."));
2859 add_info ("float", float_info,
2860 _("Print the status of the floating point unit\n"));
2862 add_info ("vector", vector_info,
2863 _("Print the status of the vector unit\n"));