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));
377 /* Called instead of fputs for all output. */
379 void (*fputs_unfiltered_hook) PARAMS ((const char *linebuffer, FILE *stream));
381 /* Called when the target says something to the host, which may
382 want to appear in a different window. */
384 void (*target_output_hook) PARAMS ((unsigned char *));
386 /* Called from print_frame_info to list the line we stopped in. */
388 void (*print_frame_info_listing_hook) PARAMS ((struct symtab *s, int line,
389 int stopline, int noerror));
390 /* Replaces most of query. */
392 int (*query_hook) PARAMS (());
394 /* Called from gdb_flush to flush output. */
396 void (*flush_hook) PARAMS ((FILE *stream));
398 /* Called as appropriate to notify the interface of the specified breakpoint
401 void (*create_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
402 void (*delete_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
403 void (*modify_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
405 /* Called during long calculations to allow GUI to repair window damage, and to
406 check for stop buttons, etc... */
408 void (*interactive_hook) PARAMS ((void));
410 /* Called when the registers have changed, as a hint to a GUI
411 to minimize window update. */
413 void (*registers_changed_hook) PARAMS ((void));
415 /* Called when going to wait for the target. Usually allows the GUI to run
416 while waiting for target events. */
418 int (*target_wait_hook) PARAMS ((int pid, struct target_waitstatus *status));
420 /* Used by UI as a wrapper around command execution. May do various things
421 like enabling/disabling buttons, etc... */
423 void (*call_command_hook) PARAMS ((struct cmd_list_element *c, char *cmd,
427 /* Takes control from error (). Typically used to prevent longjmps out of the
428 middle of the GUI. Usually used in conjunction with a catch routine. */
430 NORETURN void (*error_hook) PARAMS (()) ATTR_NORETURN;
433 /* Where to go for return_to_top_level (RETURN_ERROR). */
434 jmp_buf error_return;
435 /* Where to go for return_to_top_level (RETURN_QUIT). */
438 /* Return for reason REASON. This generally gets back to the command
439 loop, but can be caught via catch_errors. */
442 return_to_top_level (reason)
443 enum return_reason reason;
448 /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
449 I can think of a reason why that is vital, though). */
450 bpstat_clear_actions(stop_bpstat); /* Clear queued breakpoint commands */
452 disable_current_display ();
453 do_cleanups (ALL_CLEANUPS);
455 if (annotation_level > 1)
466 (NORETURN void) longjmp
467 (reason == RETURN_ERROR ? error_return : quit_return, 1);
470 /* Call FUNC with arg ARGS, catching any errors. If there is no
471 error, return the value returned by FUNC. If there is an error,
472 print ERRSTRING, print the specific error message, then return
475 Must not be called with immediate_quit in effect (bad things might
476 happen, say we got a signal in the middle of a memcpy to quit_return).
477 This is an OK restriction; with very few exceptions immediate_quit can
478 be replaced by judicious use of QUIT.
480 MASK specifies what to catch; it is normally set to
481 RETURN_MASK_ALL, if for no other reason than that the code which
482 calls catch_errors might not be set up to deal with a quit which
483 isn't caught. But if the code can deal with it, it generally
484 should be RETURN_MASK_ERROR, unless for some reason it is more
485 useful to abort only the portion of the operation inside the
486 catch_errors. Note that quit should return to the command line
487 fairly quickly, even if some further processing is being done. */
490 catch_errors (func, args, errstring, mask)
491 int (*func) PARAMS ((char *));
500 struct cleanup *saved_cleanup_chain;
501 char *saved_error_pre_print;
502 char *saved_quit_pre_print;
504 saved_cleanup_chain = save_cleanups ();
505 saved_error_pre_print = error_pre_print;
506 saved_quit_pre_print = quit_pre_print;
508 if (mask & RETURN_MASK_ERROR)
510 memcpy ((char *)saved_error, (char *)error_return, sizeof (jmp_buf));
511 error_pre_print = errstring;
513 if (mask & RETURN_MASK_QUIT)
515 memcpy (saved_quit, quit_return, sizeof (jmp_buf));
516 quit_pre_print = errstring;
519 if (setjmp (tmp_jmp) == 0)
521 if (mask & RETURN_MASK_ERROR)
522 memcpy (error_return, tmp_jmp, sizeof (jmp_buf));
523 if (mask & RETURN_MASK_QUIT)
524 memcpy (quit_return, tmp_jmp, sizeof (jmp_buf));
525 val = (*func) (args);
530 restore_cleanups (saved_cleanup_chain);
532 if (mask & RETURN_MASK_ERROR)
534 memcpy (error_return, saved_error, sizeof (jmp_buf));
535 error_pre_print = saved_error_pre_print;
537 if (mask & RETURN_MASK_QUIT)
539 memcpy (quit_return, saved_quit, sizeof (jmp_buf));
540 quit_pre_print = saved_quit_pre_print;
545 /* Handler for SIGHUP. */
551 catch_errors (quit_cover, NULL,
552 "Could not kill the program being debugged", RETURN_MASK_ALL);
553 signal (SIGHUP, SIG_DFL);
554 kill (getpid (), SIGHUP);
557 /* Just a little helper function for disconnect(). */
563 caution = 0; /* Throw caution to the wind -- we're exiting.
564 This prevents asking the user dumb questions. */
565 quit_command((char *)0, 0);
569 /* Line number we are currently in in a file which is being sourced. */
570 static int source_line_number;
572 /* Name of the file we are sourcing. */
573 static char *source_file_name;
575 /* Buffer containing the error_pre_print used by the source stuff.
577 static char *source_error;
578 static int source_error_allocated;
580 /* Something to glom on to the start of error_pre_print if source_file_name
582 static char *source_pre_error;
584 /* Clean up on error during a "source" command (or execution of a
585 user-defined command). */
588 source_cleanup (stream)
591 /* Restore the previous input stream. */
595 /* Read commands from STREAM. */
597 read_command_file (stream)
600 struct cleanup *cleanups;
602 cleanups = make_cleanup (source_cleanup, instream);
605 do_cleanups (cleanups);
608 extern void init_proc ();
610 void (*pre_init_ui_hook) PARAMS ((void));
615 if (pre_init_ui_hook)
618 /* Run the init function of each source file */
620 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
621 current_directory = gdb_dirbuf;
623 init_cmd_lists (); /* This needs to be done first */
624 initialize_targets (); /* Setup target_terminal macros for utils.c */
625 initialize_utils (); /* Make errors and warnings possible */
626 initialize_all_files ();
627 init_main (); /* But that omits this file! Do it now */
632 /* We need a default language for parsing expressions, so simple things like
633 "set width 0" won't fail if no language is explicitly set in a config file
634 or implicitly set by reading an executable during startup. */
635 set_language (language_c);
636 expected_language = current_language; /* don't warn about the change. */
642 /* Allocate, initialize a new command line structure for one of the
643 control commands (if/while). */
645 static struct command_line *
646 build_command_line (type, args)
647 enum command_control_type type;
650 struct command_line *cmd;
652 cmd = (struct command_line *)xmalloc (sizeof (struct command_line));
654 cmd->control_type = type;
658 = (struct command_line **)xmalloc (sizeof (struct command_line *)
660 memset (cmd->body_list, 0, sizeof (struct command_line *) * cmd->body_count);
661 cmd->line = savestring (args, strlen (args));
665 /* Build and return a new command structure for the control commands
666 such as "if" and "while". */
668 static struct command_line *
669 get_command_line (type, arg)
670 enum command_control_type type;
673 struct command_line *cmd;
674 struct cleanup *old_chain = NULL;
676 /* Allocate and build a new command line structure. */
677 cmd = build_command_line (type, arg);
679 old_chain = make_cleanup (free_command_lines, &cmd);
681 /* Read in the body of this command. */
682 if (recurse_read_control_structure (cmd) == invalid_control)
684 warning ("error reading in control structure\n");
685 do_cleanups (old_chain);
689 discard_cleanups (old_chain);
693 /* Recursively print a command (including full control structures). */
695 print_command_line (cmd, depth)
696 struct command_line *cmd;
703 for (i = 0; i < depth; i++)
704 fputs_filtered (" ", gdb_stdout);
707 /* A simple command, print it and return. */
708 if (cmd->control_type == simple_control)
710 fputs_filtered (cmd->line, gdb_stdout);
711 fputs_filtered ("\n", gdb_stdout);
715 /* loop_continue to jump to the start of a while loop, print it
717 if (cmd->control_type == continue_control)
719 fputs_filtered ("loop_continue\n", gdb_stdout);
723 /* loop_break to break out of a while loop, print it and return. */
724 if (cmd->control_type == break_control)
726 fputs_filtered ("loop_break\n", gdb_stdout);
730 /* A while command. Recursively print its subcommands before returning. */
731 if (cmd->control_type == while_control)
733 struct command_line *list;
734 fputs_filtered ("while ", gdb_stdout);
735 fputs_filtered (cmd->line, gdb_stdout);
736 fputs_filtered ("\n", gdb_stdout);
737 list = *cmd->body_list;
740 print_command_line (list, depth + 1);
745 /* An if command. Recursively print both arms before returning. */
746 if (cmd->control_type == if_control)
748 fputs_filtered ("if ", gdb_stdout);
749 fputs_filtered (cmd->line, gdb_stdout);
750 fputs_filtered ("\n", gdb_stdout);
752 print_command_line (cmd->body_list[0], depth + 1);
754 /* Show the false arm if it exists. */
755 if (cmd->body_count == 2)
759 for (i = 0; i < depth; i++)
760 fputs_filtered (" ", gdb_stdout);
762 fputs_filtered ("else\n", gdb_stdout);
763 print_command_line (cmd->body_list[1], depth + 1);
767 for (i = 0; i < depth; i++)
768 fputs_filtered (" ", gdb_stdout);
770 fputs_filtered ("end\n", gdb_stdout);
774 /* Execute the command in CMD. */
776 enum command_control_type
777 execute_control_command (cmd)
778 struct command_line *cmd;
780 struct expression *expr;
781 struct command_line *current;
782 struct cleanup *old_chain = 0;
785 enum command_control_type ret;
788 switch (cmd->control_type)
791 /* A simple command, execute it and return. */
792 new_line = insert_args (cmd->line);
794 return invalid_control;
795 old_chain = make_cleanup (free_current_contents, &new_line);
796 execute_command (new_line, 0);
797 ret = cmd->control_type;
800 case continue_control:
802 /* Return for "continue", and "break" so we can either
803 continue the loop at the top, or break out. */
804 ret = cmd->control_type;
809 /* Parse the loop control expression for the while statement. */
810 new_line = insert_args (cmd->line);
812 return invalid_control;
813 old_chain = make_cleanup (free_current_contents, &new_line);
814 expr = parse_expression (new_line);
815 make_cleanup (free_current_contents, &expr);
817 ret = simple_control;
820 /* Keep iterating so long as the expression is true. */
823 /* Evaluate the expression. */
824 val = evaluate_expression (expr);
826 /* If the value is false, then break out of the loop. */
827 if (!value_true (val))
830 /* Execute the body of the while statement. */
831 current = *cmd->body_list;
834 ret = execute_control_command (current);
836 /* If we got an error, or a "break" command, then stop
838 if (ret == invalid_control || ret == break_control)
844 /* If we got a "continue" command, then restart the loop
846 if (ret == continue_control)
849 /* Get the next statement. */
850 current = current->next;
854 /* Reset RET so that we don't recurse the break all the way down. */
855 if (ret == break_control)
856 ret = simple_control;
863 new_line = insert_args (cmd->line);
865 return invalid_control;
866 old_chain = make_cleanup (free_current_contents, &new_line);
867 /* Parse the conditional for the if statement. */
868 expr = parse_expression (new_line);
869 make_cleanup (free_current_contents, &expr);
872 ret = simple_control;
874 /* Evaluate the conditional. */
875 val = evaluate_expression (expr);
877 /* Choose which arm to take commands from based on the value of the
878 conditional expression. */
879 if (value_true (val))
880 current = *cmd->body_list;
881 else if (cmd->body_count == 2)
882 current = *(cmd->body_list + 1);
884 /* Execute commands in the given arm. */
887 ret = execute_control_command (current);
889 /* If we got an error, get out. */
890 if (ret != simple_control)
893 /* Get the next statement in the body. */
894 current = current->next;
901 warning ("Invalid control type in command structure.");
902 return invalid_control;
906 do_cleanups (old_chain);
911 /* "while" command support. Executes a body of statements while the
912 loop condition is nonzero. */
915 while_command (arg, from_tty)
919 struct command_line *command = NULL;
922 command = get_command_line (while_control, arg);
927 execute_control_command (command);
928 free_command_lines (&command);
931 /* "if" command support. Execute either the true or false arm depending
932 on the value of the if conditional. */
935 if_command (arg, from_tty)
939 struct command_line *command = NULL;
942 command = get_command_line (if_control, arg);
947 execute_control_command (command);
948 free_command_lines (&command);
955 struct user_args *oargs = user_args;
957 fatal ("Internal error, arg_cleanup called with no user args.\n");
959 user_args = user_args->next;
963 /* Bind the incomming arguments for a user defined command to
964 $arg0, $arg1 ... $argMAXUSERARGS. */
966 static struct cleanup *
970 struct user_args *args;
971 struct cleanup *old_chain;
972 unsigned int arg_count = 0;
974 args = (struct user_args *)xmalloc (sizeof (struct user_args));
975 memset (args, 0, sizeof (struct user_args));
977 args->next = user_args;
980 old_chain = make_cleanup (arg_cleanup, 0);
989 if (arg_count >= MAXUSERARGS)
991 error ("user defined function may only have %d arguments.\n",
996 /* Strip whitespace. */
997 while (*p == ' ' || *p == '\t')
1000 /* P now points to an argument. */
1002 user_args->a[arg_count].arg = p;
1004 /* Get to the end of this argument. */
1005 while (*p && *p != ' ' && *p != '\t')
1008 user_args->a[arg_count].len = p - start_arg;
1015 /* Given character string P, return a point to the first argument ($arg),
1016 or NULL if P contains no arguments. */
1022 while ((p = strchr (p, '$')))
1024 if (strncmp (p, "$arg", 4) == 0 && isdigit (p[4]))
1031 /* Insert the user defined arguments stored in user_arg into the $arg
1032 arguments found in line, with the updated copy being placed into nline. */
1038 char *p, *save_line, *new_line;
1041 /* First we need to know how much memory to allocate for the new line. */
1044 while ((p = locate_arg (line)))
1049 if (i >= user_args->count)
1051 error ("Missing argument %d in user function.\n", i);
1054 len += user_args->a[i].len;
1058 /* Don't forget the tail. */
1059 len += strlen (line);
1061 /* Allocate space for the new line and fill it in. */
1062 new_line = (char *)xmalloc (len + 1);
1063 if (new_line == NULL)
1066 /* Restore pointer to beginning of old line. */
1069 /* Save pointer to beginning of new line. */
1070 save_line = new_line;
1072 while ((p = locate_arg (line)))
1076 memcpy (new_line, line, p - line);
1077 new_line += p - line;
1080 len = user_args->a[i].len;
1083 memcpy (new_line, user_args->a[i].arg, len);
1088 /* Don't forget the tail. */
1089 strcpy (new_line, line);
1091 /* Return a pointer to the beginning of the new line. */
1096 execute_user_command (c, args)
1097 struct cmd_list_element *c;
1100 register struct command_line *cmdlines;
1101 struct cleanup *old_chain;
1102 enum command_control_type ret;
1104 old_chain = setup_user_args (args);
1106 cmdlines = c->user_commands;
1111 /* Set the instream to 0, indicating execution of a
1112 user-defined function. */
1113 old_chain = make_cleanup (source_cleanup, instream);
1114 instream = (FILE *) 0;
1117 ret = execute_control_command (cmdlines);
1118 if (ret != simple_control && ret != break_control)
1120 warning ("Error in control structure.\n");
1123 cmdlines = cmdlines->next;
1125 do_cleanups (old_chain);
1128 /* Execute the line P as a command.
1129 Pass FROM_TTY as second argument to the defining function. */
1132 execute_command (p, from_tty)
1136 register struct cmd_list_element *c;
1137 register enum language flang;
1138 static int warned = 0;
1142 /* This can happen when command_line_input hits end of file. */
1146 while (*p == ' ' || *p == '\t') p++;
1151 c = lookup_cmd (&p, cmdlist, "", 0, 1);
1152 /* Pass null arg rather than an empty one. */
1155 /* If this command has been hooked, run the hook first. */
1157 execute_user_command (c->hook, (char *)0);
1159 if (c->class == class_user)
1160 execute_user_command (c, arg);
1161 else if (c->type == set_cmd || c->type == show_cmd)
1162 do_setshow_command (arg, from_tty & caution, c);
1163 else if (c->function.cfunc == NO_FUNCTION)
1164 error ("That is not a command, just a help topic.");
1165 else if (call_command_hook)
1166 call_command_hook (c, arg, from_tty & caution);
1168 (*c->function.cfunc) (arg, from_tty & caution);
1171 /* Tell the user if the language has changed (except first time). */
1172 if (current_language != expected_language)
1174 if (language_mode == language_mode_auto) {
1175 language_info (1); /* Print what changed. */
1180 /* Warn the user if the working language does not match the
1181 language of the current frame. Only warn the user if we are
1182 actually running the program, i.e. there is a stack. */
1183 /* FIXME: This should be cacheing the frame and only running when
1184 the frame changes. */
1186 if (target_has_stack)
1188 flang = get_frame_language ();
1190 && flang != language_unknown
1191 && flang != current_language->la_language)
1193 printf_filtered ("%s\n", lang_frame_mismatch_warn);
1201 command_loop_marker (foo)
1206 /* Read commands from `instream' and execute them
1207 until end of file or error reading instream. */
1212 struct cleanup *old_chain;
1214 int stdin_is_tty = ISATTY (stdin);
1215 long time_at_cmd_start;
1216 long space_at_cmd_start;
1217 extern int display_time;
1218 extern int display_space;
1220 while (!feof (instream))
1222 if (window_hook && instream == stdin)
1223 (*window_hook) (instream, prompt);
1226 if (instream == stdin && stdin_is_tty)
1227 reinitialize_more_filter ();
1228 old_chain = make_cleanup (command_loop_marker, 0);
1229 command = command_line_input (instream == stdin ? prompt : (char *) NULL,
1230 instream == stdin, "prompt");
1234 time_at_cmd_start = get_run_time ();
1238 extern char **environ;
1239 char *lim = (char *) sbrk (0);
1241 space_at_cmd_start = (long) (lim - (char *) &environ);
1244 execute_command (command, instream == stdin);
1245 /* Do any commands attached to breakpoint we stopped at. */
1246 bpstat_do_actions (&stop_bpstat);
1247 do_cleanups (old_chain);
1251 long cmd_time = get_run_time () - time_at_cmd_start;
1253 printf_unfiltered ("Command execution time: %ld.%06ld\n",
1254 cmd_time / 1000000, cmd_time % 1000000);
1259 extern char **environ;
1260 char *lim = (char *) sbrk (0);
1261 long space_now = lim - (char *) &environ;
1262 long space_diff = space_now - space_at_cmd_start;
1264 printf_unfiltered ("Space used: %ld (%c%ld for this command)\n",
1266 (space_diff >= 0 ? '+' : '-'),
1272 /* Commands call this if they do not want to be repeated by null lines. */
1280 /* If we aren't reading from standard input, we are saving the last
1281 thing read from stdin in line and don't want to delete it. Null lines
1282 won't repeat here in any case. */
1283 if (instream == stdin)
1287 /* Read a line from the stream "instream" without command line editing.
1289 It prints PRROMPT once at the start.
1290 Action is compatible with "readline", e.g. space for the result is
1291 malloc'd and should be freed by the caller.
1293 A NULL return means end of file. */
1295 gdb_readline (prrompt)
1300 int input_index = 0;
1301 int result_size = 80;
1305 /* Don't use a _filtered function here. It causes the assumed
1306 character position to be off, since the newline we read from
1307 the user is not accounted for. */
1308 fputs_unfiltered (prrompt, gdb_stdout);
1310 /* Move to a new line so the entered line doesn't have a prompt
1311 on the front of it. */
1312 fputs_unfiltered ("\n", gdb_stdout);
1314 gdb_flush (gdb_stdout);
1317 result = (char *) xmalloc (result_size);
1321 /* Read from stdin if we are executing a user defined command.
1322 This is the right thing for prompt_for_continue, at least. */
1323 c = fgetc (instream ? instream : stdin);
1327 if (input_index > 0)
1328 /* The last line does not end with a newline. Return it, and
1329 if we are called again fgetc will still return EOF and
1330 we'll return NULL then. */
1339 result[input_index++] = c;
1340 while (input_index >= result_size)
1343 result = (char *) xrealloc (result, result_size);
1347 result[input_index++] = '\0';
1351 /* Variables which control command line editing and history
1352 substitution. These variables are given default values at the end
1354 static int command_editing_p;
1355 static int history_expansion_p;
1356 static int write_history_p;
1357 static int history_size;
1358 static char *history_filename;
1360 /* readline uses the word breaks for two things:
1361 (1) In figuring out where to point the TEXT parameter to the
1362 rl_completion_entry_function. Since we don't use TEXT for much,
1363 it doesn't matter a lot what the word breaks are for this purpose, but
1364 it does affect how much stuff M-? lists.
1365 (2) If one of the matches contains a word break character, readline
1366 will quote it. That's why we switch between
1367 gdb_completer_word_break_characters and
1368 gdb_completer_command_word_break_characters. I'm not sure when
1369 we need this behavior (perhaps for funky characters in C++ symbols?). */
1371 /* Variables which are necessary for fancy command line editing. */
1372 char *gdb_completer_word_break_characters =
1373 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
1375 /* When completing on command names, we remove '-' from the list of
1376 word break characters, since we use it in command names. If the
1377 readline library sees one in any of the current completion strings,
1378 it thinks that the string needs to be quoted and automatically supplies
1380 char *gdb_completer_command_word_break_characters =
1381 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,";
1383 /* Characters that can be used to quote completion strings. Note that we
1384 can't include '"' because the gdb C parser treats such quoted sequences
1386 char *gdb_completer_quote_characters =
1389 /* Functions that are used as part of the fancy command line editing. */
1391 /* This can be used for functions which don't want to complete on symbols
1392 but don't want to complete on anything else either. */
1395 noop_completer (text, prefix)
1402 /* Complete on filenames. */
1404 filename_completer (text, word)
1408 /* From readline. */
1409 extern char *filename_completion_function ();
1410 int subsequent_name;
1412 int return_val_used;
1413 int return_val_alloced;
1415 return_val_used = 0;
1416 /* Small for testing. */
1417 return_val_alloced = 1;
1418 return_val = (char **) xmalloc (return_val_alloced * sizeof (char *));
1420 subsequent_name = 0;
1424 p = filename_completion_function (text, subsequent_name);
1425 if (return_val_used >= return_val_alloced)
1427 return_val_alloced *= 2;
1429 (char **) xrealloc (return_val,
1430 return_val_alloced * sizeof (char *));
1434 return_val[return_val_used++] = p;
1437 /* Like emacs, don't complete on old versions. Especially useful
1438 in the "source" command. */
1439 if (p[strlen (p) - 1] == '~')
1445 /* Return exactly p. */
1446 return_val[return_val_used++] = p;
1447 else if (word > text)
1449 /* Return some portion of p. */
1450 q = xmalloc (strlen (p) + 5);
1451 strcpy (q, p + (word - text));
1452 return_val[return_val_used++] = q;
1457 /* Return some of TEXT plus p. */
1458 q = xmalloc (strlen (p) + (text - word) + 5);
1459 strncpy (q, word, text - word);
1460 q[text - word] = '\0';
1462 return_val[return_val_used++] = q;
1466 subsequent_name = 1;
1469 /* There is no way to do this just long enough to affect quote inserting
1470 without also affecting the next completion. This should be fixed in
1472 /* Insure that readline does the right thing
1473 with respect to inserting quotes. */
1474 rl_completer_word_break_characters = "";
1479 /* Here are some useful test cases for completion. FIXME: These should
1480 be put in the test suite. They should be tested with both M-? and TAB.
1482 "show output-" "radix"
1483 "show output" "-radix"
1484 "p" ambiguous (commands starting with p--path, print, printf, etc.)
1485 "p " ambiguous (all symbols)
1486 "info t foo" no completions
1487 "info t " no completions
1488 "info t" ambiguous ("info target", "info terminal", etc.)
1489 "info ajksdlfk" no completions
1490 "info ajksdlfk " no completions
1492 "info " ambiguous (all info commands)
1493 "p \"a" no completions (string constant)
1494 "p 'a" ambiguous (all symbols starting with a)
1495 "p b-a" ambiguous (all symbols starting with a)
1496 "p b-" ambiguous (all symbols)
1497 "file Make" "file" (word break hard to screw up here)
1498 "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
1501 /* Generate completions one by one for the completer. Each time we are
1502 called return another potential completion to the caller.
1503 line_completion just completes on commands or passes the buck to the
1504 command's completer function, the stuff specific to symbol completion
1505 is in make_symbol_completion_list.
1507 TEXT is the caller's idea of the "word" we are looking at.
1509 MATCHES is the number of matches that have currently been collected from
1510 calling this completion function. When zero, then we need to initialize,
1511 otherwise the initialization has already taken place and we can just
1512 return the next potential completion string.
1514 LINE_BUFFER is available to be looked at; it contains the entire text
1515 of the line. POINT is the offset in that line of the cursor. You
1516 should pretend that the line ends at POINT.
1518 Returns NULL if there are no more completions, else a pointer to a string
1519 which is a possible completion, it is the caller's responsibility to
1523 line_completion_function (text, matches, line_buffer, point)
1529 static char **list = (char **)NULL; /* Cache of completions */
1530 static int index; /* Next cached completion */
1531 char *output = NULL;
1532 char *tmp_command, *p;
1533 /* Pointer within tmp_command which corresponds to text. */
1535 struct cmd_list_element *c, *result_list;
1539 /* The caller is beginning to accumulate a new set of completions, so
1540 we need to find all of them now, and cache them for returning one at
1541 a time on future calls. */
1545 /* Free the storage used by LIST, but not by the strings inside.
1546 This is because rl_complete_internal () frees the strings. */
1552 /* Choose the default set of word break characters to break completions.
1553 If we later find out that we are doing completions on command strings
1554 (as opposed to strings supplied by the individual command completer
1555 functions, which can be any string) then we will switch to the
1556 special word break set for command strings, which leaves out the
1557 '-' character used in some commands. */
1559 rl_completer_word_break_characters =
1560 gdb_completer_word_break_characters;
1562 /* Decide whether to complete on a list of gdb commands or on symbols. */
1563 tmp_command = (char *) alloca (point + 1);
1566 strncpy (tmp_command, line_buffer, point);
1567 tmp_command[point] = '\0';
1568 /* Since text always contains some number of characters leading up
1569 to point, we can find the equivalent position in tmp_command
1570 by subtracting that many characters from the end of tmp_command. */
1571 word = tmp_command + point - strlen (text);
1575 /* An empty line we want to consider ambiguous; that is, it
1576 could be any command. */
1577 c = (struct cmd_list_element *) -1;
1582 c = lookup_cmd_1 (&p, cmdlist, &result_list, 1);
1585 /* Move p up to the next interesting thing. */
1586 while (*p == ' ' || *p == '\t')
1593 /* It is an unrecognized command. So there are no
1594 possible completions. */
1597 else if (c == (struct cmd_list_element *) -1)
1601 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
1602 doesn't advance over that thing itself. Do so now. */
1604 while (*q && (isalnum (*q) || *q == '-' || *q == '_'))
1606 if (q != tmp_command + point)
1608 /* There is something beyond the ambiguous
1609 command, so there are no possible completions. For
1610 example, "info t " or "info t foo" does not complete
1611 to anything, because "info t" can be "info target" or
1617 /* We're trying to complete on the command which was ambiguous.
1618 This we can deal with. */
1621 list = complete_on_cmdlist (*result_list->prefixlist, p,
1626 list = complete_on_cmdlist (cmdlist, p, word);
1628 /* Insure that readline does the right thing with respect to
1629 inserting quotes. */
1630 rl_completer_word_break_characters =
1631 gdb_completer_command_word_break_characters;
1636 /* We've recognized a full command. */
1638 if (p == tmp_command + point)
1640 /* There is no non-whitespace in the line beyond the command. */
1642 if (p[-1] == ' ' || p[-1] == '\t')
1644 /* The command is followed by whitespace; we need to complete
1645 on whatever comes after command. */
1648 /* It is a prefix command; what comes after it is
1649 a subcommand (e.g. "info "). */
1650 list = complete_on_cmdlist (*c->prefixlist, p, word);
1652 /* Insure that readline does the right thing
1653 with respect to inserting quotes. */
1654 rl_completer_word_break_characters =
1655 gdb_completer_command_word_break_characters;
1659 list = complete_on_enum (c->enums, p, word);
1660 rl_completer_word_break_characters =
1661 gdb_completer_command_word_break_characters;
1665 /* It is a normal command; what comes after it is
1666 completed by the command's completer function. */
1667 list = (*c->completer) (p, word);
1672 /* The command is not followed by whitespace; we need to
1673 complete on the command itself. e.g. "p" which is a
1674 command itself but also can complete to "print", "ptype"
1678 /* Find the command we are completing on. */
1680 while (q > tmp_command)
1682 if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_')
1688 list = complete_on_cmdlist (result_list, q, word);
1690 /* Insure that readline does the right thing
1691 with respect to inserting quotes. */
1692 rl_completer_word_break_characters =
1693 gdb_completer_command_word_break_characters;
1698 /* There is non-whitespace beyond the command. */
1700 if (c->prefixlist && !c->allow_unknown)
1702 /* It is an unrecognized subcommand of a prefix command,
1703 e.g. "info adsfkdj". */
1708 list = complete_on_enum (c->enums, p, word);
1712 /* It is a normal command. */
1713 list = (*c->completer) (p, word);
1719 /* If we found a list of potential completions during initialization then
1720 dole them out one at a time. The vector of completions is NULL
1721 terminated, so after returning the last one, return NULL (and continue
1722 to do so) each time we are called after that, until a new list is
1727 output = list[index];
1735 /* Can't do this because readline hasn't yet checked the word breaks
1736 for figuring out whether to insert a quote. */
1738 /* Make sure the word break characters are set back to normal for the
1739 next time that readline tries to complete something. */
1740 rl_completer_word_break_characters =
1741 gdb_completer_word_break_characters;
1747 /* Line completion interface function for readline. */
1750 readline_line_completion_function (text, matches)
1754 return line_completion_function (text, matches, rl_line_buffer, rl_point);
1757 /* Skip over a possibly quoted word (as defined by the quote characters
1758 and word break characters the completer uses). Returns pointer to the
1759 location after the "word". */
1765 char quote_char = '\0';
1768 for (scan = str; *scan != '\0'; scan++)
1770 if (quote_char != '\0')
1772 /* Ignore everything until the matching close quote char */
1773 if (*scan == quote_char)
1775 /* Found matching close quote. */
1780 else if (strchr (gdb_completer_quote_characters, *scan))
1782 /* Found start of a quoted string. */
1785 else if (strchr (gdb_completer_word_break_characters, *scan))
1799 #if STOP_SIGNAL == SIGTSTP
1800 signal (SIGTSTP, SIG_DFL);
1802 kill (getpid (), SIGTSTP);
1803 signal (SIGTSTP, stop_sig);
1805 signal (STOP_SIGNAL, stop_sig);
1807 printf_unfiltered ("%s", prompt);
1808 gdb_flush (gdb_stdout);
1810 /* Forget about any previous command -- null line now will do nothing. */
1813 #endif /* STOP_SIGNAL */
1815 /* Initialize signal handlers. */
1825 signal (SIGINT, request_quit);
1827 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
1828 passed to the inferior, which we don't want. It would be
1829 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
1830 on BSD4.3 systems using vfork, that can affect the
1831 GDB process as well as the inferior (the signal handling tables
1832 might be in memory, shared between the two). Since we establish
1833 a handler for SIGQUIT, when we call exec it will set the signal
1834 to SIG_DFL for us. */
1835 signal (SIGQUIT, do_nothing);
1836 if (signal (SIGHUP, do_nothing) != SIG_IGN)
1837 signal (SIGHUP, disconnect);
1838 signal (SIGFPE, float_handler);
1840 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1841 signal (SIGWINCH, SIGWINCH_HANDLER);
1845 /* Read one line from the command input stream `instream'
1846 into the local static buffer `linebuffer' (whose current length
1848 The buffer is made bigger as necessary.
1849 Returns the address of the start of the line.
1851 NULL is returned for end of file.
1853 *If* the instream == stdin & stdin is a terminal, the line read
1854 is copied into the file line saver (global var char *line,
1855 length linesize) so that it can be duplicated.
1857 This routine either uses fancy command line editing or
1858 simple input as the user has requested. */
1861 command_line_input (prrompt, repeat, annotation_suffix)
1864 char *annotation_suffix;
1866 static char *linebuffer = 0;
1867 static unsigned linelength = 0;
1871 char *local_prompt = prrompt;
1876 /* The annotation suffix must be non-NULL. */
1877 if (annotation_suffix == NULL)
1878 annotation_suffix = "";
1880 if (annotation_level > 1 && instream == stdin)
1882 local_prompt = alloca ((prrompt == NULL ? 0 : strlen (prrompt))
1883 + strlen (annotation_suffix) + 40);
1884 if (prrompt == NULL)
1885 local_prompt[0] = '\0';
1887 strcpy (local_prompt, prrompt);
1888 strcat (local_prompt, "\n\032\032");
1889 strcat (local_prompt, annotation_suffix);
1890 strcat (local_prompt, "\n");
1893 if (linebuffer == 0)
1896 linebuffer = (char *) xmalloc (linelength);
1901 /* Control-C quits instantly if typed while in this loop
1902 since it should not wait until the user types a newline. */
1906 signal (STOP_SIGNAL, stop_sig);
1911 /* Make sure that all output has been output. Some machines may let
1912 you get away with leaving out some of the gdb_flush, but not all. */
1914 gdb_flush (gdb_stdout);
1915 gdb_flush (gdb_stderr);
1917 if (source_file_name != NULL)
1919 ++source_line_number;
1920 sprintf (source_error,
1921 "%s%s:%d: Error in sourced command file:\n",
1924 source_line_number);
1925 error_pre_print = source_error;
1928 if (annotation_level > 1 && instream == stdin)
1930 printf_unfiltered ("\n\032\032pre-");
1931 printf_unfiltered (annotation_suffix);
1932 printf_unfiltered ("\n");
1935 /* Don't use fancy stuff if not talking to stdin. */
1936 if (command_editing_p && instream == stdin
1937 && ISATTY (instream))
1938 rl = readline (local_prompt);
1940 rl = gdb_readline (local_prompt);
1942 if (annotation_level > 1 && instream == stdin)
1944 printf_unfiltered ("\n\032\032post-");
1945 printf_unfiltered (annotation_suffix);
1946 printf_unfiltered ("\n");
1949 if (!rl || rl == (char *) EOF)
1954 if (strlen(rl) + 1 + (p - linebuffer) > linelength)
1956 linelength = strlen(rl) + 1 + (p - linebuffer);
1957 nline = (char *) xrealloc (linebuffer, linelength);
1958 p += nline - linebuffer;
1962 /* Copy line. Don't copy null at end. (Leaves line alone
1963 if this was just a newline) */
1967 free (rl); /* Allocated in readline. */
1969 if (p == linebuffer || *(p - 1) != '\\')
1972 p--; /* Put on top of '\'. */
1973 local_prompt = (char *) 0;
1978 signal (STOP_SIGNAL, SIG_DFL);
1985 #define SERVER_COMMAND_LENGTH 7
1987 (p - linebuffer > SERVER_COMMAND_LENGTH)
1988 && STREQN (linebuffer, "server ", SERVER_COMMAND_LENGTH);
1991 /* Note that we don't set `line'. Between this and the check in
1992 dont_repeat, this insures that repeating will still do the
1995 return linebuffer + SERVER_COMMAND_LENGTH;
1998 /* Do history expansion if that is wished. */
1999 if (history_expansion_p && instream == stdin
2000 && ISATTY (instream))
2002 char *history_value;
2005 *p = '\0'; /* Insert null now. */
2006 expanded = history_expand (linebuffer, &history_value);
2009 /* Print the changes. */
2010 printf_unfiltered ("%s\n", history_value);
2012 /* If there was an error, call this function again. */
2015 free (history_value);
2016 return command_line_input (prrompt, repeat, annotation_suffix);
2018 if (strlen (history_value) > linelength)
2020 linelength = strlen (history_value) + 1;
2021 linebuffer = (char *) xrealloc (linebuffer, linelength);
2023 strcpy (linebuffer, history_value);
2024 p = linebuffer + strlen(linebuffer);
2025 free (history_value);
2029 /* If we just got an empty line, and that is supposed
2030 to repeat the previous command, return the value in the
2034 if (p == linebuffer)
2037 while (*p1 == ' ' || *p1 == '\t')
2045 /* Add line to history if appropriate. */
2046 if (instream == stdin
2047 && ISATTY (stdin) && *linebuffer)
2048 add_history (linebuffer);
2050 /* Note: lines consisting solely of comments are added to the command
2051 history. This is useful when you type a command, and then
2052 realize you don't want to execute it quite yet. You can comment
2053 out the command and then later fetch it from the value history
2054 and remove the '#'. The kill ring is probably better, but some
2055 people are in the habit of commenting things out. */
2057 while ((c = *p1++) != '\0')
2060 while ((c = *p1++) != '"')
2062 /* Make sure an escaped '"' doesn't make us think the string
2070 while ((c = *p1++) != '\'')
2072 /* Make sure an escaped '\'' doesn't make us think the string
2081 /* Found a comment. */
2087 /* Save into global buffer if appropriate. */
2090 if (linelength > linesize)
2092 line = xrealloc (line, linelength);
2093 linesize = linelength;
2095 strcpy (line, linebuffer);
2103 /* Expand the body_list of COMMAND so that it can hold NEW_LENGTH
2104 code bodies. This is typically used when we encounter an "else"
2105 clause for an "if" command. */
2108 realloc_body_list (command, new_length)
2109 struct command_line *command;
2113 struct command_line **body_list;
2115 n = command->body_count;
2117 /* Nothing to do? */
2118 if (new_length <= n)
2121 body_list = (struct command_line **)
2122 xmalloc (sizeof (struct command_line *) * new_length);
2124 memcpy (body_list, command->body_list, sizeof (struct command_line *) * n);
2126 free (command->body_list);
2127 command->body_list = body_list;
2128 command->body_count = new_length;
2131 /* Read one line from the input stream. If the command is an "else" or
2132 "end", return such an indication to the caller. */
2134 static enum misc_command_type
2135 read_next_line (command)
2136 struct command_line **command;
2138 char *p, *p1, *prompt_ptr, control_prompt[256];
2141 if (control_level >= 254)
2142 error ("Control nesting too deep!\n");
2144 /* Set a prompt based on the nesting of the control commands. */
2145 if (instream == stdin)
2147 for (i = 0; i < control_level; i++)
2148 control_prompt[i] = ' ';
2149 control_prompt[i] = '>';
2150 control_prompt[i+1] = '\0';
2151 prompt_ptr = (char *)&control_prompt[0];
2156 p = command_line_input (prompt_ptr, instream == stdin, "commands");
2158 /* Not sure what to do here. */
2162 /* Strip leading and trailing whitespace. */
2163 while (*p == ' ' || *p == '\t')
2166 p1 = p + strlen (p);
2167 while (p1 != p && (p1[-1] == ' ' || p1[-1] == '\t'))
2170 /* Blanks and comments don't really do anything, but we need to
2171 distinguish them from else, end and other commands which can be
2173 if (p1 == p || p[0] == '#')
2176 /* Is this the end of a simple, while, or if control structure? */
2177 if (p1 - p == 3 && !strncmp (p, "end", 3))
2180 /* Is the else clause of an if control structure? */
2181 if (p1 - p == 4 && !strncmp (p, "else", 4))
2182 return else_command;
2184 /* Check for while, if, break, continue, etc and build a new command
2185 line structure for them. */
2186 if (p1 - p > 5 && !strncmp (p, "while", 5))
2187 *command = build_command_line (while_control, p + 6);
2188 else if (p1 - p > 2 && !strncmp (p, "if", 2))
2189 *command = build_command_line (if_control, p + 3);
2190 else if (p1 - p == 5 && !strncmp (p, "loop_break", 5))
2192 *command = (struct command_line *)
2193 xmalloc (sizeof (struct command_line));
2194 (*command)->next = NULL;
2195 (*command)->line = NULL;
2196 (*command)->control_type = break_control;
2197 (*command)->body_count = 0;
2198 (*command)->body_list = NULL;
2200 else if (p1 - p == 8 && !strncmp (p, "loop_continue", 8))
2202 *command = (struct command_line *)
2203 xmalloc (sizeof (struct command_line));
2204 (*command)->next = NULL;
2205 (*command)->line = NULL;
2206 (*command)->control_type = continue_control;
2207 (*command)->body_count = 0;
2208 (*command)->body_list = NULL;
2212 /* A normal command. */
2213 *command = (struct command_line *)
2214 xmalloc (sizeof (struct command_line));
2215 (*command)->next = NULL;
2216 (*command)->line = savestring (p, p1 - p);
2217 (*command)->control_type = simple_control;
2218 (*command)->body_count = 0;
2219 (*command)->body_list = NULL;
2222 /* Nothing special. */
2226 /* Recursively read in the control structures and create a command_line
2229 The parent_control parameter is the control structure in which the
2230 following commands are nested. */
2232 static enum command_control_type
2233 recurse_read_control_structure (current_cmd)
2234 struct command_line *current_cmd;
2236 int current_body, i;
2237 enum misc_command_type val;
2238 enum command_control_type ret;
2239 struct command_line **body_ptr, *child_tail, *next;
2240 struct cleanup *old_chains, *tmp_chains;
2246 /* Sanity checks. */
2247 if (current_cmd->control_type == simple_control)
2249 error ("Recursed on a simple control type\n");
2250 return invalid_control;
2253 if (current_body > current_cmd->body_count)
2255 error ("Allocated body is smaller than this command type needs\n");
2256 return invalid_control;
2259 /* Read lines from the input stream and build control structures. */
2265 val = read_next_line (&next);
2267 /* Just skip blanks and comments. */
2268 if (val == nop_command)
2271 if (val == end_command)
2273 if (current_cmd->control_type == while_control
2274 || current_cmd->control_type == if_control)
2276 /* Success reading an entire control structure. */
2277 ret = simple_control;
2282 ret = invalid_control;
2287 /* Not the end of a control structure. */
2288 if (val == else_command)
2290 if (current_cmd->control_type == if_control
2291 && current_body == 1)
2293 realloc_body_list (current_cmd, 2);
2300 ret = invalid_control;
2307 child_tail->next = next;
2311 /* We have just read the first line of the child's control
2312 structure. From now on, arrange to throw away the line
2313 we have if we quit or get an error. */
2314 body_ptr = current_cmd->body_list;
2315 for (i = 1; i < current_body; i++)
2320 tmp_chains = make_cleanup (free_command_lines, body_ptr);
2323 old_chains = tmp_chains;
2328 /* If the latest line is another control structure, then recurse
2330 if (next->control_type == while_control
2331 || next->control_type == if_control)
2334 ret = recurse_read_control_structure (next);
2337 if (ret != simple_control)
2343 if (ret == invalid_control && old_chains)
2344 do_cleanups (old_chains);
2345 else if (old_chains)
2346 discard_cleanups (old_chains);
2352 /* Read lines from the input stream
2353 and accumulate them in a chain of struct command_line's
2354 which is then returned. */
2356 struct command_line *
2357 read_command_lines ()
2359 struct command_line *head, *tail, *next;
2360 struct cleanup *old_chain;
2361 enum command_control_type ret;
2362 enum misc_command_type val;
2369 val = read_next_line (&next);
2371 /* Ignore blank lines or comments. */
2372 if (val == nop_command)
2375 if (val == end_command)
2377 ret = simple_control;
2381 if (val != ok_command)
2383 ret = invalid_control;
2387 if (next->control_type == while_control
2388 || next->control_type == if_control)
2391 ret = recurse_read_control_structure (next);
2394 if (ret == invalid_control)
2405 old_chain = make_cleanup (free_command_lines, &head);
2414 if (ret != invalid_control)
2416 discard_cleanups (old_chain);
2420 do_cleanups (old_chain);
2426 /* Free a chain of struct command_line's. */
2429 free_command_lines (lptr)
2430 struct command_line **lptr;
2432 register struct command_line *l = *lptr;
2433 register struct command_line *next;
2434 struct command_line **blist;
2439 if (l->body_count > 0)
2441 blist = l->body_list;
2442 for (i = 0; i < l->body_count; i++, blist++)
2443 free_command_lines (blist);
2452 /* Add an element to the list of info subcommands. */
2455 add_info (name, fun, doc)
2457 void (*fun) PARAMS ((char *, int));
2460 add_cmd (name, no_class, fun, doc, &infolist);
2463 /* Add an alias to the list of info subcommands. */
2466 add_info_alias (name, oldname, abbrev_flag)
2471 add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
2474 /* The "info" command is defined as a prefix, with allow_unknown = 0.
2475 Therefore, its own definition is called only for "info" with no args. */
2479 info_command (arg, from_tty)
2483 printf_unfiltered ("\"info\" must be followed by the name of an info command.\n");
2484 help_list (infolist, "info ", -1, gdb_stdout);
2487 /* The "complete" command is used by Emacs to implement completion. */
2491 complete_command (arg, from_tty)
2503 argpoint = strlen (arg);
2505 for (completion = line_completion_function (arg, i = 0, arg, argpoint);
2507 completion = line_completion_function (arg, ++i, arg, argpoint))
2509 printf_unfiltered ("%s\n", completion);
2514 /* The "show" command with no arguments shows all the settings. */
2518 show_command (arg, from_tty)
2522 cmd_show_list (showlist, from_tty, "");
2525 /* Add an element to the list of commands. */
2528 add_com (name, class, fun, doc)
2530 enum command_class class;
2531 void (*fun) PARAMS ((char *, int));
2534 add_cmd (name, class, fun, doc, &cmdlist);
2537 /* Add an alias or abbreviation command to the list of commands. */
2540 add_com_alias (name, oldname, class, abbrev_flag)
2543 enum command_class class;
2546 add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
2553 error ("Argument required (%s).", why);
2558 help_command (command, from_tty)
2560 int from_tty; /* Ignored */
2562 help_cmd (command, gdb_stdout);
2566 validate_comname (comname)
2572 error_no_arg ("name of command to define");
2577 if (!isalnum(*p) && *p != '-')
2578 error ("Junk in argument list: \"%s\"", p);
2583 /* This is just a placeholder in the command data structures. */
2585 user_defined_command (ignore, from_tty)
2592 define_command (comname, from_tty)
2596 register struct command_line *cmds;
2597 register struct cmd_list_element *c, *newc, *hookc = 0;
2598 char *tem = comname;
2599 #define HOOK_STRING "hook-"
2602 validate_comname (comname);
2604 /* Look it up, and verify that we got an exact match. */
2605 c = lookup_cmd (&tem, cmdlist, "", -1, 1);
2606 if (c && !STREQ (comname, c->name))
2611 if (c->class == class_user || c->class == class_alias)
2612 tem = "Redefine command \"%s\"? ";
2614 tem = "Really redefine built-in command \"%s\"? ";
2615 if (!query (tem, c->name))
2616 error ("Command \"%s\" not redefined.", c->name);
2619 /* If this new command is a hook, then mark the command which it
2620 is hooking. Note that we allow hooking `help' commands, so that
2621 we can hook the `stop' pseudo-command. */
2623 if (!strncmp (comname, HOOK_STRING, HOOK_LEN))
2625 /* Look up cmd it hooks, and verify that we got an exact match. */
2626 tem = comname+HOOK_LEN;
2627 hookc = lookup_cmd (&tem, cmdlist, "", -1, 0);
2628 if (hookc && !STREQ (comname+HOOK_LEN, hookc->name))
2632 warning ("Your new `%s' command does not hook any existing command.",
2634 if (!query ("Proceed? "))
2635 error ("Not confirmed.");
2639 comname = savestring (comname, strlen (comname));
2641 /* If the rest of the commands will be case insensitive, this one
2642 should behave in the same manner. */
2643 for (tem = comname; *tem; tem++)
2644 if (isupper(*tem)) *tem = tolower(*tem);
2648 printf_unfiltered ("Type commands for definition of \"%s\".\n\
2649 End with a line saying just \"end\".\n", comname);
2650 gdb_flush (gdb_stdout);
2654 cmds = read_command_lines ();
2656 if (c && c->class == class_user)
2657 free_command_lines (&c->user_commands);
2659 newc = add_cmd (comname, class_user, user_defined_command,
2660 (c && c->class == class_user)
2661 ? c->doc : savestring ("User-defined.", 13), &cmdlist);
2662 newc->user_commands = cmds;
2664 /* If this new command is a hook, then mark both commands as being
2668 hookc->hook = newc; /* Target gets hooked. */
2669 newc->hookee = hookc; /* We are marked as hooking target cmd. */
2674 document_command (comname, from_tty)
2678 struct command_line *doclines;
2679 register struct cmd_list_element *c;
2680 char *tem = comname;
2682 validate_comname (comname);
2684 c = lookup_cmd (&tem, cmdlist, "", 0, 1);
2686 if (c->class != class_user)
2687 error ("Command \"%s\" is built-in.", comname);
2690 printf_unfiltered ("Type documentation for \"%s\".\n\
2691 End with a line saying just \"end\".\n", comname);
2693 doclines = read_command_lines ();
2695 if (c->doc) free (c->doc);
2698 register struct command_line *cl1;
2699 register int len = 0;
2701 for (cl1 = doclines; cl1; cl1 = cl1->next)
2702 len += strlen (cl1->line) + 1;
2704 c->doc = (char *) xmalloc (len + 1);
2707 for (cl1 = doclines; cl1; cl1 = cl1->next)
2709 strcat (c->doc, cl1->line);
2711 strcat (c->doc, "\n");
2715 free_command_lines (&doclines);
2719 print_gnu_advertisement ()
2721 printf_unfiltered ("\
2722 GDB is free software and you are welcome to distribute copies of it\n\
2723 under certain conditions; type \"show copying\" to see the conditions.\n\
2724 There is absolutely no warranty for GDB; type \"show warranty\" for details.\n\
2729 print_gdb_version (stream)
2732 fprintf_filtered (stream, "\
2733 GDB %s (%s", version, host_name);
2735 if (!STREQ (host_name, target_name))
2736 fprintf_filtered (stream, " --target %s", target_name);
2738 fprintf_filtered (stream, "), ");
2740 fprintf_filtered (stream, "Copyright 1995 Free Software Foundation, Inc.");
2745 show_version (args, from_tty)
2750 print_gnu_advertisement ();
2751 print_gdb_version (gdb_stdout);
2752 printf_filtered ("\n");
2756 /* xgdb calls this to reprint the usual GDB prompt. Obsolete now that xgdb
2762 printf_unfiltered ("%s", prompt);
2763 gdb_flush (gdb_stdout);
2767 quit_command (args, from_tty)
2773 /* An optional expression may be used to cause gdb to terminate with the
2774 value of that expression. */
2777 value_ptr val = parse_and_eval (args);
2779 exit_code = (int) value_as_long (val);
2782 if (inferior_pid != 0 && target_has_execution)
2786 if (query ("The program is running. Quit anyway (and detach it)? "))
2787 target_detach (args, from_tty);
2789 error ("Not confirmed.");
2793 if (query ("The program is running. Quit anyway (and kill it)? "))
2796 error ("Not confirmed.");
2799 /* UDI wants this, to kill the TIP. */
2802 /* Save the history information if it is appropriate to do so. */
2803 if (write_history_p && history_filename)
2804 write_history (history_filename);
2809 /* Returns whether GDB is running on a terminal and whether the user
2810 desires that questions be asked of them on that terminal. */
2813 input_from_terminal_p ()
2815 return gdb_has_a_terminal () && (instream == stdin) & caution;
2820 pwd_command (args, from_tty)
2824 if (args) error ("The \"pwd\" command does not take an argument: %s", args);
2825 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
2827 if (!STREQ (gdb_dirbuf, current_directory))
2828 printf_unfiltered ("Working directory %s\n (canonically %s).\n",
2829 current_directory, gdb_dirbuf);
2831 printf_unfiltered ("Working directory %s.\n", current_directory);
2835 cd_command (dir, from_tty)
2840 /* Found something other than leading repetitions of "/..". */
2841 int found_real_path;
2844 /* If the new directory is absolute, repeat is a no-op; if relative,
2845 repeat might be useful but is more likely to be a mistake. */
2849 error_no_arg ("new working directory");
2851 dir = tilde_expand (dir);
2852 make_cleanup (free, dir);
2854 if (chdir (dir) < 0)
2855 perror_with_name (dir);
2858 dir = savestring (dir, len - (len > 1 && SLASH_P(dir[len-1])));
2860 current_directory = dir;
2863 if (SLASH_P (current_directory[0]) && current_directory[1] == '\0')
2864 current_directory = concat (current_directory, dir, NULL);
2866 current_directory = concat (current_directory, SLASH_STRING, dir, NULL);
2870 /* Now simplify any occurrences of `.' and `..' in the pathname. */
2872 found_real_path = 0;
2873 for (p = current_directory; *p;)
2875 if (SLASH_P (p[0]) && p[1] == '.' && (p[2] == 0 || SLASH_P (p[2])))
2877 else if (SLASH_P (p[0]) && p[1] == '.' && p[2] == '.'
2878 && (p[3] == 0 || SLASH_P (p[3])))
2880 if (found_real_path)
2882 /* Search backwards for the directory just before the "/.."
2883 and obliterate it and the "/..". */
2885 while (q != current_directory && ! SLASH_P (q[-1]))
2888 if (q == current_directory)
2889 /* current_directory is
2890 a relative pathname ("can't happen"--leave it alone). */
2894 strcpy (q - 1, p + 3);
2899 /* We are dealing with leading repetitions of "/..", for example
2900 "/../..", which is the Mach super-root. */
2905 found_real_path = 1;
2910 forget_cached_source_info ();
2913 pwd_command ((char *) 0, 1);
2916 struct source_cleanup_lines_args {
2919 char *old_pre_error;
2920 char *old_error_pre_print;
2924 source_cleanup_lines (args)
2927 struct source_cleanup_lines_args *p =
2928 (struct source_cleanup_lines_args *)args;
2929 source_line_number = p->old_line;
2930 source_file_name = p->old_file;
2931 source_pre_error = p->old_pre_error;
2932 error_pre_print = p->old_error_pre_print;
2937 source_command (args, from_tty)
2942 struct cleanup *old_cleanups;
2944 struct source_cleanup_lines_args old_lines;
2949 error ("source command requires pathname of file to source.");
2952 file = tilde_expand (file);
2953 old_cleanups = make_cleanup (free, file);
2955 stream = fopen (file, FOPEN_RT);
2957 perror_with_name (file);
2959 make_cleanup (fclose, stream);
2961 old_lines.old_line = source_line_number;
2962 old_lines.old_file = source_file_name;
2963 old_lines.old_pre_error = source_pre_error;
2964 old_lines.old_error_pre_print = error_pre_print;
2965 make_cleanup (source_cleanup_lines, &old_lines);
2966 source_line_number = 0;
2967 source_file_name = file;
2968 source_pre_error = error_pre_print == NULL ? "" : error_pre_print;
2969 source_pre_error = savestring (source_pre_error, strlen (source_pre_error));
2970 make_cleanup (free, source_pre_error);
2971 /* This will get set every time we read a line. So it won't stay "" for
2973 error_pre_print = "";
2975 needed_length = strlen (source_file_name) + strlen (source_pre_error) + 80;
2976 if (source_error_allocated < needed_length)
2978 source_error_allocated *= 2;
2979 if (source_error_allocated < needed_length)
2980 source_error_allocated = needed_length;
2981 if (source_error == NULL)
2982 source_error = xmalloc (source_error_allocated);
2984 source_error = xrealloc (source_error, source_error_allocated);
2987 read_command_file (stream);
2989 do_cleanups (old_cleanups);
2994 echo_command (text, from_tty)
3002 while ((c = *p++) != '\0')
3006 /* \ at end of argument is used after spaces
3007 so they won't be lost. */
3011 c = parse_escape (&p);
3013 printf_filtered ("%c", c);
3016 printf_filtered ("%c", c);
3019 /* Force this output to appear now. */
3021 gdb_flush (gdb_stdout);
3025 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3027 /* Functions to manipulate the endianness of the target. */
3029 #ifndef TARGET_BYTE_ORDER_DEFAULT
3030 #define TARGET_BYTE_ORDER_DEFAULT BIG_ENDIAN
3033 int target_byte_order = TARGET_BYTE_ORDER_DEFAULT;
3035 static int target_byte_order_auto = 1;
3037 /* Called if the user enters ``set endian'' without an argument. */
3039 set_endian (args, from_tty)
3043 printf_unfiltered ("\"set endian\" must be followed by \"auto\", \"big\" or \"little\".\n");
3044 show_endian (args, from_tty);
3047 /* Called by ``set endian big''. */
3049 set_endian_big (args, from_tty)
3053 target_byte_order = BIG_ENDIAN;
3054 target_byte_order_auto = 0;
3057 /* Called by ``set endian little''. */
3059 set_endian_little (args, from_tty)
3063 target_byte_order = LITTLE_ENDIAN;
3064 target_byte_order_auto = 0;
3067 /* Called by ``set endian auto''. */
3069 set_endian_auto (args, from_tty)
3073 target_byte_order_auto = 1;
3076 /* Called by ``show endian''. */
3078 show_endian (args, from_tty)
3083 (target_byte_order_auto
3084 ? "The target endianness is set automatically (currently %s endian)\n"
3085 : "The target is assumed to be %s endian\n");
3086 printf_unfiltered ((char *) msg, TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3089 #endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
3091 /* Set the endianness from a BFD. */
3093 set_endian_from_file (abfd)
3096 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3099 if (abfd->xvec->byteorder_big_p)
3102 want = LITTLE_ENDIAN;
3103 if (target_byte_order_auto)
3104 target_byte_order = want;
3105 else if (target_byte_order != want)
3106 warning ("%s endian file does not match %s endian target.",
3107 want == BIG_ENDIAN ? "big" : "little",
3108 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3110 #else /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */
3112 if (abfd->xvec->byteorder_big_p
3113 ? TARGET_BYTE_ORDER != BIG_ENDIAN
3114 : TARGET_BYTE_ORDER == BIG_ENDIAN)
3115 warning ("%s endian file does not match %s endian target.",
3116 abfd->xvec->byteorder_big_p ? "big" : "little",
3117 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3119 #endif /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */
3122 /* Functions to manipulate command line editing control variables. */
3124 /* Number of commands to print in each call to show_commands. */
3125 #define Hist_print 10
3127 show_commands (args, from_tty)
3131 /* Index for history commands. Relative to history_base. */
3134 /* Number of the history entry which we are planning to display next.
3135 Relative to history_base. */
3138 /* The first command in the history which doesn't exist (i.e. one more
3139 than the number of the last command). Relative to history_base. */
3142 extern HIST_ENTRY *history_get PARAMS ((int));
3144 /* Print out some of the commands from the command history. */
3145 /* First determine the length of the history list. */
3146 hist_len = history_size;
3147 for (offset = 0; offset < history_size; offset++)
3149 if (!history_get (history_base + offset))
3158 if (args[0] == '+' && args[1] == '\0')
3159 /* "info editing +" should print from the stored position. */
3162 /* "info editing <exp>" should print around command number <exp>. */
3163 num = (parse_and_eval_address (args) - history_base) - Hist_print / 2;
3165 /* "show commands" means print the last Hist_print commands. */
3168 num = hist_len - Hist_print;
3174 /* If there are at least Hist_print commands, we want to display the last
3175 Hist_print rather than, say, the last 6. */
3176 if (hist_len - num < Hist_print)
3178 num = hist_len - Hist_print;
3183 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
3185 printf_filtered ("%5d %s\n", history_base + offset,
3186 (history_get (history_base + offset))->line);
3189 /* The next command we want to display is the next one that we haven't
3193 /* If the user repeats this command with return, it should do what
3194 "show commands +" does. This is unnecessary if arg is null,
3195 because "show commands +" is not useful after "show commands". */
3196 if (from_tty && args)
3203 /* Called by do_setshow_command. */
3206 set_history_size_command (args, from_tty, c)
3209 struct cmd_list_element *c;
3211 if (history_size == INT_MAX)
3212 unstifle_history ();
3213 else if (history_size >= 0)
3214 stifle_history (history_size);
3217 history_size = INT_MAX;
3218 error ("History size must be non-negative");
3224 set_history (args, from_tty)
3228 printf_unfiltered ("\"set history\" must be followed by the name of a history subcommand.\n");
3229 help_list (sethistlist, "set history ", -1, gdb_stdout);
3234 show_history (args, from_tty)
3238 cmd_show_list (showhistlist, from_tty, "");
3241 int info_verbose = 0; /* Default verbose msgs off */
3243 /* Called by do_setshow_command. An elaborate joke. */
3246 set_verbose (args, from_tty, c)
3249 struct cmd_list_element *c;
3251 char *cmdname = "verbose";
3252 struct cmd_list_element *showcmd;
3254 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
3258 c->doc = "Set verbose printing of informational messages.";
3259 showcmd->doc = "Show verbose printing of informational messages.";
3263 c->doc = "Set verbosity.";
3264 showcmd->doc = "Show verbosity.";
3269 float_handler (signo)
3272 /* This message is based on ANSI C, section 4.7. Note that integer
3273 divide by zero causes this, so "float" is a misnomer. */
3274 signal (SIGFPE, float_handler);
3275 error ("Erroneous arithmetic operation.");
3287 enablebreaklist = NULL;
3291 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3295 showhistlist = NULL;
3296 unsethistlist = NULL;
3297 #if MAINTENANCE_CMDS
3298 maintenancelist = NULL;
3299 maintenanceinfolist = NULL;
3300 maintenanceprintlist = NULL;
3302 setprintlist = NULL;
3303 showprintlist = NULL;
3304 setchecklist = NULL;
3305 showchecklist = NULL;
3308 /* Init the history buffer. Note that we are called after the init file(s)
3309 * have been read so that the user can change the history file via his
3310 * .gdbinit file (for instance). The GDBHISTFILE environment variable
3311 * overrides all of this.
3319 tmpenv = getenv ("HISTSIZE");
3321 history_size = atoi (tmpenv);
3322 else if (!history_size)
3325 stifle_history (history_size);
3327 tmpenv = getenv ("GDBHISTFILE");
3329 history_filename = savestring (tmpenv, strlen(tmpenv));
3330 else if (!history_filename) {
3331 /* We include the current directory so that if the user changes
3332 directories the file written will be the same as the one
3334 history_filename = concat (current_directory, "/.gdb_history", NULL);
3336 read_history (history_filename);
3342 struct cmd_list_element *c;
3344 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3346 add_prefix_cmd ("endian", class_support, set_endian,
3347 "Set endianness of target.",
3348 &endianlist, "set endian ", 0, &setlist);
3349 add_cmd ("big", class_support, set_endian_big,
3350 "Set target as being big endian.", &endianlist);
3351 add_cmd ("little", class_support, set_endian_little,
3352 "Set target as being little endian.", &endianlist);
3353 add_cmd ("auto", class_support, set_endian_auto,
3354 "Select target endianness automatically.", &endianlist);
3355 add_cmd ("endian", class_support, show_endian,
3356 "Show endianness of target.", &showlist);
3358 #endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
3360 #ifdef DEFAULT_PROMPT
3361 prompt = savestring (DEFAULT_PROMPT, strlen(DEFAULT_PROMPT));
3363 prompt = savestring ("(gdb) ", 6);
3366 /* Set the important stuff up for command editing. */
3367 command_editing_p = 1;
3368 history_expansion_p = 0;
3369 write_history_p = 0;
3371 /* Setup important stuff for command line editing. */
3372 rl_completion_entry_function = (int (*)()) readline_line_completion_function;
3373 rl_completer_word_break_characters = gdb_completer_word_break_characters;
3374 rl_completer_quote_characters = gdb_completer_quote_characters;
3375 rl_readline_name = "gdb";
3377 /* Define the classes of commands.
3378 They will appear in the help list in the reverse of this order. */
3380 add_cmd ("internals", class_maintenance, NO_FUNCTION,
3381 "Maintenance commands.\n\
3382 Some gdb commands are provided just for use by gdb maintainers.\n\
3383 These commands are subject to frequent change, and may not be as\n\
3384 well documented as user commands.",
3386 add_cmd ("obscure", class_obscure, NO_FUNCTION, "Obscure features.", &cmdlist);
3387 add_cmd ("aliases", class_alias, NO_FUNCTION, "Aliases of other commands.", &cmdlist);
3388 add_cmd ("user-defined", class_user, NO_FUNCTION, "User-defined commands.\n\
3389 The commands in this class are those defined by the user.\n\
3390 Use the \"define\" command to define a command.", &cmdlist);
3391 add_cmd ("support", class_support, NO_FUNCTION, "Support facilities.", &cmdlist);
3392 add_cmd ("status", class_info, NO_FUNCTION, "Status inquiries.", &cmdlist);
3393 add_cmd ("files", class_files, NO_FUNCTION, "Specifying and examining files.", &cmdlist);
3394 add_cmd ("breakpoints", class_breakpoint, NO_FUNCTION, "Making program stop at certain points.", &cmdlist);
3395 add_cmd ("data", class_vars, NO_FUNCTION, "Examining data.", &cmdlist);
3396 add_cmd ("stack", class_stack, NO_FUNCTION, "Examining the stack.\n\
3397 The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
3398 counting from zero for the innermost (currently executing) frame.\n\n\
3399 At any time gdb identifies one frame as the \"selected\" frame.\n\
3400 Variable lookups are done with respect to the selected frame.\n\
3401 When the program being debugged stops, gdb selects the innermost frame.\n\
3402 The commands below can be used to select other frames by number or address.",
3404 add_cmd ("running", class_run, NO_FUNCTION, "Running the program.", &cmdlist);
3406 add_com ("pwd", class_files, pwd_command,
3407 "Print working directory. This is used for your program as well.");
3408 c = add_cmd ("cd", class_files, cd_command,
3409 "Set working directory to DIR for debugger and program being debugged.\n\
3410 The change does not take effect for the program being debugged\n\
3411 until the next time it is started.", &cmdlist);
3412 c->completer = filename_completer;
3415 (add_set_cmd ("prompt", class_support, var_string, (char *)&prompt,
3420 add_com ("echo", class_support, echo_command,
3421 "Print a constant string. Give string as argument.\n\
3422 C escape sequences may be used in the argument.\n\
3423 No newline is added at the end of the argument;\n\
3424 use \"\\n\" if you want a newline to be printed.\n\
3425 Since leading and trailing whitespace are ignored in command arguments,\n\
3426 if you want to print some you must use \"\\\" before leading whitespace\n\
3427 to be printed or after trailing whitespace.");
3428 add_com ("document", class_support, document_command,
3429 "Document a user-defined command.\n\
3430 Give command name as argument. Give documentation on following lines.\n\
3431 End with a line of just \"end\".");
3432 add_com ("define", class_support, define_command,
3433 "Define a new command name. Command name is argument.\n\
3434 Definition appears on following lines, one command per line.\n\
3435 End with a line of just \"end\".\n\
3436 Use the \"document\" command to give documentation for the new command.\n\
3437 Commands defined in this way may have up to ten arguments.");
3440 c = add_cmd ("source", class_support, source_command,
3441 "Read commands from a file named FILE.\n\
3442 Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
3443 when gdb is started.", &cmdlist);
3445 /* Punt file name, we can't help it easily. */
3446 c = add_cmd ("source", class_support, source_command,
3447 "Read commands from a file named FILE.\n\
3448 Note that the file \".gdbinit\" is read automatically in this way\n\
3449 when gdb is started.", &cmdlist);
3451 c->completer = filename_completer;
3453 add_com ("quit", class_support, quit_command, "Exit gdb.");
3454 add_com ("help", class_support, help_command, "Print list of commands.");
3455 add_com_alias ("q", "quit", class_support, 1);
3456 add_com_alias ("h", "help", class_support, 1);
3459 c = add_set_cmd ("verbose", class_support, var_boolean, (char *)&info_verbose,
3462 add_show_from_set (c, &showlist);
3463 c->function.sfunc = set_verbose;
3464 set_verbose (NULL, 0, c);
3467 (add_set_cmd ("editing", class_support, var_boolean, (char *)&command_editing_p,
3468 "Set editing of command lines as they are typed.\n\
3469 Use \"on\" to enable to enable the editing, and \"off\" to disable it.\n\
3470 Without an argument, command line editing is enabled. To edit, use\n\
3471 EMACS-like or VI-like commands like control-P or ESC.", &setlist),
3474 add_prefix_cmd ("history", class_support, set_history,
3475 "Generic command for setting command history parameters.",
3476 &sethistlist, "set history ", 0, &setlist);
3477 add_prefix_cmd ("history", class_support, show_history,
3478 "Generic command for showing command history parameters.",
3479 &showhistlist, "show history ", 0, &showlist);
3482 (add_set_cmd ("expansion", no_class, var_boolean, (char *)&history_expansion_p,
3483 "Set history expansion on command input.\n\
3484 Without an argument, history expansion is enabled.", &sethistlist),
3488 (add_set_cmd ("save", no_class, var_boolean, (char *)&write_history_p,
3489 "Set saving of the history record on exit.\n\
3490 Use \"on\" to enable to enable the saving, and \"off\" to disable it.\n\
3491 Without an argument, saving is enabled.", &sethistlist),
3494 c = add_set_cmd ("size", no_class, var_integer, (char *)&history_size,
3495 "Set the size of the command history, \n\
3496 ie. the number of previous commands to keep a record of.", &sethistlist);
3497 add_show_from_set (c, &showhistlist);
3498 c->function.sfunc = set_history_size_command;
3501 (add_set_cmd ("filename", no_class, var_filename, (char *)&history_filename,
3502 "Set the filename in which to record the command history\n\
3503 (the list of previous commands of which a record is kept).", &sethistlist),
3507 (add_set_cmd ("confirm", class_support, var_boolean,
3509 "Set whether to confirm potentially dangerous operations.",
3513 add_prefix_cmd ("info", class_info, info_command,
3514 "Generic command for showing things about the program being debugged.",
3515 &infolist, "info ", 0, &cmdlist);
3516 add_com_alias ("i", "info", class_info, 1);
3518 add_com ("complete", class_obscure, complete_command,
3519 "List the completions for the rest of the line as a command.");
3521 add_prefix_cmd ("show", class_info, show_command,
3522 "Generic command for showing things about the debugger.",
3523 &showlist, "show ", 0, &cmdlist);
3524 /* Another way to get at the same thing. */
3525 add_info ("set", show_command, "Show all GDB settings.");
3527 add_cmd ("commands", no_class, show_commands,
3528 "Show the history of commands you typed.\n\
3529 You can supply a command number to start with, or a `+' to start after\n\
3530 the previous command number shown.",
3533 add_cmd ("version", no_class, show_version,
3534 "Show what version of GDB this is.", &showlist);
3536 add_com ("while", class_support, while_command,
3537 "Execute nested commands WHILE the conditional expression is non zero.\n\
3538 The conditional expression must follow the word `while' 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 `end'.");
3542 add_com ("if", class_support, if_command,
3543 "Execute nested commands once IF the conditional expression is non zero.\n\
3544 The conditional expression must follow the word `if' and must in turn be\n\
3545 followed by a new line. The nested commands must be entered one per line,\n\
3546 and should be terminated by the word 'else' or `end'. If an else clause\n\
3547 is used, the same rules apply to its nested commands as to the first ones.");
3549 /* If target is open when baud changes, it doesn't take effect until the
3550 next open (I think, not sure). */
3551 add_show_from_set (add_set_cmd ("remotebaud", no_class,
3552 var_zinteger, (char *)&baud_rate,
3553 "Set baud rate for remote serial I/O.\n\
3554 This value is used to set the speed of the serial port when debugging\n\
3555 using remote targets.", &setlist),
3559 add_set_cmd ("remotedebug", no_class, var_zinteger, (char *)&remote_debug,
3560 "Set debugging of remote protocol.\n\
3561 When enabled, each packet sent or received with the remote target\n\
3562 is displayed.", &setlist),