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 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"
56 /* Functions exported for general use, in inferior.h: */
58 void all_registers_info (char *, int);
60 void registers_info (char *, int);
62 void nexti_command (char *, int);
64 void stepi_command (char *, int);
66 void continue_command (char *, int);
68 void interrupt_target_command (char *args, int from_tty);
70 /* Local functions: */
72 static void nofp_registers_info (char *, int);
74 static void print_return_value (struct type *func_type,
75 struct type *value_type);
77 static void until_next_command (int);
79 static void until_command (char *, int);
81 static void path_info (char *, int);
83 static void path_command (char *, int);
85 static void unset_command (char *, int);
87 static void float_info (char *, int);
89 static void disconnect_command (char *, int);
91 static void unset_environment_command (char *, int);
93 static void set_environment_command (char *, int);
95 static void environment_info (char *, int);
97 static void program_info (char *, int);
99 static void finish_command (char *, int);
101 static void signal_command (char *, int);
103 static void jump_command (char *, int);
105 static void step_1 (int, int, char *);
106 static void step_once (int skip_subroutines, int single_inst, int count, int thread);
108 static void next_command (char *, int);
110 static void step_command (char *, int);
112 static void run_command (char *, int);
114 static void run_no_args_command (char *args, int from_tty);
116 static void go_command (char *line_no, int from_tty);
118 static int strip_bg_char (char **);
120 void _initialize_infcmd (void);
122 #define ERROR_NO_INFERIOR \
123 if (!target_has_execution) error (_("The program is not being run."));
125 /* String containing arguments to give to the program, separated by spaces.
126 Empty string (pointer to '\0') means no args. */
128 static char *inferior_args;
130 /* The inferior arguments as a vector. If INFERIOR_ARGC is nonzero,
131 then we must compute INFERIOR_ARGS from this (via the target). */
133 static int inferior_argc;
134 static char **inferior_argv;
136 /* File name for default use for standard in/out in the inferior. */
138 static char *inferior_io_terminal;
140 /* Pid of our debugged inferior, or 0 if no inferior now.
141 Since various parts of infrun.c test this to see whether there is a program
142 being debugged it should be nonzero (currently 3 is used) for remote
145 ptid_t inferior_ptid;
147 /* Address at which inferior stopped. */
151 /* Flag indicating that a command has proceeded the inferior past the
152 current breakpoint. */
154 int breakpoint_proceeded;
156 /* Nonzero if stopped due to completion of a stack dummy routine. */
158 int stop_stack_dummy;
160 /* Nonzero if stopped due to a random (unexpected) signal in inferior
163 int stopped_by_random_signal;
165 /* Environment to use for running inferior,
166 in format described in environ.h. */
168 struct gdb_environ *inferior_environ;
170 /* Accessor routines. */
173 set_inferior_io_terminal (const char *terminal_name)
175 if (inferior_io_terminal)
176 xfree (inferior_io_terminal);
179 inferior_io_terminal = NULL;
181 inferior_io_terminal = savestring (terminal_name, strlen (terminal_name));
185 get_inferior_io_terminal (void)
187 return inferior_io_terminal;
191 get_inferior_args (void)
193 if (inferior_argc != 0)
197 n = gdbarch_construct_inferior_arguments (current_gdbarch,
198 inferior_argc, inferior_argv);
199 old = set_inferior_args (n);
203 if (inferior_args == NULL)
204 inferior_args = xstrdup ("");
206 return inferior_args;
210 set_inferior_args (char *newargs)
212 char *saved_args = inferior_args;
214 inferior_args = newargs;
222 set_inferior_args_vector (int argc, char **argv)
224 inferior_argc = argc;
225 inferior_argv = argv;
228 /* Notice when `set args' is run. */
230 notice_args_set (char *args, int from_tty, struct cmd_list_element *c)
236 /* Notice when `show args' is run. */
238 notice_args_read (struct ui_file *file, int from_tty,
239 struct cmd_list_element *c, const char *value)
241 /* Note that we ignore the passed-in value in favor of computing it
243 deprecated_show_value_hack (file, from_tty, c, get_inferior_args ());
247 /* Compute command-line string given argument vector. This does the
248 same shell processing as fork_inferior. */
250 construct_inferior_arguments (struct gdbarch *gdbarch, int argc, char **argv)
254 if (STARTUP_WITH_SHELL)
256 /* This holds all the characters considered special to the
257 typical Unix shells. We include `^' because the SunOS
258 /bin/sh treats it as a synonym for `|'. */
259 char *special = "\"!#$&*()\\|[]{}<>?'\"`~^; \t\n";
264 /* We over-compute the size. It shouldn't matter. */
265 for (i = 0; i < argc; ++i)
266 length += 3 * strlen (argv[i]) + 1 + 2 * (argv[i][0] == '\0');
268 result = (char *) xmalloc (length);
271 for (i = 0; i < argc; ++i)
276 /* Need to handle empty arguments specially. */
277 if (argv[i][0] == '\0')
284 for (cp = argv[i]; *cp; ++cp)
288 /* A newline cannot be quoted with a backslash (it
289 just disappears), only by putting it inside
297 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 ();
394 /* Now that we know the register layout, retrieve current PC. */
395 stop_pc = read_pc ();
397 /* If the solist is global across processes, there's no need to
399 if (exec_bfd && !gdbarch_has_global_solist (target_gdbarch))
401 /* Sometimes the platform-specific hook loads initial shared
402 libraries, and sometimes it doesn't. Try to do so first, so
403 that we can add them with the correct value for FROM_TTY.
404 If we made all the inferior hook methods consistent,
405 this call could be removed. */
407 SOLIB_ADD (NULL, from_tty, target, auto_solib_add);
409 solib_add (NULL, from_tty, target, auto_solib_add);
415 /* Create the hooks to handle shared library load and unload
417 #ifdef SOLIB_CREATE_INFERIOR_HOOK
418 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
420 solib_create_inferior_hook ();
424 observer_notify_inferior_created (target, from_tty);
427 /* Kill the inferior if already running. This function is designed
428 to be called when we are about to start the execution of the program
429 from the beginning. Ask the user to confirm that he wants to restart
430 the program being debugged when FROM_TTY is non-null. */
433 kill_if_already_running (int from_tty)
435 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
437 /* Bail out before killing the program if we will not be able to
439 target_require_runnable ();
442 && !query (_("The program being debugged has been started already.\n\
443 Start it from the beginning? ")))
444 error (_("Program not restarted."));
449 /* Implement the "run" command. If TBREAK_AT_MAIN is set, then insert
450 a temporary breakpoint at the begining of the main program before
451 running the program. */
454 run_command_1 (char *args, int from_tty, int tbreak_at_main)
457 struct cleanup *old_chain;
462 kill_if_already_running (from_tty);
464 init_wait_for_inferior ();
465 clear_breakpoint_hit_counts ();
467 /* Clean up any leftovers from other runs. Some other things from
468 this function should probably be moved into target_pre_inferior. */
469 target_pre_inferior (from_tty);
471 /* The comment here used to read, "The exec file is re-read every
472 time we do a generic_mourn_inferior, so we just have to worry
473 about the symbol file." The `generic_mourn_inferior' function
474 gets called whenever the program exits. However, suppose the
475 program exits, and *then* the executable file changes? We need
476 to check again here. Since reopen_exec_file doesn't do anything
477 if the timestamp hasn't changed, I don't see the harm. */
481 /* Insert the temporary breakpoint if a location was specified. */
483 tbreak_command (main_name (), 0);
485 exec_file = (char *) get_exec_file (0);
487 if (non_stop && !target_supports_non_stop ())
488 error (_("The target does not support running in non-stop mode."));
490 /* We keep symbols from add-symbol-file, on the grounds that the
491 user might want to add some symbols before running the program
492 (right?). But sometimes (dynamic loading where the user manually
493 introduces the new symbols with add-symbol-file), the code which
494 the symbols describe does not persist between runs. Currently
495 the user has to manually nuke all symbols between runs if they
496 want them to go away (PR 2207). This is probably reasonable. */
500 if (target_can_async_p ())
501 async_disable_stdin ();
505 int async_exec = strip_bg_char (&args);
507 /* If we get a request for running in the bg but the target
508 doesn't support it, error out. */
509 if (async_exec && !target_can_async_p ())
510 error (_("Asynchronous execution not supported on this target."));
512 /* If we don't get a request of running in the bg, then we need
513 to simulate synchronous (fg) execution. */
514 if (!async_exec && target_can_async_p ())
516 /* Simulate synchronous execution */
517 async_disable_stdin ();
520 /* If there were other args, beside '&', process them. */
523 char *old_args = set_inferior_args (xstrdup (args));
530 ui_out_field_string (uiout, NULL, "Starting program");
531 ui_out_text (uiout, ": ");
533 ui_out_field_string (uiout, "execfile", exec_file);
534 ui_out_spaces (uiout, 1);
535 /* We call get_inferior_args() because we might need to compute
537 ui_out_field_string (uiout, "infargs", get_inferior_args ());
538 ui_out_text (uiout, "\n");
539 ui_out_flush (uiout);
542 /* We call get_inferior_args() because we might need to compute
544 target_create_inferior (exec_file, get_inferior_args (),
545 environ_vector (inferior_environ), from_tty);
547 /* We're starting off a new process. When we get out of here, in
548 non-stop mode, finish the state of all threads of that process,
549 but leave other threads alone, as they may be stopped in internal
550 events --- the frontend shouldn't see them as stopped. In
551 all-stop, always finish the state of all threads, as we may be
552 resuming more than just the new process. */
554 ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
556 ptid = minus_one_ptid;
557 old_chain = make_cleanup (finish_thread_state_cleanup, &ptid);
559 /* Pass zero for FROM_TTY, because at this point the "run" command
560 has done its thing; now we are setting up the running program. */
561 post_create_inferior (¤t_target, 0);
563 /* Start the target running. */
564 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_0, 0);
566 /* Since there was no error, there's no need to finish the thread
568 discard_cleanups (old_chain);
572 run_command (char *args, int from_tty)
574 run_command_1 (args, from_tty, 0);
578 run_no_args_command (char *args, int from_tty)
580 char *old_args = set_inferior_args (xstrdup (""));
585 /* Start the execution of the program up until the beginning of the main
589 start_command (char *args, int from_tty)
591 /* Some languages such as Ada need to search inside the program
592 minimal symbols for the location where to put the temporary
593 breakpoint before starting. */
594 if (!have_minimal_symbols ())
595 error (_("No symbol table loaded. Use the \"file\" command."));
597 /* Run the program until reaching the main procedure... */
598 run_command_1 (args, from_tty, 1);
602 proceed_thread_callback (struct thread_info *thread, void *arg)
604 /* We go through all threads individually instead of compressing
605 into a single target `resume_all' request, because some threads
606 may be stopped in internal breakpoints/events, or stopped waiting
607 for its turn in the displaced stepping queue (that is, they are
608 running && !executing). The target side has no idea about why
609 the thread is stopped, so a `resume_all' command would resume too
610 much. If/when GDB gains a way to tell the target `hold this
611 thread stopped until I say otherwise', then we can optimize
613 if (!is_stopped (thread->ptid))
616 switch_to_thread (thread->ptid);
617 clear_proceed_status ();
618 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
623 ensure_valid_thread (void)
625 if (ptid_equal (inferior_ptid, null_ptid)
626 || is_exited (inferior_ptid))
628 Cannot execute this command without a live selected thread."));
632 continue_1 (int all_threads)
636 if (non_stop && all_threads)
638 /* Don't error out if the current thread is running, because
639 there may be other stopped threads. */
640 struct cleanup *old_chain;
642 /* Backup current thread and selected frame. */
643 old_chain = make_cleanup_restore_current_thread ();
645 iterate_over_threads (proceed_thread_callback, NULL);
647 /* Restore selected ptid. */
648 do_cleanups (old_chain);
652 ensure_valid_thread ();
653 ensure_not_running ();
654 clear_proceed_status ();
655 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
659 /* continue [-a] [proceed-count] [&] */
661 continue_command (char *args, int from_tty)
667 /* Find out whether we must run in the background. */
669 async_exec = strip_bg_char (&args);
671 /* If we must run in the background, but the target can't do it,
673 if (async_exec && !target_can_async_p ())
674 error (_("Asynchronous execution not supported on this target."));
676 /* If we are not asked to run in the bg, then prepare to run in the
677 foreground, synchronously. */
678 if (!async_exec && target_can_async_p ())
680 /* Simulate synchronous execution */
681 async_disable_stdin ();
686 if (strncmp (args, "-a", sizeof ("-a") - 1) == 0)
689 args += sizeof ("-a") - 1;
695 if (!non_stop && all_threads)
696 error (_("`-a' is meaningless in all-stop mode."));
698 if (args != NULL && all_threads)
700 Can't resume all threads and specify proceed count simultaneously."));
702 /* If we have an argument left, set proceed count of breakpoint we
709 struct thread_info *tp;
712 tp = find_thread_pid (inferior_ptid);
716 struct target_waitstatus ws;
718 get_last_target_status (&last_ptid, &ws);
719 tp = find_thread_pid (last_ptid);
722 bs = tp->stop_bpstat;
724 while ((stat = bpstat_num (&bs, &num)) != 0)
727 set_ignore_count (num,
728 parse_and_eval_long (args) - 1,
730 /* set_ignore_count prints a message ending with a period.
731 So print two spaces before "Continuing.". */
733 printf_filtered (" ");
737 if (!stopped && from_tty)
740 ("Not stopped at any breakpoint; argument ignored.\n");
745 printf_filtered (_("Continuing.\n"));
747 continue_1 (all_threads);
750 /* Step until outside of current statement. */
753 step_command (char *count_string, int from_tty)
755 step_1 (0, 0, count_string);
758 /* Likewise, but skip over subroutine calls as if single instructions. */
761 next_command (char *count_string, int from_tty)
763 step_1 (1, 0, count_string);
766 /* Likewise, but step only one instruction. */
769 stepi_command (char *count_string, int from_tty)
771 step_1 (0, 1, count_string);
775 nexti_command (char *count_string, int from_tty)
777 step_1 (1, 1, count_string);
781 delete_longjmp_breakpoint_cleanup (void *arg)
783 int thread = * (int *) arg;
784 delete_longjmp_breakpoint (thread);
788 step_1 (int skip_subroutines, int single_inst, char *count_string)
791 struct frame_info *frame;
792 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
797 ensure_valid_thread ();
798 ensure_not_running ();
801 async_exec = strip_bg_char (&count_string);
803 /* If we get a request for running in the bg but the target
804 doesn't support it, error out. */
805 if (async_exec && !target_can_async_p ())
806 error (_("Asynchronous execution not supported on this target."));
808 /* If we don't get a request of running in the bg, then we need
809 to simulate synchronous (fg) execution. */
810 if (!async_exec && target_can_async_p ())
812 /* Simulate synchronous execution */
813 async_disable_stdin ();
816 count = count_string ? parse_and_eval_long (count_string) : 1;
818 if (!single_inst || skip_subroutines) /* leave si command alone */
820 if (in_thread_list (inferior_ptid))
821 thread = pid_to_thread_id (inferior_ptid);
823 set_longjmp_breakpoint ();
825 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
828 /* In synchronous case, all is well; each step_once call will step once. */
829 if (!target_can_async_p ())
831 for (; count > 0; count--)
833 struct thread_info *tp;
834 step_once (skip_subroutines, single_inst, count, thread);
836 if (target_has_execution
837 && !ptid_equal (inferior_ptid, null_ptid))
838 tp = inferior_thread ();
842 if (!tp || !tp->stop_step || !tp->step_multi)
844 /* If we stopped for some reason that is not stepping
845 there are no further steps to make. */
852 do_cleanups (cleanups);
856 /* In the case of an asynchronous target things get complicated;
857 do only one step for now, before returning control to the
858 event loop. Let the continuation figure out how many other
859 steps we need to do, and handle them one at the time, through
861 step_once (skip_subroutines, single_inst, count, thread);
863 /* We are running, and the continuation is installed. It will
864 disable the longjmp breakpoint as appropriate. */
865 discard_cleanups (cleanups);
869 struct step_1_continuation_args
872 int skip_subroutines;
877 /* Called after we are done with one step operation, to check whether
878 we need to step again, before we print the prompt and return control
879 to the user. If count is > 1, we will need to do one more call to
880 proceed(), via step_once(). Basically it is like step_once and
881 step_1_continuation are co-recursive. */
883 step_1_continuation (void *args)
885 struct step_1_continuation_args *a = args;
887 if (target_has_execution)
889 struct thread_info *tp;
891 tp = inferior_thread ();
892 if (tp->step_multi && tp->stop_step)
894 /* There are more steps to make, and we did stop due to
895 ending a stepping range. Do another step. */
896 step_once (a->skip_subroutines, a->single_inst,
897 a->count - 1, a->thread);
903 /* We either stopped for some reason that is not stepping, or there
904 are no further steps to make. Cleanup. */
905 if (!a->single_inst || a->skip_subroutines)
906 delete_longjmp_breakpoint (a->thread);
909 /* Do just one step operation. This is useful to implement the 'step
910 n' kind of commands. In case of asynchronous targets, we will have
911 to set up a continuation to be done after the target stops (after
912 this one step). For synch targets, the caller handles further
916 step_once (int skip_subroutines, int single_inst, int count, int thread)
918 struct frame_info *frame;
922 /* Don't assume THREAD is a valid thread id. It is set to -1 if
923 the longjmp breakpoint was not required. Use the
924 INFERIOR_PTID thread instead, which is the same thread when
926 struct thread_info *tp = inferior_thread ();
927 clear_proceed_status ();
929 frame = get_current_frame ();
930 tp->step_frame_id = get_frame_id (frame);
936 pc = get_frame_pc (frame);
937 find_pc_line_pc_range (pc,
938 &tp->step_range_start, &tp->step_range_end);
940 /* If we have no line info, switch to stepi mode. */
941 if (tp->step_range_end == 0 && step_stop_if_no_debug)
943 tp->step_range_start = tp->step_range_end = 1;
945 else if (tp->step_range_end == 0)
948 if (find_pc_partial_function (pc, &name,
949 &tp->step_range_start,
950 &tp->step_range_end) == 0)
951 error (_("Cannot find bounds of current function"));
953 target_terminal_ours ();
954 printf_filtered (_("\
955 Single stepping until exit from function %s, \n\
956 which has no line number information.\n"), name);
961 /* Say we are stepping, but stop after one insn whatever it does. */
962 tp->step_range_start = tp->step_range_end = 1;
963 if (!skip_subroutines)
965 Don't step over function calls, not even to functions lacking
967 tp->step_over_calls = STEP_OVER_NONE;
970 if (skip_subroutines)
971 tp->step_over_calls = STEP_OVER_ALL;
973 tp->step_multi = (count > 1);
974 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
976 /* For async targets, register a continuation to do any
977 additional steps. For sync targets, the caller will handle
979 if (target_can_async_p ())
981 struct step_1_continuation_args *args;
983 args = xmalloc (sizeof (*args));
984 args->skip_subroutines = skip_subroutines;
985 args->single_inst = single_inst;
987 args->thread = thread;
989 add_intermediate_continuation (tp, step_1_continuation, args, xfree);
995 /* Continue program at specified address. */
998 jump_command (char *arg, int from_tty)
1001 struct symtabs_and_lines sals;
1002 struct symtab_and_line sal;
1008 ensure_valid_thread ();
1009 ensure_not_running ();
1011 /* Find out whether we must run in the background. */
1013 async_exec = strip_bg_char (&arg);
1015 /* If we must run in the background, but the target can't do it,
1017 if (async_exec && !target_can_async_p ())
1018 error (_("Asynchronous execution not supported on this target."));
1021 error_no_arg (_("starting address"));
1023 sals = decode_line_spec_1 (arg, 1);
1024 if (sals.nelts != 1)
1026 error (_("Unreasonable jump request"));
1032 if (sal.symtab == 0 && sal.pc == 0)
1033 error (_("No source file has been specified."));
1035 resolve_sal_pc (&sal); /* May error out */
1037 /* See if we are trying to jump to another function. */
1038 fn = get_frame_function (get_current_frame ());
1039 sfn = find_pc_function (sal.pc);
1040 if (fn != NULL && sfn != fn)
1042 if (!query (_("Line %d is not in `%s'. Jump anyway? "), sal.line,
1043 SYMBOL_PRINT_NAME (fn)))
1045 error (_("Not confirmed."));
1052 fixup_symbol_section (sfn, 0);
1053 if (section_is_overlay (SYMBOL_OBJ_SECTION (sfn)) &&
1054 !section_is_mapped (SYMBOL_OBJ_SECTION (sfn)))
1056 if (!query (_("WARNING!!! Destination is in unmapped overlay! Jump anyway? ")))
1058 error (_("Not confirmed."));
1068 printf_filtered (_("Continuing at "));
1069 fputs_filtered (paddress (addr), gdb_stdout);
1070 printf_filtered (".\n");
1073 /* If we are not asked to run in the bg, then prepare to run in the
1074 foreground, synchronously. */
1075 if (!async_exec && target_can_async_p ())
1077 /* Simulate synchronous execution */
1078 async_disable_stdin ();
1081 clear_proceed_status ();
1082 proceed (addr, TARGET_SIGNAL_0, 0);
1086 /* Go to line or address in current procedure */
1088 go_command (char *line_no, int from_tty)
1090 if (line_no == (char *) NULL || !*line_no)
1091 printf_filtered (_("Usage: go <location>\n"));
1094 tbreak_command (line_no, from_tty);
1095 jump_command (line_no, from_tty);
1100 /* Continue program giving it specified signal. */
1103 signal_command (char *signum_exp, int from_tty)
1105 enum target_signal oursig;
1108 dont_repeat (); /* Too dangerous. */
1110 ensure_valid_thread ();
1111 ensure_not_running ();
1113 /* Find out whether we must run in the background. */
1114 if (signum_exp != NULL)
1115 async_exec = strip_bg_char (&signum_exp);
1117 /* If we must run in the background, but the target can't do it,
1119 if (async_exec && !target_can_async_p ())
1120 error (_("Asynchronous execution not supported on this target."));
1122 /* If we are not asked to run in the bg, then prepare to run in the
1123 foreground, synchronously. */
1124 if (!async_exec && target_can_async_p ())
1126 /* Simulate synchronous execution. */
1127 async_disable_stdin ();
1131 error_no_arg (_("signal number"));
1133 /* It would be even slicker to make signal names be valid expressions,
1134 (the type could be "enum $signal" or some such), then the user could
1135 assign them to convenience variables. */
1136 oursig = target_signal_from_name (signum_exp);
1138 if (oursig == TARGET_SIGNAL_UNKNOWN)
1140 /* No, try numeric. */
1141 int num = parse_and_eval_long (signum_exp);
1144 oursig = TARGET_SIGNAL_0;
1146 oursig = target_signal_from_command (num);
1151 if (oursig == TARGET_SIGNAL_0)
1152 printf_filtered (_("Continuing with no signal.\n"));
1154 printf_filtered (_("Continuing with signal %s.\n"),
1155 target_signal_to_name (oursig));
1158 clear_proceed_status ();
1159 proceed ((CORE_ADDR) -1, oursig, 0);
1162 /* Proceed until we reach a different source line with pc greater than
1163 our current one or exit the function. We skip calls in both cases.
1165 Note that eventually this command should probably be changed so
1166 that only source lines are printed out when we hit the breakpoint
1167 we set. This may involve changes to wait_for_inferior and the
1168 proceed status code. */
1171 until_next_command (int from_tty)
1173 struct frame_info *frame;
1175 struct symbol *func;
1176 struct symtab_and_line sal;
1177 struct thread_info *tp = inferior_thread ();
1179 clear_proceed_status ();
1181 frame = get_current_frame ();
1183 /* Step until either exited from this function or greater
1184 than the current line (if in symbolic section) or pc (if
1187 pc = get_frame_pc (frame);
1188 func = find_pc_function (pc);
1192 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc);
1194 if (msymbol == NULL)
1195 error (_("Execution is not within a known function."));
1197 tp->step_range_start = SYMBOL_VALUE_ADDRESS (msymbol);
1198 tp->step_range_end = pc;
1202 sal = find_pc_line (pc, 0);
1204 tp->step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
1205 tp->step_range_end = sal.end;
1208 tp->step_over_calls = STEP_OVER_ALL;
1209 tp->step_frame_id = get_frame_id (frame);
1211 tp->step_multi = 0; /* Only one call to proceed */
1213 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1217 until_command (char *arg, int from_tty)
1221 if (!target_has_execution)
1222 error (_("The program is not running."));
1224 /* Find out whether we must run in the background. */
1226 async_exec = strip_bg_char (&arg);
1228 /* If we must run in the background, but the target can't do it,
1230 if (async_exec && !target_can_async_p ())
1231 error (_("Asynchronous execution not supported on this target."));
1233 /* If we are not asked to run in the bg, then prepare to run in the
1234 foreground, synchronously. */
1235 if (!async_exec && target_can_async_p ())
1237 /* Simulate synchronous execution */
1238 async_disable_stdin ();
1242 until_break_command (arg, from_tty, 0);
1244 until_next_command (from_tty);
1248 advance_command (char *arg, int from_tty)
1252 if (!target_has_execution)
1253 error (_("The program is not running."));
1256 error_no_arg (_("a location"));
1258 /* Find out whether we must run in the background. */
1260 async_exec = strip_bg_char (&arg);
1262 /* If we must run in the background, but the target can't do it,
1264 if (async_exec && !target_can_async_p ())
1265 error (_("Asynchronous execution not supported on this target."));
1267 /* If we are not asked to run in the bg, then prepare to run in the
1268 foreground, synchronously. */
1269 if (!async_exec && target_can_async_p ())
1271 /* Simulate synchronous execution. */
1272 async_disable_stdin ();
1275 until_break_command (arg, from_tty, 1);
1278 /* Print the result of a function at the end of a 'finish' command. */
1281 print_return_value (struct type *func_type, struct type *value_type)
1283 struct gdbarch *gdbarch = current_gdbarch;
1284 struct cleanup *old_chain;
1285 struct ui_stream *stb;
1286 struct value *value;
1288 CHECK_TYPEDEF (value_type);
1289 gdb_assert (TYPE_CODE (value_type) != TYPE_CODE_VOID);
1291 /* FIXME: 2003-09-27: When returning from a nested inferior function
1292 call, it's possible (with no help from the architecture vector)
1293 to locate and return/print a "struct return" value. This is just
1294 a more complicated case of what is already being done in in the
1295 inferior function call code. In fact, when inferior function
1296 calls are made async, this will likely be made the norm. */
1298 switch (gdbarch_return_value (gdbarch, func_type, value_type,
1301 case RETURN_VALUE_REGISTER_CONVENTION:
1302 case RETURN_VALUE_ABI_RETURNS_ADDRESS:
1303 case RETURN_VALUE_ABI_PRESERVES_ADDRESS:
1304 value = allocate_value (value_type);
1305 gdbarch_return_value (gdbarch, func_type, value_type, stop_registers,
1306 value_contents_raw (value), NULL);
1308 case RETURN_VALUE_STRUCT_CONVENTION:
1312 internal_error (__FILE__, __LINE__, _("bad switch"));
1317 struct value_print_options opts;
1320 stb = ui_out_stream_new (uiout);
1321 old_chain = make_cleanup_ui_out_stream_delete (stb);
1322 ui_out_text (uiout, "Value returned is ");
1323 ui_out_field_fmt (uiout, "gdb-result-var", "$%d",
1324 record_latest_value (value));
1325 ui_out_text (uiout, " = ");
1326 get_raw_print_options (&opts);
1327 value_print (value, stb->stream, &opts);
1328 ui_out_field_stream (uiout, "return-value", stb);
1329 ui_out_text (uiout, "\n");
1330 do_cleanups (old_chain);
1334 ui_out_text (uiout, "Value returned has type: ");
1335 ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type));
1336 ui_out_text (uiout, ".");
1337 ui_out_text (uiout, " Cannot determine contents\n");
1341 /* Stuff that needs to be done by the finish command after the target
1342 has stopped. In asynchronous mode, we wait for the target to stop
1343 in the call to poll or select in the event loop, so it is
1344 impossible to do all the stuff as part of the finish_command
1345 function itself. The only chance we have to complete this command
1346 is in fetch_inferior_event, which is called by the event loop as
1347 soon as it detects that the target has stopped. This function is
1348 called via the cmd_continuation pointer. */
1350 struct finish_command_continuation_args
1352 struct breakpoint *breakpoint;
1353 struct symbol *function;
1357 finish_command_continuation (void *arg)
1359 struct finish_command_continuation_args *a = arg;
1360 struct thread_info *tp = NULL;
1363 if (!ptid_equal (inferior_ptid, null_ptid)
1364 && target_has_execution
1365 && is_stopped (inferior_ptid))
1367 tp = inferior_thread ();
1368 bs = tp->stop_bpstat;
1371 if (bpstat_find_breakpoint (bs, a->breakpoint) != NULL
1372 && a->function != NULL)
1374 struct type *value_type;
1376 value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (a->function));
1378 internal_error (__FILE__, __LINE__,
1379 _("finish_command: function has no target type"));
1381 if (TYPE_CODE (value_type) != TYPE_CODE_VOID)
1382 print_return_value (SYMBOL_TYPE (a->function), value_type);
1385 /* We suppress normal call of normal_stop observer and do it here so
1386 that the *stopped notification includes the return value. */
1387 if (bs != NULL && tp->proceed_to_finish)
1388 observer_notify_normal_stop (bs, 1 /* print frame */);
1389 delete_breakpoint (a->breakpoint);
1393 finish_command_continuation_free_arg (void *arg)
1398 /* finish_backward -- helper function for finish_command. */
1401 finish_backward (struct symbol *function)
1403 struct symtab_and_line sal;
1404 struct thread_info *tp = inferior_thread ();
1405 struct breakpoint *breakpoint;
1406 struct cleanup *old_chain;
1408 CORE_ADDR func_addr;
1411 pc = get_frame_pc (get_current_frame ());
1413 if (find_pc_partial_function (pc, NULL, &func_addr, NULL) == 0)
1414 internal_error (__FILE__, __LINE__,
1415 _("Finish: couldn't find function."));
1417 sal = find_pc_line (func_addr, 0);
1419 /* We don't need a return value. */
1420 tp->proceed_to_finish = 0;
1421 /* Special case: if we're sitting at the function entry point,
1422 then all we need to do is take a reverse singlestep. We
1423 don't need to set a breakpoint, and indeed it would do us
1426 Note that this can only happen at frame #0, since there's
1427 no way that a function up the stack can have a return address
1428 that's equal to its entry point. */
1432 /* Set breakpoint and continue. */
1434 set_momentary_breakpoint (sal,
1435 get_frame_id (get_selected_frame (NULL)),
1437 /* Tell the breakpoint to keep quiet. We won't be done
1438 until we've done another reverse single-step. */
1439 make_breakpoint_silent (breakpoint);
1440 old_chain = make_cleanup_delete_breakpoint (breakpoint);
1441 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
1442 /* We will be stopped when proceed returns. */
1443 back_up = bpstat_find_breakpoint (tp->stop_bpstat, breakpoint) != NULL;
1444 do_cleanups (old_chain);
1450 /* If in fact we hit the step-resume breakpoint (and not
1451 some other breakpoint), then we're almost there --
1452 we just need to back up by one more single-step. */
1453 tp->step_range_start = tp->step_range_end = 1;
1454 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
1459 /* finish_forward -- helper function for finish_command. */
1462 finish_forward (struct symbol *function, struct frame_info *frame)
1464 struct symtab_and_line sal;
1465 struct thread_info *tp = inferior_thread ();
1466 struct breakpoint *breakpoint;
1467 struct cleanup *old_chain;
1468 struct finish_command_continuation_args *cargs;
1470 sal = find_pc_line (get_frame_pc (frame), 0);
1471 sal.pc = get_frame_pc (frame);
1473 breakpoint = set_momentary_breakpoint (sal, get_frame_id (frame),
1476 old_chain = make_cleanup_delete_breakpoint (breakpoint);
1478 tp->proceed_to_finish = 1; /* We want stop_registers, please... */
1479 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
1481 cargs = xmalloc (sizeof (*cargs));
1483 cargs->breakpoint = breakpoint;
1484 cargs->function = function;
1485 add_continuation (tp, finish_command_continuation, cargs,
1486 finish_command_continuation_free_arg);
1488 discard_cleanups (old_chain);
1489 if (!target_can_async_p ())
1490 do_all_continuations ();
1493 /* "finish": Set a temporary breakpoint at the place the selected
1494 frame will return to, then continue. */
1497 finish_command (char *arg, int from_tty)
1499 struct frame_info *frame;
1500 struct symbol *function;
1504 /* Find out whether we must run in the background. */
1506 async_exec = strip_bg_char (&arg);
1508 /* If we must run in the background, but the target can't do it,
1510 if (async_exec && !target_can_async_p ())
1511 error (_("Asynchronous execution not supported on this target."));
1513 /* Don't try to async in reverse. */
1514 if (async_exec && execution_direction == EXEC_REVERSE)
1515 error (_("Asynchronous 'finish' not supported in reverse."));
1517 /* If we are not asked to run in the bg, then prepare to run in the
1518 foreground, synchronously. */
1519 if (!async_exec && target_can_async_p ())
1521 /* Simulate synchronous execution. */
1522 async_disable_stdin ();
1526 error (_("The \"finish\" command does not take any arguments."));
1527 if (!target_has_execution)
1528 error (_("The program is not running."));
1530 frame = get_prev_frame (get_selected_frame (_("No selected frame.")));
1532 error (_("\"finish\" not meaningful in the outermost frame."));
1534 clear_proceed_status ();
1536 /* Find the function we will return from. */
1538 function = find_pc_function (get_frame_pc (get_selected_frame (NULL)));
1540 /* Print info on the selected frame, including level number but not
1544 if (execution_direction == EXEC_REVERSE)
1545 printf_filtered (_("Run back to call of "));
1547 printf_filtered (_("Run till exit from "));
1549 print_stack_frame (get_selected_frame (NULL), 1, LOCATION);
1552 if (execution_direction == EXEC_REVERSE)
1553 finish_backward (function);
1555 finish_forward (function, frame);
1560 program_info (char *args, int from_tty)
1564 struct thread_info *tp;
1567 if (!target_has_execution)
1569 printf_filtered (_("The program being debugged is not being run.\n"));
1574 ptid = inferior_ptid;
1577 struct target_waitstatus ws;
1578 get_last_target_status (&ptid, &ws);
1581 if (ptid_equal (ptid, null_ptid) || is_exited (ptid))
1582 error (_("Invalid selected thread."));
1583 else if (is_running (ptid))
1584 error (_("Selected thread is running."));
1586 tp = find_thread_pid (ptid);
1587 bs = tp->stop_bpstat;
1588 stat = bpstat_num (&bs, &num);
1590 target_files_info ();
1591 printf_filtered (_("Program stopped at %s.\n"), paddress (stop_pc));
1593 printf_filtered (_("It stopped after being stepped.\n"));
1596 /* There may be several breakpoints in the same place, so this
1597 isn't as strange as it seems. */
1602 printf_filtered (_("\
1603 It stopped at a breakpoint that has since been deleted.\n"));
1606 printf_filtered (_("It stopped at breakpoint %d.\n"), num);
1607 stat = bpstat_num (&bs, &num);
1610 else if (tp->stop_signal != TARGET_SIGNAL_0)
1612 printf_filtered (_("It stopped with signal %s, %s.\n"),
1613 target_signal_to_name (tp->stop_signal),
1614 target_signal_to_string (tp->stop_signal));
1619 printf_filtered (_("\
1620 Type \"info stack\" or \"info registers\" for more information.\n"));
1625 environment_info (char *var, int from_tty)
1629 char *val = get_in_environ (inferior_environ, var);
1632 puts_filtered (var);
1633 puts_filtered (" = ");
1634 puts_filtered (val);
1635 puts_filtered ("\n");
1639 puts_filtered ("Environment variable \"");
1640 puts_filtered (var);
1641 puts_filtered ("\" not defined.\n");
1646 char **vector = environ_vector (inferior_environ);
1649 puts_filtered (*vector++);
1650 puts_filtered ("\n");
1656 set_environment_command (char *arg, int from_tty)
1658 char *p, *val, *var;
1662 error_no_arg (_("environment variable and value"));
1664 /* Find seperation between variable name and value */
1665 p = (char *) strchr (arg, '=');
1666 val = (char *) strchr (arg, ' ');
1668 if (p != 0 && val != 0)
1670 /* We have both a space and an equals. If the space is before the
1671 equals, walk forward over the spaces til we see a nonspace
1672 (possibly the equals). */
1677 /* Now if the = is after the char following the spaces,
1678 take the char following the spaces. */
1682 else if (val != 0 && p == 0)
1686 error_no_arg (_("environment variable to set"));
1688 if (p == 0 || p[1] == 0)
1692 p = arg + strlen (arg); /* So that savestring below will work */
1696 /* Not setting variable value to null */
1698 while (*val == ' ' || *val == '\t')
1702 while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
1705 var = savestring (arg, p - arg);
1708 printf_filtered (_("\
1709 Setting environment variable \"%s\" to null value.\n"),
1711 set_in_environ (inferior_environ, var, "");
1714 set_in_environ (inferior_environ, var, val);
1719 unset_environment_command (char *var, int from_tty)
1723 /* If there is no argument, delete all environment variables.
1724 Ask for confirmation if reading from the terminal. */
1725 if (!from_tty || query (_("Delete all environment variables? ")))
1727 free_environ (inferior_environ);
1728 inferior_environ = make_environ ();
1732 unset_in_environ (inferior_environ, var);
1735 /* Handle the execution path (PATH variable) */
1737 static const char path_var_name[] = "PATH";
1740 path_info (char *args, int from_tty)
1742 puts_filtered ("Executable and object file path: ");
1743 puts_filtered (get_in_environ (inferior_environ, path_var_name));
1744 puts_filtered ("\n");
1747 /* Add zero or more directories to the front of the execution path. */
1750 path_command (char *dirname, int from_tty)
1755 env = get_in_environ (inferior_environ, path_var_name);
1756 /* Can be null if path is not set */
1759 exec_path = xstrdup (env);
1760 mod_path (dirname, &exec_path);
1761 set_in_environ (inferior_environ, path_var_name, exec_path);
1764 path_info ((char *) NULL, from_tty);
1768 /* Print out the machine register regnum. If regnum is -1, print all
1769 registers (print_all == 1) or all non-float and non-vector
1770 registers (print_all == 0).
1772 For most machines, having all_registers_info() print the
1773 register(s) one per line is good enough. If a different format is
1774 required, (eg, for MIPS or Pyramid 90x, which both have lots of
1775 regs), or there is an existing convention for showing all the
1776 registers, define the architecture method PRINT_REGISTERS_INFO to
1777 provide that format. */
1780 default_print_registers_info (struct gdbarch *gdbarch,
1781 struct ui_file *file,
1782 struct frame_info *frame,
1783 int regnum, int print_all)
1786 const int numregs = gdbarch_num_regs (gdbarch)
1787 + gdbarch_num_pseudo_regs (gdbarch);
1788 gdb_byte buffer[MAX_REGISTER_SIZE];
1790 for (i = 0; i < numregs; i++)
1792 /* Decide between printing all regs, non-float / vector regs, or
1798 if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
1803 if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
1813 /* If the register name is empty, it is undefined for this
1814 processor, so don't display anything. */
1815 if (gdbarch_register_name (gdbarch, i) == NULL
1816 || *(gdbarch_register_name (gdbarch, i)) == '\0')
1819 fputs_filtered (gdbarch_register_name (gdbarch, i), file);
1820 print_spaces_filtered (15 - strlen (gdbarch_register_name
1821 (gdbarch, i)), file);
1823 /* Get the data in raw format. */
1824 if (! frame_register_read (frame, i, buffer))
1826 fprintf_filtered (file, "*value not available*\n");
1830 /* If virtual format is floating, print it that way, and in raw
1832 if (TYPE_CODE (register_type (gdbarch, i)) == TYPE_CODE_FLT
1833 || TYPE_CODE (register_type (gdbarch, i)) == TYPE_CODE_DECFLOAT)
1836 struct value_print_options opts;
1838 get_user_print_options (&opts);
1840 val_print (register_type (gdbarch, i), buffer, 0, 0,
1841 file, 0, &opts, current_language);
1843 fprintf_filtered (file, "\t(raw 0x");
1844 for (j = 0; j < register_size (gdbarch, i); j++)
1847 if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
1850 idx = register_size (gdbarch, i) - 1 - j;
1851 fprintf_filtered (file, "%02x", (unsigned char) buffer[idx]);
1853 fprintf_filtered (file, ")");
1857 struct value_print_options opts;
1859 /* Print the register in hex. */
1860 get_formatted_print_options (&opts, 'x');
1862 val_print (register_type (gdbarch, i), buffer, 0, 0,
1865 /* If not a vector register, print it also according to its
1867 if (TYPE_VECTOR (register_type (gdbarch, i)) == 0)
1869 get_user_print_options (&opts);
1871 fprintf_filtered (file, "\t");
1872 val_print (register_type (gdbarch, i), buffer, 0, 0,
1873 file, 0, &opts, current_language);
1877 fprintf_filtered (file, "\n");
1882 registers_info (char *addr_exp, int fpregs)
1884 struct frame_info *frame;
1885 struct gdbarch *gdbarch;
1886 int regnum, numregs;
1889 if (!target_has_registers)
1890 error (_("The program has no registers now."));
1891 frame = get_selected_frame (NULL);
1892 gdbarch = get_frame_arch (frame);
1896 gdbarch_print_registers_info (gdbarch, gdb_stdout,
1901 while (*addr_exp != '\0')
1906 /* Keep skipping leading white space. */
1907 if (isspace ((*addr_exp)))
1913 /* Discard any leading ``$''. Check that there is something
1914 resembling a register following it. */
1915 if (addr_exp[0] == '$')
1917 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
1918 error (_("Missing register name"));
1920 /* Find the start/end of this register name/num/group. */
1922 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
1926 /* Figure out what we've found and display it. */
1928 /* A register name? */
1930 int regnum = user_reg_map_name_to_regnum (gdbarch, start, end - start);
1933 /* User registers lie completely outside of the range of
1934 normal registers. Catch them early so that the target
1936 if (regnum >= gdbarch_num_regs (gdbarch)
1937 + gdbarch_num_pseudo_regs (gdbarch))
1939 struct value_print_options opts;
1940 struct value *val = value_of_user_reg (regnum, frame);
1942 printf_filtered ("%s: ", start);
1943 get_formatted_print_options (&opts, 'x');
1944 print_scalar_formatted (value_contents (val),
1945 check_typedef (value_type (val)),
1946 &opts, 0, gdb_stdout);
1947 printf_filtered ("\n");
1950 gdbarch_print_registers_info (gdbarch, gdb_stdout,
1951 frame, regnum, fpregs);
1956 /* A register group? */
1958 struct reggroup *group;
1959 for (group = reggroup_next (gdbarch, NULL);
1961 group = reggroup_next (gdbarch, group))
1963 /* Don't bother with a length check. Should the user
1964 enter a short register group name, go with the first
1965 group that matches. */
1966 if (strncmp (start, reggroup_name (group), end - start) == 0)
1973 regnum < gdbarch_num_regs (gdbarch)
1974 + gdbarch_num_pseudo_regs (gdbarch);
1977 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
1978 gdbarch_print_registers_info (gdbarch,
1986 /* Nothing matched. */
1987 error (_("Invalid register `%.*s'"), (int) (end - start), start);
1992 all_registers_info (char *addr_exp, int from_tty)
1994 registers_info (addr_exp, 1);
1998 nofp_registers_info (char *addr_exp, int from_tty)
2000 registers_info (addr_exp, 0);
2004 print_vector_info (struct gdbarch *gdbarch, struct ui_file *file,
2005 struct frame_info *frame, const char *args)
2007 if (gdbarch_print_vector_info_p (gdbarch))
2008 gdbarch_print_vector_info (gdbarch, file, frame, args);
2012 int printed_something = 0;
2015 regnum < gdbarch_num_regs (gdbarch)
2016 + gdbarch_num_pseudo_regs (gdbarch);
2019 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
2021 printed_something = 1;
2022 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2025 if (!printed_something)
2026 fprintf_filtered (file, "No vector information\n");
2031 vector_info (char *args, int from_tty)
2033 if (!target_has_registers)
2034 error (_("The program has no registers now."));
2036 print_vector_info (current_gdbarch, gdb_stdout,
2037 get_selected_frame (NULL), args);
2041 /* Used in `attach&' command. ARG is a point to an integer
2042 representing a process id. Proceed threads of this process iff
2043 they stopped due to debugger request, and when they did, they
2044 reported a clean stop (TARGET_SIGNAL_0). Do not proceed threads
2045 that have been explicitly been told to stop. */
2048 proceed_after_attach_callback (struct thread_info *thread,
2051 int pid = * (int *) arg;
2053 if (ptid_get_pid (thread->ptid) == pid
2054 && !is_exited (thread->ptid)
2055 && !is_executing (thread->ptid)
2056 && !thread->stop_requested
2057 && thread->stop_signal == TARGET_SIGNAL_0)
2059 switch_to_thread (thread->ptid);
2060 clear_proceed_status ();
2061 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
2068 proceed_after_attach (int pid)
2070 /* Don't error out if the current thread is running, because
2071 there may be other stopped threads. */
2072 struct cleanup *old_chain;
2074 /* Backup current thread and selected frame. */
2075 old_chain = make_cleanup_restore_current_thread ();
2077 iterate_over_threads (proceed_after_attach_callback, &pid);
2079 /* Restore selected ptid. */
2080 do_cleanups (old_chain);
2085 * Should save/restore the tty state since it might be that the
2086 * program to be debugged was started on this tty and it wants
2087 * the tty in some state other than what we want. If it's running
2088 * on another terminal or without a terminal, then saving and
2089 * restoring the tty state is a harmless no-op.
2090 * This only needs to be done if we are attaching to a process.
2095 takes a program started up outside of gdb and ``attaches'' to it.
2096 This stops it cold in its tracks and allows us to start debugging it.
2097 and wait for the trace-trap that results from attaching. */
2100 attach_command_post_wait (char *args, int from_tty, int async_exec)
2103 char *full_exec_path = NULL;
2104 struct inferior *inferior;
2106 inferior = current_inferior ();
2107 inferior->stop_soon = NO_STOP_QUIETLY;
2109 /* If no exec file is yet known, try to determine it from the
2111 exec_file = (char *) get_exec_file (0);
2114 exec_file = target_pid_to_exec_file (PIDGET (inferior_ptid));
2117 /* It's possible we don't have a full path, but rather just a
2118 filename. Some targets, such as HP-UX, don't provide the
2121 Attempt to qualify the filename against the source path.
2122 (If that fails, we'll just fall back on the original
2123 filename. Not much more we can do...)
2125 if (!source_full_path_of (exec_file, &full_exec_path))
2126 full_exec_path = savestring (exec_file, strlen (exec_file));
2128 exec_file_attach (full_exec_path, from_tty);
2129 symbol_file_add_main (full_exec_path, from_tty);
2134 reopen_exec_file ();
2138 /* Take any necessary post-attaching actions for this platform. */
2139 target_post_attach (PIDGET (inferior_ptid));
2141 post_create_inferior (¤t_target, from_tty);
2143 /* Install inferior's terminal modes. */
2144 target_terminal_inferior ();
2148 /* The user requested an `attach&', so be sure to leave threads
2149 that didn't get a signal running. */
2151 /* Immediatelly resume all suspended threads of this inferior,
2152 and this inferior only. This should have no effect on
2153 already running threads. If a thread has been stopped with a
2154 signal, leave it be. */
2156 proceed_after_attach (inferior->pid);
2159 if (inferior_thread ()->stop_signal == TARGET_SIGNAL_0)
2161 clear_proceed_status ();
2162 proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
2168 /* The user requested a plain `attach', so be sure to leave
2169 the inferior stopped. */
2171 if (target_can_async_p ())
2172 async_enable_stdin ();
2174 /* At least the current thread is already stopped. */
2176 /* In all-stop, by definition, all threads have to be already
2177 stopped at this point. In non-stop, however, although the
2178 selected thread is stopped, others may still be executing.
2179 Be sure to explicitly stop all threads of the process. This
2180 should have no effect on already stopped threads. */
2182 target_stop (pid_to_ptid (inferior->pid));
2184 /* Tell the user/frontend where we're stopped. */
2186 if (deprecated_attach_hook)
2187 deprecated_attach_hook ();
2191 struct attach_command_continuation_args
2199 attach_command_continuation (void *args)
2201 struct attach_command_continuation_args *a = args;
2202 attach_command_post_wait (a->args, a->from_tty, a->async_exec);
2206 attach_command_continuation_free_args (void *args)
2208 struct attach_command_continuation_args *a = args;
2214 attach_command (char *args, int from_tty)
2217 char *full_exec_path = NULL;
2219 struct cleanup *back_to = make_cleanup (null_cleanup, NULL);
2221 dont_repeat (); /* Not for the faint of heart */
2223 if (target_supports_multi_process ())
2224 /* Don't complain if we can be attached to multiple processes. */
2226 else if (target_has_execution)
2228 if (query (_("A program is being debugged already. Kill it? ")))
2231 error (_("Not killed."));
2234 /* Clean up any leftovers from other runs. Some other things from
2235 this function should probably be moved into target_pre_inferior. */
2236 target_pre_inferior (from_tty);
2238 if (non_stop && !target_supports_non_stop ())
2239 error (_("Cannot attach to this target in non-stop mode"));
2243 async_exec = strip_bg_char (&args);
2245 /* If we get a request for running in the bg but the target
2246 doesn't support it, error out. */
2247 if (async_exec && !target_can_async_p ())
2248 error (_("Asynchronous execution not supported on this target."));
2251 /* If we don't get a request of running in the bg, then we need
2252 to simulate synchronous (fg) execution. */
2253 if (!async_exec && target_can_async_p ())
2255 /* Simulate synchronous execution */
2256 async_disable_stdin ();
2257 make_cleanup ((make_cleanup_ftype *)async_enable_stdin, NULL);
2260 target_attach (args, from_tty);
2262 /* Set up the "saved terminal modes" of the inferior
2263 based on what modes we are starting it with. */
2264 target_terminal_init ();
2266 /* Set up execution context to know that we should return from
2267 wait_for_inferior as soon as the target reports a stop. */
2268 init_wait_for_inferior ();
2269 clear_proceed_status ();
2273 /* If we find that the current thread isn't stopped, explicitly
2274 do so now, because we're going to install breakpoints and
2278 /* The user requested an `attach&'; stop just one thread. */
2279 target_stop (inferior_ptid);
2281 /* The user requested an `attach', so stop all threads of this
2283 target_stop (pid_to_ptid (ptid_get_pid (inferior_ptid)));
2286 /* Some system don't generate traps when attaching to inferior.
2287 E.g. Mach 3 or GNU hurd. */
2288 if (!target_attach_no_wait)
2290 struct inferior *inferior = current_inferior ();
2292 /* Careful here. See comments in inferior.h. Basically some
2293 OSes don't ignore SIGSTOPs on continue requests anymore. We
2294 need a way for handle_inferior_event to reset the stop_signal
2295 variable after an attach, and this is what
2296 STOP_QUIETLY_NO_SIGSTOP is for. */
2297 inferior->stop_soon = STOP_QUIETLY_NO_SIGSTOP;
2299 if (target_can_async_p ())
2301 /* sync_execution mode. Wait for stop. */
2302 struct attach_command_continuation_args *a;
2304 a = xmalloc (sizeof (*a));
2305 a->args = xstrdup (args);
2306 a->from_tty = from_tty;
2307 a->async_exec = async_exec;
2308 add_inferior_continuation (attach_command_continuation, a,
2309 attach_command_continuation_free_args);
2310 discard_cleanups (back_to);
2314 wait_for_inferior (0);
2317 attach_command_post_wait (args, from_tty, async_exec);
2318 discard_cleanups (back_to);
2321 /* We had just found out that the target was already attached to an
2322 inferior. PTID points at a thread of this new inferior, that is
2323 the most likely to be stopped right now, but not necessarily so.
2324 The new inferior is assumed to be already added to the inferior
2325 list at this point. If LEAVE_RUNNING, then leave the threads of
2326 this inferior running, except those we've explicitly seen reported
2330 notice_new_inferior (ptid_t ptid, int leave_running, int from_tty)
2332 struct cleanup* old_chain;
2335 old_chain = make_cleanup (null_cleanup, NULL);
2337 /* If in non-stop, leave threads as running as they were. If
2338 they're stopped for some reason other than us telling it to, the
2339 target reports a signal != TARGET_SIGNAL_0. We don't try to
2340 resume threads with such a stop signal. */
2341 async_exec = non_stop;
2343 if (!ptid_equal (inferior_ptid, null_ptid))
2344 make_cleanup_restore_current_thread ();
2346 switch_to_thread (ptid);
2348 /* When we "notice" a new inferior we need to do all the things we
2349 would normally do if we had just attached to it. */
2351 if (is_executing (inferior_ptid))
2353 struct inferior *inferior = current_inferior ();
2355 /* We're going to install breakpoints, and poke at memory,
2356 ensure that the inferior is stopped for a moment while we do
2358 target_stop (inferior_ptid);
2360 inferior->stop_soon = STOP_QUIETLY_REMOTE;
2362 /* Wait for stop before proceeding. */
2363 if (target_can_async_p ())
2365 struct attach_command_continuation_args *a;
2367 a = xmalloc (sizeof (*a));
2368 a->args = xstrdup ("");
2369 a->from_tty = from_tty;
2370 a->async_exec = async_exec;
2371 add_inferior_continuation (attach_command_continuation, a,
2372 attach_command_continuation_free_args);
2374 do_cleanups (old_chain);
2378 wait_for_inferior (0);
2381 async_exec = leave_running;
2382 attach_command_post_wait ("" /* args */, from_tty, async_exec);
2384 do_cleanups (old_chain);
2389 * takes a program previously attached to and detaches it.
2390 * The program resumes execution and will no longer stop
2391 * on signals, etc. We better not have left any breakpoints
2392 * in the program or it'll die when it hits one. For this
2393 * to work, it may be necessary for the process to have been
2394 * previously attached. It *might* work if the program was
2395 * started via the normal ptrace (PTRACE_TRACEME).
2399 detach_command (char *args, int from_tty)
2401 dont_repeat (); /* Not for the faint of heart. */
2403 if (ptid_equal (inferior_ptid, null_ptid))
2404 error (_("The program is not being run."));
2406 target_detach (args, from_tty);
2408 /* If the solist is global across inferiors, don't clear it when we
2409 detach from a single inferior. */
2410 if (!gdbarch_has_global_solist (target_gdbarch))
2411 no_shared_libraries (NULL, from_tty);
2413 /* If the current target interface claims there's still execution,
2414 then don't mess with threads of other processes. */
2415 if (!target_has_execution)
2416 init_thread_list ();
2418 if (deprecated_detach_hook)
2419 deprecated_detach_hook ();
2422 /* Disconnect from the current target without resuming it (leaving it
2423 waiting for a debugger).
2425 We'd better not have left any breakpoints in the program or the
2426 next debugger will get confused. Currently only supported for some
2427 remote targets, since the normal attach mechanisms don't work on
2428 stopped processes on some native platforms (e.g. GNU/Linux). */
2431 disconnect_command (char *args, int from_tty)
2433 dont_repeat (); /* Not for the faint of heart */
2434 target_disconnect (args, from_tty);
2435 no_shared_libraries (NULL, from_tty);
2436 init_thread_list ();
2437 if (deprecated_detach_hook)
2438 deprecated_detach_hook ();
2442 interrupt_target_1 (int all_threads)
2446 ptid = minus_one_ptid;
2448 ptid = inferior_ptid;
2451 /* Tag the thread as having been explicitly requested to stop, so
2452 other parts of gdb know not to resume this thread automatically,
2453 if it was stopped due to an internal event. Limit this to
2454 non-stop mode, as when debugging a multi-threaded application in
2455 all-stop mode, we will only get one stop event --- it's undefined
2456 which thread will report the event. */
2458 set_stop_requested (ptid, 1);
2461 /* Stop the execution of the target while running in async mode, in
2462 the backgound. In all-stop, stop the whole process. In non-stop
2463 mode, stop the current thread only by default, or stop all threads
2464 if the `-a' switch is used. */
2466 /* interrupt [-a] */
2468 interrupt_target_command (char *args, int from_tty)
2470 if (target_can_async_p ())
2472 int all_threads = 0;
2474 dont_repeat (); /* Not for the faint of heart */
2477 && strncmp (args, "-a", sizeof ("-a") - 1) == 0)
2480 if (!non_stop && all_threads)
2481 error (_("-a is meaningless in all-stop mode."));
2483 interrupt_target_1 (all_threads);
2488 print_float_info (struct gdbarch *gdbarch, struct ui_file *file,
2489 struct frame_info *frame, const char *args)
2491 if (gdbarch_print_float_info_p (gdbarch))
2492 gdbarch_print_float_info (gdbarch, file, frame, args);
2496 int printed_something = 0;
2499 regnum < gdbarch_num_regs (gdbarch)
2500 + gdbarch_num_pseudo_regs (gdbarch);
2503 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
2505 printed_something = 1;
2506 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2509 if (!printed_something)
2510 fprintf_filtered (file, "\
2511 No floating-point info available for this processor.\n");
2516 float_info (char *args, int from_tty)
2518 if (!target_has_registers)
2519 error (_("The program has no registers now."));
2521 print_float_info (current_gdbarch, gdb_stdout,
2522 get_selected_frame (NULL), args);
2526 unset_command (char *args, int from_tty)
2528 printf_filtered (_("\
2529 \"unset\" must be followed by the name of an unset subcommand.\n"));
2530 help_list (unsetlist, "unset ", -1, gdb_stdout);
2534 _initialize_infcmd (void)
2536 struct cmd_list_element *c = NULL;
2538 /* add the filename of the terminal connected to inferior I/O */
2539 add_setshow_filename_cmd ("inferior-tty", class_run,
2540 &inferior_io_terminal, _("\
2541 Set terminal for future runs of program being debugged."), _("\
2542 Show terminal for future runs of program being debugged."), _("\
2543 Usage: set inferior-tty /dev/pts/1"), NULL, NULL, &setlist, &showlist);
2544 add_com_alias ("tty", "set inferior-tty", class_alias, 0);
2546 add_setshow_optional_filename_cmd ("args", class_run,
2547 &inferior_args, _("\
2548 Set argument list to give program being debugged when it is started."), _("\
2549 Show argument list to give program being debugged when it is started."), _("\
2550 Follow this command with any number of args, to be passed to the program."),
2553 &setlist, &showlist);
2555 c = add_cmd ("environment", no_class, environment_info, _("\
2556 The environment to give the program, or one variable's value.\n\
2557 With an argument VAR, prints the value of environment variable VAR to\n\
2558 give the program being debugged. With no arguments, prints the entire\n\
2559 environment to be given to the program."), &showlist);
2560 set_cmd_completer (c, noop_completer);
2562 add_prefix_cmd ("unset", no_class, unset_command,
2563 _("Complement to certain \"set\" commands."),
2564 &unsetlist, "unset ", 0, &cmdlist);
2566 c = add_cmd ("environment", class_run, unset_environment_command, _("\
2567 Cancel environment variable VAR for the program.\n\
2568 This does not affect the program until the next \"run\" command."),
2570 set_cmd_completer (c, noop_completer);
2572 c = add_cmd ("environment", class_run, set_environment_command, _("\
2573 Set environment variable value to give the program.\n\
2574 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2575 VALUES of environment variables are uninterpreted strings.\n\
2576 This does not affect the program until the next \"run\" command."),
2578 set_cmd_completer (c, noop_completer);
2580 c = add_com ("path", class_files, path_command, _("\
2581 Add directory DIR(s) to beginning of search path for object files.\n\
2582 $cwd in the path means the current working directory.\n\
2583 This path is equivalent to the $PATH shell variable. It is a list of\n\
2584 directories, separated by colons. These directories are searched to find\n\
2585 fully linked executable files and separately compiled object files as needed."));
2586 set_cmd_completer (c, filename_completer);
2588 c = add_cmd ("paths", no_class, path_info, _("\
2589 Current search path for finding object files.\n\
2590 $cwd in the path means the current working directory.\n\
2591 This path is equivalent to the $PATH shell variable. It is a list of\n\
2592 directories, separated by colons. These directories are searched to find\n\
2593 fully linked executable files and separately compiled object files as needed."),
2595 set_cmd_completer (c, noop_completer);
2597 add_com ("attach", class_run, attach_command, _("\
2598 Attach to a process or file outside of GDB.\n\
2599 This command attaches to another target, of the same type as your last\n\
2600 \"target\" command (\"info files\" will show your target stack).\n\
2601 The command may take as argument a process id or a device file.\n\
2602 For a process id, you must have permission to send the process a signal,\n\
2603 and it must have the same effective uid as the debugger.\n\
2604 When using \"attach\" with a process id, the debugger finds the\n\
2605 program running in the process, looking first in the current working\n\
2606 directory, or (if not found there) using the source file search path\n\
2607 (see the \"directory\" command). You can also use the \"file\" command\n\
2608 to specify the program, and to load its symbol table."));
2610 add_prefix_cmd ("detach", class_run, detach_command, _("\
2611 Detach a process or file previously attached.\n\
2612 If a process, it is no longer traced, and it continues its execution. If\n\
2613 you were debugging a file, the file is closed and gdb no longer accesses it."),
2614 &detachlist, "detach ", 0, &cmdlist);
2616 add_com ("disconnect", class_run, disconnect_command, _("\
2617 Disconnect from a target.\n\
2618 The target will wait for another debugger to connect. Not available for\n\
2621 add_com ("signal", class_run, signal_command, _("\
2622 Continue program giving it signal specified by the argument.\n\
2623 An argument of \"0\" means continue program without giving it a signal."));
2625 add_com ("stepi", class_run, stepi_command, _("\
2626 Step one instruction exactly.\n\
2627 Argument N means do this N times (or till program stops for another reason)."));
2628 add_com_alias ("si", "stepi", class_alias, 0);
2630 add_com ("nexti", class_run, nexti_command, _("\
2631 Step one instruction, but proceed through subroutine calls.\n\
2632 Argument N means do this N times (or till program stops for another reason)."));
2633 add_com_alias ("ni", "nexti", class_alias, 0);
2635 add_com ("finish", class_run, finish_command, _("\
2636 Execute until selected stack frame returns.\n\
2637 Upon return, the value returned is printed and put in the value history."));
2638 add_com_alias ("fin", "finish", class_run, 1);
2640 add_com ("next", class_run, next_command, _("\
2641 Step program, proceeding through subroutine calls.\n\
2642 Like the \"step\" command as long as subroutine calls do not happen;\n\
2643 when they do, the call is treated as one instruction.\n\
2644 Argument N means do this N times (or till program stops for another reason)."));
2645 add_com_alias ("n", "next", class_run, 1);
2647 add_com_alias ("S", "next", class_run, 1);
2649 add_com ("step", class_run, step_command, _("\
2650 Step program until it reaches a different source line.\n\
2651 Argument N means do this N times (or till program stops for another reason)."));
2652 add_com_alias ("s", "step", class_run, 1);
2654 c = add_com ("until", class_run, until_command, _("\
2655 Execute until the program reaches a source line greater than the current\n\
2656 or a specified location (same args as break command) within the current frame."));
2657 set_cmd_completer (c, location_completer);
2658 add_com_alias ("u", "until", class_run, 1);
2660 c = add_com ("advance", class_run, advance_command, _("\
2661 Continue the program up to the given location (same form as args for break command).\n\
2662 Execution will also stop upon exit from the current stack frame."));
2663 set_cmd_completer (c, location_completer);
2665 c = add_com ("jump", class_run, jump_command, _("\
2666 Continue program being debugged at specified line or address.\n\
2667 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
2668 for an address to start at."));
2669 set_cmd_completer (c, location_completer);
2673 c = add_com ("go", class_run, go_command, _("\
2674 Usage: go <location>\n\
2675 Continue program being debugged, stopping at specified line or \n\
2677 Give as argument either LINENUM or *ADDR, where ADDR is an \n\
2678 expression for an address to start at.\n\
2679 This command is a combination of tbreak and jump."));
2680 set_cmd_completer (c, location_completer);
2684 add_com_alias ("g", "go", class_run, 1);
2686 c = add_com ("continue", class_run, continue_command, _("\
2687 Continue program being debugged, after signal or breakpoint.\n\
2688 If proceeding from breakpoint, a number N may be used as an argument,\n\
2689 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
2690 the breakpoint won't break until the Nth time it is reached).\n\
2692 If non-stop mode is enabled, continue only the current thread,\n\
2693 otherwise all the threads in the program are continued. To \n\
2694 continue all stopped threads in non-stop mode, use the -a option.\n\
2695 Specifying -a and an ignore count simultaneously is an error."));
2696 add_com_alias ("c", "cont", class_run, 1);
2697 add_com_alias ("fg", "cont", class_run, 1);
2699 c = add_com ("run", class_run, run_command, _("\
2700 Start debugged program. You may specify arguments to give it.\n\
2701 Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
2702 Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\
2703 With no arguments, uses arguments last specified (with \"run\" or \"set args\").\n\
2704 To cancel previous arguments and run with no arguments,\n\
2705 use \"set args\" without arguments."));
2706 set_cmd_completer (c, filename_completer);
2707 add_com_alias ("r", "run", class_run, 1);
2709 add_com ("R", class_run, run_no_args_command,
2710 _("Start debugged program with no arguments."));
2712 c = add_com ("start", class_run, start_command, _("\
2713 Run the debugged program until the beginning of the main procedure.\n\
2714 You may specify arguments to give to your program, just as with the\n\
2715 \"run\" command."));
2716 set_cmd_completer (c, filename_completer);
2718 c = add_com ("interrupt", class_run, interrupt_target_command,
2719 _("Interrupt the execution of the debugged program.\n\
2720 If non-stop mode is enabled, interrupt only the current thread,\n\
2721 otherwise all the threads in the program are stopped. To \n\
2722 interrupt all running threads in non-stop mode, use the -a option."));
2724 add_info ("registers", nofp_registers_info, _("\
2725 List of integer registers and their contents, for selected stack frame.\n\
2726 Register name as argument means describe only that register."));
2727 add_info_alias ("r", "registers", 1);
2730 add_com ("lr", class_info, nofp_registers_info, _("\
2731 List of integer registers and their contents, for selected stack frame.\n\
2732 Register name as argument means describe only that register."));
2733 add_info ("all-registers", all_registers_info, _("\
2734 List of all registers and their contents, for selected stack frame.\n\
2735 Register name as argument means describe only that register."));
2737 add_info ("program", program_info,
2738 _("Execution status of the program."));
2740 add_info ("float", float_info,
2741 _("Print the status of the floating point unit\n"));
2743 add_info ("vector", vector_info,
2744 _("Print the status of the vector unit\n"));
2746 inferior_environ = make_environ ();
2747 init_environ (inferior_environ);