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"
33 #include "terminal.h" /* For job_control. */
38 /* readline include files */
42 /* readline defines this. */
45 #include <sys/types.h>
47 /* What is this for? X_OK? */
55 #include <sys/param.h>
59 /* Prototypes for local functions */
61 static char * symbol_completion_function PARAMS ((char *, int));
63 static void command_loop_marker PARAMS ((int));
65 static void while_command PARAMS ((char *, int));
67 static void if_command PARAMS ((char *, int));
69 static enum command_control_type
70 execute_control_command PARAMS ((struct command_line *));
72 static struct command_line *
73 build_command_line PARAMS ((enum command_control_type, char *));
75 static struct command_line *
76 get_command_line PARAMS ((enum command_control_type, char *));
78 static void realloc_body_list PARAMS ((struct command_line *, int));
80 static enum misc_command_type read_next_line PARAMS ((struct command_line **));
82 static enum command_control_type
83 recurse_read_control_structure PARAMS ((struct command_line *));
85 static void init_main PARAMS ((void));
87 static void init_cmd_lists PARAMS ((void));
89 static void float_handler PARAMS ((int));
91 static void init_signals PARAMS ((void));
93 static void set_verbose PARAMS ((char *, int, struct cmd_list_element *));
95 #ifdef TARGET_BYTE_ORDER_SELECTABLE
97 static void set_endian PARAMS ((char *, int));
99 static void set_endian_big PARAMS ((char *, int));
101 static void set_endian_little PARAMS ((char *, int));
103 static void set_endian_auto PARAMS ((char *, int));
105 static void show_endian PARAMS ((char *, int));
109 static void show_history PARAMS ((char *, int));
111 static void set_history PARAMS ((char *, int));
113 static void set_history_size_command PARAMS ((char *, int,
114 struct cmd_list_element *));
116 static void show_commands PARAMS ((char *, int));
118 static void echo_command PARAMS ((char *, int));
120 static void pwd_command PARAMS ((char *, int));
122 static void show_version PARAMS ((char *, int));
124 static void document_command PARAMS ((char *, int));
126 static void define_command PARAMS ((char *, int));
128 static void validate_comname PARAMS ((char *));
130 static void help_command PARAMS ((char *, int));
132 static void show_command PARAMS ((char *, int));
134 static void info_command PARAMS ((char *, int));
136 static void complete_command PARAMS ((char *, int));
138 static void do_nothing PARAMS ((int));
140 static int quit_cover PARAMS ((char *));
142 static void disconnect PARAMS ((int));
144 static void source_cleanup PARAMS ((FILE *));
146 /* If this definition isn't overridden by the header files, assume
147 that isatty and fileno exist on this system. */
149 #define ISATTY(FP) (isatty (fileno (FP)))
152 /* Initialization file name for gdb. This is overridden in some configs. */
154 #ifndef GDBINIT_FILENAME
155 #define GDBINIT_FILENAME ".gdbinit"
157 char gdbinit[] = GDBINIT_FILENAME;
158 int inhibit_gdbinit = 0;
160 /* Disable windows if non-zero */
164 /* Version number of GDB, as a string. */
166 extern char *version;
168 /* Canonical host name as a string. */
170 extern char *host_name;
172 /* Canonical target name as a string. */
174 extern char *target_name;
176 extern char lang_frame_mismatch_warn[]; /* language.c */
178 /* Flag for whether we want all the "from_tty" gubbish printed. */
180 int caution = 1; /* Default is yes, sigh. */
183 * Define all cmd_list_element's
186 /* Chain containing all defined commands. */
188 struct cmd_list_element *cmdlist;
190 /* Chain containing all defined info subcommands. */
192 struct cmd_list_element *infolist;
194 /* Chain containing all defined enable subcommands. */
196 struct cmd_list_element *enablelist;
198 /* Chain containing all defined disable subcommands. */
200 struct cmd_list_element *disablelist;
202 /* Chain containing all defined delete subcommands. */
204 struct cmd_list_element *deletelist;
206 /* Chain containing all defined "enable breakpoint" subcommands. */
208 struct cmd_list_element *enablebreaklist;
210 /* Chain containing all defined set subcommands */
212 struct cmd_list_element *setlist;
214 /* Chain containing all defined unset subcommands */
216 struct cmd_list_element *unsetlist;
218 /* Chain containing all defined show subcommands. */
220 struct cmd_list_element *showlist;
222 #ifdef TARGET_BYTE_ORDER_SELECTABLE
223 /* Chain containing the \"set endian\" commands. */
225 struct cmd_list_element *endianlist;
228 /* Chain containing all defined \"set history\". */
230 struct cmd_list_element *sethistlist;
232 /* Chain containing all defined \"show history\". */
234 struct cmd_list_element *showhistlist;
236 /* Chain containing all defined \"unset history\". */
238 struct cmd_list_element *unsethistlist;
240 /* Chain containing all defined maintenance subcommands. */
243 struct cmd_list_element *maintenancelist;
246 /* Chain containing all defined "maintenance info" subcommands. */
249 struct cmd_list_element *maintenanceinfolist;
252 /* Chain containing all defined "maintenance print" subcommands. */
255 struct cmd_list_element *maintenanceprintlist;
258 struct cmd_list_element *setprintlist;
260 struct cmd_list_element *showprintlist;
262 struct cmd_list_element *setchecklist;
264 struct cmd_list_element *showchecklist;
266 /* stdio stream that command input is being read from. Set to stdin normally.
267 Set by source_command to the file we are sourcing. Set to NULL if we are
268 executing a user-defined command. */
272 /* Current working directory. */
274 char *current_directory;
276 /* The directory name is actually stored here (usually). */
277 char gdb_dirbuf[1024];
279 /* Function to call before reading a command, if nonzero.
280 The function receives two args: an input stream,
281 and a prompt string. */
283 void (*window_hook) PARAMS ((FILE *, char *));
288 /* gdb prints this when reading a command interactively */
291 /* Buffer used for reading command lines, and the size
292 allocated for it so far. */
297 /* Nonzero if the current command is modified by "server ". This
298 affects things like recording into the command history, comamnds
299 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
300 whatever) can issue its own commands and also send along commands
301 from the user, and have the user not notice that the user interface
302 is issuing commands too. */
305 /* Baud rate specified for talking to serial target systems. Default
306 is left as -1, so targets can choose their own defaults. */
307 /* FIXME: This means that "show remotebaud" and gr_files_info can print -1
308 or (unsigned int)-1. This is a Bad User Interface. */
312 /* Non-zero tells remote* modules to output debugging info. */
314 int remote_debug = 0;
316 /* Level of control structure. */
317 static int control_level;
319 /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
323 #define STOP_SIGNAL SIGTSTP
324 static void stop_sig PARAMS ((int));
328 /* Some System V have job control but not sigsetmask(). */
329 #if !defined (HAVE_SIGSETMASK)
331 #define HAVE_SIGSETMASK 1
333 #define HAVE_SIGSETMASK 0
337 #if 0 == (HAVE_SIGSETMASK)
338 #define sigsetmask(n)
341 /* Hooks for alternate command interfaces. */
343 /* Called after most modules have been initialized, but before taking users
346 void (*init_ui_hook) PARAMS ((void));
348 /* Called instead of command_loop at top level. Can be invoked via
349 return_to_top_level. */
351 void (*command_loop_hook) PARAMS ((void));
353 /* Called instead of fputs for all output. */
355 void (*fputs_unfiltered_hook) PARAMS ((const char *linebuffer));
357 /* Called from print_frame_info to list the line we stopped in. */
359 void (*print_frame_info_listing_hook) PARAMS ((struct symtab *s, int line,
360 int stopline, int noerror));
361 /* Replaces most of query. */
363 int (*query_hook) PARAMS (());
365 /* Called from gdb_flush to flush output. */
367 void (*flush_hook) PARAMS ((FILE *stream));
369 /* Called as appropriate to notify the interface of the specified breakpoint
372 void (*create_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
373 void (*delete_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
374 void (*enable_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
375 void (*disable_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
377 /* Called during long calculations to allow GUI to repair window damage, and to
378 check for stop buttons, etc... */
380 void (*interactive_hook) PARAMS ((void));
383 /* Where to go for return_to_top_level (RETURN_ERROR). */
384 jmp_buf error_return;
385 /* Where to go for return_to_top_level (RETURN_QUIT). */
388 /* Return for reason REASON. This generally gets back to the command
389 loop, but can be caught via catch_errors. */
392 return_to_top_level (reason)
393 enum return_reason reason;
398 /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
399 I can think of a reason why that is vital, though). */
400 bpstat_clear_actions(stop_bpstat); /* Clear queued breakpoint commands */
402 disable_current_display ();
403 do_cleanups (ALL_CLEANUPS);
405 if (annotation_level > 1)
416 (NORETURN void) longjmp
417 (reason == RETURN_ERROR ? error_return : quit_return, 1);
420 /* Call FUNC with arg ARGS, catching any errors. If there is no
421 error, return the value returned by FUNC. If there is an error,
422 print ERRSTRING, print the specific error message, then return
425 Must not be called with immediate_quit in effect (bad things might
426 happen, say we got a signal in the middle of a memcpy to quit_return).
427 This is an OK restriction; with very few exceptions immediate_quit can
428 be replaced by judicious use of QUIT.
430 MASK specifies what to catch; it is normally set to
431 RETURN_MASK_ALL, if for no other reason than that the code which
432 calls catch_errors might not be set up to deal with a quit which
433 isn't caught. But if the code can deal with it, it generally
434 should be RETURN_MASK_ERROR, unless for some reason it is more
435 useful to abort only the portion of the operation inside the
436 catch_errors. Note that quit should return to the command line
437 fairly quickly, even if some further processing is being done. */
440 catch_errors (func, args, errstring, mask)
441 int (*func) PARAMS ((char *));
450 struct cleanup *saved_cleanup_chain;
451 char *saved_error_pre_print;
453 saved_cleanup_chain = save_cleanups ();
454 saved_error_pre_print = error_pre_print;
456 if (mask & RETURN_MASK_ERROR)
457 memcpy ((char *)saved_error, (char *)error_return, sizeof (jmp_buf));
458 if (mask & RETURN_MASK_QUIT)
459 memcpy (saved_quit, quit_return, sizeof (jmp_buf));
460 error_pre_print = errstring;
462 if (setjmp (tmp_jmp) == 0)
464 if (mask & RETURN_MASK_ERROR)
465 memcpy (error_return, tmp_jmp, sizeof (jmp_buf));
466 if (mask & RETURN_MASK_QUIT)
467 memcpy (quit_return, tmp_jmp, sizeof (jmp_buf));
468 val = (*func) (args);
473 restore_cleanups (saved_cleanup_chain);
475 error_pre_print = saved_error_pre_print;
476 if (mask & RETURN_MASK_ERROR)
477 memcpy (error_return, saved_error, sizeof (jmp_buf));
478 if (mask & RETURN_MASK_QUIT)
479 memcpy (quit_return, saved_quit, sizeof (jmp_buf));
483 /* Handler for SIGHUP. */
489 catch_errors (quit_cover, NULL,
490 "Could not kill the program being debugged", RETURN_MASK_ALL);
491 signal (SIGHUP, SIG_DFL);
492 kill (getpid (), SIGHUP);
495 /* Just a little helper function for disconnect(). */
501 caution = 0; /* Throw caution to the wind -- we're exiting.
502 This prevents asking the user dumb questions. */
503 quit_command((char *)0, 0);
507 /* Line number we are currently in in a file which is being sourced. */
508 static int source_line_number;
510 /* Name of the file we are sourcing. */
511 static char *source_file_name;
513 /* Buffer containing the error_pre_print used by the source stuff.
515 static char *source_error;
516 static int source_error_allocated;
518 /* Something to glom on to the start of error_pre_print if source_file_name
520 static char *source_pre_error;
522 /* Clean up on error during a "source" command (or execution of a
523 user-defined command). */
526 source_cleanup (stream)
529 /* Restore the previous input stream. */
533 /* Read commands from STREAM. */
535 read_command_file (stream)
538 struct cleanup *cleanups;
540 cleanups = make_cleanup (source_cleanup, instream);
543 do_cleanups (cleanups);
546 extern void init_proc ();
551 /* Run the init function of each source file */
553 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
554 current_directory = gdb_dirbuf;
556 init_cmd_lists (); /* This needs to be done first */
557 initialize_targets (); /* Setup target_terminal macros for utils.c */
558 initialize_utils (); /* Make errors and warnings possible */
559 initialize_all_files ();
560 init_main (); /* But that omits this file! Do it now */
565 /* We need a default language for parsing expressions, so simple things like
566 "set width 0" won't fail if no language is explicitly set in a config file
567 or implicitly set by reading an executable during startup. */
568 set_language (language_c);
569 expected_language = current_language; /* don't warn about the change. */
575 /* Allocate, initialize a new command line structure for one of the
576 control commands (if/while). */
578 static struct command_line *
579 build_command_line (type, args)
580 enum command_control_type type;
583 struct command_line *cmd;
585 cmd = (struct command_line *)xmalloc (sizeof (struct command_line));
587 cmd->control_type = type;
591 = (struct command_line **)xmalloc (sizeof (struct command_line *)
593 memset (cmd->body_list, 0, sizeof (struct command_line *) * cmd->body_count);
594 cmd->line = savestring (args, strlen (args));
598 /* Build and return a new command structure for the control commands
599 such as "if" and "while". */
601 static struct command_line *
602 get_command_line (type, arg)
603 enum command_control_type type;
606 struct command_line *cmd;
607 struct cleanup *old_chain = NULL;
609 /* Allocate and build a new command line structure. */
610 cmd = build_command_line (type, arg);
612 old_chain = make_cleanup (free_command_lines, &cmd);
614 /* Read in the body of this command. */
615 if (recurse_read_control_structure (cmd) == invalid_control)
617 warning ("error reading in control structure\n");
618 do_cleanups (old_chain);
622 discard_cleanups (old_chain);
626 /* Execute the command in CMD. */
628 static enum command_control_type
629 execute_control_command (cmd)
630 struct command_line *cmd;
632 struct expression *expr;
633 struct command_line *current;
634 struct cleanup *old_chain = 0;
635 struct cleanup *tmp_chain;
638 enum command_control_type ret;
640 switch (cmd->control_type)
643 /* A simple command, execute it and return. */
644 execute_command (cmd->line, 0);
645 return cmd->control_type;
647 case continue_control:
649 /* Return for "continue", and "break" so we can either
650 continue the loop at the top, or break out. */
651 return cmd->control_type;
655 /* Parse the loop control expression for the while statement. */
656 expr = parse_expression (cmd->line);
657 tmp_chain = make_cleanup (free_current_contents, &expr);
659 old_chain = tmp_chain;
661 ret = simple_control;
664 /* Keep iterating so long as the expression is true. */
667 /* Evaluate the expression. */
668 val = evaluate_expression (expr);
670 /* If the value is false, then break out of the loop. */
671 if (!value_true (val))
674 /* Execute the body of the while statement. */
675 current = *cmd->body_list;
678 ret = execute_control_command (current);
680 /* If we got an error, or a "break" command, then stop
682 if (ret == invalid_control || ret == break_control)
688 /* If we got a "continue" command, then restart the loop
690 if (ret == continue_control)
693 /* Get the next statement. */
694 current = current->next;
698 /* Reset RET so that we don't recurse the break all the way down. */
699 if (ret == break_control)
700 ret = simple_control;
707 /* Parse the conditional for the if statement. */
708 expr = parse_expression (cmd->line);
709 old_chain = make_cleanup (free_current_contents, &expr);
712 ret = simple_control;
714 /* Evaluate the conditional. */
715 val = evaluate_expression (expr);
717 /* Choose which arm to take commands from based on the value of the
718 conditional expression. */
719 if (value_true (val))
720 current = *cmd->body_list;
721 else if (cmd->body_count == 2)
722 current = *(cmd->body_list + 1);
724 /* Execute commands in the given arm. */
727 ret = execute_control_command (current);
729 /* If we got an error, get out. */
730 if (ret != simple_control)
733 /* Get the next statement in the body. */
734 current = current->next;
740 warning ("Invalid control type in command structure.");
741 return invalid_control;
745 do_cleanups (old_chain);
750 /* "while" command support. Executes a body of statements while the
751 loop condition is nonzero. */
754 while_command (arg, from_tty)
758 struct command_line *command = NULL;
761 command = get_command_line (while_control, arg);
766 execute_control_command (command);
767 free_command_lines (&command);
770 /* "if" command support. Execute either the true or false arm depending
771 on the value of the if conditional. */
774 if_command (arg, from_tty)
778 struct command_line *command = NULL;
781 command = get_command_line (if_control, arg);
786 execute_control_command (command);
787 free_command_lines (&command);
791 execute_user_command (c, args)
792 struct cmd_list_element *c;
795 register struct command_line *cmdlines;
796 struct cleanup *old_chain;
797 enum command_control_type ret;
800 error ("User-defined commands cannot take arguments.");
802 cmdlines = c->user_commands;
807 /* Set the instream to 0, indicating execution of a
808 user-defined function. */
809 old_chain = make_cleanup (source_cleanup, instream);
810 instream = (FILE *) 0;
813 ret = execute_control_command (cmdlines);
814 if (ret != simple_control && ret != break_control)
816 warning ("Error in control structure.\n");
819 cmdlines = cmdlines->next;
821 do_cleanups (old_chain);
824 /* Execute the line P as a command.
825 Pass FROM_TTY as second argument to the defining function. */
828 execute_command (p, from_tty)
832 register struct cmd_list_element *c;
833 register enum language flang;
834 static int warned = 0;
838 /* This can happen when command_line_input hits end of file. */
842 while (*p == ' ' || *p == '\t') p++;
847 c = lookup_cmd (&p, cmdlist, "", 0, 1);
848 /* Pass null arg rather than an empty one. */
851 /* If this command has been hooked, run the hook first. */
853 execute_user_command (c->hook, (char *)0);
855 if (c->class == class_user)
856 execute_user_command (c, arg);
857 else if (c->type == set_cmd || c->type == show_cmd)
858 do_setshow_command (arg, from_tty & caution, c);
859 else if (c->function.cfunc == NO_FUNCTION)
860 error ("That is not a command, just a help topic.");
862 (*c->function.cfunc) (arg, from_tty & caution);
865 /* Tell the user if the language has changed (except first time). */
866 if (current_language != expected_language)
868 if (language_mode == language_mode_auto) {
869 language_info (1); /* Print what changed. */
874 /* Warn the user if the working language does not match the
875 language of the current frame. Only warn the user if we are
876 actually running the program, i.e. there is a stack. */
877 /* FIXME: This should be cacheing the frame and only running when
878 the frame changes. */
879 if (target_has_stack)
881 flang = get_frame_language ();
883 && flang != language_unknown
884 && flang != current_language->la_language)
886 printf_filtered ("%s\n", lang_frame_mismatch_warn);
894 command_loop_marker (foo)
899 /* Read commands from `instream' and execute them
900 until end of file or error reading instream. */
904 struct cleanup *old_chain;
906 int stdin_is_tty = ISATTY (stdin);
908 while (!feof (instream))
910 if (window_hook && instream == stdin)
911 (*window_hook) (instream, prompt);
914 if (instream == stdin && stdin_is_tty)
915 reinitialize_more_filter ();
916 old_chain = make_cleanup (command_loop_marker, 0);
917 command = command_line_input (instream == stdin ? prompt : (char *) NULL,
918 instream == stdin, "prompt");
921 execute_command (command, instream == stdin);
922 /* Do any commands attached to breakpoint we stopped at. */
923 bpstat_do_actions (&stop_bpstat);
924 do_cleanups (old_chain);
928 /* Commands call this if they do not want to be repeated by null lines. */
936 /* If we aren't reading from standard input, we are saving the last
937 thing read from stdin in line and don't want to delete it. Null lines
938 won't repeat here in any case. */
939 if (instream == stdin)
943 /* Read a line from the stream "instream" without command line editing.
945 It prints PRROMPT once at the start.
946 Action is compatible with "readline", e.g. space for the result is
947 malloc'd and should be freed by the caller.
949 A NULL return means end of file. */
951 gdb_readline (prrompt)
957 int result_size = 80;
961 /* Don't use a _filtered function here. It causes the assumed
962 character position to be off, since the newline we read from
963 the user is not accounted for. */
964 fputs_unfiltered (prrompt, gdb_stdout);
965 /* start-sanitize-mpw */
967 /* Move to a new line so the entered line doesn't have a prompt
968 on the front of it. */
969 fputs_unfiltered ("\n", gdb_stdout);
971 /* end-sanitize-mpw */
972 gdb_flush (gdb_stdout);
975 result = (char *) xmalloc (result_size);
979 /* Read from stdin if we are executing a user defined command.
980 This is the right thing for prompt_for_continue, at least. */
981 c = fgetc (instream ? instream : stdin);
986 /* The last line does not end with a newline. Return it, and
987 if we are called again fgetc will still return EOF and
988 we'll return NULL then. */
997 result[input_index++] = c;
998 while (input_index >= result_size)
1001 result = (char *) xrealloc (result, result_size);
1005 result[input_index++] = '\0';
1009 /* Variables which control command line editing and history
1010 substitution. These variables are given default values at the end
1012 static int command_editing_p;
1013 static int history_expansion_p;
1014 static int write_history_p;
1015 static int history_size;
1016 static char *history_filename;
1018 /* readline uses the word breaks for two things:
1019 (1) In figuring out where to point the TEXT parameter to the
1020 rl_completion_entry_function. Since we don't use TEXT for much,
1021 it doesn't matter a lot what the word breaks are for this purpose, but
1022 it does affect how much stuff M-? lists.
1023 (2) If one of the matches contains a word break character, readline
1024 will quote it. That's why we switch between
1025 gdb_completer_word_break_characters and
1026 gdb_completer_command_word_break_characters. I'm not sure when
1027 we need this behavior (perhaps for funky characters in C++ symbols?). */
1029 /* Variables which are necessary for fancy command line editing. */
1030 char *gdb_completer_word_break_characters =
1031 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
1033 /* When completing on command names, we remove '-' from the list of
1034 word break characters, since we use it in command names. If the
1035 readline library sees one in any of the current completion strings,
1036 it thinks that the string needs to be quoted and automatically supplies
1038 char *gdb_completer_command_word_break_characters =
1039 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,";
1041 /* Characters that can be used to quote completion strings. Note that we
1042 can't include '"' because the gdb C parser treats such quoted sequences
1044 char *gdb_completer_quote_characters =
1047 /* Functions that are used as part of the fancy command line editing. */
1049 /* This can be used for functions which don't want to complete on symbols
1050 but don't want to complete on anything else either. */
1053 noop_completer (text, prefix)
1060 /* Complete on filenames. */
1062 filename_completer (text, word)
1066 /* From readline. */
1067 extern char *filename_completion_function ();
1068 int subsequent_name;
1070 int return_val_used;
1071 int return_val_alloced;
1073 return_val_used = 0;
1074 /* Small for testing. */
1075 return_val_alloced = 1;
1076 return_val = (char **) xmalloc (return_val_alloced * sizeof (char *));
1078 subsequent_name = 0;
1082 p = filename_completion_function (text, subsequent_name);
1083 if (return_val_used >= return_val_alloced)
1085 return_val_alloced *= 2;
1087 (char **) xrealloc (return_val,
1088 return_val_alloced * sizeof (char *));
1092 return_val[return_val_used++] = p;
1095 /* Like emacs, don't complete on old versions. Especially useful
1096 in the "source" command. */
1097 if (p[strlen (p) - 1] == '~')
1103 /* Return exactly p. */
1104 return_val[return_val_used++] = p;
1105 else if (word > text)
1107 /* Return some portion of p. */
1108 q = xmalloc (strlen (p) + 5);
1109 strcpy (q, p + (word - text));
1110 return_val[return_val_used++] = q;
1115 /* Return some of TEXT plus p. */
1116 q = xmalloc (strlen (p) + (text - word) + 5);
1117 strncpy (q, word, text - word);
1118 q[text - word] = '\0';
1120 return_val[return_val_used++] = q;
1124 subsequent_name = 1;
1127 /* There is no way to do this just long enough to affect quote inserting
1128 without also affecting the next completion. This should be fixed in
1130 /* Insure that readline does the right thing
1131 with respect to inserting quotes. */
1132 rl_completer_word_break_characters = "";
1137 /* Here are some useful test cases for completion. FIXME: These should
1138 be put in the test suite. They should be tested with both M-? and TAB.
1140 "show output-" "radix"
1141 "show output" "-radix"
1142 "p" ambiguous (commands starting with p--path, print, printf, etc.)
1143 "p " ambiguous (all symbols)
1144 "info t foo" no completions
1145 "info t " no completions
1146 "info t" ambiguous ("info target", "info terminal", etc.)
1147 "info ajksdlfk" no completions
1148 "info ajksdlfk " no completions
1150 "info " ambiguous (all info commands)
1151 "p \"a" no completions (string constant)
1152 "p 'a" ambiguous (all symbols starting with a)
1153 "p b-a" ambiguous (all symbols starting with a)
1154 "p b-" ambiguous (all symbols)
1155 "file Make" "file" (word break hard to screw up here)
1156 "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
1159 /* Generate completions one by one for the completer. Each time we are
1160 called return another potential completion to the caller. The function
1161 is misnamed; it just completes on commands or passes the buck to the
1162 command's completer function; the stuff specific to symbol completion
1163 is in make_symbol_completion_list.
1165 TEXT is readline's idea of the "word" we are looking at; we don't really
1166 like readline's ideas about word breaking so we ignore it.
1168 MATCHES is the number of matches that have currently been collected from
1169 calling this completion function. When zero, then we need to initialize,
1170 otherwise the initialization has already taken place and we can just
1171 return the next potential completion string.
1173 Returns NULL if there are no more completions, else a pointer to a string
1174 which is a possible completion.
1176 RL_LINE_BUFFER is available to be looked at; it contains the entire text
1177 of the line. RL_POINT is the offset in that line of the cursor. You
1178 should pretend that the line ends at RL_POINT. */
1181 symbol_completion_function (text, matches)
1185 static char **list = (char **)NULL; /* Cache of completions */
1186 static int index; /* Next cached completion */
1187 char *output = NULL;
1188 char *tmp_command, *p;
1189 /* Pointer within tmp_command which corresponds to text. */
1191 struct cmd_list_element *c, *result_list;
1195 /* The caller is beginning to accumulate a new set of completions, so
1196 we need to find all of them now, and cache them for returning one at
1197 a time on future calls. */
1201 /* Free the storage used by LIST, but not by the strings inside.
1202 This is because rl_complete_internal () frees the strings. */
1208 /* Choose the default set of word break characters to break completions.
1209 If we later find out that we are doing completions on command strings
1210 (as opposed to strings supplied by the individual command completer
1211 functions, which can be any string) then we will switch to the
1212 special word break set for command strings, which leaves out the
1213 '-' character used in some commands. */
1215 rl_completer_word_break_characters =
1216 gdb_completer_word_break_characters;
1218 /* Decide whether to complete on a list of gdb commands or on symbols. */
1219 tmp_command = (char *) alloca (rl_point + 1);
1222 strncpy (tmp_command, rl_line_buffer, rl_point);
1223 tmp_command[rl_point] = '\0';
1224 /* Since text always contains some number of characters leading up
1225 to rl_point, we can find the equivalent position in tmp_command
1226 by subtracting that many characters from the end of tmp_command. */
1227 word = tmp_command + rl_point - strlen (text);
1231 /* An empty line we want to consider ambiguous; that is, it
1232 could be any command. */
1233 c = (struct cmd_list_element *) -1;
1238 c = lookup_cmd_1 (&p, cmdlist, &result_list, 1);
1241 /* Move p up to the next interesting thing. */
1242 while (*p == ' ' || *p == '\t')
1249 /* It is an unrecognized command. So there are no
1250 possible completions. */
1253 else if (c == (struct cmd_list_element *) -1)
1257 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
1258 doesn't advance over that thing itself. Do so now. */
1260 while (*q && (isalnum (*q) || *q == '-' || *q == '_'))
1262 if (q != tmp_command + rl_point)
1264 /* There is something beyond the ambiguous
1265 command, so there are no possible completions. For
1266 example, "info t " or "info t foo" does not complete
1267 to anything, because "info t" can be "info target" or
1273 /* We're trying to complete on the command which was ambiguous.
1274 This we can deal with. */
1277 list = complete_on_cmdlist (*result_list->prefixlist, p,
1282 list = complete_on_cmdlist (cmdlist, p, word);
1284 /* Insure that readline does the right thing with respect to
1285 inserting quotes. */
1286 rl_completer_word_break_characters =
1287 gdb_completer_command_word_break_characters;
1292 /* We've recognized a full command. */
1294 if (p == tmp_command + rl_point)
1296 /* There is no non-whitespace in the line beyond the command. */
1298 if (p[-1] == ' ' || p[-1] == '\t')
1300 /* The command is followed by whitespace; we need to complete
1301 on whatever comes after command. */
1304 /* It is a prefix command; what comes after it is
1305 a subcommand (e.g. "info "). */
1306 list = complete_on_cmdlist (*c->prefixlist, p, word);
1308 /* Insure that readline does the right thing
1309 with respect to inserting quotes. */
1310 rl_completer_word_break_characters =
1311 gdb_completer_command_word_break_characters;
1315 /* It is a normal command; what comes after it is
1316 completed by the command's completer function. */
1317 list = (*c->completer) (p, word);
1322 /* The command is not followed by whitespace; we need to
1323 complete on the command itself. e.g. "p" which is a
1324 command itself but also can complete to "print", "ptype"
1328 /* Find the command we are completing on. */
1330 while (q > tmp_command)
1332 if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_')
1338 list = complete_on_cmdlist (result_list, q, word);
1340 /* Insure that readline does the right thing
1341 with respect to inserting quotes. */
1342 rl_completer_word_break_characters =
1343 gdb_completer_command_word_break_characters;
1348 /* There is non-whitespace beyond the command. */
1350 if (c->prefixlist && !c->allow_unknown)
1352 /* It is an unrecognized subcommand of a prefix command,
1353 e.g. "info adsfkdj". */
1358 /* It is a normal command. */
1359 list = (*c->completer) (p, word);
1365 /* If we found a list of potential completions during initialization then
1366 dole them out one at a time. The vector of completions is NULL
1367 terminated, so after returning the last one, return NULL (and continue
1368 to do so) each time we are called after that, until a new list is
1373 output = list[index];
1381 /* Can't do this because readline hasn't yet checked the word breaks
1382 for figuring out whether to insert a quote. */
1384 /* Make sure the word break characters are set back to normal for the
1385 next time that readline tries to complete something. */
1386 rl_completer_word_break_characters =
1387 gdb_completer_word_break_characters;
1393 /* Skip over a possibly quoted word (as defined by the quote characters
1394 and word break characters the completer uses). Returns pointer to the
1395 location after the "word". */
1401 char quote_char = '\0';
1404 for (scan = str; *scan != '\0'; scan++)
1406 if (quote_char != '\0')
1408 /* Ignore everything until the matching close quote char */
1409 if (*scan == quote_char)
1411 /* Found matching close quote. */
1416 else if (strchr (gdb_completer_quote_characters, *scan))
1418 /* Found start of a quoted string. */
1421 else if (strchr (gdb_completer_word_break_characters, *scan))
1435 #if STOP_SIGNAL == SIGTSTP
1436 signal (SIGTSTP, SIG_DFL);
1438 kill (getpid (), SIGTSTP);
1439 signal (SIGTSTP, stop_sig);
1441 signal (STOP_SIGNAL, stop_sig);
1443 printf_unfiltered ("%s", prompt);
1444 gdb_flush (gdb_stdout);
1446 /* Forget about any previous command -- null line now will do nothing. */
1449 #endif /* STOP_SIGNAL */
1451 /* Initialize signal handlers. */
1461 signal (SIGINT, request_quit);
1463 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
1464 passed to the inferior, which we don't want. It would be
1465 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
1466 on BSD4.3 systems using vfork, that can affect the
1467 GDB process as well as the inferior (the signal handling tables
1468 might be in memory, shared between the two). Since we establish
1469 a handler for SIGQUIT, when we call exec it will set the signal
1470 to SIG_DFL for us. */
1471 signal (SIGQUIT, do_nothing);
1472 if (signal (SIGHUP, do_nothing) != SIG_IGN)
1473 signal (SIGHUP, disconnect);
1474 signal (SIGFPE, float_handler);
1476 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1477 signal (SIGWINCH, SIGWINCH_HANDLER);
1481 /* Read one line from the command input stream `instream'
1482 into the local static buffer `linebuffer' (whose current length
1484 The buffer is made bigger as necessary.
1485 Returns the address of the start of the line.
1487 NULL is returned for end of file.
1489 *If* the instream == stdin & stdin is a terminal, the line read
1490 is copied into the file line saver (global var char *line,
1491 length linesize) so that it can be duplicated.
1493 This routine either uses fancy command line editing or
1494 simple input as the user has requested. */
1497 command_line_input (prrompt, repeat, annotation_suffix)
1500 char *annotation_suffix;
1502 static char *linebuffer = 0;
1503 static unsigned linelength = 0;
1507 char *local_prompt = prrompt;
1512 if (annotation_level > 1 && instream == stdin)
1514 local_prompt = alloca ((prrompt == NULL ? 0 : strlen (prrompt))
1515 + strlen (annotation_suffix) + 40);
1516 if (prrompt == NULL)
1517 local_prompt[0] = '\0';
1519 strcpy (local_prompt, prrompt);
1520 strcat (local_prompt, "\n\032\032");
1521 strcat (local_prompt, annotation_suffix);
1522 strcat (local_prompt, "\n");
1525 if (linebuffer == 0)
1528 linebuffer = (char *) xmalloc (linelength);
1533 /* Control-C quits instantly if typed while in this loop
1534 since it should not wait until the user types a newline. */
1538 signal (STOP_SIGNAL, stop_sig);
1543 /* Make sure that all output has been output. Some machines may let
1544 you get away with leaving out some of the gdb_flush, but not all. */
1546 gdb_flush (gdb_stdout);
1547 gdb_flush (gdb_stderr);
1549 if (source_file_name != NULL)
1551 ++source_line_number;
1552 sprintf (source_error,
1553 "%s%s:%d: Error in sourced command file:\n",
1556 source_line_number);
1557 error_pre_print = source_error;
1560 if (annotation_level > 1 && instream == stdin)
1562 printf_unfiltered ("\n\032\032pre-");
1563 printf_unfiltered (annotation_suffix);
1564 printf_unfiltered ("\n");
1567 /* Don't use fancy stuff if not talking to stdin. */
1568 if (command_editing_p && instream == stdin
1569 && ISATTY (instream))
1570 rl = readline (local_prompt);
1572 rl = gdb_readline (local_prompt);
1574 if (annotation_level > 1 && instream == stdin)
1576 printf_unfiltered ("\n\032\032post-");
1577 printf_unfiltered (annotation_suffix);
1578 printf_unfiltered ("\n");
1581 if (!rl || rl == (char *) EOF)
1586 if (strlen(rl) + 1 + (p - linebuffer) > linelength)
1588 linelength = strlen(rl) + 1 + (p - linebuffer);
1589 nline = (char *) xrealloc (linebuffer, linelength);
1590 p += nline - linebuffer;
1594 /* Copy line. Don't copy null at end. (Leaves line alone
1595 if this was just a newline) */
1599 free (rl); /* Allocated in readline. */
1601 if (p == linebuffer || *(p - 1) != '\\')
1604 p--; /* Put on top of '\'. */
1605 local_prompt = (char *) 0;
1610 signal (STOP_SIGNAL, SIG_DFL);
1617 #define SERVER_COMMAND_LENGTH 7
1619 (p - linebuffer > SERVER_COMMAND_LENGTH)
1620 && STREQN (linebuffer, "server ", SERVER_COMMAND_LENGTH);
1623 /* Note that we don't set `line'. Between this and the check in
1624 dont_repeat, this insures that repeating will still do the
1627 return linebuffer + SERVER_COMMAND_LENGTH;
1630 /* Do history expansion if that is wished. */
1631 if (history_expansion_p && instream == stdin
1632 && ISATTY (instream))
1634 char *history_value;
1637 *p = '\0'; /* Insert null now. */
1638 expanded = history_expand (linebuffer, &history_value);
1641 /* Print the changes. */
1642 printf_unfiltered ("%s\n", history_value);
1644 /* If there was an error, call this function again. */
1647 free (history_value);
1648 return command_line_input (prrompt, repeat, annotation_suffix);
1650 if (strlen (history_value) > linelength)
1652 linelength = strlen (history_value) + 1;
1653 linebuffer = (char *) xrealloc (linebuffer, linelength);
1655 strcpy (linebuffer, history_value);
1656 p = linebuffer + strlen(linebuffer);
1657 free (history_value);
1661 /* If we just got an empty line, and that is supposed
1662 to repeat the previous command, return the value in the
1666 if (p == linebuffer)
1669 while (*p1 == ' ' || *p1 == '\t')
1677 /* Add line to history if appropriate. */
1678 if (instream == stdin
1679 && ISATTY (stdin) && *linebuffer)
1680 add_history (linebuffer);
1682 /* Note: lines consisting solely of comments are added to the command
1683 history. This is useful when you type a command, and then
1684 realize you don't want to execute it quite yet. You can comment
1685 out the command and then later fetch it from the value history
1686 and remove the '#'. The kill ring is probably better, but some
1687 people are in the habit of commenting things out. */
1689 while ((c = *p1++) != '\0')
1692 while ((c = *p1++) != '"')
1694 /* Make sure an escaped '"' doesn't make us think the string
1702 while ((c = *p1++) != '\'')
1704 /* Make sure an escaped '\'' doesn't make us think the string
1713 /* Found a comment. */
1719 /* Save into global buffer if appropriate. */
1722 if (linelength > linesize)
1724 line = xrealloc (line, linelength);
1725 linesize = linelength;
1727 strcpy (line, linebuffer);
1735 /* Expand the body_list of COMMAND so that it can hold NEW_LENGTH
1736 code bodies. This is typically used when we encounter an "else"
1737 clause for an "if" command. */
1740 realloc_body_list (command, new_length)
1741 struct command_line *command;
1745 struct command_line **body_list;
1747 n = command->body_count;
1749 /* Nothing to do? */
1750 if (new_length <= n)
1753 body_list = (struct command_line **)
1754 xmalloc (sizeof (struct command_line *) * new_length);
1756 memcpy (body_list, command->body_list, sizeof (struct command_line *) * n);
1758 free (command->body_list);
1759 command->body_list = body_list;
1760 command->body_count = new_length;
1763 /* Read one line from the input stream. If the command is an "else" or
1764 "end", return such an indication to the caller. */
1766 static enum misc_command_type
1767 read_next_line (command)
1768 struct command_line **command;
1770 char *p, *p1, *prompt_ptr, control_prompt[256];
1773 if (control_level >= 254)
1774 error ("Control nesting too deep!\n");
1776 /* Set a prompt based on the nesting of the control commands. */
1777 if (instream == stdin)
1779 for (i = 0; i < control_level; i++)
1780 control_prompt[i] = ' ';
1781 control_prompt[i] = '>';
1782 control_prompt[i+1] = '\0';
1783 prompt_ptr = (char *)&control_prompt[0];
1788 p = command_line_input (prompt_ptr, instream == stdin, NULL);
1790 /* Not sure what to do here. */
1794 /* Strip leading and trailing whitespace. */
1795 while (*p == ' ' || *p == '\t')
1798 p1 = p + strlen (p);
1799 while (p1 != p && (p1[-1] == ' ' || p1[-1] == '\t'))
1802 /* Blanks and comments don't really do anything, but we need to
1803 distinguish them from else, end and other commands which can be
1805 if (p1 == p || p[0] == '#')
1808 /* Is this the end of a simple, while, or if control structure? */
1809 if (p1 - p == 3 && !strncmp (p, "end", 3))
1812 /* Is the else clause of an if control structure? */
1813 if (p1 - p == 4 && !strncmp (p, "else", 4))
1814 return else_command;
1816 /* Check for while, if, break, continue, etc and build a new command
1817 line structure for them. */
1818 if (p1 - p > 5 && !strncmp (p, "while", 5))
1819 *command = build_command_line (while_control, p + 6);
1820 else if (p1 - p > 2 && !strncmp (p, "if", 2))
1821 *command = build_command_line (if_control, p + 3);
1822 else if (p1 - p == 5 && !strncmp (p, "loop_break", 5))
1824 *command = (struct command_line *)
1825 xmalloc (sizeof (struct command_line));
1826 (*command)->next = NULL;
1827 (*command)->line = NULL;
1828 (*command)->control_type = break_control;
1829 (*command)->body_count = 0;
1830 (*command)->body_list = NULL;
1832 else if (p1 - p == 8 && !strncmp (p, "loop_continue", 8))
1834 *command = (struct command_line *)
1835 xmalloc (sizeof (struct command_line));
1836 (*command)->next = NULL;
1837 (*command)->line = NULL;
1838 (*command)->control_type = continue_control;
1839 (*command)->body_count = 0;
1840 (*command)->body_list = NULL;
1844 /* A normal command. */
1845 *command = (struct command_line *)
1846 xmalloc (sizeof (struct command_line));
1847 (*command)->next = NULL;
1848 (*command)->line = savestring (p, p1 - p);
1849 (*command)->control_type = simple_control;
1850 (*command)->body_count = 0;
1851 (*command)->body_list = NULL;
1854 /* Nothing special. */
1858 /* Recursively read in the control structures and create a command_line
1861 The parent_control parameter is the control structure in which the
1862 following commands are nested. */
1864 static enum command_control_type
1865 recurse_read_control_structure (current_cmd)
1866 struct command_line *current_cmd;
1868 int current_body, i;
1869 enum misc_command_type val;
1870 enum command_control_type ret;
1871 struct command_line **body_ptr, *child_tail, *next;
1872 struct cleanup *old_chains, *tmp_chains;
1878 /* Sanity checks. */
1879 if (current_cmd->control_type == simple_control)
1881 error ("Recursed on a simple control type\n");
1882 return invalid_control;
1885 if (current_body > current_cmd->body_count)
1887 error ("Allocated body is smaller than this command type needs\n");
1888 return invalid_control;
1891 /* Read lines from the input stream and build control structures. */
1897 val = read_next_line (&next);
1899 /* Just skip blanks and comments. */
1900 if (val == nop_command)
1903 if (val == end_command)
1905 if (current_cmd->control_type == while_control
1906 || current_cmd->control_type == if_control)
1908 /* Success reading an entire control structure. */
1909 ret = simple_control;
1914 ret = invalid_control;
1919 /* Not the end of a control structure. */
1920 if (val == else_command)
1922 if (current_cmd->control_type == if_control
1923 && current_body == 1)
1925 realloc_body_list (current_cmd, 2);
1932 ret = invalid_control;
1939 child_tail->next = next;
1943 /* We have just read the first line of the child's control
1944 structure. From now on, arrange to throw away the line
1945 we have if we quit or get an error. */
1946 body_ptr = current_cmd->body_list;
1947 for (i = 1; i < current_body; i++)
1952 tmp_chains = make_cleanup (free_command_lines, body_ptr);
1955 old_chains = tmp_chains;
1960 /* If the latest line is another control structure, then recurse
1962 if (next->control_type == while_control
1963 || next->control_type == if_control)
1966 ret = recurse_read_control_structure (next);
1969 if (ret != simple_control)
1975 if (ret == invalid_control && old_chains)
1976 do_cleanups (old_chains);
1977 else if (old_chains)
1978 discard_cleanups (old_chains);
1984 /* Read lines from the input stream
1985 and accumulate them in a chain of struct command_line's
1986 which is then returned. */
1988 struct command_line *
1989 read_command_lines ()
1991 struct command_line *head, *tail, *next;
1992 struct cleanup *old_chain;
1993 enum command_control_type ret;
1994 enum misc_command_type val;
2001 val = read_next_line (&next);
2003 /* Ignore blank lines or comments. */
2004 if (val == nop_command)
2007 if (val == end_command)
2009 ret = simple_control;
2013 if (val != ok_command)
2015 ret = invalid_control;
2019 if (next->control_type == while_control
2020 || next->control_type == if_control)
2023 ret = recurse_read_control_structure (next);
2026 if (ret == invalid_control)
2037 old_chain = make_cleanup (free_command_lines, &head);
2046 if (ret != invalid_control)
2048 discard_cleanups (old_chain);
2052 do_cleanups (old_chain);
2058 /* Free a chain of struct command_line's. */
2061 free_command_lines (lptr)
2062 struct command_line **lptr;
2064 register struct command_line *l = *lptr;
2065 register struct command_line *next;
2066 struct command_line **blist;
2071 if (l->body_count > 0)
2073 blist = l->body_list;
2074 for (i = 0; i < l->body_count; i++, blist++)
2075 free_command_lines (blist);
2084 /* Add an element to the list of info subcommands. */
2087 add_info (name, fun, doc)
2089 void (*fun) PARAMS ((char *, int));
2092 add_cmd (name, no_class, fun, doc, &infolist);
2095 /* Add an alias to the list of info subcommands. */
2098 add_info_alias (name, oldname, abbrev_flag)
2103 add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
2106 /* The "info" command is defined as a prefix, with allow_unknown = 0.
2107 Therefore, its own definition is called only for "info" with no args. */
2111 info_command (arg, from_tty)
2115 printf_unfiltered ("\"info\" must be followed by the name of an info command.\n");
2116 help_list (infolist, "info ", -1, gdb_stdout);
2119 /* The "complete" command is used by Emacs to implement completion. */
2123 complete_command (arg, from_tty)
2134 rl_line_buffer[0] = '\0';
2139 strcpy (rl_line_buffer, arg);
2140 rl_point = strlen (arg);
2143 for (completion = symbol_completion_function (rl_line_buffer, i = 0);
2145 completion = symbol_completion_function (rl_line_buffer, ++i))
2146 printf_unfiltered ("%s\n", completion);
2149 /* The "show" command with no arguments shows all the settings. */
2153 show_command (arg, from_tty)
2157 cmd_show_list (showlist, from_tty, "");
2160 /* Add an element to the list of commands. */
2163 add_com (name, class, fun, doc)
2165 enum command_class class;
2166 void (*fun) PARAMS ((char *, int));
2169 add_cmd (name, class, fun, doc, &cmdlist);
2172 /* Add an alias or abbreviation command to the list of commands. */
2175 add_com_alias (name, oldname, class, abbrev_flag)
2178 enum command_class class;
2181 add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
2188 error ("Argument required (%s).", why);
2193 help_command (command, from_tty)
2195 int from_tty; /* Ignored */
2197 help_cmd (command, gdb_stdout);
2201 validate_comname (comname)
2207 error_no_arg ("name of command to define");
2212 if (!isalnum(*p) && *p != '-')
2213 error ("Junk in argument list: \"%s\"", p);
2218 /* This is just a placeholder in the command data structures. */
2220 user_defined_command (ignore, from_tty)
2227 define_command (comname, from_tty)
2231 register struct command_line *cmds;
2232 register struct cmd_list_element *c, *newc, *hookc = 0;
2233 char *tem = comname;
2234 #define HOOK_STRING "hook-"
2237 validate_comname (comname);
2239 /* Look it up, and verify that we got an exact match. */
2240 c = lookup_cmd (&tem, cmdlist, "", -1, 1);
2241 if (c && !STREQ (comname, c->name))
2246 if (c->class == class_user || c->class == class_alias)
2247 tem = "Redefine command \"%s\"? ";
2249 tem = "Really redefine built-in command \"%s\"? ";
2250 if (!query (tem, c->name))
2251 error ("Command \"%s\" not redefined.", c->name);
2254 /* If this new command is a hook, then mark the command which it
2255 is hooking. Note that we allow hooking `help' commands, so that
2256 we can hook the `stop' pseudo-command. */
2258 if (!strncmp (comname, HOOK_STRING, HOOK_LEN))
2260 /* Look up cmd it hooks, and verify that we got an exact match. */
2261 tem = comname+HOOK_LEN;
2262 hookc = lookup_cmd (&tem, cmdlist, "", -1, 0);
2263 if (hookc && !STREQ (comname+HOOK_LEN, hookc->name))
2267 warning ("Your new `%s' command does not hook any existing command.",
2269 if (!query ("Proceed? ", (char *)0))
2270 error ("Not confirmed.");
2274 comname = savestring (comname, strlen (comname));
2276 /* If the rest of the commands will be case insensitive, this one
2277 should behave in the same manner. */
2278 for (tem = comname; *tem; tem++)
2279 if (isupper(*tem)) *tem = tolower(*tem);
2283 printf_unfiltered ("Type commands for definition of \"%s\".\n\
2284 End with a line saying just \"end\".\n", comname);
2285 gdb_flush (gdb_stdout);
2289 cmds = read_command_lines ();
2291 if (c && c->class == class_user)
2292 free_command_lines (&c->user_commands);
2294 newc = add_cmd (comname, class_user, user_defined_command,
2295 (c && c->class == class_user)
2296 ? c->doc : savestring ("User-defined.", 13), &cmdlist);
2297 newc->user_commands = cmds;
2299 /* If this new command is a hook, then mark both commands as being
2303 hookc->hook = newc; /* Target gets hooked. */
2304 newc->hookee = hookc; /* We are marked as hooking target cmd. */
2309 document_command (comname, from_tty)
2313 struct command_line *doclines;
2314 register struct cmd_list_element *c;
2315 char *tem = comname;
2317 validate_comname (comname);
2319 c = lookup_cmd (&tem, cmdlist, "", 0, 1);
2321 if (c->class != class_user)
2322 error ("Command \"%s\" is built-in.", comname);
2325 printf_unfiltered ("Type documentation for \"%s\".\n\
2326 End with a line saying just \"end\".\n", comname);
2328 doclines = read_command_lines ();
2330 if (c->doc) free (c->doc);
2333 register struct command_line *cl1;
2334 register int len = 0;
2336 for (cl1 = doclines; cl1; cl1 = cl1->next)
2337 len += strlen (cl1->line) + 1;
2339 c->doc = (char *) xmalloc (len + 1);
2342 for (cl1 = doclines; cl1; cl1 = cl1->next)
2344 strcat (c->doc, cl1->line);
2346 strcat (c->doc, "\n");
2350 free_command_lines (&doclines);
2354 print_gnu_advertisement ()
2356 printf_unfiltered ("\
2357 GDB is free software and you are welcome to distribute copies of it\n\
2358 under certain conditions; type \"show copying\" to see the conditions.\n\
2359 There is absolutely no warranty for GDB; type \"show warranty\" for details.\n\
2364 print_gdb_version (stream)
2367 fprintf_filtered (stream, "\
2368 GDB %s (%s", version, host_name);
2370 if (!STREQ (host_name, target_name))
2371 fprintf_filtered (stream, " --target %s", target_name);
2373 fprintf_filtered (stream, "), ");
2375 fprintf_filtered (stream, "Copyright 1994 Free Software Foundation, Inc.");
2380 show_version (args, from_tty)
2385 print_gnu_advertisement ();
2386 print_gdb_version (gdb_stdout);
2387 printf_filtered ("\n");
2391 /* xgdb calls this to reprint the usual GDB prompt. Obsolete now that xgdb
2397 printf_unfiltered ("%s", prompt);
2398 gdb_flush (gdb_stdout);
2402 quit_command (args, from_tty)
2406 if (inferior_pid != 0 && target_has_execution)
2410 if (query ("The program is running. Quit anyway (and detach it)? "))
2411 target_detach (args, from_tty);
2413 error ("Not confirmed.");
2417 if (query ("The program is running. Quit anyway (and kill it)? "))
2420 error ("Not confirmed.");
2423 /* UDI wants this, to kill the TIP. */
2426 /* Save the history information if it is appropriate to do so. */
2427 if (write_history_p && history_filename)
2428 write_history (history_filename);
2433 /* Returns whether GDB is running on a terminal and whether the user
2434 desires that questions be asked of them on that terminal. */
2437 input_from_terminal_p ()
2439 return gdb_has_a_terminal () && (instream == stdin) & caution;
2444 pwd_command (args, from_tty)
2448 if (args) error ("The \"pwd\" command does not take an argument: %s", args);
2449 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
2451 if (!STREQ (gdb_dirbuf, current_directory))
2452 printf_unfiltered ("Working directory %s\n (canonically %s).\n",
2453 current_directory, gdb_dirbuf);
2455 printf_unfiltered ("Working directory %s.\n", current_directory);
2459 cd_command (dir, from_tty)
2464 /* Found something other than leading repetitions of "/..". */
2465 int found_real_path;
2468 /* If the new directory is absolute, repeat is a no-op; if relative,
2469 repeat might be useful but is more likely to be a mistake. */
2473 error_no_arg ("new working directory");
2475 dir = tilde_expand (dir);
2476 make_cleanup (free, dir);
2478 if (chdir (dir) < 0)
2479 perror_with_name (dir);
2482 dir = savestring (dir, len - (len > 1 && dir[len-1] == '/'));
2484 current_directory = dir;
2487 if (current_directory[0] == '/' && current_directory[1] == '\0')
2488 current_directory = concat (current_directory, dir, NULL);
2490 current_directory = concat (current_directory, "/", dir, NULL);
2494 /* Now simplify any occurrences of `.' and `..' in the pathname. */
2496 found_real_path = 0;
2497 for (p = current_directory; *p;)
2499 if (p[0] == '/' && p[1] == '.' && (p[2] == 0 || p[2] == '/'))
2501 else if (p[0] == '/' && p[1] == '.' && p[2] == '.'
2502 && (p[3] == 0 || p[3] == '/'))
2504 if (found_real_path)
2506 /* Search backwards for the directory just before the "/.."
2507 and obliterate it and the "/..". */
2509 while (q != current_directory && q[-1] != '/')
2512 if (q == current_directory)
2513 /* current_directory is
2514 a relative pathname ("can't happen"--leave it alone). */
2518 strcpy (q - 1, p + 3);
2523 /* We are dealing with leading repetitions of "/..", for example
2524 "/../..", which is the Mach super-root. */
2529 found_real_path = 1;
2534 forget_cached_source_info ();
2537 pwd_command ((char *) 0, 1);
2540 struct source_cleanup_lines_args {
2543 char *old_pre_error;
2544 char *old_error_pre_print;
2548 source_cleanup_lines (args)
2551 struct source_cleanup_lines_args *p =
2552 (struct source_cleanup_lines_args *)args;
2553 source_line_number = p->old_line;
2554 source_file_name = p->old_file;
2555 source_pre_error = p->old_pre_error;
2556 error_pre_print = p->old_error_pre_print;
2561 source_command (args, from_tty)
2566 struct cleanup *old_cleanups;
2568 struct source_cleanup_lines_args old_lines;
2573 error ("source command requires pathname of file to source.");
2576 file = tilde_expand (file);
2577 old_cleanups = make_cleanup (free, file);
2579 stream = fopen (file, FOPEN_RT);
2581 perror_with_name (file);
2583 make_cleanup (fclose, stream);
2585 old_lines.old_line = source_line_number;
2586 old_lines.old_file = source_file_name;
2587 old_lines.old_pre_error = source_pre_error;
2588 old_lines.old_error_pre_print = error_pre_print;
2589 make_cleanup (source_cleanup_lines, &old_lines);
2590 source_line_number = 0;
2591 source_file_name = file;
2592 source_pre_error = error_pre_print == NULL ? "" : error_pre_print;
2593 source_pre_error = savestring (source_pre_error, strlen (source_pre_error));
2594 make_cleanup (free, source_pre_error);
2595 /* This will get set every time we read a line. So it won't stay "" for
2597 error_pre_print = "";
2599 needed_length = strlen (source_file_name) + strlen (source_pre_error) + 80;
2600 if (source_error_allocated < needed_length)
2602 source_error_allocated *= 2;
2603 if (source_error_allocated < needed_length)
2604 source_error_allocated = needed_length;
2605 if (source_error == NULL)
2606 source_error = xmalloc (source_error_allocated);
2608 source_error = xrealloc (source_error, source_error_allocated);
2611 read_command_file (stream);
2613 do_cleanups (old_cleanups);
2618 echo_command (text, from_tty)
2626 while ((c = *p++) != '\0')
2630 /* \ at end of argument is used after spaces
2631 so they won't be lost. */
2635 c = parse_escape (&p);
2637 printf_filtered ("%c", c);
2640 printf_filtered ("%c", c);
2643 /* Force this output to appear now. */
2645 gdb_flush (gdb_stdout);
2649 #ifdef TARGET_BYTE_ORDER_SELECTABLE
2651 /* Functions to manipulate the endianness of the target. */
2653 #ifndef TARGET_BYTE_ORDER_DEFAULT
2654 #define TARGET_BYTE_ORDER_DEFAULT BIG_ENDIAN
2657 int target_byte_order = TARGET_BYTE_ORDER_DEFAULT;
2659 static int target_byte_order_auto = 1;
2661 /* Called if the user enters ``set endian'' without an argument. */
2663 set_endian (args, from_tty)
2667 printf_unfiltered ("\"set endian\" must be followed by \"auto\", \"big\" or \"little\".\n");
2668 show_endian (args, from_tty);
2671 /* Called by ``set endian big''. */
2673 set_endian_big (args, from_tty)
2677 target_byte_order = BIG_ENDIAN;
2678 target_byte_order_auto = 0;
2681 /* Called by ``set endian little''. */
2683 set_endian_little (args, from_tty)
2687 target_byte_order = LITTLE_ENDIAN;
2688 target_byte_order_auto = 0;
2691 /* Called by ``set endian auto''. */
2693 set_endian_auto (args, from_tty)
2697 target_byte_order_auto = 1;
2700 /* Called by ``show endian''. */
2702 show_endian (args, from_tty)
2707 (target_byte_order_auto
2708 ? "The target endianness is set automatically (currently %s endian)\n"
2709 : "The target is assumed to be %s endian\n");
2710 printf_unfiltered (msg, TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
2713 #endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
2715 /* Set the endianness from a BFD. */
2717 set_endian_from_file (abfd)
2720 #ifdef TARGET_BYTE_ORDER_SELECTABLE
2723 if (abfd->xvec->byteorder_big_p)
2726 want = LITTLE_ENDIAN;
2727 if (target_byte_order_auto)
2728 target_byte_order = want;
2729 else if (target_byte_order != want)
2730 warning ("%s endian file does not match %s endian target.",
2731 want == BIG_ENDIAN ? "big" : "little",
2732 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
2734 #else /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */
2736 if (abfd->xvec->byteorder_big_p
2737 ? TARGET_BYTE_ORDER != BIG_ENDIAN
2738 : TARGET_BYTE_ORDER == BIG_ENDIAN)
2739 warning ("%s endian file does not match %s endian target.",
2740 abfd->xvec->byteorder_big_p ? "big" : "little",
2741 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
2743 #endif /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */
2746 /* Functions to manipulate command line editing control variables. */
2748 /* Number of commands to print in each call to show_commands. */
2749 #define Hist_print 10
2751 show_commands (args, from_tty)
2755 /* Index for history commands. Relative to history_base. */
2758 /* Number of the history entry which we are planning to display next.
2759 Relative to history_base. */
2762 /* The first command in the history which doesn't exist (i.e. one more
2763 than the number of the last command). Relative to history_base. */
2766 extern HIST_ENTRY *history_get PARAMS ((int));
2768 /* Print out some of the commands from the command history. */
2769 /* First determine the length of the history list. */
2770 hist_len = history_size;
2771 for (offset = 0; offset < history_size; offset++)
2773 if (!history_get (history_base + offset))
2782 if (args[0] == '+' && args[1] == '\0')
2783 /* "info editing +" should print from the stored position. */
2786 /* "info editing <exp>" should print around command number <exp>. */
2787 num = (parse_and_eval_address (args) - history_base) - Hist_print / 2;
2789 /* "show commands" means print the last Hist_print commands. */
2792 num = hist_len - Hist_print;
2798 /* If there are at least Hist_print commands, we want to display the last
2799 Hist_print rather than, say, the last 6. */
2800 if (hist_len - num < Hist_print)
2802 num = hist_len - Hist_print;
2807 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
2809 printf_filtered ("%5d %s\n", history_base + offset,
2810 (history_get (history_base + offset))->line);
2813 /* The next command we want to display is the next one that we haven't
2817 /* If the user repeats this command with return, it should do what
2818 "show commands +" does. This is unnecessary if arg is null,
2819 because "show commands +" is not useful after "show commands". */
2820 if (from_tty && args)
2827 /* Called by do_setshow_command. */
2830 set_history_size_command (args, from_tty, c)
2833 struct cmd_list_element *c;
2835 if (history_size == INT_MAX)
2836 unstifle_history ();
2837 else if (history_size >= 0)
2838 stifle_history (history_size);
2841 history_size = INT_MAX;
2842 error ("History size must be non-negative");
2848 set_history (args, from_tty)
2852 printf_unfiltered ("\"set history\" must be followed by the name of a history subcommand.\n");
2853 help_list (sethistlist, "set history ", -1, gdb_stdout);
2858 show_history (args, from_tty)
2862 cmd_show_list (showhistlist, from_tty, "");
2865 int info_verbose = 0; /* Default verbose msgs off */
2867 /* Called by do_setshow_command. An elaborate joke. */
2870 set_verbose (args, from_tty, c)
2873 struct cmd_list_element *c;
2875 char *cmdname = "verbose";
2876 struct cmd_list_element *showcmd;
2878 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
2882 c->doc = "Set verbose printing of informational messages.";
2883 showcmd->doc = "Show verbose printing of informational messages.";
2887 c->doc = "Set verbosity.";
2888 showcmd->doc = "Show verbosity.";
2893 float_handler (signo)
2896 /* This message is based on ANSI C, section 4.7. Note that integer
2897 divide by zero causes this, so "float" is a misnomer. */
2898 signal (SIGFPE, float_handler);
2899 error ("Erroneous arithmetic operation.");
2911 enablebreaklist = NULL;
2915 #ifdef TARGET_BYTE_ORDER_SELECTABLE
2919 showhistlist = NULL;
2920 unsethistlist = NULL;
2921 #if MAINTENANCE_CMDS
2922 maintenancelist = NULL;
2923 maintenanceinfolist = NULL;
2924 maintenanceprintlist = NULL;
2926 setprintlist = NULL;
2927 showprintlist = NULL;
2928 setchecklist = NULL;
2929 showchecklist = NULL;
2932 /* Init the history buffer. Note that we are called after the init file(s)
2933 * have been read so that the user can change the history file via his
2934 * .gdbinit file (for instance). The GDBHISTFILE environment variable
2935 * overrides all of this.
2943 tmpenv = getenv ("HISTSIZE");
2945 history_size = atoi (tmpenv);
2946 else if (!history_size)
2949 stifle_history (history_size);
2951 tmpenv = getenv ("GDBHISTFILE");
2953 history_filename = savestring (tmpenv, strlen(tmpenv));
2954 else if (!history_filename) {
2955 /* We include the current directory so that if the user changes
2956 directories the file written will be the same as the one
2958 history_filename = concat (current_directory, "/.gdb_history", NULL);
2960 read_history (history_filename);
2966 struct cmd_list_element *c;
2968 #ifdef TARGET_BYTE_ORDER_SELECTABLE
2970 add_prefix_cmd ("endian", class_support, set_endian,
2971 "Set endianness of target.",
2972 &endianlist, "set endian ", 0, &setlist);
2973 add_cmd ("big", class_support, set_endian_big,
2974 "Set target as being big endian.", &endianlist);
2975 add_cmd ("little", class_support, set_endian_little,
2976 "Set target as being little endian.", &endianlist);
2977 add_cmd ("auto", class_support, set_endian_auto,
2978 "Select target endianness automatically.", &endianlist);
2979 add_cmd ("endian", class_support, show_endian,
2980 "Show endianness of target.", &showlist);
2982 #endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
2984 #ifdef DEFAULT_PROMPT
2985 prompt = savestring (DEFAULT_PROMPT, strlen(DEFAULT_PROMPT));
2987 prompt = savestring ("(gdb) ", 6);
2990 /* Set the important stuff up for command editing. */
2991 command_editing_p = 1;
2992 history_expansion_p = 0;
2993 write_history_p = 0;
2995 /* Setup important stuff for command line editing. */
2996 rl_completion_entry_function = (int (*)()) symbol_completion_function;
2997 rl_completer_word_break_characters = gdb_completer_word_break_characters;
2998 rl_completer_quote_characters = gdb_completer_quote_characters;
2999 rl_readline_name = "gdb";
3001 /* Define the classes of commands.
3002 They will appear in the help list in the reverse of this order. */
3004 add_cmd ("internals", class_maintenance, NO_FUNCTION,
3005 "Maintenance commands.\n\
3006 Some gdb commands are provided just for use by gdb maintainers.\n\
3007 These commands are subject to frequent change, and may not be as\n\
3008 well documented as user commands.",
3010 add_cmd ("obscure", class_obscure, NO_FUNCTION, "Obscure features.", &cmdlist);
3011 add_cmd ("aliases", class_alias, NO_FUNCTION, "Aliases of other commands.", &cmdlist);
3012 add_cmd ("user-defined", class_user, NO_FUNCTION, "User-defined commands.\n\
3013 The commands in this class are those defined by the user.\n\
3014 Use the \"define\" command to define a command.", &cmdlist);
3015 add_cmd ("support", class_support, NO_FUNCTION, "Support facilities.", &cmdlist);
3016 add_cmd ("status", class_info, NO_FUNCTION, "Status inquiries.", &cmdlist);
3017 add_cmd ("files", class_files, NO_FUNCTION, "Specifying and examining files.", &cmdlist);
3018 add_cmd ("breakpoints", class_breakpoint, NO_FUNCTION, "Making program stop at certain points.", &cmdlist);
3019 add_cmd ("data", class_vars, NO_FUNCTION, "Examining data.", &cmdlist);
3020 add_cmd ("stack", class_stack, NO_FUNCTION, "Examining the stack.\n\
3021 The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
3022 counting from zero for the innermost (currently executing) frame.\n\n\
3023 At any time gdb identifies one frame as the \"selected\" frame.\n\
3024 Variable lookups are done with respect to the selected frame.\n\
3025 When the program being debugged stops, gdb selects the innermost frame.\n\
3026 The commands below can be used to select other frames by number or address.",
3028 add_cmd ("running", class_run, NO_FUNCTION, "Running the program.", &cmdlist);
3030 add_com ("pwd", class_files, pwd_command,
3031 "Print working directory. This is used for your program as well.");
3032 c = add_cmd ("cd", class_files, cd_command,
3033 "Set working directory to DIR for debugger and program being debugged.\n\
3034 The change does not take effect for the program being debugged\n\
3035 until the next time it is started.", &cmdlist);
3036 c->completer = filename_completer;
3039 (add_set_cmd ("prompt", class_support, var_string, (char *)&prompt,
3044 add_com ("echo", class_support, echo_command,
3045 "Print a constant string. Give string as argument.\n\
3046 C escape sequences may be used in the argument.\n\
3047 No newline is added at the end of the argument;\n\
3048 use \"\\n\" if you want a newline to be printed.\n\
3049 Since leading and trailing whitespace are ignored in command arguments,\n\
3050 if you want to print some you must use \"\\\" before leading whitespace\n\
3051 to be printed or after trailing whitespace.");
3052 add_com ("document", class_support, document_command,
3053 "Document a user-defined command.\n\
3054 Give command name as argument. Give documentation on following lines.\n\
3055 End with a line of just \"end\".");
3056 add_com ("define", class_support, define_command,
3057 "Define a new command name. Command name is argument.\n\
3058 Definition appears on following lines, one command per line.\n\
3059 End with a line of just \"end\".\n\
3060 Use the \"document\" command to give documentation for the new command.\n\
3061 Commands defined in this way do not take arguments.");
3064 c = add_cmd ("source", class_support, source_command,
3065 "Read commands from a file named FILE.\n\
3066 Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
3067 when gdb is started.", &cmdlist);
3069 /* Punt file name, we can't help it easily. */
3070 c = add_cmd ("source", class_support, source_command,
3071 "Read commands from a file named FILE.\n\
3072 Note that the file \".gdbinit\" is read automatically in this way\n\
3073 when gdb is started.", &cmdlist);
3075 c->completer = filename_completer;
3077 add_com ("quit", class_support, quit_command, "Exit gdb.");
3078 add_com ("help", class_support, help_command, "Print list of commands.");
3079 add_com_alias ("q", "quit", class_support, 1);
3080 add_com_alias ("h", "help", class_support, 1);
3083 c = add_set_cmd ("verbose", class_support, var_boolean, (char *)&info_verbose,
3086 add_show_from_set (c, &showlist);
3087 c->function.sfunc = set_verbose;
3088 set_verbose (NULL, 0, c);
3091 (add_set_cmd ("editing", class_support, var_boolean, (char *)&command_editing_p,
3092 "Set editing of command lines as they are typed.\n\
3093 Use \"on\" to enable to enable the editing, and \"off\" to disable it.\n\
3094 Without an argument, command line editing is enabled. To edit, use\n\
3095 EMACS-like or VI-like commands like control-P or ESC.", &setlist),
3098 add_prefix_cmd ("history", class_support, set_history,
3099 "Generic command for setting command history parameters.",
3100 &sethistlist, "set history ", 0, &setlist);
3101 add_prefix_cmd ("history", class_support, show_history,
3102 "Generic command for showing command history parameters.",
3103 &showhistlist, "show history ", 0, &showlist);
3106 (add_set_cmd ("expansion", no_class, var_boolean, (char *)&history_expansion_p,
3107 "Set history expansion on command input.\n\
3108 Without an argument, history expansion is enabled.", &sethistlist),
3112 (add_set_cmd ("save", no_class, var_boolean, (char *)&write_history_p,
3113 "Set saving of the history record on exit.\n\
3114 Use \"on\" to enable to enable the saving, and \"off\" to disable it.\n\
3115 Without an argument, saving is enabled.", &sethistlist),
3118 c = add_set_cmd ("size", no_class, var_integer, (char *)&history_size,
3119 "Set the size of the command history, \n\
3120 ie. the number of previous commands to keep a record of.", &sethistlist);
3121 add_show_from_set (c, &showhistlist);
3122 c->function.sfunc = set_history_size_command;
3125 (add_set_cmd ("filename", no_class, var_filename, (char *)&history_filename,
3126 "Set the filename in which to record the command history\n\
3127 (the list of previous commands of which a record is kept).", &sethistlist),
3131 (add_set_cmd ("confirm", class_support, var_boolean,
3133 "Set whether to confirm potentially dangerous operations.",
3137 add_prefix_cmd ("info", class_info, info_command,
3138 "Generic command for showing things about the program being debugged.",
3139 &infolist, "info ", 0, &cmdlist);
3140 add_com_alias ("i", "info", class_info, 1);
3142 add_com ("complete", class_obscure, complete_command,
3143 "List the completions for the rest of the line as a command.");
3145 add_prefix_cmd ("show", class_info, show_command,
3146 "Generic command for showing things about the debugger.",
3147 &showlist, "show ", 0, &cmdlist);
3148 /* Another way to get at the same thing. */
3149 add_info ("set", show_command, "Show all GDB settings.");
3151 add_cmd ("commands", no_class, show_commands,
3152 "Show the the history of commands you typed.\n\
3153 You can supply a command number to start with, or a `+' to start after\n\
3154 the previous command number shown.",
3157 add_cmd ("version", no_class, show_version,
3158 "Show what version of GDB this is.", &showlist);
3160 add_com ("while", class_support, while_command,
3161 "Execute nested commands WHILE the conditional expression is non zero.\n\
3162 The conditional expression must follow the word `while' and must in turn be\
3163 followed by a new line. The nested commands must be entered one per line,\
3164 and should be terminated by the word `end'.");
3166 add_com ("if", class_support, if_command,
3167 "Execute nested commands once IF the conditional expression is non zero.\n\
3168 The conditional expression must follow the word `if' and must in turn be\
3169 followed by a new line. The nested commands must be entered one per line,\
3170 and should be terminated by the word 'else' or `end'. If an else clause\
3171 is used, the same rules apply to its nested commands as to the first ones.");
3173 /* If target is open when baud changes, it doesn't take effect until the
3174 next open (I think, not sure). */
3175 add_show_from_set (add_set_cmd ("remotebaud", no_class,
3176 var_zinteger, (char *)&baud_rate,
3177 "Set baud rate for remote serial I/O.\n\
3178 This value is used to set the speed of the serial port when debugging\n\
3179 using remote targets.", &setlist),
3183 add_set_cmd ("remotedebug", no_class, var_zinteger, (char *)&remote_debug,
3184 "Set debugging of remote protocol.\n\
3185 When enabled, each packet sent or received with the remote target\n\
3186 is displayed.", &setlist),