1 /* Top level stuff for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
23 #include "call-cmds.h"
28 #include "breakpoint.h"
30 #include "expression.h"
32 #include "terminal.h" /* For job_control. */
37 /* readline include files */
41 /* readline defines this. */
44 #include <sys/types.h>
46 /* What is this for? X_OK? */
54 #include <sys/param.h>
58 /* Prototypes for local functions */
61 symbol_completion_function PARAMS ((char *, int));
64 command_loop_marker PARAMS ((int));
67 init_main PARAMS ((void));
70 init_cmd_lists PARAMS ((void));
73 float_handler PARAMS ((int));
76 init_signals PARAMS ((void));
79 set_verbose PARAMS ((char *, int, struct cmd_list_element *));
82 show_history PARAMS ((char *, int));
85 set_history PARAMS ((char *, int));
88 set_history_size_command PARAMS ((char *, int, struct cmd_list_element *));
91 show_commands PARAMS ((char *, int));
94 echo_command PARAMS ((char *, int));
97 pwd_command PARAMS ((char *, int));
100 show_version PARAMS ((char *, int));
103 document_command PARAMS ((char *, int));
106 define_command PARAMS ((char *, int));
109 validate_comname PARAMS ((char *));
112 help_command PARAMS ((char *, int));
115 show_command PARAMS ((char *, int));
118 info_command PARAMS ((char *, int));
121 complete_command PARAMS ((char *, int));
124 do_nothing PARAMS ((int));
127 quit_cover PARAMS ((char *));
130 disconnect PARAMS ((int));
133 source_cleanup PARAMS ((FILE *));
135 /* If this definition isn't overridden by the header files, assume
136 that isatty and fileno exist on this system. */
138 #define ISATTY(FP) (isatty (fileno (FP)))
141 /* Initialization file name for gdb. This is overridden in some configs. */
143 #ifndef GDBINIT_FILENAME
144 #define GDBINIT_FILENAME ".gdbinit"
146 char gdbinit[] = GDBINIT_FILENAME;
147 int inhibit_gdbinit = 0;
149 /* Disable windows if non-zero */
153 /* Version number of GDB, as a string. */
155 extern char *version;
157 /* Canonical host name as a string. */
159 extern char *host_name;
161 /* Canonical target name as a string. */
163 extern char *target_name;
165 extern char lang_frame_mismatch_warn[]; /* language.c */
167 /* Flag for whether we want all the "from_tty" gubbish printed. */
169 int caution = 1; /* Default is yes, sigh. */
172 * Define all cmd_list_element's
175 /* Chain containing all defined commands. */
177 struct cmd_list_element *cmdlist;
179 /* Chain containing all defined info subcommands. */
181 struct cmd_list_element *infolist;
183 /* Chain containing all defined enable subcommands. */
185 struct cmd_list_element *enablelist;
187 /* Chain containing all defined disable subcommands. */
189 struct cmd_list_element *disablelist;
191 /* Chain containing all defined delete subcommands. */
193 struct cmd_list_element *deletelist;
195 /* Chain containing all defined "enable breakpoint" subcommands. */
197 struct cmd_list_element *enablebreaklist;
199 /* Chain containing all defined set subcommands */
201 struct cmd_list_element *setlist;
203 /* Chain containing all defined unset subcommands */
205 struct cmd_list_element *unsetlist;
207 /* Chain containing all defined show subcommands. */
209 struct cmd_list_element *showlist;
211 /* Chain containing all defined \"set history\". */
213 struct cmd_list_element *sethistlist;
215 /* Chain containing all defined \"show history\". */
217 struct cmd_list_element *showhistlist;
219 /* Chain containing all defined \"unset history\". */
221 struct cmd_list_element *unsethistlist;
223 /* Chain containing all defined maintenance subcommands. */
226 struct cmd_list_element *maintenancelist;
229 /* Chain containing all defined "maintenance info" subcommands. */
232 struct cmd_list_element *maintenanceinfolist;
235 /* Chain containing all defined "maintenance print" subcommands. */
238 struct cmd_list_element *maintenanceprintlist;
241 struct cmd_list_element *setprintlist;
243 struct cmd_list_element *showprintlist;
245 struct cmd_list_element *setchecklist;
247 struct cmd_list_element *showchecklist;
249 /* stdio stream that command input is being read from. Set to stdin normally.
250 Set by source_command to the file we are sourcing. Set to NULL if we are
251 executing a user-defined command. */
255 /* Current working directory. */
257 char *current_directory;
259 /* The directory name is actually stored here (usually). */
260 char gdb_dirbuf[1024];
262 /* Function to call before reading a command, if nonzero.
263 The function receives two args: an input stream,
264 and a prompt string. */
266 void (*window_hook) PARAMS ((FILE *, char *));
271 /* gdb prints this when reading a command interactively */
274 /* Buffer used for reading command lines, and the size
275 allocated for it so far. */
280 /* Nonzero if the current command is modified by "server ". This
281 affects things like recording into the command history, comamnds
282 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
283 whatever) can issue its own commands and also send along commands
284 from the user, and have the user not notice that the user interface
285 is issuing commands too. */
288 /* Baud rate specified for talking to serial target systems. Default
289 is left as -1, so targets can choose their own defaults. */
290 /* FIXME: This means that "show remotebaud" and gr_files_info can print -1
291 or (unsigned int)-1. This is a Bad User Interface. */
295 /* Non-zero tells remote* modules to output debugging info. */
297 int remote_debug = 0;
299 /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
303 #define STOP_SIGNAL SIGTSTP
304 static void stop_sig PARAMS ((int));
308 /* Some System V have job control but not sigsetmask(). */
309 #if !defined (HAVE_SIGSETMASK)
311 #define HAVE_SIGSETMASK 1
313 #define HAVE_SIGSETMASK 0
317 #if 0 == (HAVE_SIGSETMASK)
318 #define sigsetmask(n)
321 /* Where to go for return_to_top_level (RETURN_ERROR). */
322 jmp_buf error_return;
323 /* Where to go for return_to_top_level (RETURN_QUIT). */
326 /* Return for reason REASON. This generally gets back to the command
327 loop, but can be caught via catch_errors. */
330 return_to_top_level (reason)
331 enum return_reason reason;
336 /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
337 I can think of a reason why that is vital, though). */
338 bpstat_clear_actions(stop_bpstat); /* Clear queued breakpoint commands */
340 disable_current_display ();
341 do_cleanups (ALL_CLEANUPS);
343 if (annotation_level > 1)
354 (NORETURN void) longjmp
355 (reason == RETURN_ERROR ? error_return : quit_return, 1);
358 /* Call FUNC with arg ARGS, catching any errors. If there is no
359 error, return the value returned by FUNC. If there is an error,
360 print ERRSTRING, print the specific error message, then return
363 Must not be called with immediate_quit in effect (bad things might
364 happen, say we got a signal in the middle of a memcpy to quit_return).
365 This is an OK restriction; with very few exceptions immediate_quit can
366 be replaced by judicious use of QUIT.
368 MASK specifies what to catch; it is normally set to
369 RETURN_MASK_ALL, if for no other reason than that the code which
370 calls catch_errors might not be set up to deal with a quit which
371 isn't caught. But if the code can deal with it, it generally
372 should be RETURN_MASK_ERROR, unless for some reason it is more
373 useful to abort only the portion of the operation inside the
374 catch_errors. Note that quit should return to the command line
375 fairly quickly, even if some further processing is being done. */
378 catch_errors (func, args, errstring, mask)
379 int (*func) PARAMS ((char *));
388 struct cleanup *saved_cleanup_chain;
389 char *saved_error_pre_print;
391 saved_cleanup_chain = save_cleanups ();
392 saved_error_pre_print = error_pre_print;
394 if (mask & RETURN_MASK_ERROR)
395 memcpy ((char *)saved_error, (char *)error_return, sizeof (jmp_buf));
396 if (mask & RETURN_MASK_QUIT)
397 memcpy (saved_quit, quit_return, sizeof (jmp_buf));
398 error_pre_print = errstring;
400 if (setjmp (tmp_jmp) == 0)
402 if (mask & RETURN_MASK_ERROR)
403 memcpy (error_return, tmp_jmp, sizeof (jmp_buf));
404 if (mask & RETURN_MASK_QUIT)
405 memcpy (quit_return, tmp_jmp, sizeof (jmp_buf));
406 val = (*func) (args);
411 restore_cleanups (saved_cleanup_chain);
413 error_pre_print = saved_error_pre_print;
414 if (mask & RETURN_MASK_ERROR)
415 memcpy (error_return, saved_error, sizeof (jmp_buf));
416 if (mask & RETURN_MASK_QUIT)
417 memcpy (quit_return, saved_quit, sizeof (jmp_buf));
421 /* Handler for SIGHUP. */
427 catch_errors (quit_cover, NULL,
428 "Could not kill the program being debugged", RETURN_MASK_ALL);
429 signal (SIGHUP, SIG_DFL);
430 kill (getpid (), SIGHUP);
433 /* Just a little helper function for disconnect(). */
439 caution = 0; /* Throw caution to the wind -- we're exiting.
440 This prevents asking the user dumb questions. */
441 quit_command((char *)0, 0);
445 /* Line number we are currently in in a file which is being sourced. */
446 static int source_line_number;
448 /* Name of the file we are sourcing. */
449 static char *source_file_name;
451 /* Buffer containing the error_pre_print used by the source stuff.
453 static char *source_error;
454 static int source_error_allocated;
456 /* Something to glom on to the start of error_pre_print if source_file_name
458 static char *source_pre_error;
460 /* Clean up on error during a "source" command (or execution of a
461 user-defined command). */
464 source_cleanup (stream)
467 /* Restore the previous input stream. */
471 /* Read commands from STREAM. */
473 read_command_file (stream)
476 struct cleanup *cleanups;
478 cleanups = make_cleanup (source_cleanup, instream);
481 do_cleanups (cleanups);
484 extern void init_proc ();
489 /* Run the init function of each source file */
491 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
492 current_directory = gdb_dirbuf;
494 init_cmd_lists (); /* This needs to be done first */
495 initialize_targets (); /* Setup target_terminal macros for utils.c */
496 initialize_utils (); /* Make errors and warnings possible */
497 initialize_all_files ();
498 init_main (); /* But that omits this file! Do it now */
503 /* We need a default language for parsing expressions, so simple things like
504 "set width 0" won't fail if no language is explicitly set in a config file
505 or implicitly set by reading an executable during startup. */
506 set_language (language_c);
507 expected_language = current_language; /* don't warn about the change. */
514 execute_user_command (c, args)
515 struct cmd_list_element *c;
518 register struct command_line *cmdlines;
519 struct cleanup *old_chain;
522 error ("User-defined commands cannot take arguments.");
524 cmdlines = c->user_commands;
529 /* Set the instream to 0, indicating execution of a
530 user-defined function. */
531 old_chain = make_cleanup (source_cleanup, instream);
532 instream = (FILE *) 0;
535 execute_command (cmdlines->line, 0);
536 cmdlines = cmdlines->next;
538 do_cleanups (old_chain);
541 /* Execute the line P as a command.
542 Pass FROM_TTY as second argument to the defining function. */
545 execute_command (p, from_tty)
549 register struct cmd_list_element *c;
550 register enum language flang;
551 static int warned = 0;
555 /* This can happen when command_line_input hits end of file. */
559 while (*p == ' ' || *p == '\t') p++;
564 c = lookup_cmd (&p, cmdlist, "", 0, 1);
565 /* Pass null arg rather than an empty one. */
568 /* If this command has been hooked, run the hook first. */
570 execute_user_command (c->hook, (char *)0);
572 if (c->class == class_user)
573 execute_user_command (c, arg);
574 else if (c->type == set_cmd || c->type == show_cmd)
575 do_setshow_command (arg, from_tty & caution, c);
576 else if (c->function.cfunc == NO_FUNCTION)
577 error ("That is not a command, just a help topic.");
579 (*c->function.cfunc) (arg, from_tty & caution);
582 /* Tell the user if the language has changed (except first time). */
583 if (current_language != expected_language)
585 if (language_mode == language_mode_auto) {
586 language_info (1); /* Print what changed. */
591 /* Warn the user if the working language does not match the
592 language of the current frame. Only warn the user if we are
593 actually running the program, i.e. there is a stack. */
594 /* FIXME: This should be cacheing the frame and only running when
595 the frame changes. */
596 if (target_has_stack)
598 flang = get_frame_language ();
600 && flang != language_unknown
601 && flang != current_language->la_language)
603 printf_filtered ("%s\n", lang_frame_mismatch_warn);
611 command_loop_marker (foo)
616 /* Read commands from `instream' and execute them
617 until end of file or error reading instream. */
621 struct cleanup *old_chain;
623 int stdin_is_tty = ISATTY (stdin);
625 while (!feof (instream))
627 if (window_hook && instream == stdin)
628 (*window_hook) (instream, prompt);
631 if (instream == stdin && stdin_is_tty)
632 reinitialize_more_filter ();
633 old_chain = make_cleanup (command_loop_marker, 0);
634 command = command_line_input (instream == stdin ? prompt : (char *) NULL,
635 instream == stdin, "prompt");
638 execute_command (command, instream == stdin);
639 /* Do any commands attached to breakpoint we stopped at. */
640 bpstat_do_actions (&stop_bpstat);
641 do_cleanups (old_chain);
645 /* Commands call this if they do not want to be repeated by null lines. */
653 /* If we aren't reading from standard input, we are saving the last
654 thing read from stdin in line and don't want to delete it. Null lines
655 won't repeat here in any case. */
656 if (instream == stdin)
660 /* Read a line from the stream "instream" without command line editing.
662 It prints PRROMPT once at the start.
663 Action is compatible with "readline", e.g. space for the result is
664 malloc'd and should be freed by the caller.
666 A NULL return means end of file. */
668 gdb_readline (prrompt)
674 int result_size = 80;
678 /* Don't use a _filtered function here. It causes the assumed
679 character position to be off, since the newline we read from
680 the user is not accounted for. */
681 fputs_unfiltered (prrompt, gdb_stdout);
682 /* start-sanitize-mpw */
684 /* Move to a new line so the entered line doesn't have a prompt
685 on the front of it. */
686 fputs_unfiltered ("\n", gdb_stdout);
688 /* end-sanitize-mpw */
689 gdb_flush (gdb_stdout);
692 result = (char *) xmalloc (result_size);
696 /* Read from stdin if we are executing a user defined command.
697 This is the right thing for prompt_for_continue, at least. */
698 c = fgetc (instream ? instream : stdin);
703 /* The last line does not end with a newline. Return it, and
704 if we are called again fgetc will still return EOF and
705 we'll return NULL then. */
714 result[input_index++] = c;
715 while (input_index >= result_size)
718 result = (char *) xrealloc (result, result_size);
722 result[input_index++] = '\0';
726 /* Variables which control command line editing and history
727 substitution. These variables are given default values at the end
729 static int command_editing_p;
730 static int history_expansion_p;
731 static int write_history_p;
732 static int history_size;
733 static char *history_filename;
735 /* readline uses the word breaks for two things:
736 (1) In figuring out where to point the TEXT parameter to the
737 rl_completion_entry_function. Since we don't use TEXT for much,
738 it doesn't matter a lot what the word breaks are for this purpose, but
739 it does affect how much stuff M-? lists.
740 (2) If one of the matches contains a word break character, readline
741 will quote it. That's why we switch between
742 gdb_completer_word_break_characters and
743 gdb_completer_command_word_break_characters. I'm not sure when
744 we need this behavior (perhaps for funky characters in C++ symbols?). */
746 /* Variables which are necessary for fancy command line editing. */
747 char *gdb_completer_word_break_characters =
748 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
750 /* When completing on command names, we remove '-' from the list of
751 word break characters, since we use it in command names. If the
752 readline library sees one in any of the current completion strings,
753 it thinks that the string needs to be quoted and automatically supplies
755 char *gdb_completer_command_word_break_characters =
756 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,";
758 /* Characters that can be used to quote completion strings. Note that we
759 can't include '"' because the gdb C parser treats such quoted sequences
761 char *gdb_completer_quote_characters =
764 /* Functions that are used as part of the fancy command line editing. */
766 /* This can be used for functions which don't want to complete on symbols
767 but don't want to complete on anything else either. */
770 noop_completer (text, prefix)
777 /* Complete on filenames. */
779 filename_completer (text, word)
784 extern char *filename_completion_function ();
788 int return_val_alloced;
791 /* Small for testing. */
792 return_val_alloced = 1;
793 return_val = (char **) xmalloc (return_val_alloced * sizeof (char *));
799 p = filename_completion_function (text, subsequent_name);
800 if (return_val_used >= return_val_alloced)
802 return_val_alloced *= 2;
804 (char **) xrealloc (return_val,
805 return_val_alloced * sizeof (char *));
809 return_val[return_val_used++] = p;
812 /* Like emacs, don't complete on old versions. Especially useful
813 in the "source" command. */
814 if (p[strlen (p) - 1] == '~')
820 /* Return exactly p. */
821 return_val[return_val_used++] = p;
822 else if (word > text)
824 /* Return some portion of p. */
825 q = xmalloc (strlen (p) + 5);
826 strcpy (q, p + (word - text));
827 return_val[return_val_used++] = q;
832 /* Return some of TEXT plus p. */
833 q = xmalloc (strlen (p) + (text - word) + 5);
834 strncpy (q, word, text - word);
835 q[text - word] = '\0';
837 return_val[return_val_used++] = q;
844 /* There is no way to do this just long enough to affect quote inserting
845 without also affecting the next completion. This should be fixed in
847 /* Insure that readline does the right thing
848 with respect to inserting quotes. */
849 rl_completer_word_break_characters = "";
854 /* Here are some useful test cases for completion. FIXME: These should
855 be put in the test suite. They should be tested with both M-? and TAB.
857 "show output-" "radix"
858 "show output" "-radix"
859 "p" ambiguous (commands starting with p--path, print, printf, etc.)
860 "p " ambiguous (all symbols)
861 "info t foo" no completions
862 "info t " no completions
863 "info t" ambiguous ("info target", "info terminal", etc.)
864 "info ajksdlfk" no completions
865 "info ajksdlfk " no completions
867 "info " ambiguous (all info commands)
868 "p \"a" no completions (string constant)
869 "p 'a" ambiguous (all symbols starting with a)
870 "p b-a" ambiguous (all symbols starting with a)
871 "p b-" ambiguous (all symbols)
872 "file Make" "file" (word break hard to screw up here)
873 "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
876 /* Generate completions one by one for the completer. Each time we are
877 called return another potential completion to the caller. The function
878 is misnamed; it just completes on commands or passes the buck to the
879 command's completer function; the stuff specific to symbol completion
880 is in make_symbol_completion_list.
882 TEXT is readline's idea of the "word" we are looking at; we don't really
883 like readline's ideas about word breaking so we ignore it.
885 MATCHES is the number of matches that have currently been collected from
886 calling this completion function. When zero, then we need to initialize,
887 otherwise the initialization has already taken place and we can just
888 return the next potential completion string.
890 Returns NULL if there are no more completions, else a pointer to a string
891 which is a possible completion.
893 RL_LINE_BUFFER is available to be looked at; it contains the entire text
894 of the line. RL_POINT is the offset in that line of the cursor. You
895 should pretend that the line ends at RL_POINT. */
898 symbol_completion_function (text, matches)
902 static char **list = (char **)NULL; /* Cache of completions */
903 static int index; /* Next cached completion */
905 char *tmp_command, *p;
906 /* Pointer within tmp_command which corresponds to text. */
908 struct cmd_list_element *c, *result_list;
912 /* The caller is beginning to accumulate a new set of completions, so
913 we need to find all of them now, and cache them for returning one at
914 a time on future calls. */
918 /* Free the storage used by LIST, but not by the strings inside.
919 This is because rl_complete_internal () frees the strings. */
925 /* Choose the default set of word break characters to break completions.
926 If we later find out that we are doing completions on command strings
927 (as opposed to strings supplied by the individual command completer
928 functions, which can be any string) then we will switch to the
929 special word break set for command strings, which leaves out the
930 '-' character used in some commands. */
932 rl_completer_word_break_characters =
933 gdb_completer_word_break_characters;
935 /* Decide whether to complete on a list of gdb commands or on symbols. */
936 tmp_command = (char *) alloca (rl_point + 1);
939 strncpy (tmp_command, rl_line_buffer, rl_point);
940 tmp_command[rl_point] = '\0';
941 /* Since text always contains some number of characters leading up
942 to rl_point, we can find the equivalent position in tmp_command
943 by subtracting that many characters from the end of tmp_command. */
944 word = tmp_command + rl_point - strlen (text);
948 /* An empty line we want to consider ambiguous; that is, it
949 could be any command. */
950 c = (struct cmd_list_element *) -1;
955 c = lookup_cmd_1 (&p, cmdlist, &result_list, 1);
958 /* Move p up to the next interesting thing. */
959 while (*p == ' ' || *p == '\t')
966 /* It is an unrecognized command. So there are no
967 possible completions. */
970 else if (c == (struct cmd_list_element *) -1)
974 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
975 doesn't advance over that thing itself. Do so now. */
977 while (*q && (isalnum (*q) || *q == '-' || *q == '_'))
979 if (q != tmp_command + rl_point)
981 /* There is something beyond the ambiguous
982 command, so there are no possible completions. For
983 example, "info t " or "info t foo" does not complete
984 to anything, because "info t" can be "info target" or
990 /* We're trying to complete on the command which was ambiguous.
991 This we can deal with. */
994 list = complete_on_cmdlist (*result_list->prefixlist, p,
999 list = complete_on_cmdlist (cmdlist, p, word);
1001 /* Insure that readline does the right thing with respect to
1002 inserting quotes. */
1003 rl_completer_word_break_characters =
1004 gdb_completer_command_word_break_characters;
1009 /* We've recognized a full command. */
1011 if (p == tmp_command + rl_point)
1013 /* There is no non-whitespace in the line beyond the command. */
1015 if (p[-1] == ' ' || p[-1] == '\t')
1017 /* The command is followed by whitespace; we need to complete
1018 on whatever comes after command. */
1021 /* It is a prefix command; what comes after it is
1022 a subcommand (e.g. "info "). */
1023 list = complete_on_cmdlist (*c->prefixlist, p, word);
1025 /* Insure that readline does the right thing
1026 with respect to inserting quotes. */
1027 rl_completer_word_break_characters =
1028 gdb_completer_command_word_break_characters;
1032 /* It is a normal command; what comes after it is
1033 completed by the command's completer function. */
1034 list = (*c->completer) (p, word);
1039 /* The command is not followed by whitespace; we need to
1040 complete on the command itself. e.g. "p" which is a
1041 command itself but also can complete to "print", "ptype"
1045 /* Find the command we are completing on. */
1047 while (q > tmp_command)
1049 if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_')
1055 list = complete_on_cmdlist (result_list, q, word);
1057 /* Insure that readline does the right thing
1058 with respect to inserting quotes. */
1059 rl_completer_word_break_characters =
1060 gdb_completer_command_word_break_characters;
1065 /* There is non-whitespace beyond the command. */
1067 if (c->prefixlist && !c->allow_unknown)
1069 /* It is an unrecognized subcommand of a prefix command,
1070 e.g. "info adsfkdj". */
1075 /* It is a normal command. */
1076 list = (*c->completer) (p, word);
1082 /* If we found a list of potential completions during initialization then
1083 dole them out one at a time. The vector of completions is NULL
1084 terminated, so after returning the last one, return NULL (and continue
1085 to do so) each time we are called after that, until a new list is
1090 output = list[index];
1098 /* Can't do this because readline hasn't yet checked the word breaks
1099 for figuring out whether to insert a quote. */
1101 /* Make sure the word break characters are set back to normal for the
1102 next time that readline tries to complete something. */
1103 rl_completer_word_break_characters =
1104 gdb_completer_word_break_characters;
1110 /* Skip over a possibly quoted word (as defined by the quote characters
1111 and word break characters the completer uses). Returns pointer to the
1112 location after the "word". */
1118 char quote_char = '\0';
1121 for (scan = str; *scan != '\0'; scan++)
1123 if (quote_char != '\0')
1125 /* Ignore everything until the matching close quote char */
1126 if (*scan == quote_char)
1128 /* Found matching close quote. */
1133 else if (strchr (gdb_completer_quote_characters, *scan))
1135 /* Found start of a quoted string. */
1138 else if (strchr (gdb_completer_word_break_characters, *scan))
1152 #if STOP_SIGNAL == SIGTSTP
1153 signal (SIGTSTP, SIG_DFL);
1155 kill (getpid (), SIGTSTP);
1156 signal (SIGTSTP, stop_sig);
1158 signal (STOP_SIGNAL, stop_sig);
1160 printf_unfiltered ("%s", prompt);
1161 gdb_flush (gdb_stdout);
1163 /* Forget about any previous command -- null line now will do nothing. */
1166 #endif /* STOP_SIGNAL */
1168 /* Initialize signal handlers. */
1178 signal (SIGINT, request_quit);
1180 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
1181 passed to the inferior, which we don't want. It would be
1182 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
1183 on BSD4.3 systems using vfork, that can affect the
1184 GDB process as well as the inferior (the signal handling tables
1185 might be in memory, shared between the two). Since we establish
1186 a handler for SIGQUIT, when we call exec it will set the signal
1187 to SIG_DFL for us. */
1188 signal (SIGQUIT, do_nothing);
1189 if (signal (SIGHUP, do_nothing) != SIG_IGN)
1190 signal (SIGHUP, disconnect);
1191 signal (SIGFPE, float_handler);
1193 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1194 signal (SIGWINCH, SIGWINCH_HANDLER);
1198 /* Read one line from the command input stream `instream'
1199 into the local static buffer `linebuffer' (whose current length
1201 The buffer is made bigger as necessary.
1202 Returns the address of the start of the line.
1204 NULL is returned for end of file.
1206 *If* the instream == stdin & stdin is a terminal, the line read
1207 is copied into the file line saver (global var char *line,
1208 length linesize) so that it can be duplicated.
1210 This routine either uses fancy command line editing or
1211 simple input as the user has requested. */
1214 command_line_input (prrompt, repeat, annotation_suffix)
1217 char *annotation_suffix;
1219 static char *linebuffer = 0;
1220 static unsigned linelength = 0;
1224 char *local_prompt = prrompt;
1229 if (annotation_level > 1 && instream == stdin)
1231 local_prompt = alloca ((prrompt == NULL ? 0 : strlen (prrompt))
1232 + strlen (annotation_suffix) + 40);
1233 if (prrompt == NULL)
1234 local_prompt[0] = '\0';
1236 strcpy (local_prompt, prrompt);
1237 strcat (local_prompt, "\n\032\032");
1238 strcat (local_prompt, annotation_suffix);
1239 strcat (local_prompt, "\n");
1242 if (linebuffer == 0)
1245 linebuffer = (char *) xmalloc (linelength);
1250 /* Control-C quits instantly if typed while in this loop
1251 since it should not wait until the user types a newline. */
1255 signal (STOP_SIGNAL, stop_sig);
1260 /* Make sure that all output has been output. Some machines may let
1261 you get away with leaving out some of the gdb_flush, but not all. */
1263 gdb_flush (gdb_stdout);
1264 gdb_flush (gdb_stderr);
1266 if (source_file_name != NULL)
1268 ++source_line_number;
1269 sprintf (source_error,
1270 "%s%s:%d: Error in sourced command file:\n",
1273 source_line_number);
1274 error_pre_print = source_error;
1277 if (annotation_level > 1 && instream == stdin)
1279 printf_unfiltered ("\n\032\032pre-");
1280 printf_unfiltered (annotation_suffix);
1281 printf_unfiltered ("\n");
1284 /* Don't use fancy stuff if not talking to stdin. */
1285 if (command_editing_p && instream == stdin
1286 && ISATTY (instream))
1287 rl = readline (local_prompt);
1289 rl = gdb_readline (local_prompt);
1291 if (annotation_level > 1 && instream == stdin)
1293 printf_unfiltered ("\n\032\032post-");
1294 printf_unfiltered (annotation_suffix);
1295 printf_unfiltered ("\n");
1298 if (!rl || rl == (char *) EOF)
1303 if (strlen(rl) + 1 + (p - linebuffer) > linelength)
1305 linelength = strlen(rl) + 1 + (p - linebuffer);
1306 nline = (char *) xrealloc (linebuffer, linelength);
1307 p += nline - linebuffer;
1311 /* Copy line. Don't copy null at end. (Leaves line alone
1312 if this was just a newline) */
1316 free (rl); /* Allocated in readline. */
1318 if (p == linebuffer || *(p - 1) != '\\')
1321 p--; /* Put on top of '\'. */
1322 local_prompt = (char *) 0;
1327 signal (STOP_SIGNAL, SIG_DFL);
1334 #define SERVER_COMMAND_LENGTH 7
1336 (p - linebuffer > SERVER_COMMAND_LENGTH)
1337 && STREQN (linebuffer, "server ", SERVER_COMMAND_LENGTH);
1340 /* Note that we don't set `line'. Between this and the check in
1341 dont_repeat, this insures that repeating will still do the
1344 return linebuffer + SERVER_COMMAND_LENGTH;
1347 /* Do history expansion if that is wished. */
1348 if (history_expansion_p && instream == stdin
1349 && ISATTY (instream))
1351 char *history_value;
1354 *p = '\0'; /* Insert null now. */
1355 expanded = history_expand (linebuffer, &history_value);
1358 /* Print the changes. */
1359 printf_unfiltered ("%s\n", history_value);
1361 /* If there was an error, call this function again. */
1364 free (history_value);
1365 return command_line_input (prrompt, repeat, annotation_suffix);
1367 if (strlen (history_value) > linelength)
1369 linelength = strlen (history_value) + 1;
1370 linebuffer = (char *) xrealloc (linebuffer, linelength);
1372 strcpy (linebuffer, history_value);
1373 p = linebuffer + strlen(linebuffer);
1374 free (history_value);
1378 /* If we just got an empty line, and that is supposed
1379 to repeat the previous command, return the value in the
1383 if (p == linebuffer)
1386 while (*p1 == ' ' || *p1 == '\t')
1394 /* Add line to history if appropriate. */
1395 if (instream == stdin
1396 && ISATTY (stdin) && *linebuffer)
1397 add_history (linebuffer);
1399 /* Note: lines consisting solely of comments are added to the command
1400 history. This is useful when you type a command, and then
1401 realize you don't want to execute it quite yet. You can comment
1402 out the command and then later fetch it from the value history
1403 and remove the '#'. The kill ring is probably better, but some
1404 people are in the habit of commenting things out. */
1406 while ((c = *p1++) != '\0')
1409 while ((c = *p1++) != '"')
1411 /* Make sure an escaped '"' doesn't make us think the string
1419 while ((c = *p1++) != '\'')
1421 /* Make sure an escaped '\'' doesn't make us think the string
1430 /* Found a comment. */
1436 /* Save into global buffer if appropriate. */
1439 if (linelength > linesize)
1441 line = xrealloc (line, linelength);
1442 linesize = linelength;
1444 strcpy (line, linebuffer);
1451 /* Read lines from the input stream
1452 and accumulate them in a chain of struct command_line's
1453 which is then returned. */
1455 struct command_line *
1456 read_command_lines ()
1458 struct command_line *first = 0;
1459 register struct command_line *next, *tail = 0;
1460 register char *p, *p1;
1461 struct cleanup *old_chain = 0;
1466 p = command_line_input ((char *) NULL, instream == stdin, "commands");
1468 /* Treat end of file like "end". */
1471 /* Remove leading and trailing blanks. */
1472 while (*p == ' ' || *p == '\t') p++;
1473 p1 = p + strlen (p);
1474 while (p1 != p && (p1[-1] == ' ' || p1[-1] == '\t')) p1--;
1476 /* Is this "end"? */
1477 if (p1 - p == 3 && !strncmp (p, "end", 3))
1480 /* No => add this line to the chain of command lines. */
1481 next = (struct command_line *) xmalloc (sizeof (struct command_line));
1482 next->line = savestring (p, p1 - p);
1490 /* We just read the first line.
1491 From now on, arrange to throw away the lines we have
1492 if we quit or get an error while inside this function. */
1494 old_chain = make_cleanup (free_command_lines, &first);
1501 /* Now we are about to return the chain to our caller,
1502 so freeing it becomes his responsibility. */
1504 discard_cleanups (old_chain);
1508 /* Free a chain of struct command_line's. */
1511 free_command_lines (lptr)
1512 struct command_line **lptr;
1514 register struct command_line *l = *lptr;
1515 register struct command_line *next;
1526 /* Add an element to the list of info subcommands. */
1529 add_info (name, fun, doc)
1531 void (*fun) PARAMS ((char *, int));
1534 add_cmd (name, no_class, fun, doc, &infolist);
1537 /* Add an alias to the list of info subcommands. */
1540 add_info_alias (name, oldname, abbrev_flag)
1545 add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
1548 /* The "info" command is defined as a prefix, with allow_unknown = 0.
1549 Therefore, its own definition is called only for "info" with no args. */
1553 info_command (arg, from_tty)
1557 printf_unfiltered ("\"info\" must be followed by the name of an info command.\n");
1558 help_list (infolist, "info ", -1, gdb_stdout);
1561 /* The "complete" command is used by Emacs to implement completion. */
1565 complete_command (arg, from_tty)
1576 rl_line_buffer[0] = '\0';
1581 strcpy (rl_line_buffer, arg);
1582 rl_point = strlen (arg);
1585 for (completion = symbol_completion_function (rl_line_buffer, i = 0);
1587 completion = symbol_completion_function (rl_line_buffer, ++i))
1588 printf_unfiltered ("%s\n", completion);
1591 /* The "show" command with no arguments shows all the settings. */
1595 show_command (arg, from_tty)
1599 cmd_show_list (showlist, from_tty, "");
1602 /* Add an element to the list of commands. */
1605 add_com (name, class, fun, doc)
1607 enum command_class class;
1608 void (*fun) PARAMS ((char *, int));
1611 add_cmd (name, class, fun, doc, &cmdlist);
1614 /* Add an alias or abbreviation command to the list of commands. */
1617 add_com_alias (name, oldname, class, abbrev_flag)
1620 enum command_class class;
1623 add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
1630 error ("Argument required (%s).", why);
1635 help_command (command, from_tty)
1637 int from_tty; /* Ignored */
1639 help_cmd (command, gdb_stdout);
1643 validate_comname (comname)
1649 error_no_arg ("name of command to define");
1654 if (!isalnum(*p) && *p != '-')
1655 error ("Junk in argument list: \"%s\"", p);
1660 /* This is just a placeholder in the command data structures. */
1662 user_defined_command (ignore, from_tty)
1669 define_command (comname, from_tty)
1673 register struct command_line *cmds;
1674 register struct cmd_list_element *c, *newc, *hookc = 0;
1675 char *tem = comname;
1676 #define HOOK_STRING "hook-"
1679 validate_comname (comname);
1681 /* Look it up, and verify that we got an exact match. */
1682 c = lookup_cmd (&tem, cmdlist, "", -1, 1);
1683 if (c && !STREQ (comname, c->name))
1688 if (c->class == class_user || c->class == class_alias)
1689 tem = "Redefine command \"%s\"? ";
1691 tem = "Really redefine built-in command \"%s\"? ";
1692 if (!query (tem, c->name))
1693 error ("Command \"%s\" not redefined.", c->name);
1696 /* If this new command is a hook, then mark the command which it
1697 is hooking. Note that we allow hooking `help' commands, so that
1698 we can hook the `stop' pseudo-command. */
1700 if (!strncmp (comname, HOOK_STRING, HOOK_LEN))
1702 /* Look up cmd it hooks, and verify that we got an exact match. */
1703 tem = comname+HOOK_LEN;
1704 hookc = lookup_cmd (&tem, cmdlist, "", -1, 0);
1705 if (hookc && !STREQ (comname+HOOK_LEN, hookc->name))
1709 warning ("Your new `%s' command does not hook any existing command.",
1711 if (!query ("Proceed? ", (char *)0))
1712 error ("Not confirmed.");
1716 comname = savestring (comname, strlen (comname));
1718 /* If the rest of the commands will be case insensitive, this one
1719 should behave in the same manner. */
1720 for (tem = comname; *tem; tem++)
1721 if (isupper(*tem)) *tem = tolower(*tem);
1725 printf_unfiltered ("Type commands for definition of \"%s\".\n\
1726 End with a line saying just \"end\".\n", comname);
1727 gdb_flush (gdb_stdout);
1730 cmds = read_command_lines ();
1732 if (c && c->class == class_user)
1733 free_command_lines (&c->user_commands);
1735 newc = add_cmd (comname, class_user, user_defined_command,
1736 (c && c->class == class_user)
1737 ? c->doc : savestring ("User-defined.", 13), &cmdlist);
1738 newc->user_commands = cmds;
1740 /* If this new command is a hook, then mark both commands as being
1744 hookc->hook = newc; /* Target gets hooked. */
1745 newc->hookee = hookc; /* We are marked as hooking target cmd. */
1750 document_command (comname, from_tty)
1754 struct command_line *doclines;
1755 register struct cmd_list_element *c;
1756 char *tem = comname;
1758 validate_comname (comname);
1760 c = lookup_cmd (&tem, cmdlist, "", 0, 1);
1762 if (c->class != class_user)
1763 error ("Command \"%s\" is built-in.", comname);
1766 printf_unfiltered ("Type documentation for \"%s\".\n\
1767 End with a line saying just \"end\".\n", comname);
1769 doclines = read_command_lines ();
1771 if (c->doc) free (c->doc);
1774 register struct command_line *cl1;
1775 register int len = 0;
1777 for (cl1 = doclines; cl1; cl1 = cl1->next)
1778 len += strlen (cl1->line) + 1;
1780 c->doc = (char *) xmalloc (len + 1);
1783 for (cl1 = doclines; cl1; cl1 = cl1->next)
1785 strcat (c->doc, cl1->line);
1787 strcat (c->doc, "\n");
1791 free_command_lines (&doclines);
1795 print_gnu_advertisement ()
1797 printf_unfiltered ("\
1798 GDB is free software and you are welcome to distribute copies of it\n\
1799 under certain conditions; type \"show copying\" to see the conditions.\n\
1800 There is absolutely no warranty for GDB; type \"show warranty\" for details.\n\
1805 print_gdb_version (stream)
1808 fprintf_filtered (stream, "\
1809 GDB %s (%s", version, host_name);
1811 if (!STREQ (host_name, target_name))
1812 fprintf_filtered (stream, " --target %s", target_name);
1814 fprintf_filtered (stream, "), ");
1816 fprintf_filtered (stream, "Copyright 1994 Free Software Foundation, Inc.");
1821 show_version (args, from_tty)
1826 print_gnu_advertisement ();
1827 print_gdb_version (gdb_stdout);
1828 printf_filtered ("\n");
1832 /* xgdb calls this to reprint the usual GDB prompt. Obsolete now that xgdb
1838 printf_unfiltered ("%s", prompt);
1839 gdb_flush (gdb_stdout);
1843 quit_command (args, from_tty)
1847 if (inferior_pid != 0 && target_has_execution)
1851 if (query ("The program is running. Quit anyway (and detach it)? "))
1852 target_detach (args, from_tty);
1854 error ("Not confirmed.");
1858 if (query ("The program is running. Quit anyway (and kill it)? "))
1861 error ("Not confirmed.");
1864 /* UDI wants this, to kill the TIP. */
1867 /* Save the history information if it is appropriate to do so. */
1868 if (write_history_p && history_filename)
1869 write_history (history_filename);
1874 /* Returns whether GDB is running on a terminal and whether the user
1875 desires that questions be asked of them on that terminal. */
1878 input_from_terminal_p ()
1880 return gdb_has_a_terminal () && (instream == stdin) & caution;
1885 pwd_command (args, from_tty)
1889 if (args) error ("The \"pwd\" command does not take an argument: %s", args);
1890 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
1892 if (!STREQ (gdb_dirbuf, current_directory))
1893 printf_unfiltered ("Working directory %s\n (canonically %s).\n",
1894 current_directory, gdb_dirbuf);
1896 printf_unfiltered ("Working directory %s.\n", current_directory);
1900 cd_command (dir, from_tty)
1905 /* Found something other than leading repetitions of "/..". */
1906 int found_real_path;
1909 /* If the new directory is absolute, repeat is a no-op; if relative,
1910 repeat might be useful but is more likely to be a mistake. */
1914 error_no_arg ("new working directory");
1916 dir = tilde_expand (dir);
1917 make_cleanup (free, dir);
1919 if (chdir (dir) < 0)
1920 perror_with_name (dir);
1923 dir = savestring (dir, len - (len > 1 && dir[len-1] == '/'));
1925 current_directory = dir;
1928 if (current_directory[0] == '/' && current_directory[1] == '\0')
1929 current_directory = concat (current_directory, dir, NULL);
1931 current_directory = concat (current_directory, "/", dir, NULL);
1935 /* Now simplify any occurrences of `.' and `..' in the pathname. */
1937 found_real_path = 0;
1938 for (p = current_directory; *p;)
1940 if (p[0] == '/' && p[1] == '.' && (p[2] == 0 || p[2] == '/'))
1942 else if (p[0] == '/' && p[1] == '.' && p[2] == '.'
1943 && (p[3] == 0 || p[3] == '/'))
1945 if (found_real_path)
1947 /* Search backwards for the directory just before the "/.."
1948 and obliterate it and the "/..". */
1950 while (q != current_directory && q[-1] != '/')
1953 if (q == current_directory)
1954 /* current_directory is
1955 a relative pathname ("can't happen"--leave it alone). */
1959 strcpy (q - 1, p + 3);
1964 /* We are dealing with leading repetitions of "/..", for example
1965 "/../..", which is the Mach super-root. */
1970 found_real_path = 1;
1975 forget_cached_source_info ();
1978 pwd_command ((char *) 0, 1);
1981 struct source_cleanup_lines_args {
1984 char *old_pre_error;
1985 char *old_error_pre_print;
1989 source_cleanup_lines (args)
1992 struct source_cleanup_lines_args *p =
1993 (struct source_cleanup_lines_args *)args;
1994 source_line_number = p->old_line;
1995 source_file_name = p->old_file;
1996 source_pre_error = p->old_pre_error;
1997 error_pre_print = p->old_error_pre_print;
2002 source_command (args, from_tty)
2007 struct cleanup *old_cleanups;
2009 struct source_cleanup_lines_args old_lines;
2014 error ("source command requires pathname of file to source.");
2017 file = tilde_expand (file);
2018 old_cleanups = make_cleanup (free, file);
2020 stream = fopen (file, FOPEN_RT);
2022 perror_with_name (file);
2024 make_cleanup (fclose, stream);
2026 old_lines.old_line = source_line_number;
2027 old_lines.old_file = source_file_name;
2028 old_lines.old_pre_error = source_pre_error;
2029 old_lines.old_error_pre_print = error_pre_print;
2030 make_cleanup (source_cleanup_lines, &old_lines);
2031 source_line_number = 0;
2032 source_file_name = file;
2033 source_pre_error = error_pre_print == NULL ? "" : error_pre_print;
2034 source_pre_error = savestring (source_pre_error, strlen (source_pre_error));
2035 make_cleanup (free, source_pre_error);
2036 /* This will get set every time we read a line. So it won't stay "" for
2038 error_pre_print = "";
2040 needed_length = strlen (source_file_name) + strlen (source_pre_error) + 80;
2041 if (source_error_allocated < needed_length)
2043 source_error_allocated *= 2;
2044 if (source_error_allocated < needed_length)
2045 source_error_allocated = needed_length;
2046 if (source_error == NULL)
2047 source_error = xmalloc (source_error_allocated);
2049 source_error = xrealloc (source_error, source_error_allocated);
2052 read_command_file (stream);
2054 do_cleanups (old_cleanups);
2059 echo_command (text, from_tty)
2067 while ((c = *p++) != '\0')
2071 /* \ at end of argument is used after spaces
2072 so they won't be lost. */
2076 c = parse_escape (&p);
2078 printf_filtered ("%c", c);
2081 printf_filtered ("%c", c);
2084 /* Force this output to appear now. */
2086 gdb_flush (gdb_stdout);
2090 /* Functions to manipulate command line editing control variables. */
2092 /* Number of commands to print in each call to show_commands. */
2093 #define Hist_print 10
2095 show_commands (args, from_tty)
2099 /* Index for history commands. Relative to history_base. */
2102 /* Number of the history entry which we are planning to display next.
2103 Relative to history_base. */
2106 /* The first command in the history which doesn't exist (i.e. one more
2107 than the number of the last command). Relative to history_base. */
2110 extern HIST_ENTRY *history_get PARAMS ((int));
2112 /* Print out some of the commands from the command history. */
2113 /* First determine the length of the history list. */
2114 hist_len = history_size;
2115 for (offset = 0; offset < history_size; offset++)
2117 if (!history_get (history_base + offset))
2126 if (args[0] == '+' && args[1] == '\0')
2127 /* "info editing +" should print from the stored position. */
2130 /* "info editing <exp>" should print around command number <exp>. */
2131 num = (parse_and_eval_address (args) - history_base) - Hist_print / 2;
2133 /* "show commands" means print the last Hist_print commands. */
2136 num = hist_len - Hist_print;
2142 /* If there are at least Hist_print commands, we want to display the last
2143 Hist_print rather than, say, the last 6. */
2144 if (hist_len - num < Hist_print)
2146 num = hist_len - Hist_print;
2151 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
2153 printf_filtered ("%5d %s\n", history_base + offset,
2154 (history_get (history_base + offset))->line);
2157 /* The next command we want to display is the next one that we haven't
2161 /* If the user repeats this command with return, it should do what
2162 "show commands +" does. This is unnecessary if arg is null,
2163 because "show commands +" is not useful after "show commands". */
2164 if (from_tty && args)
2171 /* Called by do_setshow_command. */
2174 set_history_size_command (args, from_tty, c)
2177 struct cmd_list_element *c;
2179 if (history_size == INT_MAX)
2180 unstifle_history ();
2181 else if (history_size >= 0)
2182 stifle_history (history_size);
2185 history_size = INT_MAX;
2186 error ("History size must be non-negative");
2192 set_history (args, from_tty)
2196 printf_unfiltered ("\"set history\" must be followed by the name of a history subcommand.\n");
2197 help_list (sethistlist, "set history ", -1, gdb_stdout);
2202 show_history (args, from_tty)
2206 cmd_show_list (showhistlist, from_tty, "");
2209 int info_verbose = 0; /* Default verbose msgs off */
2211 /* Called by do_setshow_command. An elaborate joke. */
2214 set_verbose (args, from_tty, c)
2217 struct cmd_list_element *c;
2219 char *cmdname = "verbose";
2220 struct cmd_list_element *showcmd;
2222 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
2226 c->doc = "Set verbose printing of informational messages.";
2227 showcmd->doc = "Show verbose printing of informational messages.";
2231 c->doc = "Set verbosity.";
2232 showcmd->doc = "Show verbosity.";
2237 float_handler (signo)
2240 /* This message is based on ANSI C, section 4.7. Note that integer
2241 divide by zero causes this, so "float" is a misnomer. */
2242 signal (SIGFPE, float_handler);
2243 error ("Erroneous arithmetic operation.");
2255 enablebreaklist = NULL;
2260 showhistlist = NULL;
2261 unsethistlist = NULL;
2262 #if MAINTENANCE_CMDS
2263 maintenancelist = NULL;
2264 maintenanceinfolist = NULL;
2265 maintenanceprintlist = NULL;
2267 setprintlist = NULL;
2268 showprintlist = NULL;
2269 setchecklist = NULL;
2270 showchecklist = NULL;
2273 /* Init the history buffer. Note that we are called after the init file(s)
2274 * have been read so that the user can change the history file via his
2275 * .gdbinit file (for instance). The GDBHISTFILE environment variable
2276 * overrides all of this.
2284 tmpenv = getenv ("HISTSIZE");
2286 history_size = atoi (tmpenv);
2287 else if (!history_size)
2290 stifle_history (history_size);
2292 tmpenv = getenv ("GDBHISTFILE");
2294 history_filename = savestring (tmpenv, strlen(tmpenv));
2295 else if (!history_filename) {
2296 /* We include the current directory so that if the user changes
2297 directories the file written will be the same as the one
2299 history_filename = concat (current_directory, "/.gdb_history", NULL);
2301 read_history (history_filename);
2307 struct cmd_list_element *c;
2309 #ifdef DEFAULT_PROMPT
2310 prompt = savestring (DEFAULT_PROMPT, strlen(DEFAULT_PROMPT));
2312 prompt = savestring ("(gdb) ", 6);
2315 /* Set the important stuff up for command editing. */
2316 command_editing_p = 1;
2317 history_expansion_p = 0;
2318 write_history_p = 0;
2320 /* Setup important stuff for command line editing. */
2321 rl_completion_entry_function = (int (*)()) symbol_completion_function;
2322 rl_completer_word_break_characters = gdb_completer_word_break_characters;
2323 rl_completer_quote_characters = gdb_completer_quote_characters;
2324 rl_readline_name = "gdb";
2326 /* Define the classes of commands.
2327 They will appear in the help list in the reverse of this order. */
2329 add_cmd ("internals", class_maintenance, NO_FUNCTION,
2330 "Maintenance commands.\n\
2331 Some gdb commands are provided just for use by gdb maintainers.\n\
2332 These commands are subject to frequent change, and may not be as\n\
2333 well documented as user commands.",
2335 add_cmd ("obscure", class_obscure, NO_FUNCTION, "Obscure features.", &cmdlist);
2336 add_cmd ("aliases", class_alias, NO_FUNCTION, "Aliases of other commands.", &cmdlist);
2337 add_cmd ("user-defined", class_user, NO_FUNCTION, "User-defined commands.\n\
2338 The commands in this class are those defined by the user.\n\
2339 Use the \"define\" command to define a command.", &cmdlist);
2340 add_cmd ("support", class_support, NO_FUNCTION, "Support facilities.", &cmdlist);
2341 add_cmd ("status", class_info, NO_FUNCTION, "Status inquiries.", &cmdlist);
2342 add_cmd ("files", class_files, NO_FUNCTION, "Specifying and examining files.", &cmdlist);
2343 add_cmd ("breakpoints", class_breakpoint, NO_FUNCTION, "Making program stop at certain points.", &cmdlist);
2344 add_cmd ("data", class_vars, NO_FUNCTION, "Examining data.", &cmdlist);
2345 add_cmd ("stack", class_stack, NO_FUNCTION, "Examining the stack.\n\
2346 The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
2347 counting from zero for the innermost (currently executing) frame.\n\n\
2348 At any time gdb identifies one frame as the \"selected\" frame.\n\
2349 Variable lookups are done with respect to the selected frame.\n\
2350 When the program being debugged stops, gdb selects the innermost frame.\n\
2351 The commands below can be used to select other frames by number or address.",
2353 add_cmd ("running", class_run, NO_FUNCTION, "Running the program.", &cmdlist);
2355 add_com ("pwd", class_files, pwd_command,
2356 "Print working directory. This is used for your program as well.");
2357 c = add_cmd ("cd", class_files, cd_command,
2358 "Set working directory to DIR for debugger and program being debugged.\n\
2359 The change does not take effect for the program being debugged\n\
2360 until the next time it is started.", &cmdlist);
2361 c->completer = filename_completer;
2364 (add_set_cmd ("prompt", class_support, var_string, (char *)&prompt,
2369 add_com ("echo", class_support, echo_command,
2370 "Print a constant string. Give string as argument.\n\
2371 C escape sequences may be used in the argument.\n\
2372 No newline is added at the end of the argument;\n\
2373 use \"\\n\" if you want a newline to be printed.\n\
2374 Since leading and trailing whitespace are ignored in command arguments,\n\
2375 if you want to print some you must use \"\\\" before leading whitespace\n\
2376 to be printed or after trailing whitespace.");
2377 add_com ("document", class_support, document_command,
2378 "Document a user-defined command.\n\
2379 Give command name as argument. Give documentation on following lines.\n\
2380 End with a line of just \"end\".");
2381 add_com ("define", class_support, define_command,
2382 "Define a new command name. Command name is argument.\n\
2383 Definition appears on following lines, one command per line.\n\
2384 End with a line of just \"end\".\n\
2385 Use the \"document\" command to give documentation for the new command.\n\
2386 Commands defined in this way do not take arguments.");
2389 c = add_cmd ("source", class_support, source_command,
2390 "Read commands from a file named FILE.\n\
2391 Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
2392 when gdb is started.", &cmdlist);
2394 /* Punt file name, we can't help it easily. */
2395 c = add_cmd ("source", class_support, source_command,
2396 "Read commands from a file named FILE.\n\
2397 Note that the file \".gdbinit\" is read automatically in this way\n\
2398 when gdb is started.", &cmdlist);
2400 c->completer = filename_completer;
2402 add_com ("quit", class_support, quit_command, "Exit gdb.");
2403 add_com ("help", class_support, help_command, "Print list of commands.");
2404 add_com_alias ("q", "quit", class_support, 1);
2405 add_com_alias ("h", "help", class_support, 1);
2408 c = add_set_cmd ("verbose", class_support, var_boolean, (char *)&info_verbose,
2411 add_show_from_set (c, &showlist);
2412 c->function.sfunc = set_verbose;
2413 set_verbose (NULL, 0, c);
2416 (add_set_cmd ("editing", class_support, var_boolean, (char *)&command_editing_p,
2417 "Set editing of command lines as they are typed.\n\
2418 Use \"on\" to enable to enable the editing, and \"off\" to disable it.\n\
2419 Without an argument, command line editing is enabled. To edit, use\n\
2420 EMACS-like or VI-like commands like control-P or ESC.", &setlist),
2423 add_prefix_cmd ("history", class_support, set_history,
2424 "Generic command for setting command history parameters.",
2425 &sethistlist, "set history ", 0, &setlist);
2426 add_prefix_cmd ("history", class_support, show_history,
2427 "Generic command for showing command history parameters.",
2428 &showhistlist, "show history ", 0, &showlist);
2431 (add_set_cmd ("expansion", no_class, var_boolean, (char *)&history_expansion_p,
2432 "Set history expansion on command input.\n\
2433 Without an argument, history expansion is enabled.", &sethistlist),
2437 (add_set_cmd ("save", no_class, var_boolean, (char *)&write_history_p,
2438 "Set saving of the history record on exit.\n\
2439 Use \"on\" to enable to enable the saving, and \"off\" to disable it.\n\
2440 Without an argument, saving is enabled.", &sethistlist),
2443 c = add_set_cmd ("size", no_class, var_integer, (char *)&history_size,
2444 "Set the size of the command history, \n\
2445 ie. the number of previous commands to keep a record of.", &sethistlist);
2446 add_show_from_set (c, &showhistlist);
2447 c->function.sfunc = set_history_size_command;
2450 (add_set_cmd ("filename", no_class, var_filename, (char *)&history_filename,
2451 "Set the filename in which to record the command history\n\
2452 (the list of previous commands of which a record is kept).", &sethistlist),
2456 (add_set_cmd ("confirm", class_support, var_boolean,
2458 "Set whether to confirm potentially dangerous operations.",
2462 add_prefix_cmd ("info", class_info, info_command,
2463 "Generic command for showing things about the program being debugged.",
2464 &infolist, "info ", 0, &cmdlist);
2465 add_com_alias ("i", "info", class_info, 1);
2467 add_com ("complete", class_obscure, complete_command,
2468 "List the completions for the rest of the line as a command.");
2470 add_prefix_cmd ("show", class_info, show_command,
2471 "Generic command for showing things about the debugger.",
2472 &showlist, "show ", 0, &cmdlist);
2473 /* Another way to get at the same thing. */
2474 add_info ("set", show_command, "Show all GDB settings.");
2476 add_cmd ("commands", no_class, show_commands,
2477 "Show the the history of commands you typed.\n\
2478 You can supply a command number to start with, or a `+' to start after\n\
2479 the previous command number shown.",
2482 add_cmd ("version", no_class, show_version,
2483 "Show what version of GDB this is.", &showlist);
2485 /* If target is open when baud changes, it doesn't take effect until the
2486 next open (I think, not sure). */
2487 add_show_from_set (add_set_cmd ("remotebaud", no_class,
2488 var_zinteger, (char *)&baud_rate,
2489 "Set baud rate for remote serial I/O.\n\
2490 This value is used to set the speed of the serial port when debugging\n\
2491 using remote targets.", &setlist),
2495 add_set_cmd ("remotedebug", no_class, var_zinteger, (char *)&remote_debug,
2496 "Set debugging of remote protocol.\n\
2497 When enabled, each packet sent or received with the remote target\n\
2498 is displayed.", &setlist),