1 /* Memory-access and commands for "inferior" process, for GDB.
3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
5 2008 Free Software Foundation, Inc.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #include "gdb_string.h"
38 #include "completer.h"
40 #include "event-top.h"
41 #include "parser-defs.h"
43 #include "reggroups.h"
47 #include "gdb_assert.h"
49 #include "target-descriptions.h"
50 #include "user-regs.h"
51 #include "exceptions.h"
52 #include "cli/cli-decode.h"
53 #include "gdbthread.h"
55 /* Functions exported for general use, in inferior.h: */
57 void all_registers_info (char *, int);
59 void registers_info (char *, int);
61 void nexti_command (char *, int);
63 void stepi_command (char *, int);
65 void continue_command (char *, int);
67 void interrupt_target_command (char *args
, int from_tty
);
69 /* Local functions: */
71 static void nofp_registers_info (char *, int);
73 static void print_return_value (struct type
*func_type
,
74 struct type
*value_type
);
76 static void finish_command_continuation (struct continuation_arg
*,
79 static void until_next_command (int);
81 static void until_command (char *, int);
83 static void path_info (char *, int);
85 static void path_command (char *, int);
87 static void unset_command (char *, int);
89 static void float_info (char *, int);
91 static void detach_command (char *, int);
93 static void disconnect_command (char *, int);
95 static void unset_environment_command (char *, int);
97 static void set_environment_command (char *, int);
99 static void environment_info (char *, int);
101 static void program_info (char *, int);
103 static void finish_command (char *, int);
105 static void signal_command (char *, int);
107 static void jump_command (char *, int);
109 static void step_1 (int, int, char *);
110 static void step_once (int skip_subroutines
, int single_inst
, int count
, int thread
);
111 static void step_1_continuation (struct continuation_arg
*arg
, int error_p
);
113 static void next_command (char *, int);
115 static void step_command (char *, int);
117 static void run_command (char *, int);
119 static void run_no_args_command (char *args
, int from_tty
);
121 static void go_command (char *line_no
, int from_tty
);
123 static int strip_bg_char (char **);
125 void _initialize_infcmd (void);
127 #define GO_USAGE "Usage: go <location>\n"
129 #define ERROR_NO_INFERIOR \
130 if (!target_has_execution) error (_("The program is not being run."));
132 /* String containing arguments to give to the program, separated by spaces.
133 Empty string (pointer to '\0') means no args. */
135 static char *inferior_args
;
137 /* The inferior arguments as a vector. If INFERIOR_ARGC is nonzero,
138 then we must compute INFERIOR_ARGS from this (via the target). */
140 static int inferior_argc
;
141 static char **inferior_argv
;
143 /* File name for default use for standard in/out in the inferior. */
145 static char *inferior_io_terminal
;
147 /* Pid of our debugged inferior, or 0 if no inferior now.
148 Since various parts of infrun.c test this to see whether there is a program
149 being debugged it should be nonzero (currently 3 is used) for remote
152 ptid_t inferior_ptid
;
154 /* Last signal that the inferior received (why it stopped). */
156 enum target_signal stop_signal
;
158 /* Address at which inferior stopped. */
162 /* Chain containing status of breakpoint(s) that we have stopped at. */
166 /* Flag indicating that a command has proceeded the inferior past the
167 current breakpoint. */
169 int breakpoint_proceeded
;
171 /* Nonzero if stopped due to a step command. */
175 /* Nonzero if stopped due to completion of a stack dummy routine. */
177 int stop_stack_dummy
;
179 /* Nonzero if stopped due to a random (unexpected) signal in inferior
182 int stopped_by_random_signal
;
184 /* Range to single step within.
185 If this is nonzero, respond to a single-step signal
186 by continuing to step if the pc is in this range. */
188 CORE_ADDR step_range_start
; /* Inclusive */
189 CORE_ADDR step_range_end
; /* Exclusive */
191 /* Stack frame address as of when stepping command was issued.
192 This is how we know when we step into a subroutine call,
193 and how to set the frame for the breakpoint used to step out. */
195 struct frame_id step_frame_id
;
197 enum step_over_calls_kind step_over_calls
;
199 /* If stepping, nonzero means step count is > 1
200 so don't print frame next time inferior stops
201 if it stops due to stepping. */
205 /* Environment to use for running inferior,
206 in format described in environ.h. */
208 struct gdb_environ
*inferior_environ
;
210 /* When set, no calls to target_resumed observer will be made. */
211 int suppress_resume_observer
= 0;
212 /* When set, normal_stop will not call the normal_stop observer. */
213 int suppress_stop_observer
= 0;
215 /* Accessor routines. */
218 set_inferior_io_terminal (const char *terminal_name
)
220 if (inferior_io_terminal
)
221 xfree (inferior_io_terminal
);
224 inferior_io_terminal
= NULL
;
226 inferior_io_terminal
= savestring (terminal_name
, strlen (terminal_name
));
230 get_inferior_io_terminal (void)
232 return inferior_io_terminal
;
236 get_inferior_args (void)
238 if (inferior_argc
!= 0)
242 n
= gdbarch_construct_inferior_arguments (current_gdbarch
,
243 inferior_argc
, inferior_argv
);
244 old
= set_inferior_args (n
);
248 if (inferior_args
== NULL
)
249 inferior_args
= xstrdup ("");
251 return inferior_args
;
255 set_inferior_args (char *newargs
)
257 char *saved_args
= inferior_args
;
259 inferior_args
= newargs
;
267 set_inferior_args_vector (int argc
, char **argv
)
269 inferior_argc
= argc
;
270 inferior_argv
= argv
;
273 /* Notice when `set args' is run. */
275 notice_args_set (char *args
, int from_tty
, struct cmd_list_element
*c
)
281 /* Notice when `show args' is run. */
283 notice_args_read (struct ui_file
*file
, int from_tty
,
284 struct cmd_list_element
*c
, const char *value
)
286 /* Note that we ignore the passed-in value in favor of computing it
288 deprecated_show_value_hack (file
, from_tty
, c
, get_inferior_args ());
292 /* Compute command-line string given argument vector. This does the
293 same shell processing as fork_inferior. */
295 construct_inferior_arguments (struct gdbarch
*gdbarch
, int argc
, char **argv
)
299 if (STARTUP_WITH_SHELL
)
301 /* This holds all the characters considered special to the
302 typical Unix shells. We include `^' because the SunOS
303 /bin/sh treats it as a synonym for `|'. */
304 char *special
= "\"!#$&*()\\|[]{}<>?'\"`~^; \t\n";
309 /* We over-compute the size. It shouldn't matter. */
310 for (i
= 0; i
< argc
; ++i
)
311 length
+= 2 * strlen (argv
[i
]) + 1 + 2 * (argv
[i
][0] == '\0');
313 result
= (char *) xmalloc (length
);
316 for (i
= 0; i
< argc
; ++i
)
321 /* Need to handle empty arguments specially. */
322 if (argv
[i
][0] == '\0')
329 for (cp
= argv
[i
]; *cp
; ++cp
)
331 if (strchr (special
, *cp
) != NULL
)
341 /* In this case we can't handle arguments that contain spaces,
342 tabs, or newlines -- see breakup_args(). */
346 for (i
= 0; i
< argc
; ++i
)
348 char *cp
= strchr (argv
[i
], ' ');
350 cp
= strchr (argv
[i
], '\t');
352 cp
= strchr (argv
[i
], '\n');
354 error (_("can't handle command-line 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');
403 tty_command (char *file
, int from_tty
)
406 error_no_arg (_("terminal name for running target process"));
408 set_inferior_io_terminal (file
);
411 /* Common actions to take after creating any sort of inferior, by any
412 means (running, attaching, connecting, et cetera). The target
413 should be stopped. */
416 post_create_inferior (struct target_ops
*target
, int from_tty
)
418 /* Be sure we own the terminal in case write operations are performed. */
419 target_terminal_ours ();
421 /* If the target hasn't taken care of this already, do it now.
422 Targets which need to access registers during to_open,
423 to_create_inferior, or to_attach should do it earlier; but many
425 target_find_description ();
429 /* Sometimes the platform-specific hook loads initial shared
430 libraries, and sometimes it doesn't. Try to do so first, so
431 that we can add them with the correct value for FROM_TTY.
432 If we made all the inferior hook methods consistent,
433 this call could be removed. */
435 SOLIB_ADD (NULL
, from_tty
, target
, auto_solib_add
);
437 solib_add (NULL
, from_tty
, target
, auto_solib_add
);
440 /* Create the hooks to handle shared library load and unload
442 #ifdef SOLIB_CREATE_INFERIOR_HOOK
443 SOLIB_CREATE_INFERIOR_HOOK (PIDGET (inferior_ptid
));
445 solib_create_inferior_hook ();
449 observer_notify_inferior_created (target
, from_tty
);
452 /* Kill the inferior if already running. This function is designed
453 to be called when we are about to start the execution of the program
454 from the beginning. Ask the user to confirm that he wants to restart
455 the program being debugged when FROM_TTY is non-null. */
458 kill_if_already_running (int from_tty
)
460 if (! ptid_equal (inferior_ptid
, null_ptid
) && target_has_execution
)
462 /* Bail out before killing the program if we will not be able to
464 target_require_runnable ();
467 && !query ("The program being debugged has been started already.\n\
468 Start it from the beginning? "))
469 error (_("Program not restarted."));
471 no_shared_libraries (NULL
, from_tty
);
472 init_wait_for_inferior ();
476 /* Implement the "run" command. If TBREAK_AT_MAIN is set, then insert
477 a temporary breakpoint at the begining of the main program before
478 running the program. */
481 run_command_1 (char *args
, int from_tty
, int tbreak_at_main
)
487 kill_if_already_running (from_tty
);
488 clear_breakpoint_hit_counts ();
490 /* Clean up any leftovers from other runs. Some other things from
491 this function should probably be moved into target_pre_inferior. */
492 target_pre_inferior (from_tty
);
494 /* Purge old solib objfiles. */
495 objfile_purge_solibs ();
499 /* The comment here used to read, "The exec file is re-read every
500 time we do a generic_mourn_inferior, so we just have to worry
501 about the symbol file." The `generic_mourn_inferior' function
502 gets called whenever the program exits. However, suppose the
503 program exits, and *then* the executable file changes? We need
504 to check again here. Since reopen_exec_file doesn't do anything
505 if the timestamp hasn't changed, I don't see the harm. */
509 /* Insert the temporary breakpoint if a location was specified. */
511 tbreak_command (main_name (), 0);
513 exec_file
= (char *) get_exec_file (0);
515 /* We keep symbols from add-symbol-file, on the grounds that the
516 user might want to add some symbols before running the program
517 (right?). But sometimes (dynamic loading where the user manually
518 introduces the new symbols with add-symbol-file), the code which
519 the symbols describe does not persist between runs. Currently
520 the user has to manually nuke all symbols between runs if they
521 want them to go away (PR 2207). This is probably reasonable. */
525 if (target_can_async_p ())
526 async_disable_stdin ();
530 int async_exec
= strip_bg_char (&args
);
532 /* If we get a request for running in the bg but the target
533 doesn't support it, error out. */
534 if (async_exec
&& !target_can_async_p ())
535 error (_("Asynchronous execution not supported on this target."));
537 /* If we don't get a request of running in the bg, then we need
538 to simulate synchronous (fg) execution. */
539 if (!async_exec
&& target_can_async_p ())
541 /* Simulate synchronous execution */
542 async_disable_stdin ();
545 /* If there were other args, beside '&', process them. */
548 char *old_args
= set_inferior_args (xstrdup (args
));
555 ui_out_field_string (uiout
, NULL
, "Starting program");
556 ui_out_text (uiout
, ": ");
558 ui_out_field_string (uiout
, "execfile", exec_file
);
559 ui_out_spaces (uiout
, 1);
560 /* We call get_inferior_args() because we might need to compute
562 ui_out_field_string (uiout
, "infargs", get_inferior_args ());
563 ui_out_text (uiout
, "\n");
564 ui_out_flush (uiout
);
567 /* We call get_inferior_args() because we might need to compute
569 target_create_inferior (exec_file
, get_inferior_args (),
570 environ_vector (inferior_environ
), from_tty
);
572 /* Pass zero for FROM_TTY, because at this point the "run" command
573 has done its thing; now we are setting up the running program. */
574 post_create_inferior (¤t_target
, 0);
576 /* Start the target running. */
577 proceed ((CORE_ADDR
) -1, TARGET_SIGNAL_0
, 0);
582 run_command (char *args
, int from_tty
)
584 run_command_1 (args
, from_tty
, 0);
588 run_no_args_command (char *args
, int from_tty
)
590 char *old_args
= set_inferior_args (xstrdup (""));
595 /* Start the execution of the program up until the beginning of the main
599 start_command (char *args
, int from_tty
)
601 /* Some languages such as Ada need to search inside the program
602 minimal symbols for the location where to put the temporary
603 breakpoint before starting. */
604 if (!have_minimal_symbols ())
605 error (_("No symbol table loaded. Use the \"file\" command."));
607 /* Run the program until reaching the main procedure... */
608 run_command_1 (args
, from_tty
, 1);
612 continue_command (char *proc_count_exp
, int from_tty
)
617 /* Find out whether we must run in the background. */
618 if (proc_count_exp
!= NULL
)
619 async_exec
= strip_bg_char (&proc_count_exp
);
621 /* If we must run in the background, but the target can't do it,
623 if (async_exec
&& !target_can_async_p ())
624 error (_("Asynchronous execution not supported on this target."));
626 /* If we are not asked to run in the bg, then prepare to run in the
627 foreground, synchronously. */
628 if (!async_exec
&& target_can_async_p ())
630 /* Simulate synchronous execution */
631 async_disable_stdin ();
634 /* If have argument (besides '&'), set proceed count of breakpoint
636 if (proc_count_exp
!= NULL
)
638 bpstat bs
= stop_bpstat
;
642 while ((stat
= bpstat_num (&bs
, &num
)) != 0)
645 set_ignore_count (num
,
646 parse_and_eval_long (proc_count_exp
) - 1,
648 /* set_ignore_count prints a message ending with a period.
649 So print two spaces before "Continuing.". */
651 printf_filtered (" ");
655 if (!stopped
&& from_tty
)
658 ("Not stopped at any breakpoint; argument ignored.\n");
663 printf_filtered (_("Continuing.\n"));
665 clear_proceed_status ();
667 proceed ((CORE_ADDR
) -1, TARGET_SIGNAL_DEFAULT
, 0);
670 /* Step until outside of current statement. */
673 step_command (char *count_string
, int from_tty
)
675 step_1 (0, 0, count_string
);
678 /* Likewise, but skip over subroutine calls as if single instructions. */
681 next_command (char *count_string
, int from_tty
)
683 step_1 (1, 0, count_string
);
686 /* Likewise, but step only one instruction. */
689 stepi_command (char *count_string
, int from_tty
)
691 step_1 (0, 1, count_string
);
695 nexti_command (char *count_string
, int from_tty
)
697 step_1 (1, 1, count_string
);
701 delete_longjmp_breakpoint_cleanup (void *arg
)
703 int thread
= * (int *) arg
;
704 delete_longjmp_breakpoint (thread
);
708 step_1 (int skip_subroutines
, int single_inst
, char *count_string
)
711 struct frame_info
*frame
;
712 struct cleanup
*cleanups
= make_cleanup (null_cleanup
, NULL
);
719 async_exec
= strip_bg_char (&count_string
);
721 /* If we get a request for running in the bg but the target
722 doesn't support it, error out. */
723 if (async_exec
&& !target_can_async_p ())
724 error (_("Asynchronous execution not supported on this target."));
726 /* If we don't get a request of running in the bg, then we need
727 to simulate synchronous (fg) execution. */
728 if (!async_exec
&& target_can_async_p ())
730 /* Simulate synchronous execution */
731 async_disable_stdin ();
734 count
= count_string
? parse_and_eval_long (count_string
) : 1;
736 if (!single_inst
|| skip_subroutines
) /* leave si command alone */
738 if (in_thread_list (inferior_ptid
))
739 thread
= pid_to_thread_id (inferior_ptid
);
741 set_longjmp_breakpoint ();
743 make_cleanup (delete_longjmp_breakpoint_cleanup
, &thread
);
746 /* In synchronous case, all is well, just use the regular for loop. */
747 if (!target_can_async_p ())
749 for (; count
> 0; count
--)
751 clear_proceed_status ();
753 frame
= get_current_frame ();
754 if (!frame
) /* Avoid coredump here. Why tho? */
755 error (_("No current frame"));
756 step_frame_id
= get_frame_id (frame
);
760 find_pc_line_pc_range (stop_pc
, &step_range_start
, &step_range_end
);
761 if (step_range_end
== 0)
764 if (find_pc_partial_function (stop_pc
, &name
, &step_range_start
,
765 &step_range_end
) == 0)
766 error (_("Cannot find bounds of current function"));
768 target_terminal_ours ();
769 printf_filtered (_("\
770 Single stepping until exit from function %s, \n\
771 which has no line number information.\n"), name
);
776 /* Say we are stepping, but stop after one insn whatever it does. */
777 step_range_start
= step_range_end
= 1;
778 if (!skip_subroutines
)
780 Don't step over function calls, not even to functions lacking
782 step_over_calls
= STEP_OVER_NONE
;
785 if (skip_subroutines
)
786 step_over_calls
= STEP_OVER_ALL
;
788 step_multi
= (count
> 1);
789 proceed ((CORE_ADDR
) -1, TARGET_SIGNAL_DEFAULT
, 1);
795 do_cleanups (cleanups
);
798 /* In case of asynchronous target things get complicated, do only
799 one step for now, before returning control to the event loop. Let
800 the continuation figure out how many other steps we need to do,
801 and handle them one at the time, through step_once(). */
804 step_once (skip_subroutines
, single_inst
, count
, thread
);
805 /* We are running, and the continuation is installed. It will
806 disable the longjmp breakpoint as appropriate. */
807 discard_cleanups (cleanups
);
811 /* Called after we are done with one step operation, to check whether
812 we need to step again, before we print the prompt and return control
813 to the user. If count is > 1, we will need to do one more call to
814 proceed(), via step_once(). Basically it is like step_once and
815 step_1_continuation are co-recursive. */
817 step_1_continuation (struct continuation_arg
*arg
, int error_p
)
820 int skip_subroutines
;
824 skip_subroutines
= arg
->data
.integer
;
825 single_inst
= arg
->next
->data
.integer
;
826 count
= arg
->next
->next
->data
.integer
;
827 thread
= arg
->next
->next
->next
->data
.integer
;
829 if (error_p
|| !step_multi
|| !stop_step
)
831 /* We either hit an error, or stopped for some reason
832 that is not stepping, or there are no further steps
834 if (!single_inst
|| skip_subroutines
)
835 delete_longjmp_breakpoint (thread
);
839 step_once (skip_subroutines
, single_inst
, count
- 1, thread
);
842 /* Do just one step operation. If count >1 we will have to set up a
843 continuation to be done after the target stops (after this one
844 step). This is useful to implement the 'step n' kind of commands, in
845 case of asynchronous targets. We had to split step_1 into two parts,
846 one to be done before proceed() and one afterwards. This function is
847 called in case of step n with n>1, after the first step operation has
850 step_once (int skip_subroutines
, int single_inst
, int count
, int thread
)
852 struct continuation_arg
*arg1
;
853 struct continuation_arg
*arg2
;
854 struct continuation_arg
*arg3
;
855 struct continuation_arg
*arg4
;
856 struct frame_info
*frame
;
860 clear_proceed_status ();
862 frame
= get_current_frame ();
863 if (!frame
) /* Avoid coredump here. Why tho? */
864 error (_("No current frame"));
865 step_frame_id
= get_frame_id (frame
);
869 find_pc_line_pc_range (stop_pc
, &step_range_start
, &step_range_end
);
871 /* If we have no line info, switch to stepi mode. */
872 if (step_range_end
== 0 && step_stop_if_no_debug
)
874 step_range_start
= step_range_end
= 1;
876 else if (step_range_end
== 0)
879 if (find_pc_partial_function (stop_pc
, &name
, &step_range_start
,
880 &step_range_end
) == 0)
881 error (_("Cannot find bounds of current function"));
883 target_terminal_ours ();
884 printf_filtered (_("\
885 Single stepping until exit from function %s, \n\
886 which has no line number information.\n"), name
);
891 /* Say we are stepping, but stop after one insn whatever it does. */
892 step_range_start
= step_range_end
= 1;
893 if (!skip_subroutines
)
895 Don't step over function calls, not even to functions lacking
897 step_over_calls
= STEP_OVER_NONE
;
900 if (skip_subroutines
)
901 step_over_calls
= STEP_OVER_ALL
;
903 step_multi
= (count
> 1);
904 proceed ((CORE_ADDR
) -1, TARGET_SIGNAL_DEFAULT
, 1);
906 (struct continuation_arg
*) xmalloc (sizeof (struct continuation_arg
));
908 (struct continuation_arg
*) xmalloc (sizeof (struct continuation_arg
));
910 (struct continuation_arg
*) xmalloc (sizeof (struct continuation_arg
));
912 (struct continuation_arg
*) xmalloc (sizeof (struct continuation_arg
));
914 arg1
->data
.integer
= skip_subroutines
;
916 arg2
->data
.integer
= single_inst
;
918 arg3
->data
.integer
= count
;
920 arg4
->data
.integer
= thread
;
921 add_intermediate_continuation (step_1_continuation
, arg1
);
926 /* Continue program at specified address. */
929 jump_command (char *arg
, int from_tty
)
932 struct symtabs_and_lines sals
;
933 struct symtab_and_line sal
;
940 /* Find out whether we must run in the background. */
942 async_exec
= strip_bg_char (&arg
);
944 /* If we must run in the background, but the target can't do it,
946 if (async_exec
&& !target_can_async_p ())
947 error (_("Asynchronous execution not supported on this target."));
950 error_no_arg (_("starting address"));
952 sals
= decode_line_spec_1 (arg
, 1);
955 error (_("Unreasonable jump request"));
961 if (sal
.symtab
== 0 && sal
.pc
== 0)
962 error (_("No source file has been specified."));
964 resolve_sal_pc (&sal
); /* May error out */
966 /* See if we are trying to jump to another function. */
967 fn
= get_frame_function (get_current_frame ());
968 sfn
= find_pc_function (sal
.pc
);
969 if (fn
!= NULL
&& sfn
!= fn
)
971 if (!query ("Line %d is not in `%s'. Jump anyway? ", sal
.line
,
972 SYMBOL_PRINT_NAME (fn
)))
974 error (_("Not confirmed."));
981 fixup_symbol_section (sfn
, 0);
982 if (section_is_overlay (SYMBOL_BFD_SECTION (sfn
)) &&
983 !section_is_mapped (SYMBOL_BFD_SECTION (sfn
)))
985 if (!query ("WARNING!!! Destination is in unmapped overlay! Jump anyway? "))
987 error (_("Not confirmed."));
997 printf_filtered (_("Continuing at "));
998 fputs_filtered (paddress (addr
), gdb_stdout
);
999 printf_filtered (".\n");
1002 /* If we are not asked to run in the bg, then prepare to run in the
1003 foreground, synchronously. */
1004 if (!async_exec
&& target_can_async_p ())
1006 /* Simulate synchronous execution */
1007 async_disable_stdin ();
1010 clear_proceed_status ();
1011 proceed (addr
, TARGET_SIGNAL_0
, 0);
1015 /* Go to line or address in current procedure */
1017 go_command (char *line_no
, int from_tty
)
1019 if (line_no
== (char *) NULL
|| !*line_no
)
1020 printf_filtered (GO_USAGE
);
1023 tbreak_command (line_no
, from_tty
);
1024 jump_command (line_no
, from_tty
);
1029 /* Continue program giving it specified signal. */
1032 signal_command (char *signum_exp
, int from_tty
)
1034 enum target_signal oursig
;
1037 dont_repeat (); /* Too dangerous. */
1040 /* Find out whether we must run in the background. */
1041 if (signum_exp
!= NULL
)
1042 async_exec
= strip_bg_char (&signum_exp
);
1044 /* If we must run in the background, but the target can't do it,
1046 if (async_exec
&& !target_can_async_p ())
1047 error (_("Asynchronous execution not supported on this target."));
1049 /* If we are not asked to run in the bg, then prepare to run in the
1050 foreground, synchronously. */
1051 if (!async_exec
&& target_can_async_p ())
1053 /* Simulate synchronous execution. */
1054 async_disable_stdin ();
1058 error_no_arg (_("signal number"));
1060 /* It would be even slicker to make signal names be valid expressions,
1061 (the type could be "enum $signal" or some such), then the user could
1062 assign them to convenience variables. */
1063 oursig
= target_signal_from_name (signum_exp
);
1065 if (oursig
== TARGET_SIGNAL_UNKNOWN
)
1067 /* No, try numeric. */
1068 int num
= parse_and_eval_long (signum_exp
);
1071 oursig
= TARGET_SIGNAL_0
;
1073 oursig
= target_signal_from_command (num
);
1078 if (oursig
== TARGET_SIGNAL_0
)
1079 printf_filtered (_("Continuing with no signal.\n"));
1081 printf_filtered (_("Continuing with signal %s.\n"),
1082 target_signal_to_name (oursig
));
1085 clear_proceed_status ();
1086 /* "signal 0" should not get stuck if we are stopped at a breakpoint.
1087 FIXME: Neither should "signal foo" but when I tried passing
1088 (CORE_ADDR)-1 unconditionally I got a testsuite failure which I haven't
1089 tried to track down yet. */
1090 proceed (oursig
== TARGET_SIGNAL_0
? (CORE_ADDR
) -1 : stop_pc
, oursig
, 0);
1093 /* Proceed until we reach a different source line with pc greater than
1094 our current one or exit the function. We skip calls in both cases.
1096 Note that eventually this command should probably be changed so
1097 that only source lines are printed out when we hit the breakpoint
1098 we set. This may involve changes to wait_for_inferior and the
1099 proceed status code. */
1102 until_next_command (int from_tty
)
1104 struct frame_info
*frame
;
1106 struct symbol
*func
;
1107 struct symtab_and_line sal
;
1109 clear_proceed_status ();
1111 frame
= get_current_frame ();
1113 /* Step until either exited from this function or greater
1114 than the current line (if in symbolic section) or pc (if
1118 func
= find_pc_function (pc
);
1122 struct minimal_symbol
*msymbol
= lookup_minimal_symbol_by_pc (pc
);
1124 if (msymbol
== NULL
)
1125 error (_("Execution is not within a known function."));
1127 step_range_start
= SYMBOL_VALUE_ADDRESS (msymbol
);
1128 step_range_end
= pc
;
1132 sal
= find_pc_line (pc
, 0);
1134 step_range_start
= BLOCK_START (SYMBOL_BLOCK_VALUE (func
));
1135 step_range_end
= sal
.end
;
1138 step_over_calls
= STEP_OVER_ALL
;
1139 step_frame_id
= get_frame_id (frame
);
1141 step_multi
= 0; /* Only one call to proceed */
1143 proceed ((CORE_ADDR
) -1, TARGET_SIGNAL_DEFAULT
, 1);
1147 until_command (char *arg
, int from_tty
)
1151 if (!target_has_execution
)
1152 error (_("The program is not running."));
1154 /* Find out whether we must run in the background. */
1156 async_exec
= strip_bg_char (&arg
);
1158 /* If we must run in the background, but the target can't do it,
1160 if (async_exec
&& !target_can_async_p ())
1161 error (_("Asynchronous execution not supported on this target."));
1163 /* If we are not asked to run in the bg, then prepare to run in the
1164 foreground, synchronously. */
1165 if (!async_exec
&& target_can_async_p ())
1167 /* Simulate synchronous execution */
1168 async_disable_stdin ();
1172 until_break_command (arg
, from_tty
, 0);
1174 until_next_command (from_tty
);
1178 advance_command (char *arg
, int from_tty
)
1182 if (!target_has_execution
)
1183 error (_("The program is not running."));
1186 error_no_arg (_("a location"));
1188 /* Find out whether we must run in the background. */
1190 async_exec
= strip_bg_char (&arg
);
1192 /* If we must run in the background, but the target can't do it,
1194 if (async_exec
&& !target_can_async_p ())
1195 error (_("Asynchronous execution not supported on this target."));
1197 /* If we are not asked to run in the bg, then prepare to run in the
1198 foreground, synchronously. */
1199 if (!async_exec
&& target_can_async_p ())
1201 /* Simulate synchronous execution. */
1202 async_disable_stdin ();
1205 until_break_command (arg
, from_tty
, 1);
1208 /* Print the result of a function at the end of a 'finish' command. */
1211 print_return_value (struct type
*func_type
, struct type
*value_type
)
1213 struct gdbarch
*gdbarch
= current_gdbarch
;
1214 struct cleanup
*old_chain
;
1215 struct ui_stream
*stb
;
1216 struct value
*value
;
1218 CHECK_TYPEDEF (value_type
);
1219 gdb_assert (TYPE_CODE (value_type
) != TYPE_CODE_VOID
);
1221 /* FIXME: 2003-09-27: When returning from a nested inferior function
1222 call, it's possible (with no help from the architecture vector)
1223 to locate and return/print a "struct return" value. This is just
1224 a more complicated case of what is already being done in in the
1225 inferior function call code. In fact, when inferior function
1226 calls are made async, this will likely be made the norm. */
1228 switch (gdbarch_return_value (gdbarch
, func_type
, value_type
,
1231 case RETURN_VALUE_REGISTER_CONVENTION
:
1232 case RETURN_VALUE_ABI_RETURNS_ADDRESS
:
1233 case RETURN_VALUE_ABI_PRESERVES_ADDRESS
:
1234 value
= allocate_value (value_type
);
1235 gdbarch_return_value (gdbarch
, func_type
, value_type
, stop_registers
,
1236 value_contents_raw (value
), NULL
);
1238 case RETURN_VALUE_STRUCT_CONVENTION
:
1242 internal_error (__FILE__
, __LINE__
, _("bad switch"));
1248 stb
= ui_out_stream_new (uiout
);
1249 old_chain
= make_cleanup_ui_out_stream_delete (stb
);
1250 ui_out_text (uiout
, "Value returned is ");
1251 ui_out_field_fmt (uiout
, "gdb-result-var", "$%d",
1252 record_latest_value (value
));
1253 ui_out_text (uiout
, " = ");
1254 value_print (value
, stb
->stream
, 0, Val_no_prettyprint
);
1255 ui_out_field_stream (uiout
, "return-value", stb
);
1256 ui_out_text (uiout
, "\n");
1257 do_cleanups (old_chain
);
1261 ui_out_text (uiout
, "Value returned has type: ");
1262 ui_out_field_string (uiout
, "return-type", TYPE_NAME (value_type
));
1263 ui_out_text (uiout
, ".");
1264 ui_out_text (uiout
, " Cannot determine contents\n");
1268 /* Stuff that needs to be done by the finish command after the target
1269 has stopped. In asynchronous mode, we wait for the target to stop
1270 in the call to poll or select in the event loop, so it is
1271 impossible to do all the stuff as part of the finish_command
1272 function itself. The only chance we have to complete this command
1273 is in fetch_inferior_event, which is called by the event loop as
1274 soon as it detects that the target has stopped. This function is
1275 called via the cmd_continuation pointer. */
1278 finish_command_continuation (struct continuation_arg
*arg
, int error_p
)
1280 struct symbol
*function
;
1281 struct breakpoint
*breakpoint
;
1282 struct cleanup
*cleanups
;
1284 breakpoint
= (struct breakpoint
*) arg
->data
.pointer
;
1285 function
= (struct symbol
*) arg
->next
->data
.pointer
;
1289 if (bpstat_find_breakpoint (stop_bpstat
, breakpoint
) != NULL
1290 && function
!= NULL
)
1292 struct type
*value_type
;
1294 value_type
= TYPE_TARGET_TYPE (SYMBOL_TYPE (function
));
1296 internal_error (__FILE__
, __LINE__
,
1297 _("finish_command: function has no target type"));
1299 if (TYPE_CODE (value_type
) != TYPE_CODE_VOID
)
1300 print_return_value (SYMBOL_TYPE (function
), value_type
);
1303 /* We suppress normal call of normal_stop observer and do it here so that
1304 that *stopped notification includes the return value. */
1305 observer_notify_normal_stop (stop_bpstat
);
1308 suppress_stop_observer
= 0;
1309 delete_breakpoint (breakpoint
);
1312 /* "finish": Set a temporary breakpoint at the place the selected
1313 frame will return to, then continue. */
1316 finish_command (char *arg
, int from_tty
)
1318 struct symtab_and_line sal
;
1319 struct frame_info
*frame
;
1320 struct symbol
*function
;
1321 struct breakpoint
*breakpoint
;
1322 struct cleanup
*old_chain
;
1323 struct continuation_arg
*arg1
, *arg2
, *arg3
;
1327 /* Find out whether we must run in the background. */
1329 async_exec
= strip_bg_char (&arg
);
1331 /* If we must run in the background, but the target can't do it,
1333 if (async_exec
&& !target_can_async_p ())
1334 error (_("Asynchronous execution not supported on this target."));
1336 /* If we are not asked to run in the bg, then prepare to run in the
1337 foreground, synchronously. */
1338 if (!async_exec
&& target_can_async_p ())
1340 /* Simulate synchronous execution. */
1341 async_disable_stdin ();
1345 error (_("The \"finish\" command does not take any arguments."));
1346 if (!target_has_execution
)
1347 error (_("The program is not running."));
1349 frame
= get_prev_frame (get_selected_frame (_("No selected frame.")));
1351 error (_("\"finish\" not meaningful in the outermost frame."));
1353 clear_proceed_status ();
1355 sal
= find_pc_line (get_frame_pc (frame
), 0);
1356 sal
.pc
= get_frame_pc (frame
);
1358 breakpoint
= set_momentary_breakpoint (sal
, get_frame_id (frame
), bp_finish
);
1360 old_chain
= make_cleanup_delete_breakpoint (breakpoint
);
1362 /* Find the function we will return from. */
1364 function
= find_pc_function (get_frame_pc (get_selected_frame (NULL
)));
1366 /* Print info on the selected frame, including level number but not
1370 printf_filtered (_("Run till exit from "));
1371 print_stack_frame (get_selected_frame (NULL
), 1, LOCATION
);
1374 proceed_to_finish
= 1; /* We want stop_registers, please... */
1375 make_cleanup_restore_integer (&suppress_stop_observer
);
1376 suppress_stop_observer
= 1;
1377 proceed ((CORE_ADDR
) -1, TARGET_SIGNAL_DEFAULT
, 0);
1380 (struct continuation_arg
*) xmalloc (sizeof (struct continuation_arg
));
1382 (struct continuation_arg
*) xmalloc (sizeof (struct continuation_arg
));
1385 arg1
->data
.pointer
= breakpoint
;
1386 arg2
->data
.pointer
= function
;
1387 add_continuation (finish_command_continuation
, arg1
);
1389 discard_cleanups (old_chain
);
1390 if (!target_can_async_p ())
1391 do_all_continuations (0);
1396 program_info (char *args
, int from_tty
)
1398 bpstat bs
= stop_bpstat
;
1400 int stat
= bpstat_num (&bs
, &num
);
1402 if (!target_has_execution
)
1404 printf_filtered (_("The program being debugged is not being run.\n"));
1408 target_files_info ();
1409 printf_filtered (_("Program stopped at %s.\n"),
1410 hex_string ((unsigned long) stop_pc
));
1412 printf_filtered (_("It stopped after being stepped.\n"));
1415 /* There may be several breakpoints in the same place, so this
1416 isn't as strange as it seems. */
1421 printf_filtered (_("\
1422 It stopped at a breakpoint that has since been deleted.\n"));
1425 printf_filtered (_("It stopped at breakpoint %d.\n"), num
);
1426 stat
= bpstat_num (&bs
, &num
);
1429 else if (stop_signal
!= TARGET_SIGNAL_0
)
1431 printf_filtered (_("It stopped with signal %s, %s.\n"),
1432 target_signal_to_name (stop_signal
),
1433 target_signal_to_string (stop_signal
));
1438 printf_filtered (_("\
1439 Type \"info stack\" or \"info registers\" for more information.\n"));
1444 environment_info (char *var
, int from_tty
)
1448 char *val
= get_in_environ (inferior_environ
, var
);
1451 puts_filtered (var
);
1452 puts_filtered (" = ");
1453 puts_filtered (val
);
1454 puts_filtered ("\n");
1458 puts_filtered ("Environment variable \"");
1459 puts_filtered (var
);
1460 puts_filtered ("\" not defined.\n");
1465 char **vector
= environ_vector (inferior_environ
);
1468 puts_filtered (*vector
++);
1469 puts_filtered ("\n");
1475 set_environment_command (char *arg
, int from_tty
)
1477 char *p
, *val
, *var
;
1481 error_no_arg (_("environment variable and value"));
1483 /* Find seperation between variable name and value */
1484 p
= (char *) strchr (arg
, '=');
1485 val
= (char *) strchr (arg
, ' ');
1487 if (p
!= 0 && val
!= 0)
1489 /* We have both a space and an equals. If the space is before the
1490 equals, walk forward over the spaces til we see a nonspace
1491 (possibly the equals). */
1496 /* Now if the = is after the char following the spaces,
1497 take the char following the spaces. */
1501 else if (val
!= 0 && p
== 0)
1505 error_no_arg (_("environment variable to set"));
1507 if (p
== 0 || p
[1] == 0)
1511 p
= arg
+ strlen (arg
); /* So that savestring below will work */
1515 /* Not setting variable value to null */
1517 while (*val
== ' ' || *val
== '\t')
1521 while (p
!= arg
&& (p
[-1] == ' ' || p
[-1] == '\t'))
1524 var
= savestring (arg
, p
- arg
);
1527 printf_filtered (_("\
1528 Setting environment variable \"%s\" to null value.\n"),
1530 set_in_environ (inferior_environ
, var
, "");
1533 set_in_environ (inferior_environ
, var
, val
);
1538 unset_environment_command (char *var
, int from_tty
)
1542 /* If there is no argument, delete all environment variables.
1543 Ask for confirmation if reading from the terminal. */
1544 if (!from_tty
|| query (_("Delete all environment variables? ")))
1546 free_environ (inferior_environ
);
1547 inferior_environ
= make_environ ();
1551 unset_in_environ (inferior_environ
, var
);
1554 /* Handle the execution path (PATH variable) */
1556 static const char path_var_name
[] = "PATH";
1559 path_info (char *args
, int from_tty
)
1561 puts_filtered ("Executable and object file path: ");
1562 puts_filtered (get_in_environ (inferior_environ
, path_var_name
));
1563 puts_filtered ("\n");
1566 /* Add zero or more directories to the front of the execution path. */
1569 path_command (char *dirname
, int from_tty
)
1574 env
= get_in_environ (inferior_environ
, path_var_name
);
1575 /* Can be null if path is not set */
1578 exec_path
= xstrdup (env
);
1579 mod_path (dirname
, &exec_path
);
1580 set_in_environ (inferior_environ
, path_var_name
, exec_path
);
1583 path_info ((char *) NULL
, from_tty
);
1587 /* Print out the machine register regnum. If regnum is -1, print all
1588 registers (print_all == 1) or all non-float and non-vector
1589 registers (print_all == 0).
1591 For most machines, having all_registers_info() print the
1592 register(s) one per line is good enough. If a different format is
1593 required, (eg, for MIPS or Pyramid 90x, which both have lots of
1594 regs), or there is an existing convention for showing all the
1595 registers, define the architecture method PRINT_REGISTERS_INFO to
1596 provide that format. */
1599 default_print_registers_info (struct gdbarch
*gdbarch
,
1600 struct ui_file
*file
,
1601 struct frame_info
*frame
,
1602 int regnum
, int print_all
)
1605 const int numregs
= gdbarch_num_regs (gdbarch
)
1606 + gdbarch_num_pseudo_regs (gdbarch
);
1607 gdb_byte buffer
[MAX_REGISTER_SIZE
];
1609 for (i
= 0; i
< numregs
; i
++)
1611 /* Decide between printing all regs, non-float / vector regs, or
1617 if (!gdbarch_register_reggroup_p (gdbarch
, i
, all_reggroup
))
1622 if (!gdbarch_register_reggroup_p (gdbarch
, i
, general_reggroup
))
1632 /* If the register name is empty, it is undefined for this
1633 processor, so don't display anything. */
1634 if (gdbarch_register_name (gdbarch
, i
) == NULL
1635 || *(gdbarch_register_name (gdbarch
, i
)) == '\0')
1638 fputs_filtered (gdbarch_register_name (gdbarch
, i
), file
);
1639 print_spaces_filtered (15 - strlen (gdbarch_register_name
1640 (gdbarch
, i
)), file
);
1642 /* Get the data in raw format. */
1643 if (! frame_register_read (frame
, i
, buffer
))
1645 fprintf_filtered (file
, "*value not available*\n");
1649 /* If virtual format is floating, print it that way, and in raw
1651 if (TYPE_CODE (register_type (gdbarch
, i
)) == TYPE_CODE_FLT
1652 || TYPE_CODE (register_type (gdbarch
, i
)) == TYPE_CODE_DECFLOAT
)
1656 val_print (register_type (gdbarch
, i
), buffer
, 0, 0,
1657 file
, 0, 1, 0, Val_pretty_default
, current_language
);
1659 fprintf_filtered (file
, "\t(raw 0x");
1660 for (j
= 0; j
< register_size (gdbarch
, i
); j
++)
1663 if (gdbarch_byte_order (gdbarch
) == BFD_ENDIAN_BIG
)
1666 idx
= register_size (gdbarch
, i
) - 1 - j
;
1667 fprintf_filtered (file
, "%02x", (unsigned char) buffer
[idx
]);
1669 fprintf_filtered (file
, ")");
1673 /* Print the register in hex. */
1674 val_print (register_type (gdbarch
, i
), buffer
, 0, 0,
1675 file
, 'x', 1, 0, Val_pretty_default
, current_language
);
1676 /* If not a vector register, print it also according to its
1678 if (TYPE_VECTOR (register_type (gdbarch
, i
)) == 0)
1680 fprintf_filtered (file
, "\t");
1681 val_print (register_type (gdbarch
, i
), buffer
, 0, 0,
1682 file
, 0, 1, 0, Val_pretty_default
, current_language
);
1686 fprintf_filtered (file
, "\n");
1691 registers_info (char *addr_exp
, int fpregs
)
1693 struct frame_info
*frame
;
1694 struct gdbarch
*gdbarch
;
1695 int regnum
, numregs
;
1698 if (!target_has_registers
)
1699 error (_("The program has no registers now."));
1700 frame
= get_selected_frame (NULL
);
1701 gdbarch
= get_frame_arch (frame
);
1705 gdbarch_print_registers_info (gdbarch
, gdb_stdout
,
1710 while (*addr_exp
!= '\0')
1715 /* Keep skipping leading white space. */
1716 if (isspace ((*addr_exp
)))
1722 /* Discard any leading ``$''. Check that there is something
1723 resembling a register following it. */
1724 if (addr_exp
[0] == '$')
1726 if (isspace ((*addr_exp
)) || (*addr_exp
) == '\0')
1727 error (_("Missing register name"));
1729 /* Find the start/end of this register name/num/group. */
1731 while ((*addr_exp
) != '\0' && !isspace ((*addr_exp
)))
1735 /* Figure out what we've found and display it. */
1737 /* A register name? */
1739 int regnum
= frame_map_name_to_regnum (frame
, start
, end
- start
);
1742 /* User registers lie completely outside of the range of
1743 normal registers. Catch them early so that the target
1745 if (regnum
>= gdbarch_num_regs (gdbarch
)
1746 + gdbarch_num_pseudo_regs (gdbarch
))
1748 struct value
*val
= value_of_user_reg (regnum
, frame
);
1750 printf_filtered ("%s: ", start
);
1751 print_scalar_formatted (value_contents (val
),
1752 check_typedef (value_type (val
)),
1753 'x', 0, gdb_stdout
);
1754 printf_filtered ("\n");
1757 gdbarch_print_registers_info (gdbarch
, gdb_stdout
,
1758 frame
, regnum
, fpregs
);
1763 /* A register number? (how portable is this one?). */
1766 int regnum
= strtol (start
, &endptr
, 0);
1769 && regnum
< gdbarch_num_regs (gdbarch
)
1770 + gdbarch_num_pseudo_regs (gdbarch
))
1772 gdbarch_print_registers_info (gdbarch
, gdb_stdout
,
1773 frame
, regnum
, fpregs
);
1778 /* A register group? */
1780 struct reggroup
*group
;
1781 for (group
= reggroup_next (gdbarch
, NULL
);
1783 group
= reggroup_next (gdbarch
, group
))
1785 /* Don't bother with a length check. Should the user
1786 enter a short register group name, go with the first
1787 group that matches. */
1788 if (strncmp (start
, reggroup_name (group
), end
- start
) == 0)
1795 regnum
< gdbarch_num_regs (gdbarch
)
1796 + gdbarch_num_pseudo_regs (gdbarch
);
1799 if (gdbarch_register_reggroup_p (gdbarch
, regnum
, group
))
1800 gdbarch_print_registers_info (gdbarch
,
1808 /* Nothing matched. */
1809 error (_("Invalid register `%.*s'"), (int) (end
- start
), start
);
1814 all_registers_info (char *addr_exp
, int from_tty
)
1816 registers_info (addr_exp
, 1);
1820 nofp_registers_info (char *addr_exp
, int from_tty
)
1822 registers_info (addr_exp
, 0);
1826 print_vector_info (struct gdbarch
*gdbarch
, struct ui_file
*file
,
1827 struct frame_info
*frame
, const char *args
)
1829 if (gdbarch_print_vector_info_p (gdbarch
))
1830 gdbarch_print_vector_info (gdbarch
, file
, frame
, args
);
1834 int printed_something
= 0;
1837 regnum
< gdbarch_num_regs (gdbarch
)
1838 + gdbarch_num_pseudo_regs (gdbarch
);
1841 if (gdbarch_register_reggroup_p (gdbarch
, regnum
, vector_reggroup
))
1843 printed_something
= 1;
1844 gdbarch_print_registers_info (gdbarch
, file
, frame
, regnum
, 1);
1847 if (!printed_something
)
1848 fprintf_filtered (file
, "No vector information\n");
1853 vector_info (char *args
, int from_tty
)
1855 if (!target_has_registers
)
1856 error (_("The program has no registers now."));
1858 print_vector_info (current_gdbarch
, gdb_stdout
,
1859 get_selected_frame (NULL
), args
);
1865 * Should save/restore the tty state since it might be that the
1866 * program to be debugged was started on this tty and it wants
1867 * the tty in some state other than what we want. If it's running
1868 * on another terminal or without a terminal, then saving and
1869 * restoring the tty state is a harmless no-op.
1870 * This only needs to be done if we are attaching to a process.
1875 takes a program started up outside of gdb and ``attaches'' to it.
1876 This stops it cold in its tracks and allows us to start debugging it.
1877 and wait for the trace-trap that results from attaching. */
1880 attach_command_post_wait (char *args
, int from_tty
, int async_exec
)
1883 char *full_exec_path
= NULL
;
1885 stop_soon
= NO_STOP_QUIETLY
;
1887 /* If no exec file is yet known, try to determine it from the
1889 exec_file
= (char *) get_exec_file (0);
1892 exec_file
= target_pid_to_exec_file (PIDGET (inferior_ptid
));
1895 /* It's possible we don't have a full path, but rather just a
1896 filename. Some targets, such as HP-UX, don't provide the
1899 Attempt to qualify the filename against the source path.
1900 (If that fails, we'll just fall back on the original
1901 filename. Not much more we can do...)
1903 if (!source_full_path_of (exec_file
, &full_exec_path
))
1904 full_exec_path
= savestring (exec_file
, strlen (exec_file
));
1906 exec_file_attach (full_exec_path
, from_tty
);
1907 symbol_file_add_main (full_exec_path
, from_tty
);
1912 reopen_exec_file ();
1916 /* Take any necessary post-attaching actions for this platform. */
1917 target_post_attach (PIDGET (inferior_ptid
));
1919 post_create_inferior (¤t_target
, from_tty
);
1921 /* Install inferior's terminal modes. */
1922 target_terminal_inferior ();
1925 proceed ((CORE_ADDR
) -1, TARGET_SIGNAL_0
, 0);
1928 if (target_can_async_p ())
1929 async_enable_stdin ();
1931 if (deprecated_attach_hook
)
1932 deprecated_attach_hook ();
1937 attach_command_continuation (struct continuation_arg
*arg
, int error_p
)
1943 args
= (char *) arg
->data
.pointer
;
1944 from_tty
= arg
->next
->data
.integer
;
1945 async_exec
= arg
->next
->next
->data
.integer
;
1947 attach_command_post_wait (args
, from_tty
, async_exec
);
1951 attach_command (char *args
, int from_tty
)
1954 char *full_exec_path
= NULL
;
1957 dont_repeat (); /* Not for the faint of heart */
1959 if (target_has_execution
)
1961 if (query ("A program is being debugged already. Kill it? "))
1964 error (_("Not killed."));
1967 /* Clean up any leftovers from other runs. Some other things from
1968 this function should probably be moved into target_pre_inferior. */
1969 target_pre_inferior (from_tty
);
1971 /* Clear out solib state. Otherwise the solib state of the previous
1972 inferior might have survived and is entirely wrong for the new
1973 target. This has been observed on GNU/Linux using glibc 2.3. How
1985 Cannot access memory at address 0xdeadbeef
1991 async_exec
= strip_bg_char (&args
);
1993 /* If we get a request for running in the bg but the target
1994 doesn't support it, error out. */
1995 if (async_exec
&& !target_can_async_p ())
1996 error (_("Asynchronous execution not supported on this target."));
1999 /* If we don't get a request of running in the bg, then we need
2000 to simulate synchronous (fg) execution. */
2001 if (!async_exec
&& target_can_async_p ())
2003 /* Simulate synchronous execution */
2004 async_disable_stdin ();
2007 target_attach (args
, from_tty
);
2009 /* Set up the "saved terminal modes" of the inferior
2010 based on what modes we are starting it with. */
2011 target_terminal_init ();
2013 /* Set up execution context to know that we should return from
2014 wait_for_inferior as soon as the target reports a stop. */
2015 init_wait_for_inferior ();
2016 clear_proceed_status ();
2018 /* No traps are generated when attaching to inferior under Mach 3
2020 #ifndef ATTACH_NO_WAIT
2021 /* Careful here. See comments in inferior.h. Basically some OSes
2022 don't ignore SIGSTOPs on continue requests anymore. We need a
2023 way for handle_inferior_event to reset the stop_signal variable
2024 after an attach, and this is what STOP_QUIETLY_NO_SIGSTOP is for. */
2025 stop_soon
= STOP_QUIETLY_NO_SIGSTOP
;
2027 if (target_can_async_p ())
2029 /* sync_execution mode. Wait for stop. */
2030 struct continuation_arg
*arg1
, *arg2
, *arg3
;
2033 (struct continuation_arg
*) xmalloc (sizeof (struct continuation_arg
));
2035 (struct continuation_arg
*) xmalloc (sizeof (struct continuation_arg
));
2037 (struct continuation_arg
*) xmalloc (sizeof (struct continuation_arg
));
2041 arg1
->data
.pointer
= args
;
2042 arg2
->data
.integer
= from_tty
;
2043 arg3
->data
.integer
= async_exec
;
2044 add_continuation (attach_command_continuation
, arg1
);
2048 wait_for_inferior (0);
2051 attach_command_post_wait (args
, from_tty
, async_exec
);
2056 * takes a program previously attached to and detaches it.
2057 * The program resumes execution and will no longer stop
2058 * on signals, etc. We better not have left any breakpoints
2059 * in the program or it'll die when it hits one. For this
2060 * to work, it may be necessary for the process to have been
2061 * previously attached. It *might* work if the program was
2062 * started via the normal ptrace (PTRACE_TRACEME).
2066 detach_command (char *args
, int from_tty
)
2068 dont_repeat (); /* Not for the faint of heart. */
2069 target_detach (args
, from_tty
);
2070 no_shared_libraries (NULL
, from_tty
);
2071 init_thread_list ();
2072 if (deprecated_detach_hook
)
2073 deprecated_detach_hook ();
2076 /* Disconnect from the current target without resuming it (leaving it
2077 waiting for a debugger).
2079 We'd better not have left any breakpoints in the program or the
2080 next debugger will get confused. Currently only supported for some
2081 remote targets, since the normal attach mechanisms don't work on
2082 stopped processes on some native platforms (e.g. GNU/Linux). */
2085 disconnect_command (char *args
, int from_tty
)
2087 dont_repeat (); /* Not for the faint of heart */
2088 target_disconnect (args
, from_tty
);
2089 no_shared_libraries (NULL
, from_tty
);
2090 init_thread_list ();
2091 if (deprecated_detach_hook
)
2092 deprecated_detach_hook ();
2095 /* Stop the execution of the target while running in async mode, in
2098 interrupt_target_command (char *args
, int from_tty
)
2100 if (target_can_async_p ())
2102 dont_repeat (); /* Not for the faint of heart */
2108 print_float_info (struct gdbarch
*gdbarch
, struct ui_file
*file
,
2109 struct frame_info
*frame
, const char *args
)
2111 if (gdbarch_print_float_info_p (gdbarch
))
2112 gdbarch_print_float_info (gdbarch
, file
, frame
, args
);
2116 int printed_something
= 0;
2119 regnum
< gdbarch_num_regs (gdbarch
)
2120 + gdbarch_num_pseudo_regs (gdbarch
);
2123 if (gdbarch_register_reggroup_p (gdbarch
, regnum
, float_reggroup
))
2125 printed_something
= 1;
2126 gdbarch_print_registers_info (gdbarch
, file
, frame
, regnum
, 1);
2129 if (!printed_something
)
2130 fprintf_filtered (file
, "\
2131 No floating-point info available for this processor.\n");
2136 float_info (char *args
, int from_tty
)
2138 if (!target_has_registers
)
2139 error (_("The program has no registers now."));
2141 print_float_info (current_gdbarch
, gdb_stdout
,
2142 get_selected_frame (NULL
), args
);
2146 unset_command (char *args
, int from_tty
)
2148 printf_filtered (_("\
2149 \"unset\" must be followed by the name of an unset subcommand.\n"));
2150 help_list (unsetlist
, "unset ", -1, gdb_stdout
);
2154 _initialize_infcmd (void)
2156 struct cmd_list_element
*c
= NULL
;
2158 /* add the filename of the terminal connected to inferior I/O */
2159 add_setshow_filename_cmd ("inferior-tty", class_run
,
2160 &inferior_io_terminal
, _("\
2161 Set terminal for future runs of program being debugged."), _("\
2162 Show terminal for future runs of program being debugged."), _("\
2163 Usage: set inferior-tty /dev/pts/1"), NULL
, NULL
, &setlist
, &showlist
);
2164 add_com_alias ("tty", "set inferior-tty", class_alias
, 0);
2166 add_setshow_optional_filename_cmd ("args", class_run
,
2167 &inferior_args
, _("\
2168 Set argument list to give program being debugged when it is started."), _("\
2169 Show argument list to give program being debugged when it is started."), _("\
2170 Follow this command with any number of args, to be passed to the program."),
2173 &setlist
, &showlist
);
2175 c
= add_cmd ("environment", no_class
, environment_info
, _("\
2176 The environment to give the program, or one variable's value.\n\
2177 With an argument VAR, prints the value of environment variable VAR to\n\
2178 give the program being debugged. With no arguments, prints the entire\n\
2179 environment to be given to the program."), &showlist
);
2180 set_cmd_completer (c
, noop_completer
);
2182 add_prefix_cmd ("unset", no_class
, unset_command
,
2183 _("Complement to certain \"set\" commands."),
2184 &unsetlist
, "unset ", 0, &cmdlist
);
2186 c
= add_cmd ("environment", class_run
, unset_environment_command
, _("\
2187 Cancel environment variable VAR for the program.\n\
2188 This does not affect the program until the next \"run\" command."),
2190 set_cmd_completer (c
, noop_completer
);
2192 c
= add_cmd ("environment", class_run
, set_environment_command
, _("\
2193 Set environment variable value to give the program.\n\
2194 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
2195 VALUES of environment variables are uninterpreted strings.\n\
2196 This does not affect the program until the next \"run\" command."),
2198 set_cmd_completer (c
, noop_completer
);
2200 c
= add_com ("path", class_files
, path_command
, _("\
2201 Add directory DIR(s) to beginning of search path for object files.\n\
2202 $cwd in the path means the current working directory.\n\
2203 This path is equivalent to the $PATH shell variable. It is a list of\n\
2204 directories, separated by colons. These directories are searched to find\n\
2205 fully linked executable files and separately compiled object files as needed."));
2206 set_cmd_completer (c
, filename_completer
);
2208 c
= add_cmd ("paths", no_class
, path_info
, _("\
2209 Current search path for finding object files.\n\
2210 $cwd in the path means the current working directory.\n\
2211 This path is equivalent to the $PATH shell variable. It is a list of\n\
2212 directories, separated by colons. These directories are searched to find\n\
2213 fully linked executable files and separately compiled object files as needed."),
2215 set_cmd_completer (c
, noop_completer
);
2217 add_com ("attach", class_run
, attach_command
, _("\
2218 Attach to a process or file outside of GDB.\n\
2219 This command attaches to another target, of the same type as your last\n\
2220 \"target\" command (\"info files\" will show your target stack).\n\
2221 The command may take as argument a process id or a device file.\n\
2222 For a process id, you must have permission to send the process a signal,\n\
2223 and it must have the same effective uid as the debugger.\n\
2224 When using \"attach\" with a process id, the debugger finds the\n\
2225 program running in the process, looking first in the current working\n\
2226 directory, or (if not found there) using the source file search path\n\
2227 (see the \"directory\" command). You can also use the \"file\" command\n\
2228 to specify the program, and to load its symbol table."));
2230 add_prefix_cmd ("detach", class_run
, detach_command
, _("\
2231 Detach a process or file previously attached.\n\
2232 If a process, it is no longer traced, and it continues its execution. If\n\
2233 you were debugging a file, the file is closed and gdb no longer accesses it."),
2234 &detachlist
, "detach ", 0, &cmdlist
);
2236 add_com ("disconnect", class_run
, disconnect_command
, _("\
2237 Disconnect from a target.\n\
2238 The target will wait for another debugger to connect. Not available for\n\
2241 add_com ("signal", class_run
, signal_command
, _("\
2242 Continue program giving it signal specified by the argument.\n\
2243 An argument of \"0\" means continue program without giving it a signal."));
2245 add_com ("stepi", class_run
, stepi_command
, _("\
2246 Step one instruction exactly.\n\
2247 Argument N means do this N times (or till program stops for another reason)."));
2248 add_com_alias ("si", "stepi", class_alias
, 0);
2250 add_com ("nexti", class_run
, nexti_command
, _("\
2251 Step one instruction, but proceed through subroutine calls.\n\
2252 Argument N means do this N times (or till program stops for another reason)."));
2253 add_com_alias ("ni", "nexti", class_alias
, 0);
2255 add_com ("finish", class_run
, finish_command
, _("\
2256 Execute until selected stack frame returns.\n\
2257 Upon return, the value returned is printed and put in the value history."));
2258 add_com_alias ("fin", "finish", class_run
, 1);
2260 add_com ("next", class_run
, next_command
, _("\
2261 Step program, proceeding through subroutine calls.\n\
2262 Like the \"step\" command as long as subroutine calls do not happen;\n\
2263 when they do, the call is treated as one instruction.\n\
2264 Argument N means do this N times (or till program stops for another reason)."));
2265 add_com_alias ("n", "next", class_run
, 1);
2267 add_com_alias ("S", "next", class_run
, 1);
2269 add_com ("step", class_run
, step_command
, _("\
2270 Step program until it reaches a different source line.\n\
2271 Argument N means do this N times (or till program stops for another reason)."));
2272 add_com_alias ("s", "step", class_run
, 1);
2274 c
= add_com ("until", class_run
, until_command
, _("\
2275 Execute until the program reaches a source line greater than the current\n\
2276 or a specified location (same args as break command) within the current frame."));
2277 set_cmd_completer (c
, location_completer
);
2278 add_com_alias ("u", "until", class_run
, 1);
2280 c
= add_com ("advance", class_run
, advance_command
, _("\
2281 Continue the program up to the given location (same form as args for break command).\n\
2282 Execution will also stop upon exit from the current stack frame."));
2283 set_cmd_completer (c
, location_completer
);
2285 c
= add_com ("jump", class_run
, jump_command
, _("\
2286 Continue program being debugged at specified line or address.\n\
2287 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
2288 for an address to start at."));
2289 set_cmd_completer (c
, location_completer
);
2293 c
= add_com ("go", class_run
, go_command
, _("\
2294 Usage: go <location>\n\
2295 Continue program being debugged, stopping at specified line or \n\
2297 Give as argument either LINENUM or *ADDR, where ADDR is an \n\
2298 expression for an address to start at.\n\
2299 This command is a combination of tbreak and jump."));
2300 set_cmd_completer (c
, location_completer
);
2304 add_com_alias ("g", "go", class_run
, 1);
2306 add_com ("continue", class_run
, continue_command
, _("\
2307 Continue program being debugged, after signal or breakpoint.\n\
2308 If proceeding from breakpoint, a number N may be used as an argument,\n\
2309 which means to set the ignore count of that breakpoint to N - 1 (so that\n\
2310 the breakpoint won't break until the Nth time it is reached)."));
2311 add_com_alias ("c", "cont", class_run
, 1);
2312 add_com_alias ("fg", "cont", class_run
, 1);
2314 c
= add_com ("run", class_run
, run_command
, _("\
2315 Start debugged program. You may specify arguments to give it.\n\
2316 Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
2317 Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\
2318 With no arguments, uses arguments last specified (with \"run\" or \"set args\").\n\
2319 To cancel previous arguments and run with no arguments,\n\
2320 use \"set args\" without arguments."));
2321 set_cmd_completer (c
, filename_completer
);
2322 add_com_alias ("r", "run", class_run
, 1);
2324 add_com ("R", class_run
, run_no_args_command
,
2325 _("Start debugged program with no arguments."));
2327 c
= add_com ("start", class_run
, start_command
, _("\
2328 Run the debugged program until the beginning of the main procedure.\n\
2329 You may specify arguments to give to your program, just as with the\n\
2330 \"run\" command."));
2331 set_cmd_completer (c
, filename_completer
);
2333 c
= add_com ("interrupt", class_run
, interrupt_target_command
,
2334 _("Interrupt the execution of the debugged program."));
2335 set_cmd_async_ok (c
);
2337 add_info ("registers", nofp_registers_info
, _("\
2338 List of integer registers and their contents, for selected stack frame.\n\
2339 Register name as argument means describe only that register."));
2340 add_info_alias ("r", "registers", 1);
2343 add_com ("lr", class_info
, nofp_registers_info
, _("\
2344 List of integer registers and their contents, for selected stack frame.\n\
2345 Register name as argument means describe only that register."));
2346 add_info ("all-registers", all_registers_info
, _("\
2347 List of all registers and their contents, for selected stack frame.\n\
2348 Register name as argument means describe only that register."));
2350 add_info ("program", program_info
,
2351 _("Execution status of the program."));
2353 add_info ("float", float_info
,
2354 _("Print the status of the floating point unit\n"));
2356 add_info ("vector", vector_info
,
2357 _("Print the status of the vector unit\n"));
2359 inferior_environ
= make_environ ();
2360 init_environ (inferior_environ
);