home *** CD-ROM | disk | FTP | other *** search
/ Il CD di internet / CD.iso / SOURCE / D / GDB / GDB-4.13 / GDB-4 / gdb-4.13 / gdb / infcmd.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-16  |  37.6 KB  |  1,383 lines

  1. /* Memory-access and commands for "inferior" (child) process, for GDB.
  2.    Copyright 1986, 1987, 1988, 1989, 1991, 1992 Free Software Foundation, Inc.
  3.  
  4. This file is part of GDB.
  5.  
  6. This program 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 2 of the License, or
  9. (at your option) any later version.
  10.  
  11. This program 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.
  15.  
  16. You should have received a copy of the GNU General Public License
  17. along with this program; if not, write to the Free Software
  18. Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
  19.  
  20. #include "defs.h"
  21. #include <signal.h>
  22. #include <sys/param.h>
  23. #include <string.h>
  24. #include "symtab.h"
  25. #include "gdbtypes.h"
  26. #include "frame.h"
  27. #include "inferior.h"
  28. #include "environ.h"
  29. #include "value.h"
  30. #include "gdbcmd.h"
  31. #include "gdbcore.h"
  32. #include "target.h"
  33. #include "language.h"
  34.  
  35. static void
  36. continue_command PARAMS ((char *, int));
  37.  
  38. static void
  39. until_next_command PARAMS ((int));
  40.  
  41. static void 
  42. until_command PARAMS ((char *, int));
  43.  
  44. static void
  45. path_info PARAMS ((char *, int));
  46.  
  47. static void
  48. path_command PARAMS ((char *, int));
  49.  
  50. static void
  51. unset_command PARAMS ((char *, int));
  52.  
  53. static void
  54. float_info PARAMS ((char *, int));
  55.  
  56. static void
  57. detach_command PARAMS ((char *, int));
  58.  
  59. static void
  60. nofp_registers_info PARAMS ((char *, int));
  61.  
  62. static void
  63. all_registers_info PARAMS ((char *, int));
  64.  
  65. static void
  66. registers_info PARAMS ((char *, int));
  67.  
  68. static void
  69. do_registers_info PARAMS ((int, int));
  70.  
  71. static void
  72. unset_environment_command PARAMS ((char *, int));
  73.  
  74. static void
  75. set_environment_command PARAMS ((char *, int));
  76.  
  77. static void
  78. environment_info PARAMS ((char *, int));
  79.  
  80. static void
  81. program_info PARAMS ((char *, int));
  82.  
  83. static void
  84. finish_command PARAMS ((char *, int));
  85.  
  86. static void
  87. signal_command PARAMS ((char *, int));
  88.  
  89. static void
  90. jump_command PARAMS ((char *, int));
  91.  
  92. static void
  93. step_1 PARAMS ((int, int, char *));
  94.  
  95. static void
  96. nexti_command PARAMS ((char *, int));
  97.  
  98. static void
  99. stepi_command PARAMS ((char *, int));
  100.  
  101. static void
  102. next_command PARAMS ((char *, int));
  103.  
  104. static void
  105. step_command PARAMS ((char *, int));
  106.  
  107. static void
  108. run_command PARAMS ((char *, int));
  109.  
  110. #define ERROR_NO_INFERIOR \
  111.    if (!target_has_execution) error ("The program is not being run.");
  112.  
  113. /* String containing arguments to give to the program, separated by spaces.
  114.    Empty string (pointer to '\0') means no args.  */
  115.  
  116. static char *inferior_args;
  117.  
  118. /* File name for default use for standard in/out in the inferior.  */
  119.  
  120. char *inferior_io_terminal;
  121.  
  122. /* Pid of our debugged inferior, or 0 if no inferior now.
  123.    Since various parts of infrun.c test this to see whether there is a program
  124.    being debugged it should be nonzero (currently 3 is used) for remote
  125.    debugging.  */
  126.  
  127. int inferior_pid;
  128.  
  129. /* Last signal that the inferior received (why it stopped).  */
  130.  
  131. enum target_signal stop_signal;
  132.  
  133. /* Address at which inferior stopped.  */
  134.  
  135. CORE_ADDR stop_pc;
  136.  
  137. /* Stack frame when program stopped.  */
  138.  
  139. FRAME_ADDR stop_frame_address;
  140.  
  141. /* Chain containing status of breakpoint(s) that we have stopped at.  */
  142.  
  143. bpstat stop_bpstat;
  144.  
  145. /* Flag indicating that a command has proceeded the inferior past the
  146.    current breakpoint.  */
  147.  
  148. int breakpoint_proceeded;
  149.  
  150. /* Nonzero if stopped due to a step command.  */
  151.  
  152. int stop_step;
  153.  
  154. /* Nonzero if stopped due to completion of a stack dummy routine.  */
  155.  
  156. int stop_stack_dummy;
  157.  
  158. /* Nonzero if stopped due to a random (unexpected) signal in inferior
  159.    process.  */
  160.  
  161. int stopped_by_random_signal;
  162.  
  163. /* Range to single step within.
  164.    If this is nonzero, respond to a single-step signal
  165.    by continuing to step if the pc is in this range.  */
  166.  
  167. CORE_ADDR step_range_start; /* Inclusive */
  168. CORE_ADDR step_range_end; /* Exclusive */
  169.  
  170. /* Stack frame address as of when stepping command was issued.
  171.    This is how we know when we step into a subroutine call,
  172.    and how to set the frame for the breakpoint used to step out.  */
  173.  
  174. FRAME_ADDR step_frame_address;
  175.  
  176. /* 1 means step over all subroutine calls.
  177.    0 means don't step over calls (used by stepi).
  178.    -1 means step over calls to undebuggable functions.  */
  179.  
  180. int step_over_calls;
  181.  
  182. /* If stepping, nonzero means step count is > 1
  183.    so don't print frame next time inferior stops
  184.    if it stops due to stepping.  */
  185.  
  186. int step_multi;
  187.  
  188. /* Environment to use for running inferior,
  189.    in format described in environ.h.  */
  190.  
  191. struct environ *inferior_environ;
  192.  
  193.  
  194. /* ARGSUSED */
  195. void
  196. tty_command (file, from_tty)
  197.      char *file;
  198.      int from_tty;
  199. {
  200.   if (file == 0)
  201.     error_no_arg ("terminal name for running target process");
  202.  
  203.   inferior_io_terminal = savestring (file, strlen (file));
  204. }
  205.  
  206. static void
  207. run_command (args, from_tty)
  208.      char *args;
  209.      int from_tty;
  210. {
  211.   char *exec_file;
  212.  
  213.   dont_repeat ();
  214.  
  215.   /* Shouldn't this be target_has_execution?  FIXME.  */
  216.   if (inferior_pid)
  217.     {
  218.       if (
  219.       !query ("The program being debugged has been started already.\n\
  220. Start it from the beginning? "))
  221.     error ("Program not restarted.");
  222.       target_kill ();
  223.     }
  224.  
  225.   clear_breakpoint_hit_counts ();
  226.  
  227.   exec_file = (char *) get_exec_file (0);
  228.  
  229.   /* The exec file is re-read every time we do a generic_mourn_inferior, so
  230.      we just have to worry about the symbol file.  */
  231.   reread_symbols ();
  232.  
  233.   /* We keep symbols from add-symbol-file, on the grounds that the
  234.      user might want to add some symbols before running the program
  235.      (right?).  But sometimes (dynamic loading where the user manually
  236.      introduces the new symbols with add-symbol-file), the code which
  237.      the symbols describe does not persist between runs.  Currently
  238.      the user has to manually nuke all symbols between runs if they
  239.      want them to go away (PR 2207).  This is probably reasonable.  */
  240.  
  241.   if (args)
  242.     {
  243.       char *cmd;
  244.       cmd = concat ("set args ", args, NULL);
  245.       make_cleanup (free, cmd);
  246.       execute_command (cmd, from_tty);
  247.     }
  248.  
  249.   if (from_tty)
  250.     {
  251.       puts_filtered("Starting program: ");
  252.       if (exec_file)
  253.     puts_filtered(exec_file);
  254.       puts_filtered(" ");
  255.       puts_filtered(inferior_args);
  256.       puts_filtered("\n");
  257.       gdb_flush (gdb_stdout);
  258.     }
  259.  
  260.   target_create_inferior (exec_file, inferior_args,
  261.               environ_vector (inferior_environ));
  262. }
  263.  
  264. static void
  265. continue_command (proc_count_exp, from_tty)
  266.      char *proc_count_exp;
  267.      int from_tty;
  268. {
  269.   ERROR_NO_INFERIOR;
  270.  
  271.   /* If have argument, set proceed count of breakpoint we stopped at.  */
  272.  
  273.   if (proc_count_exp != NULL)
  274.     {
  275.       bpstat bs = stop_bpstat;
  276.       int num = bpstat_num (&bs);
  277.       if (num == 0 && from_tty)
  278.     {
  279.       printf_filtered
  280.         ("Not stopped at any breakpoint; argument ignored.\n");
  281.     }
  282.       while (num != 0)
  283.     {
  284.       set_ignore_count (num,
  285.                 parse_and_eval_address (proc_count_exp) - 1,
  286.                 from_tty);
  287.       /* set_ignore_count prints a message ending with a period.
  288.          So print two spaces before "Continuing.".  */
  289.       if (from_tty)
  290.         printf_filtered ("  ");
  291.       num = bpstat_num (&bs);
  292.     }
  293.     }
  294.  
  295.   if (from_tty)
  296.     printf_filtered ("Continuing.\n");
  297.  
  298.   clear_proceed_status ();
  299.  
  300.   proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
  301. }
  302.  
  303. /* Step until outside of current statement.  */
  304.  
  305. /* ARGSUSED */
  306. static void
  307. step_command (count_string, from_tty)
  308.      char *count_string;
  309.      int from_tty;
  310. {
  311.   step_1 (0, 0, count_string);
  312. }
  313.  
  314. /* Likewise, but skip over subroutine calls as if single instructions.  */
  315.  
  316. /* ARGSUSED */
  317. static void
  318. next_command (count_string, from_tty)
  319.      char *count_string;
  320.      int from_tty;
  321. {
  322.   step_1 (1, 0, count_string);
  323. }
  324.  
  325. /* Likewise, but step only one instruction.  */
  326.  
  327. /* ARGSUSED */
  328. static void
  329. stepi_command (count_string, from_tty)
  330.      char *count_string;
  331.      int from_tty;
  332. {
  333.   step_1 (0, 1, count_string);
  334. }
  335.  
  336. /* ARGSUSED */
  337. static void
  338. nexti_command (count_string, from_tty)
  339.      char *count_string;
  340.      int from_tty;
  341. {
  342.   step_1 (1, 1, count_string);
  343. }
  344.  
  345. static void
  346. step_1 (skip_subroutines, single_inst, count_string)
  347.      int skip_subroutines;
  348.      int single_inst;
  349.      char *count_string;
  350. {
  351.   register int count = 1;
  352.   FRAME fr;
  353.   struct cleanup *cleanups = 0;
  354.  
  355.   ERROR_NO_INFERIOR;
  356.   count = count_string ? parse_and_eval_address (count_string) : 1;
  357.  
  358.   if (!single_inst || skip_subroutines) /* leave si command alone */
  359.     {
  360.       enable_longjmp_breakpoint();
  361.       cleanups = make_cleanup(disable_longjmp_breakpoint, 0);
  362.     }
  363.  
  364.   for (; count > 0; count--)
  365.     {
  366.       clear_proceed_status ();
  367.  
  368.       fr = get_current_frame ();
  369.       if (!fr)                /* Avoid coredump here.  Why tho? */
  370.     error ("No current frame");
  371.       step_frame_address = FRAME_FP (fr);
  372.  
  373.       if (! single_inst)
  374.     {
  375.       find_pc_line_pc_range (stop_pc, &step_range_start, &step_range_end);
  376.       if (step_range_end == 0)
  377.         {
  378.           char *name;
  379.           if (find_pc_partial_function (stop_pc, &name, &step_range_start,
  380.                         &step_range_end) == 0)
  381.         error ("Cannot find bounds of current function");
  382.  
  383.           target_terminal_ours ();
  384.           printf_filtered ("\
  385. Single stepping until exit from function %s, \n\
  386. which has no line number information.\n", name);
  387.           gdb_flush (gdb_stdout);
  388.         }
  389.     }
  390.       else
  391.     {
  392.       /* Say we are stepping, but stop after one insn whatever it does.  */
  393.       step_range_start = step_range_end = 1;
  394.       if (!skip_subroutines)
  395.         /* It is stepi.
  396.            Don't step over function calls, not even to functions lacking
  397.            line numbers.  */
  398.         step_over_calls = 0;
  399.     }
  400.  
  401.       if (skip_subroutines)
  402.     step_over_calls = 1;
  403.  
  404.       step_multi = (count > 1);
  405.       proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
  406.       if (! stop_step)
  407.     break;
  408.  
  409.       /* FIXME: On nexti, this may have already been done (when we hit the
  410.      step resume break, I think).  Probably this should be moved to
  411.      wait_for_inferior (near the top).  */
  412. #if defined (SHIFT_INST_REGS)
  413.       SHIFT_INST_REGS();
  414. #endif
  415.     }
  416.  
  417.   if (!single_inst || skip_subroutines)
  418.     do_cleanups(cleanups);
  419. }
  420.  
  421. /* Continue program at specified address.  */
  422.  
  423. static void
  424. jump_command (arg, from_tty)
  425.      char *arg;
  426.      int from_tty;
  427. {
  428.   register CORE_ADDR addr;
  429.   struct symtabs_and_lines sals;
  430.   struct symtab_and_line sal;
  431.   struct symbol *fn;
  432.   struct symbol *sfn;
  433.  
  434.   ERROR_NO_INFERIOR;
  435.  
  436.   if (!arg)
  437.     error_no_arg ("starting address");
  438.  
  439.   sals = decode_line_spec_1 (arg, 1);
  440.   if (sals.nelts != 1)
  441.     {
  442.       error ("Unreasonable jump request");
  443.     }
  444.  
  445.   sal = sals.sals[0];
  446.   free ((PTR)sals.sals);
  447.  
  448.   if (sal.symtab == 0 && sal.pc == 0)
  449.     error ("No source file has been specified.");
  450.  
  451.   resolve_sal_pc (&sal);            /* May error out */
  452.  
  453.   /* See if we are trying to jump to another function. */
  454.   fn = get_frame_function (get_current_frame ());
  455.   sfn = find_pc_function (sal.pc);
  456.   if (fn != NULL && sfn != fn)
  457.     {
  458.       if (!query ("Line %d is not in `%s'.  Jump anyway? ", sal.line,
  459.           SYMBOL_SOURCE_NAME (fn)))
  460.     {
  461.       error ("Not confirmed.");
  462.       /* NOTREACHED */
  463.     }
  464.     }
  465.  
  466.   addr = sal.pc;
  467.  
  468.   if (from_tty)
  469.     {
  470.       printf_filtered ("Continuing at ");
  471.       print_address_numeric (addr, 1, gdb_stdout);
  472.       printf_filtered (".\n");
  473.     }
  474.  
  475.   clear_proceed_status ();
  476.   proceed (addr, TARGET_SIGNAL_0, 0);
  477. }
  478.  
  479. /* Continue program giving it specified signal.  */
  480.  
  481. static void
  482. signal_command (signum_exp, from_tty)
  483.      char *signum_exp;
  484.      int from_tty;
  485. {
  486.   enum target_signal oursig;
  487.  
  488.   dont_repeat ();        /* Too dangerous.  */
  489.   ERROR_NO_INFERIOR;
  490.  
  491.   if (!signum_exp)
  492.     error_no_arg ("signal number");
  493.  
  494.   /* It would be even slicker to make signal names be valid expressions,
  495.      (the type could be "enum $signal" or some such), then the user could
  496.      assign them to convenience variables.  */
  497.   oursig = target_signal_from_name (signum_exp);
  498.  
  499.   if (oursig == TARGET_SIGNAL_UNKNOWN)
  500.     {
  501.       /* Not found as a name, try it as an expression.  */
  502.       /* The numeric signal refers to our own internal signal numbering
  503.      from target.h, not to host/target signal number.  This is a
  504.      feature; users really should be using symbolic names anyway,
  505.      and the common ones like SIGHUP, SIGINT, SIGALRM, etc.  will
  506.      work right anyway.  */
  507.       int signum = parse_and_eval_address (signum_exp);
  508.       if (signum < 0
  509.       || signum >= (int)TARGET_SIGNAL_LAST
  510.       || signum == (int)TARGET_SIGNAL_UNKNOWN
  511.       || signum == (int)TARGET_SIGNAL_DEFAULT)
  512.     error ("Invalid signal number %d.", signum);
  513.       oursig = signum;
  514.     }
  515.  
  516.   if (from_tty)
  517.     {
  518.       if (oursig == TARGET_SIGNAL_0)
  519.     printf_filtered ("Continuing with no signal.\n");
  520.       else
  521.     printf_filtered ("Continuing with signal %s.\n",
  522.              target_signal_to_name (oursig));
  523.     }
  524.  
  525.   clear_proceed_status ();
  526.   proceed (stop_pc, oursig, 0);
  527. }
  528.  
  529. /* Call breakpoint_auto_delete on the current contents of the bpstat
  530.    pointed to by arg (which is really a bpstat *).  */
  531. void
  532. breakpoint_auto_delete_contents (arg)
  533.      PTR arg;
  534. {
  535.   breakpoint_auto_delete (*(bpstat *)arg);
  536. }
  537.  
  538. /* Execute a "stack dummy", a piece of code stored in the stack
  539.    by the debugger to be executed in the inferior.
  540.  
  541.    To call: first, do PUSH_DUMMY_FRAME.
  542.    Then push the contents of the dummy.  It should end with a breakpoint insn.
  543.    Then call here, passing address at which to start the dummy.
  544.  
  545.    The contents of all registers are saved before the dummy frame is popped
  546.    and copied into the buffer BUFFER.
  547.  
  548.    The dummy's frame is automatically popped whenever that break is hit.
  549.    If that is the first time the program stops, run_stack_dummy
  550.    returns to its caller with that frame already gone and returns 0.
  551.    Otherwise, run_stack-dummy returns 1 (the frame will eventually be popped
  552.    when we do hit that breakpoint).  */
  553.  
  554. /* DEBUG HOOK:  4 => return instead of letting the stack dummy run.  */
  555.  
  556. static int stack_dummy_testing = 0;
  557.  
  558. int
  559. run_stack_dummy (addr, buffer)
  560.      CORE_ADDR addr;
  561.      char buffer[REGISTER_BYTES];
  562. {
  563.   struct cleanup *old_cleanups = make_cleanup (null_cleanup, 0);
  564.  
  565.   /* Now proceed, having reached the desired place.  */
  566.   clear_proceed_status ();
  567.   if (stack_dummy_testing & 4)
  568.     {
  569.       POP_FRAME;
  570.       return(0);
  571.     }
  572. #ifdef CALL_DUMMY_BREAKPOINT_OFFSET
  573.   {
  574.     struct breakpoint *bpt;
  575.     struct symtab_and_line sal;
  576.  
  577. #if CALL_DUMMY_LOCATION != AT_ENTRY_POINT
  578.     sal.pc = addr - CALL_DUMMY_START_OFFSET + CALL_DUMMY_BREAKPOINT_OFFSET;
  579. #else
  580.     sal.pc = CALL_DUMMY_ADDRESS ();
  581. #endif
  582.     sal.symtab = NULL;
  583.     sal.line = 0;
  584.  
  585.     /* Set up a FRAME for the dummy frame so we can pass it to
  586.        set_momentary_breakpoint.  We need to give the breakpoint a
  587.        frame in case there is only one copy of the dummy (e.g.
  588.        CALL_DUMMY_LOCATION == AFTER_TEXT_END).  */
  589.     flush_cached_frames ();
  590.     set_current_frame (create_new_frame (read_fp (), sal.pc));
  591.  
  592.     /* If defined, CALL_DUMMY_BREAKPOINT_OFFSET is where we need to put
  593.        a breakpoint instruction.  If not, the call dummy already has the
  594.        breakpoint instruction in it.
  595.  
  596.        addr is the address of the call dummy plus the CALL_DUMMY_START_OFFSET,
  597.        so we need to subtract the CALL_DUMMY_START_OFFSET.  */
  598.     bpt = set_momentary_breakpoint (sal,
  599.                     get_current_frame (),
  600.                     bp_call_dummy);
  601.     bpt->disposition = delete;
  602.  
  603.     /* If all error()s out of proceed ended up calling normal_stop (and
  604.        perhaps they should; it already does in the special case of error
  605.        out of resume()), then we wouldn't need this.  */
  606.     make_cleanup (breakpoint_auto_delete_contents, &stop_bpstat);
  607.   }
  608. #endif /* CALL_DUMMY_BREAKPOINT_OFFSET.  */
  609.  
  610.   proceed_to_finish = 1;    /* We want stop_registers, please... */
  611.   proceed (addr, TARGET_SIGNAL_0, 0);
  612.  
  613.   discard_cleanups (old_cleanups);
  614.  
  615.   if (!stop_stack_dummy)
  616.     return 1;
  617.  
  618.   /* On return, the stack dummy has been popped already.  */
  619.  
  620.   memcpy (buffer, stop_registers, sizeof stop_registers);
  621.   return 0;
  622. }
  623.  
  624. /* Proceed until we reach a different source line with pc greater than
  625.    our current one or exit the function.  We skip calls in both cases.
  626.  
  627.    Note that eventually this command should probably be changed so
  628.    that only source lines are printed out when we hit the breakpoint
  629.    we set.  This may involve changes to wait_for_inferior and the
  630.    proceed status code.  */
  631.  
  632. /* ARGSUSED */
  633. static void
  634. until_next_command (from_tty)
  635.      int from_tty;
  636. {
  637.   FRAME frame;
  638.   CORE_ADDR pc;
  639.   struct symbol *func;
  640.   struct symtab_and_line sal;
  641.  
  642.   clear_proceed_status ();
  643.  
  644.   frame = get_current_frame ();
  645.  
  646.   /* Step until either exited from this function or greater
  647.      than the current line (if in symbolic section) or pc (if
  648.      not). */
  649.  
  650.   pc = read_pc ();
  651.   func = find_pc_function (pc);
  652.   
  653.   if (!func)
  654.     {
  655.       struct minimal_symbol *msymbol = lookup_minimal_symbol_by_pc (pc);
  656.       
  657.       if (msymbol == NULL)
  658.     error ("Execution is not within a known function.");
  659.       
  660.       step_range_start = SYMBOL_VALUE_ADDRESS (msymbol);
  661.       step_range_end = pc;
  662.     }
  663.   else
  664.     {
  665.       sal = find_pc_line (pc, 0);
  666.       
  667.       step_range_start = BLOCK_START (SYMBOL_BLOCK_VALUE (func));
  668.       step_range_end = sal.end;
  669.     }
  670.   
  671.   step_over_calls = 1;
  672.   step_frame_address = FRAME_FP (frame);
  673.   
  674.   step_multi = 0;        /* Only one call to proceed */
  675.   
  676.   proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 1);
  677. }
  678.  
  679. static void 
  680. until_command (arg, from_tty)
  681.      char *arg;
  682.      int from_tty;
  683. {
  684.   if (!target_has_execution)
  685.     error ("The program is not running.");
  686.   if (arg)
  687.     until_break_command (arg, from_tty);
  688.   else
  689.     until_next_command (from_tty);
  690. }
  691.  
  692. /* "finish": Set a temporary breakpoint at the place
  693.    the selected frame will return to, then continue.  */
  694.  
  695. static void
  696. finish_command (arg, from_tty)
  697.      char *arg;
  698.      int from_tty;
  699. {
  700.   struct symtab_and_line sal;
  701.   register FRAME frame;
  702.   struct frame_info *fi;
  703.   register struct symbol *function;
  704.   struct breakpoint *breakpoint;
  705.   struct cleanup *old_chain;
  706.  
  707.   if (arg)
  708.     error ("The \"finish\" command does not take any arguments.");
  709.   if (!target_has_execution)
  710.     error ("The program is not running.");
  711.   if (selected_frame == NULL)
  712.     error ("No selected frame.");
  713.  
  714.   frame = get_prev_frame (selected_frame);
  715.   if (frame == 0)
  716.     error ("\"finish\" not meaningful in the outermost frame.");
  717.  
  718.   clear_proceed_status ();
  719.  
  720.   fi = get_frame_info (frame);
  721.   sal = find_pc_line (fi->pc, 0);
  722.   sal.pc = fi->pc;
  723.  
  724.   breakpoint = set_momentary_breakpoint (sal, frame, bp_finish);
  725.  
  726.   old_chain = make_cleanup(delete_breakpoint, breakpoint);
  727.  
  728.   /* Find the function we will return from.  */
  729.  
  730.   fi = get_frame_info (selected_frame);
  731.   function = find_pc_function (fi->pc);
  732.  
  733.   /* Print info on the selected frame, including level number
  734.      but not source.  */
  735.   if (from_tty)
  736.     {
  737.       printf_filtered ("Run till exit from ");
  738.       print_stack_frame (selected_frame, selected_frame_level, 0);
  739.     }
  740.  
  741.   proceed_to_finish = 1;        /* We want stop_registers, please... */
  742.   proceed ((CORE_ADDR) -1, TARGET_SIGNAL_DEFAULT, 0);
  743.  
  744.   /* Did we stop at our breakpoint? */
  745.   if (bpstat_find_breakpoint(stop_bpstat, breakpoint) != NULL
  746.       && function != 0)
  747.     {
  748.       struct type *value_type;
  749.       register value_ptr val;
  750.       CORE_ADDR funcaddr;
  751.  
  752.       value_type = TYPE_TARGET_TYPE (SYMBOL_TYPE (function));
  753.       if (!value_type)
  754.     fatal ("internal: finish_command: function has no target type");
  755.       
  756.       if (TYPE_CODE (value_type) == TYPE_CODE_VOID)
  757.     return;
  758.  
  759.       funcaddr = BLOCK_START (SYMBOL_BLOCK_VALUE (function));
  760.  
  761.       val = value_being_returned (value_type, stop_registers,
  762.           using_struct_return (value_of_variable (function, NULL),
  763.                    funcaddr,
  764.                    value_type,
  765.         BLOCK_GCC_COMPILED (SYMBOL_BLOCK_VALUE (function))));
  766.  
  767.       printf_filtered ("Value returned is $%d = ", record_latest_value (val));
  768.       value_print (val, gdb_stdout, 0, Val_no_prettyprint);
  769.       printf_filtered ("\n");
  770.     }
  771.   do_cleanups(old_chain);
  772. }
  773.  
  774. /* ARGSUSED */
  775. static void
  776. program_info (args, from_tty)
  777.     char *args;
  778.     int from_tty;
  779. {
  780.   bpstat bs = stop_bpstat;
  781.   int num = bpstat_num (&bs);
  782.   
  783.   if (!target_has_execution)
  784.     {
  785.       printf_filtered ("The program being debugged is not being run.\n");
  786.       return;
  787.     }
  788.  
  789.   target_files_info ();
  790.   printf_filtered ("Program stopped at %s.\n",
  791.            local_hex_string((unsigned long) stop_pc));
  792.   if (stop_step)
  793.     printf_filtered ("It stopped after being stepped.\n");
  794.   else if (num != 0)
  795.     {
  796.       /* There may be several breakpoints in the same place, so this
  797.      isn't as strange as it seems.  */
  798.       while (num != 0)
  799.     {
  800.       if (num < 0)
  801.         printf_filtered ("It stopped at a breakpoint that has since been deleted.\n");
  802.       else
  803.         printf_filtered ("It stopped at breakpoint %d.\n", num);
  804.       num = bpstat_num (&bs);
  805.     }
  806.     }
  807.   else if (stop_signal != TARGET_SIGNAL_0)
  808.     {
  809.       printf_filtered ("It stopped with signal %s, %s.\n",
  810.                target_signal_to_name (stop_signal),
  811.                target_signal_to_string (stop_signal));
  812.     }
  813.  
  814.   if (!from_tty)
  815.     printf_filtered ("Type \"info stack\" or \"info registers\" for more information.\n");
  816. }
  817.  
  818. static void
  819. environment_info (var, from_tty)
  820.      char *var;
  821.      int from_tty;
  822. {
  823.   if (var)
  824.     {
  825.       register char *val = get_in_environ (inferior_environ, var);
  826.       if (val)
  827.     {
  828.       puts_filtered (var);
  829.       puts_filtered (" = ");
  830.       puts_filtered (val);
  831.       puts_filtered ("\n");
  832.     }
  833.       else
  834.     {
  835.       puts_filtered ("Environment variable \"");
  836.       puts_filtered (var);
  837.       puts_filtered ("\" not defined.\n");
  838.     }
  839.     }
  840.   else
  841.     {
  842.       register char **vector = environ_vector (inferior_environ);
  843.       while (*vector)
  844.     {
  845.       puts_filtered (*vector++);
  846.       puts_filtered ("\n");
  847.     }
  848.     }
  849. }
  850.  
  851. static void
  852. set_environment_command (arg, from_tty)
  853.      char *arg;
  854.      int from_tty;
  855. {
  856.   register char *p, *val, *var;
  857.   int nullset = 0;
  858.  
  859.   if (arg == 0)
  860.     error_no_arg ("environment variable and value");
  861.  
  862.   /* Find seperation between variable name and value */
  863.   p = (char *) strchr (arg, '=');
  864.   val = (char *) strchr (arg, ' ');
  865.  
  866.   if (p != 0 && val != 0)
  867.     {
  868.       /* We have both a space and an equals.  If the space is before the
  869.      equals, walk forward over the spaces til we see a nonspace 
  870.      (possibly the equals). */
  871.       if (p > val)
  872.     while (*val == ' ')
  873.       val++;
  874.  
  875.       /* Now if the = is after the char following the spaces,
  876.      take the char following the spaces.  */
  877.       if (p > val)
  878.     p = val - 1;
  879.     }
  880.   else if (val != 0 && p == 0)
  881.     p = val;
  882.  
  883.   if (p == arg)
  884.     error_no_arg ("environment variable to set");
  885.  
  886.   if (p == 0 || p[1] == 0)
  887.     {
  888.       nullset = 1;
  889.       if (p == 0)
  890.     p = arg + strlen (arg);    /* So that savestring below will work */
  891.     }
  892.   else
  893.     {
  894.       /* Not setting variable value to null */
  895.       val = p + 1;
  896.       while (*val == ' ' || *val == '\t')
  897.     val++;
  898.     }
  899.  
  900.   while (p != arg && (p[-1] == ' ' || p[-1] == '\t')) p--;
  901.  
  902.   var = savestring (arg, p - arg);
  903.   if (nullset)
  904.     {
  905.       printf_filtered ("Setting environment variable \"%s\" to null value.\n", var);
  906.       set_in_environ (inferior_environ, var, "");
  907.     }
  908.   else
  909.     set_in_environ (inferior_environ, var, val);
  910.   free (var);
  911. }
  912.  
  913. static void
  914. unset_environment_command (var, from_tty)
  915.      char *var;
  916.      int from_tty;
  917. {
  918.   if (var == 0)
  919.     {
  920.       /* If there is no argument, delete all environment variables.
  921.      Ask for confirmation if reading from the terminal.  */
  922.       if (!from_tty || query ("Delete all environment variables? "))
  923.     {
  924.       free_environ (inferior_environ);
  925.       inferior_environ = make_environ ();
  926.     }
  927.     }
  928.   else
  929.     unset_in_environ (inferior_environ, var);
  930. }
  931.  
  932. /* Handle the execution path (PATH variable) */
  933.  
  934. static const char path_var_name[] = "PATH";
  935.  
  936. /* ARGSUSED */
  937. static void
  938. path_info (args, from_tty)
  939.      char *args;
  940.      int from_tty;
  941. {
  942.   puts_filtered ("Executable and object file path: ");
  943.   puts_filtered (get_in_environ (inferior_environ, path_var_name));
  944.   puts_filtered ("\n");
  945. }
  946.  
  947. /* Add zero or more directories to the front of the execution path.  */
  948.  
  949. static void
  950. path_command (dirname, from_tty)
  951.      char *dirname;
  952.      int from_tty;
  953. {
  954.   char *exec_path;
  955.  
  956.   dont_repeat ();
  957.   exec_path = strsave (get_in_environ (inferior_environ, path_var_name));
  958.   mod_path (dirname, &exec_path);
  959.   set_in_environ (inferior_environ, path_var_name, exec_path);
  960.   free (exec_path);
  961.   if (from_tty)
  962.     path_info ((char *)NULL, from_tty);
  963. }
  964.  
  965. const char * const reg_names[] = REGISTER_NAMES;
  966.  
  967. /* Print out the machine register regnum. If regnum is -1,
  968.    print all registers (fpregs == 1) or all non-float registers
  969.    (fpregs == 0).
  970.  
  971.    For most machines, having all_registers_info() print the
  972.    register(s) one per line is good enough. If a different format
  973.    is required, (eg, for MIPS or Pyramid 90x, which both have
  974.    lots of regs), or there is an existing convention for showing
  975.    all the registers, define the macro DO_REGISTERS_INFO(regnum, fp)
  976.    to provide that format.  */  
  977.  
  978. #if !defined (DO_REGISTERS_INFO)
  979.  
  980. #define DO_REGISTERS_INFO(regnum, fp) do_registers_info(regnum, fp)
  981.  
  982. static void
  983. do_registers_info (regnum, fpregs)
  984.      int regnum;
  985.      int fpregs;
  986. {
  987.   register int i;
  988.   int numregs = ARCH_NUM_REGS;
  989.  
  990.   for (i = 0; i < numregs; i++)
  991.     {
  992.       char raw_buffer[MAX_REGISTER_RAW_SIZE];
  993.       char virtual_buffer[MAX_REGISTER_VIRTUAL_SIZE];
  994.  
  995.       /* Decide between printing all regs, nonfloat regs, or specific reg.  */
  996.       if (regnum == -1) {
  997.     if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (i)) == TYPE_CODE_FLT && !fpregs)
  998.       continue;
  999.       } else {
  1000.         if (i != regnum)
  1001.       continue;
  1002.       }
  1003.  
  1004.       fputs_filtered (reg_names[i], gdb_stdout);
  1005.       print_spaces_filtered (15 - strlen (reg_names[i]), gdb_stdout);
  1006.  
  1007.       /* Get the data in raw format.  */
  1008.       if (read_relative_register_raw_bytes (i, raw_buffer))
  1009.     {
  1010.       printf_filtered ("Invalid register contents\n");
  1011.       continue;
  1012.     }
  1013.  
  1014.       /* Convert raw data to virtual format if necessary.  */
  1015. #ifdef REGISTER_CONVERTIBLE
  1016.       if (REGISTER_CONVERTIBLE (i))
  1017.     {
  1018.       REGISTER_CONVERT_TO_VIRTUAL (i, REGISTER_VIRTUAL_TYPE (i),
  1019.                        raw_buffer, virtual_buffer);
  1020.     }
  1021.       else
  1022. #endif
  1023.     memcpy (virtual_buffer, raw_buffer,
  1024.         REGISTER_VIRTUAL_SIZE (i));
  1025.  
  1026.       /* If virtual format is floating, print it that way, and in raw hex.  */
  1027.       if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (i)) == TYPE_CODE_FLT
  1028.       && ! INVALID_FLOAT (virtual_buffer, REGISTER_VIRTUAL_SIZE (i)))
  1029.     {
  1030.       register int j;
  1031.  
  1032.       val_print (REGISTER_VIRTUAL_TYPE (i), virtual_buffer, 0,
  1033.              gdb_stdout, 0, 1, 0, Val_pretty_default);
  1034.  
  1035.       printf_filtered ("\t(raw 0x");
  1036.       for (j = 0; j < REGISTER_RAW_SIZE (i); j++)
  1037.         printf_filtered ("%02x", (unsigned char)raw_buffer[j]);
  1038.       printf_filtered (")");
  1039.     }
  1040.  
  1041. /* FIXME!  val_print probably can handle all of these cases now...  */
  1042.  
  1043.       /* Else if virtual format is too long for printf,
  1044.      print in hex a byte at a time.  */
  1045.       else if (REGISTER_VIRTUAL_SIZE (i) > sizeof (long))
  1046.     {
  1047.       register int j;
  1048.       printf_filtered ("0x");
  1049.       for (j = 0; j < REGISTER_VIRTUAL_SIZE (i); j++)
  1050.         printf_filtered ("%02x", (unsigned char)virtual_buffer[j]);
  1051.     }
  1052.       /* Else print as integer in hex and in decimal.  */
  1053.       else
  1054.     {
  1055.       val_print (REGISTER_VIRTUAL_TYPE (i), raw_buffer, 0,
  1056.              gdb_stdout, 'x', 1, 0, Val_pretty_default);
  1057.       printf_filtered ("\t");
  1058.       val_print (REGISTER_VIRTUAL_TYPE (i), raw_buffer, 0,
  1059.              gdb_stdout,   0, 1, 0, Val_pretty_default);
  1060.     }
  1061.  
  1062.       /* The SPARC wants to print even-numbered float regs as doubles
  1063.      in addition to printing them as floats.  */
  1064. #ifdef PRINT_REGISTER_HOOK
  1065.       PRINT_REGISTER_HOOK (i);
  1066. #endif
  1067.  
  1068.       printf_filtered ("\n");
  1069.     }
  1070. }
  1071. #endif /* no DO_REGISTERS_INFO.  */
  1072.  
  1073. static void
  1074. registers_info (addr_exp, fpregs)
  1075.      char *addr_exp;
  1076.      int fpregs;
  1077. {
  1078.   int regnum, numregs;
  1079.   register char *end;
  1080.  
  1081.   if (!target_has_registers)
  1082.     error ("The program has no registers now.");
  1083.  
  1084.   if (!addr_exp)
  1085.     {
  1086.       DO_REGISTERS_INFO(-1, fpregs);
  1087.       return;
  1088.     }
  1089.  
  1090.   do
  1091.     {      
  1092.       if (addr_exp[0] == '$')
  1093.     addr_exp++;
  1094.       end = addr_exp;
  1095.       while (*end != '\0' && *end != ' ' && *end != '\t')
  1096.     ++end;
  1097.       numregs = ARCH_NUM_REGS;
  1098.       for (regnum = 0; regnum < numregs; regnum++)
  1099.     if (!strncmp (addr_exp, reg_names[regnum], end - addr_exp)
  1100.         && strlen (reg_names[regnum]) == end - addr_exp)
  1101.       goto found;
  1102.       if (*addr_exp >= '0' && *addr_exp <= '9')
  1103.     regnum = atoi (addr_exp);        /* Take a number */
  1104.       if (regnum >= numregs)        /* Bad name, or bad number */
  1105.     error ("%.*s: invalid register", end - addr_exp, addr_exp);
  1106.  
  1107. found:
  1108.       DO_REGISTERS_INFO(regnum, fpregs);
  1109.  
  1110.       addr_exp = end;
  1111.       while (*addr_exp == ' ' || *addr_exp == '\t')
  1112.     ++addr_exp;
  1113.     } while (*addr_exp != '\0');
  1114. }
  1115.  
  1116. static void
  1117. all_registers_info (addr_exp, from_tty)
  1118.      char *addr_exp;
  1119.      int from_tty;
  1120. {
  1121.   registers_info (addr_exp, 1);
  1122. }
  1123.  
  1124. static void
  1125. nofp_registers_info (addr_exp, from_tty)
  1126.      char *addr_exp;
  1127.      int from_tty;
  1128. {
  1129.   registers_info (addr_exp, 0);
  1130. }
  1131.  
  1132. /*
  1133.  * TODO:
  1134.  * Should save/restore the tty state since it might be that the
  1135.  * program to be debugged was started on this tty and it wants
  1136.  * the tty in some state other than what we want.  If it's running
  1137.  * on another terminal or without a terminal, then saving and
  1138.  * restoring the tty state is a harmless no-op.
  1139.  * This only needs to be done if we are attaching to a process.
  1140.  */
  1141.  
  1142. /*
  1143.    attach_command --
  1144.    takes a program started up outside of gdb and ``attaches'' to it.
  1145.    This stops it cold in its tracks and allows us to start debugging it.
  1146.    and wait for the trace-trap that results from attaching.  */
  1147.  
  1148. void
  1149. attach_command (args, from_tty)
  1150.      char *args;
  1151.      int from_tty;
  1152. {
  1153.   dont_repeat ();            /* Not for the faint of heart */
  1154.  
  1155.   if (target_has_execution)
  1156.     {
  1157.       if (query ("A program is being debugged already.  Kill it? "))
  1158.     target_kill ();
  1159.       else
  1160.     error ("Not killed.");
  1161.     }
  1162.  
  1163.   target_attach (args, from_tty);
  1164.  
  1165.   /* Set up the "saved terminal modes" of the inferior
  1166.      based on what modes we are starting it with.  */
  1167.   target_terminal_init ();
  1168.  
  1169.   /* Install inferior's terminal modes.  */
  1170.   target_terminal_inferior ();
  1171.  
  1172.   /* Set up execution context to know that we should return from
  1173.      wait_for_inferior as soon as the target reports a stop.  */
  1174.   init_wait_for_inferior ();
  1175.   clear_proceed_status ();
  1176.   stop_soon_quietly = 1;
  1177.  
  1178. #ifndef MACH
  1179.   /* Mach 3 does not generate any traps when attaching to inferior,
  1180.      and to set up frames we can do this.  */
  1181.  
  1182.   wait_for_inferior ();
  1183. #endif
  1184.  
  1185. #ifdef SOLIB_ADD
  1186.   /* Add shared library symbols from the newly attached process, if any.  */
  1187.   SOLIB_ADD ((char *)0, from_tty, (struct target_ops *)0);
  1188. #endif
  1189.  
  1190.   normal_stop ();
  1191. }
  1192.  
  1193. /*
  1194.  * detach_command --
  1195.  * takes a program previously attached to and detaches it.
  1196.  * The program resumes execution and will no longer stop
  1197.  * on signals, etc.  We better not have left any breakpoints
  1198.  * in the program or it'll die when it hits one.  For this
  1199.  * to work, it may be necessary for the process to have been
  1200.  * previously attached.  It *might* work if the program was
  1201.  * started via the normal ptrace (PTRACE_TRACEME).
  1202.  */
  1203.  
  1204. static void
  1205. detach_command (args, from_tty)
  1206.      char *args;
  1207.      int from_tty;
  1208. {
  1209.   dont_repeat ();            /* Not for the faint of heart */
  1210.   target_detach (args, from_tty);
  1211. }
  1212.  
  1213. /* ARGSUSED */
  1214. static void
  1215. float_info (addr_exp, from_tty)
  1216.      char *addr_exp;
  1217.      int from_tty;
  1218. {
  1219. #ifdef FLOAT_INFO
  1220.     FLOAT_INFO;
  1221. #else
  1222.     printf_filtered ("No floating point info available for this processor.\n");
  1223. #endif
  1224. }
  1225.  
  1226. /* ARGSUSED */
  1227. static void
  1228. unset_command (args, from_tty)
  1229.      char *args;
  1230.      int from_tty;
  1231. {
  1232.   printf_filtered ("\"unset\" must be followed by the name of an unset subcommand.\n");
  1233.   help_list (unsetlist, "unset ", -1, gdb_stdout);
  1234. }
  1235.  
  1236. void
  1237. _initialize_infcmd ()
  1238. {
  1239.   struct cmd_list_element *c;
  1240.   
  1241.   add_com ("tty", class_run, tty_command,
  1242.        "Set terminal for future runs of program being debugged.");
  1243.  
  1244.   add_show_from_set
  1245.     (add_set_cmd ("args", class_run, var_string_noescape, (char *)&inferior_args,
  1246.           
  1247. "Set arguments to give program being debugged when it is started.\n\
  1248. Follow this command with any number of args, to be passed to the program.",
  1249.           &setlist),
  1250.      &showlist);
  1251.  
  1252.   c = add_cmd
  1253.     ("environment", no_class, environment_info,
  1254.      "The environment to give the program, or one variable's value.\n\
  1255. With an argument VAR, prints the value of environment variable VAR to\n\
  1256. give the program being debugged.  With no arguments, prints the entire\n\
  1257. environment to be given to the program.", &showlist);
  1258.   c->completer = noop_completer;
  1259.  
  1260.   add_prefix_cmd ("unset", no_class, unset_command,
  1261.           "Complement to certain \"set\" commands",
  1262.           &unsetlist, "unset ", 0, &cmdlist);
  1263.   
  1264.   c = add_cmd ("environment", class_run, unset_environment_command,
  1265.           "Cancel environment variable VAR for the program.\n\
  1266. This does not affect the program until the next \"run\" command.",
  1267.        &unsetlist);
  1268.   c->completer = noop_completer;
  1269.  
  1270.   c = add_cmd ("environment", class_run, set_environment_command,
  1271.            "Set environment variable value to give the program.\n\
  1272. Arguments are VAR VALUE where VAR is variable name and VALUE is value.\n\
  1273. VALUES of environment variables are uninterpreted strings.\n\
  1274. This does not affect the program until the next \"run\" command.",
  1275.        &setlist);
  1276.   c->completer = noop_completer;
  1277.  
  1278.   add_com ("path", class_files, path_command,
  1279.        "Add directory DIR(s) to beginning of search path for object files.\n\
  1280. $cwd in the path means the current working directory.\n\
  1281. This path is equivalent to the $PATH shell variable.  It is a list of\n\
  1282. directories, separated by colons.  These directories are searched to find\n\
  1283. fully linked executable files and separately compiled object files as needed.");
  1284.  
  1285.   c = add_cmd ("paths", no_class, path_info,
  1286.         "Current search path for finding object files.\n\
  1287. $cwd in the path means the current working directory.\n\
  1288. This path is equivalent to the $PATH shell variable.  It is a list of\n\
  1289. directories, separated by colons.  These directories are searched to find\n\
  1290. fully linked executable files and separately compiled object files as needed.", &showlist);
  1291.   c->completer = noop_completer;
  1292.  
  1293.  add_com ("attach", class_run, attach_command,
  1294.         "Attach to a process or file outside of GDB.\n\
  1295. This command attaches to another target, of the same type as your last\n\
  1296. `target' command (`info files' will show your target stack).\n\
  1297. The command may take as argument a process id or a device file.\n\
  1298. For a process id, you must have permission to send the process a signal,\n\
  1299. and it must have the same effective uid as the debugger.\n\
  1300. When using \"attach\", you should use the \"file\" command to specify\n\
  1301. the program running in the process, and to load its symbol table.");
  1302.  
  1303.   add_com ("detach", class_run, detach_command,
  1304.        "Detach a process or file previously attached.\n\
  1305. If a process, it is no longer traced, and it continues its execution.  If you\n\
  1306. were debugging a file, the file is closed and gdb no longer accesses it.");
  1307.  
  1308.   add_com ("signal", class_run, signal_command,
  1309.        "Continue program giving it signal number SIGNUMBER.");
  1310.  
  1311.   add_com ("stepi", class_run, stepi_command,
  1312.        "Step one instruction exactly.\n\
  1313. Argument N means do this N times (or till program stops for another reason).");
  1314.   add_com_alias ("si", "stepi", class_alias, 0);
  1315.  
  1316.   add_com ("nexti", class_run, nexti_command,
  1317.        "Step one instruction, but proceed through subroutine calls.\n\
  1318. Argument N means do this N times (or till program stops for another reason).");
  1319.   add_com_alias ("ni", "nexti", class_alias, 0);
  1320.  
  1321.   add_com ("finish", class_run, finish_command,
  1322.        "Execute until selected stack frame returns.\n\
  1323. Upon return, the value returned is printed and put in the value history.");
  1324.  
  1325.   add_com ("next", class_run, next_command,
  1326.        "Step program, proceeding through subroutine calls.\n\
  1327. Like the \"step\" command as long as subroutine calls do not happen;\n\
  1328. when they do, the call is treated as one instruction.\n\
  1329. Argument N means do this N times (or till program stops for another reason).");
  1330.   add_com_alias ("n", "next", class_run, 1);
  1331.  
  1332.   add_com ("step", class_run, step_command,
  1333.        "Step program until it reaches a different source line.\n\
  1334. Argument N means do this N times (or till program stops for another reason).");
  1335.   add_com_alias ("s", "step", class_run, 1);
  1336.  
  1337.   add_com ("until", class_run, until_command,
  1338.        "Execute until the program reaches a source line greater than the current\n\
  1339. or a specified line or address or function (same args as break command).\n\
  1340. Execution will also stop upon exit from the current stack frame.");
  1341.   add_com_alias ("u", "until", class_run, 1);
  1342.   
  1343.   add_com ("jump", class_run, jump_command,
  1344.        "Continue program being debugged at specified line or address.\n\
  1345. Give as argument either LINENUM or *ADDR, where ADDR is an expression\n\
  1346. for an address to start at.");
  1347.  
  1348.   add_com ("continue", class_run, continue_command,
  1349.        "Continue program being debugged, after signal or breakpoint.\n\
  1350. If proceeding from breakpoint, a number N may be used as an argument,\n\
  1351. which means to set the ignore count of that breakpoint to N - 1 (so that\n\
  1352. the breakpoint won't break until the Nth time it is reached).");
  1353.   add_com_alias ("c", "cont", class_run, 1);
  1354.   add_com_alias ("fg", "cont", class_run, 1);
  1355.  
  1356.   add_com ("run", class_run, run_command,
  1357.        "Start debugged program.  You may specify arguments to give it.\n\
  1358. Args may include \"*\", or \"[...]\"; they are expanded using \"sh\".\n\
  1359. Input and output redirection with \">\", \"<\", or \">>\" are also allowed.\n\n\
  1360. With no arguments, uses arguments last specified (with \"run\" or \"set args\").\n\
  1361. To cancel previous arguments and run with no arguments,\n\
  1362. use \"set args\" without arguments.");
  1363.   add_com_alias ("r", "run", class_run, 1);
  1364.  
  1365.   add_info ("registers", nofp_registers_info,
  1366.     "List of integer registers and their contents, for selected stack frame.\n\
  1367. Register name as argument means describe only that register.");
  1368.  
  1369.   add_info ("all-registers", all_registers_info,
  1370. "List of all registers and their contents, for selected stack frame.\n\
  1371. Register name as argument means describe only that register.");
  1372.  
  1373.   add_info ("program", program_info,
  1374.         "Execution status of the program.");
  1375.  
  1376.   add_info ("float", float_info,
  1377.         "Print the status of the floating point unit\n");
  1378.  
  1379.   inferior_args = savestring ("", 1);    /* Initially no args */
  1380.   inferior_environ = make_environ ();
  1381.   init_environ (inferior_environ);
  1382. }
  1383.