1 /* Memory-access and commands for "inferior" process, for GDB.
3 Copyright (C) 1986-2014 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 #include "arch-utils.h"
36 #include "completer.h"
38 #include "event-top.h"
39 #include "parser-defs.h"
41 #include "reggroups.h"
45 #include "gdb_assert.h"
47 #include "target-descriptions.h"
48 #include "user-regs.h"
49 #include "exceptions.h"
50 #include "cli/cli-decode.h"
51 #include "gdbthread.h"
53 #include "inline-frame.h"
54 #include "tracepoint.h"
56 #include "continuations.h"
58 #include "cli/cli-utils.h"
60 /* Local functions: */
62 static void nofp_registers_info (char *, int);
64 static void print_return_value (struct value
*function
,
65 struct type
*value_type
);
67 static void until_next_command (int);
69 static void until_command (char *, int);
71 static void path_info (char *, int);
73 static void path_command (char *, int);
75 static void unset_command (char *, int);
77 static void float_info (char *, int);
79 static void disconnect_command (char *, int);
81 static void unset_environment_command (char *, int);
83 static void set_environment_command (char *, int);
85 static void environment_info (char *, int);
87 static void program_info (char *, int);
89 static void finish_command (char *, int);
91 static void signal_command (char *, int);
93 static void jump_command (char *, int);
95 static void step_1 (int, int, char *);
96 static void step_once (int skip_subroutines
, int single_inst
,
97 int count
, int thread
);
99 static void next_command (char *, int);
101 static void step_command (char *, int);
103 static void run_command (char *, int);
105 static void run_no_args_command (char *args
, int from_tty
);
107 static void go_command (char *line_no
, int from_tty
);
109 static int strip_bg_char (char **);
111 void _initialize_infcmd (void);
113 #define ERROR_NO_INFERIOR \
114 if (!target_has_execution) error (_("The program is not being run."));
116 /* Scratch area where string containing arguments to give to the
117 program will be stored by 'set args'. As soon as anything is
118 stored, notice_args_set will move it into per-inferior storage.
119 Arguments are separated by spaces. Empty string (pointer to '\0')
122 static char *inferior_args_scratch
;
124 /* Scratch area where 'set inferior-tty' will store user-provided value.
125 We'll immediate copy it into per-inferior storage. */
127 static char *inferior_io_terminal_scratch
;
129 /* Pid of our debugged inferior, or 0 if no inferior now.
130 Since various parts of infrun.c test this to see whether there is a program
131 being debugged it should be nonzero (currently 3 is used) for remote
134 ptid_t inferior_ptid
;
136 /* Address at which inferior stopped. */
140 /* Nonzero if stopped due to completion of a stack dummy routine. */
142 enum stop_stack_kind stop_stack_dummy
;
144 /* Nonzero if stopped due to a random (unexpected) signal in inferior
147 int stopped_by_random_signal
;
149 /* See inferior.h. */
151 int startup_with_shell
= 1;
154 /* Accessor routines. */
156 /* Set the io terminal for the current inferior. Ownership of
157 TERMINAL_NAME is not transferred. */
160 set_inferior_io_terminal (const char *terminal_name
)
162 xfree (current_inferior ()->terminal
);
163 current_inferior ()->terminal
= terminal_name
? xstrdup (terminal_name
) : 0;
167 get_inferior_io_terminal (void)
169 return current_inferior ()->terminal
;
173 set_inferior_tty_command (char *args
, int from_tty
,
174 struct cmd_list_element
*c
)
176 /* CLI has assigned the user-provided value to inferior_io_terminal_scratch.
177 Now route it to current inferior. */
178 set_inferior_io_terminal (inferior_io_terminal_scratch
);
182 show_inferior_tty_command (struct ui_file
*file
, int from_tty
,
183 struct cmd_list_element
*c
, const char *value
)
185 /* Note that we ignore the passed-in value in favor of computing it
187 const char *inferior_io_terminal
= get_inferior_io_terminal ();
189 if (inferior_io_terminal
== NULL
)
190 inferior_io_terminal
= "";
191 fprintf_filtered (gdb_stdout
,
192 _("Terminal for future runs of program being debugged "
193 "is \"%s\".\n"), inferior_io_terminal
);
197 get_inferior_args (void)
199 if (current_inferior ()->argc
!= 0)
203 n
= construct_inferior_arguments (current_inferior ()->argc
,
204 current_inferior ()->argv
);
205 set_inferior_args (n
);
209 if (current_inferior ()->args
== NULL
)
210 current_inferior ()->args
= xstrdup ("");
212 return current_inferior ()->args
;
215 /* Set the arguments for the current inferior. Ownership of
216 NEWARGS is not transferred. */
219 set_inferior_args (char *newargs
)
221 xfree (current_inferior ()->args
);
222 current_inferior ()->args
= newargs
? xstrdup (newargs
) : NULL
;
223 current_inferior ()->argc
= 0;
224 current_inferior ()->argv
= 0;
228 set_inferior_args_vector (int argc
, char **argv
)
230 current_inferior ()->argc
= argc
;
231 current_inferior ()->argv
= argv
;
234 /* Notice when `set args' is run. */
236 set_args_command (char *args
, int from_tty
, struct cmd_list_element
*c
)
238 /* CLI has assigned the user-provided value to inferior_args_scratch.
239 Now route it to current inferior. */
240 set_inferior_args (inferior_args_scratch
);
243 /* Notice when `show args' is run. */
245 show_args_command (struct ui_file
*file
, int from_tty
,
246 struct cmd_list_element
*c
, const char *value
)
248 /* Note that we ignore the passed-in value in favor of computing it
250 deprecated_show_value_hack (file
, from_tty
, c
, get_inferior_args ());
254 /* Compute command-line string given argument vector. This does the
255 same shell processing as fork_inferior. */
257 construct_inferior_arguments (int argc
, char **argv
)
261 if (startup_with_shell
)
264 /* This holds all the characters considered special to the
266 char *special
= "\"!&*|[]{}<>?`~^=;, \t\n";
267 const char quote
= '"';
269 /* This holds all the characters considered special to the
270 typical Unix shells. We include `^' because the SunOS
271 /bin/sh treats it as a synonym for `|'. */
272 char *special
= "\"!#$&*()\\|[]{}<>?'`~^; \t\n";
273 const char quote
= '\'';
279 /* We over-compute the size. It shouldn't matter. */
280 for (i
= 0; i
< argc
; ++i
)
281 length
+= 3 * strlen (argv
[i
]) + 1 + 2 * (argv
[i
][0] == '\0');
283 result
= (char *) xmalloc (length
);
286 for (i
= 0; i
< argc
; ++i
)
291 /* Need to handle empty arguments specially. */
292 if (argv
[i
][0] == '\0')
302 if (strpbrk (argv
[i
], special
))
308 for (cp
= argv
[i
]; *cp
; ++cp
)
312 /* A newline cannot be quoted with a backslash (it
313 just disappears), only by putting it inside
324 if (strchr (special
, *cp
) != NULL
)
340 /* In this case we can't handle arguments that contain spaces,
341 tabs, or newlines -- see breakup_args(). */
345 for (i
= 0; i
< argc
; ++i
)
347 char *cp
= strchr (argv
[i
], ' ');
349 cp
= strchr (argv
[i
], '\t');
351 cp
= strchr (argv
[i
], '\n');
353 error (_("can't handle command-line "
354 "argument containing whitespace"));
355 length
+= strlen (argv
[i
]) + 1;
358 result
= (char *) xmalloc (length
);
360 for (i
= 0; i
< argc
; ++i
)
363 strcat (result
, " ");
364 strcat (result
, argv
[i
]);
372 /* This function detects whether or not a '&' character (indicating
373 background execution) has been added as *the last* of the arguments ARGS
374 of a command. If it has, it removes it and returns 1. Otherwise it
375 does nothing and returns 0. */
377 strip_bg_char (char **args
)
381 p
= strchr (*args
, '&');
385 if (p
== (*args
+ strlen (*args
) - 1))
387 if (strlen (*args
) > 1)
391 while (*p
== ' ' || *p
== '\t');
402 /* Common actions to take after creating any sort of inferior, by any
403 means (running, attaching, connecting, et cetera). The target
404 should be stopped. */
407 post_create_inferior (struct target_ops
*target
, int from_tty
)
409 volatile struct gdb_exception ex
;
411 /* Be sure we own the terminal in case write operations are performed. */
412 target_terminal_ours ();
414 /* If the target hasn't taken care of this already, do it now.
415 Targets which need to access registers during to_open,
416 to_create_inferior, or to_attach should do it earlier; but many
418 target_find_description ();
420 /* Now that we know the register layout, retrieve current PC. But
421 if the PC is unavailable (e.g., we're opening a core file with
422 missing registers info), ignore it. */
424 TRY_CATCH (ex
, RETURN_MASK_ERROR
)
426 stop_pc
= regcache_read_pc (get_current_regcache ());
428 if (ex
.reason
< 0 && ex
.error
!= NOT_AVAILABLE_ERROR
)
429 throw_exception (ex
);
433 const unsigned solib_add_generation
434 = current_program_space
->solib_add_generation
;
436 /* Create the hooks to handle shared library load and unload
438 solib_create_inferior_hook (from_tty
);
440 if (current_program_space
->solib_add_generation
== solib_add_generation
)
442 /* The platform-specific hook should load initial shared libraries,
443 but didn't. FROM_TTY will be incorrectly 0 but such solib
444 targets should be fixed anyway. Call it only after the solib
445 target has been initialized by solib_create_inferior_hook. */
448 warning (_("platform-specific solib_create_inferior_hook did "
449 "not load initial shared libraries."));
451 /* If the solist is global across processes, there's no need to
453 if (!gdbarch_has_global_solist (target_gdbarch ()))
454 solib_add (NULL
, 0, target
, auto_solib_add
);
458 /* If the user sets watchpoints before execution having started,
459 then she gets software watchpoints, because GDB can't know which
460 target will end up being pushed, or if it supports hardware
461 watchpoints or not. breakpoint_re_set takes care of promoting
462 watchpoints to hardware watchpoints if possible, however, if this
463 new inferior doesn't load shared libraries or we don't pull in
464 symbols from any other source on this target/arch,
465 breakpoint_re_set is never called. Call it now so that software
466 watchpoints get a chance to be promoted to hardware watchpoints
467 if the now pushed target supports hardware watchpoints. */
468 breakpoint_re_set ();
470 observer_notify_inferior_created (target
, from_tty
);
473 /* Kill the inferior if already running. This function is designed
474 to be called when we are about to start the execution of the program
475 from the beginning. Ask the user to confirm that he wants to restart
476 the program being debugged when FROM_TTY is non-null. */
479 kill_if_already_running (int from_tty
)
481 if (! ptid_equal (inferior_ptid
, null_ptid
) && target_has_execution
)
483 /* Bail out before killing the program if we will not be able to
485 target_require_runnable ();
488 && !query (_("The program being debugged has been started already.\n\
489 Start it from the beginning? ")))
490 error (_("Program not restarted."));
495 /* Implement the "run" command. If TBREAK_AT_MAIN is set, then insert
496 a temporary breakpoint at the begining of the main program before
497 running the program. */
500 run_command_1 (char *args
, int from_tty
, int tbreak_at_main
)
503 struct cleanup
*old_chain
;
505 struct ui_out
*uiout
= current_uiout
;
509 kill_if_already_running (from_tty
);
511 init_wait_for_inferior ();
512 clear_breakpoint_hit_counts ();
514 /* Clean up any leftovers from other runs. Some other things from
515 this function should probably be moved into target_pre_inferior. */
516 target_pre_inferior (from_tty
);
518 /* The comment here used to read, "The exec file is re-read every
519 time we do a generic_mourn_inferior, so we just have to worry
520 about the symbol file." The `generic_mourn_inferior' function
521 gets called whenever the program exits. However, suppose the
522 program exits, and *then* the executable file changes? We need
523 to check again here. Since reopen_exec_file doesn't do anything
524 if the timestamp hasn't changed, I don't see the harm. */
528 /* Insert the temporary breakpoint if a location was specified. */
530 tbreak_command (main_name (), 0);
532 exec_file
= (char *) get_exec_file (0);
534 if (non_stop
&& !target_supports_non_stop ())
535 error (_("The target does not support running in non-stop mode."));
537 /* We keep symbols from add-symbol-file, on the grounds that the
538 user might want to add some symbols before running the program
539 (right?). But sometimes (dynamic loading where the user manually
540 introduces the new symbols with add-symbol-file), the code which
541 the symbols describe does not persist between runs. Currently
542 the user has to manually nuke all symbols between runs if they
543 want them to go away (PR 2207). This is probably reasonable. */
547 if (target_can_async_p ())
548 async_disable_stdin ();
552 int async_exec
= strip_bg_char (&args
);
554 /* If we get a request for running in the bg but the target
555 doesn't support it, error out. */
556 if (async_exec
&& !target_can_async_p ())
557 error (_("Asynchronous execution not supported on this target."));
559 /* If we don't get a request of running in the bg, then we need
560 to simulate synchronous (fg) execution. */
561 if (!async_exec
&& target_can_async_p ())
563 /* Simulate synchronous execution. */
564 async_disable_stdin ();
567 /* If there were other args, beside '&', process them. */
569 set_inferior_args (args
);
574 ui_out_field_string (uiout
, NULL
, "Starting program");
575 ui_out_text (uiout
, ": ");
577 ui_out_field_string (uiout
, "execfile", exec_file
);
578 ui_out_spaces (uiout
, 1);
579 /* We call get_inferior_args() because we might need to compute
581 ui_out_field_string (uiout
, "infargs", get_inferior_args ());
582 ui_out_text (uiout
, "\n");
583 ui_out_flush (uiout
);
586 /* We call get_inferior_args() because we might need to compute
588 target_create_inferior (exec_file
, get_inferior_args (),
589 environ_vector (current_inferior ()->environment
),
592 /* We're starting off a new process. When we get out of here, in
593 non-stop mode, finish the state of all threads of that process,
594 but leave other threads alone, as they may be stopped in internal
595 events --- the frontend shouldn't see them as stopped. In
596 all-stop, always finish the state of all threads, as we may be
597 resuming more than just the new process. */
599 ptid
= pid_to_ptid (ptid_get_pid (inferior_ptid
));
601 ptid
= minus_one_ptid
;
602 old_chain
= make_cleanup (finish_thread_state_cleanup
, &ptid
);
604 /* Pass zero for FROM_TTY, because at this point the "run" command
605 has done its thing; now we are setting up the running program. */
606 post_create_inferior (¤t_target
, 0);
608 /* Start the target running. Do not use -1 continuation as it would skip
609 breakpoint right at the entry point. */
610 proceed (regcache_read_pc (get_current_regcache ()), GDB_SIGNAL_0
, 0);
612 /* Since there was no error, there's no need to finish the thread
614 discard_cleanups (old_chain
);
618 run_command (char *args
, int from_tty
)
620 run_command_1 (args
, from_tty
, 0);
624 run_no_args_command (char *args
, int from_tty
)
626 set_inferior_args ("");
630 /* Start the execution of the program up until the beginning of the main
634 start_command (char *args
, int from_tty
)
636 /* Some languages such as Ada need to search inside the program
637 minimal symbols for the location where to put the temporary
638 breakpoint before starting. */
639 if (!have_minimal_symbols ())
640 error (_("No symbol table loaded. Use the \"file\" command."));
642 /* Run the program until reaching the main procedure... */
643 run_command_1 (args
, from_tty
, 1);
647 proceed_thread_callback (struct thread_info
*thread
, void *arg
)
649 /* We go through all threads individually instead of compressing
650 into a single target `resume_all' request, because some threads
651 may be stopped in internal breakpoints/events, or stopped waiting
652 for its turn in the displaced stepping queue (that is, they are
653 running && !executing). The target side has no idea about why
654 the thread is stopped, so a `resume_all' command would resume too
655 much. If/when GDB gains a way to tell the target `hold this
656 thread stopped until I say otherwise', then we can optimize
658 if (!is_stopped (thread
->ptid
))
661 switch_to_thread (thread
->ptid
);
662 clear_proceed_status ();
663 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
, 0);
668 ensure_valid_thread (void)
670 if (ptid_equal (inferior_ptid
, null_ptid
)
671 || is_exited (inferior_ptid
))
672 error (_("Cannot execute this command without a live selected thread."));
675 /* If the user is looking at trace frames, any resumption of execution
676 is likely to mix up recorded and live target data. So simply
677 disallow those commands. */
680 ensure_not_tfind_mode (void)
682 if (get_traceframe_number () >= 0)
683 error (_("Cannot execute this command while looking at trace frames."));
686 /* Throw an error indicating the current thread is running. */
689 error_is_running (void)
691 error (_("Cannot execute this command while "
692 "the selected thread is running."));
695 /* Calls error_is_running if the current thread is running. */
698 ensure_not_running (void)
700 if (is_running (inferior_ptid
))
705 continue_1 (int all_threads
)
708 ensure_not_tfind_mode ();
710 if (non_stop
&& all_threads
)
712 /* Don't error out if the current thread is running, because
713 there may be other stopped threads. */
714 struct cleanup
*old_chain
;
716 /* Backup current thread and selected frame. */
717 old_chain
= make_cleanup_restore_current_thread ();
719 iterate_over_threads (proceed_thread_callback
, NULL
);
721 /* Restore selected ptid. */
722 do_cleanups (old_chain
);
726 ensure_valid_thread ();
727 ensure_not_running ();
728 clear_proceed_status ();
729 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
, 0);
733 /* continue [-a] [proceed-count] [&] */
735 continue_command (char *args
, int from_tty
)
741 /* Find out whether we must run in the background. */
743 async_exec
= strip_bg_char (&args
);
745 /* If we must run in the background, but the target can't do it,
747 if (async_exec
&& !target_can_async_p ())
748 error (_("Asynchronous execution not supported on this target."));
750 /* If we are not asked to run in the bg, then prepare to run in the
751 foreground, synchronously. */
752 if (!async_exec
&& target_can_async_p ())
754 /* Simulate synchronous execution. */
755 async_disable_stdin ();
760 if (strncmp (args
, "-a", sizeof ("-a") - 1) == 0)
763 args
+= sizeof ("-a") - 1;
769 if (!non_stop
&& all_threads
)
770 error (_("`-a' is meaningless in all-stop mode."));
772 if (args
!= NULL
&& all_threads
)
773 error (_("Can't resume all threads and specify "
774 "proceed count simultaneously."));
776 /* If we have an argument left, set proceed count of breakpoint we
783 struct thread_info
*tp
;
786 tp
= find_thread_ptid (inferior_ptid
);
790 struct target_waitstatus ws
;
792 get_last_target_status (&last_ptid
, &ws
);
793 tp
= find_thread_ptid (last_ptid
);
796 bs
= tp
->control
.stop_bpstat
;
798 while ((stat
= bpstat_num (&bs
, &num
)) != 0)
801 set_ignore_count (num
,
802 parse_and_eval_long (args
) - 1,
804 /* set_ignore_count prints a message ending with a period.
805 So print two spaces before "Continuing.". */
807 printf_filtered (" ");
811 if (!stopped
&& from_tty
)
814 ("Not stopped at any breakpoint; argument ignored.\n");
819 printf_filtered (_("Continuing.\n"));
821 continue_1 (all_threads
);
824 /* Record the starting point of a "step" or "next" command. */
827 set_step_frame (void)
829 struct symtab_and_line sal
;
831 find_frame_sal (get_current_frame (), &sal
);
832 set_step_info (get_current_frame (), sal
);
835 /* Step until outside of current statement. */
838 step_command (char *count_string
, int from_tty
)
840 step_1 (0, 0, count_string
);
843 /* Likewise, but skip over subroutine calls as if single instructions. */
846 next_command (char *count_string
, int from_tty
)
848 step_1 (1, 0, count_string
);
851 /* Likewise, but step only one instruction. */
854 stepi_command (char *count_string
, int from_tty
)
856 step_1 (0, 1, count_string
);
860 nexti_command (char *count_string
, int from_tty
)
862 step_1 (1, 1, count_string
);
866 delete_longjmp_breakpoint_cleanup (void *arg
)
868 int thread
= * (int *) arg
;
869 delete_longjmp_breakpoint (thread
);
873 step_1 (int skip_subroutines
, int single_inst
, char *count_string
)
876 struct cleanup
*cleanups
= make_cleanup (null_cleanup
, NULL
);
881 ensure_not_tfind_mode ();
882 ensure_valid_thread ();
883 ensure_not_running ();
886 async_exec
= strip_bg_char (&count_string
);
888 /* If we get a request for running in the bg but the target
889 doesn't support it, error out. */
890 if (async_exec
&& !target_can_async_p ())
891 error (_("Asynchronous execution not supported on this target."));
893 /* If we don't get a request of running in the bg, then we need
894 to simulate synchronous (fg) execution. */
895 if (!async_exec
&& target_can_async_p ())
897 /* Simulate synchronous execution. */
898 async_disable_stdin ();
901 count
= count_string
? parse_and_eval_long (count_string
) : 1;
903 if (!single_inst
|| skip_subroutines
) /* Leave si command alone. */
905 struct thread_info
*tp
= inferior_thread ();
907 if (in_thread_list (inferior_ptid
))
908 thread
= pid_to_thread_id (inferior_ptid
);
910 set_longjmp_breakpoint (tp
, get_frame_id (get_current_frame ()));
912 make_cleanup (delete_longjmp_breakpoint_cleanup
, &thread
);
915 /* In synchronous case, all is well; each step_once call will step once. */
916 if (!target_can_async_p ())
918 for (; count
> 0; count
--)
920 step_once (skip_subroutines
, single_inst
, count
, thread
);
922 if (!target_has_execution
)
926 struct thread_info
*tp
= inferior_thread ();
928 if (!tp
->control
.stop_step
|| !tp
->step_multi
)
930 /* If we stopped for some reason that is not stepping
931 there are no further steps to make. */
938 do_cleanups (cleanups
);
942 /* In the case of an asynchronous target things get complicated;
943 do only one step for now, before returning control to the
944 event loop. Let the continuation figure out how many other
945 steps we need to do, and handle them one at the time, through
947 step_once (skip_subroutines
, single_inst
, count
, thread
);
949 /* We are running, and the continuation is installed. It will
950 disable the longjmp breakpoint as appropriate. */
951 discard_cleanups (cleanups
);
955 struct step_1_continuation_args
958 int skip_subroutines
;
963 /* Called after we are done with one step operation, to check whether
964 we need to step again, before we print the prompt and return control
965 to the user. If count is > 1, we will need to do one more call to
966 proceed(), via step_once(). Basically it is like step_once and
967 step_1_continuation are co-recursive. */
969 step_1_continuation (void *args
, int err
)
971 struct step_1_continuation_args
*a
= args
;
973 if (target_has_execution
)
975 struct thread_info
*tp
;
977 tp
= inferior_thread ();
979 && tp
->step_multi
&& tp
->control
.stop_step
)
981 /* There are more steps to make, and we did stop due to
982 ending a stepping range. Do another step. */
983 step_once (a
->skip_subroutines
, a
->single_inst
,
984 a
->count
- 1, a
->thread
);
990 /* We either hit an error, or stopped for some reason that is
991 not stepping, or there are no further steps to make.
993 if (!a
->single_inst
|| a
->skip_subroutines
)
994 delete_longjmp_breakpoint (a
->thread
);
997 /* Do just one step operation. This is useful to implement the 'step
998 n' kind of commands. In case of asynchronous targets, we will have
999 to set up a continuation to be done after the target stops (after
1000 this one step). For synch targets, the caller handles further
1004 step_once (int skip_subroutines
, int single_inst
, int count
, int thread
)
1006 struct frame_info
*frame
= get_current_frame ();
1010 /* Don't assume THREAD is a valid thread id. It is set to -1 if
1011 the longjmp breakpoint was not required. Use the
1012 INFERIOR_PTID thread instead, which is the same thread when
1014 struct thread_info
*tp
= inferior_thread ();
1016 clear_proceed_status ();
1023 /* Step at an inlined function behaves like "down". */
1024 if (!skip_subroutines
1025 && inline_skipped_frames (inferior_ptid
))
1029 /* Pretend that we've ran. */
1030 resume_ptid
= user_visible_resume_ptid (1);
1031 set_running (resume_ptid
, 1);
1033 step_into_inline_frame (inferior_ptid
);
1035 step_once (skip_subroutines
, single_inst
, count
- 1, thread
);
1038 /* Pretend that we've stopped. */
1041 if (target_can_async_p ())
1042 inferior_event_handler (INF_EXEC_COMPLETE
, NULL
);
1047 pc
= get_frame_pc (frame
);
1048 find_pc_line_pc_range (pc
,
1049 &tp
->control
.step_range_start
,
1050 &tp
->control
.step_range_end
);
1052 tp
->control
.may_range_step
= 1;
1054 /* If we have no line info, switch to stepi mode. */
1055 if (tp
->control
.step_range_end
== 0 && step_stop_if_no_debug
)
1057 tp
->control
.step_range_start
= tp
->control
.step_range_end
= 1;
1058 tp
->control
.may_range_step
= 0;
1060 else if (tp
->control
.step_range_end
== 0)
1064 if (find_pc_partial_function (pc
, &name
,
1065 &tp
->control
.step_range_start
,
1066 &tp
->control
.step_range_end
) == 0)
1067 error (_("Cannot find bounds of current function"));
1069 target_terminal_ours ();
1070 printf_filtered (_("Single stepping until exit from function %s,"
1071 "\nwhich has no line number information.\n"),
1077 /* Say we are stepping, but stop after one insn whatever it does. */
1078 tp
->control
.step_range_start
= tp
->control
.step_range_end
= 1;
1079 if (!skip_subroutines
)
1081 Don't step over function calls, not even to functions lacking
1083 tp
->control
.step_over_calls
= STEP_OVER_NONE
;
1086 if (skip_subroutines
)
1087 tp
->control
.step_over_calls
= STEP_OVER_ALL
;
1089 tp
->step_multi
= (count
> 1);
1090 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
, 1);
1092 /* For async targets, register a continuation to do any
1093 additional steps. For sync targets, the caller will handle
1094 further stepping. */
1095 if (target_can_async_p ())
1097 struct step_1_continuation_args
*args
;
1099 args
= xmalloc (sizeof (*args
));
1100 args
->skip_subroutines
= skip_subroutines
;
1101 args
->single_inst
= single_inst
;
1102 args
->count
= count
;
1103 args
->thread
= thread
;
1105 add_intermediate_continuation (tp
, step_1_continuation
, args
, xfree
);
1111 /* Continue program at specified address. */
1114 jump_command (char *arg
, int from_tty
)
1116 struct gdbarch
*gdbarch
= get_current_arch ();
1118 struct symtabs_and_lines sals
;
1119 struct symtab_and_line sal
;
1125 ensure_not_tfind_mode ();
1126 ensure_valid_thread ();
1127 ensure_not_running ();
1129 /* Find out whether we must run in the background. */
1131 async_exec
= strip_bg_char (&arg
);
1133 /* If we must run in the background, but the target can't do it,
1135 if (async_exec
&& !target_can_async_p ())
1136 error (_("Asynchronous execution not supported on this target."));
1139 error_no_arg (_("starting address"));
1141 sals
= decode_line_with_last_displayed (arg
, DECODE_LINE_FUNFIRSTLINE
);
1142 if (sals
.nelts
!= 1)
1144 error (_("Unreasonable jump request"));
1150 if (sal
.symtab
== 0 && sal
.pc
== 0)
1151 error (_("No source file has been specified."));
1153 resolve_sal_pc (&sal
); /* May error out. */
1155 /* See if we are trying to jump to another function. */
1156 fn
= get_frame_function (get_current_frame ());
1157 sfn
= find_pc_function (sal
.pc
);
1158 if (fn
!= NULL
&& sfn
!= fn
)
1160 if (!query (_("Line %d is not in `%s'. Jump anyway? "), sal
.line
,
1161 SYMBOL_PRINT_NAME (fn
)))
1163 error (_("Not confirmed."));
1170 fixup_symbol_section (sfn
, 0);
1171 if (section_is_overlay (SYMBOL_OBJ_SECTION (SYMBOL_OBJFILE (sfn
), sfn
)) &&
1172 !section_is_mapped (SYMBOL_OBJ_SECTION (SYMBOL_OBJFILE (sfn
), sfn
)))
1174 if (!query (_("WARNING!!! Destination is in "
1175 "unmapped overlay! Jump anyway? ")))
1177 error (_("Not confirmed."));
1187 printf_filtered (_("Continuing at "));
1188 fputs_filtered (paddress (gdbarch
, addr
), gdb_stdout
);
1189 printf_filtered (".\n");
1192 /* If we are not asked to run in the bg, then prepare to run in the
1193 foreground, synchronously. */
1194 if (!async_exec
&& target_can_async_p ())
1196 /* Simulate synchronous execution. */
1197 async_disable_stdin ();
1200 clear_proceed_status ();
1201 proceed (addr
, GDB_SIGNAL_0
, 0);
1205 /* Go to line or address in current procedure. */
1207 go_command (char *line_no
, int from_tty
)
1209 if (line_no
== (char *) NULL
|| !*line_no
)
1210 printf_filtered (_("Usage: go <location>\n"));
1213 tbreak_command (line_no
, from_tty
);
1214 jump_command (line_no
, from_tty
);
1219 /* Continue program giving it specified signal. */
1222 signal_command (char *signum_exp
, int from_tty
)
1224 enum gdb_signal oursig
;
1227 dont_repeat (); /* Too dangerous. */
1229 ensure_not_tfind_mode ();
1230 ensure_valid_thread ();
1231 ensure_not_running ();
1233 /* Find out whether we must run in the background. */
1234 if (signum_exp
!= NULL
)
1235 async_exec
= strip_bg_char (&signum_exp
);
1237 /* If we must run in the background, but the target can't do it,
1239 if (async_exec
&& !target_can_async_p ())
1240 error (_("Asynchronous execution not supported on this target."));
1242 /* If we are not asked to run in the bg, then prepare to run in the
1243 foreground, synchronously. */
1244 if (!async_exec
&& target_can_async_p ())
1246 /* Simulate synchronous execution. */
1247 async_disable_stdin ();
1251 error_no_arg (_("signal number"));
1253 /* It would be even slicker to make signal names be valid expressions,
1254 (the type could be "enum $signal" or some such), then the user could
1255 assign them to convenience variables. */
1256 oursig
= gdb_signal_from_name (signum_exp
);
1258 if (oursig
== GDB_SIGNAL_UNKNOWN
)
1260 /* No, try numeric. */
1261 int num
= parse_and_eval_long (signum_exp
);
1264 oursig
= GDB_SIGNAL_0
;
1266 oursig
= gdb_signal_from_command (num
);
1271 if (oursig
== GDB_SIGNAL_0
)
1272 printf_filtered (_("Continuing with no signal.\n"));
1274 printf_filtered (_("Continuing with signal %s.\n"),
1275 gdb_signal_to_name (oursig
));
1278 clear_proceed_status ();
1279 proceed ((CORE_ADDR
) -1, oursig
, 0);
1282 /* Continuation args to be passed to the "until" command
1284 struct until_next_continuation_args
1286 /* The thread that was current when the command was executed. */
1290 /* A continuation callback for until_next_command. */
1293 until_next_continuation (void *arg
, int err
)
1295 struct until_next_continuation_args
*a
= arg
;
1297 delete_longjmp_breakpoint (a
->thread
);
1300 /* Proceed until we reach a different source line with pc greater than
1301 our current one or exit the function. We skip calls in both cases.
1303 Note that eventually this command should probably be changed so
1304 that only source lines are printed out when we hit the breakpoint
1305 we set. This may involve changes to wait_for_inferior and the
1306 proceed status code. */
1309 until_next_command (int from_tty
)
1311 struct frame_info
*frame
;
1313 struct symbol
*func
;
1314 struct symtab_and_line sal
;
1315 struct thread_info
*tp
= inferior_thread ();
1316 int thread
= tp
->num
;
1317 struct cleanup
*old_chain
;
1319 clear_proceed_status ();
1322 frame
= get_current_frame ();
1324 /* Step until either exited from this function or greater
1325 than the current line (if in symbolic section) or pc (if
1328 pc
= get_frame_pc (frame
);
1329 func
= find_pc_function (pc
);
1333 struct bound_minimal_symbol msymbol
= lookup_minimal_symbol_by_pc (pc
);
1335 if (msymbol
.minsym
== NULL
)
1336 error (_("Execution is not within a known function."));
1338 tp
->control
.step_range_start
= SYMBOL_VALUE_ADDRESS (msymbol
.minsym
);
1339 tp
->control
.step_range_end
= pc
;
1343 sal
= find_pc_line (pc
, 0);
1345 tp
->control
.step_range_start
= BLOCK_START (SYMBOL_BLOCK_VALUE (func
));
1346 tp
->control
.step_range_end
= sal
.end
;
1348 tp
->control
.may_range_step
= 1;
1350 tp
->control
.step_over_calls
= STEP_OVER_ALL
;
1352 tp
->step_multi
= 0; /* Only one call to proceed */
1354 set_longjmp_breakpoint (tp
, get_frame_id (frame
));
1355 old_chain
= make_cleanup (delete_longjmp_breakpoint_cleanup
, &thread
);
1357 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
, 1);
1359 if (target_can_async_p () && is_running (inferior_ptid
))
1361 struct until_next_continuation_args
*cont_args
;
1363 discard_cleanups (old_chain
);
1364 cont_args
= XNEW (struct until_next_continuation_args
);
1365 cont_args
->thread
= inferior_thread ()->num
;
1367 add_continuation (tp
, until_next_continuation
, cont_args
, xfree
);
1370 do_cleanups (old_chain
);
1374 until_command (char *arg
, int from_tty
)
1379 ensure_not_tfind_mode ();
1380 ensure_valid_thread ();
1381 ensure_not_running ();
1383 /* Find out whether we must run in the background. */
1385 async_exec
= strip_bg_char (&arg
);
1387 /* If we must run in the background, but the target can't do it,
1389 if (async_exec
&& !target_can_async_p ())
1390 error (_("Asynchronous execution not supported on this target."));
1392 /* If we are not asked to run in the bg, then prepare to run in the
1393 foreground, synchronously. */
1394 if (!async_exec
&& target_can_async_p ())
1396 /* Simulate synchronous execution. */
1397 async_disable_stdin ();
1401 until_break_command (arg
, from_tty
, 0);
1403 until_next_command (from_tty
);
1407 advance_command (char *arg
, int from_tty
)
1412 ensure_not_tfind_mode ();
1413 ensure_valid_thread ();
1414 ensure_not_running ();
1417 error_no_arg (_("a location"));
1419 /* Find out whether we must run in the background. */
1421 async_exec
= strip_bg_char (&arg
);
1423 /* If we must run in the background, but the target can't do it,
1425 if (async_exec
&& !target_can_async_p ())
1426 error (_("Asynchronous execution not supported on this target."));
1428 /* If we are not asked to run in the bg, then prepare to run in the
1429 foreground, synchronously. */
1430 if (!async_exec
&& target_can_async_p ())
1432 /* Simulate synchronous execution. */
1433 async_disable_stdin ();
1436 until_break_command (arg
, from_tty
, 1);
1439 /* Return the value of the result of a function at the end of a 'finish'
1443 get_return_value (struct value
*function
, struct type
*value_type
)
1445 struct regcache
*stop_regs
= stop_registers
;
1446 struct gdbarch
*gdbarch
;
1447 struct value
*value
;
1448 struct cleanup
*cleanup
= make_cleanup (null_cleanup
, NULL
);
1450 /* If stop_registers were not saved, use the current registers. */
1453 stop_regs
= regcache_dup (get_current_regcache ());
1454 make_cleanup_regcache_xfree (stop_regs
);
1457 gdbarch
= get_regcache_arch (stop_regs
);
1459 CHECK_TYPEDEF (value_type
);
1460 gdb_assert (TYPE_CODE (value_type
) != TYPE_CODE_VOID
);
1462 /* FIXME: 2003-09-27: When returning from a nested inferior function
1463 call, it's possible (with no help from the architecture vector)
1464 to locate and return/print a "struct return" value. This is just
1465 a more complicated case of what is already being done in the
1466 inferior function call code. In fact, when inferior function
1467 calls are made async, this will likely be made the norm. */
1469 switch (gdbarch_return_value (gdbarch
, function
, value_type
,
1472 case RETURN_VALUE_REGISTER_CONVENTION
:
1473 case RETURN_VALUE_ABI_RETURNS_ADDRESS
:
1474 case RETURN_VALUE_ABI_PRESERVES_ADDRESS
:
1475 value
= allocate_value (value_type
);
1476 gdbarch_return_value (gdbarch
, function
, value_type
, stop_regs
,
1477 value_contents_raw (value
), NULL
);
1479 case RETURN_VALUE_STRUCT_CONVENTION
:
1483 internal_error (__FILE__
, __LINE__
, _("bad switch"));
1486 do_cleanups (cleanup
);
1491 /* Print the result of a function at the end of a 'finish' command. */
1494 print_return_value (struct value
*function
, struct type
*value_type
)
1496 struct value
*value
= get_return_value (function
, value_type
);
1497 struct ui_out
*uiout
= current_uiout
;
1501 struct value_print_options opts
;
1502 struct ui_file
*stb
;
1503 struct cleanup
*old_chain
;
1506 stb
= mem_fileopen ();
1507 old_chain
= make_cleanup_ui_file_delete (stb
);
1508 ui_out_text (uiout
, "Value returned is ");
1509 ui_out_field_fmt (uiout
, "gdb-result-var", "$%d",
1510 record_latest_value (value
));
1511 ui_out_text (uiout
, " = ");
1512 get_no_prettyformat_print_options (&opts
);
1513 value_print (value
, stb
, &opts
);
1514 ui_out_field_stream (uiout
, "return-value", stb
);
1515 ui_out_text (uiout
, "\n");
1516 do_cleanups (old_chain
);
1520 ui_out_text (uiout
, "Value returned has type: ");
1521 ui_out_field_string (uiout
, "return-type", TYPE_NAME (value_type
));
1522 ui_out_text (uiout
, ".");
1523 ui_out_text (uiout
, " Cannot determine contents\n");
1527 /* Stuff that needs to be done by the finish command after the target
1528 has stopped. In asynchronous mode, we wait for the target to stop
1529 in the call to poll or select in the event loop, so it is
1530 impossible to do all the stuff as part of the finish_command
1531 function itself. The only chance we have to complete this command
1532 is in fetch_inferior_event, which is called by the event loop as
1533 soon as it detects that the target has stopped. */
1535 struct finish_command_continuation_args
1537 /* The thread that as current when the command was executed. */
1539 struct breakpoint
*breakpoint
;
1540 struct symbol
*function
;
1544 finish_command_continuation (void *arg
, int err
)
1546 struct finish_command_continuation_args
*a
= arg
;
1550 struct thread_info
*tp
= NULL
;
1553 if (!ptid_equal (inferior_ptid
, null_ptid
)
1554 && target_has_execution
1555 && is_stopped (inferior_ptid
))
1557 tp
= inferior_thread ();
1558 bs
= tp
->control
.stop_bpstat
;
1561 if (bpstat_find_breakpoint (bs
, a
->breakpoint
) != NULL
1562 && a
->function
!= NULL
)
1564 struct type
*value_type
;
1566 value_type
= TYPE_TARGET_TYPE (SYMBOL_TYPE (a
->function
));
1568 internal_error (__FILE__
, __LINE__
,
1569 _("finish_command: function has no target type"));
1571 if (TYPE_CODE (value_type
) != TYPE_CODE_VOID
)
1573 volatile struct gdb_exception ex
;
1576 func
= read_var_value (a
->function
, get_current_frame ());
1577 TRY_CATCH (ex
, RETURN_MASK_ALL
)
1579 /* print_return_value can throw an exception in some
1580 circumstances. We need to catch this so that we still
1581 delete the breakpoint. */
1582 print_return_value (func
, value_type
);
1585 exception_print (gdb_stdout
, ex
);
1589 /* We suppress normal call of normal_stop observer and do it
1590 here so that the *stopped notification includes the return
1592 if (bs
!= NULL
&& tp
->control
.proceed_to_finish
)
1593 observer_notify_normal_stop (bs
, 1 /* print frame */);
1596 delete_breakpoint (a
->breakpoint
);
1597 delete_longjmp_breakpoint (a
->thread
);
1601 finish_command_continuation_free_arg (void *arg
)
1606 /* finish_backward -- helper function for finish_command. */
1609 finish_backward (struct symbol
*function
)
1611 struct symtab_and_line sal
;
1612 struct thread_info
*tp
= inferior_thread ();
1614 CORE_ADDR func_addr
;
1616 pc
= get_frame_pc (get_current_frame ());
1618 if (find_pc_partial_function (pc
, NULL
, &func_addr
, NULL
) == 0)
1619 internal_error (__FILE__
, __LINE__
,
1620 _("Finish: couldn't find function."));
1622 sal
= find_pc_line (func_addr
, 0);
1624 tp
->control
.proceed_to_finish
= 1;
1625 /* Special case: if we're sitting at the function entry point,
1626 then all we need to do is take a reverse singlestep. We
1627 don't need to set a breakpoint, and indeed it would do us
1630 Note that this can only happen at frame #0, since there's
1631 no way that a function up the stack can have a return address
1632 that's equal to its entry point. */
1636 struct frame_info
*frame
= get_selected_frame (NULL
);
1637 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
1638 struct symtab_and_line sr_sal
;
1640 /* Set a step-resume at the function's entry point. Once that's
1641 hit, we'll do one more step backwards. */
1644 sr_sal
.pspace
= get_frame_program_space (frame
);
1645 insert_step_resume_breakpoint_at_sal (gdbarch
,
1646 sr_sal
, null_frame_id
);
1648 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
, 0);
1652 /* We're almost there -- we just need to back up by one more
1654 tp
->control
.step_range_start
= tp
->control
.step_range_end
= 1;
1655 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
, 1);
1659 /* finish_forward -- helper function for finish_command. */
1662 finish_forward (struct symbol
*function
, struct frame_info
*frame
)
1664 struct frame_id frame_id
= get_frame_id (frame
);
1665 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
1666 struct symtab_and_line sal
;
1667 struct thread_info
*tp
= inferior_thread ();
1668 struct breakpoint
*breakpoint
;
1669 struct cleanup
*old_chain
;
1670 struct finish_command_continuation_args
*cargs
;
1671 int thread
= tp
->num
;
1673 sal
= find_pc_line (get_frame_pc (frame
), 0);
1674 sal
.pc
= get_frame_pc (frame
);
1676 breakpoint
= set_momentary_breakpoint (gdbarch
, sal
,
1677 get_stack_frame_id (frame
),
1680 /* set_momentary_breakpoint invalidates FRAME. */
1683 old_chain
= make_cleanup_delete_breakpoint (breakpoint
);
1685 set_longjmp_breakpoint (tp
, frame_id
);
1686 make_cleanup (delete_longjmp_breakpoint_cleanup
, &thread
);
1688 /* We want stop_registers, please... */
1689 tp
->control
.proceed_to_finish
= 1;
1690 cargs
= xmalloc (sizeof (*cargs
));
1692 cargs
->thread
= thread
;
1693 cargs
->breakpoint
= breakpoint
;
1694 cargs
->function
= function
;
1695 add_continuation (tp
, finish_command_continuation
, cargs
,
1696 finish_command_continuation_free_arg
);
1697 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
, 0);
1699 discard_cleanups (old_chain
);
1700 if (!target_can_async_p ())
1701 do_all_continuations (0);
1704 /* "finish": Set a temporary breakpoint at the place the selected
1705 frame will return to, then continue. */
1708 finish_command (char *arg
, int from_tty
)
1710 struct frame_info
*frame
;
1711 struct symbol
*function
;
1716 ensure_not_tfind_mode ();
1717 ensure_valid_thread ();
1718 ensure_not_running ();
1720 /* Find out whether we must run in the background. */
1722 async_exec
= strip_bg_char (&arg
);
1724 /* If we must run in the background, but the target can't do it,
1726 if (async_exec
&& !target_can_async_p ())
1727 error (_("Asynchronous execution not supported on this target."));
1729 /* If we are not asked to run in the bg, then prepare to run in the
1730 foreground, synchronously. */
1731 if (!async_exec
&& target_can_async_p ())
1733 /* Simulate synchronous execution. */
1734 async_disable_stdin ();
1738 error (_("The \"finish\" command does not take any arguments."));
1740 frame
= get_prev_frame (get_selected_frame (_("No selected frame.")));
1742 error (_("\"finish\" not meaningful in the outermost frame."));
1744 clear_proceed_status ();
1746 /* Finishing from an inline frame is completely different. We don't
1747 try to show the "return value" - no way to locate it. So we do
1748 not need a completion. */
1749 if (get_frame_type (get_selected_frame (_("No selected frame.")))
1752 /* Claim we are stepping in the calling frame. An empty step
1753 range means that we will stop once we aren't in a function
1754 called by that frame. We don't use the magic "1" value for
1755 step_range_end, because then infrun will think this is nexti,
1756 and not step over the rest of this inlined function call. */
1757 struct thread_info
*tp
= inferior_thread ();
1758 struct symtab_and_line empty_sal
;
1760 init_sal (&empty_sal
);
1761 set_step_info (frame
, empty_sal
);
1762 tp
->control
.step_range_start
= get_frame_pc (frame
);
1763 tp
->control
.step_range_end
= tp
->control
.step_range_start
;
1764 tp
->control
.step_over_calls
= STEP_OVER_ALL
;
1766 /* Print info on the selected frame, including level number but not
1770 printf_filtered (_("Run till exit from "));
1771 print_stack_frame (get_selected_frame (NULL
), 1, LOCATION
, 0);
1774 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
, 1);
1778 /* Ignore TAILCALL_FRAME type frames, they were executed already before
1779 entering THISFRAME. */
1780 while (get_frame_type (frame
) == TAILCALL_FRAME
)
1781 frame
= get_prev_frame (frame
);
1783 /* Find the function we will return from. */
1785 function
= find_pc_function (get_frame_pc (get_selected_frame (NULL
)));
1787 /* Print info on the selected frame, including level number but not
1791 if (execution_direction
== EXEC_REVERSE
)
1792 printf_filtered (_("Run back to call of "));
1794 printf_filtered (_("Run till exit from "));
1796 print_stack_frame (get_selected_frame (NULL
), 1, LOCATION
, 0);
1799 if (execution_direction
== EXEC_REVERSE
)
1800 finish_backward (function
);
1802 finish_forward (function
, frame
);
1807 program_info (char *args
, int from_tty
)
1811 struct thread_info
*tp
;
1814 if (!target_has_execution
)
1816 printf_filtered (_("The program being debugged is not being run.\n"));
1821 ptid
= inferior_ptid
;
1824 struct target_waitstatus ws
;
1826 get_last_target_status (&ptid
, &ws
);
1829 if (ptid_equal (ptid
, null_ptid
) || is_exited (ptid
))
1830 error (_("Invalid selected thread."));
1831 else if (is_running (ptid
))
1832 error (_("Selected thread is running."));
1834 tp
= find_thread_ptid (ptid
);
1835 bs
= tp
->control
.stop_bpstat
;
1836 stat
= bpstat_num (&bs
, &num
);
1838 target_files_info ();
1839 printf_filtered (_("Program stopped at %s.\n"),
1840 paddress (target_gdbarch (), stop_pc
));
1841 if (tp
->control
.stop_step
)
1842 printf_filtered (_("It stopped after being stepped.\n"));
1845 /* There may be several breakpoints in the same place, so this
1846 isn't as strange as it seems. */
1851 printf_filtered (_("It stopped at a breakpoint "
1852 "that has since been deleted.\n"));
1855 printf_filtered (_("It stopped at breakpoint %d.\n"), num
);
1856 stat
= bpstat_num (&bs
, &num
);
1859 else if (tp
->suspend
.stop_signal
!= GDB_SIGNAL_0
)
1861 printf_filtered (_("It stopped with signal %s, %s.\n"),
1862 gdb_signal_to_name (tp
->suspend
.stop_signal
),
1863 gdb_signal_to_string (tp
->suspend
.stop_signal
));
1868 printf_filtered (_("Type \"info stack\" or \"info "
1869 "registers\" for more information.\n"));
1874 environment_info (char *var
, int from_tty
)
1878 char *val
= get_in_environ (current_inferior ()->environment
, var
);
1882 puts_filtered (var
);
1883 puts_filtered (" = ");
1884 puts_filtered (val
);
1885 puts_filtered ("\n");
1889 puts_filtered ("Environment variable \"");
1890 puts_filtered (var
);
1891 puts_filtered ("\" not defined.\n");
1896 char **vector
= environ_vector (current_inferior ()->environment
);
1900 puts_filtered (*vector
++);
1901 puts_filtered ("\n");
1907 set_environment_command (char *arg
, int from_tty
)
1909 char *p
, *val
, *var
;
1913 error_no_arg (_("environment variable and value"));
1915 /* Find seperation between variable name and value. */
1916 p
= (char *) strchr (arg
, '=');
1917 val
= (char *) strchr (arg
, ' ');
1919 if (p
!= 0 && val
!= 0)
1921 /* We have both a space and an equals. If the space is before the
1922 equals, walk forward over the spaces til we see a nonspace
1923 (possibly the equals). */
1928 /* Now if the = is after the char following the spaces,
1929 take the char following the spaces. */
1933 else if (val
!= 0 && p
== 0)
1937 error_no_arg (_("environment variable to set"));
1939 if (p
== 0 || p
[1] == 0)
1943 p
= arg
+ strlen (arg
); /* So that savestring below will work. */
1947 /* Not setting variable value to null. */
1949 while (*val
== ' ' || *val
== '\t')
1953 while (p
!= arg
&& (p
[-1] == ' ' || p
[-1] == '\t'))
1956 var
= savestring (arg
, p
- arg
);
1959 printf_filtered (_("Setting environment variable "
1960 "\"%s\" to null value.\n"),
1962 set_in_environ (current_inferior ()->environment
, var
, "");
1965 set_in_environ (current_inferior ()->environment
, var
, val
);
1970 unset_environment_command (char *var
, int from_tty
)
1974 /* If there is no argument, delete all environment variables.
1975 Ask for confirmation if reading from the terminal. */
1976 if (!from_tty
|| query (_("Delete all environment variables? ")))
1978 free_environ (current_inferior ()->environment
);
1979 current_inferior ()->environment
= make_environ ();
1983 unset_in_environ (current_inferior ()->environment
, var
);
1986 /* Handle the execution path (PATH variable). */
1988 static const char path_var_name
[] = "PATH";
1991 path_info (char *args
, int from_tty
)
1993 puts_filtered ("Executable and object file path: ");
1994 puts_filtered (get_in_environ (current_inferior ()->environment
,
1996 puts_filtered ("\n");
1999 /* Add zero or more directories to the front of the execution path. */
2002 path_command (char *dirname
, int from_tty
)
2008 env
= get_in_environ (current_inferior ()->environment
, path_var_name
);
2009 /* Can be null if path is not set. */
2012 exec_path
= xstrdup (env
);
2013 mod_path (dirname
, &exec_path
);
2014 set_in_environ (current_inferior ()->environment
, path_var_name
, exec_path
);
2017 path_info ((char *) NULL
, from_tty
);
2021 /* Print out the register NAME with value VAL, to FILE, in the default
2025 default_print_one_register_info (struct ui_file
*file
,
2029 struct type
*regtype
= value_type (val
);
2030 int print_raw_format
;
2032 fputs_filtered (name
, file
);
2033 print_spaces_filtered (15 - strlen (name
), file
);
2035 print_raw_format
= (value_entirely_available (val
)
2036 && !value_optimized_out (val
));
2038 /* If virtual format is floating, print it that way, and in raw
2040 if (TYPE_CODE (regtype
) == TYPE_CODE_FLT
2041 || TYPE_CODE (regtype
) == TYPE_CODE_DECFLOAT
)
2044 struct value_print_options opts
;
2045 const gdb_byte
*valaddr
= value_contents_for_printing (val
);
2046 enum bfd_endian byte_order
= gdbarch_byte_order (get_type_arch (regtype
));
2048 get_user_print_options (&opts
);
2052 value_contents_for_printing (val
),
2053 value_embedded_offset (val
), 0,
2054 file
, 0, val
, &opts
, current_language
);
2056 if (print_raw_format
)
2058 fprintf_filtered (file
, "\t(raw ");
2059 print_hex_chars (file
, valaddr
, TYPE_LENGTH (regtype
), byte_order
);
2060 fprintf_filtered (file
, ")");
2065 struct value_print_options opts
;
2067 /* Print the register in hex. */
2068 get_formatted_print_options (&opts
, 'x');
2071 value_contents_for_printing (val
),
2072 value_embedded_offset (val
), 0,
2073 file
, 0, val
, &opts
, current_language
);
2074 /* If not a vector register, print it also according to its
2076 if (print_raw_format
&& TYPE_VECTOR (regtype
) == 0)
2078 get_user_print_options (&opts
);
2080 fprintf_filtered (file
, "\t");
2082 value_contents_for_printing (val
),
2083 value_embedded_offset (val
), 0,
2084 file
, 0, val
, &opts
, current_language
);
2088 fprintf_filtered (file
, "\n");
2091 /* Print out the machine register regnum. If regnum is -1, print all
2092 registers (print_all == 1) or all non-float and non-vector
2093 registers (print_all == 0).
2095 For most machines, having all_registers_info() print the
2096 register(s) one per line is good enough. If a different format is
2097 required, (eg, for MIPS or Pyramid 90x, which both have lots of
2098 regs), or there is an existing convention for showing all the
2099 registers, define the architecture method PRINT_REGISTERS_INFO to
2100 provide that format. */
2103 default_print_registers_info (struct gdbarch
*gdbarch
,
2104 struct ui_file
*file
,
2105 struct frame_info
*frame
,
2106 int regnum
, int print_all
)
2109 const int numregs
= gdbarch_num_regs (gdbarch
)
2110 + gdbarch_num_pseudo_regs (gdbarch
);
2112 for (i
= 0; i
< numregs
; i
++)
2114 /* Decide between printing all regs, non-float / vector regs, or
2120 if (!gdbarch_register_reggroup_p (gdbarch
, i
, all_reggroup
))
2125 if (!gdbarch_register_reggroup_p (gdbarch
, i
, general_reggroup
))
2135 /* If the register name is empty, it is undefined for this
2136 processor, so don't display anything. */
2137 if (gdbarch_register_name (gdbarch
, i
) == NULL
2138 || *(gdbarch_register_name (gdbarch
, i
)) == '\0')
2141 default_print_one_register_info (file
,
2142 gdbarch_register_name (gdbarch
, i
),
2143 value_of_register (i
, frame
));
2148 registers_info (char *addr_exp
, int fpregs
)
2150 struct frame_info
*frame
;
2151 struct gdbarch
*gdbarch
;
2153 if (!target_has_registers
)
2154 error (_("The program has no registers now."));
2155 frame
= get_selected_frame (NULL
);
2156 gdbarch
= get_frame_arch (frame
);
2160 gdbarch_print_registers_info (gdbarch
, gdb_stdout
,
2165 while (*addr_exp
!= '\0')
2170 /* Skip leading white space. */
2171 addr_exp
= skip_spaces (addr_exp
);
2173 /* Discard any leading ``$''. Check that there is something
2174 resembling a register following it. */
2175 if (addr_exp
[0] == '$')
2177 if (isspace ((*addr_exp
)) || (*addr_exp
) == '\0')
2178 error (_("Missing register name"));
2180 /* Find the start/end of this register name/num/group. */
2182 while ((*addr_exp
) != '\0' && !isspace ((*addr_exp
)))
2186 /* Figure out what we've found and display it. */
2188 /* A register name? */
2190 int regnum
= user_reg_map_name_to_regnum (gdbarch
, start
, end
- start
);
2194 /* User registers lie completely outside of the range of
2195 normal registers. Catch them early so that the target
2197 if (regnum
>= gdbarch_num_regs (gdbarch
)
2198 + gdbarch_num_pseudo_regs (gdbarch
))
2200 struct value
*regval
= value_of_user_reg (regnum
, frame
);
2201 const char *regname
= user_reg_map_regnum_to_name (gdbarch
,
2204 /* Print in the same fashion
2205 gdbarch_print_registers_info's default
2206 implementation prints. */
2207 default_print_one_register_info (gdb_stdout
,
2212 gdbarch_print_registers_info (gdbarch
, gdb_stdout
,
2213 frame
, regnum
, fpregs
);
2218 /* A register group? */
2220 struct reggroup
*group
;
2222 for (group
= reggroup_next (gdbarch
, NULL
);
2224 group
= reggroup_next (gdbarch
, group
))
2226 /* Don't bother with a length check. Should the user
2227 enter a short register group name, go with the first
2228 group that matches. */
2229 if (strncmp (start
, reggroup_name (group
), end
- start
) == 0)
2237 regnum
< gdbarch_num_regs (gdbarch
)
2238 + gdbarch_num_pseudo_regs (gdbarch
);
2241 if (gdbarch_register_reggroup_p (gdbarch
, regnum
, group
))
2242 gdbarch_print_registers_info (gdbarch
,
2250 /* Nothing matched. */
2251 error (_("Invalid register `%.*s'"), (int) (end
- start
), start
);
2256 all_registers_info (char *addr_exp
, int from_tty
)
2258 registers_info (addr_exp
, 1);
2262 nofp_registers_info (char *addr_exp
, int from_tty
)
2264 registers_info (addr_exp
, 0);
2268 print_vector_info (struct ui_file
*file
,
2269 struct frame_info
*frame
, const char *args
)
2271 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
2273 if (gdbarch_print_vector_info_p (gdbarch
))
2274 gdbarch_print_vector_info (gdbarch
, file
, frame
, args
);
2278 int printed_something
= 0;
2281 regnum
< gdbarch_num_regs (gdbarch
)
2282 + gdbarch_num_pseudo_regs (gdbarch
);
2285 if (gdbarch_register_reggroup_p (gdbarch
, regnum
, vector_reggroup
))
2287 printed_something
= 1;
2288 gdbarch_print_registers_info (gdbarch
, file
, frame
, regnum
, 1);
2291 if (!printed_something
)
2292 fprintf_filtered (file
, "No vector information\n");
2297 vector_info (char *args
, int from_tty
)
2299 if (!target_has_registers
)
2300 error (_("The program has no registers now."));
2302 print_vector_info (gdb_stdout
, get_selected_frame (NULL
), args
);
2305 /* Kill the inferior process. Make us have no inferior. */
2308 kill_command (char *arg
, int from_tty
)
2310 /* FIXME: This should not really be inferior_ptid (or target_has_execution).
2311 It should be a distinct flag that indicates that a target is active, cuz
2312 some targets don't have processes! */
2314 if (ptid_equal (inferior_ptid
, null_ptid
))
2315 error (_("The program is not being run."));
2316 if (!query (_("Kill the program being debugged? ")))
2317 error (_("Not confirmed."));
2320 /* If we still have other inferiors to debug, then don't mess with
2321 with their threads. */
2322 if (!have_inferiors ())
2324 init_thread_list (); /* Destroy thread info. */
2326 /* Killing off the inferior can leave us with a core file. If
2327 so, print the state we are left in. */
2328 if (target_has_stack
)
2330 printf_filtered (_("In %s,\n"), target_longname
);
2331 print_stack_frame (get_selected_frame (NULL
), 1, SRC_AND_LOC
, 1);
2334 bfd_cache_close_all ();
2337 /* Used in `attach&' command. ARG is a point to an integer
2338 representing a process id. Proceed threads of this process iff
2339 they stopped due to debugger request, and when they did, they
2340 reported a clean stop (GDB_SIGNAL_0). Do not proceed threads
2341 that have been explicitly been told to stop. */
2344 proceed_after_attach_callback (struct thread_info
*thread
,
2347 int pid
= * (int *) arg
;
2349 if (ptid_get_pid (thread
->ptid
) == pid
2350 && !is_exited (thread
->ptid
)
2351 && !is_executing (thread
->ptid
)
2352 && !thread
->stop_requested
2353 && thread
->suspend
.stop_signal
== GDB_SIGNAL_0
)
2355 switch_to_thread (thread
->ptid
);
2356 clear_proceed_status ();
2357 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
, 0);
2364 proceed_after_attach (int pid
)
2366 /* Don't error out if the current thread is running, because
2367 there may be other stopped threads. */
2368 struct cleanup
*old_chain
;
2370 /* Backup current thread and selected frame. */
2371 old_chain
= make_cleanup_restore_current_thread ();
2373 iterate_over_threads (proceed_after_attach_callback
, &pid
);
2375 /* Restore selected ptid. */
2376 do_cleanups (old_chain
);
2381 * Should save/restore the tty state since it might be that the
2382 * program to be debugged was started on this tty and it wants
2383 * the tty in some state other than what we want. If it's running
2384 * on another terminal or without a terminal, then saving and
2385 * restoring the tty state is a harmless no-op.
2386 * This only needs to be done if we are attaching to a process.
2389 /* attach_command --
2390 takes a program started up outside of gdb and ``attaches'' to it.
2391 This stops it cold in its tracks and allows us to start debugging it.
2392 and wait for the trace-trap that results from attaching. */
2395 attach_command_post_wait (char *args
, int from_tty
, int async_exec
)
2398 char *full_exec_path
= NULL
;
2399 struct inferior
*inferior
;
2401 inferior
= current_inferior ();
2402 inferior
->control
.stop_soon
= NO_STOP_QUIETLY
;
2404 /* If no exec file is yet known, try to determine it from the
2406 exec_file
= (char *) get_exec_file (0);
2409 exec_file
= target_pid_to_exec_file (ptid_get_pid (inferior_ptid
));
2412 /* It's possible we don't have a full path, but rather just a
2413 filename. Some targets, such as HP-UX, don't provide the
2416 Attempt to qualify the filename against the source path.
2417 (If that fails, we'll just fall back on the original
2418 filename. Not much more we can do...) */
2420 if (!source_full_path_of (exec_file
, &full_exec_path
))
2421 full_exec_path
= xstrdup (exec_file
);
2423 exec_file_attach (full_exec_path
, from_tty
);
2424 symbol_file_add_main (full_exec_path
, from_tty
);
2429 reopen_exec_file ();
2433 /* Take any necessary post-attaching actions for this platform. */
2434 target_post_attach (ptid_get_pid (inferior_ptid
));
2436 post_create_inferior (¤t_target
, from_tty
);
2438 /* Install inferior's terminal modes. */
2439 target_terminal_inferior ();
2443 /* The user requested an `attach&', so be sure to leave threads
2444 that didn't get a signal running. */
2446 /* Immediatelly resume all suspended threads of this inferior,
2447 and this inferior only. This should have no effect on
2448 already running threads. If a thread has been stopped with a
2449 signal, leave it be. */
2451 proceed_after_attach (inferior
->pid
);
2454 if (inferior_thread ()->suspend
.stop_signal
== GDB_SIGNAL_0
)
2456 clear_proceed_status ();
2457 proceed ((CORE_ADDR
) -1, GDB_SIGNAL_DEFAULT
, 0);
2463 /* The user requested a plain `attach', so be sure to leave
2464 the inferior stopped. */
2466 if (target_can_async_p ())
2467 async_enable_stdin ();
2469 /* At least the current thread is already stopped. */
2471 /* In all-stop, by definition, all threads have to be already
2472 stopped at this point. In non-stop, however, although the
2473 selected thread is stopped, others may still be executing.
2474 Be sure to explicitly stop all threads of the process. This
2475 should have no effect on already stopped threads. */
2477 target_stop (pid_to_ptid (inferior
->pid
));
2479 /* Tell the user/frontend where we're stopped. */
2481 if (deprecated_attach_hook
)
2482 deprecated_attach_hook ();
2486 struct attach_command_continuation_args
2494 attach_command_continuation (void *args
, int err
)
2496 struct attach_command_continuation_args
*a
= args
;
2501 attach_command_post_wait (a
->args
, a
->from_tty
, a
->async_exec
);
2505 attach_command_continuation_free_args (void *args
)
2507 struct attach_command_continuation_args
*a
= args
;
2514 attach_command (char *args
, int from_tty
)
2517 struct cleanup
*back_to
= make_cleanup (null_cleanup
, NULL
);
2519 dont_repeat (); /* Not for the faint of heart */
2521 if (gdbarch_has_global_solist (target_gdbarch ()))
2522 /* Don't complain if all processes share the same symbol
2525 else if (target_has_execution
)
2527 if (query (_("A program is being debugged already. Kill it? ")))
2530 error (_("Not killed."));
2533 /* Clean up any leftovers from other runs. Some other things from
2534 this function should probably be moved into target_pre_inferior. */
2535 target_pre_inferior (from_tty
);
2537 if (non_stop
&& !target_supports_non_stop ())
2538 error (_("Cannot attach to this target in non-stop mode"));
2542 async_exec
= strip_bg_char (&args
);
2544 /* If we get a request for running in the bg but the target
2545 doesn't support it, error out. */
2546 if (async_exec
&& !target_can_async_p ())
2547 error (_("Asynchronous execution not supported on this target."));
2550 /* If we don't get a request of running in the bg, then we need
2551 to simulate synchronous (fg) execution. */
2552 if (!async_exec
&& target_can_async_p ())
2554 /* Simulate synchronous execution. */
2555 async_disable_stdin ();
2556 make_cleanup ((make_cleanup_ftype
*)async_enable_stdin
, NULL
);
2559 target_attach (args
, from_tty
);
2561 /* Set up the "saved terminal modes" of the inferior
2562 based on what modes we are starting it with. */
2563 target_terminal_init ();
2565 /* Set up execution context to know that we should return from
2566 wait_for_inferior as soon as the target reports a stop. */
2567 init_wait_for_inferior ();
2568 clear_proceed_status ();
2572 /* If we find that the current thread isn't stopped, explicitly
2573 do so now, because we're going to install breakpoints and
2577 /* The user requested an `attach&'; stop just one thread. */
2578 target_stop (inferior_ptid
);
2580 /* The user requested an `attach', so stop all threads of this
2582 target_stop (pid_to_ptid (ptid_get_pid (inferior_ptid
)));
2585 /* Some system don't generate traps when attaching to inferior.
2586 E.g. Mach 3 or GNU hurd. */
2587 if (!target_attach_no_wait
)
2589 struct inferior
*inferior
= current_inferior ();
2591 /* Careful here. See comments in inferior.h. Basically some
2592 OSes don't ignore SIGSTOPs on continue requests anymore. We
2593 need a way for handle_inferior_event to reset the stop_signal
2594 variable after an attach, and this is what
2595 STOP_QUIETLY_NO_SIGSTOP is for. */
2596 inferior
->control
.stop_soon
= STOP_QUIETLY_NO_SIGSTOP
;
2598 if (target_can_async_p ())
2600 /* sync_execution mode. Wait for stop. */
2601 struct attach_command_continuation_args
*a
;
2603 a
= xmalloc (sizeof (*a
));
2604 a
->args
= xstrdup (args
);
2605 a
->from_tty
= from_tty
;
2606 a
->async_exec
= async_exec
;
2607 add_inferior_continuation (attach_command_continuation
, a
,
2608 attach_command_continuation_free_args
);
2609 discard_cleanups (back_to
);
2613 wait_for_inferior ();
2616 attach_command_post_wait (args
, from_tty
, async_exec
);
2617 discard_cleanups (back_to
);
2620 /* We had just found out that the target was already attached to an
2621 inferior. PTID points at a thread of this new inferior, that is
2622 the most likely to be stopped right now, but not necessarily so.
2623 The new inferior is assumed to be already added to the inferior
2624 list at this point. If LEAVE_RUNNING, then leave the threads of
2625 this inferior running, except those we've explicitly seen reported
2629 notice_new_inferior (ptid_t ptid
, int leave_running
, int from_tty
)
2631 struct cleanup
* old_chain
;
2634 old_chain
= make_cleanup (null_cleanup
, NULL
);
2636 /* If in non-stop, leave threads as running as they were. If
2637 they're stopped for some reason other than us telling it to, the
2638 target reports a signal != GDB_SIGNAL_0. We don't try to
2639 resume threads with such a stop signal. */
2640 async_exec
= non_stop
;
2642 if (!ptid_equal (inferior_ptid
, null_ptid
))
2643 make_cleanup_restore_current_thread ();
2645 switch_to_thread (ptid
);
2647 /* When we "notice" a new inferior we need to do all the things we
2648 would normally do if we had just attached to it. */
2650 if (is_executing (inferior_ptid
))
2652 struct inferior
*inferior
= current_inferior ();
2654 /* We're going to install breakpoints, and poke at memory,
2655 ensure that the inferior is stopped for a moment while we do
2657 target_stop (inferior_ptid
);
2659 inferior
->control
.stop_soon
= STOP_QUIETLY_REMOTE
;
2661 /* Wait for stop before proceeding. */
2662 if (target_can_async_p ())
2664 struct attach_command_continuation_args
*a
;
2666 a
= xmalloc (sizeof (*a
));
2667 a
->args
= xstrdup ("");
2668 a
->from_tty
= from_tty
;
2669 a
->async_exec
= async_exec
;
2670 add_inferior_continuation (attach_command_continuation
, a
,
2671 attach_command_continuation_free_args
);
2673 do_cleanups (old_chain
);
2677 wait_for_inferior ();
2680 async_exec
= leave_running
;
2681 attach_command_post_wait ("" /* args */, from_tty
, async_exec
);
2683 do_cleanups (old_chain
);
2688 * takes a program previously attached to and detaches it.
2689 * The program resumes execution and will no longer stop
2690 * on signals, etc. We better not have left any breakpoints
2691 * in the program or it'll die when it hits one. For this
2692 * to work, it may be necessary for the process to have been
2693 * previously attached. It *might* work if the program was
2694 * started via the normal ptrace (PTRACE_TRACEME).
2698 detach_command (char *args
, int from_tty
)
2700 dont_repeat (); /* Not for the faint of heart. */
2702 if (ptid_equal (inferior_ptid
, null_ptid
))
2703 error (_("The program is not being run."));
2705 query_if_trace_running (from_tty
);
2707 disconnect_tracing ();
2709 target_detach (args
, from_tty
);
2711 /* If the solist is global across inferiors, don't clear it when we
2712 detach from a single inferior. */
2713 if (!gdbarch_has_global_solist (target_gdbarch ()))
2714 no_shared_libraries (NULL
, from_tty
);
2716 /* If we still have inferiors to debug, then don't mess with their
2718 if (!have_inferiors ())
2719 init_thread_list ();
2721 if (deprecated_detach_hook
)
2722 deprecated_detach_hook ();
2725 /* Disconnect from the current target without resuming it (leaving it
2726 waiting for a debugger).
2728 We'd better not have left any breakpoints in the program or the
2729 next debugger will get confused. Currently only supported for some
2730 remote targets, since the normal attach mechanisms don't work on
2731 stopped processes on some native platforms (e.g. GNU/Linux). */
2734 disconnect_command (char *args
, int from_tty
)
2736 dont_repeat (); /* Not for the faint of heart. */
2737 query_if_trace_running (from_tty
);
2738 disconnect_tracing ();
2739 target_disconnect (args
, from_tty
);
2740 no_shared_libraries (NULL
, from_tty
);
2741 init_thread_list ();
2742 if (deprecated_detach_hook
)
2743 deprecated_detach_hook ();
2747 interrupt_target_1 (int all_threads
)
2752 ptid
= minus_one_ptid
;
2754 ptid
= inferior_ptid
;
2757 /* Tag the thread as having been explicitly requested to stop, so
2758 other parts of gdb know not to resume this thread automatically,
2759 if it was stopped due to an internal event. Limit this to
2760 non-stop mode, as when debugging a multi-threaded application in
2761 all-stop mode, we will only get one stop event --- it's undefined
2762 which thread will report the event. */
2764 set_stop_requested (ptid
, 1);
2767 /* Stop the execution of the target while running in async mode, in
2768 the backgound. In all-stop, stop the whole process. In non-stop
2769 mode, stop the current thread only by default, or stop all threads
2770 if the `-a' switch is used. */
2772 /* interrupt [-a] */
2774 interrupt_target_command (char *args
, int from_tty
)
2776 if (target_can_async_p ())
2778 int all_threads
= 0;
2780 dont_repeat (); /* Not for the faint of heart. */
2783 && strncmp (args
, "-a", sizeof ("-a") - 1) == 0)
2786 if (!non_stop
&& all_threads
)
2787 error (_("-a is meaningless in all-stop mode."));
2789 interrupt_target_1 (all_threads
);
2794 print_float_info (struct ui_file
*file
,
2795 struct frame_info
*frame
, const char *args
)
2797 struct gdbarch
*gdbarch
= get_frame_arch (frame
);
2799 if (gdbarch_print_float_info_p (gdbarch
))
2800 gdbarch_print_float_info (gdbarch
, file
, frame
, args
);
2804 int printed_something
= 0;
2807 regnum
< gdbarch_num_regs (gdbarch
)
2808 + gdbarch_num_pseudo_regs (gdbarch
);
2811 if (gdbarch_register_reggroup_p (gdbarch
, regnum
, float_reggroup
))
2813 printed_something
= 1;
2814 gdbarch_print_registers_info (gdbarch
, file
, frame
, regnum
, 1);
2817 if (!printed_something
)
2818 fprintf_filtered (file
, "No floating-point info "
2819 "available for this processor.\n");
2824 float_info (char *args
, int from_tty
)
2826 if (!target_has_registers
)
2827 error (_("The program has no registers now."));
2829 print_float_info (gdb_stdout
, get_selected_frame (NULL
), args
);
2833 unset_command (char *args
, int from_tty
)
2835 printf_filtered (_("\"unset\" must be followed by the "
2836 "name of an unset subcommand.\n"));
2837 help_list (unsetlist
, "unset ", -1, gdb_stdout
);
2840 /* Implement `info proc' family of commands. */
2843 info_proc_cmd_1 (char *args
, enum info_proc_what what
, int from_tty
)
2845 struct gdbarch
*gdbarch
= get_current_arch ();
2847 if (!target_info_proc (args
, what
))
2849 if (gdbarch_info_proc_p (gdbarch
))
2850 gdbarch_info_proc (gdbarch
, args
, what
);
2852 error (_("Not supported on this target."));
2856 /* Implement `info proc' when given without any futher parameters. */
2859 info_proc_cmd (char *args
, int from_tty
)
2861 info_proc_cmd_1 (args
, IP_MINIMAL
, from_tty
);
2864 /* Implement `info proc mappings'. */
2867 info_proc_cmd_mappings (char *args
, int from_tty
)
2869 info_proc_cmd_1 (args
, IP_MAPPINGS
, from_tty
);
2872 /* Implement `info proc stat'. */
2875 info_proc_cmd_stat (char *args
, int from_tty
)
2877 info_proc_cmd_1 (args
, IP_STAT
, from_tty
);
2880 /* Implement `info proc status'. */
2883 info_proc_cmd_status (char *args
, int from_tty
)
2885 info_proc_cmd_1 (args
, IP_STATUS
, from_tty
);
2888 /* Implement `info proc cwd'. */
2891 info_proc_cmd_cwd (char *args
, int from_tty
)
2893 info_proc_cmd_1 (args
, IP_CWD
, from_tty
);
2896 /* Implement `info proc cmdline'. */
2899 info_proc_cmd_cmdline (char *args
, int from_tty
)
2901 info_proc_cmd_1 (args
, IP_CMDLINE
, from_tty
);
2904 /* Implement `info proc exe'. */
2907 info_proc_cmd_exe (char *args
, int from_tty
)
2909 info_proc_cmd_1 (args
, IP_EXE
, from_tty
);
2912 /* Implement `info proc all'. */
2915 info_proc_cmd_all (char *args
, int from_tty
)
2917 info_proc_cmd_1 (args
, IP_ALL
, from_tty
);
2921 _initialize_infcmd (void)
2923 static struct cmd_list_element
*info_proc_cmdlist
;
2924 struct cmd_list_element
*c
= NULL
;
2925 const char *cmd_name
;
2927 /* Add the filename of the terminal connected to inferior I/O. */
2928 add_setshow_filename_cmd ("inferior-tty", class_run
,
2929 &inferior_io_terminal_scratch
, _("\
2930 Set terminal for future runs of program being debugged."), _("\
2931 Show terminal for future runs of program being debugged."), _("\
2932 Usage: set inferior-tty /dev/pts/1"),
2933 set_inferior_tty_command
,
2934 show_inferior_tty_command
,
2935 &setlist
, &showlist
);
2936 add_com_alias ("tty", "set inferior-tty", class_alias
, 0);
2939 add_setshow_string_noescape_cmd (cmd_name
, class_run
,
2940 &inferior_args_scratch
, _("\
2941 Set argument list to give program being debugged when it is started."), _("\
2942 Show argument list to give program being debugged when it is started."), _("\
2943 Follow this command with any number of args, to be passed to the program."),
2946 &setlist
, &showlist
);
2947 c
= lookup_cmd (&cmd_name
, setlist
, "", -1, 1);
2948 gdb_assert (c
!= NULL
);
2949 set_cmd_completer (c
, filename_completer
);
2951 c
= add_cmd ("environment", no_class
, environment_info
, _("\
2952 The environment to give the program, or one variable's value.\n\
2953 With an argument VAR, prints the value of environment variable VAR to\n\
2954 give the program being debugged. With no arguments, prints the entire\n\
2955 environment to be given to the program."), &showlist
);
2956 set_cmd_completer (c
, noop_completer
);
2958 add_prefix_cmd ("unset", no_class
, unset_command
,
2959 _("Complement to certain \"set\" commands."),
2960 &unsetlist
, "unset ", 0, &cmdlist
);
2962 c
= add_cmd ("environment", class_run
, unset_environment_command
, _("\
2963 Cancel environment variable VAR for the program.\n\
2964 This does not affect the program until the next \"run\" command."),
2966 set_cmd_completer (c
, noop_completer
);
2968 c
= add_cmd ("environment", class_run
, set_environment_command
, _("\
2969 Set environment variable value to give the program.\n\
2970 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2971 VALUES of environment variables are uninterpreted strings.\n\
2972 This does not affect the program until the next \"run\" command."),
2974 set_cmd_completer (c
, noop_completer
);
2976 c
= add_com ("path", class_files
, path_command
, _("\
2977 Add directory DIR(s) to beginning of search path for object files.\n\
2978 $cwd in the path means the current working directory.\n\
2979 This path is equivalent to the $PATH shell variable. It is a list of\n\
2980 directories, separated by colons. These directories are searched to find\n\
2981 fully linked executable files and separately compiled object files as \
2983 set_cmd_completer (c
, filename_completer
);
2985 c
= add_cmd ("paths", no_class
, path_info
, _("\
2986 Current search path for finding object files.\n\
2987 $cwd in the path means the current working directory.\n\
2988 This path is equivalent to the $PATH shell variable. It is a list of\n\
2989 directories, separated by colons. These directories are searched to find\n\
2990 fully linked executable files and separately compiled object files as \
2993 set_cmd_completer (c
, noop_completer
);
2995 add_prefix_cmd ("kill", class_run
, kill_command
,
2996 _("Kill execution of program being debugged."),
2997 &killlist
, "kill ", 0, &cmdlist
);
2999 add_com ("attach", class_run
, attach_command
, _("\
3000 Attach to a process or file outside of GDB.\n\
3001 This command attaches to another target, of the same type as your last\n\
3002 \"target\" command (\"info files\" will show your target stack).\n\
3003 The command may take as argument a process id or a device file.\n\
3004 For a process id, you must have permission to send the process a signal,\n\
3005 and it must have the same effective uid as the debugger.\n\
3006 When using \"attach\" with a process id, the debugger finds the\n\
3007 program running in the process, looking first in the current working\n\
3008 directory, or (if not found there) using the source file search path\n\
3009 (see the \"directory\" command). You can also use the \"file\" command\n\
3010 to specify the program, and to load its symbol table."));
3012 add_prefix_cmd ("detach", class_run
, detach_command
, _("\
3013 Detach a process or file previously attached.\n\
3014 If a process, it is no longer traced, and it continues its execution. If\n\
3015 you were debugging a file, the file is closed and gdb no longer accesses it."),
3016 &detachlist
, "detach ", 0, &cmdlist
);
3018 add_com ("disconnect", class_run
, disconnect_command
, _("\
3019 Disconnect from a target.\n\
3020 The target will wait for another debugger to connect. Not available for\n\
3023 c
= add_com ("signal", class_run
, signal_command
, _("\
3024 Continue program with the specified signal.\n\
3025 Usage: signal SIGNAL\n\
3026 The SIGNAL argument is processed the same as the handle command.\n\
3028 An argument of \"0\" means continue the program without sending it a signal.\n\
3029 This is useful in cases where the program stopped because of a signal,\n\
3030 and you want to resume the program while discarding the signal."));
3031 set_cmd_completer (c
, signal_completer
);
3033 add_com ("stepi", class_run
, stepi_command
, _("\
3034 Step one instruction exactly.\n\
3036 Argument N means step N times (or till program stops for another \
3038 add_com_alias ("si", "stepi", class_alias
, 0);
3040 add_com ("nexti", class_run
, nexti_command
, _("\
3041 Step one instruction, but proceed through subroutine calls.\n\
3043 Argument N means step N times (or till program stops for another \
3045 add_com_alias ("ni", "nexti", class_alias
, 0);
3047 add_com ("finish", class_run
, finish_command
, _("\
3048 Execute until selected stack frame returns.\n\
3050 Upon return, the value returned is printed and put in the value history."));
3051 add_com_alias ("fin", "finish", class_run
, 1);
3053 add_com ("next", class_run
, next_command
, _("\
3054 Step program, proceeding through subroutine calls.\n\
3056 Unlike \"step\", if the current source line calls a subroutine,\n\
3057 this command does not enter the subroutine, but instead steps over\n\
3058 the call, in effect treating it as a single source line."));
3059 add_com_alias ("n", "next", class_run
, 1);
3061 add_com_alias ("S", "next", class_run
, 1);
3063 add_com ("step", class_run
, step_command
, _("\
3064 Step program until it reaches a different source line.\n\
3066 Argument N means step N times (or till program stops for another \
3068 add_com_alias ("s", "step", class_run
, 1);
3070 c
= add_com ("until", class_run
, until_command
, _("\
3071 Execute until the program reaches a source line greater than the current\n\
3072 or a specified location (same args as break command) within the current \
3074 set_cmd_completer (c
, location_completer
);
3075 add_com_alias ("u", "until", class_run
, 1);
3077 c
= add_com ("advance", class_run
, advance_command
, _("\
3078 Continue the program up to the given location (same form as args for break \
3080 Execution will also stop upon exit from the current stack frame."));
3081 set_cmd_completer (c
, location_completer
);
3083 c
= add_com ("jump", class_run
, jump_command
, _("\
3084 Continue program being debugged at specified line or address.\n\
3085 Usage: jump <location>\n\
3086 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
3087 for an address to start at."));
3088 set_cmd_completer (c
, location_completer
);
3089 add_com_alias ("j", "jump", class_run
, 1);
3093 c
= add_com ("go", class_run
, go_command
, _("\
3094 Usage: go <location>\n\
3095 Continue program being debugged, stopping at specified line or \n\
3097 Give as argument either LINENUM or *ADDR, where ADDR is an \n\
3098 expression for an address to start at.\n\
3099 This command is a combination of tbreak and jump."));
3100 set_cmd_completer (c
, location_completer
);
3104 add_com_alias ("g", "go", class_run
, 1);
3106 add_com ("continue", class_run
, continue_command
, _("\
3107 Continue program being debugged, after signal or breakpoint.\n\
3108 Usage: continue [N]\n\
3109 If proceeding from breakpoint, a number N may be used as an argument,\n\
3110 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
3111 the breakpoint won't break until the Nth time it is reached).\n\
3113 If non-stop mode is enabled, continue only the current thread,\n\
3114 otherwise all the threads in the program are continued. To \n\
3115 continue all stopped threads in non-stop mode, use the -a option.\n\
3116 Specifying -a and an ignore count simultaneously is an error."));
3117 add_com_alias ("c", "cont", class_run
, 1);
3118 add_com_alias ("fg", "cont", class_run
, 1);
3120 c
= add_com ("run", class_run
, run_command
, _("\
3121 Start debugged program. You may specify arguments to give it.\n\
3122 Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
3123 Input and output redirection with \">\", \"<\", or \">>\" are also \
3125 With no arguments, uses arguments last specified (with \"run\" \
3126 or \"set args\").\n\
3127 To cancel previous arguments and run with no arguments,\n\
3128 use \"set args\" without arguments."));
3129 set_cmd_completer (c
, filename_completer
);
3130 add_com_alias ("r", "run", class_run
, 1);
3132 add_com ("R", class_run
, run_no_args_command
,
3133 _("Start debugged program with no arguments."));
3135 c
= add_com ("start", class_run
, start_command
, _("\
3136 Run the debugged program until the beginning of the main procedure.\n\
3137 You may specify arguments to give to your program, just as with the\n\
3138 \"run\" command."));
3139 set_cmd_completer (c
, filename_completer
);
3141 add_com ("interrupt", class_run
, interrupt_target_command
,
3142 _("Interrupt the execution of the debugged program.\n\
3143 If non-stop mode is enabled, interrupt only the current thread,\n\
3144 otherwise all the threads in the program are stopped. To \n\
3145 interrupt all running threads in non-stop mode, use the -a option."));
3147 add_info ("registers", nofp_registers_info
, _("\
3148 List of integer registers and their contents, for selected stack frame.\n\
3149 Register name as argument means describe only that register."));
3150 add_info_alias ("r", "registers", 1);
3153 add_com ("lr", class_info
, nofp_registers_info
, _("\
3154 List of integer registers and their contents, for selected stack frame.\n\
3155 Register name as argument means describe only that register."));
3156 add_info ("all-registers", all_registers_info
, _("\
3157 List of all registers and their contents, for selected stack frame.\n\
3158 Register name as argument means describe only that register."));
3160 add_info ("program", program_info
,
3161 _("Execution status of the program."));
3163 add_info ("float", float_info
,
3164 _("Print the status of the floating point unit\n"));
3166 add_info ("vector", vector_info
,
3167 _("Print the status of the vector unit\n"));
3169 add_prefix_cmd ("proc", class_info
, info_proc_cmd
,
3171 Show /proc process information about any running process.\n\
3172 Specify any process id, or use the program being debugged by default."),
3173 &info_proc_cmdlist
, "info proc ",
3174 1/*allow-unknown*/, &infolist
);
3176 add_cmd ("mappings", class_info
, info_proc_cmd_mappings
, _("\
3177 List of mapped memory regions."),
3178 &info_proc_cmdlist
);
3180 add_cmd ("stat", class_info
, info_proc_cmd_stat
, _("\
3181 List process info from /proc/PID/stat."),
3182 &info_proc_cmdlist
);
3184 add_cmd ("status", class_info
, info_proc_cmd_status
, _("\
3185 List process info from /proc/PID/status."),
3186 &info_proc_cmdlist
);
3188 add_cmd ("cwd", class_info
, info_proc_cmd_cwd
, _("\
3189 List current working directory of the process."),
3190 &info_proc_cmdlist
);
3192 add_cmd ("cmdline", class_info
, info_proc_cmd_cmdline
, _("\
3193 List command line arguments of the process."),
3194 &info_proc_cmdlist
);
3196 add_cmd ("exe", class_info
, info_proc_cmd_exe
, _("\
3197 List absolute filename for executable of the process."),
3198 &info_proc_cmdlist
);
3200 add_cmd ("all", class_info
, info_proc_cmd_all
, _("\
3201 List all available /proc info."),
3202 &info_proc_cmdlist
);