1 /* Memory-access and commands for "inferior" process, for GDB.
3 Copyright (C) 1986-2013 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "arch-utils.h"
23 #include "gdb_string.h"
37 #include "completer.h"
39 #include "event-top.h"
40 #include "parser-defs.h"
42 #include "reggroups.h"
46 #include "gdb_assert.h"
48 #include "target-descriptions.h"
49 #include "user-regs.h"
50 #include "exceptions.h"
51 #include "cli/cli-decode.h"
52 #include "gdbthread.h"
54 #include "inline-frame.h"
55 #include "tracepoint.h"
57 #include "continuations.h"
59 #include "cli/cli-utils.h"
61 /* Local functions: */
63 static void nofp_registers_info (char *, int);
65 static void print_return_value (struct value *function,
66 struct type *value_type);
68 static void until_next_command (int);
70 static void until_command (char *, int);
72 static void path_info (char *, int);
74 static void path_command (char *, int);
76 static void unset_command (char *, int);
78 static void float_info (char *, int);
80 static void disconnect_command (char *, int);
82 static void unset_environment_command (char *, int);
84 static void set_environment_command (char *, int);
86 static void environment_info (char *, int);
88 static void program_info (char *, int);
90 static void finish_command (char *, int);
92 static void signal_command (char *, int);
94 static void jump_command (char *, int);
96 static void step_1 (int, int, char *);
97 static void step_once (int skip_subroutines, int single_inst,
98 int count, int thread);
100 static void next_command (char *, int);
102 static void step_command (char *, int);
104 static void run_command (char *, int);
106 static void run_no_args_command (char *args, int from_tty);
108 static void go_command (char *line_no, int from_tty);
110 static int strip_bg_char (char **);
112 void _initialize_infcmd (void);
114 #define ERROR_NO_INFERIOR \
115 if (!target_has_execution) error (_("The program is not being run."));
117 /* Scratch area where string containing arguments to give to the
118 program will be stored by 'set args'. As soon as anything is
119 stored, notice_args_set will move it into per-inferior storage.
120 Arguments are separated by spaces. Empty string (pointer to '\0')
123 static char *inferior_args_scratch;
125 /* Scratch area where 'set inferior-tty' will store user-provided value.
126 We'll immediate copy it into per-inferior storage. */
128 static char *inferior_io_terminal_scratch;
130 /* Pid of our debugged inferior, or 0 if no inferior now.
131 Since various parts of infrun.c test this to see whether there is a program
132 being debugged it should be nonzero (currently 3 is used) for remote
135 ptid_t inferior_ptid;
137 /* Address at which inferior stopped. */
141 /* Nonzero if stopped due to completion of a stack dummy routine. */
143 enum stop_stack_kind stop_stack_dummy;
145 /* Nonzero if stopped due to a random (unexpected) signal in inferior
148 int stopped_by_random_signal;
151 /* Accessor routines. */
153 /* Set the io terminal for the current inferior. Ownership of
154 TERMINAL_NAME is not transferred. */
157 set_inferior_io_terminal (const char *terminal_name)
159 xfree (current_inferior ()->terminal);
160 current_inferior ()->terminal = terminal_name ? xstrdup (terminal_name) : 0;
164 get_inferior_io_terminal (void)
166 return current_inferior ()->terminal;
170 set_inferior_tty_command (char *args, int from_tty,
171 struct cmd_list_element *c)
173 /* CLI has assigned the user-provided value to inferior_io_terminal_scratch.
174 Now route it to current inferior. */
175 set_inferior_io_terminal (inferior_io_terminal_scratch);
179 show_inferior_tty_command (struct ui_file *file, int from_tty,
180 struct cmd_list_element *c, const char *value)
182 /* Note that we ignore the passed-in value in favor of computing it
184 const char *inferior_io_terminal = get_inferior_io_terminal ();
186 if (inferior_io_terminal == NULL)
187 inferior_io_terminal = "";
188 fprintf_filtered (gdb_stdout,
189 _("Terminal for future runs of program being debugged "
190 "is \"%s\".\n"), inferior_io_terminal);
194 get_inferior_args (void)
196 if (current_inferior ()->argc != 0)
200 n = construct_inferior_arguments (current_inferior ()->argc,
201 current_inferior ()->argv);
202 set_inferior_args (n);
206 if (current_inferior ()->args == NULL)
207 current_inferior ()->args = xstrdup ("");
209 return current_inferior ()->args;
212 /* Set the arguments for the current inferior. Ownership of
213 NEWARGS is not transferred. */
216 set_inferior_args (char *newargs)
218 xfree (current_inferior ()->args);
219 current_inferior ()->args = newargs ? xstrdup (newargs) : NULL;
220 current_inferior ()->argc = 0;
221 current_inferior ()->argv = 0;
225 set_inferior_args_vector (int argc, char **argv)
227 current_inferior ()->argc = argc;
228 current_inferior ()->argv = argv;
231 /* Notice when `set args' is run. */
233 set_args_command (char *args, int from_tty, struct cmd_list_element *c)
235 /* CLI has assigned the user-provided value to inferior_args_scratch.
236 Now route it to current inferior. */
237 set_inferior_args (inferior_args_scratch);
240 /* Notice when `show args' is run. */
242 show_args_command (struct ui_file *file, int from_tty,
243 struct cmd_list_element *c, const char *value)
245 /* Note that we ignore the passed-in value in favor of computing it
247 deprecated_show_value_hack (file, from_tty, c, get_inferior_args ());
251 /* Compute command-line string given argument vector. This does the
252 same shell processing as fork_inferior. */
254 construct_inferior_arguments (int argc, char **argv)
258 if (STARTUP_WITH_SHELL)
261 /* This holds all the characters considered special to the
263 char *special = "\"!&*|[]{}<>?`~^=;, \t\n";
264 const char quote = '"';
266 /* This holds all the characters considered special to the
267 typical Unix shells. We include `^' because the SunOS
268 /bin/sh treats it as a synonym for `|'. */
269 char *special = "\"!#$&*()\\|[]{}<>?'`~^; \t\n";
270 const char quote = '\'';
276 /* We over-compute the size. It shouldn't matter. */
277 for (i = 0; i < argc; ++i)
278 length += 3 * 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')
299 if (strpbrk (argv[i], special))
305 for (cp = argv[i]; *cp; ++cp)
309 /* A newline cannot be quoted with a backslash (it
310 just disappears), only by putting it inside
321 if (strchr (special, *cp) != NULL)
337 /* In this case we can't handle arguments that contain spaces,
338 tabs, or newlines -- see breakup_args(). */
342 for (i = 0; i < argc; ++i)
344 char *cp = strchr (argv[i], ' ');
346 cp = strchr (argv[i], '\t');
348 cp = strchr (argv[i], '\n');
350 error (_("can't handle command-line "
351 "argument containing whitespace"));
352 length += strlen (argv[i]) + 1;
355 result = (char *) xmalloc (length);
357 for (i = 0; i < argc; ++i)
360 strcat (result, " ");
361 strcat (result, argv[i]);
369 /* This function detects whether or not a '&' character (indicating
370 background execution) has been added as *the last* of the arguments ARGS
371 of a command. If it has, it removes it and returns 1. Otherwise it
372 does nothing and returns 0. */
374 strip_bg_char (char **args)
378 p = strchr (*args, '&');
382 if (p == (*args + strlen (*args) - 1))
384 if (strlen (*args) > 1)
388 while (*p == ' ' || *p == '\t');
399 /* Common actions to take after creating any sort of inferior, by any
400 means (running, attaching, connecting, et cetera). The target
401 should be stopped. */
404 post_create_inferior (struct target_ops *target, int from_tty)
406 volatile struct gdb_exception ex;
408 /* Be sure we own the terminal in case write operations are performed. */
409 target_terminal_ours ();
411 /* If the target hasn't taken care of this already, do it now.
412 Targets which need to access registers during to_open,
413 to_create_inferior, or to_attach should do it earlier; but many
415 target_find_description ();
417 /* Now that we know the register layout, retrieve current PC. But
418 if the PC is unavailable (e.g., we're opening a core file with
419 missing registers info), ignore it. */
421 TRY_CATCH (ex, RETURN_MASK_ERROR)
423 stop_pc = regcache_read_pc (get_current_regcache ());
425 if (ex.reason < 0 && ex.error != NOT_AVAILABLE_ERROR)
426 throw_exception (ex);
430 const unsigned solib_add_generation
431 = current_program_space->solib_add_generation;
433 /* Create the hooks to handle shared library load and unload
435 #ifdef SOLIB_CREATE_INFERIOR_HOOK
436 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid));
438 solib_create_inferior_hook (from_tty);
441 if (current_program_space->solib_add_generation == solib_add_generation)
443 /* The platform-specific hook should load initial shared libraries,
444 but didn't. FROM_TTY will be incorrectly 0 but such solib
445 targets should be fixed anyway. Call it only after the solib
446 target has been initialized by solib_create_inferior_hook. */
449 warning (_("platform-specific solib_create_inferior_hook did "
450 "not load initial shared libraries."));
452 /* If the solist is global across processes, there's no need to
454 if (!gdbarch_has_global_solist (target_gdbarch ()))
457 SOLIB_ADD (NULL, 0, target, auto_solib_add);
459 solib_add (NULL, 0, target, auto_solib_add);
465 /* If the user sets watchpoints before execution having started,
466 then she gets software watchpoints, because GDB can't know which
467 target will end up being pushed, or if it supports hardware
468 watchpoints or not. breakpoint_re_set takes care of promoting
469 watchpoints to hardware watchpoints if possible, however, if this
470 new inferior doesn't load shared libraries or we don't pull in
471 symbols from any other source on this target/arch,
472 breakpoint_re_set is never called. Call it now so that software
473 watchpoints get a chance to be promoted to hardware watchpoints
474 if the now pushed target supports hardware watchpoints. */
475 breakpoint_re_set ();
477 observer_notify_inferior_created (target, from_tty);
480 /* Kill the inferior if already running. This function is designed
481 to be called when we are about to start the execution of the program
482 from the beginning. Ask the user to confirm that he wants to restart
483 the program being debugged when FROM_TTY is non-null. */
486 kill_if_already_running (int from_tty)
488 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
490 /* Bail out before killing the program if we will not be able to
492 target_require_runnable ();
495 && !query (_("The program being debugged has been started already.\n\
496 Start it from the beginning? ")))
497 error (_("Program not restarted."));
502 /* Implement the "run" command. If TBREAK_AT_MAIN is set, then insert
503 a temporary breakpoint at the begining of the main program before
504 running the program. */
507 run_command_1 (char *args, int from_tty, int tbreak_at_main)
510 struct cleanup *old_chain;
512 struct ui_out *uiout = current_uiout;
516 kill_if_already_running (from_tty);
518 init_wait_for_inferior ();
519 clear_breakpoint_hit_counts ();
521 /* Clean up any leftovers from other runs. Some other things from
522 this function should probably be moved into target_pre_inferior. */
523 target_pre_inferior (from_tty);
525 /* The comment here used to read, "The exec file is re-read every
526 time we do a generic_mourn_inferior, so we just have to worry
527 about the symbol file." The `generic_mourn_inferior' function
528 gets called whenever the program exits. However, suppose the
529 program exits, and *then* the executable file changes? We need
530 to check again here. Since reopen_exec_file doesn't do anything
531 if the timestamp hasn't changed, I don't see the harm. */
535 /* Insert the temporary breakpoint if a location was specified. */
537 tbreak_command (main_name (), 0);
539 exec_file = (char *) get_exec_file (0);
541 if (non_stop && !target_supports_non_stop ())
542 error (_("The target does not support running in non-stop mode."));
544 /* We keep symbols from add-symbol-file, on the grounds that the
545 user might want to add some symbols before running the program
546 (right?). But sometimes (dynamic loading where the user manually
547 introduces the new symbols with add-symbol-file), the code which
548 the symbols describe does not persist between runs. Currently
549 the user has to manually nuke all symbols between runs if they
550 want them to go away (PR 2207). This is probably reasonable. */
554 if (target_can_async_p ())
555 async_disable_stdin ();
559 int async_exec = strip_bg_char (&args);
561 /* If we get a request for running in the bg but the target
562 doesn't support it, error out. */
563 if (async_exec && !target_can_async_p ())
564 error (_("Asynchronous execution not supported on this target."));
566 /* If we don't get a request of running in the bg, then we need
567 to simulate synchronous (fg) execution. */
568 if (!async_exec && target_can_async_p ())
570 /* Simulate synchronous execution. */
571 async_disable_stdin ();
574 /* If there were other args, beside '&', process them. */
576 set_inferior_args (args);
581 ui_out_field_string (uiout, NULL, "Starting program");
582 ui_out_text (uiout, ": ");
584 ui_out_field_string (uiout, "execfile", exec_file);
585 ui_out_spaces (uiout, 1);
586 /* We call get_inferior_args() because we might need to compute
588 ui_out_field_string (uiout, "infargs", get_inferior_args ());
589 ui_out_text (uiout, "\n");
590 ui_out_flush (uiout);
593 /* We call get_inferior_args() because we might need to compute
595 target_create_inferior (exec_file, get_inferior_args (),
596 environ_vector (current_inferior ()->environment),
599 /* We're starting off a new process. When we get out of here, in
600 non-stop mode, finish the state of all threads of that process,
601 but leave other threads alone, as they may be stopped in internal
602 events --- the frontend shouldn't see them as stopped. In
603 all-stop, always finish the state of all threads, as we may be
604 resuming more than just the new process. */
606 ptid = pid_to_ptid (ptid_get_pid (inferior_ptid));
608 ptid = minus_one_ptid;
609 old_chain = make_cleanup (finish_thread_state_cleanup, &ptid);
611 /* Pass zero for FROM_TTY, because at this point the "run" command
612 has done its thing; now we are setting up the running program. */
613 post_create_inferior (¤t_target, 0);
615 /* Start the target running. Do not use -1 continuation as it would skip
616 breakpoint right at the entry point. */
617 proceed (regcache_read_pc (get_current_regcache ()), GDB_SIGNAL_0, 0);
619 /* Since there was no error, there's no need to finish the thread
621 discard_cleanups (old_chain);
625 run_command (char *args, int from_tty)
627 run_command_1 (args, from_tty, 0);
631 run_no_args_command (char *args, int from_tty)
633 set_inferior_args ("");
637 /* Start the execution of the program up until the beginning of the main
641 start_command (char *args, int from_tty)
643 /* Some languages such as Ada need to search inside the program
644 minimal symbols for the location where to put the temporary
645 breakpoint before starting. */
646 if (!have_minimal_symbols ())
647 error (_("No symbol table loaded. Use the \"file\" command."));
649 /* Run the program until reaching the main procedure... */
650 run_command_1 (args, from_tty, 1);
654 proceed_thread_callback (struct thread_info *thread, void *arg)
656 /* We go through all threads individually instead of compressing
657 into a single target `resume_all' request, because some threads
658 may be stopped in internal breakpoints/events, or stopped waiting
659 for its turn in the displaced stepping queue (that is, they are
660 running && !executing). The target side has no idea about why
661 the thread is stopped, so a `resume_all' command would resume too
662 much. If/when GDB gains a way to tell the target `hold this
663 thread stopped until I say otherwise', then we can optimize
665 if (!is_stopped (thread->ptid))
668 switch_to_thread (thread->ptid);
669 clear_proceed_status ();
670 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
675 ensure_valid_thread (void)
677 if (ptid_equal (inferior_ptid, null_ptid)
678 || is_exited (inferior_ptid))
679 error (_("Cannot execute this command without a live selected thread."));
682 /* If the user is looking at trace frames, any resumption of execution
683 is likely to mix up recorded and live target data. So simply
684 disallow those commands. */
687 ensure_not_tfind_mode (void)
689 if (get_traceframe_number () >= 0)
690 error (_("Cannot execute this command while looking at trace frames."));
693 /* Throw an error indicating the current thread is running. */
696 error_is_running (void)
698 error (_("Cannot execute this command while "
699 "the selected thread is running."));
702 /* Calls error_is_running if the current thread is running. */
705 ensure_not_running (void)
707 if (is_running (inferior_ptid))
712 continue_1 (int all_threads)
715 ensure_not_tfind_mode ();
717 if (non_stop && all_threads)
719 /* Don't error out if the current thread is running, because
720 there may be other stopped threads. */
721 struct cleanup *old_chain;
723 /* Backup current thread and selected frame. */
724 old_chain = make_cleanup_restore_current_thread ();
726 iterate_over_threads (proceed_thread_callback, NULL);
728 /* Restore selected ptid. */
729 do_cleanups (old_chain);
733 ensure_valid_thread ();
734 ensure_not_running ();
735 clear_proceed_status ();
736 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
740 /* continue [-a] [proceed-count] [&] */
742 continue_command (char *args, int from_tty)
748 /* Find out whether we must run in the background. */
750 async_exec = strip_bg_char (&args);
752 /* If we must run in the background, but the target can't do it,
754 if (async_exec && !target_can_async_p ())
755 error (_("Asynchronous execution not supported on this target."));
757 /* If we are not asked to run in the bg, then prepare to run in the
758 foreground, synchronously. */
759 if (!async_exec && target_can_async_p ())
761 /* Simulate synchronous execution. */
762 async_disable_stdin ();
767 if (strncmp (args, "-a", sizeof ("-a") - 1) == 0)
770 args += sizeof ("-a") - 1;
776 if (!non_stop && all_threads)
777 error (_("`-a' is meaningless in all-stop mode."));
779 if (args != NULL && all_threads)
780 error (_("Can't resume all threads and specify "
781 "proceed count simultaneously."));
783 /* If we have an argument left, set proceed count of breakpoint we
790 struct thread_info *tp;
793 tp = find_thread_ptid (inferior_ptid);
797 struct target_waitstatus ws;
799 get_last_target_status (&last_ptid, &ws);
800 tp = find_thread_ptid (last_ptid);
803 bs = tp->control.stop_bpstat;
805 while ((stat = bpstat_num (&bs, &num)) != 0)
808 set_ignore_count (num,
809 parse_and_eval_long (args) - 1,
811 /* set_ignore_count prints a message ending with a period.
812 So print two spaces before "Continuing.". */
814 printf_filtered (" ");
818 if (!stopped && from_tty)
821 ("Not stopped at any breakpoint; argument ignored.\n");
826 printf_filtered (_("Continuing.\n"));
828 continue_1 (all_threads);
831 /* Record the starting point of a "step" or "next" command. */
834 set_step_frame (void)
836 struct symtab_and_line sal;
838 find_frame_sal (get_current_frame (), &sal);
839 set_step_info (get_current_frame (), sal);
842 /* Step until outside of current statement. */
845 step_command (char *count_string, int from_tty)
847 step_1 (0, 0, count_string);
850 /* Likewise, but skip over subroutine calls as if single instructions. */
853 next_command (char *count_string, int from_tty)
855 step_1 (1, 0, count_string);
858 /* Likewise, but step only one instruction. */
861 stepi_command (char *count_string, int from_tty)
863 step_1 (0, 1, count_string);
867 nexti_command (char *count_string, int from_tty)
869 step_1 (1, 1, count_string);
873 delete_longjmp_breakpoint_cleanup (void *arg)
875 int thread = * (int *) arg;
876 delete_longjmp_breakpoint (thread);
880 step_1 (int skip_subroutines, int single_inst, char *count_string)
883 struct cleanup *cleanups = make_cleanup (null_cleanup, NULL);
888 ensure_not_tfind_mode ();
889 ensure_valid_thread ();
890 ensure_not_running ();
893 async_exec = strip_bg_char (&count_string);
895 /* If we get a request for running in the bg but the target
896 doesn't support it, error out. */
897 if (async_exec && !target_can_async_p ())
898 error (_("Asynchronous execution not supported on this target."));
900 /* If we don't get a request of running in the bg, then we need
901 to simulate synchronous (fg) execution. */
902 if (!async_exec && target_can_async_p ())
904 /* Simulate synchronous execution. */
905 async_disable_stdin ();
908 count = count_string ? parse_and_eval_long (count_string) : 1;
910 if (!single_inst || skip_subroutines) /* Leave si command alone. */
912 struct thread_info *tp = inferior_thread ();
914 if (in_thread_list (inferior_ptid))
915 thread = pid_to_thread_id (inferior_ptid);
917 set_longjmp_breakpoint (tp, get_frame_id (get_current_frame ()));
919 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
922 /* In synchronous case, all is well; each step_once call will step once. */
923 if (!target_can_async_p ())
925 for (; count > 0; count--)
927 step_once (skip_subroutines, single_inst, count, thread);
929 if (!target_has_execution)
933 struct thread_info *tp = inferior_thread ();
935 if (!tp->control.stop_step || !tp->step_multi)
937 /* If we stopped for some reason that is not stepping
938 there are no further steps to make. */
945 do_cleanups (cleanups);
949 /* In the case of an asynchronous target things get complicated;
950 do only one step for now, before returning control to the
951 event loop. Let the continuation figure out how many other
952 steps we need to do, and handle them one at the time, through
954 step_once (skip_subroutines, single_inst, count, thread);
956 /* We are running, and the continuation is installed. It will
957 disable the longjmp breakpoint as appropriate. */
958 discard_cleanups (cleanups);
962 struct step_1_continuation_args
965 int skip_subroutines;
970 /* Called after we are done with one step operation, to check whether
971 we need to step again, before we print the prompt and return control
972 to the user. If count is > 1, we will need to do one more call to
973 proceed(), via step_once(). Basically it is like step_once and
974 step_1_continuation are co-recursive. */
976 step_1_continuation (void *args, int err)
978 struct step_1_continuation_args *a = args;
980 if (target_has_execution)
982 struct thread_info *tp;
984 tp = inferior_thread ();
986 && tp->step_multi && tp->control.stop_step)
988 /* There are more steps to make, and we did stop due to
989 ending a stepping range. Do another step. */
990 step_once (a->skip_subroutines, a->single_inst,
991 a->count - 1, a->thread);
997 /* We either hit an error, or stopped for some reason that is
998 not stepping, or there are no further steps to make.
1000 if (!a->single_inst || a->skip_subroutines)
1001 delete_longjmp_breakpoint (a->thread);
1004 /* Do just one step operation. This is useful to implement the 'step
1005 n' kind of commands. In case of asynchronous targets, we will have
1006 to set up a continuation to be done after the target stops (after
1007 this one step). For synch targets, the caller handles further
1011 step_once (int skip_subroutines, int single_inst, int count, int thread)
1013 struct frame_info *frame = get_current_frame ();
1017 /* Don't assume THREAD is a valid thread id. It is set to -1 if
1018 the longjmp breakpoint was not required. Use the
1019 INFERIOR_PTID thread instead, which is the same thread when
1021 struct thread_info *tp = inferior_thread ();
1023 clear_proceed_status ();
1030 /* Step at an inlined function behaves like "down". */
1031 if (!skip_subroutines
1032 && inline_skipped_frames (inferior_ptid))
1036 /* Pretend that we've ran. */
1037 resume_ptid = user_visible_resume_ptid (1);
1038 set_running (resume_ptid, 1);
1040 step_into_inline_frame (inferior_ptid);
1042 step_once (skip_subroutines, single_inst, count - 1, thread);
1045 /* Pretend that we've stopped. */
1048 if (target_can_async_p ())
1049 inferior_event_handler (INF_EXEC_COMPLETE, NULL);
1054 pc = get_frame_pc (frame);
1055 find_pc_line_pc_range (pc,
1056 &tp->control.step_range_start,
1057 &tp->control.step_range_end);
1059 /* If we have no line info, switch to stepi mode. */
1060 if (tp->control.step_range_end == 0 && step_stop_if_no_debug)
1061 tp->control.step_range_start = tp->control.step_range_end = 1;
1062 else if (tp->control.step_range_end == 0)
1066 if (find_pc_partial_function (pc, &name,
1067 &tp->control.step_range_start,
1068 &tp->control.step_range_end) == 0)
1069 error (_("Cannot find bounds of current function"));
1071 target_terminal_ours ();
1072 printf_filtered (_("Single stepping until exit from function %s,"
1073 "\nwhich has no line number information.\n"),
1079 /* Say we are stepping, but stop after one insn whatever it does. */
1080 tp->control.step_range_start = tp->control.step_range_end = 1;
1081 if (!skip_subroutines)
1083 Don't step over function calls, not even to functions lacking
1085 tp->control.step_over_calls = STEP_OVER_NONE;
1088 if (skip_subroutines)
1089 tp->control.step_over_calls = STEP_OVER_ALL;
1091 tp->step_multi = (count > 1);
1092 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 1);
1094 /* For async targets, register a continuation to do any
1095 additional steps. For sync targets, the caller will handle
1096 further stepping. */
1097 if (target_can_async_p ())
1099 struct step_1_continuation_args *args;
1101 args = xmalloc (sizeof (*args));
1102 args->skip_subroutines = skip_subroutines;
1103 args->single_inst = single_inst;
1104 args->count = count;
1105 args->thread = thread;
1107 add_intermediate_continuation (tp, step_1_continuation, args, xfree);
1113 /* Continue program at specified address. */
1116 jump_command (char *arg, int from_tty)
1118 struct gdbarch *gdbarch = get_current_arch ();
1120 struct symtabs_and_lines sals;
1121 struct symtab_and_line sal;
1127 ensure_not_tfind_mode ();
1128 ensure_valid_thread ();
1129 ensure_not_running ();
1131 /* Find out whether we must run in the background. */
1133 async_exec = strip_bg_char (&arg);
1135 /* If we must run in the background, but the target can't do it,
1137 if (async_exec && !target_can_async_p ())
1138 error (_("Asynchronous execution not supported on this target."));
1141 error_no_arg (_("starting address"));
1143 sals = decode_line_with_last_displayed (arg, DECODE_LINE_FUNFIRSTLINE);
1144 if (sals.nelts != 1)
1146 error (_("Unreasonable jump request"));
1152 if (sal.symtab == 0 && sal.pc == 0)
1153 error (_("No source file has been specified."));
1155 resolve_sal_pc (&sal); /* May error out. */
1157 /* See if we are trying to jump to another function. */
1158 fn = get_frame_function (get_current_frame ());
1159 sfn = find_pc_function (sal.pc);
1160 if (fn != NULL && sfn != fn)
1162 if (!query (_("Line %d is not in `%s'. Jump anyway? "), sal.line,
1163 SYMBOL_PRINT_NAME (fn)))
1165 error (_("Not confirmed."));
1172 fixup_symbol_section (sfn, 0);
1173 if (section_is_overlay (SYMBOL_OBJ_SECTION (sfn)) &&
1174 !section_is_mapped (SYMBOL_OBJ_SECTION (sfn)))
1176 if (!query (_("WARNING!!! Destination is in "
1177 "unmapped overlay! Jump anyway? ")))
1179 error (_("Not confirmed."));
1189 printf_filtered (_("Continuing at "));
1190 fputs_filtered (paddress (gdbarch, addr), gdb_stdout);
1191 printf_filtered (".\n");
1194 /* If we are not asked to run in the bg, then prepare to run in the
1195 foreground, synchronously. */
1196 if (!async_exec && target_can_async_p ())
1198 /* Simulate synchronous execution. */
1199 async_disable_stdin ();
1202 clear_proceed_status ();
1203 proceed (addr, GDB_SIGNAL_0, 0);
1207 /* Go to line or address in current procedure. */
1209 go_command (char *line_no, int from_tty)
1211 if (line_no == (char *) NULL || !*line_no)
1212 printf_filtered (_("Usage: go <location>\n"));
1215 tbreak_command (line_no, from_tty);
1216 jump_command (line_no, from_tty);
1221 /* Continue program giving it specified signal. */
1224 signal_command (char *signum_exp, int from_tty)
1226 enum gdb_signal oursig;
1229 dont_repeat (); /* Too dangerous. */
1231 ensure_not_tfind_mode ();
1232 ensure_valid_thread ();
1233 ensure_not_running ();
1235 /* Find out whether we must run in the background. */
1236 if (signum_exp != NULL)
1237 async_exec = strip_bg_char (&signum_exp);
1239 /* If we must run in the background, but the target can't do it,
1241 if (async_exec && !target_can_async_p ())
1242 error (_("Asynchronous execution not supported on this target."));
1244 /* If we are not asked to run in the bg, then prepare to run in the
1245 foreground, synchronously. */
1246 if (!async_exec && target_can_async_p ())
1248 /* Simulate synchronous execution. */
1249 async_disable_stdin ();
1253 error_no_arg (_("signal number"));
1255 /* It would be even slicker to make signal names be valid expressions,
1256 (the type could be "enum $signal" or some such), then the user could
1257 assign them to convenience variables. */
1258 oursig = gdb_signal_from_name (signum_exp);
1260 if (oursig == GDB_SIGNAL_UNKNOWN)
1262 /* No, try numeric. */
1263 int num = parse_and_eval_long (signum_exp);
1266 oursig = GDB_SIGNAL_0;
1268 oursig = gdb_signal_from_command (num);
1273 if (oursig == GDB_SIGNAL_0)
1274 printf_filtered (_("Continuing with no signal.\n"));
1276 printf_filtered (_("Continuing with signal %s.\n"),
1277 gdb_signal_to_name (oursig));
1280 clear_proceed_status ();
1281 proceed ((CORE_ADDR) -1, oursig, 0);
1284 /* Continuation args to be passed to the "until" command
1286 struct until_next_continuation_args
1288 /* The thread that was current when the command was executed. */
1292 /* A continuation callback for until_next_command. */
1295 until_next_continuation (void *arg, int err)
1297 struct until_next_continuation_args *a = arg;
1299 delete_longjmp_breakpoint (a->thread);
1302 /* Proceed until we reach a different source line with pc greater than
1303 our current one or exit the function. We skip calls in both cases.
1305 Note that eventually this command should probably be changed so
1306 that only source lines are printed out when we hit the breakpoint
1307 we set. This may involve changes to wait_for_inferior and the
1308 proceed status code. */
1311 until_next_command (int from_tty)
1313 struct frame_info *frame;
1315 struct symbol *func;
1316 struct symtab_and_line sal;
1317 struct thread_info *tp = inferior_thread ();
1318 int thread = tp->num;
1319 struct cleanup *old_chain;
1321 clear_proceed_status ();
1324 frame = get_current_frame ();
1326 /* Step until either exited from this function or greater
1327 than the current line (if in symbolic section) or pc (if
1330 pc = get_frame_pc (frame);
1331 func = find_pc_function (pc);
1335 struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc);
1337 if (msymbol == NULL)
1338 error (_("Execution is not within a known function."));
1340 tp->control.step_range_start = SYMBOL_VALUE_ADDRESS (msymbol);
1341 tp->control.step_range_end = pc;
1345 sal = find_pc_line (pc, 0);
1347 tp->control.step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
1348 tp->control.step_range_end = sal.end;
1351 tp->control.step_over_calls = STEP_OVER_ALL;
1353 tp->step_multi = 0; /* Only one call to proceed */
1355 set_longjmp_breakpoint (tp, get_frame_id (frame));
1356 old_chain = make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
1358 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 1);
1360 if (target_can_async_p () && is_running (inferior_ptid))
1362 struct until_next_continuation_args *cont_args;
1364 discard_cleanups (old_chain);
1365 cont_args = XNEW (struct until_next_continuation_args);
1366 cont_args->thread = inferior_thread ()->num;
1368 add_continuation (tp, until_next_continuation, cont_args, xfree);
1371 do_cleanups (old_chain);
1375 until_command (char *arg, int from_tty)
1380 ensure_not_tfind_mode ();
1381 ensure_valid_thread ();
1382 ensure_not_running ();
1384 /* Find out whether we must run in the background. */
1386 async_exec = strip_bg_char (&arg);
1388 /* If we must run in the background, but the target can't do it,
1390 if (async_exec && !target_can_async_p ())
1391 error (_("Asynchronous execution not supported on this target."));
1393 /* If we are not asked to run in the bg, then prepare to run in the
1394 foreground, synchronously. */
1395 if (!async_exec && target_can_async_p ())
1397 /* Simulate synchronous execution. */
1398 async_disable_stdin ();
1402 until_break_command (arg, from_tty, 0);
1404 until_next_command (from_tty);
1408 advance_command (char *arg, int from_tty)
1413 ensure_not_tfind_mode ();
1414 ensure_valid_thread ();
1415 ensure_not_running ();
1418 error_no_arg (_("a location"));
1420 /* Find out whether we must run in the background. */
1422 async_exec = strip_bg_char (&arg);
1424 /* If we must run in the background, but the target can't do it,
1426 if (async_exec && !target_can_async_p ())
1427 error (_("Asynchronous execution not supported on this target."));
1429 /* If we are not asked to run in the bg, then prepare to run in the
1430 foreground, synchronously. */
1431 if (!async_exec && target_can_async_p ())
1433 /* Simulate synchronous execution. */
1434 async_disable_stdin ();
1437 until_break_command (arg, from_tty, 1);
1440 /* Return the value of the result of a function at the end of a 'finish'
1444 get_return_value (struct value *function, struct type *value_type)
1446 struct regcache *stop_regs = stop_registers;
1447 struct gdbarch *gdbarch;
1448 struct value *value;
1449 struct cleanup *cleanup = make_cleanup (null_cleanup, NULL);
1451 /* If stop_registers were not saved, use the current registers. */
1454 stop_regs = regcache_dup (get_current_regcache ());
1455 cleanup = make_cleanup_regcache_xfree (stop_regs);
1458 gdbarch = get_regcache_arch (stop_regs);
1460 CHECK_TYPEDEF (value_type);
1461 gdb_assert (TYPE_CODE (value_type) != TYPE_CODE_VOID);
1463 /* FIXME: 2003-09-27: When returning from a nested inferior function
1464 call, it's possible (with no help from the architecture vector)
1465 to locate and return/print a "struct return" value. This is just
1466 a more complicated case of what is already being done in the
1467 inferior function call code. In fact, when inferior function
1468 calls are made async, this will likely be made the norm. */
1470 switch (gdbarch_return_value (gdbarch, function, value_type,
1473 case RETURN_VALUE_REGISTER_CONVENTION:
1474 case RETURN_VALUE_ABI_RETURNS_ADDRESS:
1475 case RETURN_VALUE_ABI_PRESERVES_ADDRESS:
1476 value = allocate_value (value_type);
1477 gdbarch_return_value (gdbarch, function, value_type, stop_regs,
1478 value_contents_raw (value), NULL);
1480 case RETURN_VALUE_STRUCT_CONVENTION:
1484 internal_error (__FILE__, __LINE__, _("bad switch"));
1487 do_cleanups (cleanup);
1492 /* Print the result of a function at the end of a 'finish' command. */
1495 print_return_value (struct value *function, struct type *value_type)
1497 struct value *value = get_return_value (function, value_type);
1498 struct ui_out *uiout = current_uiout;
1502 struct value_print_options opts;
1503 struct ui_file *stb;
1504 struct cleanup *old_chain;
1507 stb = mem_fileopen ();
1508 old_chain = make_cleanup_ui_file_delete (stb);
1509 ui_out_text (uiout, "Value returned is ");
1510 ui_out_field_fmt (uiout, "gdb-result-var", "$%d",
1511 record_latest_value (value));
1512 ui_out_text (uiout, " = ");
1513 get_raw_print_options (&opts);
1514 value_print (value, stb, &opts);
1515 ui_out_field_stream (uiout, "return-value", stb);
1516 ui_out_text (uiout, "\n");
1517 do_cleanups (old_chain);
1521 ui_out_text (uiout, "Value returned has type: ");
1522 ui_out_field_string (uiout, "return-type", TYPE_NAME (value_type));
1523 ui_out_text (uiout, ".");
1524 ui_out_text (uiout, " Cannot determine contents\n");
1528 /* Stuff that needs to be done by the finish command after the target
1529 has stopped. In asynchronous mode, we wait for the target to stop
1530 in the call to poll or select in the event loop, so it is
1531 impossible to do all the stuff as part of the finish_command
1532 function itself. The only chance we have to complete this command
1533 is in fetch_inferior_event, which is called by the event loop as
1534 soon as it detects that the target has stopped. */
1536 struct finish_command_continuation_args
1538 /* The thread that as current when the command was executed. */
1540 struct breakpoint *breakpoint;
1541 struct symbol *function;
1545 finish_command_continuation (void *arg, int err)
1547 struct finish_command_continuation_args *a = arg;
1551 struct thread_info *tp = NULL;
1554 if (!ptid_equal (inferior_ptid, null_ptid)
1555 && target_has_execution
1556 && is_stopped (inferior_ptid))
1558 tp = inferior_thread ();
1559 bs = tp->control.stop_bpstat;
1562 if (bpstat_find_breakpoint (bs, a->breakpoint) != NULL
1563 && a->function != NULL)
1565 struct type *value_type;
1567 value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (a->function));
1569 internal_error (__FILE__, __LINE__,
1570 _("finish_command: function has no target type"));
1572 if (TYPE_CODE (value_type) != TYPE_CODE_VOID)
1574 volatile struct gdb_exception ex;
1577 func = read_var_value (a->function, get_current_frame ());
1578 TRY_CATCH (ex, RETURN_MASK_ALL)
1580 /* print_return_value can throw an exception in some
1581 circumstances. We need to catch this so that we still
1582 delete the breakpoint. */
1583 print_return_value (func, value_type);
1586 exception_print (gdb_stdout, ex);
1590 /* We suppress normal call of normal_stop observer and do it
1591 here so that the *stopped notification includes the return
1593 if (bs != NULL && tp->control.proceed_to_finish)
1594 observer_notify_normal_stop (bs, 1 /* print frame */);
1597 delete_breakpoint (a->breakpoint);
1598 delete_longjmp_breakpoint (a->thread);
1602 finish_command_continuation_free_arg (void *arg)
1607 /* finish_backward -- helper function for finish_command. */
1610 finish_backward (struct symbol *function)
1612 struct symtab_and_line sal;
1613 struct thread_info *tp = inferior_thread ();
1615 CORE_ADDR func_addr;
1617 pc = get_frame_pc (get_current_frame ());
1619 if (find_pc_partial_function (pc, NULL, &func_addr, NULL) == 0)
1620 internal_error (__FILE__, __LINE__,
1621 _("Finish: couldn't find function."));
1623 sal = find_pc_line (func_addr, 0);
1625 tp->control.proceed_to_finish = 1;
1626 /* Special case: if we're sitting at the function entry point,
1627 then all we need to do is take a reverse singlestep. We
1628 don't need to set a breakpoint, and indeed it would do us
1631 Note that this can only happen at frame #0, since there's
1632 no way that a function up the stack can have a return address
1633 that's equal to its entry point. */
1637 struct frame_info *frame = get_selected_frame (NULL);
1638 struct gdbarch *gdbarch = get_frame_arch (frame);
1639 struct symtab_and_line sr_sal;
1641 /* Set a step-resume at the function's entry point. Once that's
1642 hit, we'll do one more step backwards. */
1645 sr_sal.pspace = get_frame_program_space (frame);
1646 insert_step_resume_breakpoint_at_sal (gdbarch,
1647 sr_sal, null_frame_id);
1649 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
1653 /* We're almost there -- we just need to back up by one more
1655 tp->control.step_range_start = tp->control.step_range_end = 1;
1656 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 1);
1660 /* finish_forward -- helper function for finish_command. */
1663 finish_forward (struct symbol *function, struct frame_info *frame)
1665 struct frame_id frame_id = get_frame_id (frame);
1666 struct gdbarch *gdbarch = get_frame_arch (frame);
1667 struct symtab_and_line sal;
1668 struct thread_info *tp = inferior_thread ();
1669 struct breakpoint *breakpoint;
1670 struct cleanup *old_chain;
1671 struct finish_command_continuation_args *cargs;
1672 int thread = tp->num;
1674 sal = find_pc_line (get_frame_pc (frame), 0);
1675 sal.pc = get_frame_pc (frame);
1677 breakpoint = set_momentary_breakpoint (gdbarch, sal,
1678 get_stack_frame_id (frame),
1681 /* set_momentary_breakpoint invalidates FRAME. */
1684 old_chain = make_cleanup_delete_breakpoint (breakpoint);
1686 set_longjmp_breakpoint (tp, frame_id);
1687 make_cleanup (delete_longjmp_breakpoint_cleanup, &thread);
1689 /* We want stop_registers, please... */
1690 tp->control.proceed_to_finish = 1;
1691 cargs = xmalloc (sizeof (*cargs));
1693 cargs->thread = thread;
1694 cargs->breakpoint = breakpoint;
1695 cargs->function = function;
1696 add_continuation (tp, finish_command_continuation, cargs,
1697 finish_command_continuation_free_arg);
1698 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
1700 discard_cleanups (old_chain);
1701 if (!target_can_async_p ())
1702 do_all_continuations (0);
1705 /* "finish": Set a temporary breakpoint at the place the selected
1706 frame will return to, then continue. */
1709 finish_command (char *arg, int from_tty)
1711 struct frame_info *frame;
1712 struct symbol *function;
1717 ensure_not_tfind_mode ();
1718 ensure_valid_thread ();
1719 ensure_not_running ();
1721 /* Find out whether we must run in the background. */
1723 async_exec = strip_bg_char (&arg);
1725 /* If we must run in the background, but the target can't do it,
1727 if (async_exec && !target_can_async_p ())
1728 error (_("Asynchronous execution not supported on this target."));
1730 /* If we are not asked to run in the bg, then prepare to run in the
1731 foreground, synchronously. */
1732 if (!async_exec && target_can_async_p ())
1734 /* Simulate synchronous execution. */
1735 async_disable_stdin ();
1739 error (_("The \"finish\" command does not take any arguments."));
1741 frame = get_prev_frame (get_selected_frame (_("No selected frame.")));
1743 error (_("\"finish\" not meaningful in the outermost frame."));
1745 clear_proceed_status ();
1747 /* Finishing from an inline frame is completely different. We don't
1748 try to show the "return value" - no way to locate it. So we do
1749 not need a completion. */
1750 if (get_frame_type (get_selected_frame (_("No selected frame.")))
1753 /* Claim we are stepping in the calling frame. An empty step
1754 range means that we will stop once we aren't in a function
1755 called by that frame. We don't use the magic "1" value for
1756 step_range_end, because then infrun will think this is nexti,
1757 and not step over the rest of this inlined function call. */
1758 struct thread_info *tp = inferior_thread ();
1759 struct symtab_and_line empty_sal;
1761 init_sal (&empty_sal);
1762 set_step_info (frame, empty_sal);
1763 tp->control.step_range_start = get_frame_pc (frame);
1764 tp->control.step_range_end = tp->control.step_range_start;
1765 tp->control.step_over_calls = STEP_OVER_ALL;
1767 /* Print info on the selected frame, including level number but not
1771 printf_filtered (_("Run till exit from "));
1772 print_stack_frame (get_selected_frame (NULL), 1, LOCATION);
1775 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 1);
1779 /* Ignore TAILCALL_FRAME type frames, they were executed already before
1780 entering THISFRAME. */
1781 while (get_frame_type (frame) == TAILCALL_FRAME)
1782 frame = get_prev_frame (frame);
1784 /* Find the function we will return from. */
1786 function = find_pc_function (get_frame_pc (get_selected_frame (NULL)));
1788 /* Print info on the selected frame, including level number but not
1792 if (execution_direction == EXEC_REVERSE)
1793 printf_filtered (_("Run back to call of "));
1795 printf_filtered (_("Run till exit from "));
1797 print_stack_frame (get_selected_frame (NULL), 1, LOCATION);
1800 if (execution_direction == EXEC_REVERSE)
1801 finish_backward (function);
1803 finish_forward (function, frame);
1808 program_info (char *args, int from_tty)
1812 struct thread_info *tp;
1815 if (!target_has_execution)
1817 printf_filtered (_("The program being debugged is not being run.\n"));
1822 ptid = inferior_ptid;
1825 struct target_waitstatus ws;
1827 get_last_target_status (&ptid, &ws);
1830 if (ptid_equal (ptid, null_ptid) || is_exited (ptid))
1831 error (_("Invalid selected thread."));
1832 else if (is_running (ptid))
1833 error (_("Selected thread is running."));
1835 tp = find_thread_ptid (ptid);
1836 bs = tp->control.stop_bpstat;
1837 stat = bpstat_num (&bs, &num);
1839 target_files_info ();
1840 printf_filtered (_("Program stopped at %s.\n"),
1841 paddress (target_gdbarch (), stop_pc));
1842 if (tp->control.stop_step)
1843 printf_filtered (_("It stopped after being stepped.\n"));
1846 /* There may be several breakpoints in the same place, so this
1847 isn't as strange as it seems. */
1852 printf_filtered (_("It stopped at a breakpoint "
1853 "that has since been deleted.\n"));
1856 printf_filtered (_("It stopped at breakpoint %d.\n"), num);
1857 stat = bpstat_num (&bs, &num);
1860 else if (tp->suspend.stop_signal != GDB_SIGNAL_0)
1862 printf_filtered (_("It stopped with signal %s, %s.\n"),
1863 gdb_signal_to_name (tp->suspend.stop_signal),
1864 gdb_signal_to_string (tp->suspend.stop_signal));
1869 printf_filtered (_("Type \"info stack\" or \"info "
1870 "registers\" for more information.\n"));
1875 environment_info (char *var, int from_tty)
1879 char *val = get_in_environ (current_inferior ()->environment, var);
1883 puts_filtered (var);
1884 puts_filtered (" = ");
1885 puts_filtered (val);
1886 puts_filtered ("\n");
1890 puts_filtered ("Environment variable \"");
1891 puts_filtered (var);
1892 puts_filtered ("\" not defined.\n");
1897 char **vector = environ_vector (current_inferior ()->environment);
1901 puts_filtered (*vector++);
1902 puts_filtered ("\n");
1908 set_environment_command (char *arg, int from_tty)
1910 char *p, *val, *var;
1914 error_no_arg (_("environment variable and value"));
1916 /* Find seperation between variable name and value. */
1917 p = (char *) strchr (arg, '=');
1918 val = (char *) strchr (arg, ' ');
1920 if (p != 0 && val != 0)
1922 /* We have both a space and an equals. If the space is before the
1923 equals, walk forward over the spaces til we see a nonspace
1924 (possibly the equals). */
1929 /* Now if the = is after the char following the spaces,
1930 take the char following the spaces. */
1934 else if (val != 0 && p == 0)
1938 error_no_arg (_("environment variable to set"));
1940 if (p == 0 || p[1] == 0)
1944 p = arg + strlen (arg); /* So that savestring below will work. */
1948 /* Not setting variable value to null. */
1950 while (*val == ' ' || *val == '\t')
1954 while (p != arg && (p[-1] == ' ' || p[-1] == '\t'))
1957 var = savestring (arg, p - arg);
1960 printf_filtered (_("Setting environment variable "
1961 "\"%s\" to null value.\n"),
1963 set_in_environ (current_inferior ()->environment, var, "");
1966 set_in_environ (current_inferior ()->environment, var, val);
1971 unset_environment_command (char *var, int from_tty)
1975 /* If there is no argument, delete all environment variables.
1976 Ask for confirmation if reading from the terminal. */
1977 if (!from_tty || query (_("Delete all environment variables? ")))
1979 free_environ (current_inferior ()->environment);
1980 current_inferior ()->environment = make_environ ();
1984 unset_in_environ (current_inferior ()->environment, var);
1987 /* Handle the execution path (PATH variable). */
1989 static const char path_var_name[] = "PATH";
1992 path_info (char *args, int from_tty)
1994 puts_filtered ("Executable and object file path: ");
1995 puts_filtered (get_in_environ (current_inferior ()->environment,
1997 puts_filtered ("\n");
2000 /* Add zero or more directories to the front of the execution path. */
2003 path_command (char *dirname, int from_tty)
2009 env = get_in_environ (current_inferior ()->environment, path_var_name);
2010 /* Can be null if path is not set. */
2013 exec_path = xstrdup (env);
2014 mod_path (dirname, &exec_path);
2015 set_in_environ (current_inferior ()->environment, path_var_name, exec_path);
2018 path_info ((char *) NULL, from_tty);
2022 /* Print out the register NAME with value VAL, to FILE, in the default
2026 default_print_one_register_info (struct ui_file *file,
2030 struct type *regtype = value_type (val);
2032 fputs_filtered (name, file);
2033 print_spaces_filtered (15 - strlen (name), file);
2035 if (!value_entirely_available (val))
2037 fprintf_filtered (file, "*value not available*\n");
2041 /* If virtual format is floating, print it that way, and in raw
2043 if (TYPE_CODE (regtype) == TYPE_CODE_FLT
2044 || TYPE_CODE (regtype) == TYPE_CODE_DECFLOAT)
2047 struct value_print_options opts;
2048 const gdb_byte *valaddr = value_contents_for_printing (val);
2049 enum bfd_endian byte_order = gdbarch_byte_order (get_type_arch (regtype));
2051 get_user_print_options (&opts);
2055 value_contents_for_printing (val),
2056 value_embedded_offset (val), 0,
2057 file, 0, val, &opts, current_language);
2059 fprintf_filtered (file, "\t(raw 0x");
2060 for (j = 0; j < TYPE_LENGTH (regtype); j++)
2064 if (byte_order == BFD_ENDIAN_BIG)
2067 idx = TYPE_LENGTH (regtype) - 1 - j;
2068 fprintf_filtered (file, "%02x", (unsigned char) valaddr[idx]);
2070 fprintf_filtered (file, ")");
2074 struct value_print_options opts;
2076 /* Print the register in hex. */
2077 get_formatted_print_options (&opts, 'x');
2080 value_contents_for_printing (val),
2081 value_embedded_offset (val), 0,
2082 file, 0, val, &opts, current_language);
2083 /* If not a vector register, print it also according to its
2085 if (TYPE_VECTOR (regtype) == 0)
2087 get_user_print_options (&opts);
2089 fprintf_filtered (file, "\t");
2091 value_contents_for_printing (val),
2092 value_embedded_offset (val), 0,
2093 file, 0, val, &opts, current_language);
2097 fprintf_filtered (file, "\n");
2100 /* Print out the machine register regnum. If regnum is -1, print all
2101 registers (print_all == 1) or all non-float and non-vector
2102 registers (print_all == 0).
2104 For most machines, having all_registers_info() print the
2105 register(s) one per line is good enough. If a different format is
2106 required, (eg, for MIPS or Pyramid 90x, which both have lots of
2107 regs), or there is an existing convention for showing all the
2108 registers, define the architecture method PRINT_REGISTERS_INFO to
2109 provide that format. */
2112 default_print_registers_info (struct gdbarch *gdbarch,
2113 struct ui_file *file,
2114 struct frame_info *frame,
2115 int regnum, int print_all)
2118 const int numregs = gdbarch_num_regs (gdbarch)
2119 + gdbarch_num_pseudo_regs (gdbarch);
2121 for (i = 0; i < numregs; i++)
2123 struct type *regtype;
2126 /* Decide between printing all regs, non-float / vector regs, or
2132 if (!gdbarch_register_reggroup_p (gdbarch, i, all_reggroup))
2137 if (!gdbarch_register_reggroup_p (gdbarch, i, general_reggroup))
2147 /* If the register name is empty, it is undefined for this
2148 processor, so don't display anything. */
2149 if (gdbarch_register_name (gdbarch, i) == NULL
2150 || *(gdbarch_register_name (gdbarch, i)) == '\0')
2153 regtype = register_type (gdbarch, i);
2154 val = allocate_value (regtype);
2156 /* Get the data in raw format. */
2157 if (! deprecated_frame_register_read (frame, i, value_contents_raw (val)))
2158 mark_value_bytes_unavailable (val, 0, TYPE_LENGTH (value_type (val)));
2160 default_print_one_register_info (file,
2161 gdbarch_register_name (gdbarch, i),
2167 registers_info (char *addr_exp, int fpregs)
2169 struct frame_info *frame;
2170 struct gdbarch *gdbarch;
2172 if (!target_has_registers)
2173 error (_("The program has no registers now."));
2174 frame = get_selected_frame (NULL);
2175 gdbarch = get_frame_arch (frame);
2179 gdbarch_print_registers_info (gdbarch, gdb_stdout,
2184 while (*addr_exp != '\0')
2189 /* Skip leading white space. */
2190 addr_exp = skip_spaces (addr_exp);
2192 /* Discard any leading ``$''. Check that there is something
2193 resembling a register following it. */
2194 if (addr_exp[0] == '$')
2196 if (isspace ((*addr_exp)) || (*addr_exp) == '\0')
2197 error (_("Missing register name"));
2199 /* Find the start/end of this register name/num/group. */
2201 while ((*addr_exp) != '\0' && !isspace ((*addr_exp)))
2205 /* Figure out what we've found and display it. */
2207 /* A register name? */
2209 int regnum = user_reg_map_name_to_regnum (gdbarch, start, end - start);
2213 /* User registers lie completely outside of the range of
2214 normal registers. Catch them early so that the target
2216 if (regnum >= gdbarch_num_regs (gdbarch)
2217 + gdbarch_num_pseudo_regs (gdbarch))
2219 struct value *regval = value_of_user_reg (regnum, frame);
2220 const char *regname = user_reg_map_regnum_to_name (gdbarch,
2223 /* Print in the same fashion
2224 gdbarch_print_registers_info's default
2225 implementation prints. */
2226 default_print_one_register_info (gdb_stdout,
2231 gdbarch_print_registers_info (gdbarch, gdb_stdout,
2232 frame, regnum, fpregs);
2237 /* A register group? */
2239 struct reggroup *group;
2241 for (group = reggroup_next (gdbarch, NULL);
2243 group = reggroup_next (gdbarch, group))
2245 /* Don't bother with a length check. Should the user
2246 enter a short register group name, go with the first
2247 group that matches. */
2248 if (strncmp (start, reggroup_name (group), end - start) == 0)
2256 regnum < gdbarch_num_regs (gdbarch)
2257 + gdbarch_num_pseudo_regs (gdbarch);
2260 if (gdbarch_register_reggroup_p (gdbarch, regnum, group))
2261 gdbarch_print_registers_info (gdbarch,
2269 /* Nothing matched. */
2270 error (_("Invalid register `%.*s'"), (int) (end - start), start);
2275 all_registers_info (char *addr_exp, int from_tty)
2277 registers_info (addr_exp, 1);
2281 nofp_registers_info (char *addr_exp, int from_tty)
2283 registers_info (addr_exp, 0);
2287 print_vector_info (struct ui_file *file,
2288 struct frame_info *frame, const char *args)
2290 struct gdbarch *gdbarch = get_frame_arch (frame);
2292 if (gdbarch_print_vector_info_p (gdbarch))
2293 gdbarch_print_vector_info (gdbarch, file, frame, args);
2297 int printed_something = 0;
2300 regnum < gdbarch_num_regs (gdbarch)
2301 + gdbarch_num_pseudo_regs (gdbarch);
2304 if (gdbarch_register_reggroup_p (gdbarch, regnum, vector_reggroup))
2306 printed_something = 1;
2307 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2310 if (!printed_something)
2311 fprintf_filtered (file, "No vector information\n");
2316 vector_info (char *args, int from_tty)
2318 if (!target_has_registers)
2319 error (_("The program has no registers now."));
2321 print_vector_info (gdb_stdout, get_selected_frame (NULL), args);
2324 /* Kill the inferior process. Make us have no inferior. */
2327 kill_command (char *arg, int from_tty)
2329 /* FIXME: This should not really be inferior_ptid (or target_has_execution).
2330 It should be a distinct flag that indicates that a target is active, cuz
2331 some targets don't have processes! */
2333 if (ptid_equal (inferior_ptid, null_ptid))
2334 error (_("The program is not being run."));
2335 if (!query (_("Kill the program being debugged? ")))
2336 error (_("Not confirmed."));
2339 /* If we still have other inferiors to debug, then don't mess with
2340 with their threads. */
2341 if (!have_inferiors ())
2343 init_thread_list (); /* Destroy thread info. */
2345 /* Killing off the inferior can leave us with a core file. If
2346 so, print the state we are left in. */
2347 if (target_has_stack)
2349 printf_filtered (_("In %s,\n"), target_longname);
2350 print_stack_frame (get_selected_frame (NULL), 1, SRC_AND_LOC);
2353 bfd_cache_close_all ();
2356 /* Used in `attach&' command. ARG is a point to an integer
2357 representing a process id. Proceed threads of this process iff
2358 they stopped due to debugger request, and when they did, they
2359 reported a clean stop (GDB_SIGNAL_0). Do not proceed threads
2360 that have been explicitly been told to stop. */
2363 proceed_after_attach_callback (struct thread_info *thread,
2366 int pid = * (int *) arg;
2368 if (ptid_get_pid (thread->ptid) == pid
2369 && !is_exited (thread->ptid)
2370 && !is_executing (thread->ptid)
2371 && !thread->stop_requested
2372 && thread->suspend.stop_signal == GDB_SIGNAL_0)
2374 switch_to_thread (thread->ptid);
2375 clear_proceed_status ();
2376 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
2383 proceed_after_attach (int pid)
2385 /* Don't error out if the current thread is running, because
2386 there may be other stopped threads. */
2387 struct cleanup *old_chain;
2389 /* Backup current thread and selected frame. */
2390 old_chain = make_cleanup_restore_current_thread ();
2392 iterate_over_threads (proceed_after_attach_callback, &pid);
2394 /* Restore selected ptid. */
2395 do_cleanups (old_chain);
2400 * Should save/restore the tty state since it might be that the
2401 * program to be debugged was started on this tty and it wants
2402 * the tty in some state other than what we want. If it's running
2403 * on another terminal or without a terminal, then saving and
2404 * restoring the tty state is a harmless no-op.
2405 * This only needs to be done if we are attaching to a process.
2408 /* attach_command --
2409 takes a program started up outside of gdb and ``attaches'' to it.
2410 This stops it cold in its tracks and allows us to start debugging it.
2411 and wait for the trace-trap that results from attaching. */
2414 attach_command_post_wait (char *args, int from_tty, int async_exec)
2417 char *full_exec_path = NULL;
2418 struct inferior *inferior;
2420 inferior = current_inferior ();
2421 inferior->control.stop_soon = NO_STOP_QUIETLY;
2423 /* If no exec file is yet known, try to determine it from the
2425 exec_file = (char *) get_exec_file (0);
2428 exec_file = target_pid_to_exec_file (PIDGET (inferior_ptid));
2431 /* It's possible we don't have a full path, but rather just a
2432 filename. Some targets, such as HP-UX, don't provide the
2435 Attempt to qualify the filename against the source path.
2436 (If that fails, we'll just fall back on the original
2437 filename. Not much more we can do...) */
2439 if (!source_full_path_of (exec_file, &full_exec_path))
2440 full_exec_path = xstrdup (exec_file);
2442 exec_file_attach (full_exec_path, from_tty);
2443 symbol_file_add_main (full_exec_path, from_tty);
2448 reopen_exec_file ();
2452 /* Take any necessary post-attaching actions for this platform. */
2453 target_post_attach (PIDGET (inferior_ptid));
2455 post_create_inferior (¤t_target, from_tty);
2457 /* Install inferior's terminal modes. */
2458 target_terminal_inferior ();
2462 /* The user requested an `attach&', so be sure to leave threads
2463 that didn't get a signal running. */
2465 /* Immediatelly resume all suspended threads of this inferior,
2466 and this inferior only. This should have no effect on
2467 already running threads. If a thread has been stopped with a
2468 signal, leave it be. */
2470 proceed_after_attach (inferior->pid);
2473 if (inferior_thread ()->suspend.stop_signal == GDB_SIGNAL_0)
2475 clear_proceed_status ();
2476 proceed ((CORE_ADDR) -1, GDB_SIGNAL_DEFAULT, 0);
2482 /* The user requested a plain `attach', so be sure to leave
2483 the inferior stopped. */
2485 if (target_can_async_p ())
2486 async_enable_stdin ();
2488 /* At least the current thread is already stopped. */
2490 /* In all-stop, by definition, all threads have to be already
2491 stopped at this point. In non-stop, however, although the
2492 selected thread is stopped, others may still be executing.
2493 Be sure to explicitly stop all threads of the process. This
2494 should have no effect on already stopped threads. */
2496 target_stop (pid_to_ptid (inferior->pid));
2498 /* Tell the user/frontend where we're stopped. */
2500 if (deprecated_attach_hook)
2501 deprecated_attach_hook ();
2505 struct attach_command_continuation_args
2513 attach_command_continuation (void *args, int err)
2515 struct attach_command_continuation_args *a = args;
2520 attach_command_post_wait (a->args, a->from_tty, a->async_exec);
2524 attach_command_continuation_free_args (void *args)
2526 struct attach_command_continuation_args *a = args;
2533 attach_command (char *args, int from_tty)
2536 struct cleanup *back_to = make_cleanup (null_cleanup, NULL);
2538 dont_repeat (); /* Not for the faint of heart */
2540 if (gdbarch_has_global_solist (target_gdbarch ()))
2541 /* Don't complain if all processes share the same symbol
2544 else if (target_has_execution)
2546 if (query (_("A program is being debugged already. Kill it? ")))
2549 error (_("Not killed."));
2552 /* Clean up any leftovers from other runs. Some other things from
2553 this function should probably be moved into target_pre_inferior. */
2554 target_pre_inferior (from_tty);
2556 if (non_stop && !target_supports_non_stop ())
2557 error (_("Cannot attach to this target in non-stop mode"));
2561 async_exec = strip_bg_char (&args);
2563 /* If we get a request for running in the bg but the target
2564 doesn't support it, error out. */
2565 if (async_exec && !target_can_async_p ())
2566 error (_("Asynchronous execution not supported on this target."));
2569 /* If we don't get a request of running in the bg, then we need
2570 to simulate synchronous (fg) execution. */
2571 if (!async_exec && target_can_async_p ())
2573 /* Simulate synchronous execution. */
2574 async_disable_stdin ();
2575 make_cleanup ((make_cleanup_ftype *)async_enable_stdin, NULL);
2578 target_attach (args, from_tty);
2580 /* Set up the "saved terminal modes" of the inferior
2581 based on what modes we are starting it with. */
2582 target_terminal_init ();
2584 /* Set up execution context to know that we should return from
2585 wait_for_inferior as soon as the target reports a stop. */
2586 init_wait_for_inferior ();
2587 clear_proceed_status ();
2591 /* If we find that the current thread isn't stopped, explicitly
2592 do so now, because we're going to install breakpoints and
2596 /* The user requested an `attach&'; stop just one thread. */
2597 target_stop (inferior_ptid);
2599 /* The user requested an `attach', so stop all threads of this
2601 target_stop (pid_to_ptid (ptid_get_pid (inferior_ptid)));
2604 /* Some system don't generate traps when attaching to inferior.
2605 E.g. Mach 3 or GNU hurd. */
2606 if (!target_attach_no_wait)
2608 struct inferior *inferior = current_inferior ();
2610 /* Careful here. See comments in inferior.h. Basically some
2611 OSes don't ignore SIGSTOPs on continue requests anymore. We
2612 need a way for handle_inferior_event to reset the stop_signal
2613 variable after an attach, and this is what
2614 STOP_QUIETLY_NO_SIGSTOP is for. */
2615 inferior->control.stop_soon = STOP_QUIETLY_NO_SIGSTOP;
2617 if (target_can_async_p ())
2619 /* sync_execution mode. Wait for stop. */
2620 struct attach_command_continuation_args *a;
2622 a = xmalloc (sizeof (*a));
2623 a->args = xstrdup (args);
2624 a->from_tty = from_tty;
2625 a->async_exec = async_exec;
2626 add_inferior_continuation (attach_command_continuation, a,
2627 attach_command_continuation_free_args);
2628 discard_cleanups (back_to);
2632 wait_for_inferior ();
2635 attach_command_post_wait (args, from_tty, async_exec);
2636 discard_cleanups (back_to);
2639 /* We had just found out that the target was already attached to an
2640 inferior. PTID points at a thread of this new inferior, that is
2641 the most likely to be stopped right now, but not necessarily so.
2642 The new inferior is assumed to be already added to the inferior
2643 list at this point. If LEAVE_RUNNING, then leave the threads of
2644 this inferior running, except those we've explicitly seen reported
2648 notice_new_inferior (ptid_t ptid, int leave_running, int from_tty)
2650 struct cleanup* old_chain;
2653 old_chain = make_cleanup (null_cleanup, NULL);
2655 /* If in non-stop, leave threads as running as they were. If
2656 they're stopped for some reason other than us telling it to, the
2657 target reports a signal != GDB_SIGNAL_0. We don't try to
2658 resume threads with such a stop signal. */
2659 async_exec = non_stop;
2661 if (!ptid_equal (inferior_ptid, null_ptid))
2662 make_cleanup_restore_current_thread ();
2664 switch_to_thread (ptid);
2666 /* When we "notice" a new inferior we need to do all the things we
2667 would normally do if we had just attached to it. */
2669 if (is_executing (inferior_ptid))
2671 struct inferior *inferior = current_inferior ();
2673 /* We're going to install breakpoints, and poke at memory,
2674 ensure that the inferior is stopped for a moment while we do
2676 target_stop (inferior_ptid);
2678 inferior->control.stop_soon = STOP_QUIETLY_REMOTE;
2680 /* Wait for stop before proceeding. */
2681 if (target_can_async_p ())
2683 struct attach_command_continuation_args *a;
2685 a = xmalloc (sizeof (*a));
2686 a->args = xstrdup ("");
2687 a->from_tty = from_tty;
2688 a->async_exec = async_exec;
2689 add_inferior_continuation (attach_command_continuation, a,
2690 attach_command_continuation_free_args);
2692 do_cleanups (old_chain);
2696 wait_for_inferior ();
2699 async_exec = leave_running;
2700 attach_command_post_wait ("" /* args */, from_tty, async_exec);
2702 do_cleanups (old_chain);
2707 * takes a program previously attached to and detaches it.
2708 * The program resumes execution and will no longer stop
2709 * on signals, etc. We better not have left any breakpoints
2710 * in the program or it'll die when it hits one. For this
2711 * to work, it may be necessary for the process to have been
2712 * previously attached. It *might* work if the program was
2713 * started via the normal ptrace (PTRACE_TRACEME).
2717 detach_command (char *args, int from_tty)
2719 dont_repeat (); /* Not for the faint of heart. */
2721 if (ptid_equal (inferior_ptid, null_ptid))
2722 error (_("The program is not being run."));
2724 disconnect_tracing (from_tty);
2726 target_detach (args, from_tty);
2728 /* If the solist is global across inferiors, don't clear it when we
2729 detach from a single inferior. */
2730 if (!gdbarch_has_global_solist (target_gdbarch ()))
2731 no_shared_libraries (NULL, from_tty);
2733 /* If we still have inferiors to debug, then don't mess with their
2735 if (!have_inferiors ())
2736 init_thread_list ();
2738 if (deprecated_detach_hook)
2739 deprecated_detach_hook ();
2742 /* Disconnect from the current target without resuming it (leaving it
2743 waiting for a debugger).
2745 We'd better not have left any breakpoints in the program or the
2746 next debugger will get confused. Currently only supported for some
2747 remote targets, since the normal attach mechanisms don't work on
2748 stopped processes on some native platforms (e.g. GNU/Linux). */
2751 disconnect_command (char *args, int from_tty)
2753 dont_repeat (); /* Not for the faint of heart. */
2754 disconnect_tracing (from_tty);
2755 target_disconnect (args, from_tty);
2756 no_shared_libraries (NULL, from_tty);
2757 init_thread_list ();
2758 if (deprecated_detach_hook)
2759 deprecated_detach_hook ();
2763 interrupt_target_1 (int all_threads)
2768 ptid = minus_one_ptid;
2770 ptid = inferior_ptid;
2773 /* Tag the thread as having been explicitly requested to stop, so
2774 other parts of gdb know not to resume this thread automatically,
2775 if it was stopped due to an internal event. Limit this to
2776 non-stop mode, as when debugging a multi-threaded application in
2777 all-stop mode, we will only get one stop event --- it's undefined
2778 which thread will report the event. */
2780 set_stop_requested (ptid, 1);
2783 /* Stop the execution of the target while running in async mode, in
2784 the backgound. In all-stop, stop the whole process. In non-stop
2785 mode, stop the current thread only by default, or stop all threads
2786 if the `-a' switch is used. */
2788 /* interrupt [-a] */
2790 interrupt_target_command (char *args, int from_tty)
2792 if (target_can_async_p ())
2794 int all_threads = 0;
2796 dont_repeat (); /* Not for the faint of heart. */
2799 && strncmp (args, "-a", sizeof ("-a") - 1) == 0)
2802 if (!non_stop && all_threads)
2803 error (_("-a is meaningless in all-stop mode."));
2805 interrupt_target_1 (all_threads);
2810 print_float_info (struct ui_file *file,
2811 struct frame_info *frame, const char *args)
2813 struct gdbarch *gdbarch = get_frame_arch (frame);
2815 if (gdbarch_print_float_info_p (gdbarch))
2816 gdbarch_print_float_info (gdbarch, file, frame, args);
2820 int printed_something = 0;
2823 regnum < gdbarch_num_regs (gdbarch)
2824 + gdbarch_num_pseudo_regs (gdbarch);
2827 if (gdbarch_register_reggroup_p (gdbarch, regnum, float_reggroup))
2829 printed_something = 1;
2830 gdbarch_print_registers_info (gdbarch, file, frame, regnum, 1);
2833 if (!printed_something)
2834 fprintf_filtered (file, "No floating-point info "
2835 "available for this processor.\n");
2840 float_info (char *args, int from_tty)
2842 if (!target_has_registers)
2843 error (_("The program has no registers now."));
2845 print_float_info (gdb_stdout, get_selected_frame (NULL), args);
2849 unset_command (char *args, int from_tty)
2851 printf_filtered (_("\"unset\" must be followed by the "
2852 "name of an unset subcommand.\n"));
2853 help_list (unsetlist, "unset ", -1, gdb_stdout);
2856 /* Implement `info proc' family of commands. */
2859 info_proc_cmd_1 (char *args, enum info_proc_what what, int from_tty)
2861 struct gdbarch *gdbarch = get_current_arch ();
2863 if (!target_info_proc (args, what))
2865 if (gdbarch_info_proc_p (gdbarch))
2866 gdbarch_info_proc (gdbarch, args, what);
2868 error (_("Not supported on this target."));
2872 /* Implement `info proc' when given without any futher parameters. */
2875 info_proc_cmd (char *args, int from_tty)
2877 info_proc_cmd_1 (args, IP_MINIMAL, from_tty);
2880 /* Implement `info proc mappings'. */
2883 info_proc_cmd_mappings (char *args, int from_tty)
2885 info_proc_cmd_1 (args, IP_MAPPINGS, from_tty);
2888 /* Implement `info proc stat'. */
2891 info_proc_cmd_stat (char *args, int from_tty)
2893 info_proc_cmd_1 (args, IP_STAT, from_tty);
2896 /* Implement `info proc status'. */
2899 info_proc_cmd_status (char *args, int from_tty)
2901 info_proc_cmd_1 (args, IP_STATUS, from_tty);
2904 /* Implement `info proc cwd'. */
2907 info_proc_cmd_cwd (char *args, int from_tty)
2909 info_proc_cmd_1 (args, IP_CWD, from_tty);
2912 /* Implement `info proc cmdline'. */
2915 info_proc_cmd_cmdline (char *args, int from_tty)
2917 info_proc_cmd_1 (args, IP_CMDLINE, from_tty);
2920 /* Implement `info proc exe'. */
2923 info_proc_cmd_exe (char *args, int from_tty)
2925 info_proc_cmd_1 (args, IP_EXE, from_tty);
2928 /* Implement `info proc all'. */
2931 info_proc_cmd_all (char *args, int from_tty)
2933 info_proc_cmd_1 (args, IP_ALL, from_tty);
2937 _initialize_infcmd (void)
2939 static struct cmd_list_element *info_proc_cmdlist;
2940 struct cmd_list_element *c = NULL;
2941 const char *cmd_name;
2943 /* Add the filename of the terminal connected to inferior I/O. */
2944 add_setshow_filename_cmd ("inferior-tty", class_run,
2945 &inferior_io_terminal_scratch, _("\
2946 Set terminal for future runs of program being debugged."), _("\
2947 Show terminal for future runs of program being debugged."), _("\
2948 Usage: set inferior-tty /dev/pts/1"),
2949 set_inferior_tty_command,
2950 show_inferior_tty_command,
2951 &setlist, &showlist);
2952 add_com_alias ("tty", "set inferior-tty", class_alias, 0);
2955 add_setshow_string_noescape_cmd (cmd_name, class_run,
2956 &inferior_args_scratch, _("\
2957 Set argument list to give program being debugged when it is started."), _("\
2958 Show argument list to give program being debugged when it is started."), _("\
2959 Follow this command with any number of args, to be passed to the program."),
2962 &setlist, &showlist);
2963 c = lookup_cmd (&cmd_name, setlist, "", -1, 1);
2964 gdb_assert (c != NULL);
2965 set_cmd_completer (c, filename_completer);
2967 c = add_cmd ("environment", no_class, environment_info, _("\
2968 The environment to give the program, or one variable's value.\n\
2969 With an argument VAR, prints the value of environment variable VAR to\n\
2970 give the program being debugged. With no arguments, prints the entire\n\
2971 environment to be given to the program."), &showlist);
2972 set_cmd_completer (c, noop_completer);
2974 add_prefix_cmd ("unset", no_class, unset_command,
2975 _("Complement to certain \"set\" commands."),
2976 &unsetlist, "unset ", 0, &cmdlist);
2978 c = add_cmd ("environment", class_run, unset_environment_command, _("\
2979 Cancel environment variable VAR for the program.\n\
2980 This does not affect the program until the next \"run\" command."),
2982 set_cmd_completer (c, noop_completer);
2984 c = add_cmd ("environment", class_run, set_environment_command, _("\
2985 Set environment variable value to give the program.\n\
2986 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2987 VALUES of environment variables are uninterpreted strings.\n\
2988 This does not affect the program until the next \"run\" command."),
2990 set_cmd_completer (c, noop_completer);
2992 c = add_com ("path", class_files, path_command, _("\
2993 Add directory DIR(s) to beginning of search path for object files.\n\
2994 $cwd in the path means the current working directory.\n\
2995 This path is equivalent to the $PATH shell variable. It is a list of\n\
2996 directories, separated by colons. These directories are searched to find\n\
2997 fully linked executable files and separately compiled object files as \
2999 set_cmd_completer (c, filename_completer);
3001 c = add_cmd ("paths", no_class, path_info, _("\
3002 Current search path for finding object files.\n\
3003 $cwd in the path means the current working directory.\n\
3004 This path is equivalent to the $PATH shell variable. It is a list of\n\
3005 directories, separated by colons. These directories are searched to find\n\
3006 fully linked executable files and separately compiled object files as \
3009 set_cmd_completer (c, noop_completer);
3011 add_prefix_cmd ("kill", class_run, kill_command,
3012 _("Kill execution of program being debugged."),
3013 &killlist, "kill ", 0, &cmdlist);
3015 add_com ("attach", class_run, attach_command, _("\
3016 Attach to a process or file outside of GDB.\n\
3017 This command attaches to another target, of the same type as your last\n\
3018 \"target\" command (\"info files\" will show your target stack).\n\
3019 The command may take as argument a process id or a device file.\n\
3020 For a process id, you must have permission to send the process a signal,\n\
3021 and it must have the same effective uid as the debugger.\n\
3022 When using \"attach\" with a process id, the debugger finds the\n\
3023 program running in the process, looking first in the current working\n\
3024 directory, or (if not found there) using the source file search path\n\
3025 (see the \"directory\" command). You can also use the \"file\" command\n\
3026 to specify the program, and to load its symbol table."));
3028 add_prefix_cmd ("detach", class_run, detach_command, _("\
3029 Detach a process or file previously attached.\n\
3030 If a process, it is no longer traced, and it continues its execution. If\n\
3031 you were debugging a file, the file is closed and gdb no longer accesses it."),
3032 &detachlist, "detach ", 0, &cmdlist);
3034 add_com ("disconnect", class_run, disconnect_command, _("\
3035 Disconnect from a target.\n\
3036 The target will wait for another debugger to connect. Not available for\n\
3039 c = add_com ("signal", class_run, signal_command, _("\
3040 Continue program with the specified signal.\n\
3041 Usage: signal SIGNAL\n\
3042 The SIGNAL argument is processed the same as the handle command.\n\
3044 An argument of \"0\" means continue the program without sending it a signal.\n\
3045 This is useful in cases where the program stopped because of a signal,\n\
3046 and you want to resume the program while discarding the signal."));
3047 set_cmd_completer (c, signal_completer);
3049 add_com ("stepi", class_run, stepi_command, _("\
3050 Step one instruction exactly.\n\
3052 Argument N means step N times (or till program stops for another \
3054 add_com_alias ("si", "stepi", class_alias, 0);
3056 add_com ("nexti", class_run, nexti_command, _("\
3057 Step one instruction, but proceed through subroutine calls.\n\
3059 Argument N means step N times (or till program stops for another \
3061 add_com_alias ("ni", "nexti", class_alias, 0);
3063 add_com ("finish", class_run, finish_command, _("\
3064 Execute until selected stack frame returns.\n\
3066 Upon return, the value returned is printed and put in the value history."));
3067 add_com_alias ("fin", "finish", class_run, 1);
3069 add_com ("next", class_run, next_command, _("\
3070 Step program, proceeding through subroutine calls.\n\
3072 Unlike \"step\", if the current source line calls a subroutine,\n\
3073 this command does not enter the subroutine, but instead steps over\n\
3074 the call, in effect treating it as a single source line."));
3075 add_com_alias ("n", "next", class_run, 1);
3077 add_com_alias ("S", "next", class_run, 1);
3079 add_com ("step", class_run, step_command, _("\
3080 Step program until it reaches a different source line.\n\
3082 Argument N means step N times (or till program stops for another \
3084 add_com_alias ("s", "step", class_run, 1);
3086 c = add_com ("until", class_run, until_command, _("\
3087 Execute until the program reaches a source line greater than the current\n\
3088 or a specified location (same args as break command) within the current \
3090 set_cmd_completer (c, location_completer);
3091 add_com_alias ("u", "until", class_run, 1);
3093 c = add_com ("advance", class_run, advance_command, _("\
3094 Continue the program up to the given location (same form as args for break \
3096 Execution will also stop upon exit from the current stack frame."));
3097 set_cmd_completer (c, location_completer);
3099 c = add_com ("jump", class_run, jump_command, _("\
3100 Continue program being debugged at specified line or address.\n\
3101 Usage: jump <location>\n\
3102 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
3103 for an address to start at."));
3104 set_cmd_completer (c, location_completer);
3105 add_com_alias ("j", "jump", class_run, 1);
3109 c = add_com ("go", class_run, go_command, _("\
3110 Usage: go <location>\n\
3111 Continue program being debugged, stopping at specified line or \n\
3113 Give as argument either LINENUM or *ADDR, where ADDR is an \n\
3114 expression for an address to start at.\n\
3115 This command is a combination of tbreak and jump."));
3116 set_cmd_completer (c, location_completer);
3120 add_com_alias ("g", "go", class_run, 1);
3122 add_com ("continue", class_run, continue_command, _("\
3123 Continue program being debugged, after signal or breakpoint.\n\
3124 Usage: continue [N]\n\
3125 If proceeding from breakpoint, a number N may be used as an argument,\n\
3126 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
3127 the breakpoint won't break until the Nth time it is reached).\n\
3129 If non-stop mode is enabled, continue only the current thread,\n\
3130 otherwise all the threads in the program are continued. To \n\
3131 continue all stopped threads in non-stop mode, use the -a option.\n\
3132 Specifying -a and an ignore count simultaneously is an error."));
3133 add_com_alias ("c", "cont", class_run, 1);
3134 add_com_alias ("fg", "cont", class_run, 1);
3136 c = add_com ("run", class_run, run_command, _("\
3137 Start debugged program. You may specify arguments to give it.\n\
3138 Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
3139 Input and output redirection with \">\", \"<\", or \">>\" are also \
3141 With no arguments, uses arguments last specified (with \"run\" \
3142 or \"set args\").\n\
3143 To cancel previous arguments and run with no arguments,\n\
3144 use \"set args\" without arguments."));
3145 set_cmd_completer (c, filename_completer);
3146 add_com_alias ("r", "run", class_run, 1);
3148 add_com ("R", class_run, run_no_args_command,
3149 _("Start debugged program with no arguments."));
3151 c = add_com ("start", class_run, start_command, _("\
3152 Run the debugged program until the beginning of the main procedure.\n\
3153 You may specify arguments to give to your program, just as with the\n\
3154 \"run\" command."));
3155 set_cmd_completer (c, filename_completer);
3157 add_com ("interrupt", class_run, interrupt_target_command,
3158 _("Interrupt the execution of the debugged program.\n\
3159 If non-stop mode is enabled, interrupt only the current thread,\n\
3160 otherwise all the threads in the program are stopped. To \n\
3161 interrupt all running threads in non-stop mode, use the -a option."));
3163 add_info ("registers", nofp_registers_info, _("\
3164 List of integer registers and their contents, for selected stack frame.\n\
3165 Register name as argument means describe only that register."));
3166 add_info_alias ("r", "registers", 1);
3169 add_com ("lr", class_info, nofp_registers_info, _("\
3170 List of integer registers and their contents, for selected stack frame.\n\
3171 Register name as argument means describe only that register."));
3172 add_info ("all-registers", all_registers_info, _("\
3173 List of all registers and their contents, for selected stack frame.\n\
3174 Register name as argument means describe only that register."));
3176 add_info ("program", program_info,
3177 _("Execution status of the program."));
3179 add_info ("float", float_info,
3180 _("Print the status of the floating point unit\n"));
3182 add_info ("vector", vector_info,
3183 _("Print the status of the vector unit\n"));
3185 add_prefix_cmd ("proc", class_info, info_proc_cmd,
3187 Show /proc process information about any running process.\n\
3188 Specify any process id, or use the program being debugged by default."),
3189 &info_proc_cmdlist, "info proc ",
3190 1/*allow-unknown*/, &infolist);
3192 add_cmd ("mappings", class_info, info_proc_cmd_mappings, _("\
3193 List of mapped memory regions."),
3194 &info_proc_cmdlist);
3196 add_cmd ("stat", class_info, info_proc_cmd_stat, _("\
3197 List process info from /proc/PID/stat."),
3198 &info_proc_cmdlist);
3200 add_cmd ("status", class_info, info_proc_cmd_status, _("\
3201 List process info from /proc/PID/status."),
3202 &info_proc_cmdlist);
3204 add_cmd ("cwd", class_info, info_proc_cmd_cwd, _("\
3205 List current working directory of the process."),
3206 &info_proc_cmdlist);
3208 add_cmd ("cmdline", class_info, info_proc_cmd_cmdline, _("\
3209 List command line arguments of the process."),
3210 &info_proc_cmdlist);
3212 add_cmd ("exe", class_info, info_proc_cmd_exe, _("\
3213 List absolute filename for executable of the process."),
3214 &info_proc_cmdlist);
3216 add_cmd ("all", class_info, info_proc_cmd_all, _("\
3217 List all available /proc info."),
3218 &info_proc_cmdlist);