1 /* Top level stuff for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995
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 extern void initialize_targets PARAMS ((void));
61 extern void initialize_utils PARAMS ((void));
63 /* Prototypes for local functions */
65 static char * line_completion_function PARAMS ((char *, int, char *, int));
67 static char * readline_line_completion_function PARAMS ((char *, int));
69 static void command_loop_marker PARAMS ((int));
71 static void while_command PARAMS ((char *, int));
73 static void if_command PARAMS ((char *, int));
75 static struct command_line *
76 build_command_line PARAMS ((enum command_control_type, char *));
78 static struct command_line *
79 get_command_line PARAMS ((enum command_control_type, char *));
81 static void realloc_body_list PARAMS ((struct command_line *, int));
83 static enum misc_command_type read_next_line PARAMS ((struct command_line **));
85 static enum command_control_type
86 recurse_read_control_structure PARAMS ((struct command_line *));
88 static struct cleanup * setup_user_args PARAMS ((char *));
90 static char * locate_arg PARAMS ((char *));
92 static char * insert_args PARAMS ((char *));
94 static void arg_cleanup PARAMS ((void));
96 static void init_main PARAMS ((void));
98 static void init_cmd_lists PARAMS ((void));
100 static void float_handler PARAMS ((int));
102 static void init_signals PARAMS ((void));
104 static void set_verbose PARAMS ((char *, int, struct cmd_list_element *));
106 #ifdef TARGET_BYTE_ORDER_SELECTABLE
108 static void set_endian PARAMS ((char *, int));
110 static void set_endian_big PARAMS ((char *, int));
112 static void set_endian_little PARAMS ((char *, int));
114 static void set_endian_auto PARAMS ((char *, int));
116 static void show_endian PARAMS ((char *, int));
120 static void show_history PARAMS ((char *, int));
122 static void set_history PARAMS ((char *, int));
124 static void set_history_size_command PARAMS ((char *, int,
125 struct cmd_list_element *));
127 static void show_commands PARAMS ((char *, int));
129 static void echo_command PARAMS ((char *, int));
131 static void pwd_command PARAMS ((char *, int));
133 static void show_version PARAMS ((char *, int));
135 static void document_command PARAMS ((char *, int));
137 static void define_command PARAMS ((char *, int));
139 static void validate_comname PARAMS ((char *));
141 static void help_command PARAMS ((char *, int));
143 static void show_command PARAMS ((char *, int));
145 static void info_command PARAMS ((char *, int));
147 static void complete_command PARAMS ((char *, int));
149 static void do_nothing PARAMS ((int));
151 static int quit_cover PARAMS ((char *));
153 static void disconnect PARAMS ((int));
155 static void source_cleanup PARAMS ((FILE *));
157 /* If this definition isn't overridden by the header files, assume
158 that isatty and fileno exist on this system. */
160 #define ISATTY(FP) (isatty (fileno (FP)))
163 /* Initialization file name for gdb. This is overridden in some configs. */
165 #ifndef GDBINIT_FILENAME
166 #define GDBINIT_FILENAME ".gdbinit"
168 char gdbinit[] = GDBINIT_FILENAME;
170 int inhibit_gdbinit = 0;
172 /* If nonzero, and GDB has been configured to be able to use windows,
173 attempt to open them upon startup. */
177 /* Version number of GDB, as a string. */
179 extern char *version;
181 /* Canonical host name as a string. */
183 extern char *host_name;
185 /* Canonical target name as a string. */
187 extern char *target_name;
189 extern char lang_frame_mismatch_warn[]; /* language.c */
191 /* Flag for whether we want all the "from_tty" gubbish printed. */
193 int caution = 1; /* Default is yes, sigh. */
195 /* Define all cmd_list_elements. */
197 /* Chain containing all defined commands. */
199 struct cmd_list_element *cmdlist;
201 /* Chain containing all defined info subcommands. */
203 struct cmd_list_element *infolist;
205 /* Chain containing all defined enable subcommands. */
207 struct cmd_list_element *enablelist;
209 /* Chain containing all defined disable subcommands. */
211 struct cmd_list_element *disablelist;
213 /* Chain containing all defined delete subcommands. */
215 struct cmd_list_element *deletelist;
217 /* Chain containing all defined "enable breakpoint" subcommands. */
219 struct cmd_list_element *enablebreaklist;
221 /* Chain containing all defined set subcommands */
223 struct cmd_list_element *setlist;
225 /* Chain containing all defined unset subcommands */
227 struct cmd_list_element *unsetlist;
229 /* Chain containing all defined show subcommands. */
231 struct cmd_list_element *showlist;
233 #ifdef TARGET_BYTE_ORDER_SELECTABLE
234 /* Chain containing the \"set endian\" commands. */
236 struct cmd_list_element *endianlist;
239 /* Chain containing all defined \"set history\". */
241 struct cmd_list_element *sethistlist;
243 /* Chain containing all defined \"show history\". */
245 struct cmd_list_element *showhistlist;
247 /* Chain containing all defined \"unset history\". */
249 struct cmd_list_element *unsethistlist;
251 /* Chain containing all defined maintenance subcommands. */
254 struct cmd_list_element *maintenancelist;
257 /* Chain containing all defined "maintenance info" subcommands. */
260 struct cmd_list_element *maintenanceinfolist;
263 /* Chain containing all defined "maintenance print" subcommands. */
266 struct cmd_list_element *maintenanceprintlist;
269 struct cmd_list_element *setprintlist;
271 struct cmd_list_element *showprintlist;
273 struct cmd_list_element *setchecklist;
275 struct cmd_list_element *showchecklist;
277 /* stdio stream that command input is being read from. Set to stdin normally.
278 Set by source_command to the file we are sourcing. Set to NULL if we are
279 executing a user-defined command. */
283 /* Current working directory. */
285 char *current_directory;
287 /* The directory name is actually stored here (usually). */
288 char gdb_dirbuf[1024];
290 /* Function to call before reading a command, if nonzero.
291 The function receives two args: an input stream,
292 and a prompt string. */
294 void (*window_hook) PARAMS ((FILE *, char *));
299 /* gdb prints this when reading a command interactively */
302 /* Buffer used for reading command lines, and the size
303 allocated for it so far. */
308 /* Nonzero if the current command is modified by "server ". This
309 affects things like recording into the command history, comamnds
310 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
311 whatever) can issue its own commands and also send along commands
312 from the user, and have the user not notice that the user interface
313 is issuing commands too. */
316 /* Baud rate specified for talking to serial target systems. Default
317 is left as -1, so targets can choose their own defaults. */
318 /* FIXME: This means that "show remotebaud" and gr_files_info can print -1
319 or (unsigned int)-1. This is a Bad User Interface. */
323 /* Non-zero tells remote* modules to output debugging info. */
325 int remote_debug = 0;
327 /* Level of control structure. */
328 static int control_level;
330 /* Structure for arguments to user defined functions. */
331 #define MAXUSERARGS 10
334 struct user_args *next;
343 /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
347 #define STOP_SIGNAL SIGTSTP
348 static void stop_sig PARAMS ((int));
352 /* Some System V have job control but not sigsetmask(). */
353 #if !defined (HAVE_SIGSETMASK)
355 #define HAVE_SIGSETMASK 1
357 #define HAVE_SIGSETMASK 0
361 #if 0 == (HAVE_SIGSETMASK)
362 #define sigsetmask(n)
365 /* Hooks for alternate command interfaces. */
367 /* Called after most modules have been initialized, but before taking users
370 void (*init_ui_hook) PARAMS ((void));
372 /* Called instead of command_loop at top level. Can be invoked via
373 return_to_top_level. */
375 void (*command_loop_hook) PARAMS ((void));
377 /* Called instead of fputs for all output. */
379 void (*fputs_unfiltered_hook) PARAMS ((const char *linebuffer, FILE *stream));
381 /* Called from print_frame_info to list the line we stopped in. */
383 void (*print_frame_info_listing_hook) PARAMS ((struct symtab *s, int line,
384 int stopline, int noerror));
385 /* Replaces most of query. */
387 int (*query_hook) PARAMS (());
389 /* Called from gdb_flush to flush output. */
391 void (*flush_hook) PARAMS ((FILE *stream));
393 /* Called as appropriate to notify the interface of the specified breakpoint
396 void (*create_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
397 void (*delete_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
398 void (*modify_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
400 /* Called during long calculations to allow GUI to repair window damage, and to
401 check for stop buttons, etc... */
403 void (*interactive_hook) PARAMS ((void));
405 /* Called when the registers have changed, as a hint to a GUI
406 to minimize window update. */
408 void (*registers_changed_hook) PARAMS ((void));
410 /* Called when going to wait for the target. Usually allows the GUI to run
411 while waiting for target events. */
413 int (*target_wait_hook) PARAMS ((int pid, struct target_waitstatus *status));
415 /* Used by UI as a wrapper around command execution. May do various things
416 like enabling/disabling buttons, etc... */
418 void (*call_command_hook) PARAMS ((struct cmd_list_element *c, char *cmd,
422 /* Takes control from error (). Typically used to prevent longjmps out of the
423 middle of the GUI. Usually used in conjunction with a catch routine. */
425 NORETURN void (*error_hook) PARAMS (());
428 /* Where to go for return_to_top_level (RETURN_ERROR). */
429 jmp_buf error_return;
430 /* Where to go for return_to_top_level (RETURN_QUIT). */
433 /* Return for reason REASON. This generally gets back to the command
434 loop, but can be caught via catch_errors. */
437 return_to_top_level (reason)
438 enum return_reason reason;
443 /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
444 I can think of a reason why that is vital, though). */
445 bpstat_clear_actions(stop_bpstat); /* Clear queued breakpoint commands */
447 disable_current_display ();
448 do_cleanups (ALL_CLEANUPS);
450 if (annotation_level > 1)
461 (NORETURN void) longjmp
462 (reason == RETURN_ERROR ? error_return : quit_return, 1);
465 /* Call FUNC with arg ARGS, catching any errors. If there is no
466 error, return the value returned by FUNC. If there is an error,
467 print ERRSTRING, print the specific error message, then return
470 Must not be called with immediate_quit in effect (bad things might
471 happen, say we got a signal in the middle of a memcpy to quit_return).
472 This is an OK restriction; with very few exceptions immediate_quit can
473 be replaced by judicious use of QUIT.
475 MASK specifies what to catch; it is normally set to
476 RETURN_MASK_ALL, if for no other reason than that the code which
477 calls catch_errors might not be set up to deal with a quit which
478 isn't caught. But if the code can deal with it, it generally
479 should be RETURN_MASK_ERROR, unless for some reason it is more
480 useful to abort only the portion of the operation inside the
481 catch_errors. Note that quit should return to the command line
482 fairly quickly, even if some further processing is being done. */
485 catch_errors (func, args, errstring, mask)
486 int (*func) PARAMS ((char *));
495 struct cleanup *saved_cleanup_chain;
496 char *saved_error_pre_print;
497 char *saved_quit_pre_print;
499 saved_cleanup_chain = save_cleanups ();
500 saved_error_pre_print = error_pre_print;
501 saved_quit_pre_print = quit_pre_print;
503 if (mask & RETURN_MASK_ERROR)
505 memcpy ((char *)saved_error, (char *)error_return, sizeof (jmp_buf));
506 error_pre_print = errstring;
508 if (mask & RETURN_MASK_QUIT)
510 memcpy (saved_quit, quit_return, sizeof (jmp_buf));
511 quit_pre_print = errstring;
514 if (setjmp (tmp_jmp) == 0)
516 if (mask & RETURN_MASK_ERROR)
517 memcpy (error_return, tmp_jmp, sizeof (jmp_buf));
518 if (mask & RETURN_MASK_QUIT)
519 memcpy (quit_return, tmp_jmp, sizeof (jmp_buf));
520 val = (*func) (args);
525 restore_cleanups (saved_cleanup_chain);
527 if (mask & RETURN_MASK_ERROR)
529 memcpy (error_return, saved_error, sizeof (jmp_buf));
530 error_pre_print = saved_error_pre_print;
532 if (mask & RETURN_MASK_QUIT)
534 memcpy (quit_return, saved_quit, sizeof (jmp_buf));
535 quit_pre_print = saved_quit_pre_print;
540 /* Handler for SIGHUP. */
546 catch_errors (quit_cover, NULL,
547 "Could not kill the program being debugged", RETURN_MASK_ALL);
548 signal (SIGHUP, SIG_DFL);
549 kill (getpid (), SIGHUP);
552 /* Just a little helper function for disconnect(). */
558 caution = 0; /* Throw caution to the wind -- we're exiting.
559 This prevents asking the user dumb questions. */
560 quit_command((char *)0, 0);
564 /* Line number we are currently in in a file which is being sourced. */
565 static int source_line_number;
567 /* Name of the file we are sourcing. */
568 static char *source_file_name;
570 /* Buffer containing the error_pre_print used by the source stuff.
572 static char *source_error;
573 static int source_error_allocated;
575 /* Something to glom on to the start of error_pre_print if source_file_name
577 static char *source_pre_error;
579 /* Clean up on error during a "source" command (or execution of a
580 user-defined command). */
583 source_cleanup (stream)
586 /* Restore the previous input stream. */
590 /* Read commands from STREAM. */
592 read_command_file (stream)
595 struct cleanup *cleanups;
597 cleanups = make_cleanup (source_cleanup, instream);
600 do_cleanups (cleanups);
603 extern void init_proc ();
605 void (*pre_init_ui_hook) PARAMS ((void));
610 if (pre_init_ui_hook)
613 /* Run the init function of each source file */
615 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
616 current_directory = gdb_dirbuf;
618 init_cmd_lists (); /* This needs to be done first */
619 initialize_targets (); /* Setup target_terminal macros for utils.c */
620 initialize_utils (); /* Make errors and warnings possible */
621 initialize_all_files ();
622 init_main (); /* But that omits this file! Do it now */
627 /* We need a default language for parsing expressions, so simple things like
628 "set width 0" won't fail if no language is explicitly set in a config file
629 or implicitly set by reading an executable during startup. */
630 set_language (language_c);
631 expected_language = current_language; /* don't warn about the change. */
637 /* Allocate, initialize a new command line structure for one of the
638 control commands (if/while). */
640 static struct command_line *
641 build_command_line (type, args)
642 enum command_control_type type;
645 struct command_line *cmd;
647 cmd = (struct command_line *)xmalloc (sizeof (struct command_line));
649 cmd->control_type = type;
653 = (struct command_line **)xmalloc (sizeof (struct command_line *)
655 memset (cmd->body_list, 0, sizeof (struct command_line *) * cmd->body_count);
656 cmd->line = savestring (args, strlen (args));
660 /* Build and return a new command structure for the control commands
661 such as "if" and "while". */
663 static struct command_line *
664 get_command_line (type, arg)
665 enum command_control_type type;
668 struct command_line *cmd;
669 struct cleanup *old_chain = NULL;
671 /* Allocate and build a new command line structure. */
672 cmd = build_command_line (type, arg);
674 old_chain = make_cleanup (free_command_lines, &cmd);
676 /* Read in the body of this command. */
677 if (recurse_read_control_structure (cmd) == invalid_control)
679 warning ("error reading in control structure\n");
680 do_cleanups (old_chain);
684 discard_cleanups (old_chain);
688 /* Recursively print a command (including full control structures). */
690 print_command_line (cmd, depth)
691 struct command_line *cmd;
698 for (i = 0; i < depth; i++)
699 fputs_filtered (" ", gdb_stdout);
702 /* A simple command, print it and return. */
703 if (cmd->control_type == simple_control)
705 fputs_filtered (cmd->line, gdb_stdout);
706 fputs_filtered ("\n", gdb_stdout);
710 /* loop_continue to jump to the start of a while loop, print it
712 if (cmd->control_type == continue_control)
714 fputs_filtered ("loop_continue\n", gdb_stdout);
718 /* loop_break to break out of a while loop, print it and return. */
719 if (cmd->control_type == break_control)
721 fputs_filtered ("loop_break\n", gdb_stdout);
725 /* A while command. Recursively print its subcommands before returning. */
726 if (cmd->control_type == while_control)
728 struct command_line *list;
729 fputs_filtered ("while ", gdb_stdout);
730 fputs_filtered (cmd->line, gdb_stdout);
731 fputs_filtered ("\n", gdb_stdout);
732 list = *cmd->body_list;
735 print_command_line (list, depth + 1);
740 /* An if command. Recursively print both arms before returning. */
741 if (cmd->control_type == if_control)
743 fputs_filtered ("if ", gdb_stdout);
744 fputs_filtered (cmd->line, gdb_stdout);
745 fputs_filtered ("\n", gdb_stdout);
747 print_command_line (cmd->body_list[0], depth + 1);
749 /* Show the false arm if it exists. */
750 if (cmd->body_count == 2)
754 for (i = 0; i < depth; i++)
755 fputs_filtered (" ", gdb_stdout);
757 fputs_filtered ("else\n", gdb_stdout);
758 print_command_line (cmd->body_list[1], depth + 1);
762 for (i = 0; i < depth; i++)
763 fputs_filtered (" ", gdb_stdout);
765 fputs_filtered ("end\n", gdb_stdout);
769 /* Execute the command in CMD. */
771 enum command_control_type
772 execute_control_command (cmd)
773 struct command_line *cmd;
775 struct expression *expr;
776 struct command_line *current;
777 struct cleanup *old_chain = 0;
780 enum command_control_type ret;
783 switch (cmd->control_type)
786 /* A simple command, execute it and return. */
787 new_line = insert_args (cmd->line);
789 return invalid_control;
790 old_chain = make_cleanup (free_current_contents, &new_line);
791 execute_command (new_line, 0);
792 ret = cmd->control_type;
795 case continue_control:
797 /* Return for "continue", and "break" so we can either
798 continue the loop at the top, or break out. */
799 ret = cmd->control_type;
804 /* Parse the loop control expression for the while statement. */
805 new_line = insert_args (cmd->line);
807 return invalid_control;
808 old_chain = make_cleanup (free_current_contents, &new_line);
809 expr = parse_expression (new_line);
810 make_cleanup (free_current_contents, &expr);
812 ret = simple_control;
815 /* Keep iterating so long as the expression is true. */
818 /* Evaluate the expression. */
819 val = evaluate_expression (expr);
821 /* If the value is false, then break out of the loop. */
822 if (!value_true (val))
825 /* Execute the body of the while statement. */
826 current = *cmd->body_list;
829 ret = execute_control_command (current);
831 /* If we got an error, or a "break" command, then stop
833 if (ret == invalid_control || ret == break_control)
839 /* If we got a "continue" command, then restart the loop
841 if (ret == continue_control)
844 /* Get the next statement. */
845 current = current->next;
849 /* Reset RET so that we don't recurse the break all the way down. */
850 if (ret == break_control)
851 ret = simple_control;
858 new_line = insert_args (cmd->line);
860 return invalid_control;
861 old_chain = make_cleanup (free_current_contents, &new_line);
862 /* Parse the conditional for the if statement. */
863 expr = parse_expression (new_line);
864 make_cleanup (free_current_contents, &expr);
867 ret = simple_control;
869 /* Evaluate the conditional. */
870 val = evaluate_expression (expr);
872 /* Choose which arm to take commands from based on the value of the
873 conditional expression. */
874 if (value_true (val))
875 current = *cmd->body_list;
876 else if (cmd->body_count == 2)
877 current = *(cmd->body_list + 1);
879 /* Execute commands in the given arm. */
882 ret = execute_control_command (current);
884 /* If we got an error, get out. */
885 if (ret != simple_control)
888 /* Get the next statement in the body. */
889 current = current->next;
896 warning ("Invalid control type in command structure.");
897 return invalid_control;
901 do_cleanups (old_chain);
906 /* "while" command support. Executes a body of statements while the
907 loop condition is nonzero. */
910 while_command (arg, from_tty)
914 struct command_line *command = NULL;
917 command = get_command_line (while_control, arg);
922 execute_control_command (command);
923 free_command_lines (&command);
926 /* "if" command support. Execute either the true or false arm depending
927 on the value of the if conditional. */
930 if_command (arg, from_tty)
934 struct command_line *command = NULL;
937 command = get_command_line (if_control, arg);
942 execute_control_command (command);
943 free_command_lines (&command);
950 struct user_args *oargs = user_args;
952 fatal ("Internal error, arg_cleanup called with no user args.\n");
954 user_args = user_args->next;
958 /* Bind the incomming arguments for a user defined command to
959 $arg0, $arg1 ... $argMAXUSERARGS. */
961 static struct cleanup *
965 struct user_args *args;
966 struct cleanup *old_chain;
967 unsigned int arg_count = 0;
969 args = (struct user_args *)xmalloc (sizeof (struct user_args));
970 memset (args, 0, sizeof (struct user_args));
972 args->next = user_args;
975 old_chain = make_cleanup (arg_cleanup, 0);
984 if (arg_count >= MAXUSERARGS)
986 error ("user defined function may only have %d arguments.\n",
991 /* Strip whitespace. */
992 while (*p == ' ' || *p == '\t')
995 /* P now points to an argument. */
997 user_args->a[arg_count].arg = p;
999 /* Get to the end of this argument. */
1000 while (*p && *p != ' ' && *p != '\t')
1003 user_args->a[arg_count].len = p - start_arg;
1010 /* Given character string P, return a point to the first argument ($arg),
1011 or NULL if P contains no arguments. */
1017 while ((p = strchr (p, '$')))
1019 if (strncmp (p, "$arg", 4) == 0 && isdigit (p[4]))
1026 /* Insert the user defined arguments stored in user_arg into the $arg
1027 arguments found in line, with the updated copy being placed into nline. */
1033 char *p, *save_line, *new_line;
1036 /* First we need to know how much memory to allocate for the new line. */
1039 while ((p = locate_arg (line)))
1044 if (i >= user_args->count)
1046 error ("Missing argument %d in user function.\n", i);
1049 len += user_args->a[i].len;
1053 /* Don't forget the tail. */
1054 len += strlen (line);
1056 /* Allocate space for the new line and fill it in. */
1057 new_line = (char *)xmalloc (len + 1);
1058 if (new_line == NULL)
1061 /* Restore pointer to beginning of old line. */
1064 /* Save pointer to beginning of new line. */
1065 save_line = new_line;
1067 while ((p = locate_arg (line)))
1071 memcpy (new_line, line, p - line);
1072 new_line += p - line;
1075 len = user_args->a[i].len;
1078 memcpy (new_line, user_args->a[i].arg, len);
1083 /* Don't forget the tail. */
1084 strcpy (new_line, line);
1086 /* Return a pointer to the beginning of the new line. */
1091 execute_user_command (c, args)
1092 struct cmd_list_element *c;
1095 register struct command_line *cmdlines;
1096 struct cleanup *old_chain;
1097 enum command_control_type ret;
1099 old_chain = setup_user_args (args);
1101 cmdlines = c->user_commands;
1106 /* Set the instream to 0, indicating execution of a
1107 user-defined function. */
1108 old_chain = make_cleanup (source_cleanup, instream);
1109 instream = (FILE *) 0;
1112 ret = execute_control_command (cmdlines);
1113 if (ret != simple_control && ret != break_control)
1115 warning ("Error in control structure.\n");
1118 cmdlines = cmdlines->next;
1120 do_cleanups (old_chain);
1123 /* Execute the line P as a command.
1124 Pass FROM_TTY as second argument to the defining function. */
1127 execute_command (p, from_tty)
1131 register struct cmd_list_element *c;
1132 register enum language flang;
1133 static int warned = 0;
1137 /* This can happen when command_line_input hits end of file. */
1141 while (*p == ' ' || *p == '\t') p++;
1146 c = lookup_cmd (&p, cmdlist, "", 0, 1);
1147 /* Pass null arg rather than an empty one. */
1150 /* If this command has been hooked, run the hook first. */
1152 execute_user_command (c->hook, (char *)0);
1154 if (c->class == class_user)
1155 execute_user_command (c, arg);
1156 else if (c->type == set_cmd || c->type == show_cmd)
1157 do_setshow_command (arg, from_tty & caution, c);
1158 else if (c->function.cfunc == NO_FUNCTION)
1159 error ("That is not a command, just a help topic.");
1160 else if (call_command_hook)
1161 call_command_hook (c, arg, from_tty & caution);
1163 (*c->function.cfunc) (arg, from_tty & caution);
1166 /* Tell the user if the language has changed (except first time). */
1167 if (current_language != expected_language)
1169 if (language_mode == language_mode_auto) {
1170 language_info (1); /* Print what changed. */
1175 /* Warn the user if the working language does not match the
1176 language of the current frame. Only warn the user if we are
1177 actually running the program, i.e. there is a stack. */
1178 /* FIXME: This should be cacheing the frame and only running when
1179 the frame changes. */
1181 if (target_has_stack)
1183 flang = get_frame_language ();
1185 && flang != language_unknown
1186 && flang != current_language->la_language)
1188 printf_filtered ("%s\n", lang_frame_mismatch_warn);
1196 command_loop_marker (foo)
1201 /* Read commands from `instream' and execute them
1202 until end of file or error reading instream. */
1207 struct cleanup *old_chain;
1209 int stdin_is_tty = ISATTY (stdin);
1210 long time_at_cmd_start;
1211 long space_at_cmd_start;
1212 extern int display_time;
1213 extern int display_space;
1215 while (!feof (instream))
1217 if (window_hook && instream == stdin)
1218 (*window_hook) (instream, prompt);
1221 if (instream == stdin && stdin_is_tty)
1222 reinitialize_more_filter ();
1223 old_chain = make_cleanup (command_loop_marker, 0);
1224 command = command_line_input (instream == stdin ? prompt : (char *) NULL,
1225 instream == stdin, "prompt");
1229 time_at_cmd_start = get_run_time ();
1233 extern char **environ;
1234 char *lim = (char *) sbrk (0);
1236 space_at_cmd_start = (long) (lim - (char *) &environ);
1239 execute_command (command, instream == stdin);
1240 /* Do any commands attached to breakpoint we stopped at. */
1241 bpstat_do_actions (&stop_bpstat);
1242 do_cleanups (old_chain);
1246 long cmd_time = get_run_time () - time_at_cmd_start;
1248 printf_unfiltered ("Command execution time: %ld.%06ld\n",
1249 cmd_time / 1000000, cmd_time % 1000000);
1254 extern char **environ;
1255 char *lim = (char *) sbrk (0);
1256 long space_now = lim - (char *) &environ;
1257 long space_diff = space_now - space_at_cmd_start;
1259 printf_unfiltered ("Space used: %ld (%c%ld for this command)\n",
1261 (space_diff >= 0 ? '+' : '-'),
1267 /* Commands call this if they do not want to be repeated by null lines. */
1275 /* If we aren't reading from standard input, we are saving the last
1276 thing read from stdin in line and don't want to delete it. Null lines
1277 won't repeat here in any case. */
1278 if (instream == stdin)
1282 /* Read a line from the stream "instream" without command line editing.
1284 It prints PRROMPT once at the start.
1285 Action is compatible with "readline", e.g. space for the result is
1286 malloc'd and should be freed by the caller.
1288 A NULL return means end of file. */
1290 gdb_readline (prrompt)
1295 int input_index = 0;
1296 int result_size = 80;
1300 /* Don't use a _filtered function here. It causes the assumed
1301 character position to be off, since the newline we read from
1302 the user is not accounted for. */
1303 fputs_unfiltered (prrompt, gdb_stdout);
1305 /* Move to a new line so the entered line doesn't have a prompt
1306 on the front of it. */
1307 fputs_unfiltered ("\n", gdb_stdout);
1309 gdb_flush (gdb_stdout);
1312 result = (char *) xmalloc (result_size);
1316 /* Read from stdin if we are executing a user defined command.
1317 This is the right thing for prompt_for_continue, at least. */
1318 c = fgetc (instream ? instream : stdin);
1322 if (input_index > 0)
1323 /* The last line does not end with a newline. Return it, and
1324 if we are called again fgetc will still return EOF and
1325 we'll return NULL then. */
1334 result[input_index++] = c;
1335 while (input_index >= result_size)
1338 result = (char *) xrealloc (result, result_size);
1342 result[input_index++] = '\0';
1346 /* Variables which control command line editing and history
1347 substitution. These variables are given default values at the end
1349 static int command_editing_p;
1350 static int history_expansion_p;
1351 static int write_history_p;
1352 static int history_size;
1353 static char *history_filename;
1355 /* readline uses the word breaks for two things:
1356 (1) In figuring out where to point the TEXT parameter to the
1357 rl_completion_entry_function. Since we don't use TEXT for much,
1358 it doesn't matter a lot what the word breaks are for this purpose, but
1359 it does affect how much stuff M-? lists.
1360 (2) If one of the matches contains a word break character, readline
1361 will quote it. That's why we switch between
1362 gdb_completer_word_break_characters and
1363 gdb_completer_command_word_break_characters. I'm not sure when
1364 we need this behavior (perhaps for funky characters in C++ symbols?). */
1366 /* Variables which are necessary for fancy command line editing. */
1367 char *gdb_completer_word_break_characters =
1368 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
1370 /* When completing on command names, we remove '-' from the list of
1371 word break characters, since we use it in command names. If the
1372 readline library sees one in any of the current completion strings,
1373 it thinks that the string needs to be quoted and automatically supplies
1375 char *gdb_completer_command_word_break_characters =
1376 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,";
1378 /* Characters that can be used to quote completion strings. Note that we
1379 can't include '"' because the gdb C parser treats such quoted sequences
1381 char *gdb_completer_quote_characters =
1384 /* Functions that are used as part of the fancy command line editing. */
1386 /* This can be used for functions which don't want to complete on symbols
1387 but don't want to complete on anything else either. */
1390 noop_completer (text, prefix)
1397 /* Complete on filenames. */
1399 filename_completer (text, word)
1403 /* From readline. */
1404 extern char *filename_completion_function ();
1405 int subsequent_name;
1407 int return_val_used;
1408 int return_val_alloced;
1410 return_val_used = 0;
1411 /* Small for testing. */
1412 return_val_alloced = 1;
1413 return_val = (char **) xmalloc (return_val_alloced * sizeof (char *));
1415 subsequent_name = 0;
1419 p = filename_completion_function (text, subsequent_name);
1420 if (return_val_used >= return_val_alloced)
1422 return_val_alloced *= 2;
1424 (char **) xrealloc (return_val,
1425 return_val_alloced * sizeof (char *));
1429 return_val[return_val_used++] = p;
1432 /* Like emacs, don't complete on old versions. Especially useful
1433 in the "source" command. */
1434 if (p[strlen (p) - 1] == '~')
1440 /* Return exactly p. */
1441 return_val[return_val_used++] = p;
1442 else if (word > text)
1444 /* Return some portion of p. */
1445 q = xmalloc (strlen (p) + 5);
1446 strcpy (q, p + (word - text));
1447 return_val[return_val_used++] = q;
1452 /* Return some of TEXT plus p. */
1453 q = xmalloc (strlen (p) + (text - word) + 5);
1454 strncpy (q, word, text - word);
1455 q[text - word] = '\0';
1457 return_val[return_val_used++] = q;
1461 subsequent_name = 1;
1464 /* There is no way to do this just long enough to affect quote inserting
1465 without also affecting the next completion. This should be fixed in
1467 /* Insure that readline does the right thing
1468 with respect to inserting quotes. */
1469 rl_completer_word_break_characters = "";
1474 /* Here are some useful test cases for completion. FIXME: These should
1475 be put in the test suite. They should be tested with both M-? and TAB.
1477 "show output-" "radix"
1478 "show output" "-radix"
1479 "p" ambiguous (commands starting with p--path, print, printf, etc.)
1480 "p " ambiguous (all symbols)
1481 "info t foo" no completions
1482 "info t " no completions
1483 "info t" ambiguous ("info target", "info terminal", etc.)
1484 "info ajksdlfk" no completions
1485 "info ajksdlfk " no completions
1487 "info " ambiguous (all info commands)
1488 "p \"a" no completions (string constant)
1489 "p 'a" ambiguous (all symbols starting with a)
1490 "p b-a" ambiguous (all symbols starting with a)
1491 "p b-" ambiguous (all symbols)
1492 "file Make" "file" (word break hard to screw up here)
1493 "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
1496 /* Generate completions one by one for the completer. Each time we are
1497 called return another potential completion to the caller.
1498 line_completion just completes on commands or passes the buck to the
1499 command's completer function, the stuff specific to symbol completion
1500 is in make_symbol_completion_list.
1502 TEXT is the caller's idea of the "word" we are looking at.
1504 MATCHES is the number of matches that have currently been collected from
1505 calling this completion function. When zero, then we need to initialize,
1506 otherwise the initialization has already taken place and we can just
1507 return the next potential completion string.
1509 LINE_BUFFER is available to be looked at; it contains the entire text
1510 of the line. POINT is the offset in that line of the cursor. You
1511 should pretend that the line ends at POINT.
1513 Returns NULL if there are no more completions, else a pointer to a string
1514 which is a possible completion, it is the caller's responsibility to
1518 line_completion_function (text, matches, line_buffer, point)
1524 static char **list = (char **)NULL; /* Cache of completions */
1525 static int index; /* Next cached completion */
1526 char *output = NULL;
1527 char *tmp_command, *p;
1528 /* Pointer within tmp_command which corresponds to text. */
1530 struct cmd_list_element *c, *result_list;
1534 /* The caller is beginning to accumulate a new set of completions, so
1535 we need to find all of them now, and cache them for returning one at
1536 a time on future calls. */
1540 /* Free the storage used by LIST, but not by the strings inside.
1541 This is because rl_complete_internal () frees the strings. */
1547 /* Choose the default set of word break characters to break completions.
1548 If we later find out that we are doing completions on command strings
1549 (as opposed to strings supplied by the individual command completer
1550 functions, which can be any string) then we will switch to the
1551 special word break set for command strings, which leaves out the
1552 '-' character used in some commands. */
1554 rl_completer_word_break_characters =
1555 gdb_completer_word_break_characters;
1557 /* Decide whether to complete on a list of gdb commands or on symbols. */
1558 tmp_command = (char *) alloca (point + 1);
1561 strncpy (tmp_command, line_buffer, point);
1562 tmp_command[point] = '\0';
1563 /* Since text always contains some number of characters leading up
1564 to point, we can find the equivalent position in tmp_command
1565 by subtracting that many characters from the end of tmp_command. */
1566 word = tmp_command + point - strlen (text);
1570 /* An empty line we want to consider ambiguous; that is, it
1571 could be any command. */
1572 c = (struct cmd_list_element *) -1;
1577 c = lookup_cmd_1 (&p, cmdlist, &result_list, 1);
1580 /* Move p up to the next interesting thing. */
1581 while (*p == ' ' || *p == '\t')
1588 /* It is an unrecognized command. So there are no
1589 possible completions. */
1592 else if (c == (struct cmd_list_element *) -1)
1596 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
1597 doesn't advance over that thing itself. Do so now. */
1599 while (*q && (isalnum (*q) || *q == '-' || *q == '_'))
1601 if (q != tmp_command + point)
1603 /* There is something beyond the ambiguous
1604 command, so there are no possible completions. For
1605 example, "info t " or "info t foo" does not complete
1606 to anything, because "info t" can be "info target" or
1612 /* We're trying to complete on the command which was ambiguous.
1613 This we can deal with. */
1616 list = complete_on_cmdlist (*result_list->prefixlist, p,
1621 list = complete_on_cmdlist (cmdlist, p, word);
1623 /* Insure that readline does the right thing with respect to
1624 inserting quotes. */
1625 rl_completer_word_break_characters =
1626 gdb_completer_command_word_break_characters;
1631 /* We've recognized a full command. */
1633 if (p == tmp_command + point)
1635 /* There is no non-whitespace in the line beyond the command. */
1637 if (p[-1] == ' ' || p[-1] == '\t')
1639 /* The command is followed by whitespace; we need to complete
1640 on whatever comes after command. */
1643 /* It is a prefix command; what comes after it is
1644 a subcommand (e.g. "info "). */
1645 list = complete_on_cmdlist (*c->prefixlist, p, word);
1647 /* Insure that readline does the right thing
1648 with respect to inserting quotes. */
1649 rl_completer_word_break_characters =
1650 gdb_completer_command_word_break_characters;
1654 list = complete_on_enum (c->enums, p, word);
1655 rl_completer_word_break_characters =
1656 gdb_completer_command_word_break_characters;
1660 /* It is a normal command; what comes after it is
1661 completed by the command's completer function. */
1662 list = (*c->completer) (p, word);
1667 /* The command is not followed by whitespace; we need to
1668 complete on the command itself. e.g. "p" which is a
1669 command itself but also can complete to "print", "ptype"
1673 /* Find the command we are completing on. */
1675 while (q > tmp_command)
1677 if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_')
1683 list = complete_on_cmdlist (result_list, q, word);
1685 /* Insure that readline does the right thing
1686 with respect to inserting quotes. */
1687 rl_completer_word_break_characters =
1688 gdb_completer_command_word_break_characters;
1693 /* There is non-whitespace beyond the command. */
1695 if (c->prefixlist && !c->allow_unknown)
1697 /* It is an unrecognized subcommand of a prefix command,
1698 e.g. "info adsfkdj". */
1703 list = complete_on_enum (c->enums, p, word);
1707 /* It is a normal command. */
1708 list = (*c->completer) (p, word);
1714 /* If we found a list of potential completions during initialization then
1715 dole them out one at a time. The vector of completions is NULL
1716 terminated, so after returning the last one, return NULL (and continue
1717 to do so) each time we are called after that, until a new list is
1722 output = list[index];
1730 /* Can't do this because readline hasn't yet checked the word breaks
1731 for figuring out whether to insert a quote. */
1733 /* Make sure the word break characters are set back to normal for the
1734 next time that readline tries to complete something. */
1735 rl_completer_word_break_characters =
1736 gdb_completer_word_break_characters;
1742 /* Line completion interface function for readline. */
1745 readline_line_completion_function (text, matches)
1749 return line_completion_function (text, matches, rl_line_buffer, rl_point);
1752 /* Skip over a possibly quoted word (as defined by the quote characters
1753 and word break characters the completer uses). Returns pointer to the
1754 location after the "word". */
1760 char quote_char = '\0';
1763 for (scan = str; *scan != '\0'; scan++)
1765 if (quote_char != '\0')
1767 /* Ignore everything until the matching close quote char */
1768 if (*scan == quote_char)
1770 /* Found matching close quote. */
1775 else if (strchr (gdb_completer_quote_characters, *scan))
1777 /* Found start of a quoted string. */
1780 else if (strchr (gdb_completer_word_break_characters, *scan))
1794 #if STOP_SIGNAL == SIGTSTP
1795 signal (SIGTSTP, SIG_DFL);
1797 kill (getpid (), SIGTSTP);
1798 signal (SIGTSTP, stop_sig);
1800 signal (STOP_SIGNAL, stop_sig);
1802 printf_unfiltered ("%s", prompt);
1803 gdb_flush (gdb_stdout);
1805 /* Forget about any previous command -- null line now will do nothing. */
1808 #endif /* STOP_SIGNAL */
1810 /* Initialize signal handlers. */
1820 signal (SIGINT, request_quit);
1822 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
1823 passed to the inferior, which we don't want. It would be
1824 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
1825 on BSD4.3 systems using vfork, that can affect the
1826 GDB process as well as the inferior (the signal handling tables
1827 might be in memory, shared between the two). Since we establish
1828 a handler for SIGQUIT, when we call exec it will set the signal
1829 to SIG_DFL for us. */
1830 signal (SIGQUIT, do_nothing);
1831 if (signal (SIGHUP, do_nothing) != SIG_IGN)
1832 signal (SIGHUP, disconnect);
1833 signal (SIGFPE, float_handler);
1835 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1836 signal (SIGWINCH, SIGWINCH_HANDLER);
1840 /* Read one line from the command input stream `instream'
1841 into the local static buffer `linebuffer' (whose current length
1843 The buffer is made bigger as necessary.
1844 Returns the address of the start of the line.
1846 NULL is returned for end of file.
1848 *If* the instream == stdin & stdin is a terminal, the line read
1849 is copied into the file line saver (global var char *line,
1850 length linesize) so that it can be duplicated.
1852 This routine either uses fancy command line editing or
1853 simple input as the user has requested. */
1856 command_line_input (prrompt, repeat, annotation_suffix)
1859 char *annotation_suffix;
1861 static char *linebuffer = 0;
1862 static unsigned linelength = 0;
1866 char *local_prompt = prrompt;
1871 /* The annotation suffix must be non-NULL. */
1872 if (annotation_suffix == NULL)
1873 annotation_suffix = "";
1875 if (annotation_level > 1 && instream == stdin)
1877 local_prompt = alloca ((prrompt == NULL ? 0 : strlen (prrompt))
1878 + strlen (annotation_suffix) + 40);
1879 if (prrompt == NULL)
1880 local_prompt[0] = '\0';
1882 strcpy (local_prompt, prrompt);
1883 strcat (local_prompt, "\n\032\032");
1884 strcat (local_prompt, annotation_suffix);
1885 strcat (local_prompt, "\n");
1888 if (linebuffer == 0)
1891 linebuffer = (char *) xmalloc (linelength);
1896 /* Control-C quits instantly if typed while in this loop
1897 since it should not wait until the user types a newline. */
1901 signal (STOP_SIGNAL, stop_sig);
1906 /* Make sure that all output has been output. Some machines may let
1907 you get away with leaving out some of the gdb_flush, but not all. */
1909 gdb_flush (gdb_stdout);
1910 gdb_flush (gdb_stderr);
1912 if (source_file_name != NULL)
1914 ++source_line_number;
1915 sprintf (source_error,
1916 "%s%s:%d: Error in sourced command file:\n",
1919 source_line_number);
1920 error_pre_print = source_error;
1923 if (annotation_level > 1 && instream == stdin)
1925 printf_unfiltered ("\n\032\032pre-");
1926 printf_unfiltered (annotation_suffix);
1927 printf_unfiltered ("\n");
1930 /* Don't use fancy stuff if not talking to stdin. */
1931 if (command_editing_p && instream == stdin
1932 && ISATTY (instream))
1933 rl = readline (local_prompt);
1935 rl = gdb_readline (local_prompt);
1937 if (annotation_level > 1 && instream == stdin)
1939 printf_unfiltered ("\n\032\032post-");
1940 printf_unfiltered (annotation_suffix);
1941 printf_unfiltered ("\n");
1944 if (!rl || rl == (char *) EOF)
1949 if (strlen(rl) + 1 + (p - linebuffer) > linelength)
1951 linelength = strlen(rl) + 1 + (p - linebuffer);
1952 nline = (char *) xrealloc (linebuffer, linelength);
1953 p += nline - linebuffer;
1957 /* Copy line. Don't copy null at end. (Leaves line alone
1958 if this was just a newline) */
1962 free (rl); /* Allocated in readline. */
1964 if (p == linebuffer || *(p - 1) != '\\')
1967 p--; /* Put on top of '\'. */
1968 local_prompt = (char *) 0;
1973 signal (STOP_SIGNAL, SIG_DFL);
1980 #define SERVER_COMMAND_LENGTH 7
1982 (p - linebuffer > SERVER_COMMAND_LENGTH)
1983 && STREQN (linebuffer, "server ", SERVER_COMMAND_LENGTH);
1986 /* Note that we don't set `line'. Between this and the check in
1987 dont_repeat, this insures that repeating will still do the
1990 return linebuffer + SERVER_COMMAND_LENGTH;
1993 /* Do history expansion if that is wished. */
1994 if (history_expansion_p && instream == stdin
1995 && ISATTY (instream))
1997 char *history_value;
2000 *p = '\0'; /* Insert null now. */
2001 expanded = history_expand (linebuffer, &history_value);
2004 /* Print the changes. */
2005 printf_unfiltered ("%s\n", history_value);
2007 /* If there was an error, call this function again. */
2010 free (history_value);
2011 return command_line_input (prrompt, repeat, annotation_suffix);
2013 if (strlen (history_value) > linelength)
2015 linelength = strlen (history_value) + 1;
2016 linebuffer = (char *) xrealloc (linebuffer, linelength);
2018 strcpy (linebuffer, history_value);
2019 p = linebuffer + strlen(linebuffer);
2020 free (history_value);
2024 /* If we just got an empty line, and that is supposed
2025 to repeat the previous command, return the value in the
2029 if (p == linebuffer)
2032 while (*p1 == ' ' || *p1 == '\t')
2040 /* Add line to history if appropriate. */
2041 if (instream == stdin
2042 && ISATTY (stdin) && *linebuffer)
2043 add_history (linebuffer);
2045 /* Note: lines consisting solely of comments are added to the command
2046 history. This is useful when you type a command, and then
2047 realize you don't want to execute it quite yet. You can comment
2048 out the command and then later fetch it from the value history
2049 and remove the '#'. The kill ring is probably better, but some
2050 people are in the habit of commenting things out. */
2052 while ((c = *p1++) != '\0')
2055 while ((c = *p1++) != '"')
2057 /* Make sure an escaped '"' doesn't make us think the string
2065 while ((c = *p1++) != '\'')
2067 /* Make sure an escaped '\'' doesn't make us think the string
2076 /* Found a comment. */
2082 /* Save into global buffer if appropriate. */
2085 if (linelength > linesize)
2087 line = xrealloc (line, linelength);
2088 linesize = linelength;
2090 strcpy (line, linebuffer);
2098 /* Expand the body_list of COMMAND so that it can hold NEW_LENGTH
2099 code bodies. This is typically used when we encounter an "else"
2100 clause for an "if" command. */
2103 realloc_body_list (command, new_length)
2104 struct command_line *command;
2108 struct command_line **body_list;
2110 n = command->body_count;
2112 /* Nothing to do? */
2113 if (new_length <= n)
2116 body_list = (struct command_line **)
2117 xmalloc (sizeof (struct command_line *) * new_length);
2119 memcpy (body_list, command->body_list, sizeof (struct command_line *) * n);
2121 free (command->body_list);
2122 command->body_list = body_list;
2123 command->body_count = new_length;
2126 /* Read one line from the input stream. If the command is an "else" or
2127 "end", return such an indication to the caller. */
2129 static enum misc_command_type
2130 read_next_line (command)
2131 struct command_line **command;
2133 char *p, *p1, *prompt_ptr, control_prompt[256];
2136 if (control_level >= 254)
2137 error ("Control nesting too deep!\n");
2139 /* Set a prompt based on the nesting of the control commands. */
2140 if (instream == stdin)
2142 for (i = 0; i < control_level; i++)
2143 control_prompt[i] = ' ';
2144 control_prompt[i] = '>';
2145 control_prompt[i+1] = '\0';
2146 prompt_ptr = (char *)&control_prompt[0];
2151 p = command_line_input (prompt_ptr, instream == stdin, "commands");
2153 /* Not sure what to do here. */
2157 /* Strip leading and trailing whitespace. */
2158 while (*p == ' ' || *p == '\t')
2161 p1 = p + strlen (p);
2162 while (p1 != p && (p1[-1] == ' ' || p1[-1] == '\t'))
2165 /* Blanks and comments don't really do anything, but we need to
2166 distinguish them from else, end and other commands which can be
2168 if (p1 == p || p[0] == '#')
2171 /* Is this the end of a simple, while, or if control structure? */
2172 if (p1 - p == 3 && !strncmp (p, "end", 3))
2175 /* Is the else clause of an if control structure? */
2176 if (p1 - p == 4 && !strncmp (p, "else", 4))
2177 return else_command;
2179 /* Check for while, if, break, continue, etc and build a new command
2180 line structure for them. */
2181 if (p1 - p > 5 && !strncmp (p, "while", 5))
2182 *command = build_command_line (while_control, p + 6);
2183 else if (p1 - p > 2 && !strncmp (p, "if", 2))
2184 *command = build_command_line (if_control, p + 3);
2185 else if (p1 - p == 5 && !strncmp (p, "loop_break", 5))
2187 *command = (struct command_line *)
2188 xmalloc (sizeof (struct command_line));
2189 (*command)->next = NULL;
2190 (*command)->line = NULL;
2191 (*command)->control_type = break_control;
2192 (*command)->body_count = 0;
2193 (*command)->body_list = NULL;
2195 else if (p1 - p == 8 && !strncmp (p, "loop_continue", 8))
2197 *command = (struct command_line *)
2198 xmalloc (sizeof (struct command_line));
2199 (*command)->next = NULL;
2200 (*command)->line = NULL;
2201 (*command)->control_type = continue_control;
2202 (*command)->body_count = 0;
2203 (*command)->body_list = NULL;
2207 /* A normal command. */
2208 *command = (struct command_line *)
2209 xmalloc (sizeof (struct command_line));
2210 (*command)->next = NULL;
2211 (*command)->line = savestring (p, p1 - p);
2212 (*command)->control_type = simple_control;
2213 (*command)->body_count = 0;
2214 (*command)->body_list = NULL;
2217 /* Nothing special. */
2221 /* Recursively read in the control structures and create a command_line
2224 The parent_control parameter is the control structure in which the
2225 following commands are nested. */
2227 static enum command_control_type
2228 recurse_read_control_structure (current_cmd)
2229 struct command_line *current_cmd;
2231 int current_body, i;
2232 enum misc_command_type val;
2233 enum command_control_type ret;
2234 struct command_line **body_ptr, *child_tail, *next;
2235 struct cleanup *old_chains, *tmp_chains;
2241 /* Sanity checks. */
2242 if (current_cmd->control_type == simple_control)
2244 error ("Recursed on a simple control type\n");
2245 return invalid_control;
2248 if (current_body > current_cmd->body_count)
2250 error ("Allocated body is smaller than this command type needs\n");
2251 return invalid_control;
2254 /* Read lines from the input stream and build control structures. */
2260 val = read_next_line (&next);
2262 /* Just skip blanks and comments. */
2263 if (val == nop_command)
2266 if (val == end_command)
2268 if (current_cmd->control_type == while_control
2269 || current_cmd->control_type == if_control)
2271 /* Success reading an entire control structure. */
2272 ret = simple_control;
2277 ret = invalid_control;
2282 /* Not the end of a control structure. */
2283 if (val == else_command)
2285 if (current_cmd->control_type == if_control
2286 && current_body == 1)
2288 realloc_body_list (current_cmd, 2);
2295 ret = invalid_control;
2302 child_tail->next = next;
2306 /* We have just read the first line of the child's control
2307 structure. From now on, arrange to throw away the line
2308 we have if we quit or get an error. */
2309 body_ptr = current_cmd->body_list;
2310 for (i = 1; i < current_body; i++)
2315 tmp_chains = make_cleanup (free_command_lines, body_ptr);
2318 old_chains = tmp_chains;
2323 /* If the latest line is another control structure, then recurse
2325 if (next->control_type == while_control
2326 || next->control_type == if_control)
2329 ret = recurse_read_control_structure (next);
2332 if (ret != simple_control)
2338 if (ret == invalid_control && old_chains)
2339 do_cleanups (old_chains);
2340 else if (old_chains)
2341 discard_cleanups (old_chains);
2347 /* Read lines from the input stream
2348 and accumulate them in a chain of struct command_line's
2349 which is then returned. */
2351 struct command_line *
2352 read_command_lines ()
2354 struct command_line *head, *tail, *next;
2355 struct cleanup *old_chain;
2356 enum command_control_type ret;
2357 enum misc_command_type val;
2364 val = read_next_line (&next);
2366 /* Ignore blank lines or comments. */
2367 if (val == nop_command)
2370 if (val == end_command)
2372 ret = simple_control;
2376 if (val != ok_command)
2378 ret = invalid_control;
2382 if (next->control_type == while_control
2383 || next->control_type == if_control)
2386 ret = recurse_read_control_structure (next);
2389 if (ret == invalid_control)
2400 old_chain = make_cleanup (free_command_lines, &head);
2409 if (ret != invalid_control)
2411 discard_cleanups (old_chain);
2415 do_cleanups (old_chain);
2421 /* Free a chain of struct command_line's. */
2424 free_command_lines (lptr)
2425 struct command_line **lptr;
2427 register struct command_line *l = *lptr;
2428 register struct command_line *next;
2429 struct command_line **blist;
2434 if (l->body_count > 0)
2436 blist = l->body_list;
2437 for (i = 0; i < l->body_count; i++, blist++)
2438 free_command_lines (blist);
2447 /* Add an element to the list of info subcommands. */
2450 add_info (name, fun, doc)
2452 void (*fun) PARAMS ((char *, int));
2455 add_cmd (name, no_class, fun, doc, &infolist);
2458 /* Add an alias to the list of info subcommands. */
2461 add_info_alias (name, oldname, abbrev_flag)
2466 add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
2469 /* The "info" command is defined as a prefix, with allow_unknown = 0.
2470 Therefore, its own definition is called only for "info" with no args. */
2474 info_command (arg, from_tty)
2478 printf_unfiltered ("\"info\" must be followed by the name of an info command.\n");
2479 help_list (infolist, "info ", -1, gdb_stdout);
2482 /* The "complete" command is used by Emacs to implement completion. */
2486 complete_command (arg, from_tty)
2498 argpoint = strlen (arg);
2500 for (completion = line_completion_function (arg, i = 0, arg, argpoint);
2502 completion = line_completion_function (arg, ++i, arg, argpoint))
2504 printf_unfiltered ("%s\n", completion);
2509 /* The "show" command with no arguments shows all the settings. */
2513 show_command (arg, from_tty)
2517 cmd_show_list (showlist, from_tty, "");
2520 /* Add an element to the list of commands. */
2523 add_com (name, class, fun, doc)
2525 enum command_class class;
2526 void (*fun) PARAMS ((char *, int));
2529 add_cmd (name, class, fun, doc, &cmdlist);
2532 /* Add an alias or abbreviation command to the list of commands. */
2535 add_com_alias (name, oldname, class, abbrev_flag)
2538 enum command_class class;
2541 add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
2548 error ("Argument required (%s).", why);
2553 help_command (command, from_tty)
2555 int from_tty; /* Ignored */
2557 help_cmd (command, gdb_stdout);
2561 validate_comname (comname)
2567 error_no_arg ("name of command to define");
2572 if (!isalnum(*p) && *p != '-')
2573 error ("Junk in argument list: \"%s\"", p);
2578 /* This is just a placeholder in the command data structures. */
2580 user_defined_command (ignore, from_tty)
2587 define_command (comname, from_tty)
2591 register struct command_line *cmds;
2592 register struct cmd_list_element *c, *newc, *hookc = 0;
2593 char *tem = comname;
2594 #define HOOK_STRING "hook-"
2597 validate_comname (comname);
2599 /* Look it up, and verify that we got an exact match. */
2600 c = lookup_cmd (&tem, cmdlist, "", -1, 1);
2601 if (c && !STREQ (comname, c->name))
2606 if (c->class == class_user || c->class == class_alias)
2607 tem = "Redefine command \"%s\"? ";
2609 tem = "Really redefine built-in command \"%s\"? ";
2610 if (!query (tem, c->name))
2611 error ("Command \"%s\" not redefined.", c->name);
2614 /* If this new command is a hook, then mark the command which it
2615 is hooking. Note that we allow hooking `help' commands, so that
2616 we can hook the `stop' pseudo-command. */
2618 if (!strncmp (comname, HOOK_STRING, HOOK_LEN))
2620 /* Look up cmd it hooks, and verify that we got an exact match. */
2621 tem = comname+HOOK_LEN;
2622 hookc = lookup_cmd (&tem, cmdlist, "", -1, 0);
2623 if (hookc && !STREQ (comname+HOOK_LEN, hookc->name))
2627 warning ("Your new `%s' command does not hook any existing command.",
2629 if (!query ("Proceed? "))
2630 error ("Not confirmed.");
2634 comname = savestring (comname, strlen (comname));
2636 /* If the rest of the commands will be case insensitive, this one
2637 should behave in the same manner. */
2638 for (tem = comname; *tem; tem++)
2639 if (isupper(*tem)) *tem = tolower(*tem);
2643 printf_unfiltered ("Type commands for definition of \"%s\".\n\
2644 End with a line saying just \"end\".\n", comname);
2645 gdb_flush (gdb_stdout);
2649 cmds = read_command_lines ();
2651 if (c && c->class == class_user)
2652 free_command_lines (&c->user_commands);
2654 newc = add_cmd (comname, class_user, user_defined_command,
2655 (c && c->class == class_user)
2656 ? c->doc : savestring ("User-defined.", 13), &cmdlist);
2657 newc->user_commands = cmds;
2659 /* If this new command is a hook, then mark both commands as being
2663 hookc->hook = newc; /* Target gets hooked. */
2664 newc->hookee = hookc; /* We are marked as hooking target cmd. */
2669 document_command (comname, from_tty)
2673 struct command_line *doclines;
2674 register struct cmd_list_element *c;
2675 char *tem = comname;
2677 validate_comname (comname);
2679 c = lookup_cmd (&tem, cmdlist, "", 0, 1);
2681 if (c->class != class_user)
2682 error ("Command \"%s\" is built-in.", comname);
2685 printf_unfiltered ("Type documentation for \"%s\".\n\
2686 End with a line saying just \"end\".\n", comname);
2688 doclines = read_command_lines ();
2690 if (c->doc) free (c->doc);
2693 register struct command_line *cl1;
2694 register int len = 0;
2696 for (cl1 = doclines; cl1; cl1 = cl1->next)
2697 len += strlen (cl1->line) + 1;
2699 c->doc = (char *) xmalloc (len + 1);
2702 for (cl1 = doclines; cl1; cl1 = cl1->next)
2704 strcat (c->doc, cl1->line);
2706 strcat (c->doc, "\n");
2710 free_command_lines (&doclines);
2714 print_gnu_advertisement ()
2716 printf_unfiltered ("\
2717 GDB is free software and you are welcome to distribute copies of it\n\
2718 under certain conditions; type \"show copying\" to see the conditions.\n\
2719 There is absolutely no warranty for GDB; type \"show warranty\" for details.\n\
2724 print_gdb_version (stream)
2727 fprintf_filtered (stream, "\
2728 GDB %s (%s", version, host_name);
2730 if (!STREQ (host_name, target_name))
2731 fprintf_filtered (stream, " --target %s", target_name);
2733 fprintf_filtered (stream, "), ");
2735 fprintf_filtered (stream, "Copyright 1995 Free Software Foundation, Inc.");
2740 show_version (args, from_tty)
2745 print_gnu_advertisement ();
2746 print_gdb_version (gdb_stdout);
2747 printf_filtered ("\n");
2751 /* xgdb calls this to reprint the usual GDB prompt. Obsolete now that xgdb
2757 printf_unfiltered ("%s", prompt);
2758 gdb_flush (gdb_stdout);
2762 quit_command (args, from_tty)
2766 if (inferior_pid != 0 && target_has_execution)
2770 if (query ("The program is running. Quit anyway (and detach it)? "))
2771 target_detach (args, from_tty);
2773 error ("Not confirmed.");
2777 if (query ("The program is running. Quit anyway (and kill it)? "))
2780 error ("Not confirmed.");
2783 /* UDI wants this, to kill the TIP. */
2786 /* Save the history information if it is appropriate to do so. */
2787 if (write_history_p && history_filename)
2788 write_history (history_filename);
2793 /* Returns whether GDB is running on a terminal and whether the user
2794 desires that questions be asked of them on that terminal. */
2797 input_from_terminal_p ()
2799 return gdb_has_a_terminal () && (instream == stdin) & caution;
2804 pwd_command (args, from_tty)
2808 if (args) error ("The \"pwd\" command does not take an argument: %s", args);
2809 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
2811 if (!STREQ (gdb_dirbuf, current_directory))
2812 printf_unfiltered ("Working directory %s\n (canonically %s).\n",
2813 current_directory, gdb_dirbuf);
2815 printf_unfiltered ("Working directory %s.\n", current_directory);
2819 cd_command (dir, from_tty)
2824 /* Found something other than leading repetitions of "/..". */
2825 int found_real_path;
2828 /* If the new directory is absolute, repeat is a no-op; if relative,
2829 repeat might be useful but is more likely to be a mistake. */
2833 error_no_arg ("new working directory");
2835 dir = tilde_expand (dir);
2836 make_cleanup (free, dir);
2838 if (chdir (dir) < 0)
2839 perror_with_name (dir);
2842 dir = savestring (dir, len - (len > 1 && SLASH_P(dir[len-1])));
2844 current_directory = dir;
2847 if (SLASH_P (current_directory[0]) && current_directory[1] == '\0')
2848 current_directory = concat (current_directory, dir, NULL);
2850 current_directory = concat (current_directory, SLASH_STRING, dir, NULL);
2854 /* Now simplify any occurrences of `.' and `..' in the pathname. */
2856 found_real_path = 0;
2857 for (p = current_directory; *p;)
2859 if (SLASH_P (p[0]) && p[1] == '.' && (p[2] == 0 || SLASH_P (p[2])))
2861 else if (SLASH_P (p[0]) && p[1] == '.' && p[2] == '.'
2862 && (p[3] == 0 || SLASH_P (p[3])))
2864 if (found_real_path)
2866 /* Search backwards for the directory just before the "/.."
2867 and obliterate it and the "/..". */
2869 while (q != current_directory && ! SLASH_P (q[-1]))
2872 if (q == current_directory)
2873 /* current_directory is
2874 a relative pathname ("can't happen"--leave it alone). */
2878 strcpy (q - 1, p + 3);
2883 /* We are dealing with leading repetitions of "/..", for example
2884 "/../..", which is the Mach super-root. */
2889 found_real_path = 1;
2894 forget_cached_source_info ();
2897 pwd_command ((char *) 0, 1);
2900 struct source_cleanup_lines_args {
2903 char *old_pre_error;
2904 char *old_error_pre_print;
2908 source_cleanup_lines (args)
2911 struct source_cleanup_lines_args *p =
2912 (struct source_cleanup_lines_args *)args;
2913 source_line_number = p->old_line;
2914 source_file_name = p->old_file;
2915 source_pre_error = p->old_pre_error;
2916 error_pre_print = p->old_error_pre_print;
2921 source_command (args, from_tty)
2926 struct cleanup *old_cleanups;
2928 struct source_cleanup_lines_args old_lines;
2933 error ("source command requires pathname of file to source.");
2936 file = tilde_expand (file);
2937 old_cleanups = make_cleanup (free, file);
2939 stream = fopen (file, FOPEN_RT);
2941 perror_with_name (file);
2943 make_cleanup (fclose, stream);
2945 old_lines.old_line = source_line_number;
2946 old_lines.old_file = source_file_name;
2947 old_lines.old_pre_error = source_pre_error;
2948 old_lines.old_error_pre_print = error_pre_print;
2949 make_cleanup (source_cleanup_lines, &old_lines);
2950 source_line_number = 0;
2951 source_file_name = file;
2952 source_pre_error = error_pre_print == NULL ? "" : error_pre_print;
2953 source_pre_error = savestring (source_pre_error, strlen (source_pre_error));
2954 make_cleanup (free, source_pre_error);
2955 /* This will get set every time we read a line. So it won't stay "" for
2957 error_pre_print = "";
2959 needed_length = strlen (source_file_name) + strlen (source_pre_error) + 80;
2960 if (source_error_allocated < needed_length)
2962 source_error_allocated *= 2;
2963 if (source_error_allocated < needed_length)
2964 source_error_allocated = needed_length;
2965 if (source_error == NULL)
2966 source_error = xmalloc (source_error_allocated);
2968 source_error = xrealloc (source_error, source_error_allocated);
2971 read_command_file (stream);
2973 do_cleanups (old_cleanups);
2978 echo_command (text, from_tty)
2986 while ((c = *p++) != '\0')
2990 /* \ at end of argument is used after spaces
2991 so they won't be lost. */
2995 c = parse_escape (&p);
2997 printf_filtered ("%c", c);
3000 printf_filtered ("%c", c);
3003 /* Force this output to appear now. */
3005 gdb_flush (gdb_stdout);
3009 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3011 /* Functions to manipulate the endianness of the target. */
3013 #ifndef TARGET_BYTE_ORDER_DEFAULT
3014 #define TARGET_BYTE_ORDER_DEFAULT BIG_ENDIAN
3017 int target_byte_order = TARGET_BYTE_ORDER_DEFAULT;
3019 static int target_byte_order_auto = 1;
3021 /* Called if the user enters ``set endian'' without an argument. */
3023 set_endian (args, from_tty)
3027 printf_unfiltered ("\"set endian\" must be followed by \"auto\", \"big\" or \"little\".\n");
3028 show_endian (args, from_tty);
3031 /* Called by ``set endian big''. */
3033 set_endian_big (args, from_tty)
3037 target_byte_order = BIG_ENDIAN;
3038 target_byte_order_auto = 0;
3041 /* Called by ``set endian little''. */
3043 set_endian_little (args, from_tty)
3047 target_byte_order = LITTLE_ENDIAN;
3048 target_byte_order_auto = 0;
3051 /* Called by ``set endian auto''. */
3053 set_endian_auto (args, from_tty)
3057 target_byte_order_auto = 1;
3060 /* Called by ``show endian''. */
3062 show_endian (args, from_tty)
3067 (target_byte_order_auto
3068 ? "The target endianness is set automatically (currently %s endian)\n"
3069 : "The target is assumed to be %s endian\n");
3070 printf_unfiltered (msg, TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3073 #endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
3075 /* Set the endianness from a BFD. */
3077 set_endian_from_file (abfd)
3080 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3083 if (abfd->xvec->byteorder_big_p)
3086 want = LITTLE_ENDIAN;
3087 if (target_byte_order_auto)
3088 target_byte_order = want;
3089 else if (target_byte_order != want)
3090 warning ("%s endian file does not match %s endian target.",
3091 want == BIG_ENDIAN ? "big" : "little",
3092 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3094 #else /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */
3096 if (abfd->xvec->byteorder_big_p
3097 ? TARGET_BYTE_ORDER != BIG_ENDIAN
3098 : TARGET_BYTE_ORDER == BIG_ENDIAN)
3099 warning ("%s endian file does not match %s endian target.",
3100 abfd->xvec->byteorder_big_p ? "big" : "little",
3101 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3103 #endif /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */
3106 /* Functions to manipulate command line editing control variables. */
3108 /* Number of commands to print in each call to show_commands. */
3109 #define Hist_print 10
3111 show_commands (args, from_tty)
3115 /* Index for history commands. Relative to history_base. */
3118 /* Number of the history entry which we are planning to display next.
3119 Relative to history_base. */
3122 /* The first command in the history which doesn't exist (i.e. one more
3123 than the number of the last command). Relative to history_base. */
3126 extern HIST_ENTRY *history_get PARAMS ((int));
3128 /* Print out some of the commands from the command history. */
3129 /* First determine the length of the history list. */
3130 hist_len = history_size;
3131 for (offset = 0; offset < history_size; offset++)
3133 if (!history_get (history_base + offset))
3142 if (args[0] == '+' && args[1] == '\0')
3143 /* "info editing +" should print from the stored position. */
3146 /* "info editing <exp>" should print around command number <exp>. */
3147 num = (parse_and_eval_address (args) - history_base) - Hist_print / 2;
3149 /* "show commands" means print the last Hist_print commands. */
3152 num = hist_len - Hist_print;
3158 /* If there are at least Hist_print commands, we want to display the last
3159 Hist_print rather than, say, the last 6. */
3160 if (hist_len - num < Hist_print)
3162 num = hist_len - Hist_print;
3167 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
3169 printf_filtered ("%5d %s\n", history_base + offset,
3170 (history_get (history_base + offset))->line);
3173 /* The next command we want to display is the next one that we haven't
3177 /* If the user repeats this command with return, it should do what
3178 "show commands +" does. This is unnecessary if arg is null,
3179 because "show commands +" is not useful after "show commands". */
3180 if (from_tty && args)
3187 /* Called by do_setshow_command. */
3190 set_history_size_command (args, from_tty, c)
3193 struct cmd_list_element *c;
3195 if (history_size == INT_MAX)
3196 unstifle_history ();
3197 else if (history_size >= 0)
3198 stifle_history (history_size);
3201 history_size = INT_MAX;
3202 error ("History size must be non-negative");
3208 set_history (args, from_tty)
3212 printf_unfiltered ("\"set history\" must be followed by the name of a history subcommand.\n");
3213 help_list (sethistlist, "set history ", -1, gdb_stdout);
3218 show_history (args, from_tty)
3222 cmd_show_list (showhistlist, from_tty, "");
3225 int info_verbose = 0; /* Default verbose msgs off */
3227 /* Called by do_setshow_command. An elaborate joke. */
3230 set_verbose (args, from_tty, c)
3233 struct cmd_list_element *c;
3235 char *cmdname = "verbose";
3236 struct cmd_list_element *showcmd;
3238 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
3242 c->doc = "Set verbose printing of informational messages.";
3243 showcmd->doc = "Show verbose printing of informational messages.";
3247 c->doc = "Set verbosity.";
3248 showcmd->doc = "Show verbosity.";
3253 float_handler (signo)
3256 /* This message is based on ANSI C, section 4.7. Note that integer
3257 divide by zero causes this, so "float" is a misnomer. */
3258 signal (SIGFPE, float_handler);
3259 error ("Erroneous arithmetic operation.");
3271 enablebreaklist = NULL;
3275 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3279 showhistlist = NULL;
3280 unsethistlist = NULL;
3281 #if MAINTENANCE_CMDS
3282 maintenancelist = NULL;
3283 maintenanceinfolist = NULL;
3284 maintenanceprintlist = NULL;
3286 setprintlist = NULL;
3287 showprintlist = NULL;
3288 setchecklist = NULL;
3289 showchecklist = NULL;
3292 /* Init the history buffer. Note that we are called after the init file(s)
3293 * have been read so that the user can change the history file via his
3294 * .gdbinit file (for instance). The GDBHISTFILE environment variable
3295 * overrides all of this.
3303 tmpenv = getenv ("HISTSIZE");
3305 history_size = atoi (tmpenv);
3306 else if (!history_size)
3309 stifle_history (history_size);
3311 tmpenv = getenv ("GDBHISTFILE");
3313 history_filename = savestring (tmpenv, strlen(tmpenv));
3314 else if (!history_filename) {
3315 /* We include the current directory so that if the user changes
3316 directories the file written will be the same as the one
3318 history_filename = concat (current_directory, "/.gdb_history", NULL);
3320 read_history (history_filename);
3326 struct cmd_list_element *c;
3328 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3330 add_prefix_cmd ("endian", class_support, set_endian,
3331 "Set endianness of target.",
3332 &endianlist, "set endian ", 0, &setlist);
3333 add_cmd ("big", class_support, set_endian_big,
3334 "Set target as being big endian.", &endianlist);
3335 add_cmd ("little", class_support, set_endian_little,
3336 "Set target as being little endian.", &endianlist);
3337 add_cmd ("auto", class_support, set_endian_auto,
3338 "Select target endianness automatically.", &endianlist);
3339 add_cmd ("endian", class_support, show_endian,
3340 "Show endianness of target.", &showlist);
3342 #endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
3344 #ifdef DEFAULT_PROMPT
3345 prompt = savestring (DEFAULT_PROMPT, strlen(DEFAULT_PROMPT));
3347 prompt = savestring ("(gdb) ", 6);
3350 /* Set the important stuff up for command editing. */
3351 command_editing_p = 1;
3352 history_expansion_p = 0;
3353 write_history_p = 0;
3355 /* Setup important stuff for command line editing. */
3356 rl_completion_entry_function = (int (*)()) readline_line_completion_function;
3357 rl_completer_word_break_characters = gdb_completer_word_break_characters;
3358 rl_completer_quote_characters = gdb_completer_quote_characters;
3359 rl_readline_name = "gdb";
3361 /* Define the classes of commands.
3362 They will appear in the help list in the reverse of this order. */
3364 add_cmd ("internals", class_maintenance, NO_FUNCTION,
3365 "Maintenance commands.\n\
3366 Some gdb commands are provided just for use by gdb maintainers.\n\
3367 These commands are subject to frequent change, and may not be as\n\
3368 well documented as user commands.",
3370 add_cmd ("obscure", class_obscure, NO_FUNCTION, "Obscure features.", &cmdlist);
3371 add_cmd ("aliases", class_alias, NO_FUNCTION, "Aliases of other commands.", &cmdlist);
3372 add_cmd ("user-defined", class_user, NO_FUNCTION, "User-defined commands.\n\
3373 The commands in this class are those defined by the user.\n\
3374 Use the \"define\" command to define a command.", &cmdlist);
3375 add_cmd ("support", class_support, NO_FUNCTION, "Support facilities.", &cmdlist);
3376 add_cmd ("status", class_info, NO_FUNCTION, "Status inquiries.", &cmdlist);
3377 add_cmd ("files", class_files, NO_FUNCTION, "Specifying and examining files.", &cmdlist);
3378 add_cmd ("breakpoints", class_breakpoint, NO_FUNCTION, "Making program stop at certain points.", &cmdlist);
3379 add_cmd ("data", class_vars, NO_FUNCTION, "Examining data.", &cmdlist);
3380 add_cmd ("stack", class_stack, NO_FUNCTION, "Examining the stack.\n\
3381 The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
3382 counting from zero for the innermost (currently executing) frame.\n\n\
3383 At any time gdb identifies one frame as the \"selected\" frame.\n\
3384 Variable lookups are done with respect to the selected frame.\n\
3385 When the program being debugged stops, gdb selects the innermost frame.\n\
3386 The commands below can be used to select other frames by number or address.",
3388 add_cmd ("running", class_run, NO_FUNCTION, "Running the program.", &cmdlist);
3390 add_com ("pwd", class_files, pwd_command,
3391 "Print working directory. This is used for your program as well.");
3392 c = add_cmd ("cd", class_files, cd_command,
3393 "Set working directory to DIR for debugger and program being debugged.\n\
3394 The change does not take effect for the program being debugged\n\
3395 until the next time it is started.", &cmdlist);
3396 c->completer = filename_completer;
3399 (add_set_cmd ("prompt", class_support, var_string, (char *)&prompt,
3404 add_com ("echo", class_support, echo_command,
3405 "Print a constant string. Give string as argument.\n\
3406 C escape sequences may be used in the argument.\n\
3407 No newline is added at the end of the argument;\n\
3408 use \"\\n\" if you want a newline to be printed.\n\
3409 Since leading and trailing whitespace are ignored in command arguments,\n\
3410 if you want to print some you must use \"\\\" before leading whitespace\n\
3411 to be printed or after trailing whitespace.");
3412 add_com ("document", class_support, document_command,
3413 "Document a user-defined command.\n\
3414 Give command name as argument. Give documentation on following lines.\n\
3415 End with a line of just \"end\".");
3416 add_com ("define", class_support, define_command,
3417 "Define a new command name. Command name is argument.\n\
3418 Definition appears on following lines, one command per line.\n\
3419 End with a line of just \"end\".\n\
3420 Use the \"document\" command to give documentation for the new command.\n\
3421 Commands defined in this way may have up to ten arguments.");
3424 c = add_cmd ("source", class_support, source_command,
3425 "Read commands from a file named FILE.\n\
3426 Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
3427 when gdb is started.", &cmdlist);
3429 /* Punt file name, we can't help it easily. */
3430 c = add_cmd ("source", class_support, source_command,
3431 "Read commands from a file named FILE.\n\
3432 Note that the file \".gdbinit\" is read automatically in this way\n\
3433 when gdb is started.", &cmdlist);
3435 c->completer = filename_completer;
3437 add_com ("quit", class_support, quit_command, "Exit gdb.");
3438 add_com ("help", class_support, help_command, "Print list of commands.");
3439 add_com_alias ("q", "quit", class_support, 1);
3440 add_com_alias ("h", "help", class_support, 1);
3443 c = add_set_cmd ("verbose", class_support, var_boolean, (char *)&info_verbose,
3446 add_show_from_set (c, &showlist);
3447 c->function.sfunc = set_verbose;
3448 set_verbose (NULL, 0, c);
3451 (add_set_cmd ("editing", class_support, var_boolean, (char *)&command_editing_p,
3452 "Set editing of command lines as they are typed.\n\
3453 Use \"on\" to enable to enable the editing, and \"off\" to disable it.\n\
3454 Without an argument, command line editing is enabled. To edit, use\n\
3455 EMACS-like or VI-like commands like control-P or ESC.", &setlist),
3458 add_prefix_cmd ("history", class_support, set_history,
3459 "Generic command for setting command history parameters.",
3460 &sethistlist, "set history ", 0, &setlist);
3461 add_prefix_cmd ("history", class_support, show_history,
3462 "Generic command for showing command history parameters.",
3463 &showhistlist, "show history ", 0, &showlist);
3466 (add_set_cmd ("expansion", no_class, var_boolean, (char *)&history_expansion_p,
3467 "Set history expansion on command input.\n\
3468 Without an argument, history expansion is enabled.", &sethistlist),
3472 (add_set_cmd ("save", no_class, var_boolean, (char *)&write_history_p,
3473 "Set saving of the history record on exit.\n\
3474 Use \"on\" to enable to enable the saving, and \"off\" to disable it.\n\
3475 Without an argument, saving is enabled.", &sethistlist),
3478 c = add_set_cmd ("size", no_class, var_integer, (char *)&history_size,
3479 "Set the size of the command history, \n\
3480 ie. the number of previous commands to keep a record of.", &sethistlist);
3481 add_show_from_set (c, &showhistlist);
3482 c->function.sfunc = set_history_size_command;
3485 (add_set_cmd ("filename", no_class, var_filename, (char *)&history_filename,
3486 "Set the filename in which to record the command history\n\
3487 (the list of previous commands of which a record is kept).", &sethistlist),
3491 (add_set_cmd ("confirm", class_support, var_boolean,
3493 "Set whether to confirm potentially dangerous operations.",
3497 add_prefix_cmd ("info", class_info, info_command,
3498 "Generic command for showing things about the program being debugged.",
3499 &infolist, "info ", 0, &cmdlist);
3500 add_com_alias ("i", "info", class_info, 1);
3502 add_com ("complete", class_obscure, complete_command,
3503 "List the completions for the rest of the line as a command.");
3505 add_prefix_cmd ("show", class_info, show_command,
3506 "Generic command for showing things about the debugger.",
3507 &showlist, "show ", 0, &cmdlist);
3508 /* Another way to get at the same thing. */
3509 add_info ("set", show_command, "Show all GDB settings.");
3511 add_cmd ("commands", no_class, show_commands,
3512 "Show the history of commands you typed.\n\
3513 You can supply a command number to start with, or a `+' to start after\n\
3514 the previous command number shown.",
3517 add_cmd ("version", no_class, show_version,
3518 "Show what version of GDB this is.", &showlist);
3520 add_com ("while", class_support, while_command,
3521 "Execute nested commands WHILE the conditional expression is non zero.\n\
3522 The conditional expression must follow the word `while' and must in turn be\n\
3523 followed by a new line. The nested commands must be entered one per line,\n\
3524 and should be terminated by the word `end'.");
3526 add_com ("if", class_support, if_command,
3527 "Execute nested commands once IF the conditional expression is non zero.\n\
3528 The conditional expression must follow the word `if' and must in turn be\n\
3529 followed by a new line. The nested commands must be entered one per line,\n\
3530 and should be terminated by the word 'else' or `end'. If an else clause\n\
3531 is used, the same rules apply to its nested commands as to the first ones.");
3533 /* If target is open when baud changes, it doesn't take effect until the
3534 next open (I think, not sure). */
3535 add_show_from_set (add_set_cmd ("remotebaud", no_class,
3536 var_zinteger, (char *)&baud_rate,
3537 "Set baud rate for remote serial I/O.\n\
3538 This value is used to set the speed of the serial port when debugging\n\
3539 using remote targets.", &setlist),
3543 add_set_cmd ("remotedebug", no_class, var_zinteger, (char *)&remote_debug,
3544 "Set debugging of remote protocol.\n\
3545 When enabled, each packet sent or received with the remote target\n\
3546 is displayed.", &setlist),