1 /* Memory-access and commands for "inferior" process, for GDB.
3 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
4 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
5 Free Software Foundation, Inc.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
26 #include "gdb_string.h"
40 #include "completer.h"
42 #include "event-top.h"
43 #include "parser-defs.h"
45 #include "reggroups.h"
48 #include "gdb_assert.h"
50 /* Functions exported for general use, in inferior.h: */
52 void all_registers_info (char *, int);
54 void registers_info (char *, int);
56 void nexti_command (char *, int);
58 void stepi_command (char *, int);
60 void continue_command (char *, int);
62 void interrupt_target_command (char *args
, int from_tty
);
64 /* Local functions: */
66 static void nofp_registers_info (char *, int);
68 static void print_return_value (int struct_return
, struct type
*value_type
);
70 static void finish_command_continuation (struct continuation_arg
*);
72 static void until_next_command (int);
74 static void until_command (char *, int);
76 static void path_info (char *, int);
78 static void path_command (char *, int);
80 static void unset_command (char *, int);
82 static void float_info (char *, int);
84 static void detach_command (char *, int);
86 static void disconnect_command (char *, int);
88 static void unset_environment_command (char *, int);
90 static void set_environment_command (char *, int);
92 static void environment_info (char *, int);
94 static void program_info (char *, int);
96 static void finish_command (char *, int);
98 static void signal_command (char *, int);
100 static void jump_command (char *, int);
102 static void step_1 (int, int, char *);
103 static void step_once (int skip_subroutines
, int single_inst
, int count
);
104 static void step_1_continuation (struct continuation_arg
*arg
);
106 static void next_command (char *, int);
108 static void step_command (char *, int);
110 static void run_command (char *, int);
112 static void run_no_args_command (char *args
, int from_tty
);
114 static void go_command (char *line_no
, int from_tty
);
116 static int strip_bg_char (char **);
118 void _initialize_infcmd (void);
120 #define GO_USAGE "Usage: go <location>\n"
122 #define ERROR_NO_INFERIOR \
123 if (!target_has_execution) error (_("The program is not being run."));
125 /* String containing arguments to give to the program, separated by spaces.
126 Empty string (pointer to '\0') means no args. */
128 static char *inferior_args
;
130 /* The inferior arguments as a vector. If INFERIOR_ARGC is nonzero,
131 then we must compute INFERIOR_ARGS from this (via the target). */
133 static int inferior_argc
;
134 static char **inferior_argv
;
136 /* File name for default use for standard in/out in the inferior. */
138 char *inferior_io_terminal
;
140 /* Pid of our debugged inferior, or 0 if no inferior now.
141 Since various parts of infrun.c test this to see whether there is a program
142 being debugged it should be nonzero (currently 3 is used) for remote
145 ptid_t inferior_ptid
;
147 /* Last signal that the inferior received (why it stopped). */
149 enum target_signal stop_signal
;
151 /* Address at which inferior stopped. */
155 /* Chain containing status of breakpoint(s) that we have stopped at. */
159 /* Flag indicating that a command has proceeded the inferior past the
160 current breakpoint. */
162 int breakpoint_proceeded
;
164 /* Nonzero if stopped due to a step command. */
168 /* Nonzero if stopped due to completion of a stack dummy routine. */
170 int stop_stack_dummy
;
172 /* Nonzero if stopped due to a random (unexpected) signal in inferior
175 int stopped_by_random_signal
;
177 /* Range to single step within.
178 If this is nonzero, respond to a single-step signal
179 by continuing to step if the pc is in this range. */
181 CORE_ADDR step_range_start
; /* Inclusive */
182 CORE_ADDR step_range_end
; /* Exclusive */
184 /* Stack frame address as of when stepping command was issued.
185 This is how we know when we step into a subroutine call,
186 and how to set the frame for the breakpoint used to step out. */
188 struct frame_id step_frame_id
;
190 enum step_over_calls_kind step_over_calls
;
192 /* If stepping, nonzero means step count is > 1
193 so don't print frame next time inferior stops
194 if it stops due to stepping. */
198 /* Environment to use for running inferior,
199 in format described in environ.h. */
201 struct gdb_environ
*inferior_environ
;
203 /* Accessor routines. */
206 get_inferior_args (void)
208 if (inferior_argc
!= 0)
212 n
= gdbarch_construct_inferior_arguments (current_gdbarch
,
213 inferior_argc
, inferior_argv
);
214 old
= set_inferior_args (n
);
218 if (inferior_args
== NULL
)
219 inferior_args
= xstrdup ("");
221 return inferior_args
;
225 set_inferior_args (char *newargs
)
227 char *saved_args
= inferior_args
;
229 inferior_args
= newargs
;
237 set_inferior_args_vector (int argc
, char **argv
)
239 inferior_argc
= argc
;
240 inferior_argv
= argv
;
243 /* Notice when `set args' is run. */
245 notice_args_set (char *args
, int from_tty
, struct cmd_list_element
*c
)
251 /* Notice when `show args' is run. */
253 notice_args_read (struct ui_file
*file
, int from_tty
,
254 struct cmd_list_element
*c
, const char *value
)
256 deprecated_show_value_hack (file
, from_tty
, c
, value
);
257 /* Might compute the value. */
258 get_inferior_args ();
262 /* Compute command-line string given argument vector. This does the
263 same shell processing as fork_inferior. */
265 construct_inferior_arguments (struct gdbarch
*gdbarch
, int argc
, char **argv
)
269 if (STARTUP_WITH_SHELL
)
271 /* This holds all the characters considered special to the
272 typical Unix shells. We include `^' because the SunOS
273 /bin/sh treats it as a synonym for `|'. */
274 char *special
= "\"!#$&*()\\|[]{}<>?'\"`~^; \t\n";
279 /* We over-compute the size. It shouldn't matter. */
280 for (i
= 0; i
< argc
; ++i
)
281 length
+= 2 * 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')
299 for (cp
= argv
[i
]; *cp
; ++cp
)
301 if (strchr (special
, *cp
) != NULL
)
311 /* In this case we can't handle arguments that contain spaces,
312 tabs, or newlines -- see breakup_args(). */
316 for (i
= 0; i
< argc
; ++i
)
318 char *cp
= strchr (argv
[i
], ' ');
320 cp
= strchr (argv
[i
], '\t');
322 cp
= strchr (argv
[i
], '\n');
324 error (_("can't handle command-line argument containing whitespace"));
325 length
+= strlen (argv
[i
]) + 1;
328 result
= (char *) xmalloc (length
);
330 for (i
= 0; i
< argc
; ++i
)
333 strcat (result
, " ");
334 strcat (result
, argv
[i
]);
342 /* This function detects whether or not a '&' character (indicating
343 background execution) has been added as *the last* of the arguments ARGS
344 of a command. If it has, it removes it and returns 1. Otherwise it
345 does nothing and returns 0. */
347 strip_bg_char (char **args
)
351 p
= strchr (*args
, '&');
355 if (p
== (*args
+ strlen (*args
) - 1))
357 if (strlen (*args
) > 1)
361 while (*p
== ' ' || *p
== '\t');
373 tty_command (char *file
, int from_tty
)
376 error_no_arg (_("terminal name for running target process"));
378 inferior_io_terminal
= savestring (file
, strlen (file
));
381 /* Kill the inferior if already running. This function is designed
382 to be called when we are about to start the execution of the program
383 from the beginning. Ask the user to confirm that he wants to restart
384 the program being debugged when FROM_TTY is non-null. */
387 kill_if_already_running (int from_tty
)
389 if (! ptid_equal (inferior_ptid
, null_ptid
) && target_has_execution
)
392 && !query ("The program being debugged has been started already.\n\
393 Start it from the beginning? "))
394 error (_("Program not restarted."));
396 #if defined(SOLIB_RESTART)
399 init_wait_for_inferior ();
403 /* Implement the "run" command. If TBREAK_AT_MAIN is set, then insert
404 a temporary breakpoint at the begining of the main program before
405 running the program. */
408 run_command_1 (char *args
, int from_tty
, int tbreak_at_main
)
414 kill_if_already_running (from_tty
);
415 clear_breakpoint_hit_counts ();
417 /* Purge old solib objfiles. */
418 objfile_purge_solibs ();
420 do_run_cleanups (NULL
);
422 /* The comment here used to read, "The exec file is re-read every
423 time we do a generic_mourn_inferior, so we just have to worry
424 about the symbol file." The `generic_mourn_inferior' function
425 gets called whenever the program exits. However, suppose the
426 program exits, and *then* the executable file changes? We need
427 to check again here. Since reopen_exec_file doesn't do anything
428 if the timestamp hasn't changed, I don't see the harm. */
432 /* Insert the temporary breakpoint if a location was specified. */
434 tbreak_command (main_name (), 0);
436 exec_file
= (char *) get_exec_file (0);
438 /* We keep symbols from add-symbol-file, on the grounds that the
439 user might want to add some symbols before running the program
440 (right?). But sometimes (dynamic loading where the user manually
441 introduces the new symbols with add-symbol-file), the code which
442 the symbols describe does not persist between runs. Currently
443 the user has to manually nuke all symbols between runs if they
444 want them to go away (PR 2207). This is probably reasonable. */
448 if (target_can_async_p ())
449 async_disable_stdin ();
453 int async_exec
= strip_bg_char (&args
);
455 /* If we get a request for running in the bg but the target
456 doesn't support it, error out. */
457 if (async_exec
&& !target_can_async_p ())
458 error (_("Asynchronous execution not supported on this target."));
460 /* If we don't get a request of running in the bg, then we need
461 to simulate synchronous (fg) execution. */
462 if (!async_exec
&& target_can_async_p ())
464 /* Simulate synchronous execution */
465 async_disable_stdin ();
468 /* If there were other args, beside '&', process them. */
471 char *old_args
= set_inferior_args (xstrdup (args
));
478 ui_out_field_string (uiout
, NULL
, "Starting program");
479 ui_out_text (uiout
, ": ");
481 ui_out_field_string (uiout
, "execfile", exec_file
);
482 ui_out_spaces (uiout
, 1);
483 /* We call get_inferior_args() because we might need to compute
485 ui_out_field_string (uiout
, "infargs", get_inferior_args ());
486 ui_out_text (uiout
, "\n");
487 ui_out_flush (uiout
);
490 /* We call get_inferior_args() because we might need to compute
492 target_create_inferior (exec_file
, get_inferior_args (),
493 environ_vector (inferior_environ
), from_tty
);
498 run_command (char *args
, int from_tty
)
500 run_command_1 (args
, from_tty
, 0);
504 run_no_args_command (char *args
, int from_tty
)
506 char *old_args
= set_inferior_args (xstrdup (""));
511 /* Start the execution of the program up until the beginning of the main
515 start_command (char *args
, int from_tty
)
517 /* Some languages such as Ada need to search inside the program
518 minimal symbols for the location where to put the temporary
519 breakpoint before starting. */
520 if (!have_minimal_symbols ())
521 error (_("No symbol table loaded. Use the \"file\" command."));
523 /* Run the program until reaching the main procedure... */
524 run_command_1 (args
, from_tty
, 1);
528 continue_command (char *proc_count_exp
, int from_tty
)
533 /* Find out whether we must run in the background. */
534 if (proc_count_exp
!= NULL
)
535 async_exec
= strip_bg_char (&proc_count_exp
);
537 /* If we must run in the background, but the target can't do it,
539 if (async_exec
&& !target_can_async_p ())
540 error (_("Asynchronous execution not supported on this target."));
542 /* If we are not asked to run in the bg, then prepare to run in the
543 foreground, synchronously. */
544 if (!async_exec
&& target_can_async_p ())
546 /* Simulate synchronous execution */
547 async_disable_stdin ();
550 /* If have argument (besides '&'), set proceed count of breakpoint
552 if (proc_count_exp
!= NULL
)
554 bpstat bs
= stop_bpstat
;
555 int num
= bpstat_num (&bs
);
556 if (num
== 0 && from_tty
)
559 ("Not stopped at any breakpoint; argument ignored.\n");
563 set_ignore_count (num
,
564 parse_and_eval_long (proc_count_exp
) - 1,
566 /* set_ignore_count prints a message ending with a period.
567 So print two spaces before "Continuing.". */
569 printf_filtered (" ");
570 num
= bpstat_num (&bs
);
575 printf_filtered (_("Continuing.\n"));
577 clear_proceed_status ();
579 proceed ((CORE_ADDR
) -1, TARGET_SIGNAL_DEFAULT
, 0);
582 /* Step until outside of current statement. */
585 step_command (char *count_string
, int from_tty
)
587 step_1 (0, 0, count_string
);
590 /* Likewise, but skip over subroutine calls as if single instructions. */
593 next_command (char *count_string
, int from_tty
)
595 step_1 (1, 0, count_string
);
598 /* Likewise, but step only one instruction. */
601 stepi_command (char *count_string
, int from_tty
)
603 step_1 (0, 1, count_string
);
607 nexti_command (char *count_string
, int from_tty
)
609 step_1 (1, 1, count_string
);
613 disable_longjmp_breakpoint_cleanup (void *ignore
)
615 disable_longjmp_breakpoint ();
619 step_1 (int skip_subroutines
, int single_inst
, char *count_string
)
622 struct frame_info
*frame
;
623 struct cleanup
*cleanups
= 0;
629 async_exec
= strip_bg_char (&count_string
);
631 /* If we get a request for running in the bg but the target
632 doesn't support it, error out. */
633 if (async_exec
&& !target_can_async_p ())
634 error (_("Asynchronous execution not supported on this target."));
636 /* If we don't get a request of running in the bg, then we need
637 to simulate synchronous (fg) execution. */
638 if (!async_exec
&& target_can_async_p ())
640 /* Simulate synchronous execution */
641 async_disable_stdin ();
644 count
= count_string
? parse_and_eval_long (count_string
) : 1;
646 if (!single_inst
|| skip_subroutines
) /* leave si command alone */
648 enable_longjmp_breakpoint ();
649 if (!target_can_async_p ())
650 cleanups
= make_cleanup (disable_longjmp_breakpoint_cleanup
, 0 /*ignore*/);
652 make_exec_cleanup (disable_longjmp_breakpoint_cleanup
, 0 /*ignore*/);
655 /* In synchronous case, all is well, just use the regular for loop. */
656 if (!target_can_async_p ())
658 for (; count
> 0; count
--)
660 clear_proceed_status ();
662 frame
= get_current_frame ();
663 if (!frame
) /* Avoid coredump here. Why tho? */
664 error (_("No current frame"));
665 step_frame_id
= get_frame_id (frame
);
669 find_pc_line_pc_range (stop_pc
, &step_range_start
, &step_range_end
);
670 if (step_range_end
== 0)
673 if (find_pc_partial_function (stop_pc
, &name
, &step_range_start
,
674 &step_range_end
) == 0)
675 error (_("Cannot find bounds of current function"));
677 target_terminal_ours ();
678 printf_filtered (_("\
679 Single stepping until exit from function %s, \n\
680 which has no line number information.\n"), name
);
685 /* Say we are stepping, but stop after one insn whatever it does. */
686 step_range_start
= step_range_end
= 1;
687 if (!skip_subroutines
)
689 Don't step over function calls, not even to functions lacking
691 step_over_calls
= STEP_OVER_NONE
;
694 if (skip_subroutines
)
695 step_over_calls
= STEP_OVER_ALL
;
697 step_multi
= (count
> 1);
698 proceed ((CORE_ADDR
) -1, TARGET_SIGNAL_DEFAULT
, 1);
704 if (!single_inst
|| skip_subroutines
)
705 do_cleanups (cleanups
);
708 /* In case of asynchronous target things get complicated, do only
709 one step for now, before returning control to the event loop. Let
710 the continuation figure out how many other steps we need to do,
711 and handle them one at the time, through step_once(). */
714 if (target_can_async_p ())
715 step_once (skip_subroutines
, single_inst
, count
);
719 /* Called after we are done with one step operation, to check whether
720 we need to step again, before we print the prompt and return control
721 to the user. If count is > 1, we will need to do one more call to
722 proceed(), via step_once(). Basically it is like step_once and
723 step_1_continuation are co-recursive. */
725 step_1_continuation (struct continuation_arg
*arg
)
728 int skip_subroutines
;
731 skip_subroutines
= arg
->data
.integer
;
732 single_inst
= arg
->next
->data
.integer
;
733 count
= arg
->next
->next
->data
.integer
;
736 step_once (skip_subroutines
, single_inst
, count
- 1);
738 if (!single_inst
|| skip_subroutines
)
739 do_exec_cleanups (ALL_CLEANUPS
);
742 /* Do just one step operation. If count >1 we will have to set up a
743 continuation to be done after the target stops (after this one
744 step). This is useful to implement the 'step n' kind of commands, in
745 case of asynchronous targets. We had to split step_1 into two parts,
746 one to be done before proceed() and one afterwards. This function is
747 called in case of step n with n>1, after the first step operation has
750 step_once (int skip_subroutines
, int single_inst
, int count
)
752 struct continuation_arg
*arg1
;
753 struct continuation_arg
*arg2
;
754 struct continuation_arg
*arg3
;
755 struct frame_info
*frame
;
759 clear_proceed_status ();
761 frame
= get_current_frame ();
762 if (!frame
) /* Avoid coredump here. Why tho? */
763 error (_("No current frame"));
764 step_frame_id
= get_frame_id (frame
);
768 find_pc_line_pc_range (stop_pc
, &step_range_start
, &step_range_end
);
770 /* If we have no line info, switch to stepi mode. */
771 if (step_range_end
== 0 && step_stop_if_no_debug
)
773 step_range_start
= step_range_end
= 1;
775 else if (step_range_end
== 0)
778 if (find_pc_partial_function (stop_pc
, &name
, &step_range_start
,
779 &step_range_end
) == 0)
780 error (_("Cannot find bounds of current function"));
782 target_terminal_ours ();
783 printf_filtered (_("\
784 Single stepping until exit from function %s, \n\
785 which has no line number information.\n"), name
);
790 /* Say we are stepping, but stop after one insn whatever it does. */
791 step_range_start
= step_range_end
= 1;
792 if (!skip_subroutines
)
794 Don't step over function calls, not even to functions lacking
796 step_over_calls
= STEP_OVER_NONE
;
799 if (skip_subroutines
)
800 step_over_calls
= STEP_OVER_ALL
;
802 step_multi
= (count
> 1);
804 (struct continuation_arg
*) xmalloc (sizeof (struct continuation_arg
));
806 (struct continuation_arg
*) xmalloc (sizeof (struct continuation_arg
));
808 (struct continuation_arg
*) xmalloc (sizeof (struct continuation_arg
));
810 arg1
->data
.integer
= skip_subroutines
;
812 arg2
->data
.integer
= single_inst
;
814 arg3
->data
.integer
= count
;
815 add_intermediate_continuation (step_1_continuation
, arg1
);
816 proceed ((CORE_ADDR
) -1, TARGET_SIGNAL_DEFAULT
, 1);
821 /* Continue program at specified address. */
824 jump_command (char *arg
, int from_tty
)
827 struct symtabs_and_lines sals
;
828 struct symtab_and_line sal
;
835 /* Find out whether we must run in the background. */
837 async_exec
= strip_bg_char (&arg
);
839 /* If we must run in the background, but the target can't do it,
841 if (async_exec
&& !target_can_async_p ())
842 error (_("Asynchronous execution not supported on this target."));
844 /* If we are not asked to run in the bg, then prepare to run in the
845 foreground, synchronously. */
846 if (!async_exec
&& target_can_async_p ())
848 /* Simulate synchronous execution */
849 async_disable_stdin ();
853 error_no_arg (_("starting address"));
855 sals
= decode_line_spec_1 (arg
, 1);
858 error (_("Unreasonable jump request"));
864 if (sal
.symtab
== 0 && sal
.pc
== 0)
865 error (_("No source file has been specified."));
867 resolve_sal_pc (&sal
); /* May error out */
869 /* See if we are trying to jump to another function. */
870 fn
= get_frame_function (get_current_frame ());
871 sfn
= find_pc_function (sal
.pc
);
872 if (fn
!= NULL
&& sfn
!= fn
)
874 if (!query ("Line %d is not in `%s'. Jump anyway? ", sal
.line
,
875 SYMBOL_PRINT_NAME (fn
)))
877 error (_("Not confirmed."));
884 fixup_symbol_section (sfn
, 0);
885 if (section_is_overlay (SYMBOL_BFD_SECTION (sfn
)) &&
886 !section_is_mapped (SYMBOL_BFD_SECTION (sfn
)))
888 if (!query ("WARNING!!! Destination is in unmapped overlay! Jump anyway? "))
890 error (_("Not confirmed."));
900 printf_filtered (_("Continuing at "));
901 deprecated_print_address_numeric (addr
, 1, gdb_stdout
);
902 printf_filtered (".\n");
905 clear_proceed_status ();
906 proceed (addr
, TARGET_SIGNAL_0
, 0);
910 /* Go to line or address in current procedure */
912 go_command (char *line_no
, int from_tty
)
914 if (line_no
== (char *) NULL
|| !*line_no
)
915 printf_filtered (GO_USAGE
);
918 tbreak_command (line_no
, from_tty
);
919 jump_command (line_no
, from_tty
);
924 /* Continue program giving it specified signal. */
927 signal_command (char *signum_exp
, int from_tty
)
929 enum target_signal oursig
;
931 dont_repeat (); /* Too dangerous. */
935 error_no_arg (_("signal number"));
937 /* It would be even slicker to make signal names be valid expressions,
938 (the type could be "enum $signal" or some such), then the user could
939 assign them to convenience variables. */
940 oursig
= target_signal_from_name (signum_exp
);
942 if (oursig
== TARGET_SIGNAL_UNKNOWN
)
944 /* No, try numeric. */
945 int num
= parse_and_eval_long (signum_exp
);
948 oursig
= TARGET_SIGNAL_0
;
950 oursig
= target_signal_from_command (num
);
955 if (oursig
== TARGET_SIGNAL_0
)
956 printf_filtered (_("Continuing with no signal.\n"));
958 printf_filtered (_("Continuing with signal %s.\n"),
959 target_signal_to_name (oursig
));
962 clear_proceed_status ();
963 /* "signal 0" should not get stuck if we are stopped at a breakpoint.
964 FIXME: Neither should "signal foo" but when I tried passing
965 (CORE_ADDR)-1 unconditionally I got a testsuite failure which I haven't
966 tried to track down yet. */
967 proceed (oursig
== TARGET_SIGNAL_0
? (CORE_ADDR
) -1 : stop_pc
, oursig
, 0);
970 /* Proceed until we reach a different source line with pc greater than
971 our current one or exit the function. We skip calls in both cases.
973 Note that eventually this command should probably be changed so
974 that only source lines are printed out when we hit the breakpoint
975 we set. This may involve changes to wait_for_inferior and the
976 proceed status code. */
979 until_next_command (int from_tty
)
981 struct frame_info
*frame
;
984 struct symtab_and_line sal
;
986 clear_proceed_status ();
988 frame
= get_current_frame ();
990 /* Step until either exited from this function or greater
991 than the current line (if in symbolic section) or pc (if
995 func
= find_pc_function (pc
);
999 struct minimal_symbol
*msymbol
= lookup_minimal_symbol_by_pc (pc
);
1001 if (msymbol
== NULL
)
1002 error (_("Execution is not within a known function."));
1004 step_range_start
= SYMBOL_VALUE_ADDRESS (msymbol
);
1005 step_range_end
= pc
;
1009 sal
= find_pc_line (pc
, 0);
1011 step_range_start
= BLOCK_START (SYMBOL_BLOCK_VALUE (func
));
1012 step_range_end
= sal
.end
;
1015 step_over_calls
= STEP_OVER_ALL
;
1016 step_frame_id
= get_frame_id (frame
);
1018 step_multi
= 0; /* Only one call to proceed */
1020 proceed ((CORE_ADDR
) -1, TARGET_SIGNAL_DEFAULT
, 1);
1024 until_command (char *arg
, int from_tty
)
1028 if (!target_has_execution
)
1029 error (_("The program is not running."));
1031 /* Find out whether we must run in the background. */
1033 async_exec
= strip_bg_char (&arg
);
1035 /* If we must run in the background, but the target can't do it,
1037 if (async_exec
&& !target_can_async_p ())
1038 error (_("Asynchronous execution not supported on this target."));
1040 /* If we are not asked to run in the bg, then prepare to run in the
1041 foreground, synchronously. */
1042 if (!async_exec
&& target_can_async_p ())
1044 /* Simulate synchronous execution */
1045 async_disable_stdin ();
1049 until_break_command (arg
, from_tty
, 0);
1051 until_next_command (from_tty
);
1055 advance_command (char *arg
, int from_tty
)
1059 if (!target_has_execution
)
1060 error (_("The program is not running."));
1063 error_no_arg (_("a location"));
1065 /* Find out whether we must run in the background. */
1067 async_exec
= strip_bg_char (&arg
);
1069 /* If we must run in the background, but the target can't do it,
1071 if (async_exec
&& !target_can_async_p ())
1072 error (_("Asynchronous execution not supported on this target."));
1074 /* If we are not asked to run in the bg, then prepare to run in the
1075 foreground, synchronously. */
1076 if (!async_exec
&& target_can_async_p ())
1078 /* Simulate synchronous execution. */
1079 async_disable_stdin ();
1082 until_break_command (arg
, from_tty
, 1);
1085 /* Print the result of a function at the end of a 'finish' command. */
1088 print_return_value (int struct_return
, struct type
*value_type
)
1090 struct gdbarch
*gdbarch
= current_gdbarch
;
1091 struct cleanup
*old_chain
;
1092 struct ui_stream
*stb
;
1093 struct value
*value
;
1095 gdb_assert (TYPE_CODE (value_type
) != TYPE_CODE_VOID
);
1097 /* FIXME: 2003-09-27: When returning from a nested inferior function
1098 call, it's possible (with no help from the architecture vector)
1099 to locate and return/print a "struct return" value. This is just
1100 a more complicated case of what is already being done in in the
1101 inferior function call code. In fact, when inferior function
1102 calls are made async, this will likely be made the norm. */
1104 switch (gdbarch_return_value (gdbarch
, value_type
, NULL
, NULL
, NULL
))
1106 case RETURN_VALUE_REGISTER_CONVENTION
:
1107 case RETURN_VALUE_ABI_RETURNS_ADDRESS
:
1108 value
= allocate_value (value_type
);
1109 CHECK_TYPEDEF (value_type
);
1110 gdbarch_return_value (current_gdbarch
, value_type
, stop_registers
,
1111 value_contents_raw (value
), NULL
);
1113 case RETURN_VALUE_STRUCT_CONVENTION
:
1117 internal_error (__FILE__
, __LINE__
, _("bad switch"));
1123 stb
= ui_out_stream_new (uiout
);
1124 old_chain
= make_cleanup_ui_out_stream_delete (stb
);
1125 ui_out_text (uiout
, "Value returned is ");
1126 ui_out_field_fmt (uiout
, "gdb-result-var", "$%d",
1127 record_latest_value (value
));
1128 ui_out_text (uiout
, " = ");
1129 value_print (value
, stb
->stream
, 0, Val_no_prettyprint
);
1130 ui_out_field_stream (uiout
, "return-value", stb
);
1131 ui_out_text (uiout
, "\n");
1132 do_cleanups (old_chain
);
1136 ui_out_text (uiout
, "Value returned has type: ");
1137 ui_out_field_string (uiout
, "return-type", TYPE_NAME (value_type
));
1138 ui_out_text (uiout
, ".");
1139 ui_out_text (uiout
, " Cannot determine contents\n");
1143 /* Stuff that needs to be done by the finish command after the target
1144 has stopped. In asynchronous mode, we wait for the target to stop
1145 in the call to poll or select in the event loop, so it is
1146 impossible to do all the stuff as part of the finish_command
1147 function itself. The only chance we have to complete this command
1148 is in fetch_inferior_event, which is called by the event loop as
1149 soon as it detects that the target has stopped. This function is
1150 called via the cmd_continuation pointer. */
1153 finish_command_continuation (struct continuation_arg
*arg
)
1155 struct symbol
*function
;
1156 struct breakpoint
*breakpoint
;
1157 struct cleanup
*cleanups
;
1159 breakpoint
= (struct breakpoint
*) arg
->data
.pointer
;
1160 function
= (struct symbol
*) arg
->next
->data
.pointer
;
1161 cleanups
= (struct cleanup
*) arg
->next
->next
->data
.pointer
;
1163 if (bpstat_find_breakpoint (stop_bpstat
, breakpoint
) != NULL
1164 && function
!= NULL
)
1166 struct type
*value_type
;
1170 value_type
= TYPE_TARGET_TYPE (SYMBOL_TYPE (function
));
1172 internal_error (__FILE__
, __LINE__
,
1173 _("finish_command: function has no target type"));
1175 if (TYPE_CODE (value_type
) == TYPE_CODE_VOID
)
1177 do_exec_cleanups (cleanups
);
1181 CHECK_TYPEDEF (value_type
);
1182 gcc_compiled
= BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function
));
1183 struct_return
= using_struct_return (value_type
, gcc_compiled
);
1185 print_return_value (struct_return
, value_type
);
1188 do_exec_cleanups (cleanups
);
1191 /* "finish": Set a temporary breakpoint at the place the selected
1192 frame will return to, then continue. */
1195 finish_command (char *arg
, int from_tty
)
1197 struct symtab_and_line sal
;
1198 struct frame_info
*frame
;
1199 struct symbol
*function
;
1200 struct breakpoint
*breakpoint
;
1201 struct cleanup
*old_chain
;
1202 struct continuation_arg
*arg1
, *arg2
, *arg3
;
1206 /* Find out whether we must run in the background. */
1208 async_exec
= strip_bg_char (&arg
);
1210 /* If we must run in the background, but the target can't do it,
1212 if (async_exec
&& !target_can_async_p ())
1213 error (_("Asynchronous execution not supported on this target."));
1215 /* If we are not asked to run in the bg, then prepare to run in the
1216 foreground, synchronously. */
1217 if (!async_exec
&& target_can_async_p ())
1219 /* Simulate synchronous execution. */
1220 async_disable_stdin ();
1224 error (_("The \"finish\" command does not take any arguments."));
1225 if (!target_has_execution
)
1226 error (_("The program is not running."));
1227 if (deprecated_selected_frame
== NULL
)
1228 error (_("No selected frame."));
1230 frame
= get_prev_frame (deprecated_selected_frame
);
1232 error (_("\"finish\" not meaningful in the outermost frame."));
1234 clear_proceed_status ();
1236 sal
= find_pc_line (get_frame_pc (frame
), 0);
1237 sal
.pc
= get_frame_pc (frame
);
1239 breakpoint
= set_momentary_breakpoint (sal
, get_frame_id (frame
), bp_finish
);
1241 if (!target_can_async_p ())
1242 old_chain
= make_cleanup_delete_breakpoint (breakpoint
);
1244 old_chain
= make_exec_cleanup_delete_breakpoint (breakpoint
);
1246 /* Find the function we will return from. */
1248 function
= find_pc_function (get_frame_pc (deprecated_selected_frame
));
1250 /* Print info on the selected frame, including level number but not
1254 printf_filtered (_("Run till exit from "));
1255 print_stack_frame (get_selected_frame (NULL
), 1, LOCATION
);
1258 /* If running asynchronously and the target support asynchronous
1259 execution, set things up for the rest of the finish command to be
1260 completed later on, when gdb has detected that the target has
1261 stopped, in fetch_inferior_event. */
1262 if (target_can_async_p ())
1265 (struct continuation_arg
*) xmalloc (sizeof (struct continuation_arg
));
1267 (struct continuation_arg
*) xmalloc (sizeof (struct continuation_arg
));
1269 (struct continuation_arg
*) xmalloc (sizeof (struct continuation_arg
));
1273 arg1
->data
.pointer
= breakpoint
;
1274 arg2
->data
.pointer
= function
;
1275 arg3
->data
.pointer
= old_chain
;
1276 add_continuation (finish_command_continuation
, arg1
);
1279 proceed_to_finish
= 1; /* We want stop_registers, please... */
1280 proceed ((CORE_ADDR
) -1, TARGET_SIGNAL_DEFAULT
, 0);
1282 /* Do this only if not running asynchronously or if the target
1283 cannot do async execution. Otherwise, complete this command when
1284 the target actually stops, in fetch_inferior_event. */
1285 if (!target_can_async_p ())
1287 /* Did we stop at our breakpoint? */
1288 if (bpstat_find_breakpoint (stop_bpstat
, breakpoint
) != NULL
1289 && function
!= NULL
)
1291 struct type
*value_type
;
1295 value_type
= TYPE_TARGET_TYPE (SYMBOL_TYPE (function
));
1297 internal_error (__FILE__
, __LINE__
,
1298 _("finish_command: function has no target type"));
1300 /* FIXME: Shouldn't we do the cleanups before returning? */
1301 if (TYPE_CODE (value_type
) == TYPE_CODE_VOID
)
1304 CHECK_TYPEDEF (value_type
);
1305 gcc_compiled
= BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function
));
1306 struct_return
= using_struct_return (value_type
, gcc_compiled
);
1308 print_return_value (struct_return
, value_type
);
1311 do_cleanups (old_chain
);
1317 program_info (char *args
, int from_tty
)
1319 bpstat bs
= stop_bpstat
;
1320 int num
= bpstat_num (&bs
);
1322 if (!target_has_execution
)
1324 printf_filtered (_("The program being debugged is not being run.\n"));
1328 target_files_info ();
1329 printf_filtered (_("Program stopped at %s.\n"),
1330 hex_string ((unsigned long) stop_pc
));
1332 printf_filtered (_("It stopped after being stepped.\n"));
1335 /* There may be several breakpoints in the same place, so this
1336 isn't as strange as it seems. */
1341 printf_filtered (_("\
1342 It stopped at a breakpoint that has since been deleted.\n"));
1345 printf_filtered (_("It stopped at breakpoint %d.\n"), num
);
1346 num
= bpstat_num (&bs
);
1349 else if (stop_signal
!= TARGET_SIGNAL_0
)
1351 printf_filtered (_("It stopped with signal %s, %s.\n"),
1352 target_signal_to_name (stop_signal
),
1353 target_signal_to_string (stop_signal
));
1358 printf_filtered (_("\
1359 Type \"info stack\" or \"info registers\" for more information.\n"));
1364 environment_info (char *var
, int from_tty
)
1368 char *val
= get_in_environ (inferior_environ
, var
);
1371 puts_filtered (var
);
1372 puts_filtered (" = ");
1373 puts_filtered (val
);
1374 puts_filtered ("\n");
1378 puts_filtered ("Environment variable \"");
1379 puts_filtered (var
);
1380 puts_filtered ("\" not defined.\n");
1385 char **vector
= environ_vector (inferior_environ
);
1388 puts_filtered (*vector
++);
1389 puts_filtered ("\n");
1395 set_environment_command (char *arg
, int from_tty
)
1397 char *p
, *val
, *var
;
1401 error_no_arg (_("environment variable and value"));
1403 /* Find seperation between variable name and value */
1404 p
= (char *) strchr (arg
, '=');
1405 val
= (char *) strchr (arg
, ' ');
1407 if (p
!= 0 && val
!= 0)
1409 /* We have both a space and an equals. If the space is before the
1410 equals, walk forward over the spaces til we see a nonspace
1411 (possibly the equals). */
1416 /* Now if the = is after the char following the spaces,
1417 take the char following the spaces. */
1421 else if (val
!= 0 && p
== 0)
1425 error_no_arg (_("environment variable to set"));
1427 if (p
== 0 || p
[1] == 0)
1431 p
= arg
+ strlen (arg
); /* So that savestring below will work */
1435 /* Not setting variable value to null */
1437 while (*val
== ' ' || *val
== '\t')
1441 while (p
!= arg
&& (p
[-1] == ' ' || p
[-1] == '\t'))
1444 var
= savestring (arg
, p
- arg
);
1447 printf_filtered (_("\
1448 Setting environment variable \"%s\" to null value.\n"),
1450 set_in_environ (inferior_environ
, var
, "");
1453 set_in_environ (inferior_environ
, var
, val
);
1458 unset_environment_command (char *var
, int from_tty
)
1462 /* If there is no argument, delete all environment variables.
1463 Ask for confirmation if reading from the terminal. */
1464 if (!from_tty
|| query (_("Delete all environment variables? ")))
1466 free_environ (inferior_environ
);
1467 inferior_environ
= make_environ ();
1471 unset_in_environ (inferior_environ
, var
);
1474 /* Handle the execution path (PATH variable) */
1476 static const char path_var_name
[] = "PATH";
1479 path_info (char *args
, int from_tty
)
1481 puts_filtered ("Executable and object file path: ");
1482 puts_filtered (get_in_environ (inferior_environ
, path_var_name
));
1483 puts_filtered ("\n");
1486 /* Add zero or more directories to the front of the execution path. */
1489 path_command (char *dirname
, int from_tty
)
1494 env
= get_in_environ (inferior_environ
, path_var_name
);
1495 /* Can be null if path is not set */
1498 exec_path
= xstrdup (env
);
1499 mod_path (dirname
, &exec_path
);
1500 set_in_environ (inferior_environ
, path_var_name
, exec_path
);
1503 path_info ((char *) NULL
, from_tty
);
1507 /* Print out the machine register regnum. If regnum is -1, print all
1508 registers (print_all == 1) or all non-float and non-vector
1509 registers (print_all == 0).
1511 For most machines, having all_registers_info() print the
1512 register(s) one per line is good enough. If a different format is
1513 required, (eg, for MIPS or Pyramid 90x, which both have lots of
1514 regs), or there is an existing convention for showing all the
1515 registers, define the architecture method PRINT_REGISTERS_INFO to
1516 provide that format. */
1519 default_print_registers_info (struct gdbarch
*gdbarch
,
1520 struct ui_file
*file
,
1521 struct frame_info
*frame
,
1522 int regnum
, int print_all
)
1525 const int numregs
= NUM_REGS
+ NUM_PSEUDO_REGS
;
1526 char buffer
[MAX_REGISTER_SIZE
];
1528 for (i
= 0; i
< numregs
; i
++)
1530 /* Decide between printing all regs, non-float / vector regs, or
1536 if (!gdbarch_register_reggroup_p (gdbarch
, i
, all_reggroup
))
1541 if (!gdbarch_register_reggroup_p (gdbarch
, i
, general_reggroup
))
1551 /* If the register name is empty, it is undefined for this
1552 processor, so don't display anything. */
1553 if (REGISTER_NAME (i
) == NULL
|| *(REGISTER_NAME (i
)) == '\0')
1556 fputs_filtered (REGISTER_NAME (i
), file
);
1557 print_spaces_filtered (15 - strlen (REGISTER_NAME (i
)), file
);
1559 /* Get the data in raw format. */
1560 if (! frame_register_read (frame
, i
, buffer
))
1562 fprintf_filtered (file
, "*value not available*\n");
1566 /* If virtual format is floating, print it that way, and in raw
1568 if (TYPE_CODE (register_type (current_gdbarch
, i
)) == TYPE_CODE_FLT
)
1572 val_print (register_type (current_gdbarch
, i
), buffer
, 0, 0,
1573 file
, 0, 1, 0, Val_pretty_default
);
1575 fprintf_filtered (file
, "\t(raw 0x");
1576 for (j
= 0; j
< register_size (current_gdbarch
, i
); j
++)
1579 if (TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
)
1582 idx
= register_size (current_gdbarch
, i
) - 1 - j
;
1583 fprintf_filtered (file
, "%02x", (unsigned char) buffer
[idx
]);
1585 fprintf_filtered (file
, ")");
1589 /* Print the register in hex. */
1590 val_print (register_type (current_gdbarch
, i
), buffer
, 0, 0,
1591 file
, 'x', 1, 0, Val_pretty_default
);
1592 /* If not a vector register, print it also according to its
1594 if (TYPE_VECTOR (register_type (current_gdbarch
, i
)) == 0)
1596 fprintf_filtered (file
, "\t");
1597 val_print (register_type (current_gdbarch
, i
), buffer
, 0, 0,
1598 file
, 0, 1, 0, Val_pretty_default
);
1602 fprintf_filtered (file
, "\n");
1607 registers_info (char *addr_exp
, int fpregs
)
1609 int regnum
, numregs
;
1612 if (!target_has_registers
)
1613 error (_("The program has no registers now."));
1614 if (deprecated_selected_frame
== NULL
)
1615 error (_("No selected frame."));
1619 gdbarch_print_registers_info (current_gdbarch
, gdb_stdout
,
1620 deprecated_selected_frame
, -1, fpregs
);
1624 while (*addr_exp
!= '\0')
1629 /* Keep skipping leading white space. */
1630 if (isspace ((*addr_exp
)))
1636 /* Discard any leading ``$''. Check that there is something
1637 resembling a register following it. */
1638 if (addr_exp
[0] == '$')
1640 if (isspace ((*addr_exp
)) || (*addr_exp
) == '\0')
1641 error (_("Missing register name"));
1643 /* Find the start/end of this register name/num/group. */
1645 while ((*addr_exp
) != '\0' && !isspace ((*addr_exp
)))
1649 /* Figure out what we've found and display it. */
1651 /* A register name? */
1653 int regnum
= frame_map_name_to_regnum (deprecated_selected_frame
,
1654 start
, end
- start
);
1657 gdbarch_print_registers_info (current_gdbarch
, gdb_stdout
,
1658 deprecated_selected_frame
, regnum
, fpregs
);
1663 /* A register number? (how portable is this one?). */
1666 int regnum
= strtol (start
, &endptr
, 0);
1669 && regnum
< NUM_REGS
+ NUM_PSEUDO_REGS
)
1671 gdbarch_print_registers_info (current_gdbarch
, gdb_stdout
,
1672 deprecated_selected_frame
, regnum
, fpregs
);
1677 /* A register group? */
1679 struct reggroup
*group
;
1680 for (group
= reggroup_next (current_gdbarch
, NULL
);
1682 group
= reggroup_next (current_gdbarch
, group
))
1684 /* Don't bother with a length check. Should the user
1685 enter a short register group name, go with the first
1686 group that matches. */
1687 if (strncmp (start
, reggroup_name (group
), end
- start
) == 0)
1693 for (regnum
= 0; regnum
< NUM_REGS
+ NUM_PSEUDO_REGS
; regnum
++)
1695 if (gdbarch_register_reggroup_p (current_gdbarch
, regnum
,
1697 gdbarch_print_registers_info (current_gdbarch
,
1698 gdb_stdout
, deprecated_selected_frame
,
1705 /* Nothing matched. */
1706 error (_("Invalid register `%.*s'"), (int) (end
- start
), start
);
1711 all_registers_info (char *addr_exp
, int from_tty
)
1713 registers_info (addr_exp
, 1);
1717 nofp_registers_info (char *addr_exp
, int from_tty
)
1719 registers_info (addr_exp
, 0);
1723 print_vector_info (struct gdbarch
*gdbarch
, struct ui_file
*file
,
1724 struct frame_info
*frame
, const char *args
)
1726 if (!target_has_registers
)
1727 error (_("The program has no registers now."));
1728 if (deprecated_selected_frame
== NULL
)
1729 error (_("No selected frame."));
1731 if (gdbarch_print_vector_info_p (gdbarch
))
1732 gdbarch_print_vector_info (gdbarch
, file
, frame
, args
);
1736 int printed_something
= 0;
1738 for (regnum
= 0; regnum
< NUM_REGS
+ NUM_PSEUDO_REGS
; regnum
++)
1740 if (gdbarch_register_reggroup_p (gdbarch
, regnum
, vector_reggroup
))
1742 printed_something
= 1;
1743 gdbarch_print_registers_info (gdbarch
, file
, frame
, regnum
, 1);
1746 if (!printed_something
)
1747 fprintf_filtered (file
, "No vector information\n");
1752 vector_info (char *args
, int from_tty
)
1754 print_vector_info (current_gdbarch
, gdb_stdout
, deprecated_selected_frame
, args
);
1760 * Should save/restore the tty state since it might be that the
1761 * program to be debugged was started on this tty and it wants
1762 * the tty in some state other than what we want. If it's running
1763 * on another terminal or without a terminal, then saving and
1764 * restoring the tty state is a harmless no-op.
1765 * This only needs to be done if we are attaching to a process.
1770 takes a program started up outside of gdb and ``attaches'' to it.
1771 This stops it cold in its tracks and allows us to start debugging it.
1772 and wait for the trace-trap that results from attaching. */
1775 attach_command (char *args
, int from_tty
)
1778 char *full_exec_path
= NULL
;
1780 dont_repeat (); /* Not for the faint of heart */
1782 if (target_has_execution
)
1784 if (query ("A program is being debugged already. Kill it? "))
1787 error (_("Not killed."));
1790 /* Clear out solib state. Otherwise the solib state of the previous
1791 inferior might have survived and is entirely wrong for the new
1792 target. This has been observed on Linux using glibc 2.3. How to
1804 Cannot access memory at address 0xdeadbeef
1810 target_attach (args
, from_tty
);
1812 /* Set up the "saved terminal modes" of the inferior
1813 based on what modes we are starting it with. */
1814 target_terminal_init ();
1816 /* Set up execution context to know that we should return from
1817 wait_for_inferior as soon as the target reports a stop. */
1818 init_wait_for_inferior ();
1819 clear_proceed_status ();
1821 /* No traps are generated when attaching to inferior under Mach 3
1823 #ifndef ATTACH_NO_WAIT
1824 /* Careful here. See comments in inferior.h. Basically some OSes
1825 don't ignore SIGSTOPs on continue requests anymore. We need a
1826 way for handle_inferior_event to reset the stop_signal variable
1827 after an attach, and this is what STOP_QUIETLY_NO_SIGSTOP is for. */
1828 stop_soon
= STOP_QUIETLY_NO_SIGSTOP
;
1829 wait_for_inferior ();
1830 stop_soon
= NO_STOP_QUIETLY
;
1834 * If no exec file is yet known, try to determine it from the
1837 exec_file
= (char *) get_exec_file (0);
1840 exec_file
= target_pid_to_exec_file (PIDGET (inferior_ptid
));
1843 /* It's possible we don't have a full path, but rather just a
1844 filename. Some targets, such as HP-UX, don't provide the
1847 Attempt to qualify the filename against the source path.
1848 (If that fails, we'll just fall back on the original
1849 filename. Not much more we can do...)
1851 if (!source_full_path_of (exec_file
, &full_exec_path
))
1852 full_exec_path
= savestring (exec_file
, strlen (exec_file
));
1854 exec_file_attach (full_exec_path
, from_tty
);
1855 symbol_file_add_main (full_exec_path
, from_tty
);
1860 reopen_exec_file ();
1865 /* Add shared library symbols from the newly attached process, if any. */
1866 SOLIB_ADD ((char *) 0, from_tty
, ¤t_target
, auto_solib_add
);
1867 re_enable_breakpoints_in_shlibs ();
1870 /* Take any necessary post-attaching actions for this platform.
1872 target_post_attach (PIDGET (inferior_ptid
));
1874 /* Install inferior's terminal modes. */
1875 target_terminal_inferior ();
1879 if (deprecated_attach_hook
)
1880 deprecated_attach_hook ();
1885 * takes a program previously attached to and detaches it.
1886 * The program resumes execution and will no longer stop
1887 * on signals, etc. We better not have left any breakpoints
1888 * in the program or it'll die when it hits one. For this
1889 * to work, it may be necessary for the process to have been
1890 * previously attached. It *might* work if the program was
1891 * started via the normal ptrace (PTRACE_TRACEME).
1895 detach_command (char *args
, int from_tty
)
1897 dont_repeat (); /* Not for the faint of heart. */
1898 target_detach (args
, from_tty
);
1899 #if defined(SOLIB_RESTART)
1902 if (deprecated_detach_hook
)
1903 deprecated_detach_hook ();
1906 /* Disconnect from the current target without resuming it (leaving it
1907 waiting for a debugger).
1909 We'd better not have left any breakpoints in the program or the
1910 next debugger will get confused. Currently only supported for some
1911 remote targets, since the normal attach mechanisms don't work on
1912 stopped processes on some native platforms (e.g. GNU/Linux). */
1915 disconnect_command (char *args
, int from_tty
)
1917 dont_repeat (); /* Not for the faint of heart */
1918 target_disconnect (args
, from_tty
);
1919 #if defined(SOLIB_RESTART)
1922 if (deprecated_detach_hook
)
1923 deprecated_detach_hook ();
1926 /* Stop the execution of the target while running in async mode, in
1929 interrupt_target_command (char *args
, int from_tty
)
1931 if (target_can_async_p ())
1933 dont_repeat (); /* Not for the faint of heart */
1939 print_float_info (struct gdbarch
*gdbarch
, struct ui_file
*file
,
1940 struct frame_info
*frame
, const char *args
)
1942 if (!target_has_registers
)
1943 error (_("The program has no registers now."));
1944 if (deprecated_selected_frame
== NULL
)
1945 error (_("No selected frame."));
1947 if (gdbarch_print_float_info_p (gdbarch
))
1948 gdbarch_print_float_info (gdbarch
, file
, frame
, args
);
1952 int printed_something
= 0;
1954 for (regnum
= 0; regnum
< NUM_REGS
+ NUM_PSEUDO_REGS
; regnum
++)
1956 if (gdbarch_register_reggroup_p (gdbarch
, regnum
, float_reggroup
))
1958 printed_something
= 1;
1959 gdbarch_print_registers_info (gdbarch
, file
, frame
, regnum
, 1);
1962 if (!printed_something
)
1963 fprintf_filtered (file
, "\
1964 No floating-point info available for this processor.\n");
1969 float_info (char *args
, int from_tty
)
1971 print_float_info (current_gdbarch
, gdb_stdout
,
1972 deprecated_selected_frame
, args
);
1976 unset_command (char *args
, int from_tty
)
1978 printf_filtered (_("\
1979 \"unset\" must be followed by the name of an unset subcommand.\n"));
1980 help_list (unsetlist
, "unset ", -1, gdb_stdout
);
1984 _initialize_infcmd (void)
1986 struct cmd_list_element
*c
;
1988 c
= add_com ("tty", class_run
, tty_command
,
1989 _("Set terminal for future runs of program being debugged."));
1990 set_cmd_completer (c
, filename_completer
);
1992 add_setshow_optional_filename_cmd ("args", class_run
,
1993 &inferior_args
, _("\
1994 Set argument list to give program being debugged when it is started."), _("\
1995 Show argument list to give program being debugged when it is started."), _("\
1996 Follow this command with any number of args, to be passed to the program."),
1999 &setlist
, &showlist
);
2001 c
= add_cmd ("environment", no_class
, environment_info
, _("\
2002 The environment to give the program, or one variable's value.\n\
2003 With an argument VAR, prints the value of environment variable VAR to\n\
2004 give the program being debugged. With no arguments, prints the entire\n\
2005 environment to be given to the program."), &showlist
);
2006 set_cmd_completer (c
, noop_completer
);
2008 add_prefix_cmd ("unset", no_class
, unset_command
,
2009 _("Complement to certain \"set\" commands."),
2010 &unsetlist
, "unset ", 0, &cmdlist
);
2012 c
= add_cmd ("environment", class_run
, unset_environment_command
, _("\
2013 Cancel environment variable VAR for the program.\n\
2014 This does not affect the program until the next \"run\" command."),
2016 set_cmd_completer (c
, noop_completer
);
2018 c
= add_cmd ("environment", class_run
, set_environment_command
, _("\
2019 Set environment variable value to give the program.\n\
2020 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2021 VALUES of environment variables are uninterpreted strings.\n\
2022 This does not affect the program until the next \"run\" command."),
2024 set_cmd_completer (c
, noop_completer
);
2026 c
= add_com ("path", class_files
, path_command
, _("\
2027 Add directory DIR(s) to beginning of search path for object files.\n\
2028 $cwd in the path means the current working directory.\n\
2029 This path is equivalent to the $PATH shell variable. It is a list of\n\
2030 directories, separated by colons. These directories are searched to find\n\
2031 fully linked executable files and separately compiled object files as needed."));
2032 set_cmd_completer (c
, filename_completer
);
2034 c
= add_cmd ("paths", no_class
, path_info
, _("\
2035 Current search path for finding object files.\n\
2036 $cwd in the path means the current working directory.\n\
2037 This path is equivalent to the $PATH shell variable. It is a list of\n\
2038 directories, separated by colons. These directories are searched to find\n\
2039 fully linked executable files and separately compiled object files as needed."),
2041 set_cmd_completer (c
, noop_completer
);
2043 add_com ("attach", class_run
, attach_command
, _("\
2044 Attach to a process or file outside of GDB.\n\
2045 This command attaches to another target, of the same type as your last\n\
2046 \"target\" command (\"info files\" will show your target stack).\n\
2047 The command may take as argument a process id or a device file.\n\
2048 For a process id, you must have permission to send the process a signal,\n\
2049 and it must have the same effective uid as the debugger.\n\
2050 When using \"attach\" with a process id, the debugger finds the\n\
2051 program running in the process, looking first in the current working\n\
2052 directory, or (if not found there) using the source file search path\n\
2053 (see the \"directory\" command). You can also use the \"file\" command\n\
2054 to specify the program, and to load its symbol table."));
2056 add_com ("detach", class_run
, detach_command
, _("\
2057 Detach a process or file previously attached.\n\
2058 If a process, it is no longer traced, and it continues its execution. If\n\
2059 you were debugging a file, the file is closed and gdb no longer accesses it."));
2061 add_com ("disconnect", class_run
, disconnect_command
, _("\
2062 Disconnect from a target.\n\
2063 The target will wait for another debugger to connect. Not available for\n\
2066 add_com ("signal", class_run
, signal_command
, _("\
2067 Continue program giving it signal specified by the argument.\n\
2068 An argument of \"0\" means continue program without giving it a signal."));
2070 add_com ("stepi", class_run
, stepi_command
, _("\
2071 Step one instruction exactly.\n\
2072 Argument N means do this N times (or till program stops for another reason)."));
2073 add_com_alias ("si", "stepi", class_alias
, 0);
2075 add_com ("nexti", class_run
, nexti_command
, _("\
2076 Step one instruction, but proceed through subroutine calls.\n\
2077 Argument N means do this N times (or till program stops for another reason)."));
2078 add_com_alias ("ni", "nexti", class_alias
, 0);
2080 add_com ("finish", class_run
, finish_command
, _("\
2081 Execute until selected stack frame returns.\n\
2082 Upon return, the value returned is printed and put in the value history."));
2084 add_com ("next", class_run
, next_command
, _("\
2085 Step program, proceeding through subroutine calls.\n\
2086 Like the \"step\" command as long as subroutine calls do not happen;\n\
2087 when they do, the call is treated as one instruction.\n\
2088 Argument N means do this N times (or till program stops for another reason)."));
2089 add_com_alias ("n", "next", class_run
, 1);
2091 add_com_alias ("S", "next", class_run
, 1);
2093 add_com ("step", class_run
, step_command
, _("\
2094 Step program until it reaches a different source line.\n\
2095 Argument N means do this N times (or till program stops for another reason)."));
2096 add_com_alias ("s", "step", class_run
, 1);
2098 c
= add_com ("until", class_run
, until_command
, _("\
2099 Execute until the program reaches a source line greater than the current\n\
2100 or a specified location (same args as break command) within the current frame."));
2101 set_cmd_completer (c
, location_completer
);
2102 add_com_alias ("u", "until", class_run
, 1);
2104 c
= add_com ("advance", class_run
, advance_command
, _("\
2105 Continue the program up to the given location (same form as args for break command).\n\
2106 Execution will also stop upon exit from the current stack frame."));
2107 set_cmd_completer (c
, location_completer
);
2109 c
= add_com ("jump", class_run
, jump_command
, _("\
2110 Continue program being debugged at specified line or address.\n\
2111 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
2112 for an address to start at."));
2113 set_cmd_completer (c
, location_completer
);
2117 c
= add_com ("go", class_run
, go_command
, _("\
2118 Usage: go <location>\n\
2119 Continue program being debugged, stopping at specified line or \n\
2121 Give as argument either LINENUM or *ADDR, where ADDR is an \n\
2122 expression for an address to start at.\n\
2123 This command is a combination of tbreak and jump."));
2124 set_cmd_completer (c
, location_completer
);
2128 add_com_alias ("g", "go", class_run
, 1);
2130 add_com ("continue", class_run
, continue_command
, _("\
2131 Continue program being debugged, after signal or breakpoint.\n\
2132 If proceeding from breakpoint, a number N may be used as an argument,\n\
2133 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
2134 the breakpoint won't break until the Nth time it is reached)."));
2135 add_com_alias ("c", "cont", class_run
, 1);
2136 add_com_alias ("fg", "cont", class_run
, 1);
2138 c
= add_com ("run", class_run
, run_command
, _("\
2139 Start debugged program. You may specify arguments to give it.\n\
2140 Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
2141 Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\
2142 With no arguments, uses arguments last specified (with \"run\" or \"set args\").\n\
2143 To cancel previous arguments and run with no arguments,\n\
2144 use \"set args\" without arguments."));
2145 set_cmd_completer (c
, filename_completer
);
2146 add_com_alias ("r", "run", class_run
, 1);
2148 add_com ("R", class_run
, run_no_args_command
,
2149 _("Start debugged program with no arguments."));
2151 c
= add_com ("start", class_run
, start_command
, _("\
2152 Run the debugged program until the beginning of the main procedure.\n\
2153 You may specify arguments to give to your program, just as with the\n\
2154 \"run\" command."));
2155 set_cmd_completer (c
, filename_completer
);
2157 add_com ("interrupt", class_run
, interrupt_target_command
,
2158 _("Interrupt the execution of the debugged program."));
2160 add_info ("registers", nofp_registers_info
, _("\
2161 List of integer registers and their contents, for selected stack frame.\n\
2162 Register name as argument means describe only that register."));
2163 add_info_alias ("r", "registers", 1);
2166 add_com ("lr", class_info
, nofp_registers_info
, _("\
2167 List of integer registers and their contents, for selected stack frame.\n\
2168 Register name as argument means describe only that register."));
2169 add_info ("all-registers", all_registers_info
, _("\
2170 List of all registers and their contents, for selected stack frame.\n\
2171 Register name as argument means describe only that register."));
2173 add_info ("program", program_info
,
2174 _("Execution status of the program."));
2176 add_info ("float", float_info
,
2177 _("Print the status of the floating point unit\n"));
2179 add_info ("vector", vector_info
,
2180 _("Print the status of the vector unit\n"));
2182 inferior_environ
= make_environ ();
2183 init_environ (inferior_environ
);