home *** CD-ROM | disk | FTP | other *** search
/ Dream 52 / Amiga_Dream_52.iso / Atari / Gnu / gdb36p4s.zoo / main.c < prev    next >
C/C++ Source or Header  |  1993-09-06  |  49KB  |  1,907 lines

  1. /* Top level for GDB, the GNU debugger.
  2.    Copyright (C) 1986, 1987, 1988, 1989 Free Software Foundation, Inc.
  3.  
  4. This file is part of GDB.
  5.  
  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)
  9. any later version.
  10.  
  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.
  15.  
  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.  */
  19.  
  20. #include <stdio.h>
  21. #include "defs.h"
  22. #include "command.h"
  23. #include "param.h"
  24.  
  25. #ifdef USG
  26. #include <sys/types.h>
  27. #include <unistd.h>
  28. #endif
  29.  
  30. #include <sys/file.h>
  31. #include <setjmp.h>
  32. #include <signal.h>
  33. #include <sys/param.h>
  34. #include <sys/stat.h>
  35.  
  36. #ifdef SET_STACK_LIMIT_HUGE
  37. #include <sys/time.h>
  38. #include <sys/resource.h>
  39. #include <ctype.h>
  40.  
  41. int original_stack_limit;
  42. #endif
  43.  
  44. /* If this definition isn't overridden by the header files, assume
  45.    that isatty and fileno exist on this system.  */
  46. #ifndef ISATTY
  47. #define ISATTY(FP)    (isatty (fileno (FP)))
  48. #endif
  49.  
  50. extern void free ();
  51.  
  52. /* Version number of GDB, as a string.  */
  53.  
  54. extern char *version;
  55.  
  56. /*
  57.  * Declare all cmd_list_element's
  58.  */
  59.  
  60. /* Chain containing all defined commands.  */
  61.  
  62. struct cmd_list_element *cmdlist;
  63.  
  64. /* Chain containing all defined info subcommands.  */
  65.  
  66. struct cmd_list_element *infolist;
  67.  
  68. /* Chain containing all defined enable subcommands. */
  69.  
  70. struct cmd_list_element *enablelist;
  71.  
  72. /* Chain containing all defined disable subcommands. */
  73.  
  74. struct cmd_list_element *disablelist;
  75.  
  76. /* Chain containing all defined delete subcommands. */
  77.  
  78. struct cmd_list_element *deletelist;
  79.  
  80. /* Chain containing all defined "enable breakpoint" subcommands. */
  81.  
  82. struct cmd_list_element *enablebreaklist;
  83.  
  84. /* Chain containing all defined set subcommands */
  85.  
  86. struct cmd_list_element *setlist;
  87.  
  88. /* Chain containing all defined \"set history\".  */
  89.  
  90. struct cmd_list_element *sethistlist;
  91.  
  92. /* Chain containing all defined \"unset history\".  */
  93.  
  94. struct cmd_list_element *unsethistlist;
  95.  
  96. /* stdio stream that command input is being read from.  */
  97.  
  98. FILE *instream;
  99.  
  100. /* Current working directory.  */
  101.  
  102. char *current_directory;
  103.  
  104. /* The directory name is actually stored here (usually).  */
  105. static char dirbuf[MAXPATHLEN];
  106.  
  107. /* The number of lines on a page, and the number of spaces
  108.    in a line.  */
  109. int linesize, pagesize;
  110.  
  111. /* Nonzero if we should refrain from using an X window.  */
  112.  
  113. int inhibit_windows = 0;
  114.  
  115. /* Function to call before reading a command, if nonzero.
  116.    The function receives two args: an input stream,
  117.    and a prompt string.  */
  118.    
  119. void (*window_hook) ();
  120.  
  121. extern int frame_file_full_name;
  122. int xgdb_verbose;
  123.  
  124. void free_command_lines ();
  125. char *gdb_readline ();
  126. char *command_line_input ();
  127. static void initialize_main ();
  128. static void initialize_cmd_lists ();
  129. void command_loop ();
  130. static void source_command ();
  131. static void print_gdb_version ();
  132. static void float_handler ();
  133. static void cd_command ();
  134.  
  135. char *getenv ();
  136.  
  137. /* gdb prints this when reading a command interactively */
  138. static char *prompt;
  139.  
  140. /* Buffer used for reading command lines, and the size
  141.    allocated for it so far.  */
  142.  
  143. char *line;
  144. int linesize;
  145.  
  146.  
  147. /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT.  */
  148.  
  149. #ifndef STOP_SIGNAL
  150. #ifdef SIGTSTP
  151. #define STOP_SIGNAL SIGTSTP
  152. #endif
  153. #endif
  154.  
  155. /* This is how `error' returns to command level.  */
  156.  
  157. jmp_buf to_top_level;
  158.  
  159. void
  160. return_to_top_level ()
  161. {
  162.   quit_flag = 0;
  163.   immediate_quit = 0;
  164.   clear_breakpoint_commands ();
  165.   clear_momentary_breakpoints ();
  166.   disable_current_display ();
  167.   do_cleanups (0);
  168.   longjmp (to_top_level, 1);
  169. }
  170.  
  171. /* Call FUNC with arg ARG, catching any errors.
  172.    If there is no error, return the value returned by FUNC.
  173.    If there is an error, return zero after printing ERRSTRING
  174.     (which is in addition to the specific error message already printed).  */
  175.  
  176. int
  177. catch_errors (func, arg, errstring)
  178.      int (*func) ();
  179.      int arg;
  180.      char *errstring;
  181. {
  182.   jmp_buf saved;
  183.   int val;
  184.   struct cleanup *saved_cleanup_chain;
  185.  
  186.   saved_cleanup_chain = save_cleanups ();
  187.  
  188.   bcopy (to_top_level, saved, sizeof (jmp_buf));
  189.  
  190.   if (setjmp (to_top_level) == 0)
  191.     val = (*func) (arg);
  192.   else
  193.     {
  194.       fprintf (stderr, "%s\n", errstring);
  195.       val = 0;
  196.     }
  197.  
  198.   restore_cleanups (saved_cleanup_chain);
  199.  
  200.   bcopy (saved, to_top_level, sizeof (jmp_buf));
  201.   return val;
  202. }
  203.  
  204. /* Handler for SIGHUP.  */
  205.  
  206. static void
  207. disconnect ()
  208. {
  209.   kill_inferior_fast ();
  210.   signal (SIGHUP, SIG_DFL);
  211.   kill (getpid (), SIGHUP);
  212. }
  213.  
  214. /* Clean up on error during a "source" command (or execution of a
  215.    user-defined command).
  216.    Close the file opened by the command
  217.    and restore the previous input stream.  */
  218.  
  219. static void
  220. source_cleanup (stream)
  221.      FILE *stream;
  222. {
  223.   /* Instream may be 0; set to it when executing user-defined command. */
  224.   if (instream)
  225.     fclose (instream);
  226.   instream = stream;
  227. }
  228.  
  229.  
  230. int
  231. main (argc, argv, envp)
  232.      int argc;
  233.      char **argv;
  234.      char **envp;
  235. {
  236.   int count;
  237.   int inhibit_gdbinit = 0;
  238.   int quiet = 0;
  239.   int batch = 0;
  240.   register int i;
  241.  
  242. #if defined (ALIGN_STACK_ON_STARTUP)
  243.   i = (int) &count & 0x3;
  244.   if (i != 0)
  245.     alloca (4 - i);
  246. #endif
  247.  
  248.   quit_flag = 0;
  249.   linesize = 100;
  250.   line = (char *) xmalloc (linesize);
  251.   *line = 0;
  252.   instream = stdin;
  253.  
  254.   getwd (dirbuf);
  255.   current_directory = savestring (dirbuf, strlen (dirbuf));
  256.  
  257. #ifdef SET_STACK_LIMIT_HUGE
  258.   {
  259.     struct rlimit rlim;
  260.  
  261.     /* Set the stack limit huge so that alloca (particularly stringtab
  262.      * in dbxread.c) does not fail. */
  263.     getrlimit (RLIMIT_STACK, &rlim);
  264.     original_stack_limit = rlim.rlim_cur;
  265.     rlim.rlim_cur = rlim.rlim_max;
  266.     setrlimit (RLIMIT_STACK, &rlim);
  267.   }
  268. #endif /* SET_STACK_LIMIT_HUGE */
  269.  
  270.   /* Look for flag arguments.  */
  271.  
  272.   for (i = 1; i < argc; i++)
  273.     {
  274.       if (!strcmp (argv[i], "-q") || !strcmp (argv[i], "-quiet"))
  275.     quiet = 1;
  276.       else if (!strcmp (argv[i], "-nx"))
  277.     inhibit_gdbinit = 1;
  278.       else if (!strcmp (argv[i], "-nw"))
  279.     inhibit_windows = 1;
  280.       else if (!strcmp (argv[i], "-batch"))
  281.     batch = 1, quiet = 1;
  282.       else if (!strcmp (argv[i], "-fullname"))
  283.     frame_file_full_name = 1;
  284.       else if (!strcmp (argv[i], "-xgdb_verbose"))
  285.     xgdb_verbose = 1;
  286.       /* -help: print a summary of command line switches.  */
  287.       else if (!strcmp (argv[i], "-help"))
  288.     {
  289. #ifndef atarist
  290.       fputs ("\
  291. This is GDB, the GNU debugger.  Use the command\n\
  292.     gdb [options] [executable [core-file]]\n\
  293. to enter the debugger.\n\
  294. \n\
  295. Options available are:\n\
  296.   -help             Print this message.\n\
  297.   -quiet            Do not print version number on startup.\n\
  298.   -fullname         Output information used by emacs-GDB interface.\n\
  299.   -batch            Exit after processing options.\n\
  300.   -nx               Do not read .gdbinit file.\n\
  301.   -tty TTY          Use TTY for input/output by the program being debugged.\n\
  302.   -cd DIR           Change current directory to DIR.\n\
  303.   -directory DIR    Search for source files in DIR.\n\
  304.   -command FILE     Execute GDB commands from FILE.\n\
  305.   -symbols SYMFILE  Read symbols from SYMFILE.\n\
  306.   -exec EXECFILE    Use EXECFILE as the executable.\n\
  307.   -se FILE          Use FILE as symbol file and executable file.\n\
  308.   -core COREFILE    Analyze the core dump COREFILE.\n\
  309. \n\
  310. For more information, type \"help\" from within GDB, or consult the\n\
  311. GDB manual (available as on-line info or a printed manual).\n", stderr);
  312. #else
  313.       fputs ("\
  314. This is GDB, the GNU debugger.  Use the command\n\
  315.     gdb [options] [executable [symbol-file]]\n\
  316. to enter the debugger.\n\
  317. \n\
  318. Options available are:\n\
  319.   -help             Print this message.\n\
  320.   -quiet            Do not print version number on startup.\n\
  321.   -fullname         Output information used by emacs-GDB interface.\n\
  322.   -batch            Exit after processing options.\n\
  323.   -nx               Do not read .gdbinit file.\n\
  324.   -tty TTY          Use TTY for input/output by the program being debugged.\n\
  325.   -cd DIR           Change current directory to DIR.\n\
  326.   -directory DIR    Search for source files in DIR.\n\
  327.   -command FILE     Execute GDB commands from FILE.\n\
  328.   -symbols SYMFILE  Read symbols from SYMFILE.\n\
  329.   -exec EXECFILE    Use EXECFILE as the executable.\n\
  330. \n\
  331. For more information, type \"help\" from within GDB, or consult the\n\
  332. GDB manual (available as on-line info or a printed manual).\n", stderr);
  333. #endif
  334.       /* Exiting after printing this message seems like
  335.          the most useful thing to do.  */
  336.       exit (0);
  337.     }
  338.       else if (argv[i][0] == '-')
  339.     /* Other options take arguments, so don't confuse an
  340.        argument with an option.  */
  341.     i++;
  342.     }
  343.  
  344.   /* Run the init function of each source file */
  345.  
  346.   initialize_cmd_lists ();    /* This needs to be done first */
  347.   initialize_all_files ();
  348.   initialize_main ();        /* But that omits this file!  Do it now */
  349.   initialize_signals ();
  350.  
  351.   if (!quiet)
  352.     print_gdb_version ();
  353.  
  354.   /* Process the command line arguments.  */
  355.  
  356.   count = 0;
  357.   for (i = 1; i < argc; i++)
  358.     {
  359.       extern void exec_file_command (), symbol_file_command ();
  360.       extern void core_file_command (), directory_command ();
  361.       extern void tty_command ();
  362.       register char *arg = argv[i];
  363.       /* Args starting with - say what to do with the following arg
  364.      as a filename.  */
  365.       if (arg[0] == '-')
  366.     {
  367.       if (!strcmp (arg, "-q") || !strcmp (arg, "-nx")
  368.           || !strcmp (arg, "-quiet") || !strcmp (arg, "-batch")
  369.           || !strcmp (arg, "-fullname") || !strcmp (arg, "-nw")
  370.           || !strcmp (arg, "-xgdb_verbose")
  371.           || !strcmp (arg, "-help"))
  372.         /* Already processed above */
  373.         continue;
  374.  
  375.       if (++i == argc)
  376.         fprintf (stderr, "No argument follows \"%s\".\n", arg);
  377.       if (!setjmp (to_top_level))
  378.         {
  379.           /* -s foo: get syms from foo.  -e foo: execute foo.
  380.          -se foo: do both with foo.  -c foo: use foo as core dump.  */
  381.           if (!strcmp (arg, "-se"))
  382.         {
  383.           exec_file_command (argv[i], !batch);
  384.           symbol_file_command (argv[i], !batch);
  385.         }
  386.           else if (!strcmp (arg, "-s") || !strcmp (arg, "-symbols"))
  387.         symbol_file_command (argv[i], !batch);
  388.           else if (!strcmp (arg, "-e") || !strcmp (arg, "-exec"))
  389.         exec_file_command (argv[i], !batch);
  390.           else if (!strcmp (arg, "-c") || !strcmp (arg, "-core"))
  391.         core_file_command (argv[i], !batch);
  392.           /* -x foo: execute commands from foo.  */
  393.           else if (!strcmp (arg, "-x") || !strcmp (arg, "-command")
  394.                || !strcmp (arg, "-commands"))
  395.         source_command (argv[i]);
  396.           /* -d foo: add directory `foo' to source-file directory
  397.                  search-list */
  398.           else if (!strcmp (arg, "-d") || !strcmp (arg, "-dir")
  399.                || !strcmp (arg, "-directory"))
  400.         directory_command (argv[i], 0);
  401.           /* -cd FOO: specify current directory as FOO.
  402.          GDB remembers the precise string FOO as the dirname.  */
  403.           else if (!strcmp (arg, "-cd"))
  404.         {
  405.           cd_command (argv[i], 0);
  406.           init_source_path ();
  407.         }
  408.           /* -t /def/ttyp1: use /dev/ttyp1 for inferior I/O.  */
  409.           else if (!strcmp (arg, "-t") || !strcmp (arg, "-tty"))
  410.         tty_command (argv[i], 0);
  411.  
  412.           else
  413.         error ("Unknown command-line switch: \"%s\"\n", arg);
  414.         }
  415.     }
  416.       else
  417.     {
  418.       /* Args not thus accounted for
  419.          are treated as, first, the symbol/executable file
  420.          and, second, the core dump file.  */
  421.       count++;
  422.       if (!setjmp (to_top_level))
  423.         switch (count)
  424.           {
  425.           case 1:
  426.         exec_file_command (arg, !batch);
  427. #ifndef atarist
  428.         symbol_file_command (arg, !batch);
  429. #endif
  430.         break;
  431.  
  432.           case 2:
  433. #ifndef atarist
  434.         core_file_command (arg, !batch);
  435. #else
  436.         symbol_file_command (arg, !batch);
  437. #endif
  438.         break;
  439.  
  440.           case 3:
  441.         fprintf (stderr, "Excess command line args ignored. (%s%s)\n",
  442.              arg, (i == argc - 1) ? "" : " ...");
  443.           }
  444.     }
  445.     }
  446.  
  447.   {
  448.     struct stat homebuf, cwdbuf;
  449.     char *homedir, *homeinit;
  450.  
  451.     /* Read init file, if it exists in home directory  */
  452.     homedir = getenv ("HOME");
  453.     if (homedir)
  454.       {
  455.     homeinit = (char *) alloca (strlen (getenv ("HOME")) + 10);
  456.     strcpy (homeinit, getenv ("HOME"));
  457.     strcat (homeinit, "/.gdbinit");
  458.     if (!inhibit_gdbinit && access (homeinit, R_OK) == 0)
  459.       if (!setjmp (to_top_level))
  460.         source_command (homeinit);
  461.  
  462.     /* Do stats; no need to do them elsewhere since we'll only
  463.        need them if homedir is set.  Make sure that they are
  464.        zero in case one of them fails (guarantees that they
  465.        won't match if either exits).  */
  466.     
  467.     bzero (&homebuf, sizeof (struct stat));
  468.     bzero (&cwdbuf, sizeof (struct stat));
  469.     
  470.     stat (homeinit, &homebuf);
  471.     stat ("./.gdbinit", &cwdbuf); /* We'll only need this if
  472.                      homedir was set.  */
  473.       }
  474.     
  475.     /* Read the input file in the current directory, *if* it isn't
  476.        the same file (it should exist, also).  */
  477.  
  478.     if (!homedir
  479.     || bcmp ((char *) &homebuf,
  480.          (char *) &cwdbuf,
  481.          sizeof (struct stat)))
  482.       if (!inhibit_gdbinit && access (".gdbinit", R_OK) == 0)
  483.     if (!setjmp (to_top_level))
  484.       source_command (".gdbinit");
  485.   }
  486.  
  487.   if (batch)
  488.     {
  489. #if 0
  490.       fatal ("Attempt to read commands from stdin in batch mode.");
  491. #endif
  492.       /* We have hit the end of the batch file.  */
  493.       exit (0);
  494.     }
  495.  
  496.   if (!quiet)
  497.     printf ("Type \"help\" for a list of commands.\n");
  498.  
  499.   /* The command loop.  */
  500.  
  501.   while (1)
  502.     {
  503.       if (!setjmp (to_top_level))
  504.     command_loop ();
  505.       clearerr (stdin);        /* Don't get hung if C-d is typed.  */
  506.     }
  507. }
  508.  
  509. /* Execute the line P as a command.
  510.    Pass FROM_TTY as second argument to the defining function.  */
  511.  
  512. void
  513. execute_command (p, from_tty)
  514.      char *p;
  515.      int from_tty;
  516. {
  517.   register struct cmd_list_element *c;
  518.   register struct command_line *cmdlines;
  519.  
  520.   free_all_values ();
  521.   while (*p == ' ' || *p == '\t') p++;
  522.   if (*p)
  523.     {
  524.       c = lookup_cmd (&p, cmdlist, "", 0, 1);
  525.       if (c->function == 0)
  526.     error ("That is not a command, just a help topic.");
  527.       else if (c->class == (int) class_user)
  528.     {
  529.       struct cleanup *old_chain;
  530.       
  531.       if (*p)
  532.         error ("User-defined commands cannot take arguments.");
  533.       cmdlines = (struct command_line *) c->function;
  534.       if (cmdlines == (struct command_line *) 0)
  535.         /* Null command */
  536.         return;
  537.  
  538.       /* Set the instream to 0, indicating execution of a
  539.          user-defined function.  */
  540.       old_chain =  make_cleanup (source_cleanup, instream);
  541.       instream = (FILE *) 0;
  542.       while (cmdlines)
  543.         {
  544.           execute_command (cmdlines->line, 0);
  545.           cmdlines = cmdlines->next;
  546.         }
  547.       do_cleanups (old_chain);
  548.     }
  549.       else
  550.     /* Pass null arg rather than an empty one.  */
  551.     (*c->function) (*p ? p : 0, from_tty);
  552.     }
  553. }
  554.  
  555. static void
  556. do_nothing ()
  557. {
  558. }
  559.  
  560. /* Read commands from `instream' and execute them
  561.    until end of file.  */
  562. void
  563. command_loop ()
  564. {
  565.   struct cleanup *old_chain;
  566.   while (!feof (instream))
  567.     {
  568.       if (window_hook && instream == stdin)
  569.     (*window_hook) (instream, prompt);
  570.  
  571.       quit_flag = 0;
  572.       if (instream == stdin && ISATTY (stdin))
  573.     reinitialize_more_filter ();
  574.       old_chain = make_cleanup (do_nothing, 0);
  575.       execute_command (command_line_input (instream == stdin ? prompt : 0,
  576.                       instream == stdin),
  577.                instream == stdin);
  578.       /* Do any commands attached to breakpoint we stopped at.  */
  579.       do_breakpoint_commands ();
  580.       do_cleanups (old_chain);
  581.     }
  582. }
  583.  
  584. /* Commands call this if they do not want to be repeated by null lines.  */
  585.  
  586. void
  587. dont_repeat ()
  588. {
  589.   /* If we aren't reading from standard input, we are saving the last
  590.      thing read from stdin in line and don't want to delete it.  Null lines
  591.      won't repeat here in any case.  */
  592.   if (instream == stdin)
  593.     *line = 0;
  594. }
  595.  
  596. /* Read a line from the stream "instream" without command line editing.
  597.  
  598.    It prints PROMPT once at the start.
  599.  
  600.    If RETURN_RESULT is set it allocates
  601.    space for whatever the user types and returns the result.
  602.    If not, it just discards what the user types.  */
  603. char *
  604. gdb_readline (prompt, return_result)
  605.      char *prompt;
  606.      int return_result;
  607. {
  608.   int c;
  609.   char *result;
  610.   int input_index = 0;
  611.   int result_size = 80;
  612.  
  613.   if (prompt)
  614.     {
  615.       printf (prompt);
  616.       fflush (stdout);
  617.     }
  618.   
  619.   if (return_result)
  620.     result = (char *) xmalloc (result_size);
  621.  
  622.   while (1)
  623.     {
  624.       c = fgetc (instream);
  625.       if (c == -1 || c == '\n')
  626.     break;
  627.       if (return_result)
  628.     {
  629.       result[input_index++] = c;
  630.       while (input_index >= result_size)
  631.         {
  632.           result_size *= 2;
  633.           result = (char *) xrealloc (result, result_size);
  634.         }
  635.     }
  636.     }
  637.   if (return_result)
  638.     {
  639.       result[input_index++] = '\0';
  640.       return result;
  641.     }
  642.   else
  643.     return (char *) 0;
  644. }
  645.  
  646. /* Declaration for fancy readline with command line editing.  */
  647. char *readline ();
  648.  
  649. /* Variables which control command line editing and history
  650.    substitution.  These variables are given default values at the end
  651.    of this file.  */
  652. static int command_editing_p;
  653. static int history_expansion_p;
  654. static int write_history_p;
  655. static int history_size;
  656. static char *history_filename;
  657.  
  658. /* Variables which are necessary for fancy command line editing.  */
  659. char *gdb_completer_word_break_characters =
  660.   " \t\n!@#$%^&*()-+=|~`}{[]\"';:?/>.<,";
  661.  
  662. /* Functions that are used as part of the fancy command line editing.  */
  663.  
  664. /* Generate symbol names one by one for the completer.  If STATE is
  665.    zero, then we need to initialize, otherwise the initialization has
  666.    already taken place.  TEXT is what we expect the symbol to start
  667.    with.  RL_LINE_BUFFER is available to be looked at; it contains the
  668.    entire text of the line.  RL_POINT is the offset in that line of
  669.    the cursor.  You should pretend that the line ends at RL_POINT.  */
  670. char *
  671. symbol_completion_function (text, state)
  672.      char *text;
  673.      int state;
  674. {
  675.   char **make_symbol_completion_list ();
  676.   static char **list = (char **)NULL;
  677.   static int index;
  678.   char *output;
  679.   extern char *rl_line_buffer;
  680.   extern int rl_point;
  681.   char *tmp_command, *p;
  682.   struct cmd_list_element *c, *result_list;
  683.  
  684.   if (!state)
  685.     {
  686.       /* Free the storage used by LIST, but not by the strings inside.  This is
  687.      because rl_complete_internal () frees the strings. */
  688.       if (list)
  689.     free (list);
  690.       list = 0;
  691.       index = 0;
  692.  
  693.       /* Decide whether to complete on a list of gdb commands or on
  694.      symbols.  */
  695.       tmp_command = (char *) alloca (rl_point + 1);
  696.       p = tmp_command;
  697.       
  698.       strncpy (tmp_command, rl_line_buffer, rl_point);
  699.       tmp_command[rl_point] = '\0';
  700.  
  701.       if (rl_point == 0)
  702.     {
  703.       /* An empty line we want to consider ambiguous; that is,
  704.          it could be any command.  */
  705.       c = (struct cmd_list_element *) -1;
  706.       result_list = 0;
  707.     }
  708.       else
  709.     c = lookup_cmd_1 (&p, cmdlist, &result_list, 1);
  710.  
  711.       /* Move p up to the next interesting thing.  */
  712.       while (*p == ' ' || *p == '\t')
  713.     p++;
  714.  
  715.       if (!c)
  716.     /* He's typed something unrecognizable.  Sigh.  */
  717.     list = (char **) 0;
  718.       else if (c == (struct cmd_list_element *) -1)
  719.     {
  720.       if (p + strlen(text) != tmp_command + rl_point)
  721.         error ("Unrecognized command.");
  722.       
  723.       /* He's typed something ambiguous.  This is easier.  */
  724.       if (result_list)
  725.         list = complete_on_cmdlist (*result_list->prefixlist, text);
  726.       else
  727.         list = complete_on_cmdlist (cmdlist, text);
  728.     }
  729.       else
  730.     {
  731.       /* If we've gotten this far, gdb has recognized a full
  732.          command.  There are several possibilities:
  733.  
  734.          1) We need to complete on the command.
  735.          2) We need to complete on the possibilities coming after
  736.          the command.
  737.          2) We need to complete the text of what comes after the
  738.          command.   */
  739.  
  740.       if (!*p && *text)
  741.         /* Always (might be longer versions of thie command).  */
  742.         list = complete_on_cmdlist (result_list, text);
  743.       else if (!*p && !*text)
  744.         {
  745.           if (c->prefixlist)
  746.         list = complete_on_cmdlist (*c->prefixlist, "");
  747.           else
  748.         list = make_symbol_completion_list ("");
  749.         }
  750.       else
  751.         {
  752.           if (c->prefixlist && !c->allow_unknown)
  753.         {
  754.           *p = '\0';
  755. #if 0
  756.           error ("\"%s\" command requires a subcommand.",
  757.              tmp_command);
  758. #endif
  759.         }
  760.           else
  761.         list = make_symbol_completion_list (text);
  762.         }
  763.     }
  764.     }
  765.  
  766.   /* If the debugged program wasn't compiled with symbols, or if we're
  767.      clearly completing on a command and no command matches, return
  768.      NULL.  */
  769.   if (!list)
  770.     return ((char *)NULL);
  771.  
  772.   output = list[index];
  773.   if (output)
  774.     index++;
  775.  
  776.   return (output);
  777. }
  778.  
  779. #ifdef STOP_SIGNAL
  780. static void
  781. stop_sig ()
  782. {
  783. #if STOP_SIGNAL == SIGTSTP
  784.   signal (SIGTSTP, SIG_DFL);
  785.   sigsetmask (0);
  786.   kill (getpid (), SIGTSTP);
  787.   signal (SIGTSTP, stop_sig);
  788. #else
  789.   signal (STOP_SIGNAL, stop_sig);
  790. #endif
  791.   printf ("%s", prompt);
  792.   fflush (stdout);
  793.  
  794.   /* Forget about any previous command -- null line now will do nothing.  */
  795.   dont_repeat ();
  796. }
  797. #endif /* STOP_SIGNAL */
  798.  
  799. #if 0
  800. Writing the history file upon a terminating signal is not useful,
  801.   because the info is rarely relevant and is in the core dump anyway.
  802.   It is an annoyance to have the file cluttering up the place.
  803. /* The list of signals that would terminate us if not caught.
  804.    We catch them, but just so that we can write the history file,
  805.    and so forth. */
  806. int terminating_signals[] = {
  807.   SIGHUP, SIGINT, SIGILL, SIGTRAP, SIGIOT,
  808.   SIGEMT, SIGFPE, SIGKILL, SIGBUS, SIGSEGV, SIGSYS,
  809.   SIGPIPE, SIGALRM, SIGTERM,
  810. #ifdef SIGXCPU
  811.   SIGXCPU,
  812. #endif
  813. #ifdef SIGXFSZ
  814.   SIGXFSZ,
  815. #endif
  816. #ifdef SIGVTALRM
  817.   SIGVTALRM,
  818. #endif
  819. #ifdef SIGPROF
  820.   SIGPROF,
  821. #endif
  822. #ifdef SIGLOST
  823.   SIGLOST,
  824. #endif
  825. #ifdef SIGUSR1
  826.   SIGUSR1, SIGUSR2
  827. #endif
  828.     };
  829.  
  830. #define TERMSIGS_LENGTH (sizeof (terminating_signals) / sizeof (int))
  831.  
  832. static void
  833. catch_termination (sig)
  834.      int sig;
  835. {
  836.   /* We are probably here because GDB has a bug.  Write out the history
  837.      so that we might have a better chance of reproducing it.  */
  838.   /* Tell the user what we are doing so he can delete the file if
  839.      it is unwanted.  */
  840.   write_history (history_filename);
  841.   printf ("\n%s written.\n", history_filename);
  842.   signal (sig, SIG_DFL);
  843.   kill (getpid (), sig);
  844. }
  845. #endif
  846.  
  847. /* Initialize signal handlers. */
  848. initialize_signals ()
  849. {
  850.   extern void request_quit ();
  851. #if 0
  852.   register int i;
  853.  
  854.   for (i = 0; i < TERMSIGS_LENGTH; i++)
  855.     signal (terminating_signals[i], catch_termination);
  856. #endif
  857.  
  858.   signal (SIGINT, request_quit);
  859.  
  860.   /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
  861.      passed to the inferior, which we don't want.  It would be
  862.      possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
  863.      on BSD4.3 systems using vfork, that will (apparently) affect the
  864.      GDB process as well as the inferior (the signal handling tables
  865.      being shared between the two, apparently).  Since we establish
  866.      a handler for SIGQUIT, when we call exec it will set the signal
  867.      to SIG_DFL for us.  */
  868.   signal (SIGQUIT, do_nothing);
  869.   if (signal (SIGHUP, do_nothing) != SIG_IGN)
  870.     signal (SIGHUP, disconnect);
  871.   signal (SIGFPE, float_handler);
  872. }
  873.  
  874. /* Read one line from the command input stream `instream'
  875.    into the local static buffer `linebuffer' (whose current length
  876.    is `linelength').
  877.    The buffer is made bigger as necessary.
  878.    Returns the address of the start of the line.
  879.  
  880.    *If* the instream == stdin & stdin is a terminal, the line read
  881.    is copied into the file line saver (global var char *line,
  882.    length linesize) so that it can be duplicated.
  883.  
  884.    This routine either uses fancy command line editing or
  885.    simple input as the user has requested.  */
  886.  
  887. char *
  888. command_line_input (prompt, repeat)
  889.      char *prompt;
  890.      int repeat;
  891. {
  892.   static char *linebuffer = 0;
  893.   static int linelength = 0;
  894.   register char *p;
  895.   register char *p1, *rl;
  896.   char *local_prompt = prompt;
  897.   register int c;
  898.   char *nline;
  899.  
  900.   if (linebuffer == 0)
  901.     {
  902.       linelength = 80;
  903.       linebuffer = (char *) xmalloc (linelength);
  904.     }
  905.  
  906.   p = linebuffer;
  907.  
  908.   /* Control-C quits instantly if typed while in this loop
  909.      since it should not wait until the user types a newline.  */
  910.   immediate_quit++;
  911. #ifdef STOP_SIGNAL
  912.   signal (STOP_SIGNAL, stop_sig);
  913. #endif
  914.  
  915.   while (1)
  916.     {
  917.       /* Don't use fancy stuff if not talking to stdin.  */
  918.       if (command_editing_p && instream == stdin
  919.       && ISATTY (instream))
  920.     rl = readline (local_prompt);
  921.       else
  922.     rl = gdb_readline (local_prompt, 1);
  923.  
  924.       if (!rl || rl == (char *) EOF) break;
  925.       if (strlen(rl) + 1 + (p - linebuffer) > linelength)
  926.     {
  927.       linelength = strlen(rl) + 1 + (p - linebuffer);
  928.       nline = (char *) xrealloc (linebuffer, linelength);
  929.       p += nline - linebuffer;
  930.       linebuffer = nline;
  931.     }
  932.       p1 = rl;
  933.       /* Copy line.  Don't copy null at end.  (Leaves line alone
  934.          if this was just a newline)  */
  935.       while (*p1)
  936.     *p++ = *p1++;
  937.  
  938.       free (rl);            /* Allocated in readline.  */
  939.  
  940.       if (p == linebuffer || *(p - 1) != '\\')
  941.     break;
  942.  
  943.       p--;            /* Put on top of '\'.  */
  944.       local_prompt = (char *) 0;
  945.   }
  946.  
  947. #ifdef STOP_SIGNAL
  948.   signal (SIGTSTP, SIG_DFL);
  949. #endif
  950.   immediate_quit--;
  951.  
  952.   /* Do history expansion if that is wished.  */
  953.   if (history_expansion_p && instream == stdin
  954.       && ISATTY (instream))
  955.     {
  956.       char *history_value;
  957.       int expanded;
  958.  
  959.       *p = '\0';        /* Insert null now.  */
  960.       expanded = history_expand (linebuffer, &history_value);
  961.       if (expanded)
  962.     {
  963.       /* Print the changes.  */
  964.       printf ("%s\n", history_value);
  965.  
  966.       /* If there was an error, call this function again.  */
  967.       if (expanded < 0)
  968.         {
  969.           free (history_value);
  970.           return command_line_input (prompt, repeat);
  971.         }
  972.       if (strlen (history_value) > linelength)
  973.         {
  974.           linelength = strlen (history_value) + 1;
  975.           linebuffer = (char *) xrealloc (linebuffer, linelength);
  976.         }
  977.       strcpy (linebuffer, history_value);
  978.       p = linebuffer + strlen(linebuffer);
  979.       free (history_value);
  980.     }
  981.     }
  982.  
  983.   /* If we just got an empty line, and that is supposed
  984.      to repeat the previous command, return the value in the
  985.      global buffer.  */
  986.   if (repeat)
  987.     {
  988.       if (p == linebuffer)
  989.     return line;
  990.       p1 = linebuffer;
  991.       while (*p1 == ' ' || *p1 == '\t')
  992.     p1++;
  993.       if (!*p1)
  994.     return line;
  995.     }
  996.  
  997.   *p = 0;
  998.  
  999.   /* Add line to history if appropriate.  */
  1000.   if (instream == stdin
  1001.       && ISATTY (stdin) && *linebuffer)
  1002.     add_history (linebuffer);
  1003.  
  1004.   /* If line is a comment, clear it out.  */
  1005.   /* Note:  comments are added to the command history.
  1006.      This is useful when you type a command, and then realize
  1007.      you don't want to execute it quite yet.  You can comment out the
  1008.      command and then later fetch it from the value history and
  1009.      remove the '#'.  */
  1010.   p1 = linebuffer;
  1011.   while ((c = *p1) == ' ' || c == '\t') p1++;
  1012.   if (c == '#')
  1013.     *linebuffer = 0;
  1014.  
  1015.   /* Save into global buffer if appropriate.  */
  1016.   if (repeat)
  1017.     {
  1018.       if (linelength > linesize)
  1019.     {
  1020.       line = xrealloc (line, linelength);
  1021.       linesize = linelength;
  1022.     }
  1023.       strcpy (line, linebuffer);
  1024.       return line;
  1025.     }
  1026.  
  1027.   return linebuffer;
  1028. }
  1029.  
  1030. /* Read lines from the input stream
  1031.    and accumulate them in a chain of struct command_line's
  1032.    which is then returned.  */
  1033.  
  1034. struct command_line *
  1035. read_command_lines ()
  1036. {
  1037.   struct command_line *first = 0;
  1038.   register struct command_line *next, *tail = 0;
  1039.   register char *p, *p1;
  1040.   struct cleanup *old_chain = 0;
  1041.  
  1042.   while (1)
  1043.     {
  1044.       dont_repeat ();
  1045.       p = command_line_input (0, instream == stdin);
  1046.       /* Remove leading and trailing blanks.  */
  1047.       while (*p == ' ' || *p == '\t') p++;
  1048.       p1 = p + strlen (p);
  1049.       while (p1 != p && (p1[-1] == ' ' || p1[-1] == '\t')) p1--;
  1050.  
  1051.       /* Is this "end"?  */
  1052.       if (p1 - p == 3 && !strncmp (p, "end", 3))
  1053.     break;
  1054.  
  1055.       /* No => add this line to the chain of command lines.  */
  1056.       next = (struct command_line *) xmalloc (sizeof (struct command_line));
  1057.       next->line = savestring (p, p1 - p);
  1058.       next->next = 0;
  1059.       if (tail)
  1060.     {
  1061.       tail->next = next;
  1062.     }
  1063.       else
  1064.     {
  1065.       /* We just read the first line.
  1066.          From now on, arrange to throw away the lines we have
  1067.          if we quit or get an error while inside this function.  */
  1068.       first = next;
  1069.       old_chain = make_cleanup (free_command_lines, &first);
  1070.     }
  1071.       tail = next;
  1072.     }
  1073.  
  1074.   dont_repeat ();
  1075.  
  1076.   /* Now we are about to return the chain to our caller,
  1077.      so freeing it becomes his responsibility.  */
  1078.   if (first)
  1079.     discard_cleanups (old_chain);
  1080.   return first;
  1081. }
  1082.  
  1083. /* Free a chain of struct command_line's.  */
  1084.  
  1085. void
  1086. free_command_lines (lptr)
  1087.       struct command_line **lptr;
  1088. {
  1089.   register struct command_line *l = *lptr;
  1090.   register struct command_line *next;
  1091.  
  1092.   while (l)
  1093.     {
  1094.       next = l->next;
  1095.       free (l->line);
  1096.       free (l);
  1097.       l = next;
  1098.     }
  1099. }
  1100.  
  1101. /* Add an element to the list of info subcommands.  */
  1102.  
  1103. void
  1104. add_info (name, fun, doc)
  1105.      char *name;
  1106.      void (*fun) ();
  1107.      char *doc;
  1108. {
  1109.   add_cmd (name, no_class, fun, doc, &infolist);
  1110. }
  1111.  
  1112. /* Add an alias to the list of info subcommands.  */
  1113.  
  1114. void
  1115. add_info_alias (name, oldname, abbrev_flag)
  1116.      char *name;
  1117.      char *oldname;
  1118.      int abbrev_flag;
  1119. {
  1120.   add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
  1121. }
  1122.  
  1123. /* The "info" command is defined as a prefix, with allow_unknown = 0.
  1124.    Therefore, its own definition is called only for "info" with no args.  */
  1125.  
  1126. static void
  1127. info_command ()
  1128. {
  1129.   printf ("\"info\" must be followed by the name of an info command.\n");
  1130.   help_list (infolist, "info ", -1, stdout);
  1131. }
  1132.  
  1133. /* Add an element to the list of commands.  */
  1134.  
  1135. void
  1136. add_com (name, class, fun, doc)
  1137.      char *name;
  1138.      int class;
  1139.      void (*fun) ();
  1140.      char *doc;
  1141. {
  1142.   add_cmd (name, class, fun, doc, &cmdlist);
  1143. }
  1144.  
  1145. /* Add an alias or abbreviation command to the list of commands.  */
  1146.  
  1147. void
  1148. add_com_alias (name, oldname, class, abbrev_flag)
  1149.      char *name;
  1150.      char *oldname;
  1151.      int class;
  1152.      int abbrev_flag;
  1153. {
  1154.   add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
  1155. }
  1156.  
  1157. void
  1158. error_no_arg (why)
  1159.      char *why;
  1160. {
  1161.   error ("Argument required (%s).", why);
  1162. }
  1163.  
  1164. static void
  1165. help_command (command, from_tty)
  1166.      char *command;
  1167.      int from_tty; /* Ignored */
  1168. {
  1169.   help_cmd (command, stdout);
  1170. }
  1171.  
  1172. static void
  1173. validate_comname (comname)
  1174.      char *comname;
  1175. {
  1176.   register char *p;
  1177.  
  1178.   if (comname == 0)
  1179.     error_no_arg ("name of command to define");
  1180.  
  1181.   p = comname;
  1182.   while (*p)
  1183.     {
  1184.       if (!(*p >= 'A' && *p <= 'Z')
  1185.       && !(*p >= 'a' && *p <= 'z')
  1186.       && !(*p >= '0' && *p <= '9')
  1187.       && *p != '-')
  1188.     error ("Junk in argument list: \"%s\"", p);
  1189.       p++;
  1190.     }
  1191. }
  1192.  
  1193. static void
  1194. define_command (comname, from_tty)
  1195.      char *comname;
  1196.      int from_tty;
  1197. {
  1198.   register struct command_line *cmds;
  1199.   register struct cmd_list_element *c;
  1200.   char *tem = comname;
  1201.  
  1202.   validate_comname (comname);
  1203.  
  1204.   c = lookup_cmd (&tem, cmdlist, "", -1, 1);
  1205.   if (c)
  1206.     {
  1207.       if (c->class == (int) class_user || c->class == (int) class_alias)
  1208.     tem = "Redefine command \"%s\"? ";
  1209.       else
  1210.     tem = "Really redefine built-in command \"%s\"? ";
  1211.       if (!query (tem, comname))
  1212.     error ("Command \"%s\" not redefined.", comname);
  1213.     }
  1214.  
  1215.   if (from_tty)
  1216.     {
  1217.       printf ("Type commands for definition of \"%s\".\n\
  1218. End with a line saying just \"end\".\n", comname);
  1219.       fflush (stdout);
  1220.     }
  1221.   comname = savestring (comname, strlen (comname));
  1222.  
  1223.   cmds = read_command_lines ();
  1224.  
  1225.   if (c && c->class == (int) class_user)
  1226.     free_command_lines (&c->function);
  1227.  
  1228.   add_com (comname, class_user, cmds,
  1229.        (c && c->class == (int) class_user)
  1230.        ? c->doc : savestring ("User-defined.", 13));
  1231. }
  1232.  
  1233. static void
  1234. document_command (comname, from_tty)
  1235.      char *comname;
  1236.      int from_tty;
  1237. {
  1238.   struct command_line *doclines;
  1239.   register struct cmd_list_element *c;
  1240.   char *tem = comname;
  1241.  
  1242.   validate_comname (comname);
  1243.  
  1244.   c = lookup_cmd (&tem, cmdlist, "", 0, 1);
  1245.  
  1246.   if (c->class != (int) class_user)
  1247.     error ("Command \"%s\" is built-in.", comname);
  1248.  
  1249.   if (from_tty)
  1250.     printf ("Type documentation for \"%s\".\n\
  1251. End with a line saying just \"end\".\n", comname);
  1252.  
  1253.   doclines = read_command_lines ();
  1254.  
  1255.   if (c->doc) free (c->doc);
  1256.  
  1257.   {
  1258.     register struct command_line *cl1;
  1259.     register int len = 0;
  1260.  
  1261.     for (cl1 = doclines; cl1; cl1 = cl1->next)
  1262.       len += strlen (cl1->line) + 1;
  1263.  
  1264.     c->doc = (char *) xmalloc (len + 1);
  1265.     *c->doc = 0;
  1266.  
  1267.     for (cl1 = doclines; cl1; cl1 = cl1->next)
  1268.       {
  1269.     strcat (c->doc, cl1->line);
  1270.     if (cl1->next)
  1271.       strcat (c->doc, "\n");
  1272.       }
  1273.   }
  1274.  
  1275.   free_command_lines (&doclines);
  1276. }
  1277.  
  1278. static void
  1279. print_gdb_version ()
  1280. {
  1281.   printf ("GDB %s, Copyright (C) 1989 Free Software Foundation, Inc.\n\
  1282. There is ABSOLUTELY NO WARRANTY for GDB; type \"info warranty\" for details.\n\
  1283. GDB is free software and you are welcome to distribute copies of it\n\
  1284.  under certain conditions; type \"info copying\" to see the conditions.\n",
  1285.       version);
  1286. }
  1287.  
  1288. static void
  1289. version_info ()
  1290. {
  1291.   immediate_quit++;
  1292.   print_gdb_version ();
  1293.   immediate_quit--;
  1294. }
  1295.  
  1296. /* xgdb calls this to reprint the usual GDB prompt.  */
  1297.  
  1298. void
  1299. print_prompt ()
  1300. {
  1301.   printf ("%s", prompt);
  1302.   fflush (stdout);
  1303. }
  1304.  
  1305. /* Command to specify a prompt string instead of "(gdb) ".  */
  1306.  
  1307. static void
  1308. set_prompt_command (text)
  1309.      char *text;
  1310. {
  1311.   char *p, *q;
  1312.   register int c;
  1313.   char *new;
  1314.  
  1315.   if (text == 0)
  1316.     error_no_arg ("string to which to set prompt");
  1317.  
  1318.   new = (char *) xmalloc (strlen (text) + 2);
  1319.   p = text; q = new;
  1320.   while (c = *p++)
  1321.     {
  1322.       if (c == '\\')
  1323.     {
  1324.       /* \ at end of argument is used after spaces
  1325.          so they won't be lost.  */
  1326.       if (*p == 0)
  1327.         break;
  1328.       c = parse_escape (&p);
  1329.       if (c == 0)
  1330.         break; /* C loses */
  1331.       else if (c > 0)
  1332.         *q++ = c;
  1333.     }
  1334.       else
  1335.     *q++ = c;
  1336.     }
  1337.   if (*(p - 1) != '\\')
  1338.     *q++ = ' ';
  1339.   *q++ = '\0';
  1340.   new = (char *) xrealloc (new, q - new);
  1341.   free (prompt);
  1342.   prompt = new;
  1343. }
  1344.  
  1345. static void
  1346. quit_command ()
  1347. {
  1348.   if (have_inferior_p ())
  1349.     {
  1350.       if (query ("The program is running.  Quit anyway? "))
  1351.     {
  1352.       extern void exec_file_command ();
  1353.       /* Prevent any warning message from reopen_exec_file, in case
  1354.          we have a core file that's inconsistent with the exec file.  */
  1355.       exec_file_command (0, 0);
  1356.       kill_inferior ();
  1357.     }
  1358.       else
  1359.     error ("Not confirmed.");
  1360.     }
  1361.   /* Save the history information if it is appropriate to do so.  */
  1362.   if (write_history_p && history_filename)
  1363.     write_history (history_filename);
  1364.   exit (0);
  1365. }
  1366.  
  1367. int
  1368. input_from_terminal_p ()
  1369. {
  1370.   return instream == stdin;
  1371. }
  1372.  
  1373. static void
  1374. pwd_command (arg, from_tty)
  1375.      char *arg;
  1376.      int from_tty;
  1377. {
  1378.   if (arg) error ("The \"pwd\" command does not take an argument: %s", arg);
  1379.   getwd (dirbuf);
  1380.  
  1381.   if (strcmp (dirbuf, current_directory))
  1382.     printf ("Working directory %s\n (canonically %s).\n",
  1383.         current_directory, dirbuf);
  1384.   else
  1385.     printf ("Working directory %s.\n", current_directory);
  1386. }
  1387.  
  1388. static void
  1389. cd_command (dir, from_tty)
  1390.      char *dir;
  1391.      int from_tty;
  1392. {
  1393.   int len;
  1394.   int change;
  1395.   char *new_directory;
  1396.  
  1397.   if (dir == 0)
  1398.     error_no_arg ("new working directory");
  1399.  
  1400.   dir = tilde_expand (dir);
  1401.   make_cleanup (free, dir);
  1402.  
  1403.   len = strlen (dir);
  1404.   dir = savestring (dir, len - (len > 1 && dir[len-1] == '/'));
  1405.   if (dir[0] == '/')
  1406.     new_directory = dir;
  1407.   else
  1408.     {
  1409.       new_directory = concat (current_directory, "/", dir);
  1410.       free (dir);
  1411.     }
  1412.  
  1413.   /* Now simplify any occurrences of `.' and `..' in the pathname.  */
  1414.  
  1415.   change = 1;
  1416.   while (change)
  1417.     {
  1418.       char *p;
  1419.       change = 0;
  1420.  
  1421.       for (p = new_directory; *p;)
  1422.     {
  1423.       if (!strncmp (p, "/./", 2)
  1424.           && (p[2] == 0 || p[2] == '/'))
  1425.         strcpy (p, p + 2);
  1426.       else if (!strncmp (p, "/..", 3)
  1427.            && (p[3] == 0 || p[3] == '/')
  1428.            && p != new_directory)
  1429.         {
  1430.           char *q = p;
  1431.           while (q != new_directory && q[-1] != '/') q--;
  1432.           if (q != new_directory)
  1433.         {
  1434.           strcpy (q-1, p+3);
  1435.           p = q-1;
  1436.         }
  1437.         }
  1438.       else p++;
  1439.     }
  1440.     }
  1441.  
  1442.   if (chdir (dir) < 0)
  1443.     {
  1444.       free (new_directory);
  1445.       perror_with_name (dir);
  1446.     }
  1447.  
  1448.   free (current_directory);
  1449.   current_directory = new_directory;
  1450.  
  1451.   if (from_tty)
  1452.     pwd_command ((char *) 0, 1);
  1453. }
  1454.  
  1455. static void
  1456. source_command (arg, from_tty)
  1457.      char *arg;
  1458.      int from_tty;
  1459. {
  1460.   FILE *stream;
  1461.   struct cleanup *cleanups;
  1462.   char *file = arg;
  1463.  
  1464.   if (file == 0)
  1465.     /* Let source without arguments read .gdbinit.  */
  1466.     file = ".gdbinit";
  1467.  
  1468.   file = tilde_expand (file);
  1469.   make_cleanup (free, file);
  1470.  
  1471.   stream = fopen (file, "r");
  1472.   if (stream == 0)
  1473.     perror_with_name (file);
  1474.  
  1475.   cleanups = make_cleanup (source_cleanup, instream);
  1476.  
  1477.   instream = stream;
  1478.  
  1479.   command_loop ();
  1480.  
  1481.   do_cleanups (cleanups);
  1482. }
  1483.  
  1484. static void
  1485. echo_command (text)
  1486.      char *text;
  1487. {
  1488.   char *p = text;
  1489.   register int c;
  1490.  
  1491.   if (text)
  1492.     while (c = *p++)
  1493.       {
  1494.     if (c == '\\')
  1495.       {
  1496.         /* \ at end of argument is used after spaces
  1497.            so they won't be lost.  */
  1498.         if (*p == 0)
  1499.           return;
  1500.  
  1501.         c = parse_escape (&p);
  1502.         if (c >= 0)
  1503.           fputc (c, stdout);
  1504.       }
  1505.     else
  1506.       fputc (c, stdout);
  1507.       }
  1508. }
  1509.  
  1510. static void
  1511. dump_me_command ()
  1512. {
  1513.   if (query ("Should GDB dump core? "))
  1514.     {
  1515.       signal (SIGQUIT, SIG_DFL);
  1516.       kill (getpid (), SIGQUIT);
  1517.     }
  1518. }
  1519.  
  1520. int
  1521. parse_binary_operation (caller, arg)
  1522.      char *caller, *arg;
  1523. {
  1524.   int length;
  1525.  
  1526.   if (!arg || !*arg)
  1527.     return 1;
  1528.  
  1529.   length = strlen (arg);
  1530.  
  1531.   while (arg[length - 1] == ' ' || arg[length - 1] == '\t')
  1532.     length--;
  1533.  
  1534.   if (!strncmp (arg, "on", length)
  1535.       || !strncmp (arg, "1", length)
  1536.       || !strncmp (arg, "yes", length))
  1537.     return 1;
  1538.   else
  1539.     if (!strncmp (arg, "off", length)
  1540.     || !strncmp (arg, "0", length)
  1541.     || !strncmp (arg, "no", length))
  1542.       return 0;
  1543.     else
  1544.       error ("\"%s\" not given a binary valued argument.", caller);
  1545. }
  1546.  
  1547. /* Functions to manipulate command line editing control variables.  */
  1548.  
  1549. static void
  1550. set_editing (arg, from_tty)
  1551.      char *arg;
  1552.      int from_tty;
  1553. {
  1554.   command_editing_p = parse_binary_operation ("set command-editing", arg);
  1555. }
  1556.  
  1557. /* Number of commands to print in each call to editing_info.  */
  1558. #define Hist_print 10
  1559. static void
  1560. editing_info (arg, from_tty)
  1561.      char *arg;
  1562.      int from_tty;
  1563. {
  1564.   /* Index for history commands.  Relative to history_base.  */
  1565.   int offset;
  1566.  
  1567.   /* Number of the history entry which we are planning to display next.
  1568.      Relative to history_base.  */
  1569.   static int num = 0;
  1570.  
  1571.   /* The first command in the history which doesn't exist (i.e. one more
  1572.      than the number of the last command).  Relative to history_base.  */
  1573.   int hist_len;
  1574.  
  1575.   struct _hist_entry {
  1576.     char *line;
  1577.     char *data;
  1578.   } *history_get();
  1579.   extern int history_base;
  1580.  
  1581.   printf_filtered ("Interactive command editing is %s.\n",
  1582.       command_editing_p ? "on" : "off");
  1583.  
  1584.   printf_filtered ("History expansion of command input is %s.\n",
  1585.       history_expansion_p ? "on" : "off");
  1586.   printf_filtered ("Writing of a history record upon exit is %s.\n",
  1587.       write_history_p ? "enabled" : "disabled");
  1588.   printf_filtered ("The size of the history list (number of stored commands) is %d.\n",
  1589.       history_size);
  1590.   printf_filtered ("The name of the history record is \"%s\".\n\n",
  1591.       history_filename ? history_filename : "");
  1592.  
  1593.   /* Print out some of the commands from the command history.  */
  1594.   /* First determine the length of the history list.  */
  1595.   hist_len = history_size;
  1596.   for (offset = 0; offset < history_size; offset++)
  1597.     {
  1598.       if (!history_get (history_base + offset))
  1599.     {
  1600.       hist_len = offset;
  1601.       break;
  1602.     }
  1603.     }
  1604.  
  1605.   if (arg)
  1606.     {
  1607.       if (arg[0] == '+' && arg[1] == '\0')
  1608.     /* "info editing +" should print from the stored position.  */
  1609.     ;
  1610.       else
  1611.     /* "info editing <exp>" should print around command number <exp>.  */
  1612.     num = (parse_and_eval_address (arg) - history_base) - Hist_print / 2;
  1613.     }
  1614.   /* "info editing" means print the last Hist_print commands.  */
  1615.   else
  1616.     {
  1617.       num = hist_len - Hist_print;
  1618.     }
  1619.  
  1620.   if (num < 0)
  1621.     num = 0;
  1622.  
  1623.   /* If there are at least Hist_print commands, we want to display the last
  1624.      Hist_print rather than, say, the last 6.  */
  1625.   if (hist_len - num < Hist_print)
  1626.     {
  1627.       num = hist_len - Hist_print;
  1628.       if (num < 0)
  1629.     num = 0;
  1630.     }
  1631.  
  1632.   if (num == hist_len - Hist_print)
  1633.     printf_filtered ("The list of the last %d commands is:\n\n", Hist_print);
  1634.   else
  1635.     printf_filtered ("Some of the stored commands are:\n\n");
  1636.  
  1637.   for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
  1638.     {
  1639.       printf_filtered ("%5d  %s\n", history_base + offset,
  1640.           (history_get (history_base + offset))->line);
  1641.     }
  1642.  
  1643.   /* The next command we want to display is the next one that we haven't
  1644.      displayed yet.  */
  1645.   num += Hist_print;
  1646.   
  1647.   /* If the user repeats this command with return, it should do what
  1648.      "info editing +" does.  This is unnecessary if arg is null,
  1649.      because "info editing +" is not useful after "info editing".  */
  1650.   if (from_tty && arg)
  1651.     {
  1652.       arg[0] = '+';
  1653.       arg[1] = '\0';
  1654.     }
  1655. }
  1656.  
  1657. static void
  1658. set_history_expansion (arg, from_tty)
  1659.      char *arg;
  1660.      int from_tty;
  1661. {
  1662.   history_expansion_p = parse_binary_operation ("set history expansion", arg);
  1663. }
  1664.  
  1665. static void
  1666. set_history_write (arg, from_tty)
  1667.      char *arg;
  1668.      int from_tty;
  1669. {
  1670.   write_history_p = parse_binary_operation ("set history write", arg);
  1671. }
  1672.  
  1673. static void
  1674. set_history (arg, from_tty)
  1675.      char *arg;
  1676.      int from_tty;
  1677. {
  1678.   printf ("\"set history\" must be followed by the name of a history subcommand.\n");
  1679.   help_list (sethistlist, "set history ", -1, stdout);
  1680. }
  1681.  
  1682. static void
  1683. set_history_size (arg, from_tty)
  1684.      char *arg;
  1685.      int from_tty;
  1686. {
  1687.   if (!*arg)
  1688.     error_no_arg ("set history size");
  1689.  
  1690.   history_size = atoi (arg);
  1691. }
  1692.  
  1693. static void
  1694. set_history_filename (arg, from_tty)
  1695.      char *arg;
  1696.      int from_tty;
  1697. {
  1698.   int i;
  1699.  
  1700.   if (!arg)
  1701.     error_no_arg ("history file name");
  1702.   
  1703.   arg = tilde_expand (arg);
  1704.   make_cleanup (free, arg);
  1705.  
  1706.   i = strlen (arg) - 1;
  1707.   
  1708.   free (history_filename);
  1709.   
  1710.   while (i > 0 && (arg[i] == ' ' || arg[i] == '\t'))
  1711.     i--;
  1712.  
  1713.   if (!*arg)
  1714.     history_filename = (char *) 0;
  1715.   else
  1716.     history_filename = savestring (arg, i + 1);
  1717.   history_filename[i] = '\0';
  1718. }
  1719.  
  1720. int info_verbose;
  1721.  
  1722. static void
  1723. set_verbose_command (arg, from_tty)
  1724.      char *arg;
  1725.      int from_tty;
  1726. {
  1727.   info_verbose = parse_binary_operation ("set verbose", arg);
  1728. }
  1729.  
  1730. static void
  1731. verbose_info (arg, from_tty)
  1732.      char *arg;
  1733.      int from_tty;
  1734. {
  1735.   if (arg)
  1736.     error ("\"info verbose\" does not take any arguments.\n");
  1737.   
  1738.   printf ("Verbose printing of information is %s.\n",
  1739.       info_verbose ? "on" : "off");
  1740. }
  1741.  
  1742. static void
  1743. float_handler ()
  1744. {
  1745.   error ("Invalid floating value encountered or computed.");
  1746. }
  1747.  
  1748.  
  1749. static void
  1750. initialize_cmd_lists ()
  1751. {
  1752.   cmdlist = (struct cmd_list_element *) 0;
  1753.   infolist = (struct cmd_list_element *) 0;
  1754.   enablelist = (struct cmd_list_element *) 0;
  1755.   disablelist = (struct cmd_list_element *) 0;
  1756.   deletelist = (struct cmd_list_element *) 0;
  1757.   enablebreaklist = (struct cmd_list_element *) 0;
  1758.   setlist = (struct cmd_list_element *) 0;
  1759.   sethistlist = (struct cmd_list_element *) 0;
  1760.   unsethistlist = (struct cmd_list_element *) 0;
  1761. }
  1762.  
  1763. static void
  1764. initialize_main ()
  1765. {
  1766.   char *tmpenv;
  1767.   /* Command line editing externals.  */
  1768.   extern int (*rl_completion_entry_function)();
  1769.   extern char *rl_completer_word_break_characters;
  1770.   
  1771.   /* Set default verbose mode on.  */
  1772.   info_verbose = 1;
  1773.  
  1774.   prompt = savestring ("(gdb) ", 6);
  1775.  
  1776.   /* Set the important stuff up for command editing.  */
  1777.   command_editing_p = 1;
  1778.   history_expansion_p = 0;
  1779.   write_history_p = 0;
  1780.   
  1781.   if (tmpenv = getenv ("HISTSIZE"))
  1782.     history_size = atoi (tmpenv);
  1783.   else
  1784.     history_size = 256;
  1785.  
  1786.   stifle_history (history_size);
  1787.  
  1788.   if (tmpenv = getenv ("GDBHISTFILE"))
  1789.     history_filename = savestring (tmpenv, strlen(tmpenv));
  1790.   else
  1791.     /* We include the current directory so that if the user changes
  1792.        directories the file written will be the same as the one
  1793.        that was read.  */
  1794.     history_filename = concat (current_directory, "/.gdb_history", "");
  1795.  
  1796.   read_history (history_filename);
  1797.  
  1798.   /* Setup important stuff for command line editing.  */
  1799.   rl_completion_entry_function = (int (*)()) symbol_completion_function;
  1800.   rl_completer_word_break_characters = gdb_completer_word_break_characters;
  1801.  
  1802.   /* Define the classes of commands.
  1803.      They will appear in the help list in the reverse of this order.  */
  1804.  
  1805.   add_cmd ("obscure", class_obscure, 0, "Obscure features.", &cmdlist);
  1806.   add_cmd ("alias", class_alias, 0, "Aliases of other commands.", &cmdlist);
  1807.   add_cmd ("user", class_user, 0, "User-defined commands.\n\
  1808. The commands in this class are those defined by the user.\n\
  1809. Use the \"define\" command to define a command.", &cmdlist);
  1810.   add_cmd ("support", class_support, 0, "Support facilities.", &cmdlist);
  1811.   add_cmd ("status", class_info, 0, "Status inquiries.", &cmdlist);
  1812.   add_cmd ("files", class_files, 0, "Specifying and examining files.", &cmdlist);
  1813.   add_cmd ("breakpoints", class_breakpoint, 0, "Making program stop at certain points.", &cmdlist);
  1814.   add_cmd ("data", class_vars, 0, "Examining data.", &cmdlist);
  1815.   add_cmd ("stack", class_stack, 0, "Examining the stack.\n\
  1816. The stack is made up of stack frames.  Gdb assigns numbers to stack frames\n\
  1817. counting from zero for the innermost (currently executing) frame.\n\n\
  1818. At any time gdb identifies one frame as the \"selected\" frame.\n\
  1819. Variable lookups are done with respect to the selected frame.\n\
  1820. When the program being debugged stops, gdb selects the innermost frame.\n\
  1821. The commands below can be used to select other frames by number or address.",
  1822.        &cmdlist);
  1823.   add_cmd ("running", class_run, 0, "Running the program.", &cmdlist);
  1824.  
  1825.   add_com ("pwd", class_files, pwd_command,
  1826.        "Print working directory.  This is used for your program as well.");
  1827.   add_com ("cd", class_files, cd_command,
  1828.        "Set working directory to DIR for debugger and program being debugged.\n\
  1829. The change does not take effect for the program being debugged\n\
  1830. until the next time it is started.");
  1831.  
  1832.   add_cmd ("prompt", class_support, set_prompt_command,
  1833.        "Change gdb's prompt from the default of \"(gdb)\"",
  1834.        &setlist);
  1835.   add_com ("echo", class_support, echo_command,
  1836.        "Print a constant string.  Give string as argument.\n\
  1837. C escape sequences may be used in the argument.\n\
  1838. No newline is added at the end of the argument;\n\
  1839. use \"\\n\" if you want a newline to be printed.\n\
  1840. Since leading and trailing whitespace are ignored in command arguments,\n\
  1841. if you want to print some you must use \"\\\" before leading whitespace\n\
  1842. to be printed or after trailing whitespace.");
  1843.   add_com ("document", class_support, document_command,
  1844.        "Document a user-defined command.\n\
  1845. Give command name as argument.  Give documentation on following lines.\n\
  1846. End with a line of just \"end\".");
  1847.   add_com ("define", class_support, define_command,
  1848.        "Define a new command name.  Command name is argument.\n\
  1849. Definition appears on following lines, one command per line.\n\
  1850. End with a line of just \"end\".\n\
  1851. Use the \"document\" command to give documentation for the new command.\n\
  1852. Commands defined in this way do not take arguments.");
  1853.  
  1854.   add_com ("source", class_support, source_command,
  1855.        "Read commands from a file named FILE.\n\
  1856. Note that the file \".gdbinit\" is read automatically in this way\n\
  1857. when gdb is started.");
  1858.   add_com ("quit", class_support, quit_command, "Exit gdb.");
  1859.   add_com ("help", class_support, help_command, "Print list of commands.");
  1860.   add_com_alias ("q", "quit", class_support, 1);
  1861.   add_com_alias ("h", "help", class_support, 1);
  1862.  
  1863.   add_cmd ("verbose", class_support, set_verbose_command,
  1864.        "Change the number of informational messages gdb prints.",
  1865.        &setlist);
  1866.   add_info ("verbose", verbose_info,
  1867.         "Status of gdb's verbose printing option.\n");
  1868.  
  1869.   add_com ("dump-me", class_obscure, dump_me_command,
  1870.        "Get fatal error; make debugger dump its core.");
  1871.  
  1872.   add_cmd ("editing", class_support, set_editing,
  1873.        "Enable or disable command line editing.\n\
  1874. Use \"on\" to enable to enable the editing, and \"off\" to disable it.\n\
  1875. Without an argument, command line editing is enabled.", &setlist);
  1876.  
  1877.   add_prefix_cmd ("history", class_support, set_history,
  1878.           "Generic command for setting command history parameters.",
  1879.           &sethistlist, "set history ", 0, &setlist);
  1880.  
  1881.   add_cmd ("expansion", no_class, set_history_expansion,
  1882.        "Enable or disable history expansion on command input.\n\
  1883. Without an argument, history expansion is enabled.", &sethistlist);
  1884.  
  1885.   add_cmd ("write", no_class, set_history_write,
  1886.        "Enable or disable saving of the history record on exit.\n\
  1887. Use \"on\" to enable to enable the saving, and \"off\" to disable it.\n\
  1888. Without an argument, saving is enabled.", &sethistlist);
  1889.  
  1890.   add_cmd ("size", no_class, set_history_size,
  1891.        "Set the size of the command history, \n\
  1892. ie. the number of previous commands to keep a record of.", &sethistlist);
  1893.  
  1894.   add_cmd ("filename", no_class, set_history_filename,
  1895.        "Set the filename in which to record the command history\n\
  1896.  (the list of previous commands of which a record is kept).", &sethistlist);
  1897.  
  1898.   add_prefix_cmd ("info", class_info, info_command,
  1899.           "Generic command for printing status.",
  1900.           &infolist, "info ", 0, &cmdlist);
  1901.   add_com_alias ("i", "info", class_info, 1);
  1902.  
  1903.   add_info ("editing", editing_info, "Status of command editor.");
  1904.  
  1905.   add_info ("version", version_info, "Report what version of GDB this is.");
  1906. }
  1907.