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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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>
50 #include "gdb_string.h"
54 #include <sys/param.h>
58 extern void initialize_targets PARAMS ((void));
60 extern void initialize_utils PARAMS ((void));
62 /* Prototypes for local functions */
64 static char * line_completion_function PARAMS ((char *, int, char *, int));
66 static char * readline_line_completion_function PARAMS ((char *, int));
68 static void command_loop_marker PARAMS ((int));
70 static void while_command PARAMS ((char *, int));
72 static void if_command PARAMS ((char *, int));
74 static struct command_line *
75 build_command_line PARAMS ((enum command_control_type, char *));
77 static struct command_line *
78 get_command_line PARAMS ((enum command_control_type, char *));
80 static void realloc_body_list PARAMS ((struct command_line *, int));
82 static enum misc_command_type read_next_line PARAMS ((struct command_line **));
84 static enum command_control_type
85 recurse_read_control_structure PARAMS ((struct command_line *));
87 static struct cleanup * setup_user_args PARAMS ((char *));
89 static char * locate_arg PARAMS ((char *));
91 static char * insert_args PARAMS ((char *));
93 static void arg_cleanup PARAMS ((void));
95 static void init_main PARAMS ((void));
97 static void init_cmd_lists PARAMS ((void));
99 static void float_handler PARAMS ((int));
101 static void init_signals PARAMS ((void));
103 static void set_verbose PARAMS ((char *, int, struct cmd_list_element *));
105 #ifdef TARGET_BYTE_ORDER_SELECTABLE
107 static void set_endian PARAMS ((char *, int));
109 static void set_endian_big PARAMS ((char *, int));
111 static void set_endian_little PARAMS ((char *, int));
113 static void set_endian_auto PARAMS ((char *, int));
115 static void show_endian PARAMS ((char *, int));
119 static void show_history PARAMS ((char *, int));
121 static void set_history PARAMS ((char *, int));
123 static void set_history_size_command PARAMS ((char *, int,
124 struct cmd_list_element *));
126 static void show_commands PARAMS ((char *, int));
128 static void echo_command PARAMS ((char *, int));
130 static void pwd_command PARAMS ((char *, int));
132 static void show_version PARAMS ((char *, int));
134 static void document_command PARAMS ((char *, int));
136 static void define_command PARAMS ((char *, int));
138 static void validate_comname PARAMS ((char *));
140 static void help_command PARAMS ((char *, int));
142 static void show_command PARAMS ((char *, int));
144 static void info_command PARAMS ((char *, int));
146 static void complete_command PARAMS ((char *, int));
148 static void do_nothing PARAMS ((int));
150 static int quit_cover PARAMS ((char *));
152 static void disconnect PARAMS ((int));
154 static void source_cleanup PARAMS ((FILE *));
156 /* If this definition isn't overridden by the header files, assume
157 that isatty and fileno exist on this system. */
159 #define ISATTY(FP) (isatty (fileno (FP)))
162 /* Initialization file name for gdb. This is overridden in some configs. */
164 #ifndef GDBINIT_FILENAME
165 #define GDBINIT_FILENAME ".gdbinit"
167 char gdbinit[] = GDBINIT_FILENAME;
169 int inhibit_gdbinit = 0;
171 /* If nonzero, and GDB has been configured to be able to use windows,
172 attempt to open them upon startup. */
176 /* Version number of GDB, as a string. */
178 extern char *version;
180 /* Canonical host name as a string. */
182 extern char *host_name;
184 /* Canonical target name as a string. */
186 extern char *target_name;
188 extern char lang_frame_mismatch_warn[]; /* language.c */
190 /* Flag for whether we want all the "from_tty" gubbish printed. */
192 int caution = 1; /* Default is yes, sigh. */
194 /* Define all cmd_list_elements. */
196 /* Chain containing all defined commands. */
198 struct cmd_list_element *cmdlist;
200 /* Chain containing all defined info subcommands. */
202 struct cmd_list_element *infolist;
204 /* Chain containing all defined enable subcommands. */
206 struct cmd_list_element *enablelist;
208 /* Chain containing all defined disable subcommands. */
210 struct cmd_list_element *disablelist;
212 /* Chain containing all defined delete subcommands. */
214 struct cmd_list_element *deletelist;
216 /* Chain containing all defined "enable breakpoint" subcommands. */
218 struct cmd_list_element *enablebreaklist;
220 /* Chain containing all defined set subcommands */
222 struct cmd_list_element *setlist;
224 /* Chain containing all defined unset subcommands */
226 struct cmd_list_element *unsetlist;
228 /* Chain containing all defined show subcommands. */
230 struct cmd_list_element *showlist;
232 #ifdef TARGET_BYTE_ORDER_SELECTABLE
233 /* Chain containing the \"set endian\" commands. */
235 struct cmd_list_element *endianlist;
238 /* Chain containing all defined \"set history\". */
240 struct cmd_list_element *sethistlist;
242 /* Chain containing all defined \"show history\". */
244 struct cmd_list_element *showhistlist;
246 /* Chain containing all defined \"unset history\". */
248 struct cmd_list_element *unsethistlist;
250 /* Chain containing all defined maintenance subcommands. */
253 struct cmd_list_element *maintenancelist;
256 /* Chain containing all defined "maintenance info" subcommands. */
259 struct cmd_list_element *maintenanceinfolist;
262 /* Chain containing all defined "maintenance print" subcommands. */
265 struct cmd_list_element *maintenanceprintlist;
268 struct cmd_list_element *setprintlist;
270 struct cmd_list_element *showprintlist;
272 struct cmd_list_element *setchecklist;
274 struct cmd_list_element *showchecklist;
276 /* stdio stream that command input is being read from. Set to stdin normally.
277 Set by source_command to the file we are sourcing. Set to NULL if we are
278 executing a user-defined command. */
282 /* Current working directory. */
284 char *current_directory;
286 /* The directory name is actually stored here (usually). */
287 char gdb_dirbuf[1024];
289 /* Function to call before reading a command, if nonzero.
290 The function receives two args: an input stream,
291 and a prompt string. */
293 void (*window_hook) PARAMS ((FILE *, char *));
298 /* gdb prints this when reading a command interactively */
301 /* Buffer used for reading command lines, and the size
302 allocated for it so far. */
307 /* Nonzero if the current command is modified by "server ". This
308 affects things like recording into the command history, comamnds
309 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
310 whatever) can issue its own commands and also send along commands
311 from the user, and have the user not notice that the user interface
312 is issuing commands too. */
315 /* Baud rate specified for talking to serial target systems. Default
316 is left as -1, so targets can choose their own defaults. */
317 /* FIXME: This means that "show remotebaud" and gr_files_info can print -1
318 or (unsigned int)-1. This is a Bad User Interface. */
322 /* Non-zero tells remote* modules to output debugging info. */
324 int remote_debug = 0;
326 /* Level of control structure. */
327 static int control_level;
329 /* Structure for arguments to user defined functions. */
330 #define MAXUSERARGS 10
333 struct user_args *next;
342 /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
346 #define STOP_SIGNAL SIGTSTP
347 static void stop_sig PARAMS ((int));
351 /* Some System V have job control but not sigsetmask(). */
352 #if !defined (HAVE_SIGSETMASK)
354 #define HAVE_SIGSETMASK 1
356 #define HAVE_SIGSETMASK 0
360 #if 0 == (HAVE_SIGSETMASK)
361 #define sigsetmask(n)
364 /* Hooks for alternate command interfaces. */
366 /* Called after most modules have been initialized, but before taking users
369 void (*init_ui_hook) PARAMS ((void));
371 /* Called instead of command_loop at top level. Can be invoked via
372 return_to_top_level. */
374 void (*command_loop_hook) PARAMS ((void));
376 /* Called instead of fputs for all output. */
378 void (*fputs_unfiltered_hook) PARAMS ((const char *linebuffer, FILE *stream));
380 /* Called from print_frame_info to list the line we stopped in. */
382 void (*print_frame_info_listing_hook) PARAMS ((struct symtab *s, int line,
383 int stopline, int noerror));
384 /* Replaces most of query. */
386 int (*query_hook) PARAMS (());
388 /* Called from gdb_flush to flush output. */
390 void (*flush_hook) PARAMS ((FILE *stream));
392 /* Called as appropriate to notify the interface of the specified breakpoint
395 void (*create_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
396 void (*delete_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
397 void (*modify_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
399 /* Called during long calculations to allow GUI to repair window damage, and to
400 check for stop buttons, etc... */
402 void (*interactive_hook) PARAMS ((void));
404 /* Called when the registers have changed, as a hint to a GUI
405 to minimize window update. */
407 void (*registers_changed_hook) PARAMS ((void));
409 /* Called when going to wait for the target. Usually allows the GUI to run
410 while waiting for target events. */
412 int (*target_wait_hook) PARAMS ((int pid, struct target_waitstatus *status));
414 /* Used by UI as a wrapper around command execution. May do various things
415 like enabling/disabling buttons, etc... */
417 void (*call_command_hook) PARAMS ((struct cmd_list_element *c, char *cmd,
421 /* Takes control from error (). Typically used to prevent longjmps out of the
422 middle of the GUI. Usually used in conjunction with a catch routine. */
424 NORETURN void (*error_hook) PARAMS (()) ATTR_NORETURN;
427 /* Where to go for return_to_top_level (RETURN_ERROR). */
428 jmp_buf error_return;
429 /* Where to go for return_to_top_level (RETURN_QUIT). */
432 /* Return for reason REASON. This generally gets back to the command
433 loop, but can be caught via catch_errors. */
436 return_to_top_level (reason)
437 enum return_reason reason;
442 /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
443 I can think of a reason why that is vital, though). */
444 bpstat_clear_actions(stop_bpstat); /* Clear queued breakpoint commands */
446 disable_current_display ();
447 do_cleanups (ALL_CLEANUPS);
449 if (annotation_level > 1)
460 (NORETURN void) longjmp
461 (reason == RETURN_ERROR ? error_return : quit_return, 1);
464 /* Call FUNC with arg ARGS, catching any errors. If there is no
465 error, return the value returned by FUNC. If there is an error,
466 print ERRSTRING, print the specific error message, then return
469 Must not be called with immediate_quit in effect (bad things might
470 happen, say we got a signal in the middle of a memcpy to quit_return).
471 This is an OK restriction; with very few exceptions immediate_quit can
472 be replaced by judicious use of QUIT.
474 MASK specifies what to catch; it is normally set to
475 RETURN_MASK_ALL, if for no other reason than that the code which
476 calls catch_errors might not be set up to deal with a quit which
477 isn't caught. But if the code can deal with it, it generally
478 should be RETURN_MASK_ERROR, unless for some reason it is more
479 useful to abort only the portion of the operation inside the
480 catch_errors. Note that quit should return to the command line
481 fairly quickly, even if some further processing is being done. */
484 catch_errors (func, args, errstring, mask)
485 int (*func) PARAMS ((char *));
494 struct cleanup *saved_cleanup_chain;
495 char *saved_error_pre_print;
496 char *saved_quit_pre_print;
498 saved_cleanup_chain = save_cleanups ();
499 saved_error_pre_print = error_pre_print;
500 saved_quit_pre_print = quit_pre_print;
502 if (mask & RETURN_MASK_ERROR)
504 memcpy ((char *)saved_error, (char *)error_return, sizeof (jmp_buf));
505 error_pre_print = errstring;
507 if (mask & RETURN_MASK_QUIT)
509 memcpy (saved_quit, quit_return, sizeof (jmp_buf));
510 quit_pre_print = errstring;
513 if (setjmp (tmp_jmp) == 0)
515 if (mask & RETURN_MASK_ERROR)
516 memcpy (error_return, tmp_jmp, sizeof (jmp_buf));
517 if (mask & RETURN_MASK_QUIT)
518 memcpy (quit_return, tmp_jmp, sizeof (jmp_buf));
519 val = (*func) (args);
524 restore_cleanups (saved_cleanup_chain);
526 if (mask & RETURN_MASK_ERROR)
528 memcpy (error_return, saved_error, sizeof (jmp_buf));
529 error_pre_print = saved_error_pre_print;
531 if (mask & RETURN_MASK_QUIT)
533 memcpy (quit_return, saved_quit, sizeof (jmp_buf));
534 quit_pre_print = saved_quit_pre_print;
539 /* Handler for SIGHUP. */
545 catch_errors (quit_cover, NULL,
546 "Could not kill the program being debugged", RETURN_MASK_ALL);
547 signal (SIGHUP, SIG_DFL);
548 kill (getpid (), SIGHUP);
551 /* Just a little helper function for disconnect(). */
557 caution = 0; /* Throw caution to the wind -- we're exiting.
558 This prevents asking the user dumb questions. */
559 quit_command((char *)0, 0);
563 /* Line number we are currently in in a file which is being sourced. */
564 static int source_line_number;
566 /* Name of the file we are sourcing. */
567 static char *source_file_name;
569 /* Buffer containing the error_pre_print used by the source stuff.
571 static char *source_error;
572 static int source_error_allocated;
574 /* Something to glom on to the start of error_pre_print if source_file_name
576 static char *source_pre_error;
578 /* Clean up on error during a "source" command (or execution of a
579 user-defined command). */
582 source_cleanup (stream)
585 /* Restore the previous input stream. */
589 /* Read commands from STREAM. */
591 read_command_file (stream)
594 struct cleanup *cleanups;
596 cleanups = make_cleanup (source_cleanup, instream);
599 do_cleanups (cleanups);
602 extern void init_proc ();
604 void (*pre_init_ui_hook) PARAMS ((void));
609 if (pre_init_ui_hook)
612 /* Run the init function of each source file */
614 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
615 current_directory = gdb_dirbuf;
617 init_cmd_lists (); /* This needs to be done first */
618 initialize_targets (); /* Setup target_terminal macros for utils.c */
619 initialize_utils (); /* Make errors and warnings possible */
620 initialize_all_files ();
621 init_main (); /* But that omits this file! Do it now */
626 /* We need a default language for parsing expressions, so simple things like
627 "set width 0" won't fail if no language is explicitly set in a config file
628 or implicitly set by reading an executable during startup. */
629 set_language (language_c);
630 expected_language = current_language; /* don't warn about the change. */
636 /* Allocate, initialize a new command line structure for one of the
637 control commands (if/while). */
639 static struct command_line *
640 build_command_line (type, args)
641 enum command_control_type type;
644 struct command_line *cmd;
646 cmd = (struct command_line *)xmalloc (sizeof (struct command_line));
648 cmd->control_type = type;
652 = (struct command_line **)xmalloc (sizeof (struct command_line *)
654 memset (cmd->body_list, 0, sizeof (struct command_line *) * cmd->body_count);
655 cmd->line = savestring (args, strlen (args));
659 /* Build and return a new command structure for the control commands
660 such as "if" and "while". */
662 static struct command_line *
663 get_command_line (type, arg)
664 enum command_control_type type;
667 struct command_line *cmd;
668 struct cleanup *old_chain = NULL;
670 /* Allocate and build a new command line structure. */
671 cmd = build_command_line (type, arg);
673 old_chain = make_cleanup (free_command_lines, &cmd);
675 /* Read in the body of this command. */
676 if (recurse_read_control_structure (cmd) == invalid_control)
678 warning ("error reading in control structure\n");
679 do_cleanups (old_chain);
683 discard_cleanups (old_chain);
687 /* Recursively print a command (including full control structures). */
689 print_command_line (cmd, depth)
690 struct command_line *cmd;
697 for (i = 0; i < depth; i++)
698 fputs_filtered (" ", gdb_stdout);
701 /* A simple command, print it and return. */
702 if (cmd->control_type == simple_control)
704 fputs_filtered (cmd->line, gdb_stdout);
705 fputs_filtered ("\n", gdb_stdout);
709 /* loop_continue to jump to the start of a while loop, print it
711 if (cmd->control_type == continue_control)
713 fputs_filtered ("loop_continue\n", gdb_stdout);
717 /* loop_break to break out of a while loop, print it and return. */
718 if (cmd->control_type == break_control)
720 fputs_filtered ("loop_break\n", gdb_stdout);
724 /* A while command. Recursively print its subcommands before returning. */
725 if (cmd->control_type == while_control)
727 struct command_line *list;
728 fputs_filtered ("while ", gdb_stdout);
729 fputs_filtered (cmd->line, gdb_stdout);
730 fputs_filtered ("\n", gdb_stdout);
731 list = *cmd->body_list;
734 print_command_line (list, depth + 1);
739 /* An if command. Recursively print both arms before returning. */
740 if (cmd->control_type == if_control)
742 fputs_filtered ("if ", gdb_stdout);
743 fputs_filtered (cmd->line, gdb_stdout);
744 fputs_filtered ("\n", gdb_stdout);
746 print_command_line (cmd->body_list[0], depth + 1);
748 /* Show the false arm if it exists. */
749 if (cmd->body_count == 2)
753 for (i = 0; i < depth; i++)
754 fputs_filtered (" ", gdb_stdout);
756 fputs_filtered ("else\n", gdb_stdout);
757 print_command_line (cmd->body_list[1], depth + 1);
761 for (i = 0; i < depth; i++)
762 fputs_filtered (" ", gdb_stdout);
764 fputs_filtered ("end\n", gdb_stdout);
768 /* Execute the command in CMD. */
770 enum command_control_type
771 execute_control_command (cmd)
772 struct command_line *cmd;
774 struct expression *expr;
775 struct command_line *current;
776 struct cleanup *old_chain = 0;
779 enum command_control_type ret;
782 switch (cmd->control_type)
785 /* A simple command, execute it and return. */
786 new_line = insert_args (cmd->line);
788 return invalid_control;
789 old_chain = make_cleanup (free_current_contents, &new_line);
790 execute_command (new_line, 0);
791 ret = cmd->control_type;
794 case continue_control:
796 /* Return for "continue", and "break" so we can either
797 continue the loop at the top, or break out. */
798 ret = cmd->control_type;
803 /* Parse the loop control expression for the while statement. */
804 new_line = insert_args (cmd->line);
806 return invalid_control;
807 old_chain = make_cleanup (free_current_contents, &new_line);
808 expr = parse_expression (new_line);
809 make_cleanup (free_current_contents, &expr);
811 ret = simple_control;
814 /* Keep iterating so long as the expression is true. */
817 /* Evaluate the expression. */
818 val = evaluate_expression (expr);
820 /* If the value is false, then break out of the loop. */
821 if (!value_true (val))
824 /* Execute the body of the while statement. */
825 current = *cmd->body_list;
828 ret = execute_control_command (current);
830 /* If we got an error, or a "break" command, then stop
832 if (ret == invalid_control || ret == break_control)
838 /* If we got a "continue" command, then restart the loop
840 if (ret == continue_control)
843 /* Get the next statement. */
844 current = current->next;
848 /* Reset RET so that we don't recurse the break all the way down. */
849 if (ret == break_control)
850 ret = simple_control;
857 new_line = insert_args (cmd->line);
859 return invalid_control;
860 old_chain = make_cleanup (free_current_contents, &new_line);
861 /* Parse the conditional for the if statement. */
862 expr = parse_expression (new_line);
863 make_cleanup (free_current_contents, &expr);
866 ret = simple_control;
868 /* Evaluate the conditional. */
869 val = evaluate_expression (expr);
871 /* Choose which arm to take commands from based on the value of the
872 conditional expression. */
873 if (value_true (val))
874 current = *cmd->body_list;
875 else if (cmd->body_count == 2)
876 current = *(cmd->body_list + 1);
878 /* Execute commands in the given arm. */
881 ret = execute_control_command (current);
883 /* If we got an error, get out. */
884 if (ret != simple_control)
887 /* Get the next statement in the body. */
888 current = current->next;
895 warning ("Invalid control type in command structure.");
896 return invalid_control;
900 do_cleanups (old_chain);
905 /* "while" command support. Executes a body of statements while the
906 loop condition is nonzero. */
909 while_command (arg, from_tty)
913 struct command_line *command = NULL;
916 command = get_command_line (while_control, arg);
921 execute_control_command (command);
922 free_command_lines (&command);
925 /* "if" command support. Execute either the true or false arm depending
926 on the value of the if conditional. */
929 if_command (arg, from_tty)
933 struct command_line *command = NULL;
936 command = get_command_line (if_control, arg);
941 execute_control_command (command);
942 free_command_lines (&command);
949 struct user_args *oargs = user_args;
951 fatal ("Internal error, arg_cleanup called with no user args.\n");
953 user_args = user_args->next;
957 /* Bind the incomming arguments for a user defined command to
958 $arg0, $arg1 ... $argMAXUSERARGS. */
960 static struct cleanup *
964 struct user_args *args;
965 struct cleanup *old_chain;
966 unsigned int arg_count = 0;
968 args = (struct user_args *)xmalloc (sizeof (struct user_args));
969 memset (args, 0, sizeof (struct user_args));
971 args->next = user_args;
974 old_chain = make_cleanup (arg_cleanup, 0);
983 if (arg_count >= MAXUSERARGS)
985 error ("user defined function may only have %d arguments.\n",
990 /* Strip whitespace. */
991 while (*p == ' ' || *p == '\t')
994 /* P now points to an argument. */
996 user_args->a[arg_count].arg = p;
998 /* Get to the end of this argument. */
999 while (*p && *p != ' ' && *p != '\t')
1002 user_args->a[arg_count].len = p - start_arg;
1009 /* Given character string P, return a point to the first argument ($arg),
1010 or NULL if P contains no arguments. */
1016 while ((p = strchr (p, '$')))
1018 if (strncmp (p, "$arg", 4) == 0 && isdigit (p[4]))
1025 /* Insert the user defined arguments stored in user_arg into the $arg
1026 arguments found in line, with the updated copy being placed into nline. */
1032 char *p, *save_line, *new_line;
1035 /* First we need to know how much memory to allocate for the new line. */
1038 while ((p = locate_arg (line)))
1043 if (i >= user_args->count)
1045 error ("Missing argument %d in user function.\n", i);
1048 len += user_args->a[i].len;
1052 /* Don't forget the tail. */
1053 len += strlen (line);
1055 /* Allocate space for the new line and fill it in. */
1056 new_line = (char *)xmalloc (len + 1);
1057 if (new_line == NULL)
1060 /* Restore pointer to beginning of old line. */
1063 /* Save pointer to beginning of new line. */
1064 save_line = new_line;
1066 while ((p = locate_arg (line)))
1070 memcpy (new_line, line, p - line);
1071 new_line += p - line;
1074 len = user_args->a[i].len;
1077 memcpy (new_line, user_args->a[i].arg, len);
1082 /* Don't forget the tail. */
1083 strcpy (new_line, line);
1085 /* Return a pointer to the beginning of the new line. */
1090 execute_user_command (c, args)
1091 struct cmd_list_element *c;
1094 register struct command_line *cmdlines;
1095 struct cleanup *old_chain;
1096 enum command_control_type ret;
1098 old_chain = setup_user_args (args);
1100 cmdlines = c->user_commands;
1105 /* Set the instream to 0, indicating execution of a
1106 user-defined function. */
1107 old_chain = make_cleanup (source_cleanup, instream);
1108 instream = (FILE *) 0;
1111 ret = execute_control_command (cmdlines);
1112 if (ret != simple_control && ret != break_control)
1114 warning ("Error in control structure.\n");
1117 cmdlines = cmdlines->next;
1119 do_cleanups (old_chain);
1122 /* Execute the line P as a command.
1123 Pass FROM_TTY as second argument to the defining function. */
1126 execute_command (p, from_tty)
1130 register struct cmd_list_element *c;
1131 register enum language flang;
1132 static int warned = 0;
1136 /* This can happen when command_line_input hits end of file. */
1140 while (*p == ' ' || *p == '\t') p++;
1145 c = lookup_cmd (&p, cmdlist, "", 0, 1);
1146 /* Pass null arg rather than an empty one. */
1149 /* If this command has been hooked, run the hook first. */
1151 execute_user_command (c->hook, (char *)0);
1153 if (c->class == class_user)
1154 execute_user_command (c, arg);
1155 else if (c->type == set_cmd || c->type == show_cmd)
1156 do_setshow_command (arg, from_tty & caution, c);
1157 else if (c->function.cfunc == NO_FUNCTION)
1158 error ("That is not a command, just a help topic.");
1159 else if (call_command_hook)
1160 call_command_hook (c, arg, from_tty & caution);
1162 (*c->function.cfunc) (arg, from_tty & caution);
1165 /* Tell the user if the language has changed (except first time). */
1166 if (current_language != expected_language)
1168 if (language_mode == language_mode_auto) {
1169 language_info (1); /* Print what changed. */
1174 /* Warn the user if the working language does not match the
1175 language of the current frame. Only warn the user if we are
1176 actually running the program, i.e. there is a stack. */
1177 /* FIXME: This should be cacheing the frame and only running when
1178 the frame changes. */
1180 if (target_has_stack)
1182 flang = get_frame_language ();
1184 && flang != language_unknown
1185 && flang != current_language->la_language)
1187 printf_filtered ("%s\n", lang_frame_mismatch_warn);
1195 command_loop_marker (foo)
1200 /* Read commands from `instream' and execute them
1201 until end of file or error reading instream. */
1206 struct cleanup *old_chain;
1208 int stdin_is_tty = ISATTY (stdin);
1209 long time_at_cmd_start;
1210 long space_at_cmd_start;
1211 extern int display_time;
1212 extern int display_space;
1214 while (!feof (instream))
1216 if (window_hook && instream == stdin)
1217 (*window_hook) (instream, prompt);
1220 if (instream == stdin && stdin_is_tty)
1221 reinitialize_more_filter ();
1222 old_chain = make_cleanup (command_loop_marker, 0);
1223 command = command_line_input (instream == stdin ? prompt : (char *) NULL,
1224 instream == stdin, "prompt");
1228 time_at_cmd_start = get_run_time ();
1232 extern char **environ;
1233 char *lim = (char *) sbrk (0);
1235 space_at_cmd_start = (long) (lim - (char *) &environ);
1238 execute_command (command, instream == stdin);
1239 /* Do any commands attached to breakpoint we stopped at. */
1240 bpstat_do_actions (&stop_bpstat);
1241 do_cleanups (old_chain);
1245 long cmd_time = get_run_time () - time_at_cmd_start;
1247 printf_unfiltered ("Command execution time: %ld.%06ld\n",
1248 cmd_time / 1000000, cmd_time % 1000000);
1253 extern char **environ;
1254 char *lim = (char *) sbrk (0);
1255 long space_now = lim - (char *) &environ;
1256 long space_diff = space_now - space_at_cmd_start;
1258 printf_unfiltered ("Space used: %ld (%c%ld for this command)\n",
1260 (space_diff >= 0 ? '+' : '-'),
1266 /* Commands call this if they do not want to be repeated by null lines. */
1274 /* If we aren't reading from standard input, we are saving the last
1275 thing read from stdin in line and don't want to delete it. Null lines
1276 won't repeat here in any case. */
1277 if (instream == stdin)
1281 /* Read a line from the stream "instream" without command line editing.
1283 It prints PRROMPT once at the start.
1284 Action is compatible with "readline", e.g. space for the result is
1285 malloc'd and should be freed by the caller.
1287 A NULL return means end of file. */
1289 gdb_readline (prrompt)
1294 int input_index = 0;
1295 int result_size = 80;
1299 /* Don't use a _filtered function here. It causes the assumed
1300 character position to be off, since the newline we read from
1301 the user is not accounted for. */
1302 fputs_unfiltered (prrompt, gdb_stdout);
1304 /* Move to a new line so the entered line doesn't have a prompt
1305 on the front of it. */
1306 fputs_unfiltered ("\n", gdb_stdout);
1308 gdb_flush (gdb_stdout);
1311 result = (char *) xmalloc (result_size);
1315 /* Read from stdin if we are executing a user defined command.
1316 This is the right thing for prompt_for_continue, at least. */
1317 c = fgetc (instream ? instream : stdin);
1321 if (input_index > 0)
1322 /* The last line does not end with a newline. Return it, and
1323 if we are called again fgetc will still return EOF and
1324 we'll return NULL then. */
1333 result[input_index++] = c;
1334 while (input_index >= result_size)
1337 result = (char *) xrealloc (result, result_size);
1341 result[input_index++] = '\0';
1345 /* Variables which control command line editing and history
1346 substitution. These variables are given default values at the end
1348 static int command_editing_p;
1349 static int history_expansion_p;
1350 static int write_history_p;
1351 static int history_size;
1352 static char *history_filename;
1354 /* readline uses the word breaks for two things:
1355 (1) In figuring out where to point the TEXT parameter to the
1356 rl_completion_entry_function. Since we don't use TEXT for much,
1357 it doesn't matter a lot what the word breaks are for this purpose, but
1358 it does affect how much stuff M-? lists.
1359 (2) If one of the matches contains a word break character, readline
1360 will quote it. That's why we switch between
1361 gdb_completer_word_break_characters and
1362 gdb_completer_command_word_break_characters. I'm not sure when
1363 we need this behavior (perhaps for funky characters in C++ symbols?). */
1365 /* Variables which are necessary for fancy command line editing. */
1366 char *gdb_completer_word_break_characters =
1367 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
1369 /* When completing on command names, we remove '-' from the list of
1370 word break characters, since we use it in command names. If the
1371 readline library sees one in any of the current completion strings,
1372 it thinks that the string needs to be quoted and automatically supplies
1374 char *gdb_completer_command_word_break_characters =
1375 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,";
1377 /* Characters that can be used to quote completion strings. Note that we
1378 can't include '"' because the gdb C parser treats such quoted sequences
1380 char *gdb_completer_quote_characters =
1383 /* Functions that are used as part of the fancy command line editing. */
1385 /* This can be used for functions which don't want to complete on symbols
1386 but don't want to complete on anything else either. */
1389 noop_completer (text, prefix)
1396 /* Complete on filenames. */
1398 filename_completer (text, word)
1402 /* From readline. */
1403 extern char *filename_completion_function ();
1404 int subsequent_name;
1406 int return_val_used;
1407 int return_val_alloced;
1409 return_val_used = 0;
1410 /* Small for testing. */
1411 return_val_alloced = 1;
1412 return_val = (char **) xmalloc (return_val_alloced * sizeof (char *));
1414 subsequent_name = 0;
1418 p = filename_completion_function (text, subsequent_name);
1419 if (return_val_used >= return_val_alloced)
1421 return_val_alloced *= 2;
1423 (char **) xrealloc (return_val,
1424 return_val_alloced * sizeof (char *));
1428 return_val[return_val_used++] = p;
1431 /* Like emacs, don't complete on old versions. Especially useful
1432 in the "source" command. */
1433 if (p[strlen (p) - 1] == '~')
1439 /* Return exactly p. */
1440 return_val[return_val_used++] = p;
1441 else if (word > text)
1443 /* Return some portion of p. */
1444 q = xmalloc (strlen (p) + 5);
1445 strcpy (q, p + (word - text));
1446 return_val[return_val_used++] = q;
1451 /* Return some of TEXT plus p. */
1452 q = xmalloc (strlen (p) + (text - word) + 5);
1453 strncpy (q, word, text - word);
1454 q[text - word] = '\0';
1456 return_val[return_val_used++] = q;
1460 subsequent_name = 1;
1463 /* There is no way to do this just long enough to affect quote inserting
1464 without also affecting the next completion. This should be fixed in
1466 /* Insure that readline does the right thing
1467 with respect to inserting quotes. */
1468 rl_completer_word_break_characters = "";
1473 /* Here are some useful test cases for completion. FIXME: These should
1474 be put in the test suite. They should be tested with both M-? and TAB.
1476 "show output-" "radix"
1477 "show output" "-radix"
1478 "p" ambiguous (commands starting with p--path, print, printf, etc.)
1479 "p " ambiguous (all symbols)
1480 "info t foo" no completions
1481 "info t " no completions
1482 "info t" ambiguous ("info target", "info terminal", etc.)
1483 "info ajksdlfk" no completions
1484 "info ajksdlfk " no completions
1486 "info " ambiguous (all info commands)
1487 "p \"a" no completions (string constant)
1488 "p 'a" ambiguous (all symbols starting with a)
1489 "p b-a" ambiguous (all symbols starting with a)
1490 "p b-" ambiguous (all symbols)
1491 "file Make" "file" (word break hard to screw up here)
1492 "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
1495 /* Generate completions one by one for the completer. Each time we are
1496 called return another potential completion to the caller.
1497 line_completion just completes on commands or passes the buck to the
1498 command's completer function, the stuff specific to symbol completion
1499 is in make_symbol_completion_list.
1501 TEXT is the caller's idea of the "word" we are looking at.
1503 MATCHES is the number of matches that have currently been collected from
1504 calling this completion function. When zero, then we need to initialize,
1505 otherwise the initialization has already taken place and we can just
1506 return the next potential completion string.
1508 LINE_BUFFER is available to be looked at; it contains the entire text
1509 of the line. POINT is the offset in that line of the cursor. You
1510 should pretend that the line ends at POINT.
1512 Returns NULL if there are no more completions, else a pointer to a string
1513 which is a possible completion, it is the caller's responsibility to
1517 line_completion_function (text, matches, line_buffer, point)
1523 static char **list = (char **)NULL; /* Cache of completions */
1524 static int index; /* Next cached completion */
1525 char *output = NULL;
1526 char *tmp_command, *p;
1527 /* Pointer within tmp_command which corresponds to text. */
1529 struct cmd_list_element *c, *result_list;
1533 /* The caller is beginning to accumulate a new set of completions, so
1534 we need to find all of them now, and cache them for returning one at
1535 a time on future calls. */
1539 /* Free the storage used by LIST, but not by the strings inside.
1540 This is because rl_complete_internal () frees the strings. */
1546 /* Choose the default set of word break characters to break completions.
1547 If we later find out that we are doing completions on command strings
1548 (as opposed to strings supplied by the individual command completer
1549 functions, which can be any string) then we will switch to the
1550 special word break set for command strings, which leaves out the
1551 '-' character used in some commands. */
1553 rl_completer_word_break_characters =
1554 gdb_completer_word_break_characters;
1556 /* Decide whether to complete on a list of gdb commands or on symbols. */
1557 tmp_command = (char *) alloca (point + 1);
1560 strncpy (tmp_command, line_buffer, point);
1561 tmp_command[point] = '\0';
1562 /* Since text always contains some number of characters leading up
1563 to point, we can find the equivalent position in tmp_command
1564 by subtracting that many characters from the end of tmp_command. */
1565 word = tmp_command + point - strlen (text);
1569 /* An empty line we want to consider ambiguous; that is, it
1570 could be any command. */
1571 c = (struct cmd_list_element *) -1;
1576 c = lookup_cmd_1 (&p, cmdlist, &result_list, 1);
1579 /* Move p up to the next interesting thing. */
1580 while (*p == ' ' || *p == '\t')
1587 /* It is an unrecognized command. So there are no
1588 possible completions. */
1591 else if (c == (struct cmd_list_element *) -1)
1595 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
1596 doesn't advance over that thing itself. Do so now. */
1598 while (*q && (isalnum (*q) || *q == '-' || *q == '_'))
1600 if (q != tmp_command + point)
1602 /* There is something beyond the ambiguous
1603 command, so there are no possible completions. For
1604 example, "info t " or "info t foo" does not complete
1605 to anything, because "info t" can be "info target" or
1611 /* We're trying to complete on the command which was ambiguous.
1612 This we can deal with. */
1615 list = complete_on_cmdlist (*result_list->prefixlist, p,
1620 list = complete_on_cmdlist (cmdlist, p, word);
1622 /* Insure that readline does the right thing with respect to
1623 inserting quotes. */
1624 rl_completer_word_break_characters =
1625 gdb_completer_command_word_break_characters;
1630 /* We've recognized a full command. */
1632 if (p == tmp_command + point)
1634 /* There is no non-whitespace in the line beyond the command. */
1636 if (p[-1] == ' ' || p[-1] == '\t')
1638 /* The command is followed by whitespace; we need to complete
1639 on whatever comes after command. */
1642 /* It is a prefix command; what comes after it is
1643 a subcommand (e.g. "info "). */
1644 list = complete_on_cmdlist (*c->prefixlist, p, word);
1646 /* Insure that readline does the right thing
1647 with respect to inserting quotes. */
1648 rl_completer_word_break_characters =
1649 gdb_completer_command_word_break_characters;
1653 list = complete_on_enum (c->enums, p, word);
1654 rl_completer_word_break_characters =
1655 gdb_completer_command_word_break_characters;
1659 /* It is a normal command; what comes after it is
1660 completed by the command's completer function. */
1661 list = (*c->completer) (p, word);
1666 /* The command is not followed by whitespace; we need to
1667 complete on the command itself. e.g. "p" which is a
1668 command itself but also can complete to "print", "ptype"
1672 /* Find the command we are completing on. */
1674 while (q > tmp_command)
1676 if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_')
1682 list = complete_on_cmdlist (result_list, q, word);
1684 /* Insure that readline does the right thing
1685 with respect to inserting quotes. */
1686 rl_completer_word_break_characters =
1687 gdb_completer_command_word_break_characters;
1692 /* There is non-whitespace beyond the command. */
1694 if (c->prefixlist && !c->allow_unknown)
1696 /* It is an unrecognized subcommand of a prefix command,
1697 e.g. "info adsfkdj". */
1702 list = complete_on_enum (c->enums, p, word);
1706 /* It is a normal command. */
1707 list = (*c->completer) (p, word);
1713 /* If we found a list of potential completions during initialization then
1714 dole them out one at a time. The vector of completions is NULL
1715 terminated, so after returning the last one, return NULL (and continue
1716 to do so) each time we are called after that, until a new list is
1721 output = list[index];
1729 /* Can't do this because readline hasn't yet checked the word breaks
1730 for figuring out whether to insert a quote. */
1732 /* Make sure the word break characters are set back to normal for the
1733 next time that readline tries to complete something. */
1734 rl_completer_word_break_characters =
1735 gdb_completer_word_break_characters;
1741 /* Line completion interface function for readline. */
1744 readline_line_completion_function (text, matches)
1748 return line_completion_function (text, matches, rl_line_buffer, rl_point);
1751 /* Skip over a possibly quoted word (as defined by the quote characters
1752 and word break characters the completer uses). Returns pointer to the
1753 location after the "word". */
1759 char quote_char = '\0';
1762 for (scan = str; *scan != '\0'; scan++)
1764 if (quote_char != '\0')
1766 /* Ignore everything until the matching close quote char */
1767 if (*scan == quote_char)
1769 /* Found matching close quote. */
1774 else if (strchr (gdb_completer_quote_characters, *scan))
1776 /* Found start of a quoted string. */
1779 else if (strchr (gdb_completer_word_break_characters, *scan))
1793 #if STOP_SIGNAL == SIGTSTP
1794 signal (SIGTSTP, SIG_DFL);
1796 kill (getpid (), SIGTSTP);
1797 signal (SIGTSTP, stop_sig);
1799 signal (STOP_SIGNAL, stop_sig);
1801 printf_unfiltered ("%s", prompt);
1802 gdb_flush (gdb_stdout);
1804 /* Forget about any previous command -- null line now will do nothing. */
1807 #endif /* STOP_SIGNAL */
1809 /* Initialize signal handlers. */
1819 signal (SIGINT, request_quit);
1821 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
1822 passed to the inferior, which we don't want. It would be
1823 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
1824 on BSD4.3 systems using vfork, that can affect the
1825 GDB process as well as the inferior (the signal handling tables
1826 might be in memory, shared between the two). Since we establish
1827 a handler for SIGQUIT, when we call exec it will set the signal
1828 to SIG_DFL for us. */
1829 signal (SIGQUIT, do_nothing);
1830 if (signal (SIGHUP, do_nothing) != SIG_IGN)
1831 signal (SIGHUP, disconnect);
1832 signal (SIGFPE, float_handler);
1834 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1835 signal (SIGWINCH, SIGWINCH_HANDLER);
1839 /* Read one line from the command input stream `instream'
1840 into the local static buffer `linebuffer' (whose current length
1842 The buffer is made bigger as necessary.
1843 Returns the address of the start of the line.
1845 NULL is returned for end of file.
1847 *If* the instream == stdin & stdin is a terminal, the line read
1848 is copied into the file line saver (global var char *line,
1849 length linesize) so that it can be duplicated.
1851 This routine either uses fancy command line editing or
1852 simple input as the user has requested. */
1855 command_line_input (prrompt, repeat, annotation_suffix)
1858 char *annotation_suffix;
1860 static char *linebuffer = 0;
1861 static unsigned linelength = 0;
1865 char *local_prompt = prrompt;
1870 /* The annotation suffix must be non-NULL. */
1871 if (annotation_suffix == NULL)
1872 annotation_suffix = "";
1874 if (annotation_level > 1 && instream == stdin)
1876 local_prompt = alloca ((prrompt == NULL ? 0 : strlen (prrompt))
1877 + strlen (annotation_suffix) + 40);
1878 if (prrompt == NULL)
1879 local_prompt[0] = '\0';
1881 strcpy (local_prompt, prrompt);
1882 strcat (local_prompt, "\n\032\032");
1883 strcat (local_prompt, annotation_suffix);
1884 strcat (local_prompt, "\n");
1887 if (linebuffer == 0)
1890 linebuffer = (char *) xmalloc (linelength);
1895 /* Control-C quits instantly if typed while in this loop
1896 since it should not wait until the user types a newline. */
1900 signal (STOP_SIGNAL, stop_sig);
1905 /* Make sure that all output has been output. Some machines may let
1906 you get away with leaving out some of the gdb_flush, but not all. */
1908 gdb_flush (gdb_stdout);
1909 gdb_flush (gdb_stderr);
1911 if (source_file_name != NULL)
1913 ++source_line_number;
1914 sprintf (source_error,
1915 "%s%s:%d: Error in sourced command file:\n",
1918 source_line_number);
1919 error_pre_print = source_error;
1922 if (annotation_level > 1 && instream == stdin)
1924 printf_unfiltered ("\n\032\032pre-");
1925 printf_unfiltered (annotation_suffix);
1926 printf_unfiltered ("\n");
1929 /* Don't use fancy stuff if not talking to stdin. */
1930 if (command_editing_p && instream == stdin
1931 && ISATTY (instream))
1932 rl = readline (local_prompt);
1934 rl = gdb_readline (local_prompt);
1936 if (annotation_level > 1 && instream == stdin)
1938 printf_unfiltered ("\n\032\032post-");
1939 printf_unfiltered (annotation_suffix);
1940 printf_unfiltered ("\n");
1943 if (!rl || rl == (char *) EOF)
1948 if (strlen(rl) + 1 + (p - linebuffer) > linelength)
1950 linelength = strlen(rl) + 1 + (p - linebuffer);
1951 nline = (char *) xrealloc (linebuffer, linelength);
1952 p += nline - linebuffer;
1956 /* Copy line. Don't copy null at end. (Leaves line alone
1957 if this was just a newline) */
1961 free (rl); /* Allocated in readline. */
1963 if (p == linebuffer || *(p - 1) != '\\')
1966 p--; /* Put on top of '\'. */
1967 local_prompt = (char *) 0;
1972 signal (STOP_SIGNAL, SIG_DFL);
1979 #define SERVER_COMMAND_LENGTH 7
1981 (p - linebuffer > SERVER_COMMAND_LENGTH)
1982 && STREQN (linebuffer, "server ", SERVER_COMMAND_LENGTH);
1985 /* Note that we don't set `line'. Between this and the check in
1986 dont_repeat, this insures that repeating will still do the
1989 return linebuffer + SERVER_COMMAND_LENGTH;
1992 /* Do history expansion if that is wished. */
1993 if (history_expansion_p && instream == stdin
1994 && ISATTY (instream))
1996 char *history_value;
1999 *p = '\0'; /* Insert null now. */
2000 expanded = history_expand (linebuffer, &history_value);
2003 /* Print the changes. */
2004 printf_unfiltered ("%s\n", history_value);
2006 /* If there was an error, call this function again. */
2009 free (history_value);
2010 return command_line_input (prrompt, repeat, annotation_suffix);
2012 if (strlen (history_value) > linelength)
2014 linelength = strlen (history_value) + 1;
2015 linebuffer = (char *) xrealloc (linebuffer, linelength);
2017 strcpy (linebuffer, history_value);
2018 p = linebuffer + strlen(linebuffer);
2019 free (history_value);
2023 /* If we just got an empty line, and that is supposed
2024 to repeat the previous command, return the value in the
2028 if (p == linebuffer)
2031 while (*p1 == ' ' || *p1 == '\t')
2039 /* Add line to history if appropriate. */
2040 if (instream == stdin
2041 && ISATTY (stdin) && *linebuffer)
2042 add_history (linebuffer);
2044 /* Note: lines consisting solely of comments are added to the command
2045 history. This is useful when you type a command, and then
2046 realize you don't want to execute it quite yet. You can comment
2047 out the command and then later fetch it from the value history
2048 and remove the '#'. The kill ring is probably better, but some
2049 people are in the habit of commenting things out. */
2051 while ((c = *p1++) != '\0')
2054 while ((c = *p1++) != '"')
2056 /* Make sure an escaped '"' doesn't make us think the string
2064 while ((c = *p1++) != '\'')
2066 /* Make sure an escaped '\'' doesn't make us think the string
2075 /* Found a comment. */
2081 /* Save into global buffer if appropriate. */
2084 if (linelength > linesize)
2086 line = xrealloc (line, linelength);
2087 linesize = linelength;
2089 strcpy (line, linebuffer);
2097 /* Expand the body_list of COMMAND so that it can hold NEW_LENGTH
2098 code bodies. This is typically used when we encounter an "else"
2099 clause for an "if" command. */
2102 realloc_body_list (command, new_length)
2103 struct command_line *command;
2107 struct command_line **body_list;
2109 n = command->body_count;
2111 /* Nothing to do? */
2112 if (new_length <= n)
2115 body_list = (struct command_line **)
2116 xmalloc (sizeof (struct command_line *) * new_length);
2118 memcpy (body_list, command->body_list, sizeof (struct command_line *) * n);
2120 free (command->body_list);
2121 command->body_list = body_list;
2122 command->body_count = new_length;
2125 /* Read one line from the input stream. If the command is an "else" or
2126 "end", return such an indication to the caller. */
2128 static enum misc_command_type
2129 read_next_line (command)
2130 struct command_line **command;
2132 char *p, *p1, *prompt_ptr, control_prompt[256];
2135 if (control_level >= 254)
2136 error ("Control nesting too deep!\n");
2138 /* Set a prompt based on the nesting of the control commands. */
2139 if (instream == stdin)
2141 for (i = 0; i < control_level; i++)
2142 control_prompt[i] = ' ';
2143 control_prompt[i] = '>';
2144 control_prompt[i+1] = '\0';
2145 prompt_ptr = (char *)&control_prompt[0];
2150 p = command_line_input (prompt_ptr, instream == stdin, "commands");
2152 /* Not sure what to do here. */
2156 /* Strip leading and trailing whitespace. */
2157 while (*p == ' ' || *p == '\t')
2160 p1 = p + strlen (p);
2161 while (p1 != p && (p1[-1] == ' ' || p1[-1] == '\t'))
2164 /* Blanks and comments don't really do anything, but we need to
2165 distinguish them from else, end and other commands which can be
2167 if (p1 == p || p[0] == '#')
2170 /* Is this the end of a simple, while, or if control structure? */
2171 if (p1 - p == 3 && !strncmp (p, "end", 3))
2174 /* Is the else clause of an if control structure? */
2175 if (p1 - p == 4 && !strncmp (p, "else", 4))
2176 return else_command;
2178 /* Check for while, if, break, continue, etc and build a new command
2179 line structure for them. */
2180 if (p1 - p > 5 && !strncmp (p, "while", 5))
2181 *command = build_command_line (while_control, p + 6);
2182 else if (p1 - p > 2 && !strncmp (p, "if", 2))
2183 *command = build_command_line (if_control, p + 3);
2184 else if (p1 - p == 5 && !strncmp (p, "loop_break", 5))
2186 *command = (struct command_line *)
2187 xmalloc (sizeof (struct command_line));
2188 (*command)->next = NULL;
2189 (*command)->line = NULL;
2190 (*command)->control_type = break_control;
2191 (*command)->body_count = 0;
2192 (*command)->body_list = NULL;
2194 else if (p1 - p == 8 && !strncmp (p, "loop_continue", 8))
2196 *command = (struct command_line *)
2197 xmalloc (sizeof (struct command_line));
2198 (*command)->next = NULL;
2199 (*command)->line = NULL;
2200 (*command)->control_type = continue_control;
2201 (*command)->body_count = 0;
2202 (*command)->body_list = NULL;
2206 /* A normal command. */
2207 *command = (struct command_line *)
2208 xmalloc (sizeof (struct command_line));
2209 (*command)->next = NULL;
2210 (*command)->line = savestring (p, p1 - p);
2211 (*command)->control_type = simple_control;
2212 (*command)->body_count = 0;
2213 (*command)->body_list = NULL;
2216 /* Nothing special. */
2220 /* Recursively read in the control structures and create a command_line
2223 The parent_control parameter is the control structure in which the
2224 following commands are nested. */
2226 static enum command_control_type
2227 recurse_read_control_structure (current_cmd)
2228 struct command_line *current_cmd;
2230 int current_body, i;
2231 enum misc_command_type val;
2232 enum command_control_type ret;
2233 struct command_line **body_ptr, *child_tail, *next;
2234 struct cleanup *old_chains, *tmp_chains;
2240 /* Sanity checks. */
2241 if (current_cmd->control_type == simple_control)
2243 error ("Recursed on a simple control type\n");
2244 return invalid_control;
2247 if (current_body > current_cmd->body_count)
2249 error ("Allocated body is smaller than this command type needs\n");
2250 return invalid_control;
2253 /* Read lines from the input stream and build control structures. */
2259 val = read_next_line (&next);
2261 /* Just skip blanks and comments. */
2262 if (val == nop_command)
2265 if (val == end_command)
2267 if (current_cmd->control_type == while_control
2268 || current_cmd->control_type == if_control)
2270 /* Success reading an entire control structure. */
2271 ret = simple_control;
2276 ret = invalid_control;
2281 /* Not the end of a control structure. */
2282 if (val == else_command)
2284 if (current_cmd->control_type == if_control
2285 && current_body == 1)
2287 realloc_body_list (current_cmd, 2);
2294 ret = invalid_control;
2301 child_tail->next = next;
2305 /* We have just read the first line of the child's control
2306 structure. From now on, arrange to throw away the line
2307 we have if we quit or get an error. */
2308 body_ptr = current_cmd->body_list;
2309 for (i = 1; i < current_body; i++)
2314 tmp_chains = make_cleanup (free_command_lines, body_ptr);
2317 old_chains = tmp_chains;
2322 /* If the latest line is another control structure, then recurse
2324 if (next->control_type == while_control
2325 || next->control_type == if_control)
2328 ret = recurse_read_control_structure (next);
2331 if (ret != simple_control)
2337 if (ret == invalid_control && old_chains)
2338 do_cleanups (old_chains);
2339 else if (old_chains)
2340 discard_cleanups (old_chains);
2346 /* Read lines from the input stream
2347 and accumulate them in a chain of struct command_line's
2348 which is then returned. */
2350 struct command_line *
2351 read_command_lines ()
2353 struct command_line *head, *tail, *next;
2354 struct cleanup *old_chain;
2355 enum command_control_type ret;
2356 enum misc_command_type val;
2363 val = read_next_line (&next);
2365 /* Ignore blank lines or comments. */
2366 if (val == nop_command)
2369 if (val == end_command)
2371 ret = simple_control;
2375 if (val != ok_command)
2377 ret = invalid_control;
2381 if (next->control_type == while_control
2382 || next->control_type == if_control)
2385 ret = recurse_read_control_structure (next);
2388 if (ret == invalid_control)
2399 old_chain = make_cleanup (free_command_lines, &head);
2408 if (ret != invalid_control)
2410 discard_cleanups (old_chain);
2414 do_cleanups (old_chain);
2420 /* Free a chain of struct command_line's. */
2423 free_command_lines (lptr)
2424 struct command_line **lptr;
2426 register struct command_line *l = *lptr;
2427 register struct command_line *next;
2428 struct command_line **blist;
2433 if (l->body_count > 0)
2435 blist = l->body_list;
2436 for (i = 0; i < l->body_count; i++, blist++)
2437 free_command_lines (blist);
2446 /* Add an element to the list of info subcommands. */
2449 add_info (name, fun, doc)
2451 void (*fun) PARAMS ((char *, int));
2454 add_cmd (name, no_class, fun, doc, &infolist);
2457 /* Add an alias to the list of info subcommands. */
2460 add_info_alias (name, oldname, abbrev_flag)
2465 add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
2468 /* The "info" command is defined as a prefix, with allow_unknown = 0.
2469 Therefore, its own definition is called only for "info" with no args. */
2473 info_command (arg, from_tty)
2477 printf_unfiltered ("\"info\" must be followed by the name of an info command.\n");
2478 help_list (infolist, "info ", -1, gdb_stdout);
2481 /* The "complete" command is used by Emacs to implement completion. */
2485 complete_command (arg, from_tty)
2497 argpoint = strlen (arg);
2499 for (completion = line_completion_function (arg, i = 0, arg, argpoint);
2501 completion = line_completion_function (arg, ++i, arg, argpoint))
2503 printf_unfiltered ("%s\n", completion);
2508 /* The "show" command with no arguments shows all the settings. */
2512 show_command (arg, from_tty)
2516 cmd_show_list (showlist, from_tty, "");
2519 /* Add an element to the list of commands. */
2522 add_com (name, class, fun, doc)
2524 enum command_class class;
2525 void (*fun) PARAMS ((char *, int));
2528 add_cmd (name, class, fun, doc, &cmdlist);
2531 /* Add an alias or abbreviation command to the list of commands. */
2534 add_com_alias (name, oldname, class, abbrev_flag)
2537 enum command_class class;
2540 add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
2547 error ("Argument required (%s).", why);
2552 help_command (command, from_tty)
2554 int from_tty; /* Ignored */
2556 help_cmd (command, gdb_stdout);
2560 validate_comname (comname)
2566 error_no_arg ("name of command to define");
2571 if (!isalnum(*p) && *p != '-')
2572 error ("Junk in argument list: \"%s\"", p);
2577 /* This is just a placeholder in the command data structures. */
2579 user_defined_command (ignore, from_tty)
2586 define_command (comname, from_tty)
2590 register struct command_line *cmds;
2591 register struct cmd_list_element *c, *newc, *hookc = 0;
2592 char *tem = comname;
2593 #define HOOK_STRING "hook-"
2596 validate_comname (comname);
2598 /* Look it up, and verify that we got an exact match. */
2599 c = lookup_cmd (&tem, cmdlist, "", -1, 1);
2600 if (c && !STREQ (comname, c->name))
2605 if (c->class == class_user || c->class == class_alias)
2606 tem = "Redefine command \"%s\"? ";
2608 tem = "Really redefine built-in command \"%s\"? ";
2609 if (!query (tem, c->name))
2610 error ("Command \"%s\" not redefined.", c->name);
2613 /* If this new command is a hook, then mark the command which it
2614 is hooking. Note that we allow hooking `help' commands, so that
2615 we can hook the `stop' pseudo-command. */
2617 if (!strncmp (comname, HOOK_STRING, HOOK_LEN))
2619 /* Look up cmd it hooks, and verify that we got an exact match. */
2620 tem = comname+HOOK_LEN;
2621 hookc = lookup_cmd (&tem, cmdlist, "", -1, 0);
2622 if (hookc && !STREQ (comname+HOOK_LEN, hookc->name))
2626 warning ("Your new `%s' command does not hook any existing command.",
2628 if (!query ("Proceed? "))
2629 error ("Not confirmed.");
2633 comname = savestring (comname, strlen (comname));
2635 /* If the rest of the commands will be case insensitive, this one
2636 should behave in the same manner. */
2637 for (tem = comname; *tem; tem++)
2638 if (isupper(*tem)) *tem = tolower(*tem);
2642 printf_unfiltered ("Type commands for definition of \"%s\".\n\
2643 End with a line saying just \"end\".\n", comname);
2644 gdb_flush (gdb_stdout);
2648 cmds = read_command_lines ();
2650 if (c && c->class == class_user)
2651 free_command_lines (&c->user_commands);
2653 newc = add_cmd (comname, class_user, user_defined_command,
2654 (c && c->class == class_user)
2655 ? c->doc : savestring ("User-defined.", 13), &cmdlist);
2656 newc->user_commands = cmds;
2658 /* If this new command is a hook, then mark both commands as being
2662 hookc->hook = newc; /* Target gets hooked. */
2663 newc->hookee = hookc; /* We are marked as hooking target cmd. */
2668 document_command (comname, from_tty)
2672 struct command_line *doclines;
2673 register struct cmd_list_element *c;
2674 char *tem = comname;
2676 validate_comname (comname);
2678 c = lookup_cmd (&tem, cmdlist, "", 0, 1);
2680 if (c->class != class_user)
2681 error ("Command \"%s\" is built-in.", comname);
2684 printf_unfiltered ("Type documentation for \"%s\".\n\
2685 End with a line saying just \"end\".\n", comname);
2687 doclines = read_command_lines ();
2689 if (c->doc) free (c->doc);
2692 register struct command_line *cl1;
2693 register int len = 0;
2695 for (cl1 = doclines; cl1; cl1 = cl1->next)
2696 len += strlen (cl1->line) + 1;
2698 c->doc = (char *) xmalloc (len + 1);
2701 for (cl1 = doclines; cl1; cl1 = cl1->next)
2703 strcat (c->doc, cl1->line);
2705 strcat (c->doc, "\n");
2709 free_command_lines (&doclines);
2713 print_gnu_advertisement ()
2715 printf_unfiltered ("\
2716 GDB is free software and you are welcome to distribute copies of it\n\
2717 under certain conditions; type \"show copying\" to see the conditions.\n\
2718 There is absolutely no warranty for GDB; type \"show warranty\" for details.\n\
2723 print_gdb_version (stream)
2726 fprintf_filtered (stream, "\
2727 GDB %s (%s", version, host_name);
2729 if (!STREQ (host_name, target_name))
2730 fprintf_filtered (stream, " --target %s", target_name);
2732 fprintf_filtered (stream, "), ");
2734 fprintf_filtered (stream, "Copyright 1995 Free Software Foundation, Inc.");
2739 show_version (args, from_tty)
2744 print_gnu_advertisement ();
2745 print_gdb_version (gdb_stdout);
2746 printf_filtered ("\n");
2750 /* xgdb calls this to reprint the usual GDB prompt. Obsolete now that xgdb
2756 printf_unfiltered ("%s", prompt);
2757 gdb_flush (gdb_stdout);
2761 quit_command (args, from_tty)
2767 /* An optional expression may be used to cause gdb to terminate with the
2768 value of that expression. */
2771 value_ptr val = parse_and_eval (args);
2773 exit_code = (int) value_as_long (val);
2776 if (inferior_pid != 0 && target_has_execution)
2780 if (query ("The program is running. Quit anyway (and detach it)? "))
2781 target_detach (args, from_tty);
2783 error ("Not confirmed.");
2787 if (query ("The program is running. Quit anyway (and kill it)? "))
2790 error ("Not confirmed.");
2793 /* UDI wants this, to kill the TIP. */
2796 /* Save the history information if it is appropriate to do so. */
2797 if (write_history_p && history_filename)
2798 write_history (history_filename);
2803 /* Returns whether GDB is running on a terminal and whether the user
2804 desires that questions be asked of them on that terminal. */
2807 input_from_terminal_p ()
2809 return gdb_has_a_terminal () && (instream == stdin) & caution;
2814 pwd_command (args, from_tty)
2818 if (args) error ("The \"pwd\" command does not take an argument: %s", args);
2819 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
2821 if (!STREQ (gdb_dirbuf, current_directory))
2822 printf_unfiltered ("Working directory %s\n (canonically %s).\n",
2823 current_directory, gdb_dirbuf);
2825 printf_unfiltered ("Working directory %s.\n", current_directory);
2829 cd_command (dir, from_tty)
2834 /* Found something other than leading repetitions of "/..". */
2835 int found_real_path;
2838 /* If the new directory is absolute, repeat is a no-op; if relative,
2839 repeat might be useful but is more likely to be a mistake. */
2843 error_no_arg ("new working directory");
2845 dir = tilde_expand (dir);
2846 make_cleanup (free, dir);
2848 if (chdir (dir) < 0)
2849 perror_with_name (dir);
2852 dir = savestring (dir, len - (len > 1 && SLASH_P(dir[len-1])));
2854 current_directory = dir;
2857 if (SLASH_P (current_directory[0]) && current_directory[1] == '\0')
2858 current_directory = concat (current_directory, dir, NULL);
2860 current_directory = concat (current_directory, SLASH_STRING, dir, NULL);
2864 /* Now simplify any occurrences of `.' and `..' in the pathname. */
2866 found_real_path = 0;
2867 for (p = current_directory; *p;)
2869 if (SLASH_P (p[0]) && p[1] == '.' && (p[2] == 0 || SLASH_P (p[2])))
2871 else if (SLASH_P (p[0]) && p[1] == '.' && p[2] == '.'
2872 && (p[3] == 0 || SLASH_P (p[3])))
2874 if (found_real_path)
2876 /* Search backwards for the directory just before the "/.."
2877 and obliterate it and the "/..". */
2879 while (q != current_directory && ! SLASH_P (q[-1]))
2882 if (q == current_directory)
2883 /* current_directory is
2884 a relative pathname ("can't happen"--leave it alone). */
2888 strcpy (q - 1, p + 3);
2893 /* We are dealing with leading repetitions of "/..", for example
2894 "/../..", which is the Mach super-root. */
2899 found_real_path = 1;
2904 forget_cached_source_info ();
2907 pwd_command ((char *) 0, 1);
2910 struct source_cleanup_lines_args {
2913 char *old_pre_error;
2914 char *old_error_pre_print;
2918 source_cleanup_lines (args)
2921 struct source_cleanup_lines_args *p =
2922 (struct source_cleanup_lines_args *)args;
2923 source_line_number = p->old_line;
2924 source_file_name = p->old_file;
2925 source_pre_error = p->old_pre_error;
2926 error_pre_print = p->old_error_pre_print;
2931 source_command (args, from_tty)
2936 struct cleanup *old_cleanups;
2938 struct source_cleanup_lines_args old_lines;
2943 error ("source command requires pathname of file to source.");
2946 file = tilde_expand (file);
2947 old_cleanups = make_cleanup (free, file);
2949 stream = fopen (file, FOPEN_RT);
2951 perror_with_name (file);
2953 make_cleanup (fclose, stream);
2955 old_lines.old_line = source_line_number;
2956 old_lines.old_file = source_file_name;
2957 old_lines.old_pre_error = source_pre_error;
2958 old_lines.old_error_pre_print = error_pre_print;
2959 make_cleanup (source_cleanup_lines, &old_lines);
2960 source_line_number = 0;
2961 source_file_name = file;
2962 source_pre_error = error_pre_print == NULL ? "" : error_pre_print;
2963 source_pre_error = savestring (source_pre_error, strlen (source_pre_error));
2964 make_cleanup (free, source_pre_error);
2965 /* This will get set every time we read a line. So it won't stay "" for
2967 error_pre_print = "";
2969 needed_length = strlen (source_file_name) + strlen (source_pre_error) + 80;
2970 if (source_error_allocated < needed_length)
2972 source_error_allocated *= 2;
2973 if (source_error_allocated < needed_length)
2974 source_error_allocated = needed_length;
2975 if (source_error == NULL)
2976 source_error = xmalloc (source_error_allocated);
2978 source_error = xrealloc (source_error, source_error_allocated);
2981 read_command_file (stream);
2983 do_cleanups (old_cleanups);
2988 echo_command (text, from_tty)
2996 while ((c = *p++) != '\0')
3000 /* \ at end of argument is used after spaces
3001 so they won't be lost. */
3005 c = parse_escape (&p);
3007 printf_filtered ("%c", c);
3010 printf_filtered ("%c", c);
3013 /* Force this output to appear now. */
3015 gdb_flush (gdb_stdout);
3019 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3021 /* Functions to manipulate the endianness of the target. */
3023 #ifndef TARGET_BYTE_ORDER_DEFAULT
3024 #define TARGET_BYTE_ORDER_DEFAULT BIG_ENDIAN
3027 int target_byte_order = TARGET_BYTE_ORDER_DEFAULT;
3029 static int target_byte_order_auto = 1;
3031 /* Called if the user enters ``set endian'' without an argument. */
3033 set_endian (args, from_tty)
3037 printf_unfiltered ("\"set endian\" must be followed by \"auto\", \"big\" or \"little\".\n");
3038 show_endian (args, from_tty);
3041 /* Called by ``set endian big''. */
3043 set_endian_big (args, from_tty)
3047 target_byte_order = BIG_ENDIAN;
3048 target_byte_order_auto = 0;
3051 /* Called by ``set endian little''. */
3053 set_endian_little (args, from_tty)
3057 target_byte_order = LITTLE_ENDIAN;
3058 target_byte_order_auto = 0;
3061 /* Called by ``set endian auto''. */
3063 set_endian_auto (args, from_tty)
3067 target_byte_order_auto = 1;
3070 /* Called by ``show endian''. */
3072 show_endian (args, from_tty)
3077 (target_byte_order_auto
3078 ? "The target endianness is set automatically (currently %s endian)\n"
3079 : "The target is assumed to be %s endian\n");
3080 printf_unfiltered ((char *) msg, TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3083 #endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
3085 /* Set the endianness from a BFD. */
3087 set_endian_from_file (abfd)
3090 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3093 if (abfd->xvec->byteorder_big_p)
3096 want = LITTLE_ENDIAN;
3097 if (target_byte_order_auto)
3098 target_byte_order = want;
3099 else if (target_byte_order != want)
3100 warning ("%s endian file does not match %s endian target.",
3101 want == BIG_ENDIAN ? "big" : "little",
3102 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3104 #else /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */
3106 if (abfd->xvec->byteorder_big_p
3107 ? TARGET_BYTE_ORDER != BIG_ENDIAN
3108 : TARGET_BYTE_ORDER == BIG_ENDIAN)
3109 warning ("%s endian file does not match %s endian target.",
3110 abfd->xvec->byteorder_big_p ? "big" : "little",
3111 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3113 #endif /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */
3116 /* Functions to manipulate command line editing control variables. */
3118 /* Number of commands to print in each call to show_commands. */
3119 #define Hist_print 10
3121 show_commands (args, from_tty)
3125 /* Index for history commands. Relative to history_base. */
3128 /* Number of the history entry which we are planning to display next.
3129 Relative to history_base. */
3132 /* The first command in the history which doesn't exist (i.e. one more
3133 than the number of the last command). Relative to history_base. */
3136 extern HIST_ENTRY *history_get PARAMS ((int));
3138 /* Print out some of the commands from the command history. */
3139 /* First determine the length of the history list. */
3140 hist_len = history_size;
3141 for (offset = 0; offset < history_size; offset++)
3143 if (!history_get (history_base + offset))
3152 if (args[0] == '+' && args[1] == '\0')
3153 /* "info editing +" should print from the stored position. */
3156 /* "info editing <exp>" should print around command number <exp>. */
3157 num = (parse_and_eval_address (args) - history_base) - Hist_print / 2;
3159 /* "show commands" means print the last Hist_print commands. */
3162 num = hist_len - Hist_print;
3168 /* If there are at least Hist_print commands, we want to display the last
3169 Hist_print rather than, say, the last 6. */
3170 if (hist_len - num < Hist_print)
3172 num = hist_len - Hist_print;
3177 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
3179 printf_filtered ("%5d %s\n", history_base + offset,
3180 (history_get (history_base + offset))->line);
3183 /* The next command we want to display is the next one that we haven't
3187 /* If the user repeats this command with return, it should do what
3188 "show commands +" does. This is unnecessary if arg is null,
3189 because "show commands +" is not useful after "show commands". */
3190 if (from_tty && args)
3197 /* Called by do_setshow_command. */
3200 set_history_size_command (args, from_tty, c)
3203 struct cmd_list_element *c;
3205 if (history_size == INT_MAX)
3206 unstifle_history ();
3207 else if (history_size >= 0)
3208 stifle_history (history_size);
3211 history_size = INT_MAX;
3212 error ("History size must be non-negative");
3218 set_history (args, from_tty)
3222 printf_unfiltered ("\"set history\" must be followed by the name of a history subcommand.\n");
3223 help_list (sethistlist, "set history ", -1, gdb_stdout);
3228 show_history (args, from_tty)
3232 cmd_show_list (showhistlist, from_tty, "");
3235 int info_verbose = 0; /* Default verbose msgs off */
3237 /* Called by do_setshow_command. An elaborate joke. */
3240 set_verbose (args, from_tty, c)
3243 struct cmd_list_element *c;
3245 char *cmdname = "verbose";
3246 struct cmd_list_element *showcmd;
3248 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
3252 c->doc = "Set verbose printing of informational messages.";
3253 showcmd->doc = "Show verbose printing of informational messages.";
3257 c->doc = "Set verbosity.";
3258 showcmd->doc = "Show verbosity.";
3263 float_handler (signo)
3266 /* This message is based on ANSI C, section 4.7. Note that integer
3267 divide by zero causes this, so "float" is a misnomer. */
3268 signal (SIGFPE, float_handler);
3269 error ("Erroneous arithmetic operation.");
3281 enablebreaklist = NULL;
3285 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3289 showhistlist = NULL;
3290 unsethistlist = NULL;
3291 #if MAINTENANCE_CMDS
3292 maintenancelist = NULL;
3293 maintenanceinfolist = NULL;
3294 maintenanceprintlist = NULL;
3296 setprintlist = NULL;
3297 showprintlist = NULL;
3298 setchecklist = NULL;
3299 showchecklist = NULL;
3302 /* Init the history buffer. Note that we are called after the init file(s)
3303 * have been read so that the user can change the history file via his
3304 * .gdbinit file (for instance). The GDBHISTFILE environment variable
3305 * overrides all of this.
3313 tmpenv = getenv ("HISTSIZE");
3315 history_size = atoi (tmpenv);
3316 else if (!history_size)
3319 stifle_history (history_size);
3321 tmpenv = getenv ("GDBHISTFILE");
3323 history_filename = savestring (tmpenv, strlen(tmpenv));
3324 else if (!history_filename) {
3325 /* We include the current directory so that if the user changes
3326 directories the file written will be the same as the one
3328 history_filename = concat (current_directory, "/.gdb_history", NULL);
3330 read_history (history_filename);
3336 struct cmd_list_element *c;
3338 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3340 add_prefix_cmd ("endian", class_support, set_endian,
3341 "Set endianness of target.",
3342 &endianlist, "set endian ", 0, &setlist);
3343 add_cmd ("big", class_support, set_endian_big,
3344 "Set target as being big endian.", &endianlist);
3345 add_cmd ("little", class_support, set_endian_little,
3346 "Set target as being little endian.", &endianlist);
3347 add_cmd ("auto", class_support, set_endian_auto,
3348 "Select target endianness automatically.", &endianlist);
3349 add_cmd ("endian", class_support, show_endian,
3350 "Show endianness of target.", &showlist);
3352 #endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
3354 #ifdef DEFAULT_PROMPT
3355 prompt = savestring (DEFAULT_PROMPT, strlen(DEFAULT_PROMPT));
3357 prompt = savestring ("(gdb) ", 6);
3360 /* Set the important stuff up for command editing. */
3361 command_editing_p = 1;
3362 history_expansion_p = 0;
3363 write_history_p = 0;
3365 /* Setup important stuff for command line editing. */
3366 rl_completion_entry_function = (int (*)()) readline_line_completion_function;
3367 rl_completer_word_break_characters = gdb_completer_word_break_characters;
3368 rl_completer_quote_characters = gdb_completer_quote_characters;
3369 rl_readline_name = "gdb";
3371 /* Define the classes of commands.
3372 They will appear in the help list in the reverse of this order. */
3374 add_cmd ("internals", class_maintenance, NO_FUNCTION,
3375 "Maintenance commands.\n\
3376 Some gdb commands are provided just for use by gdb maintainers.\n\
3377 These commands are subject to frequent change, and may not be as\n\
3378 well documented as user commands.",
3380 add_cmd ("obscure", class_obscure, NO_FUNCTION, "Obscure features.", &cmdlist);
3381 add_cmd ("aliases", class_alias, NO_FUNCTION, "Aliases of other commands.", &cmdlist);
3382 add_cmd ("user-defined", class_user, NO_FUNCTION, "User-defined commands.\n\
3383 The commands in this class are those defined by the user.\n\
3384 Use the \"define\" command to define a command.", &cmdlist);
3385 add_cmd ("support", class_support, NO_FUNCTION, "Support facilities.", &cmdlist);
3386 add_cmd ("status", class_info, NO_FUNCTION, "Status inquiries.", &cmdlist);
3387 add_cmd ("files", class_files, NO_FUNCTION, "Specifying and examining files.", &cmdlist);
3388 add_cmd ("breakpoints", class_breakpoint, NO_FUNCTION, "Making program stop at certain points.", &cmdlist);
3389 add_cmd ("data", class_vars, NO_FUNCTION, "Examining data.", &cmdlist);
3390 add_cmd ("stack", class_stack, NO_FUNCTION, "Examining the stack.\n\
3391 The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
3392 counting from zero for the innermost (currently executing) frame.\n\n\
3393 At any time gdb identifies one frame as the \"selected\" frame.\n\
3394 Variable lookups are done with respect to the selected frame.\n\
3395 When the program being debugged stops, gdb selects the innermost frame.\n\
3396 The commands below can be used to select other frames by number or address.",
3398 add_cmd ("running", class_run, NO_FUNCTION, "Running the program.", &cmdlist);
3400 add_com ("pwd", class_files, pwd_command,
3401 "Print working directory. This is used for your program as well.");
3402 c = add_cmd ("cd", class_files, cd_command,
3403 "Set working directory to DIR for debugger and program being debugged.\n\
3404 The change does not take effect for the program being debugged\n\
3405 until the next time it is started.", &cmdlist);
3406 c->completer = filename_completer;
3409 (add_set_cmd ("prompt", class_support, var_string, (char *)&prompt,
3414 add_com ("echo", class_support, echo_command,
3415 "Print a constant string. Give string as argument.\n\
3416 C escape sequences may be used in the argument.\n\
3417 No newline is added at the end of the argument;\n\
3418 use \"\\n\" if you want a newline to be printed.\n\
3419 Since leading and trailing whitespace are ignored in command arguments,\n\
3420 if you want to print some you must use \"\\\" before leading whitespace\n\
3421 to be printed or after trailing whitespace.");
3422 add_com ("document", class_support, document_command,
3423 "Document a user-defined command.\n\
3424 Give command name as argument. Give documentation on following lines.\n\
3425 End with a line of just \"end\".");
3426 add_com ("define", class_support, define_command,
3427 "Define a new command name. Command name is argument.\n\
3428 Definition appears on following lines, one command per line.\n\
3429 End with a line of just \"end\".\n\
3430 Use the \"document\" command to give documentation for the new command.\n\
3431 Commands defined in this way may have up to ten arguments.");
3434 c = add_cmd ("source", class_support, source_command,
3435 "Read commands from a file named FILE.\n\
3436 Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
3437 when gdb is started.", &cmdlist);
3439 /* Punt file name, we can't help it easily. */
3440 c = add_cmd ("source", class_support, source_command,
3441 "Read commands from a file named FILE.\n\
3442 Note that the file \".gdbinit\" is read automatically in this way\n\
3443 when gdb is started.", &cmdlist);
3445 c->completer = filename_completer;
3447 add_com ("quit", class_support, quit_command, "Exit gdb.");
3448 add_com ("help", class_support, help_command, "Print list of commands.");
3449 add_com_alias ("q", "quit", class_support, 1);
3450 add_com_alias ("h", "help", class_support, 1);
3453 c = add_set_cmd ("verbose", class_support, var_boolean, (char *)&info_verbose,
3456 add_show_from_set (c, &showlist);
3457 c->function.sfunc = set_verbose;
3458 set_verbose (NULL, 0, c);
3461 (add_set_cmd ("editing", class_support, var_boolean, (char *)&command_editing_p,
3462 "Set editing of command lines as they are typed.\n\
3463 Use \"on\" to enable to enable the editing, and \"off\" to disable it.\n\
3464 Without an argument, command line editing is enabled. To edit, use\n\
3465 EMACS-like or VI-like commands like control-P or ESC.", &setlist),
3468 add_prefix_cmd ("history", class_support, set_history,
3469 "Generic command for setting command history parameters.",
3470 &sethistlist, "set history ", 0, &setlist);
3471 add_prefix_cmd ("history", class_support, show_history,
3472 "Generic command for showing command history parameters.",
3473 &showhistlist, "show history ", 0, &showlist);
3476 (add_set_cmd ("expansion", no_class, var_boolean, (char *)&history_expansion_p,
3477 "Set history expansion on command input.\n\
3478 Without an argument, history expansion is enabled.", &sethistlist),
3482 (add_set_cmd ("save", no_class, var_boolean, (char *)&write_history_p,
3483 "Set saving of the history record on exit.\n\
3484 Use \"on\" to enable to enable the saving, and \"off\" to disable it.\n\
3485 Without an argument, saving is enabled.", &sethistlist),
3488 c = add_set_cmd ("size", no_class, var_integer, (char *)&history_size,
3489 "Set the size of the command history, \n\
3490 ie. the number of previous commands to keep a record of.", &sethistlist);
3491 add_show_from_set (c, &showhistlist);
3492 c->function.sfunc = set_history_size_command;
3495 (add_set_cmd ("filename", no_class, var_filename, (char *)&history_filename,
3496 "Set the filename in which to record the command history\n\
3497 (the list of previous commands of which a record is kept).", &sethistlist),
3501 (add_set_cmd ("confirm", class_support, var_boolean,
3503 "Set whether to confirm potentially dangerous operations.",
3507 add_prefix_cmd ("info", class_info, info_command,
3508 "Generic command for showing things about the program being debugged.",
3509 &infolist, "info ", 0, &cmdlist);
3510 add_com_alias ("i", "info", class_info, 1);
3512 add_com ("complete", class_obscure, complete_command,
3513 "List the completions for the rest of the line as a command.");
3515 add_prefix_cmd ("show", class_info, show_command,
3516 "Generic command for showing things about the debugger.",
3517 &showlist, "show ", 0, &cmdlist);
3518 /* Another way to get at the same thing. */
3519 add_info ("set", show_command, "Show all GDB settings.");
3521 add_cmd ("commands", no_class, show_commands,
3522 "Show the history of commands you typed.\n\
3523 You can supply a command number to start with, or a `+' to start after\n\
3524 the previous command number shown.",
3527 add_cmd ("version", no_class, show_version,
3528 "Show what version of GDB this is.", &showlist);
3530 add_com ("while", class_support, while_command,
3531 "Execute nested commands WHILE the conditional expression is non zero.\n\
3532 The conditional expression must follow the word `while' and must in turn be\n\
3533 followed by a new line. The nested commands must be entered one per line,\n\
3534 and should be terminated by the word `end'.");
3536 add_com ("if", class_support, if_command,
3537 "Execute nested commands once IF the conditional expression is non zero.\n\
3538 The conditional expression must follow the word `if' and must in turn be\n\
3539 followed by a new line. The nested commands must be entered one per line,\n\
3540 and should be terminated by the word 'else' or `end'. If an else clause\n\
3541 is used, the same rules apply to its nested commands as to the first ones.");
3543 /* If target is open when baud changes, it doesn't take effect until the
3544 next open (I think, not sure). */
3545 add_show_from_set (add_set_cmd ("remotebaud", no_class,
3546 var_zinteger, (char *)&baud_rate,
3547 "Set baud rate for remote serial I/O.\n\
3548 This value is used to set the speed of the serial port when debugging\n\
3549 using remote targets.", &setlist),
3553 add_set_cmd ("remotedebug", no_class, var_zinteger, (char *)&remote_debug,
3554 "Set debugging of remote protocol.\n\
3555 When enabled, each packet sent or received with the remote target\n\
3556 is displayed.", &setlist),