1 /* Memory-access and commands for inferior process, for GDB.
2 Copyright (C) 1986, 1987, 1988, 1989 Free Software Foundation, Inc.
4 This file is part of GDB.
6 GDB is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 1, or (at your option)
11 GDB is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GDB; see the file COPYING. If not, write to
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
22 #include <sys/param.h>
35 extern char *sys_siglist[];
37 extern void until_break_command (); /* breakpoint.c */
39 #define ERROR_NO_INFERIOR \
40 if (!target_has_execution) error ("The program is not being run.");
42 /* String containing arguments to give to the program, separated by spaces.
43 Empty string (pointer to '\0') means no args. */
45 static char *inferior_args;
47 /* File name for default use for standard in/out in the inferior. */
49 char *inferior_io_terminal;
51 /* Pid of our debugged inferior, or 0 if no inferior now.
52 Since various parts of infrun.c test this to see whether there is a program
53 being debugged it should be nonzero (currently 3 is used) for remote
58 /* Last signal that the inferior received (why it stopped). */
62 /* Address at which inferior stopped. */
66 /* Stack frame when program stopped. */
68 FRAME_ADDR stop_frame_address;
70 /* Chain containing status of breakpoint(s) that we have stopped at. */
74 /* Flag indicating that a command has proceeded the inferior past the
75 current breakpoint. */
77 int breakpoint_proceeded;
79 /* Nonzero if stopped due to a step command. */
83 /* Nonzero if stopped due to completion of a stack dummy routine. */
87 /* Nonzero if stopped due to a random (unexpected) signal in inferior
90 int stopped_by_random_signal;
92 /* Range to single step within.
93 If this is nonzero, respond to a single-step signal
94 by continuing to step if the pc is in this range. */
96 CORE_ADDR step_range_start; /* Inclusive */
97 CORE_ADDR step_range_end; /* Exclusive */
99 /* Stack frame address as of when stepping command was issued.
100 This is how we know when we step into a subroutine call,
101 and how to set the frame for the breakpoint used to step out. */
103 FRAME_ADDR step_frame_address;
105 /* 1 means step over all subroutine calls.
106 -1 means step over calls to undebuggable functions. */
110 /* If stepping, nonzero means step count is > 1
111 so don't print frame next time inferior stops
112 if it stops due to stepping. */
116 /* Environment to use for running inferior,
117 in format described in environ.h. */
119 struct environ *inferior_environ;
121 CORE_ADDR read_pc ();
122 void breakpoint_clear_ignore_counts ();
127 tty_command (file, from_tty)
132 error_no_arg ("terminal name for running target process");
134 inferior_io_terminal = savestring (file, strlen (file));
138 run_command (args, from_tty)
149 !query ("The program being debugged has been started already.\n\
150 Start it from the beginning? "))
151 error ("Program not restarted.");
152 target_kill ((char *)0, 0);
155 exec_file = (char *) get_exec_file (0);
157 /* The exec file is re-read every time we do an inferior_died, so
158 we just have to worry about the symbol file. */
164 cmd = concat ("set args ", args, "");
165 make_cleanup (free, cmd);
166 execute_command (cmd, from_tty);
171 printf ("Starting program: %s %s\n",
172 exec_file? exec_file: "", inferior_args);
176 target_create_inferior (exec_file, inferior_args,
177 environ_vector (inferior_environ));
181 continue_command (proc_count_exp, from_tty)
182 char *proc_count_exp;
187 /* If have argument, set proceed count of breakpoint we stopped at. */
189 if (proc_count_exp != NULL)
191 bpstat bs = stop_bpstat;
192 int num = bpstat_num (&bs);
193 if (num == 0 && from_tty)
196 ("Not stopped at any breakpoint; argument ignored.\n");
200 set_ignore_count (num,
201 parse_and_eval_address (proc_count_exp) - 1,
203 /* set_ignore_count prints a message ending with a period.
204 So print two spaces before "Continuing.". */
207 num = bpstat_num (&bs);
212 printf ("Continuing.\n");
214 clear_proceed_status ();
216 proceed ((CORE_ADDR) -1, -1, 0);
219 /* Step until outside of current statement. */
220 static void step_1 ();
224 step_command (count_string, from_tty)
228 step_1 (0, 0, count_string);
231 /* Likewise, but skip over subroutine calls as if single instructions. */
235 next_command (count_string, from_tty)
239 step_1 (1, 0, count_string);
242 /* Likewise, but step only one instruction. */
246 stepi_command (count_string, from_tty)
250 step_1 (0, 1, count_string);
255 nexti_command (count_string, from_tty)
259 step_1 (1, 1, count_string);
263 step_1 (skip_subroutines, single_inst, count_string)
264 int skip_subroutines;
268 register int count = 1;
272 count = count_string ? parse_and_eval_address (count_string) : 1;
274 for (; count > 0; count--)
276 clear_proceed_status ();
279 fr = get_current_frame ();
280 if (!fr) /* Avoid coredump here. Why tho? */
281 error ("No current frame");
282 step_frame_address = FRAME_FP (fr);
286 find_pc_line_pc_range (stop_pc, &step_range_start, &step_range_end);
287 if (step_range_end == 0)
291 misc = find_pc_misc_function (stop_pc);
292 target_terminal_ours ();
293 printf ("Current function has no line number information.\n");
296 /* No info or after _etext ("Can't happen") */
297 if (misc == -1 || misc == misc_function_count - 1)
298 error ("No data available on pc function.");
300 printf ("Single stepping until function exit.\n");
303 step_range_start = misc_function_vector[misc].address;
304 step_range_end = misc_function_vector[misc + 1].address;
309 /* Say we are stepping, but stop after one insn whatever it does.
310 Don't step through subroutine calls even to undebuggable
312 step_range_start = step_range_end = 1;
313 if (!skip_subroutines)
317 if (skip_subroutines)
320 step_multi = (count > 1);
321 proceed ((CORE_ADDR) -1, -1, 1);
324 #if defined (SHIFT_INST_REGS)
325 write_register (NNPC_REGNUM, read_register (NPC_REGNUM));
326 write_register (NPC_REGNUM, read_register (PC_REGNUM));
331 /* Continue program at specified address. */
334 jump_command (arg, from_tty)
338 register CORE_ADDR addr;
339 struct symtabs_and_lines sals;
340 struct symtab_and_line sal;
345 error_no_arg ("starting address");
347 sals = decode_line_spec_1 (arg, 1);
350 error ("Unreasonable jump request");
356 if (sal.symtab == 0 && sal.pc == 0)
357 error ("No source file has been specified.");
360 sal.pc = find_line_pc (sal.symtab, sal.line);
363 struct symbol *fn = get_frame_function (get_current_frame ());
364 struct symbol *sfn = find_pc_function (sal.pc);
365 if (fn != 0 && sfn != fn
366 && ! query ("Line %d is not in `%s'. Jump anyway? ",
367 sal.line, SYMBOL_NAME (fn)))
368 error ("Not confirmed.");
372 error ("No line %d in file \"%s\".", sal.line, sal.symtab->filename);
374 addr = ADDR_BITS_SET (sal.pc);
377 printf ("Continuing at 0x%x.\n", addr);
379 clear_proceed_status ();
380 proceed (addr, 0, 0);
383 /* Continue program giving it specified signal. */
386 signal_command (signum_exp, from_tty)
392 dont_repeat (); /* Too dangerous. */
396 error_no_arg ("signal number");
398 signum = parse_and_eval_address (signum_exp);
401 printf ("Continuing with signal %d.\n", signum);
403 clear_proceed_status ();
404 proceed (stop_pc, signum, 0);
407 /* Execute a "stack dummy", a piece of code stored in the stack
408 by the debugger to be executed in the inferior.
410 To call: first, do PUSH_DUMMY_FRAME.
411 Then push the contents of the dummy. It should end with a breakpoint insn.
412 Then call here, passing address at which to start the dummy.
414 The contents of all registers are saved before the dummy frame is popped
415 and copied into the buffer BUFFER.
417 The dummy's frame is automatically popped whenever that break is hit.
418 If that is the first time the program stops, run_stack_dummy
419 returns to its caller with that frame already gone.
420 Otherwise, the caller never gets returned to. */
422 /* 4 => return instead of letting the stack dummy run. */
424 static int stack_dummy_testing = 0;
427 run_stack_dummy (addr, buffer)
429 char buffer[REGISTER_BYTES];
431 /* Now proceed, having reached the desired place. */
432 clear_proceed_status ();
433 if (stack_dummy_testing & 4)
438 proceed_to_finish = 1; /* We want stop_registers, please... */
439 proceed (addr, 0, 0);
441 if (!stop_stack_dummy)
443 "Cannot continue previously requested operation". */
445 The program being debugged stopped while in a function called from GDB.\n\
446 The expression which contained the function call has been discarded.");
448 /* On return, the stack dummy has been popped already. */
450 bcopy (stop_registers, buffer, sizeof stop_registers);
453 /* Proceed until we reach a different source line with pc greater than
454 our current one or exit the function. We skip calls in both cases.
456 Note that eventually this command should probably be changed so
457 that only source lines are printed out when we hit the breakpoint
458 we set. I'm going to postpone this until after a hopeful rewrite
459 of wait_for_inferior and the proceed status code. -- randy */
463 until_next_command (from_tty)
469 struct symtab_and_line sal;
471 clear_proceed_status ();
473 frame = get_current_frame ();
475 /* Step until either exited from this function or greater
476 than the current line (if in symbolic section) or pc (if
480 func = find_pc_function (pc);
484 int misc_func = find_pc_misc_function (pc);
487 error ("Execution is not within a known function.");
489 step_range_start = misc_function_vector[misc_func].address;
494 sal = find_pc_line (pc, 0);
496 step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
497 step_range_end = sal.end;
501 step_frame_address = FRAME_FP (frame);
503 step_multi = 0; /* Only one call to proceed */
505 proceed ((CORE_ADDR) -1, -1, 1);
509 until_command (arg, from_tty)
513 if (!target_has_execution)
514 error ("The program is not running.");
516 until_break_command (arg, from_tty);
518 until_next_command (from_tty);
521 /* "finish": Set a temporary breakpoint at the place
522 the selected frame will return to, then continue. */
525 finish_command (arg, from_tty)
529 struct symtab_and_line sal;
530 register FRAME frame;
531 struct frame_info *fi;
532 register struct symbol *function;
535 error ("The \"finish\" command does not take any arguments.");
536 if (!target_has_execution)
537 error ("The program is not running.");
538 if (selected_frame == NULL)
539 error ("No selected frame.");
541 frame = get_prev_frame (selected_frame);
543 error ("\"finish\" not meaningful in the outermost frame.");
545 clear_proceed_status ();
547 fi = get_frame_info (frame);
548 sal = find_pc_line (fi->pc, 0);
550 set_momentary_breakpoint (sal, frame);
552 /* Find the function we will return from. */
554 fi = get_frame_info (selected_frame);
555 function = find_pc_function (fi->pc);
559 printf ("Run till exit from ");
560 print_selected_frame ();
563 proceed_to_finish = 1; /* We want stop_registers, please... */
564 proceed ((CORE_ADDR) -1, -1, 0);
566 if (bpstat_momentary_breakpoint (stop_bpstat) && function != 0)
568 struct type *value_type;
572 value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function));
574 fatal ("internal: finish_command: function has no target type");
576 if (TYPE_CODE (value_type) == TYPE_CODE_VOID)
579 funcaddr = BLOCK_START (SYMBOL_BLOCK_VALUE (function));
581 val = value_being_returned (value_type, stop_registers,
582 using_struct_return (value_of_variable (function),
585 BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function))));
587 printf ("Value returned is $%d = ", record_latest_value (val));
588 value_print (val, stdout, 0, Val_no_prettyprint);
595 program_info (args, from_tty)
599 bpstat bs = stop_bpstat;
600 int num = bpstat_num (&bs);
602 if (!target_has_execution)
604 printf ("The program being debugged is not being run.\n");
608 target_files_info ();
609 printf ("Program stopped at 0x%x.\n", stop_pc);
611 printf ("It stopped after being stepped.\n");
614 /* There may be several breakpoints in the same place, so this
615 isn't as strange as it seems. */
619 printf ("It stopped at a breakpoint that has since been deleted.\n");
621 printf ("It stopped at breakpoint %d.\n", num);
622 num = bpstat_num (&bs);
625 else if (stop_signal) {
626 #ifdef PRINT_RANDOM_SIGNAL
627 PRINT_RANDOM_SIGNAL (stop_signal);
629 printf ("It stopped with signal %d (%s).\n",
631 (stop_signal > NSIG)? "unknown": sys_siglist[stop_signal]);
636 printf ("Type \"info stack\" or \"info registers\" for more information.\n");
640 environment_info (var)
645 register char *val = get_in_environ (inferior_environ, var);
647 printf ("%s = %s\n", var, val);
649 printf ("Environment variable \"%s\" not defined.\n", var);
653 register char **vector = environ_vector (inferior_environ);
655 printf ("%s\n", *vector++);
660 set_environment_command (arg)
663 register char *p, *val, *var;
667 error_no_arg ("environment variable and value");
669 /* Find seperation between variable name and value */
670 p = (char *) strchr (arg, '=');
671 val = (char *) strchr (arg, ' ');
673 if (p != 0 && val != 0)
675 /* We have both a space and an equals. If the space is before the
676 equals and the only thing between the two is more space, use
682 /* Take the smaller of the two. If there was space before the
683 "=", they will be the same right now. */
684 p = arg + min (p - arg, val - arg);
686 else if (val != 0 && p == 0)
690 error_no_arg ("environment variable to set");
692 if (p == 0 || p[1] == 0)
696 p = arg + strlen (arg); /* So that savestring below will work */
700 /* Not setting variable value to null */
702 while (*val == ' ' || *val == '\t')
706 while (p != arg && (p[-1] == ' ' || p[-1] == '\t')) p--;
708 var = savestring (arg, p - arg);
711 printf ("Setting environment variable \"%s\" to null value.\n", var);
712 set_in_environ (inferior_environ, var, "");
715 set_in_environ (inferior_environ, var, val);
720 unset_environment_command (var, from_tty)
726 /* If there is no argument, delete all environment variables.
727 Ask for confirmation if reading from the terminal. */
728 if (!from_tty || query ("Delete all environment variables? "))
730 free_environ (inferior_environ);
731 inferior_environ = make_environ ();
735 unset_in_environ (inferior_environ, var);
738 /* Handle the execution path (PATH variable) */
740 const static char path_var_name[] = "PATH";
744 path_info (args, from_tty)
748 printf ("Executable and object file path: %s\n",
749 get_in_environ (inferior_environ, path_var_name));
752 /* Add zero or more directories to the front of the execution path. */
755 path_command (dirname, from_tty)
762 exec_path = strsave (get_in_environ (inferior_environ, path_var_name));
763 mod_path (dirname, &exec_path);
764 set_in_environ (inferior_environ, path_var_name, exec_path);
767 path_info ((char *)NULL, from_tty);
773 return ADDR_BITS_REMOVE ((CORE_ADDR) read_register (PC_REGNUM));
780 write_register (PC_REGNUM, (long) val);
782 write_register (NPC_REGNUM, (long) val+4);
787 char *reg_names[] = REGISTER_NAMES;
789 /* Print out the machine register regnum. If regnum is -1,
791 For most machines, having all_registers_info() print the
792 register(s) one per line is good enough. If a different format
793 is required, (eg, for SPARC or Pyramid 90x, which both have
794 lots of regs), or there is an existing convention for showing
795 all the registers, define the macro DO_REGISTERS_INFO(regnum)
796 to provide that format. */
797 #if !defined (DO_REGISTERS_INFO)
798 #define DO_REGISTERS_INFO(regnum) do_registers_info(regnum)
799 static void do_registers_info (regnum)
806 "Register Contents (relative to selected stack frame)\n\n");
808 for (i = 0; i < NUM_REGS; i++)
810 char raw_buffer[MAX_REGISTER_RAW_SIZE];
811 char virtual_buffer[MAX_REGISTER_VIRTUAL_SIZE];
813 if (regnum != -1 && i != regnum)
816 fputs_filtered (reg_names[i], stdout);
817 print_spaces_filtered (15 - strlen (reg_names[i]), stdout);
819 /* Get the data in raw format, then convert also to virtual format. */
820 if (read_relative_register_raw_bytes (i, raw_buffer))
822 printf_filtered ("Invalid register contents\n");
826 target_convert_to_virtual (i, raw_buffer, virtual_buffer);
828 /* If virtual format is floating, print it that way, and in raw hex. */
829 if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (i)) == TYPE_CODE_FLT
830 && ! INVALID_FLOAT (virtual_buffer, REGISTER_VIRTUAL_SIZE (i)))
834 val_print (REGISTER_VIRTUAL_TYPE (i), virtual_buffer, 0,
835 stdout, 0, 1, 0, Val_pretty_default);
837 printf_filtered ("\t(raw 0x");
838 for (j = 0; j < REGISTER_RAW_SIZE (i); j++)
839 printf_filtered ("%02x", (unsigned char)raw_buffer[j]);
840 printf_filtered (")");
843 /* FIXME! val_print probably can handle all of these cases now... */
845 /* Else if virtual format is too long for printf,
846 print in hex a byte at a time. */
847 else if (REGISTER_VIRTUAL_SIZE (i) > sizeof (long))
850 printf_filtered ("0x");
851 for (j = 0; j < REGISTER_VIRTUAL_SIZE (i); j++)
852 printf_filtered ("%02x", (unsigned char)virtual_buffer[j]);
854 /* Else print as integer in hex and in decimal. */
857 val_print (REGISTER_VIRTUAL_TYPE (i), raw_buffer, 0,
858 stdout, 'x', 1, 0, Val_pretty_default);
859 printf_filtered ("\t");
860 val_print (REGISTER_VIRTUAL_TYPE (i), raw_buffer, 0,
861 stdout, 0, 1, 0, Val_pretty_default);
864 /* The SPARC wants to print even-numbered float regs as doubles
865 in addition to printing them as floats. */
866 #ifdef PRINT_REGISTER_HOOK
867 PRINT_REGISTER_HOOK (i);
870 printf_filtered ("\n");
873 #endif /* no DO_REGISTERS_INFO. */
876 registers_info (addr_exp)
881 if (!target_has_registers)
882 error ("The program has no registers now.");
886 if (*addr_exp >= '0' && *addr_exp <= '9')
887 regnum = atoi (addr_exp);
890 register char *p = addr_exp;
893 for (regnum = 0; regnum < NUM_REGS; regnum++)
894 if (!strcmp (p, reg_names[regnum]))
896 if (regnum == NUM_REGS)
897 error ("%s: invalid register name.", addr_exp);
903 DO_REGISTERS_INFO(regnum);
908 * Should save/restore the tty state since it might be that the
909 * program to be debugged was started on this tty and it wants
910 * the tty in some state other than what we want. If it's running
911 * on another terminal or without a terminal, then saving and
912 * restoring the tty state is a harmless no-op.
913 * This only needs to be done if we are attaching to a process.
918 * takes a program started up outside of gdb and ``attaches'' to it.
919 * This stops it cold in its tracks and allows us to start tracing it.
920 * For this to work, we must be able to send the process a
921 * signal and we must have the same effective uid as the program.
924 attach_command (args, from_tty)
928 dont_repeat (); /* Not for the faint of heart */
929 target_attach (args, from_tty);
934 * takes a program previously attached to and detaches it.
935 * The program resumes execution and will no longer stop
936 * on signals, etc. We better not have left any breakpoints
937 * in the program or it'll die when it hits one. For this
938 * to work, it may be necessary for the process to have been
939 * previously attached. It *might* work if the program was
940 * started via the normal ptrace (PTRACE_TRACEME).
944 detach_command (args, from_tty)
948 dont_repeat (); /* Not for the faint of heart */
949 target_detach (args, from_tty);
954 float_info (addr_exp)
960 printf ("No floating point info available for this processor.\n");
964 struct cmd_list_element *unsetlist = NULL;
968 unset_command (args, from_tty)
972 printf ("\"unset\" must be followed by the name of an unset subcommand.\n");
973 help_list (unsetlist, "unset ", -1, stdout);
977 _initialize_infcmd ()
979 struct cmd_list_element *c;
981 add_com ("tty", class_run, tty_command,
982 "Set terminal for future runs of program being debugged.");
985 (add_set_cmd ("args", class_run, var_string_noescape, (char *)&inferior_args,
987 "Set arguments to give program being debugged when it is started.\n\
988 Follow this command with any number of args, to be passed to the program.",
993 ("environment", no_class, environment_info,
994 "The environment to give the program, or one variable's value.\n\
995 With an argument VAR, prints the value of environment variable VAR to\n\
996 give the program being debugged. With no arguments, prints the entire\n\
997 environment to be given to the program.", &showlist);
998 c->completer = noop_completer;
1000 add_prefix_cmd ("unset", no_class, unset_command,
1001 "Complement to certain \"set\" commands",
1002 &unsetlist, "unset ", 0, &cmdlist);
1004 c = add_cmd ("environment", class_run, unset_environment_command,
1005 "Cancel environment variable VAR for the program.\n\
1006 This does not affect the program until the next \"run\" command.",
1008 c->completer = noop_completer;
1010 c = add_cmd ("environment", class_run, set_environment_command,
1011 "Set environment variable value to give the program.\n\
1012 Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
1013 VALUES of environment variables are uninterpreted strings.\n\
1014 This does not affect the program until the next \"run\" command.",
1016 c->completer = noop_completer;
1018 add_com ("path", class_files, path_command,
1019 "Add directory DIR(s) to beginning of search path for object files.\n\
1020 $cwd in the path means the current working directory.\n\
1021 This path is equivalent to the $PATH shell variable. It is a list of\n\
1022 directories, separated by colons. These directories are searched to find\n\
1023 fully linked executable files and separately compiled object files as needed.");
1025 add_info ("path", path_info,
1026 "Current search path for finding object files.\n\
1027 $cwd in the path means the current working directory.\n\
1028 This path is equivalent to the $PATH shell variable. It is a list of\n\
1029 directories, separated by colons. These directories are searched to find\n\
1030 fully linked executable files and separately compiled object files as needed.");
1032 add_com ("attach", class_run, attach_command,
1033 "Attach to a process or file outside of GDB.\n\
1034 This command attaches to another target, of the same type as your last\n\
1035 `target' command (`info files' will show your target stack).\n\
1036 The command may take as argument a process id or a device file.\n\
1037 For a process id, you must have permission to send the process a signal,\n\
1038 and it must have the same effective uid as the debugger.\n\
1039 When using \"attach\", you should use the \"file\" command to specify\n\
1040 the program running in the process, and to load its symbol table.");
1042 add_com ("detach", class_run, detach_command,
1043 "Detach a process or file previously attached.\n\
1044 If a process, it is no longer traced, and it continues its execution. If you\n\
1045 were debugging a file, the file is closed and gdb no longer accesses it.");
1047 add_com ("signal", class_run, signal_command,
1048 "Continue program giving it signal number SIGNUMBER.");
1050 add_com ("stepi", class_run, stepi_command,
1051 "Step one instruction exactly.\n\
1052 Argument N means do this N times (or till program stops for another reason).");
1053 add_com_alias ("si", "stepi", class_alias, 0);
1055 add_com ("nexti", class_run, nexti_command,
1056 "Step one instruction, but proceed through subroutine calls.\n\
1057 Argument N means do this N times (or till program stops for another reason).");
1058 add_com_alias ("ni", "nexti", class_alias, 0);
1060 add_com ("finish", class_run, finish_command,
1061 "Execute until selected stack frame returns.\n\
1062 Upon return, the value returned is printed and put in the value history.");
1064 add_com ("next", class_run, next_command,
1065 "Step program, proceeding through subroutine calls.\n\
1066 Like the \"step\" command as long as subroutine calls do not happen;\n\
1067 when they do, the call is treated as one instruction.\n\
1068 Argument N means do this N times (or till program stops for another reason).");
1069 add_com_alias ("n", "next", class_run, 1);
1071 add_com ("step", class_run, step_command,
1072 "Step program until it reaches a different source line.\n\
1073 Argument N means do this N times (or till program stops for another reason).");
1074 add_com_alias ("s", "step", class_run, 1);
1076 add_com ("until", class_run, until_command,
1077 "Execute until the program reaches a source line greater than the current\n\
1078 or a specified line or address or function (same args as break command).\n\
1079 Execution will also stop upon exit from the current stack frame.");
1080 add_com_alias ("u", "until", class_run, 1);
1082 add_com ("jump", class_run, jump_command,
1083 "Continue program being debugged at specified line or address.\n\
1084 Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
1085 for an address to start at.");
1087 add_com ("continue", class_run, continue_command,
1088 "Continue program being debugged, after signal or breakpoint.\n\
1089 If proceeding from breakpoint, a number N may be used as an argument:\n\
1090 then the same breakpoint won't break until the Nth time it is reached.");
1091 add_com_alias ("c", "cont", class_run, 1);
1092 add_com_alias ("fg", "cont", class_run, 1);
1094 add_com ("run", class_run, run_command,
1095 "Start debugged program. You may specify arguments to give it.\n\
1096 Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
1097 Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\
1098 With no arguments, uses arguments last specified (with \"run\" or \"set args\".\n\
1099 To cancel previous arguments and run with no arguments,\n\
1100 use \"set args\" without arguments.");
1101 add_com_alias ("r", "run", class_run, 1);
1103 add_info ("registers", registers_info,
1104 "List of registers and their contents, for selected stack frame.\n\
1105 Register name as argument means describe only that register.");
1107 add_info ("program", program_info,
1108 "Execution status of the program.");
1110 add_info ("float", float_info,
1111 "Print the status of the floating point unit\n");
1113 inferior_args = savestring ("", 1); /* Initially no args */
1114 inferior_environ = make_environ ();
1115 init_environ (inferior_environ);