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 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/>. */
24 #include "gdb_string.h"
38 #include "completer.h"
40 #include "event-top.h"
41 #include "parser-defs.h"
43 #include "reggroups.h"
47 #include "gdb_assert.h"
49 #include "target-descriptions.h"
50 #include "user-regs.h"
51 #include "exceptions.h"
52 #include "cli/cli-decode.h"
53 #include "gdbthread.h"
55 /* Functions exported for general use, in inferior.h: */
57 void all_registers_info (char *, int);
59 void registers_info (char *, int);
61 void nexti_command (char *, int);
63 void stepi_command (char *, int);
65 void continue_command (char *, int);
67 void interrupt_target_command (char *args, int from_tty);
69 /* Local functions: */
71 static void nofp_registers_info (char *, int);
73 static void print_return_value (struct type *func_type,
74 struct type *value_type);
76 static void until_next_command (int);
78 static void until_command (char *, int);
80 static void path_info (char *, int);
82 static void path_command (char *, int);
84 static void unset_command (char *, int);
86 static void float_info (char *, int);
88 static void detach_command (char *, int);
90 static void disconnect_command (char *, int);
92 static void unset_environment_command (char *, int);
94 static void set_environment_command (char *, int);
96 static void environment_info (char *, int);
98 static void program_info (char *, int);
100 static void finish_command (char *, int);
102 static void signal_command (char *, int);
104 static void jump_command (char *, int);
106 static void step_1 (int, int, char *);
107 static void step_once (int skip_subroutines, int single_inst, int count, int thread);
109 static void next_command (char *, int);
111 static void step_command (char *, int);
113 static void run_command (char *, int);
115 static void run_no_args_command (char *args, int from_tty);
117 static void go_command (char *line_no, int from_tty);
119 static int strip_bg_char (char **);
121 void _initialize_infcmd (void);
123 #define GO_USAGE "Usage: go <location>\n"
125 #define ERROR_NO_INFERIOR \
126 if (!target_has_execution) error (_("The program is not being run."));
128 /* String containing arguments to give to the program, separated by spaces.
129 Empty string (pointer to '\0') means no args. */
131 static char *inferior_args;
133 /* The inferior arguments as a vector. If INFERIOR_ARGC is nonzero,
134 then we must compute INFERIOR_ARGS from this (via the target). */
136 static int inferior_argc;
137 static char **inferior_argv;
139 /* File name for default use for standard in/out in the inferior. */
141 static char *inferior_io_terminal;
143 /* Pid of our debugged inferior, or 0 if no inferior now.
144 Since various parts of infrun.c test this to see whether there is a program
145 being debugged it should be nonzero (currently 3 is used) for remote
148 ptid_t inferior_ptid;
150 /* Address at which inferior stopped. */
154 /* Flag indicating that a command has proceeded the inferior past the
155 current breakpoint. */
157 int breakpoint_proceeded;
159 /* Nonzero if stopped due to a step command. */
163 /* Nonzero if stopped due to completion of a stack dummy routine. */
165 int stop_stack_dummy;
167 /* Nonzero if stopped due to a random (unexpected) signal in inferior
170 int stopped_by_random_signal;
172 /* Environment to use for running inferior,
173 in format described in environ.h. */
175 struct gdb_environ *inferior_environ;
177 /* When set, no calls to target_resumed observer will be made. */
178 int suppress_resume_observer = 0;
179 /* When set, normal_stop will not call the normal_stop observer. */
180 int suppress_stop_observer = 0;
182 /* Accessor routines. */
185 set_inferior_io_terminal (const char *terminal_name)
187 if (inferior_io_terminal)
188 xfree (inferior_io_terminal);
191 inferior_io_terminal = NULL;
193 inferior_io_terminal = savestring (terminal_name, strlen (terminal_name));
197 get_inferior_io_terminal (void)
199 return inferior_io_terminal;
203 get_inferior_args (void)
205 if (inferior_argc != 0)
209 n = gdbarch_construct_inferior_arguments (current_gdbarch,
210 inferior_argc, inferior_argv);
211 old = set_inferior_args (n);
215 if (inferior_args == NULL)
216 inferior_args = xstrdup ("");
218 return inferior_args;
222 set_inferior_args (char *newargs)
224 char *saved_args = inferior_args;
226 inferior_args = newargs;
234 set_inferior_args_vector (int argc, char **argv)
236 inferior_argc = argc;
237 inferior_argv = argv;
240 /* Notice when `set args' is run. */
242 notice_args_set (char *args, int from_tty, struct cmd_list_element *c)
248 /* Notice when `show args' is run. */
250 notice_args_read (struct ui_file *file, int from_tty,
251 struct cmd_list_element *c, const char *value)
253 /* Note that we ignore the passed-in value in favor of computing it
255 deprecated_show_value_hack (file, from_tty, c, get_inferior_args ());
259 /* Compute command-line string given argument vector. This does the
260 same shell processing as fork_inferior. */
262 construct_inferior_arguments (struct gdbarch *gdbarch, int argc, char **argv)
266 if (STARTUP_WITH_SHELL)
268 /* This holds all the characters considered special to the
269 typical Unix shells. We include `^' because the SunOS
270 /bin/sh treats it as a synonym for `|'. */
271 char *special = "\"!#$&*()\\|[]{}<>?'\"`~^; \t\n";
276 /* We over-compute the size. It shouldn't matter. */
277 for (i = 0; i < argc; ++i)
278 length += 2 * strlen (argv[i]) + 1 + 2 * (argv[i][0] == '\0');
280 result = (char *) xmalloc (length);
283 for (i = 0; i < argc; ++i)
288 /* Need to handle empty arguments specially. */
289 if (argv[i][0] == '\0')
296 for (cp = argv[i]; *cp; ++cp)
298 if (strchr (special, *cp) != NULL)
308 /* In this case we can't handle arguments that contain spaces,
309 tabs, or newlines -- see breakup_args(). */
313 for (i = 0; i < argc; ++i)
315 char *cp = strchr (argv[i], ' ');
317 cp = strchr (argv[i], '\t');
319 cp = strchr (argv[i], '\n');
321 error (_("can't handle command-line argument containing whitespace"));
322 length += strlen (argv[i]) + 1;
325 result = (char *) xmalloc (length);
327 for (i = 0; i < argc; ++i)
330 strcat (result, " ");
331 strcat (result, argv[i]);
339 /* This function detects whether or not a '&' character (indicating
340 background execution) has been added as *the last* of the arguments ARGS
341 of a command. If it has, it removes it and returns 1. Otherwise it
342 does nothing and returns 0. */
344 strip_bg_char (char **args)
348 p = strchr (*args, '&');
352 if (p == (*args + strlen (*args) - 1))
354 if (strlen (*args) > 1)
358 while (*p == ' ' || *p == '\t');
370 tty_command (char *file, int from_tty)
373 error_no_arg (_("terminal name for running target process"));
375 set_inferior_io_terminal (file);
378 /* Common actions to take after creating any sort of inferior, by any
379 means (running, attaching, connecting, et cetera). The target
380 should be stopped. */
383 post_create_inferior (struct target_ops *target, int from_tty)
385 /* Be sure we own the terminal in case write operations are performed. */
386 target_terminal_ours ();
388 /* If the target hasn't taken care of this already, do it now.
389 Targets which need to access registers during to_open,
390 to_create_inferior, or to_attach should do it earlier; but many
392 target_find_description ();
396 /* Sometimes the platform-specific hook loads initial shared
397 libraries, and sometimes it doesn't. Try to do so first, so
398 that we can add them with the correct value for FROM_TTY.
399 If we made all the inferior hook methods consistent,
400 this call could be removed. */
402 SOLIB_ADD (NULL, from_tty, target, auto_solib_add);
404 solib_add (NULL, from_tty, target, auto_solib_add);
407 /* Create the hooks to handle shared library load and unload
409 #ifdef SOLIB_CREATE_INFERIOR_HOOK
410 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
412 solib_create_inferior_hook ();
416 observer_notify_inferior_created (target, from_tty);
419 /* Kill the inferior if already running. This function is designed
420 to be called when we are about to start the execution of the program
421 from the beginning. Ask the user to confirm that he wants to restart
422 the program being debugged when FROM_TTY is non-null. */
425 kill_if_already_running (int from_tty)
427 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
429 /* Bail out before killing the program if we will not be able to
431 target_require_runnable ();
434 && !query ("The program being debugged has been started already.\n\
435 Start it from the beginning? "))
436 error (_("Program not restarted."));
438 no_shared_libraries (NULL, from_tty);
439 init_wait_for_inferior ();
443 /* Implement the "run" command. If TBREAK_AT_MAIN is set, then insert
444 a temporary breakpoint at the begining of the main program before
445 running the program. */
448 run_command_1 (char *args, int from_tty, int tbreak_at_main)
454 kill_if_already_running (from_tty);
455 clear_breakpoint_hit_counts ();
457 /* Clean up any leftovers from other runs. Some other things from
458 this function should probably be moved into target_pre_inferior. */
459 target_pre_inferior (from_tty);
461 /* The comment here used to read, "The exec file is re-read every
462 time we do a generic_mourn_inferior, so we just have to worry
463 about the symbol file." The `generic_mourn_inferior' function
464 gets called whenever the program exits. However, suppose the
465 program exits, and *then* the executable file changes? We need
466 to check again here. Since reopen_exec_file doesn't do anything
467 if the timestamp hasn't changed, I don't see the harm. */
471 /* Insert the temporary breakpoint if a location was specified. */
473 tbreak_command (main_name (), 0);
475 exec_file = (char *) get_exec_file (0);
477 if (non_stop && !target_supports_non_stop ())
478 error (_("The target does not support running in non-stop mode."));
480 /* We keep symbols from add-symbol-file, on the grounds that the
481 user might want to add some symbols before running the program
482 (right?). But sometimes (dynamic loading where the user manually
483 introduces the new symbols with add-symbol-file), the code which
484 the symbols describe does not persist between runs. Currently
485 the user has to manually nuke all symbols between runs if they
486 want them to go away (PR 2207). This is probably reasonable. */
490 if (target_can_async_p ())
491 async_disable_stdin ();
495 int async_exec = strip_bg_char (&args);
497 /* If we get a request for running in the bg but the target
498 doesn't support it, error out. */
499 if (async_exec && !target_can_async_p ())
500 error (_("Asynchronous execution not supported on this target."));
502 /* If we don't get a request of running in the bg, then we need
503 to simulate synchronous (fg) execution. */
504 if (!async_exec && target_can_async_p ())
506 /* Simulate synchronous execution */
507 async_disable_stdin ();
510 /* If there were other args, beside '&', process them. */
513 char *old_args = set_inferior_args (xstrdup (args));
520 ui_out_field_string (uiout, NULL, "Starting program");
521 ui_out_text (uiout, ": ");
523 ui_out_field_string (uiout, "execfile", exec_file);
524 ui_out_spaces (uiout, 1);
525 /* We call get_inferior_args() because we might need to compute
527 ui_out_field_string (uiout, "infargs", get_inferior_args ());
528 ui_out_text (uiout, "\n");
529 ui_out_flush (uiout);
532 /* We call get_inferior_args() because we might need to compute
534 target_create_inferior (exec_file, get_inferior_args (),
535 environ_vector (inferior_environ), from_tty);
537 /* Pass zero for FROM_TTY, because at this point the "run" command
538 has done its thing; now we are setting up the running program. */
539 post_create_inferior (¤t_target, 0);
541 /* Start the target running. */
542 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_0, 0);
547 run_command (char *args, int from_tty)
549 run_command_1 (args, from_tty, 0);
553 run_no_args_command (char *args, int from_tty)
555 char *old_args = set_inferior_args (xstrdup (""));
560 /* Start the execution of the program up until the beginning of the main
564 start_command (char *args, int from_tty)
566 /* Some languages such as Ada need to search inside the program
567 minimal symbols for the location where to put the temporary
568 breakpoint before starting. */
569 if (!have_minimal_symbols ())
570 error (_("No symbol table loaded. Use the \"file\" command."));
572 /* Run the program until reaching the main procedure... */
573 run_command_1 (args, from_tty, 1);
577 proceed_thread_callback (struct thread_info *thread, void *arg)
579 if (!is_stopped (thread->ptid))
582 context_switch_to (thread->ptid);
583 clear_proceed_status ();
584 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
589 continue_1 (int all_threads)
593 if (non_stop && all_threads)
595 /* Don't error out if the current thread is running, because
596 there may be other stopped threads. */
597 struct cleanup *old_chain;
599 /* Backup current thread and selected frame. */
600 old_chain = make_cleanup_restore_current_thread ();
602 iterate_over_threads (proceed_thread_callback, NULL);
604 /* Restore selected ptid. */
605 do_cleanups (old_chain);
609 ensure_not_running ();
610 clear_proceed_status ();
611 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
615 /* continue [-a] [proceed-count] [&] */
617 continue_command (char *args, int from_tty)
623 /* Find out whether we must run in the background. */
625 async_exec = strip_bg_char (&args);
627 /* If we must run in the background, but the target can't do it,
629 if (async_exec && !target_can_async_p ())
630 error (_("Asynchronous execution not supported on this target."));
632 /* If we are not asked to run in the bg, then prepare to run in the
633 foreground, synchronously. */
634 if (!async_exec && target_can_async_p ())
636 /* Simulate synchronous execution */
637 async_disable_stdin ();
642 if (strncmp (args, "-a", sizeof ("-a") - 1) == 0)
645 args += sizeof ("-a") - 1;
651 if (!non_stop && all_threads)
652 error (_("`-a' is meaningless in all-stop mode."));
654 if (args != NULL && all_threads)
656 Can't resume all threads and specify proceed count simultaneously."));
658 /* If we have an argument left, set proceed count of breakpoint we
665 struct thread_info *tp;
668 tp = find_thread_pid (inferior_ptid);
672 struct target_waitstatus ws;
674 get_last_target_status (&last_ptid, &ws);
675 tp = find_thread_pid (last_ptid);
678 bs = tp->stop_bpstat;
680 while ((stat = bpstat_num (&bs, &num)) != 0)
683 set_ignore_count (num,
684 parse_and_eval_long (args) - 1,
686 /* set_ignore_count prints a message ending with a period.
687 So print two spaces before "Continuing.". */
689 printf_filtered (" ");
693 if (!stopped && from_tty)
696 ("Not stopped at any breakpoint; argument ignored.\n");
701 printf_filtered (_("Continuing.\n"));
703 continue_1 (all_threads);
706 /* Step until outside of current statement. */
709 step_command (char *count_string, int from_tty)
711 step_1 (0, 0, count_string);
714 /* Likewise, but skip over subroutine calls as if single instructions. */
717 next_command (char *count_string, int from_tty)
719 step_1 (1, 0, count_string);
722 /* Likewise, but step only one instruction. */
725 stepi_command (char *count_string, int from_tty)
727 step_1 (0, 1, count_string);
731 nexti_command (char *count_string, int from_tty)
733 step_1 (1, 1, count_string);
737 delete_longjmp_breakpoint_cleanup (void *arg)
739 int thread = * (int *) arg;
740 delete_longjmp_breakpoint (thread);
744 step_1 (int skip_subroutines, int single_inst, char *count_string)
747 struct frame_info *frame;
748 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
753 ensure_not_running ();
756 async_exec = strip_bg_char (&count_string);
758 /* If we get a request for running in the bg but the target
759 doesn't support it, error out. */
760 if (async_exec && !target_can_async_p ())
761 error (_("Asynchronous execution not supported on this target."));
763 /* If we don't get a request of running in the bg, then we need
764 to simulate synchronous (fg) execution. */
765 if (!async_exec && target_can_async_p ())
767 /* Simulate synchronous execution */
768 async_disable_stdin ();
771 count = count_string ? parse_and_eval_long (count_string) : 1;
773 if (!single_inst || skip_subroutines) /* leave si command alone */
775 if (in_thread_list (inferior_ptid))
776 thread = pid_to_thread_id (inferior_ptid);
778 set_longjmp_breakpoint ();
780 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
783 /* In synchronous case, all is well, just use the regular for loop. */
784 if (!target_can_async_p ())
786 for (; count > 0; count--)
788 struct thread_info *tp = inferior_thread ();
789 clear_proceed_status ();
791 frame = get_current_frame ();
792 tp->step_frame_id = get_frame_id (frame);
796 find_pc_line_pc_range (stop_pc,
797 &tp->step_range_start, &tp->step_range_end);
798 if (tp->step_range_end == 0)
801 if (find_pc_partial_function (stop_pc, &name,
802 &tp->step_range_start,
803 &tp->step_range_end) == 0)
804 error (_("Cannot find bounds of current function"));
806 target_terminal_ours ();
807 printf_filtered (_("\
808 Single stepping until exit from function %s, \n\
809 which has no line number information.\n"), name);
814 /* Say we are stepping, but stop after one insn whatever it does. */
815 tp->step_range_start = tp->step_range_end = 1;
816 if (!skip_subroutines)
818 Don't step over function calls, not even to functions lacking
820 tp->step_over_calls = STEP_OVER_NONE;
823 if (skip_subroutines)
824 tp->step_over_calls = STEP_OVER_ALL;
826 tp->step_multi = (count > 1);
827 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
833 do_cleanups (cleanups);
836 /* In case of asynchronous target things get complicated, do only
837 one step for now, before returning control to the event loop. Let
838 the continuation figure out how many other steps we need to do,
839 and handle them one at the time, through step_once(). */
842 step_once (skip_subroutines, single_inst, count, thread);
843 /* We are running, and the continuation is installed. It will
844 disable the longjmp breakpoint as appropriate. */
845 discard_cleanups (cleanups);
849 struct step_1_continuation_args
852 int skip_subroutines;
857 /* Called after we are done with one step operation, to check whether
858 we need to step again, before we print the prompt and return control
859 to the user. If count is > 1, we will need to do one more call to
860 proceed(), via step_once(). Basically it is like step_once and
861 step_1_continuation are co-recursive. */
863 step_1_continuation (void *args)
865 struct step_1_continuation_args *a = args;
867 if (target_has_execution)
869 struct thread_info *tp;
871 tp = inferior_thread ();
872 if (tp->step_multi && stop_step)
874 /* There are more steps to make, and we did stop due to
875 ending a stepping range. Do another step. */
876 step_once (a->skip_subroutines, a->single_inst, a->count - 1, a->thread);
882 /* We either stopped for some reason that is not stepping, or there
883 are no further steps to make. Cleanup. */
884 if (!a->single_inst || a->skip_subroutines)
885 delete_longjmp_breakpoint (a->thread);
888 /* Do just one step operation. If count >1 we will have to set up a
889 continuation to be done after the target stops (after this one
890 step). This is useful to implement the 'step n' kind of commands, in
891 case of asynchronous targets. We had to split step_1 into two parts,
892 one to be done before proceed() and one afterwards. This function is
893 called in case of step n with n>1, after the first step operation has
896 step_once (int skip_subroutines, int single_inst, int count, int thread)
898 struct frame_info *frame;
899 struct step_1_continuation_args *args;
903 /* Don't assume THREAD is a valid thread id. It is set to -1 if
904 the longjmp breakpoint was not required. Use the
905 INFERIOR_PTID thread instead, which is the same thread when
907 struct thread_info *tp = inferior_thread ();
908 clear_proceed_status ();
910 frame = get_current_frame ();
911 if (!frame) /* Avoid coredump here. Why tho? */
912 error (_("No current frame"));
913 tp->step_frame_id = get_frame_id (frame);
917 find_pc_line_pc_range (stop_pc,
918 &tp->step_range_start, &tp->step_range_end);
920 /* If we have no line info, switch to stepi mode. */
921 if (tp->step_range_end == 0 && step_stop_if_no_debug)
923 tp->step_range_start = tp->step_range_end = 1;
925 else if (tp->step_range_end == 0)
928 if (find_pc_partial_function (stop_pc, &name,
929 &tp->step_range_start,
930 &tp->step_range_end) == 0)
931 error (_("Cannot find bounds of current function"));
933 target_terminal_ours ();
934 printf_filtered (_("\
935 Single stepping until exit from function %s, \n\
936 which has no line number information.\n"), name);
941 /* Say we are stepping, but stop after one insn whatever it does. */
942 tp->step_range_start = tp->step_range_end = 1;
943 if (!skip_subroutines)
945 Don't step over function calls, not even to functions lacking
947 tp->step_over_calls = STEP_OVER_NONE;
950 if (skip_subroutines)
951 tp->step_over_calls = STEP_OVER_ALL;
953 inferior_thread ()->step_multi = (count > 1);
954 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
956 args = xmalloc (sizeof (*args));
957 args->skip_subroutines = skip_subroutines;
958 args->single_inst = single_inst;
960 args->thread = thread;
961 add_intermediate_continuation (step_1_continuation, args, xfree);
966 /* Continue program at specified address. */
969 jump_command (char *arg, int from_tty)
972 struct symtabs_and_lines sals;
973 struct symtab_and_line sal;
979 ensure_not_running ();
981 /* Find out whether we must run in the background. */
983 async_exec = strip_bg_char (&arg);
985 /* If we must run in the background, but the target can't do it,
987 if (async_exec && !target_can_async_p ())
988 error (_("Asynchronous execution not supported on this target."));
991 error_no_arg (_("starting address"));
993 sals = decode_line_spec_1 (arg, 1);
996 error (_("Unreasonable jump request"));
1002 if (sal.symtab == 0 && sal.pc == 0)
1003 error (_("No source file has been specified."));
1005 resolve_sal_pc (&sal); /* May error out */
1007 /* See if we are trying to jump to another function. */
1008 fn = get_frame_function (get_current_frame ());
1009 sfn = find_pc_function (sal.pc);
1010 if (fn != NULL && sfn != fn)
1012 if (!query ("Line %d is not in `%s'. Jump anyway? ", sal.line,
1013 SYMBOL_PRINT_NAME (fn)))
1015 error (_("Not confirmed."));
1022 fixup_symbol_section (sfn, 0);
1023 if (section_is_overlay (SYMBOL_OBJ_SECTION (sfn)) &&
1024 !section_is_mapped (SYMBOL_OBJ_SECTION (sfn)))
1026 if (!query ("WARNING!!! Destination is in unmapped overlay! Jump anyway? "))
1028 error (_("Not confirmed."));
1038 printf_filtered (_("Continuing at "));
1039 fputs_filtered (paddress (addr), gdb_stdout);
1040 printf_filtered (".\n");
1043 /* If we are not asked to run in the bg, then prepare to run in the
1044 foreground, synchronously. */
1045 if (!async_exec && target_can_async_p ())
1047 /* Simulate synchronous execution */
1048 async_disable_stdin ();
1051 clear_proceed_status ();
1052 proceed (addr, TARGET_SIGNAL_0, 0);
1056 /* Go to line or address in current procedure */
1058 go_command (char *line_no, int from_tty)
1060 if (line_no == (char *) NULL || !*line_no)
1061 printf_filtered (GO_USAGE);
1064 tbreak_command (line_no, from_tty);
1065 jump_command (line_no, from_tty);
1070 /* Continue program giving it specified signal. */
1073 signal_command (char *signum_exp, int from_tty)
1075 enum target_signal oursig;
1078 dont_repeat (); /* Too dangerous. */
1080 ensure_not_running ();
1082 /* Find out whether we must run in the background. */
1083 if (signum_exp != NULL)
1084 async_exec = strip_bg_char (&signum_exp);
1086 /* If we must run in the background, but the target can't do it,
1088 if (async_exec && !target_can_async_p ())
1089 error (_("Asynchronous execution not supported on this target."));
1091 /* If we are not asked to run in the bg, then prepare to run in the
1092 foreground, synchronously. */
1093 if (!async_exec && target_can_async_p ())
1095 /* Simulate synchronous execution. */
1096 async_disable_stdin ();
1100 error_no_arg (_("signal number"));
1102 /* It would be even slicker to make signal names be valid expressions,
1103 (the type could be "enum $signal" or some such), then the user could
1104 assign them to convenience variables. */
1105 oursig = target_signal_from_name (signum_exp);
1107 if (oursig == TARGET_SIGNAL_UNKNOWN)
1109 /* No, try numeric. */
1110 int num = parse_and_eval_long (signum_exp);
1113 oursig = TARGET_SIGNAL_0;
1115 oursig = target_signal_from_command (num);
1120 if (oursig == TARGET_SIGNAL_0)
1121 printf_filtered (_("Continuing with no signal.\n"));
1123 printf_filtered (_("Continuing with signal %s.\n"),
1124 target_signal_to_name (oursig));
1127 clear_proceed_status ();
1128 /* "signal 0" should not get stuck if we are stopped at a breakpoint.
1129 FIXME: Neither should "signal foo" but when I tried passing
1130 (CORE_ADDR)-1 unconditionally I got a testsuite failure which I haven't
1131 tried to track down yet. */
1132 proceed (oursig == TARGET_SIGNAL_0 ? (CORE_ADDR) -1 : stop_pc, oursig, 0);
1135 /* Proceed until we reach a different source line with pc greater than
1136 our current one or exit the function. We skip calls in both cases.
1138 Note that eventually this command should probably be changed so
1139 that only source lines are printed out when we hit the breakpoint
1140 we set. This may involve changes to wait_for_inferior and the
1141 proceed status code. */
1144 until_next_command (int from_tty)
1146 struct frame_info *frame;
1148 struct symbol *func;
1149 struct symtab_and_line sal;
1150 struct thread_info *tp = inferior_thread ();
1152 clear_proceed_status ();
1154 frame = get_current_frame ();
1156 /* Step until either exited from this function or greater
1157 than the current line (if in symbolic section) or pc (if
1161 func = find_pc_function (pc);
1165 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc);
1167 if (msymbol == NULL)
1168 error (_("Execution is not within a known function."));
1170 tp->step_range_start = SYMBOL_VALUE_ADDRESS (msymbol);
1171 tp->step_range_end = pc;
1175 sal = find_pc_line (pc, 0);
1177 tp->step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
1178 tp->step_range_end = sal.end;
1181 tp->step_over_calls = STEP_OVER_ALL;
1182 tp->step_frame_id = get_frame_id (frame);
1184 tp->step_multi = 0; /* Only one call to proceed */
1186 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1190 until_command (char *arg, int from_tty)
1194 if (!target_has_execution)
1195 error (_("The program is not running."));
1197 /* Find out whether we must run in the background. */
1199 async_exec = strip_bg_char (&arg);
1201 /* If we must run in the background, but the target can't do it,
1203 if (async_exec && !target_can_async_p ())
1204 error (_("Asynchronous execution not supported on this target."));
1206 /* If we are not asked to run in the bg, then prepare to run in the
1207 foreground, synchronously. */
1208 if (!async_exec && target_can_async_p ())
1210 /* Simulate synchronous execution */
1211 async_disable_stdin ();
1215 until_break_command (arg, from_tty, 0);
1217 until_next_command (from_tty);
1221 advance_command (char *arg, int from_tty)
1225 if (!target_has_execution)
1226 error (_("The program is not running."));
1229 error_no_arg (_("a location"));
1231 /* Find out whether we must run in the background. */
1233 async_exec = strip_bg_char (&arg);
1235 /* If we must run in the background, but the target can't do it,
1237 if (async_exec && !target_can_async_p ())
1238 error (_("Asynchronous execution not supported on this target."));
1240 /* If we are not asked to run in the bg, then prepare to run in the
1241 foreground, synchronously. */
1242 if (!async_exec && target_can_async_p ())
1244 /* Simulate synchronous execution. */
1245 async_disable_stdin ();
1248 until_break_command (arg, from_tty, 1);
1251 /* Print the result of a function at the end of a 'finish' command. */
1254 print_return_value (struct type *func_type, struct type *value_type)
1256 struct gdbarch *gdbarch = current_gdbarch;
1257 struct cleanup *old_chain;
1258 struct ui_stream *stb;
1259 struct value *value;
1261 CHECK_TYPEDEF (value_type);
1262 gdb_assert (TYPE_CODE (value_type) != TYPE_CODE_VOID);
1264 /* FIXME: 2003-09-27: When returning from a nested inferior function
1265 call, it's possible (with no help from the architecture vector)
1266 to locate and return/print a "struct return" value. This is just
1267 a more complicated case of what is already being done in in the
1268 inferior function call code. In fact, when inferior function
1269 calls are made async, this will likely be made the norm. */
1271 switch (gdbarch_return_value (gdbarch, func_type, value_type,
1274 case RETURN_VALUE_REGISTER_CONVENTION:
1275 case RETURN_VALUE_ABI_RETURNS_ADDRESS:
1276 case RETURN_VALUE_ABI_PRESERVES_ADDRESS:
1277 value = allocate_value (value_type);
1278 gdbarch_return_value (gdbarch, func_type, value_type, stop_registers,
1279 value_contents_raw (value), NULL);
1281 case RETURN_VALUE_STRUCT_CONVENTION:
1285 internal_error (__FILE__, __LINE__, _("bad switch"));
1291 stb = ui_out_stream_new (uiout);
1292 old_chain = make_cleanup_ui_out_stream_delete (stb);
1293 ui_out_text (uiout, "Value returned is ");
1294 ui_out_field_fmt (uiout, "gdb-result-var", "$%d",
1295 record_latest_value (value));
1296 ui_out_text (uiout, " = ");
1297 value_print (value, stb->stream, 0, Val_no_prettyprint);
1298 ui_out_field_stream (uiout, "return-value", stb);
1299 ui_out_text (uiout, "\n");
1300 do_cleanups (old_chain);
1304 ui_out_text (uiout, "Value returned has type: ");
1305 ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type));
1306 ui_out_text (uiout, ".");
1307 ui_out_text (uiout, " Cannot determine contents\n");
1311 /* Stuff that needs to be done by the finish command after the target
1312 has stopped. In asynchronous mode, we wait for the target to stop
1313 in the call to poll or select in the event loop, so it is
1314 impossible to do all the stuff as part of the finish_command
1315 function itself. The only chance we have to complete this command
1316 is in fetch_inferior_event, which is called by the event loop as
1317 soon as it detects that the target has stopped. This function is
1318 called via the cmd_continuation pointer. */
1320 struct finish_command_continuation_args
1322 struct breakpoint *breakpoint;
1323 struct symbol *function;
1327 finish_command_continuation (void *arg)
1329 struct finish_command_continuation_args *a = arg;
1333 if (!ptid_equal (inferior_ptid, null_ptid)
1334 && target_has_execution
1335 && is_stopped (inferior_ptid))
1336 bs = inferior_thread ()->stop_bpstat;
1338 if (bpstat_find_breakpoint (bs, a->breakpoint) != NULL
1339 && a->function != NULL)
1341 struct type *value_type;
1343 value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (a->function));
1345 internal_error (__FILE__, __LINE__,
1346 _("finish_command: function has no target type"));
1348 if (TYPE_CODE (value_type) != TYPE_CODE_VOID)
1349 print_return_value (SYMBOL_TYPE (a->function), value_type);
1352 /* We suppress normal call of normal_stop observer and do it here so
1353 that that *stopped notification includes the return value. */
1354 /* NOTE: This is broken in non-stop mode. There is no guarantee the
1355 next stop will be in the same thread that we started doing a
1356 finish on. This suppressing (or some other replacement means)
1357 should be a thread property. */
1358 observer_notify_normal_stop (bs);
1359 suppress_stop_observer = 0;
1360 delete_breakpoint (a->breakpoint);
1364 finish_command_continuation_free_arg (void *arg)
1366 /* NOTE: See finish_command_continuation. This would go away, if
1367 this suppressing is made a thread property. */
1368 suppress_stop_observer = 0;
1372 /* "finish": Set a temporary breakpoint at the place the selected
1373 frame will return to, then continue. */
1376 finish_command (char *arg, int from_tty)
1378 struct symtab_and_line sal;
1379 struct frame_info *frame;
1380 struct symbol *function;
1381 struct breakpoint *breakpoint;
1382 struct cleanup *old_chain;
1383 struct finish_command_continuation_args *cargs;
1384 struct thread_info *tp;
1388 /* Find out whether we must run in the background. */
1390 async_exec = strip_bg_char (&arg);
1392 /* If we must run in the background, but the target can't do it,
1394 if (async_exec && !target_can_async_p ())
1395 error (_("Asynchronous execution not supported on this target."));
1397 /* If we are not asked to run in the bg, then prepare to run in the
1398 foreground, synchronously. */
1399 if (!async_exec && target_can_async_p ())
1401 /* Simulate synchronous execution. */
1402 async_disable_stdin ();
1406 error (_("The \"finish\" command does not take any arguments."));
1407 if (!target_has_execution)
1408 error (_("The program is not running."));
1410 frame = get_prev_frame (get_selected_frame (_("No selected frame.")));
1412 error (_("\"finish\" not meaningful in the outermost frame."));
1414 tp = inferior_thread ();
1416 clear_proceed_status ();
1418 sal = find_pc_line (get_frame_pc (frame), 0);
1419 sal.pc = get_frame_pc (frame);
1421 breakpoint = set_momentary_breakpoint (sal, get_frame_id (frame), bp_finish);
1423 old_chain = make_cleanup_delete_breakpoint (breakpoint);
1425 /* Find the function we will return from. */
1427 function = find_pc_function (get_frame_pc (get_selected_frame (NULL)));
1429 /* Print info on the selected frame, including level number but not
1433 printf_filtered (_("Run till exit from "));
1434 print_stack_frame (get_selected_frame (NULL), 1, LOCATION);
1437 tp->proceed_to_finish = 1; /* We want stop_registers, please... */
1438 make_cleanup_restore_integer (&suppress_stop_observer);
1439 suppress_stop_observer = 1;
1440 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
1442 cargs = xmalloc (sizeof (*cargs));
1444 cargs->breakpoint = breakpoint;
1445 cargs->function = function;
1446 add_continuation (finish_command_continuation, cargs,
1447 finish_command_continuation_free_arg);
1449 discard_cleanups (old_chain);
1450 if (!target_can_async_p ())
1451 do_all_continuations ();
1456 program_info (char *args, int from_tty)
1460 struct thread_info *tp;
1463 if (!target_has_execution)
1465 printf_filtered (_("The program being debugged is not being run.\n"));
1470 ptid = inferior_ptid;
1473 struct target_waitstatus ws;
1474 get_last_target_status (&ptid, &ws);
1477 if (ptid_equal (ptid, null_ptid) || is_exited (ptid))
1478 error (_("Invalid selected thread."));
1479 else if (is_running (ptid))
1480 error (_("Selected thread is running."));
1482 tp = find_thread_pid (ptid);
1483 bs = tp->stop_bpstat;
1484 stat = bpstat_num (&bs, &num);
1486 target_files_info ();
1487 printf_filtered (_("Program stopped at %s.\n"),
1488 hex_string ((unsigned long) stop_pc));
1490 printf_filtered (_("It stopped after being stepped.\n"));
1493 /* There may be several breakpoints in the same place, so this
1494 isn't as strange as it seems. */
1499 printf_filtered (_("\
1500 It stopped at a breakpoint that has since been deleted.\n"));
1503 printf_filtered (_("It stopped at breakpoint %d.\n"), num);
1504 stat = bpstat_num (&bs, &num);
1507 else if (tp->stop_signal != TARGET_SIGNAL_0)
1509 printf_filtered (_("It stopped with signal %s, %s.\n"),
1510 target_signal_to_name (tp->stop_signal),
1511 target_signal_to_string (tp->stop_signal));
1516 printf_filtered (_("\
1517 Type \"info stack\" or \"info registers\" for more information.\n"));
1522 environment_info (char *var, int from_tty)
1526 char *val = get_in_environ (inferior_environ, var);
1529 puts_filtered (var);
1530 puts_filtered (" = ");
1531 puts_filtered (val);
1532 puts_filtered ("\n");
1536 puts_filtered ("Environment variable \"");
1537 puts_filtered (var);
1538 puts_filtered ("\" not defined.\n");
1543 char **vector = environ_vector (inferior_environ);
1546 puts_filtered (*vector++);
1547 puts_filtered ("\n");
1553 set_environment_command (char *arg, int from_tty)
1555 char *p, *val, *var;
1559 error_no_arg (_("environment variable and value"));
1561 /* Find seperation between variable name and value */
1562 p = (char *) strchr (arg, '=');
1563 val = (char *) strchr (arg, ' ');
1565 if (p != 0 && val != 0)
1567 /* We have both a space and an equals. If the space is before the
1568 equals, walk forward over the spaces til we see a nonspace
1569 (possibly the equals). */
1574 /* Now if the = is after the char following the spaces,
1575 take the char following the spaces. */
1579 else if (val != 0 && p == 0)
1583 error_no_arg (_("environment variable to set"));
1585 if (p == 0 || p[1] == 0)
1589 p = arg + strlen (arg); /* So that savestring below will work */
1593 /* Not setting variable value to null */
1595 while (*val == ' ' || *val == '\t')
1599 while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
1602 var = savestring (arg, p - arg);
1605 printf_filtered (_("\
1606 Setting environment variable \"%s\" to null value.\n"),
1608 set_in_environ (inferior_environ, var, "");
1611 set_in_environ (inferior_environ, var, val);
1616 unset_environment_command (char *var, int from_tty)
1620 /* If there is no argument, delete all environment variables.
1621 Ask for confirmation if reading from the terminal. */
1622 if (!from_tty || query (_("Delete all environment variables? ")))
1624 free_environ (inferior_environ);
1625 inferior_environ = make_environ ();
1629 unset_in_environ (inferior_environ, var);
1632 /* Handle the execution path (PATH variable) */
1634 static const char path_var_name[] = "PATH";
1637 path_info (char *args, int from_tty)
1639 puts_filtered ("Executable and object file path: ");
1640 puts_filtered (get_in_environ (inferior_environ, path_var_name));
1641 puts_filtered ("\n");
1644 /* Add zero or more directories to the front of the execution path. */
1647 path_command (char *dirname, int from_tty)
1652 env = get_in_environ (inferior_environ, path_var_name);
1653 /* Can be null if path is not set */
1656 exec_path = xstrdup (env);
1657 mod_path (dirname, &exec_path);
1658 set_in_environ (inferior_environ, path_var_name, exec_path);
1661 path_info ((char *) NULL, from_tty);
1665 /* Print out the machine register regnum. If regnum is -1, print all
1666 registers (print_all == 1) or all non-float and non-vector
1667 registers (print_all == 0).
1669 For most machines, having all_registers_info() print the
1670 register(s) one per line is good enough. If a different format is
1671 required, (eg, for MIPS or Pyramid 90x, which both have lots of
1672 regs), or there is an existing convention for showing all the
1673 registers, define the architecture method PRINT_REGISTERS_INFO to
1674 provide that format. */
1677 default_print_registers_info (struct gdbarch *gdbarch,
1678 struct ui_file *file,
1679 struct frame_info *frame,
1680 int regnum, int print_all)
1683 const int numregs = gdbarch_num_regs (gdbarch)
1684 + gdbarch_num_pseudo_regs (gdbarch);
1685 gdb_byte buffer[MAX_REGISTER_SIZE];
1687 for (i = 0; i < numregs; i++)
1689 /* Decide between printing all regs, non-float / vector regs, or
1695 if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
1700 if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
1710 /* If the register name is empty, it is undefined for this
1711 processor, so don't display anything. */
1712 if (gdbarch_register_name (gdbarch, i) == NULL
1713 || *(gdbarch_register_name (gdbarch, i)) == '\0')
1716 fputs_filtered (gdbarch_register_name (gdbarch, i), file);
1717 print_spaces_filtered (15 - strlen (gdbarch_register_name
1718 (gdbarch, i)), file);
1720 /* Get the data in raw format. */
1721 if (! frame_register_read (frame, i, buffer))
1723 fprintf_filtered (file, "*value not available*\n");
1727 /* If virtual format is floating, print it that way, and in raw
1729 if (TYPE_CODE (register_type (gdbarch, i)) == TYPE_CODE_FLT
1730 || TYPE_CODE (register_type (gdbarch, i)) == TYPE_CODE_DECFLOAT)
1734 val_print (register_type (gdbarch, i), buffer, 0, 0,
1735 file, 0, 1, 0, Val_pretty_default, current_language);
1737 fprintf_filtered (file, "\t(raw 0x");
1738 for (j = 0; j < register_size (gdbarch, i); j++)
1741 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
1744 idx = register_size (gdbarch, i) - 1 - j;
1745 fprintf_filtered (file, "%02x", (unsigned char) buffer[idx]);
1747 fprintf_filtered (file, ")");
1751 /* Print the register in hex. */
1752 val_print (register_type (gdbarch, i), buffer, 0, 0,
1753 file, 'x', 1, 0, Val_pretty_default, current_language);
1754 /* If not a vector register, print it also according to its
1756 if (TYPE_VECTOR (register_type (gdbarch, i)) == 0)
1758 fprintf_filtered (file, "\t");
1759 val_print (register_type (gdbarch, i), buffer, 0, 0,
1760 file, 0, 1, 0, Val_pretty_default, current_language);
1764 fprintf_filtered (file, "\n");
1769 registers_info (char *addr_exp, int fpregs)
1771 struct frame_info *frame;
1772 struct gdbarch *gdbarch;
1773 int regnum, numregs;
1776 if (!target_has_registers)
1777 error (_("The program has no registers now."));
1778 frame = get_selected_frame (NULL);
1779 gdbarch = get_frame_arch (frame);
1783 gdbarch_print_registers_info (gdbarch, gdb_stdout,
1788 while (*addr_exp != '\0')
1793 /* Keep skipping leading white space. */
1794 if (isspace ((*addr_exp)))
1800 /* Discard any leading ``$''. Check that there is something
1801 resembling a register following it. */
1802 if (addr_exp[0] == '$')
1804 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
1805 error (_("Missing register name"));
1807 /* Find the start/end of this register name/num/group. */
1809 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
1813 /* Figure out what we've found and display it. */
1815 /* A register name? */
1817 int regnum = user_reg_map_name_to_regnum (gdbarch, start, end - start);
1820 /* User registers lie completely outside of the range of
1821 normal registers. Catch them early so that the target
1823 if (regnum >= gdbarch_num_regs (gdbarch)
1824 + gdbarch_num_pseudo_regs (gdbarch))
1826 struct value *val = value_of_user_reg (regnum, frame);
1828 printf_filtered ("%s: ", start);
1829 print_scalar_formatted (value_contents (val),
1830 check_typedef (value_type (val)),
1831 'x', 0, gdb_stdout);
1832 printf_filtered ("\n");
1835 gdbarch_print_registers_info (gdbarch, gdb_stdout,
1836 frame, regnum, fpregs);
1841 /* A register number? (how portable is this one?). */
1844 int regnum = strtol (start, &endptr, 0);
1847 && regnum < gdbarch_num_regs (gdbarch)
1848 + gdbarch_num_pseudo_regs (gdbarch))
1850 gdbarch_print_registers_info (gdbarch, gdb_stdout,
1851 frame, regnum, fpregs);
1856 /* A register group? */
1858 struct reggroup *group;
1859 for (group = reggroup_next (gdbarch, NULL);
1861 group = reggroup_next (gdbarch, group))
1863 /* Don't bother with a length check. Should the user
1864 enter a short register group name, go with the first
1865 group that matches. */
1866 if (strncmp (start, reggroup_name (group), end - start) == 0)
1873 regnum < gdbarch_num_regs (gdbarch)
1874 + gdbarch_num_pseudo_regs (gdbarch);
1877 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
1878 gdbarch_print_registers_info (gdbarch,
1886 /* Nothing matched. */
1887 error (_("Invalid register `%.*s'"), (int) (end - start), start);
1892 all_registers_info (char *addr_exp, int from_tty)
1894 registers_info (addr_exp, 1);
1898 nofp_registers_info (char *addr_exp, int from_tty)
1900 registers_info (addr_exp, 0);
1904 print_vector_info (struct gdbarch *gdbarch, struct ui_file *file,
1905 struct frame_info *frame, const char *args)
1907 if (gdbarch_print_vector_info_p (gdbarch))
1908 gdbarch_print_vector_info (gdbarch, file, frame, args);
1912 int printed_something = 0;
1915 regnum < gdbarch_num_regs (gdbarch)
1916 + gdbarch_num_pseudo_regs (gdbarch);
1919 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
1921 printed_something = 1;
1922 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
1925 if (!printed_something)
1926 fprintf_filtered (file, "No vector information\n");
1931 vector_info (char *args, int from_tty)
1933 if (!target_has_registers)
1934 error (_("The program has no registers now."));
1936 print_vector_info (current_gdbarch, gdb_stdout,
1937 get_selected_frame (NULL), args);
1943 * Should save/restore the tty state since it might be that the
1944 * program to be debugged was started on this tty and it wants
1945 * the tty in some state other than what we want. If it's running
1946 * on another terminal or without a terminal, then saving and
1947 * restoring the tty state is a harmless no-op.
1948 * This only needs to be done if we are attaching to a process.
1953 takes a program started up outside of gdb and ``attaches'' to it.
1954 This stops it cold in its tracks and allows us to start debugging it.
1955 and wait for the trace-trap that results from attaching. */
1958 attach_command_post_wait (char *args, int from_tty, int async_exec)
1961 char *full_exec_path = NULL;
1963 stop_soon = NO_STOP_QUIETLY;
1965 /* If no exec file is yet known, try to determine it from the
1967 exec_file = (char *) get_exec_file (0);
1970 exec_file = target_pid_to_exec_file (PIDGET (inferior_ptid));
1973 /* It's possible we don't have a full path, but rather just a
1974 filename. Some targets, such as HP-UX, don't provide the
1977 Attempt to qualify the filename against the source path.
1978 (If that fails, we'll just fall back on the original
1979 filename. Not much more we can do...)
1981 if (!source_full_path_of (exec_file, &full_exec_path))
1982 full_exec_path = savestring (exec_file, strlen (exec_file));
1984 exec_file_attach (full_exec_path, from_tty);
1985 symbol_file_add_main (full_exec_path, from_tty);
1990 reopen_exec_file ();
1994 /* Take any necessary post-attaching actions for this platform. */
1995 target_post_attach (PIDGET (inferior_ptid));
1997 post_create_inferior (¤t_target, from_tty);
1999 /* Install inferior's terminal modes. */
2000 target_terminal_inferior ();
2003 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_0, 0);
2006 if (target_can_async_p ())
2007 async_enable_stdin ();
2009 if (deprecated_attach_hook)
2010 deprecated_attach_hook ();
2014 struct attach_command_continuation_args
2022 attach_command_continuation (void *args)
2024 struct attach_command_continuation_args *a = args;
2025 attach_command_post_wait (a->args, a->from_tty, a->async_exec);
2029 attach_command_continuation_free_args (void *args)
2031 struct attach_command_continuation_args *a = args;
2037 attach_command (char *args, int from_tty)
2040 char *full_exec_path = NULL;
2043 dont_repeat (); /* Not for the faint of heart */
2045 if (target_has_execution)
2047 if (query ("A program is being debugged already. Kill it? "))
2050 error (_("Not killed."));
2053 /* Clean up any leftovers from other runs. Some other things from
2054 this function should probably be moved into target_pre_inferior. */
2055 target_pre_inferior (from_tty);
2057 if (non_stop && !target_supports_non_stop ())
2058 error (_("Cannot attach to this target in non-stop mode"));
2062 async_exec = strip_bg_char (&args);
2064 /* If we get a request for running in the bg but the target
2065 doesn't support it, error out. */
2066 if (async_exec && !target_can_async_p ())
2067 error (_("Asynchronous execution not supported on this target."));
2070 /* If we don't get a request of running in the bg, then we need
2071 to simulate synchronous (fg) execution. */
2072 if (!async_exec && target_can_async_p ())
2074 /* Simulate synchronous execution */
2075 async_disable_stdin ();
2078 target_attach (args, from_tty);
2080 /* Set up the "saved terminal modes" of the inferior
2081 based on what modes we are starting it with. */
2082 target_terminal_init ();
2084 /* Set up execution context to know that we should return from
2085 wait_for_inferior as soon as the target reports a stop. */
2086 init_wait_for_inferior ();
2087 clear_proceed_status ();
2089 /* Some system don't generate traps when attaching to inferior.
2090 E.g. Mach 3 or GNU hurd. */
2091 if (!target_attach_no_wait)
2093 /* Careful here. See comments in inferior.h. Basically some
2094 OSes don't ignore SIGSTOPs on continue requests anymore. We
2095 need a way for handle_inferior_event to reset the stop_signal
2096 variable after an attach, and this is what
2097 STOP_QUIETLY_NO_SIGSTOP is for. */
2098 stop_soon = STOP_QUIETLY_NO_SIGSTOP;
2100 if (target_can_async_p ())
2102 /* sync_execution mode. Wait for stop. */
2103 struct attach_command_continuation_args *a;
2105 a = xmalloc (sizeof (*a));
2106 a->args = xstrdup (args);
2107 a->from_tty = from_tty;
2108 a->async_exec = async_exec;
2109 add_continuation (attach_command_continuation, a,
2110 attach_command_continuation_free_args);
2114 wait_for_inferior (0);
2117 attach_command_post_wait (args, from_tty, async_exec);
2122 * takes a program previously attached to and detaches it.
2123 * The program resumes execution and will no longer stop
2124 * on signals, etc. We better not have left any breakpoints
2125 * in the program or it'll die when it hits one. For this
2126 * to work, it may be necessary for the process to have been
2127 * previously attached. It *might* work if the program was
2128 * started via the normal ptrace (PTRACE_TRACEME).
2132 detach_command (char *args, int from_tty)
2134 dont_repeat (); /* Not for the faint of heart. */
2135 target_detach (args, from_tty);
2136 no_shared_libraries (NULL, from_tty);
2137 init_thread_list ();
2138 if (deprecated_detach_hook)
2139 deprecated_detach_hook ();
2142 /* Disconnect from the current target without resuming it (leaving it
2143 waiting for a debugger).
2145 We'd better not have left any breakpoints in the program or the
2146 next debugger will get confused. Currently only supported for some
2147 remote targets, since the normal attach mechanisms don't work on
2148 stopped processes on some native platforms (e.g. GNU/Linux). */
2151 disconnect_command (char *args, int from_tty)
2153 dont_repeat (); /* Not for the faint of heart */
2154 target_disconnect (args, from_tty);
2155 no_shared_libraries (NULL, from_tty);
2156 init_thread_list ();
2157 if (deprecated_detach_hook)
2158 deprecated_detach_hook ();
2162 interrupt_target_1 (int all_threads)
2166 ptid = minus_one_ptid;
2168 ptid = inferior_ptid;
2172 /* Stop the execution of the target while running in async mode, in
2173 the backgound. In all-stop, stop the whole process. In non-stop
2174 mode, stop the current thread only by default, or stop all threads
2175 if the `-a' switch is used. */
2177 /* interrupt [-a] */
2179 interrupt_target_command (char *args, int from_tty)
2181 if (target_can_async_p ())
2183 int all_threads = 0;
2185 dont_repeat (); /* Not for the faint of heart */
2188 && strncmp (args, "-a", sizeof ("-a") - 1) == 0)
2191 if (!non_stop && all_threads)
2192 error (_("-a is meaningless in all-stop mode."));
2194 interrupt_target_1 (all_threads);
2199 print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
2200 struct frame_info *frame, const char *args)
2202 if (gdbarch_print_float_info_p (gdbarch))
2203 gdbarch_print_float_info (gdbarch, file, frame, args);
2207 int printed_something = 0;
2210 regnum < gdbarch_num_regs (gdbarch)
2211 + gdbarch_num_pseudo_regs (gdbarch);
2214 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
2216 printed_something = 1;
2217 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2220 if (!printed_something)
2221 fprintf_filtered (file, "\
2222 No floating-point info available for this processor.\n");
2227 float_info (char *args, int from_tty)
2229 if (!target_has_registers)
2230 error (_("The program has no registers now."));
2232 print_float_info (current_gdbarch, gdb_stdout,
2233 get_selected_frame (NULL), args);
2237 unset_command (char *args, int from_tty)
2239 printf_filtered (_("\
2240 \"unset\" must be followed by the name of an unset subcommand.\n"));
2241 help_list (unsetlist, "unset ", -1, gdb_stdout);
2245 _initialize_infcmd (void)
2247 struct cmd_list_element *c = NULL;
2249 /* add the filename of the terminal connected to inferior I/O */
2250 add_setshow_filename_cmd ("inferior-tty", class_run,
2251 &inferior_io_terminal, _("\
2252 Set terminal for future runs of program being debugged."), _("\
2253 Show terminal for future runs of program being debugged."), _("\
2254 Usage: set inferior-tty /dev/pts/1"), NULL, NULL, &setlist, &showlist);
2255 add_com_alias ("tty", "set inferior-tty", class_alias, 0);
2257 add_setshow_optional_filename_cmd ("args", class_run,
2258 &inferior_args, _("\
2259 Set argument list to give program being debugged when it is started."), _("\
2260 Show argument list to give program being debugged when it is started."), _("\
2261 Follow this command with any number of args, to be passed to the program."),
2264 &setlist, &showlist);
2266 c = add_cmd ("environment", no_class, environment_info, _("\
2267 The environment to give the program, or one variable's value.\n\
2268 With an argument VAR, prints the value of environment variable VAR to\n\
2269 give the program being debugged. With no arguments, prints the entire\n\
2270 environment to be given to the program."), &showlist);
2271 set_cmd_completer (c, noop_completer);
2273 add_prefix_cmd ("unset", no_class, unset_command,
2274 _("Complement to certain \"set\" commands."),
2275 &unsetlist, "unset ", 0, &cmdlist);
2277 c = add_cmd ("environment", class_run, unset_environment_command, _("\
2278 Cancel environment variable VAR for the program.\n\
2279 This does not affect the program until the next \"run\" command."),
2281 set_cmd_completer (c, noop_completer);
2283 c = add_cmd ("environment", class_run, set_environment_command, _("\
2284 Set environment variable value to give the program.\n\
2285 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2286 VALUES of environment variables are uninterpreted strings.\n\
2287 This does not affect the program until the next \"run\" command."),
2289 set_cmd_completer (c, noop_completer);
2291 c = add_com ("path", class_files, path_command, _("\
2292 Add directory DIR(s) to beginning of search path for object files.\n\
2293 $cwd in the path means the current working directory.\n\
2294 This path is equivalent to the $PATH shell variable. It is a list of\n\
2295 directories, separated by colons. These directories are searched to find\n\
2296 fully linked executable files and separately compiled object files as needed."));
2297 set_cmd_completer (c, filename_completer);
2299 c = add_cmd ("paths", no_class, path_info, _("\
2300 Current search path for finding object files.\n\
2301 $cwd in the path means the current working directory.\n\
2302 This path is equivalent to the $PATH shell variable. It is a list of\n\
2303 directories, separated by colons. These directories are searched to find\n\
2304 fully linked executable files and separately compiled object files as needed."),
2306 set_cmd_completer (c, noop_completer);
2308 add_com ("attach", class_run, attach_command, _("\
2309 Attach to a process or file outside of GDB.\n\
2310 This command attaches to another target, of the same type as your last\n\
2311 \"target\" command (\"info files\" will show your target stack).\n\
2312 The command may take as argument a process id or a device file.\n\
2313 For a process id, you must have permission to send the process a signal,\n\
2314 and it must have the same effective uid as the debugger.\n\
2315 When using \"attach\" with a process id, the debugger finds the\n\
2316 program running in the process, looking first in the current working\n\
2317 directory, or (if not found there) using the source file search path\n\
2318 (see the \"directory\" command). You can also use the \"file\" command\n\
2319 to specify the program, and to load its symbol table."));
2321 add_prefix_cmd ("detach", class_run, detach_command, _("\
2322 Detach a process or file previously attached.\n\
2323 If a process, it is no longer traced, and it continues its execution. If\n\
2324 you were debugging a file, the file is closed and gdb no longer accesses it."),
2325 &detachlist, "detach ", 0, &cmdlist);
2327 add_com ("disconnect", class_run, disconnect_command, _("\
2328 Disconnect from a target.\n\
2329 The target will wait for another debugger to connect. Not available for\n\
2332 add_com ("signal", class_run, signal_command, _("\
2333 Continue program giving it signal specified by the argument.\n\
2334 An argument of \"0\" means continue program without giving it a signal."));
2336 add_com ("stepi", class_run, stepi_command, _("\
2337 Step one instruction exactly.\n\
2338 Argument N means do this N times (or till program stops for another reason)."));
2339 add_com_alias ("si", "stepi", class_alias, 0);
2341 add_com ("nexti", class_run, nexti_command, _("\
2342 Step one instruction, but proceed through subroutine calls.\n\
2343 Argument N means do this N times (or till program stops for another reason)."));
2344 add_com_alias ("ni", "nexti", class_alias, 0);
2346 add_com ("finish", class_run, finish_command, _("\
2347 Execute until selected stack frame returns.\n\
2348 Upon return, the value returned is printed and put in the value history."));
2349 add_com_alias ("fin", "finish", class_run, 1);
2351 add_com ("next", class_run, next_command, _("\
2352 Step program, proceeding through subroutine calls.\n\
2353 Like the \"step\" command as long as subroutine calls do not happen;\n\
2354 when they do, the call is treated as one instruction.\n\
2355 Argument N means do this N times (or till program stops for another reason)."));
2356 add_com_alias ("n", "next", class_run, 1);
2358 add_com_alias ("S", "next", class_run, 1);
2360 add_com ("step", class_run, step_command, _("\
2361 Step program until it reaches a different source line.\n\
2362 Argument N means do this N times (or till program stops for another reason)."));
2363 add_com_alias ("s", "step", class_run, 1);
2365 c = add_com ("until", class_run, until_command, _("\
2366 Execute until the program reaches a source line greater than the current\n\
2367 or a specified location (same args as break command) within the current frame."));
2368 set_cmd_completer (c, location_completer);
2369 add_com_alias ("u", "until", class_run, 1);
2371 c = add_com ("advance", class_run, advance_command, _("\
2372 Continue the program up to the given location (same form as args for break command).\n\
2373 Execution will also stop upon exit from the current stack frame."));
2374 set_cmd_completer (c, location_completer);
2376 c = add_com ("jump", class_run, jump_command, _("\
2377 Continue program being debugged at specified line or address.\n\
2378 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
2379 for an address to start at."));
2380 set_cmd_completer (c, location_completer);
2384 c = add_com ("go", class_run, go_command, _("\
2385 Usage: go <location>\n\
2386 Continue program being debugged, stopping at specified line or \n\
2388 Give as argument either LINENUM or *ADDR, where ADDR is an \n\
2389 expression for an address to start at.\n\
2390 This command is a combination of tbreak and jump."));
2391 set_cmd_completer (c, location_completer);
2395 add_com_alias ("g", "go", class_run, 1);
2397 c = add_com ("continue", class_run, continue_command, _("\
2398 Continue program being debugged, after signal or breakpoint.\n\
2399 If proceeding from breakpoint, a number N may be used as an argument,\n\
2400 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
2401 the breakpoint won't break until the Nth time it is reached).\n\
2403 If non-stop mode is enabled, continue only the current thread,\n\
2404 otherwise all the threads in the program are continued. To \n\
2405 continue all stopped threads in non-stop mode, use the -a option.\n\
2406 Specifying -a and an ignore count simultaneously is an error."));
2407 add_com_alias ("c", "cont", class_run, 1);
2408 add_com_alias ("fg", "cont", class_run, 1);
2410 c = add_com ("run", class_run, run_command, _("\
2411 Start debugged program. You may specify arguments to give it.\n\
2412 Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
2413 Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\
2414 With no arguments, uses arguments last specified (with \"run\" or \"set args\").\n\
2415 To cancel previous arguments and run with no arguments,\n\
2416 use \"set args\" without arguments."));
2417 set_cmd_completer (c, filename_completer);
2418 add_com_alias ("r", "run", class_run, 1);
2420 add_com ("R", class_run, run_no_args_command,
2421 _("Start debugged program with no arguments."));
2423 c = add_com ("start", class_run, start_command, _("\
2424 Run the debugged program until the beginning of the main procedure.\n\
2425 You may specify arguments to give to your program, just as with the\n\
2426 \"run\" command."));
2427 set_cmd_completer (c, filename_completer);
2429 c = add_com ("interrupt", class_run, interrupt_target_command,
2430 _("Interrupt the execution of the debugged program.\n\
2431 If non-stop mode is enabled, interrupt only the current thread,\n\
2432 otherwise all the threads in the program are stopped. To \n\
2433 interrupt all running threads in non-stop mode, use the -a option."));
2435 add_info ("registers", nofp_registers_info, _("\
2436 List of integer registers and their contents, for selected stack frame.\n\
2437 Register name as argument means describe only that register."));
2438 add_info_alias ("r", "registers", 1);
2441 add_com ("lr", class_info, nofp_registers_info, _("\
2442 List of integer registers and their contents, for selected stack frame.\n\
2443 Register name as argument means describe only that register."));
2444 add_info ("all-registers", all_registers_info, _("\
2445 List of all registers and their contents, for selected stack frame.\n\
2446 Register name as argument means describe only that register."));
2448 add_info ("program", program_info,
2449 _("Execution status of the program."));
2451 add_info ("float", float_info,
2452 _("Print the status of the floating point unit\n"));
2454 add_info ("vector", vector_info,
2455 _("Print the status of the vector unit\n"));
2457 inferior_environ = make_environ ();
2458 init_environ (inferior_environ);