1 /* Top level stuff for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996
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 extern void initialize_utils PARAMS ((void));
56 /* Prototypes for local functions */
58 static void dont_repeat_command PARAMS ((char *, int));
60 static void source_cleanup_lines PARAMS ((PTR));
62 static void user_defined_command PARAMS ((char *, int));
64 static void init_signals PARAMS ((void));
67 static void stop_sig PARAMS ((int));
70 static void disconnect PARAMS ((int));
72 static char * line_completion_function PARAMS ((char *, int, char *, int));
74 static char * readline_line_completion_function PARAMS ((char *, int));
76 static void command_loop_marker PARAMS ((int));
78 static void while_command PARAMS ((char *, int));
80 static void if_command PARAMS ((char *, int));
82 static struct command_line *
83 build_command_line PARAMS ((enum command_control_type, char *));
85 static struct command_line *
86 get_command_line PARAMS ((enum command_control_type, char *));
88 static void realloc_body_list PARAMS ((struct command_line *, int));
90 static enum misc_command_type read_next_line PARAMS ((struct command_line **));
92 static enum command_control_type
93 recurse_read_control_structure PARAMS ((struct command_line *));
95 static struct cleanup * setup_user_args PARAMS ((char *));
97 static char * locate_arg PARAMS ((char *));
99 static char * insert_args PARAMS ((char *));
101 static void arg_cleanup PARAMS ((void));
103 static void init_main PARAMS ((void));
105 static void init_cmd_lists PARAMS ((void));
107 static void float_handler PARAMS ((int));
109 static void init_signals PARAMS ((void));
111 static void set_verbose PARAMS ((char *, int, struct cmd_list_element *));
113 #ifdef TARGET_BYTE_ORDER_SELECTABLE
115 static void set_endian PARAMS ((char *, int));
117 static void set_endian_big PARAMS ((char *, int));
119 static void set_endian_little PARAMS ((char *, int));
121 static void set_endian_auto PARAMS ((char *, int));
123 static void show_endian PARAMS ((char *, int));
127 static void show_history PARAMS ((char *, int));
129 static void set_history PARAMS ((char *, int));
131 static void set_history_size_command PARAMS ((char *, int,
132 struct cmd_list_element *));
134 static void show_commands PARAMS ((char *, int));
136 static void echo_command PARAMS ((char *, int));
138 static void pwd_command PARAMS ((char *, int));
140 static void show_version PARAMS ((char *, int));
142 static void document_command PARAMS ((char *, int));
144 static void define_command PARAMS ((char *, int));
146 static void validate_comname PARAMS ((char *));
148 static void help_command PARAMS ((char *, int));
150 static void show_command PARAMS ((char *, int));
152 static void info_command PARAMS ((char *, int));
154 static void complete_command PARAMS ((char *, int));
156 static void do_nothing PARAMS ((int));
158 static int quit_cover PARAMS ((char *));
160 static void disconnect PARAMS ((int));
162 static void source_cleanup PARAMS ((FILE *));
164 /* If this definition isn't overridden by the header files, assume
165 that isatty and fileno exist on this system. */
167 #define ISATTY(FP) (isatty (fileno (FP)))
170 /* Initialization file name for gdb. This is overridden in some configs. */
172 #ifndef GDBINIT_FILENAME
173 #define GDBINIT_FILENAME ".gdbinit"
175 char gdbinit[] = GDBINIT_FILENAME;
177 int inhibit_gdbinit = 0;
179 /* If nonzero, and GDB has been configured to be able to use windows,
180 attempt to open them upon startup. */
184 /* Version number of GDB, as a string. */
186 extern char *version;
188 /* Canonical host name as a string. */
190 extern char *host_name;
192 /* Canonical target name as a string. */
194 extern char *target_name;
196 extern char lang_frame_mismatch_warn[]; /* language.c */
198 /* Flag for whether we want all the "from_tty" gubbish printed. */
200 int caution = 1; /* Default is yes, sigh. */
202 /* Define all cmd_list_elements. */
204 /* Chain containing all defined commands. */
206 struct cmd_list_element *cmdlist;
208 /* Chain containing all defined info subcommands. */
210 struct cmd_list_element *infolist;
212 /* Chain containing all defined enable subcommands. */
214 struct cmd_list_element *enablelist;
216 /* Chain containing all defined disable subcommands. */
218 struct cmd_list_element *disablelist;
220 /* Chain containing all defined delete subcommands. */
222 struct cmd_list_element *deletelist;
224 /* Chain containing all defined "enable breakpoint" subcommands. */
226 struct cmd_list_element *enablebreaklist;
228 /* Chain containing all defined set subcommands */
230 struct cmd_list_element *setlist;
232 /* Chain containing all defined unset subcommands */
234 struct cmd_list_element *unsetlist;
236 /* Chain containing all defined show subcommands. */
238 struct cmd_list_element *showlist;
240 #ifdef TARGET_BYTE_ORDER_SELECTABLE
241 /* Chain containing the \"set endian\" commands. */
243 struct cmd_list_element *endianlist;
246 /* Chain containing all defined \"set history\". */
248 struct cmd_list_element *sethistlist;
250 /* Chain containing all defined \"show history\". */
252 struct cmd_list_element *showhistlist;
254 /* Chain containing all defined \"unset history\". */
256 struct cmd_list_element *unsethistlist;
258 /* Chain containing all defined maintenance subcommands. */
261 struct cmd_list_element *maintenancelist;
264 /* Chain containing all defined "maintenance info" subcommands. */
267 struct cmd_list_element *maintenanceinfolist;
270 /* Chain containing all defined "maintenance print" subcommands. */
273 struct cmd_list_element *maintenanceprintlist;
276 struct cmd_list_element *setprintlist;
278 struct cmd_list_element *showprintlist;
280 struct cmd_list_element *setchecklist;
282 struct cmd_list_element *showchecklist;
284 /* stdio stream that command input is being read from. Set to stdin normally.
285 Set by source_command to the file we are sourcing. Set to NULL if we are
286 executing a user-defined command or interacting via a GUI. */
290 /* Current working directory. */
292 char *current_directory;
294 /* The directory name is actually stored here (usually). */
295 char gdb_dirbuf[1024];
297 /* Function to call before reading a command, if nonzero.
298 The function receives two args: an input stream,
299 and a prompt string. */
301 void (*window_hook) PARAMS ((FILE *, char *));
306 /* gdb prints this when reading a command interactively */
309 /* Buffer used for reading command lines, and the size
310 allocated for it so far. */
315 /* Nonzero if the current command is modified by "server ". This
316 affects things like recording into the command history, comamnds
317 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
318 whatever) can issue its own commands and also send along commands
319 from the user, and have the user not notice that the user interface
320 is issuing commands too. */
323 /* Baud rate specified for talking to serial target systems. Default
324 is left as -1, so targets can choose their own defaults. */
325 /* FIXME: This means that "show remotebaud" and gr_files_info can print -1
326 or (unsigned int)-1. This is a Bad User Interface. */
330 /* Timeout limit for response from target. */
332 int remote_timeout = 20; /* Set default to 20 */
334 /* Non-zero tells remote* modules to output debugging info. */
336 int remote_debug = 0;
338 /* Level of control structure. */
339 static int control_level;
341 /* Structure for arguments to user defined functions. */
342 #define MAXUSERARGS 10
345 struct user_args *next;
354 /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
358 #define STOP_SIGNAL SIGTSTP
359 static void stop_sig PARAMS ((int));
363 /* Some System V have job control but not sigsetmask(). */
364 #if !defined (HAVE_SIGSETMASK)
366 #define HAVE_SIGSETMASK 1
368 #define HAVE_SIGSETMASK 0
372 #if 0 == (HAVE_SIGSETMASK)
373 #define sigsetmask(n)
376 /* Hooks for alternate command interfaces. */
378 /* Called after most modules have been initialized, but before taking users
381 void (*init_ui_hook) PARAMS ((void));
383 /* Called instead of command_loop at top level. Can be invoked via
384 return_to_top_level. */
386 void (*command_loop_hook) PARAMS ((void));
389 /* Called instead of fputs for all output. */
391 void (*fputs_unfiltered_hook) PARAMS ((const char *linebuffer, FILE *stream));
393 /* Called when the target says something to the host, which may
394 want to appear in a different window. */
396 void (*target_output_hook) PARAMS ((char *));
398 /* Called from print_frame_info to list the line we stopped in. */
400 void (*print_frame_info_listing_hook) PARAMS ((struct symtab *s, int line,
401 int stopline, int noerror));
402 /* Replaces most of query. */
404 int (*query_hook) PARAMS ((const char *, va_list));
406 /* Called from gdb_flush to flush output. */
408 void (*flush_hook) PARAMS ((FILE *stream));
410 /* These three functions support getting lines of text from the user. They
411 are used in sequence. First readline_begin_hook is called with a text
412 string that might be (for example) a message for the user to type in a
413 sequence of commands to be executed at a breakpoint. If this function
414 calls back to a GUI, it might take this opportunity to pop up a text
415 interaction window with this message. Next, readline_hook is called
416 with a prompt that is emitted prior to collecting the user input.
417 It can be called multiple times. Finally, readline_end_hook is called
418 to notify the GUI that we are done with the interaction window and it
421 void (*readline_begin_hook) PARAMS ((char *, ...));
422 char * (*readline_hook) PARAMS ((char *));
423 void (*readline_end_hook) PARAMS ((void));
425 /* Called as appropriate to notify the interface of the specified breakpoint
428 void (*create_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
429 void (*delete_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
430 void (*modify_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
432 /* Called during long calculations to allow GUI to repair window damage, and to
433 check for stop buttons, etc... */
435 void (*interactive_hook) PARAMS ((void));
437 /* Called when the registers have changed, as a hint to a GUI
438 to minimize window update. */
440 void (*registers_changed_hook) PARAMS ((void));
442 /* Called when going to wait for the target. Usually allows the GUI to run
443 while waiting for target events. */
445 int (*target_wait_hook) PARAMS ((int pid, struct target_waitstatus *status));
447 /* Used by UI as a wrapper around command execution. May do various things
448 like enabling/disabling buttons, etc... */
450 void (*call_command_hook) PARAMS ((struct cmd_list_element *c, char *cmd,
454 /* Takes control from error (). Typically used to prevent longjmps out of the
455 middle of the GUI. Usually used in conjunction with a catch routine. */
457 NORETURN void (*error_hook) PARAMS ((void)) ATTR_NORETURN;
460 /* Where to go for return_to_top_level (RETURN_ERROR). */
461 jmp_buf error_return;
462 /* Where to go for return_to_top_level (RETURN_QUIT). */
465 /* Return for reason REASON. This generally gets back to the command
466 loop, but can be caught via catch_errors. */
469 return_to_top_level (reason)
470 enum return_reason reason;
475 /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
476 I can think of a reason why that is vital, though). */
477 bpstat_clear_actions(stop_bpstat); /* Clear queued breakpoint commands */
479 disable_current_display ();
480 do_cleanups (ALL_CLEANUPS);
482 if (annotation_level > 1)
493 (NORETURN void) longjmp
494 (reason == RETURN_ERROR ? error_return : quit_return, 1);
497 /* Call FUNC with arg ARGS, catching any errors. If there is no
498 error, return the value returned by FUNC. If there is an error,
499 print ERRSTRING, print the specific error message, then return
502 Must not be called with immediate_quit in effect (bad things might
503 happen, say we got a signal in the middle of a memcpy to quit_return).
504 This is an OK restriction; with very few exceptions immediate_quit can
505 be replaced by judicious use of QUIT.
507 MASK specifies what to catch; it is normally set to
508 RETURN_MASK_ALL, if for no other reason than that the code which
509 calls catch_errors might not be set up to deal with a quit which
510 isn't caught. But if the code can deal with it, it generally
511 should be RETURN_MASK_ERROR, unless for some reason it is more
512 useful to abort only the portion of the operation inside the
513 catch_errors. Note that quit should return to the command line
514 fairly quickly, even if some further processing is being done. */
517 catch_errors (func, args, errstring, mask)
518 int (*func) PARAMS ((char *));
527 struct cleanup *saved_cleanup_chain;
528 char *saved_error_pre_print;
529 char *saved_quit_pre_print;
531 saved_cleanup_chain = save_cleanups ();
532 saved_error_pre_print = error_pre_print;
533 saved_quit_pre_print = quit_pre_print;
535 if (mask & RETURN_MASK_ERROR)
537 memcpy ((char *)saved_error, (char *)error_return, sizeof (jmp_buf));
538 error_pre_print = errstring;
540 if (mask & RETURN_MASK_QUIT)
542 memcpy (saved_quit, quit_return, sizeof (jmp_buf));
543 quit_pre_print = errstring;
546 if (setjmp (tmp_jmp) == 0)
548 if (mask & RETURN_MASK_ERROR)
549 memcpy (error_return, tmp_jmp, sizeof (jmp_buf));
550 if (mask & RETURN_MASK_QUIT)
551 memcpy (quit_return, tmp_jmp, sizeof (jmp_buf));
552 val = (*func) (args);
557 restore_cleanups (saved_cleanup_chain);
559 if (mask & RETURN_MASK_ERROR)
561 memcpy (error_return, saved_error, sizeof (jmp_buf));
562 error_pre_print = saved_error_pre_print;
564 if (mask & RETURN_MASK_QUIT)
566 memcpy (quit_return, saved_quit, sizeof (jmp_buf));
567 quit_pre_print = saved_quit_pre_print;
572 /* Handler for SIGHUP. */
578 catch_errors (quit_cover, NULL,
579 "Could not kill the program being debugged", RETURN_MASK_ALL);
580 signal (SIGHUP, SIG_DFL);
581 kill (getpid (), SIGHUP);
584 /* Just a little helper function for disconnect(). */
590 caution = 0; /* Throw caution to the wind -- we're exiting.
591 This prevents asking the user dumb questions. */
592 quit_command((char *)0, 0);
596 /* Line number we are currently in in a file which is being sourced. */
597 static int source_line_number;
599 /* Name of the file we are sourcing. */
600 static char *source_file_name;
602 /* Buffer containing the error_pre_print used by the source stuff.
604 static char *source_error;
605 static int source_error_allocated;
607 /* Something to glom on to the start of error_pre_print if source_file_name
609 static char *source_pre_error;
611 /* Clean up on error during a "source" command (or execution of a
612 user-defined command). */
615 source_cleanup (stream)
618 /* Restore the previous input stream. */
622 /* Read commands from STREAM. */
624 read_command_file (stream)
627 struct cleanup *cleanups;
629 cleanups = make_cleanup (source_cleanup, instream);
632 do_cleanups (cleanups);
635 extern void init_proc PARAMS ((void));
637 void (*pre_init_ui_hook) PARAMS ((void));
642 if (pre_init_ui_hook)
645 /* Run the init function of each source file */
647 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
648 current_directory = gdb_dirbuf;
650 init_cmd_lists (); /* This needs to be done first */
651 initialize_targets (); /* Setup target_terminal macros for utils.c */
652 initialize_utils (); /* Make errors and warnings possible */
653 initialize_all_files ();
654 init_main (); /* But that omits this file! Do it now */
659 /* We need a default language for parsing expressions, so simple things like
660 "set width 0" won't fail if no language is explicitly set in a config file
661 or implicitly set by reading an executable during startup. */
662 set_language (language_c);
663 expected_language = current_language; /* don't warn about the change. */
669 /* Allocate, initialize a new command line structure for one of the
670 control commands (if/while). */
672 static struct command_line *
673 build_command_line (type, args)
674 enum command_control_type type;
677 struct command_line *cmd;
680 error ("if/while commands require arguments.\n");
682 cmd = (struct command_line *)xmalloc (sizeof (struct command_line));
684 cmd->control_type = type;
688 = (struct command_line **)xmalloc (sizeof (struct command_line *)
690 memset (cmd->body_list, 0, sizeof (struct command_line *) * cmd->body_count);
691 cmd->line = savestring (args, strlen (args));
695 /* Build and return a new command structure for the control commands
696 such as "if" and "while". */
698 static struct command_line *
699 get_command_line (type, arg)
700 enum command_control_type type;
703 struct command_line *cmd;
704 struct cleanup *old_chain = NULL;
706 /* Allocate and build a new command line structure. */
707 cmd = build_command_line (type, arg);
709 old_chain = make_cleanup (free_command_lines, &cmd);
711 /* Read in the body of this command. */
712 if (recurse_read_control_structure (cmd) == invalid_control)
714 warning ("error reading in control structure\n");
715 do_cleanups (old_chain);
719 discard_cleanups (old_chain);
723 /* Recursively print a command (including full control structures). */
725 print_command_line (cmd, depth)
726 struct command_line *cmd;
733 for (i = 0; i < depth; i++)
734 fputs_filtered (" ", gdb_stdout);
737 /* A simple command, print it and return. */
738 if (cmd->control_type == simple_control)
740 fputs_filtered (cmd->line, gdb_stdout);
741 fputs_filtered ("\n", gdb_stdout);
745 /* loop_continue to jump to the start of a while loop, print it
747 if (cmd->control_type == continue_control)
749 fputs_filtered ("loop_continue\n", gdb_stdout);
753 /* loop_break to break out of a while loop, print it and return. */
754 if (cmd->control_type == break_control)
756 fputs_filtered ("loop_break\n", gdb_stdout);
760 /* A while command. Recursively print its subcommands before returning. */
761 if (cmd->control_type == while_control)
763 struct command_line *list;
764 fputs_filtered ("while ", gdb_stdout);
765 fputs_filtered (cmd->line, gdb_stdout);
766 fputs_filtered ("\n", gdb_stdout);
767 list = *cmd->body_list;
770 print_command_line (list, depth + 1);
775 /* An if command. Recursively print both arms before returning. */
776 if (cmd->control_type == if_control)
778 fputs_filtered ("if ", gdb_stdout);
779 fputs_filtered (cmd->line, gdb_stdout);
780 fputs_filtered ("\n", gdb_stdout);
782 print_command_line (cmd->body_list[0], depth + 1);
784 /* Show the false arm if it exists. */
785 if (cmd->body_count == 2)
789 for (i = 0; i < depth; i++)
790 fputs_filtered (" ", gdb_stdout);
792 fputs_filtered ("else\n", gdb_stdout);
793 print_command_line (cmd->body_list[1], depth + 1);
797 for (i = 0; i < depth; i++)
798 fputs_filtered (" ", gdb_stdout);
800 fputs_filtered ("end\n", gdb_stdout);
804 /* Execute the command in CMD. */
806 enum command_control_type
807 execute_control_command (cmd)
808 struct command_line *cmd;
810 struct expression *expr;
811 struct command_line *current;
812 struct cleanup *old_chain = 0;
816 enum command_control_type ret;
819 switch (cmd->control_type)
822 /* A simple command, execute it and return. */
823 new_line = insert_args (cmd->line);
825 return invalid_control;
826 old_chain = make_cleanup (free_current_contents, &new_line);
827 execute_command (new_line, 0);
828 ret = cmd->control_type;
831 case continue_control:
833 /* Return for "continue", and "break" so we can either
834 continue the loop at the top, or break out. */
835 ret = cmd->control_type;
840 /* Parse the loop control expression for the while statement. */
841 new_line = insert_args (cmd->line);
843 return invalid_control;
844 old_chain = make_cleanup (free_current_contents, &new_line);
845 expr = parse_expression (new_line);
846 make_cleanup (free_current_contents, &expr);
848 ret = simple_control;
851 /* Keep iterating so long as the expression is true. */
858 /* Evaluate the expression. */
859 val_mark = value_mark ();
860 val = evaluate_expression (expr);
861 cond_result = value_true (val);
862 value_free_to_mark (val_mark);
864 /* If the value is false, then break out of the loop. */
868 /* Execute the body of the while statement. */
869 current = *cmd->body_list;
872 ret = execute_control_command (current);
874 /* If we got an error, or a "break" command, then stop
876 if (ret == invalid_control || ret == break_control)
882 /* If we got a "continue" command, then restart the loop
884 if (ret == continue_control)
887 /* Get the next statement. */
888 current = current->next;
892 /* Reset RET so that we don't recurse the break all the way down. */
893 if (ret == break_control)
894 ret = simple_control;
901 new_line = insert_args (cmd->line);
903 return invalid_control;
904 old_chain = make_cleanup (free_current_contents, &new_line);
905 /* Parse the conditional for the if statement. */
906 expr = parse_expression (new_line);
907 make_cleanup (free_current_contents, &expr);
910 ret = simple_control;
912 /* Evaluate the conditional. */
913 val_mark = value_mark ();
914 val = evaluate_expression (expr);
916 /* Choose which arm to take commands from based on the value of the
917 conditional expression. */
918 if (value_true (val))
919 current = *cmd->body_list;
920 else if (cmd->body_count == 2)
921 current = *(cmd->body_list + 1);
922 value_free_to_mark (val_mark);
924 /* Execute commands in the given arm. */
927 ret = execute_control_command (current);
929 /* If we got an error, get out. */
930 if (ret != simple_control)
933 /* Get the next statement in the body. */
934 current = current->next;
941 warning ("Invalid control type in command structure.");
942 return invalid_control;
946 do_cleanups (old_chain);
951 /* "while" command support. Executes a body of statements while the
952 loop condition is nonzero. */
955 while_command (arg, from_tty)
959 struct command_line *command = NULL;
962 command = get_command_line (while_control, arg);
967 execute_control_command (command);
968 free_command_lines (&command);
971 /* "if" command support. Execute either the true or false arm depending
972 on the value of the if conditional. */
975 if_command (arg, from_tty)
979 struct command_line *command = NULL;
982 command = get_command_line (if_control, arg);
987 execute_control_command (command);
988 free_command_lines (&command);
995 struct user_args *oargs = user_args;
997 fatal ("Internal error, arg_cleanup called with no user args.\n");
999 user_args = user_args->next;
1003 /* Bind the incomming arguments for a user defined command to
1004 $arg0, $arg1 ... $argMAXUSERARGS. */
1006 static struct cleanup *
1010 struct user_args *args;
1011 struct cleanup *old_chain;
1012 unsigned int arg_count = 0;
1014 args = (struct user_args *)xmalloc (sizeof (struct user_args));
1015 memset (args, 0, sizeof (struct user_args));
1017 args->next = user_args;
1020 old_chain = make_cleanup (arg_cleanup, 0);
1029 if (arg_count >= MAXUSERARGS)
1031 error ("user defined function may only have %d arguments.\n",
1036 /* Strip whitespace. */
1037 while (*p == ' ' || *p == '\t')
1040 /* P now points to an argument. */
1042 user_args->a[arg_count].arg = p;
1044 /* Get to the end of this argument. */
1045 while (*p && *p != ' ' && *p != '\t')
1048 user_args->a[arg_count].len = p - start_arg;
1055 /* Given character string P, return a point to the first argument ($arg),
1056 or NULL if P contains no arguments. */
1062 while ((p = strchr (p, '$')))
1064 if (strncmp (p, "$arg", 4) == 0 && isdigit (p[4]))
1071 /* Insert the user defined arguments stored in user_arg into the $arg
1072 arguments found in line, with the updated copy being placed into nline. */
1078 char *p, *save_line, *new_line;
1081 /* First we need to know how much memory to allocate for the new line. */
1084 while ((p = locate_arg (line)))
1089 if (i >= user_args->count)
1091 error ("Missing argument %d in user function.\n", i);
1094 len += user_args->a[i].len;
1098 /* Don't forget the tail. */
1099 len += strlen (line);
1101 /* Allocate space for the new line and fill it in. */
1102 new_line = (char *)xmalloc (len + 1);
1103 if (new_line == NULL)
1106 /* Restore pointer to beginning of old line. */
1109 /* Save pointer to beginning of new line. */
1110 save_line = new_line;
1112 while ((p = locate_arg (line)))
1116 memcpy (new_line, line, p - line);
1117 new_line += p - line;
1120 len = user_args->a[i].len;
1123 memcpy (new_line, user_args->a[i].arg, len);
1128 /* Don't forget the tail. */
1129 strcpy (new_line, line);
1131 /* Return a pointer to the beginning of the new line. */
1136 execute_user_command (c, args)
1137 struct cmd_list_element *c;
1140 register struct command_line *cmdlines;
1141 struct cleanup *old_chain;
1142 enum command_control_type ret;
1144 old_chain = setup_user_args (args);
1146 cmdlines = c->user_commands;
1151 /* Set the instream to 0, indicating execution of a
1152 user-defined function. */
1153 old_chain = make_cleanup (source_cleanup, instream);
1154 instream = (FILE *) 0;
1157 ret = execute_control_command (cmdlines);
1158 if (ret != simple_control && ret != break_control)
1160 warning ("Error in control structure.\n");
1163 cmdlines = cmdlines->next;
1165 do_cleanups (old_chain);
1168 /* Execute the line P as a command.
1169 Pass FROM_TTY as second argument to the defining function. */
1172 execute_command (p, from_tty)
1176 register struct cmd_list_element *c;
1177 register enum language flang;
1178 static int warned = 0;
1179 /* FIXME: These should really be in an appropriate header file */
1180 extern void serial_log_command PARAMS ((const char *));
1184 /* This can happen when command_line_input hits end of file. */
1188 serial_log_command (p);
1190 while (*p == ' ' || *p == '\t') p++;
1195 c = lookup_cmd (&p, cmdlist, "", 0, 1);
1196 /* Pass null arg rather than an empty one. */
1199 /* Clear off trailing whitespace, except for set and complete command. */
1200 if (arg && c->type != set_cmd && c->function.cfunc != complete_command)
1202 p = arg + strlen (arg) - 1;
1203 while (p >= arg && (*p == ' ' || *p == '\t'))
1208 /* If this command has been hooked, run the hook first. */
1210 execute_user_command (c->hook, (char *)0);
1212 if (c->class == class_user)
1213 execute_user_command (c, arg);
1214 else if (c->type == set_cmd || c->type == show_cmd)
1215 do_setshow_command (arg, from_tty & caution, c);
1216 else if (c->function.cfunc == NO_FUNCTION)
1217 error ("That is not a command, just a help topic.");
1218 else if (call_command_hook)
1219 call_command_hook (c, arg, from_tty & caution);
1221 (*c->function.cfunc) (arg, from_tty & caution);
1224 /* Tell the user if the language has changed (except first time). */
1225 if (current_language != expected_language)
1227 if (language_mode == language_mode_auto) {
1228 language_info (1); /* Print what changed. */
1233 /* Warn the user if the working language does not match the
1234 language of the current frame. Only warn the user if we are
1235 actually running the program, i.e. there is a stack. */
1236 /* FIXME: This should be cacheing the frame and only running when
1237 the frame changes. */
1239 if (target_has_stack)
1241 flang = get_frame_language ();
1243 && flang != language_unknown
1244 && flang != current_language->la_language)
1246 printf_filtered ("%s\n", lang_frame_mismatch_warn);
1254 command_loop_marker (foo)
1259 /* Read commands from `instream' and execute them
1260 until end of file or error reading instream. */
1265 struct cleanup *old_chain;
1267 int stdin_is_tty = ISATTY (stdin);
1268 long time_at_cmd_start;
1270 long space_at_cmd_start;
1272 extern int display_time;
1273 extern int display_space;
1275 while (instream && !feof (instream))
1277 if (window_hook && instream == stdin)
1278 (*window_hook) (instream, prompt);
1281 if (instream == stdin && stdin_is_tty)
1282 reinitialize_more_filter ();
1283 old_chain = make_cleanup (command_loop_marker, 0);
1284 command = command_line_input (instream == stdin ? prompt : (char *) NULL,
1285 instream == stdin, "prompt");
1289 time_at_cmd_start = get_run_time ();
1294 extern char **environ;
1295 char *lim = (char *) sbrk (0);
1297 space_at_cmd_start = (long) (lim - (char *) &environ);
1301 execute_command (command, instream == stdin);
1302 /* Do any commands attached to breakpoint we stopped at. */
1303 bpstat_do_actions (&stop_bpstat);
1304 do_cleanups (old_chain);
1308 long cmd_time = get_run_time () - time_at_cmd_start;
1310 printf_unfiltered ("Command execution time: %ld.%06ld\n",
1311 cmd_time / 1000000, cmd_time % 1000000);
1317 extern char **environ;
1318 char *lim = (char *) sbrk (0);
1319 long space_now = lim - (char *) &environ;
1320 long space_diff = space_now - space_at_cmd_start;
1322 printf_unfiltered ("Space used: %ld (%c%ld for this command)\n",
1324 (space_diff >= 0 ? '+' : '-'),
1331 /* Commands call this if they do not want to be repeated by null lines. */
1339 /* If we aren't reading from standard input, we are saving the last
1340 thing read from stdin in line and don't want to delete it. Null lines
1341 won't repeat here in any case. */
1342 if (instream == stdin)
1346 /* Read a line from the stream "instream" without command line editing.
1348 It prints PRROMPT once at the start.
1349 Action is compatible with "readline", e.g. space for the result is
1350 malloc'd and should be freed by the caller.
1352 A NULL return means end of file. */
1354 gdb_readline (prrompt)
1359 int input_index = 0;
1360 int result_size = 80;
1364 /* Don't use a _filtered function here. It causes the assumed
1365 character position to be off, since the newline we read from
1366 the user is not accounted for. */
1367 fputs_unfiltered (prrompt, gdb_stdout);
1369 /* Move to a new line so the entered line doesn't have a prompt
1370 on the front of it. */
1371 fputs_unfiltered ("\n", gdb_stdout);
1373 gdb_flush (gdb_stdout);
1376 result = (char *) xmalloc (result_size);
1380 /* Read from stdin if we are executing a user defined command.
1381 This is the right thing for prompt_for_continue, at least. */
1382 c = fgetc (instream ? instream : stdin);
1386 if (input_index > 0)
1387 /* The last line does not end with a newline. Return it, and
1388 if we are called again fgetc will still return EOF and
1389 we'll return NULL then. */
1398 result[input_index++] = c;
1399 while (input_index >= result_size)
1402 result = (char *) xrealloc (result, result_size);
1406 result[input_index++] = '\0';
1410 /* Variables which control command line editing and history
1411 substitution. These variables are given default values at the end
1413 static int command_editing_p;
1414 static int history_expansion_p;
1415 static int write_history_p;
1416 static int history_size;
1417 static char *history_filename;
1419 /* readline uses the word breaks for two things:
1420 (1) In figuring out where to point the TEXT parameter to the
1421 rl_completion_entry_function. Since we don't use TEXT for much,
1422 it doesn't matter a lot what the word breaks are for this purpose, but
1423 it does affect how much stuff M-? lists.
1424 (2) If one of the matches contains a word break character, readline
1425 will quote it. That's why we switch between
1426 gdb_completer_word_break_characters and
1427 gdb_completer_command_word_break_characters. I'm not sure when
1428 we need this behavior (perhaps for funky characters in C++ symbols?). */
1430 /* Variables which are necessary for fancy command line editing. */
1431 char *gdb_completer_word_break_characters =
1432 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
1434 /* When completing on command names, we remove '-' from the list of
1435 word break characters, since we use it in command names. If the
1436 readline library sees one in any of the current completion strings,
1437 it thinks that the string needs to be quoted and automatically supplies
1439 char *gdb_completer_command_word_break_characters =
1440 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,";
1442 /* Characters that can be used to quote completion strings. Note that we
1443 can't include '"' because the gdb C parser treats such quoted sequences
1445 char *gdb_completer_quote_characters =
1448 /* Functions that are used as part of the fancy command line editing. */
1450 /* This can be used for functions which don't want to complete on symbols
1451 but don't want to complete on anything else either. */
1454 noop_completer (text, prefix)
1461 /* Complete on filenames. */
1463 filename_completer (text, word)
1467 /* From readline. */
1468 extern char *filename_completion_function PARAMS ((char *, int));
1469 int subsequent_name;
1471 int return_val_used;
1472 int return_val_alloced;
1474 return_val_used = 0;
1475 /* Small for testing. */
1476 return_val_alloced = 1;
1477 return_val = (char **) xmalloc (return_val_alloced * sizeof (char *));
1479 subsequent_name = 0;
1483 p = filename_completion_function (text, subsequent_name);
1484 if (return_val_used >= return_val_alloced)
1486 return_val_alloced *= 2;
1488 (char **) xrealloc (return_val,
1489 return_val_alloced * sizeof (char *));
1493 return_val[return_val_used++] = p;
1496 /* Like emacs, don't complete on old versions. Especially useful
1497 in the "source" command. */
1498 if (p[strlen (p) - 1] == '~')
1504 /* Return exactly p. */
1505 return_val[return_val_used++] = p;
1506 else if (word > text)
1508 /* Return some portion of p. */
1509 q = xmalloc (strlen (p) + 5);
1510 strcpy (q, p + (word - text));
1511 return_val[return_val_used++] = q;
1516 /* Return some of TEXT plus p. */
1517 q = xmalloc (strlen (p) + (text - word) + 5);
1518 strncpy (q, word, text - word);
1519 q[text - word] = '\0';
1521 return_val[return_val_used++] = q;
1525 subsequent_name = 1;
1528 /* There is no way to do this just long enough to affect quote inserting
1529 without also affecting the next completion. This should be fixed in
1531 /* Insure that readline does the right thing
1532 with respect to inserting quotes. */
1533 rl_completer_word_break_characters = "";
1538 /* Here are some useful test cases for completion. FIXME: These should
1539 be put in the test suite. They should be tested with both M-? and TAB.
1541 "show output-" "radix"
1542 "show output" "-radix"
1543 "p" ambiguous (commands starting with p--path, print, printf, etc.)
1544 "p " ambiguous (all symbols)
1545 "info t foo" no completions
1546 "info t " no completions
1547 "info t" ambiguous ("info target", "info terminal", etc.)
1548 "info ajksdlfk" no completions
1549 "info ajksdlfk " no completions
1551 "info " ambiguous (all info commands)
1552 "p \"a" no completions (string constant)
1553 "p 'a" ambiguous (all symbols starting with a)
1554 "p b-a" ambiguous (all symbols starting with a)
1555 "p b-" ambiguous (all symbols)
1556 "file Make" "file" (word break hard to screw up here)
1557 "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
1560 /* Generate completions one by one for the completer. Each time we are
1561 called return another potential completion to the caller.
1562 line_completion just completes on commands or passes the buck to the
1563 command's completer function, the stuff specific to symbol completion
1564 is in make_symbol_completion_list.
1566 TEXT is the caller's idea of the "word" we are looking at.
1568 MATCHES is the number of matches that have currently been collected from
1569 calling this completion function. When zero, then we need to initialize,
1570 otherwise the initialization has already taken place and we can just
1571 return the next potential completion string.
1573 LINE_BUFFER is available to be looked at; it contains the entire text
1574 of the line. POINT is the offset in that line of the cursor. You
1575 should pretend that the line ends at POINT.
1577 Returns NULL if there are no more completions, else a pointer to a string
1578 which is a possible completion, it is the caller's responsibility to
1582 line_completion_function (text, matches, line_buffer, point)
1588 static char **list = (char **)NULL; /* Cache of completions */
1589 static int index; /* Next cached completion */
1590 char *output = NULL;
1591 char *tmp_command, *p;
1592 /* Pointer within tmp_command which corresponds to text. */
1594 struct cmd_list_element *c, *result_list;
1598 /* The caller is beginning to accumulate a new set of completions, so
1599 we need to find all of them now, and cache them for returning one at
1600 a time on future calls. */
1604 /* Free the storage used by LIST, but not by the strings inside.
1605 This is because rl_complete_internal () frees the strings. */
1611 /* Choose the default set of word break characters to break completions.
1612 If we later find out that we are doing completions on command strings
1613 (as opposed to strings supplied by the individual command completer
1614 functions, which can be any string) then we will switch to the
1615 special word break set for command strings, which leaves out the
1616 '-' character used in some commands. */
1618 rl_completer_word_break_characters =
1619 gdb_completer_word_break_characters;
1621 /* Decide whether to complete on a list of gdb commands or on symbols. */
1622 tmp_command = (char *) alloca (point + 1);
1625 strncpy (tmp_command, line_buffer, point);
1626 tmp_command[point] = '\0';
1627 /* Since text always contains some number of characters leading up
1628 to point, we can find the equivalent position in tmp_command
1629 by subtracting that many characters from the end of tmp_command. */
1630 word = tmp_command + point - strlen (text);
1634 /* An empty line we want to consider ambiguous; that is, it
1635 could be any command. */
1636 c = (struct cmd_list_element *) -1;
1641 c = lookup_cmd_1 (&p, cmdlist, &result_list, 1);
1644 /* Move p up to the next interesting thing. */
1645 while (*p == ' ' || *p == '\t')
1652 /* It is an unrecognized command. So there are no
1653 possible completions. */
1656 else if (c == (struct cmd_list_element *) -1)
1660 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
1661 doesn't advance over that thing itself. Do so now. */
1663 while (*q && (isalnum (*q) || *q == '-' || *q == '_'))
1665 if (q != tmp_command + point)
1667 /* There is something beyond the ambiguous
1668 command, so there are no possible completions. For
1669 example, "info t " or "info t foo" does not complete
1670 to anything, because "info t" can be "info target" or
1676 /* We're trying to complete on the command which was ambiguous.
1677 This we can deal with. */
1680 list = complete_on_cmdlist (*result_list->prefixlist, p,
1685 list = complete_on_cmdlist (cmdlist, p, word);
1687 /* Insure that readline does the right thing with respect to
1688 inserting quotes. */
1689 rl_completer_word_break_characters =
1690 gdb_completer_command_word_break_characters;
1695 /* We've recognized a full command. */
1697 if (p == tmp_command + point)
1699 /* There is no non-whitespace in the line beyond the command. */
1701 if (p[-1] == ' ' || p[-1] == '\t')
1703 /* The command is followed by whitespace; we need to complete
1704 on whatever comes after command. */
1707 /* It is a prefix command; what comes after it is
1708 a subcommand (e.g. "info "). */
1709 list = complete_on_cmdlist (*c->prefixlist, p, word);
1711 /* Insure that readline does the right thing
1712 with respect to inserting quotes. */
1713 rl_completer_word_break_characters =
1714 gdb_completer_command_word_break_characters;
1718 list = complete_on_enum (c->enums, p, word);
1719 rl_completer_word_break_characters =
1720 gdb_completer_command_word_break_characters;
1724 /* It is a normal command; what comes after it is
1725 completed by the command's completer function. */
1726 list = (*c->completer) (p, word);
1731 /* The command is not followed by whitespace; we need to
1732 complete on the command itself. e.g. "p" which is a
1733 command itself but also can complete to "print", "ptype"
1737 /* Find the command we are completing on. */
1739 while (q > tmp_command)
1741 if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_')
1747 list = complete_on_cmdlist (result_list, q, word);
1749 /* Insure that readline does the right thing
1750 with respect to inserting quotes. */
1751 rl_completer_word_break_characters =
1752 gdb_completer_command_word_break_characters;
1757 /* There is non-whitespace beyond the command. */
1759 if (c->prefixlist && !c->allow_unknown)
1761 /* It is an unrecognized subcommand of a prefix command,
1762 e.g. "info adsfkdj". */
1767 list = complete_on_enum (c->enums, p, word);
1771 /* It is a normal command. */
1772 list = (*c->completer) (p, word);
1778 /* If we found a list of potential completions during initialization then
1779 dole them out one at a time. The vector of completions is NULL
1780 terminated, so after returning the last one, return NULL (and continue
1781 to do so) each time we are called after that, until a new list is
1786 output = list[index];
1794 /* Can't do this because readline hasn't yet checked the word breaks
1795 for figuring out whether to insert a quote. */
1797 /* Make sure the word break characters are set back to normal for the
1798 next time that readline tries to complete something. */
1799 rl_completer_word_break_characters =
1800 gdb_completer_word_break_characters;
1806 /* Line completion interface function for readline. */
1809 readline_line_completion_function (text, matches)
1813 return line_completion_function (text, matches, rl_line_buffer, rl_point);
1816 /* Skip over a possibly quoted word (as defined by the quote characters
1817 and word break characters the completer uses). Returns pointer to the
1818 location after the "word". */
1824 char quote_char = '\0';
1827 for (scan = str; *scan != '\0'; scan++)
1829 if (quote_char != '\0')
1831 /* Ignore everything until the matching close quote char */
1832 if (*scan == quote_char)
1834 /* Found matching close quote. */
1839 else if (strchr (gdb_completer_quote_characters, *scan))
1841 /* Found start of a quoted string. */
1844 else if (strchr (gdb_completer_word_break_characters, *scan))
1858 #if STOP_SIGNAL == SIGTSTP
1859 signal (SIGTSTP, SIG_DFL);
1861 kill (getpid (), SIGTSTP);
1862 signal (SIGTSTP, stop_sig);
1864 signal (STOP_SIGNAL, stop_sig);
1866 printf_unfiltered ("%s", prompt);
1867 gdb_flush (gdb_stdout);
1869 /* Forget about any previous command -- null line now will do nothing. */
1872 #endif /* STOP_SIGNAL */
1874 /* Initialize signal handlers. */
1884 signal (SIGINT, request_quit);
1886 /* If SIGTRAP was set to SIG_IGN, then the SIG_IGN will get passed
1887 to the inferior and breakpoints will be ignored. */
1889 signal (SIGTRAP, SIG_DFL);
1892 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
1893 passed to the inferior, which we don't want. It would be
1894 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
1895 on BSD4.3 systems using vfork, that can affect the
1896 GDB process as well as the inferior (the signal handling tables
1897 might be in memory, shared between the two). Since we establish
1898 a handler for SIGQUIT, when we call exec it will set the signal
1899 to SIG_DFL for us. */
1900 signal (SIGQUIT, do_nothing);
1901 if (signal (SIGHUP, do_nothing) != SIG_IGN)
1902 signal (SIGHUP, disconnect);
1903 signal (SIGFPE, float_handler);
1905 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1906 signal (SIGWINCH, SIGWINCH_HANDLER);
1910 /* Read one line from the command input stream `instream'
1911 into the local static buffer `linebuffer' (whose current length
1913 The buffer is made bigger as necessary.
1914 Returns the address of the start of the line.
1916 NULL is returned for end of file.
1918 *If* the instream == stdin & stdin is a terminal, the line read
1919 is copied into the file line saver (global var char *line,
1920 length linesize) so that it can be duplicated.
1922 This routine either uses fancy command line editing or
1923 simple input as the user has requested. */
1926 command_line_input (prrompt, repeat, annotation_suffix)
1929 char *annotation_suffix;
1931 static char *linebuffer = 0;
1932 static unsigned linelength = 0;
1936 char *local_prompt = prrompt;
1940 /* The annotation suffix must be non-NULL. */
1941 if (annotation_suffix == NULL)
1942 annotation_suffix = "";
1944 if (annotation_level > 1 && instream == stdin)
1946 local_prompt = alloca ((prrompt == NULL ? 0 : strlen (prrompt))
1947 + strlen (annotation_suffix) + 40);
1948 if (prrompt == NULL)
1949 local_prompt[0] = '\0';
1951 strcpy (local_prompt, prrompt);
1952 strcat (local_prompt, "\n\032\032");
1953 strcat (local_prompt, annotation_suffix);
1954 strcat (local_prompt, "\n");
1957 if (linebuffer == 0)
1960 linebuffer = (char *) xmalloc (linelength);
1965 /* Control-C quits instantly if typed while in this loop
1966 since it should not wait until the user types a newline. */
1970 signal (STOP_SIGNAL, stop_sig);
1975 /* Make sure that all output has been output. Some machines may let
1976 you get away with leaving out some of the gdb_flush, but not all. */
1978 gdb_flush (gdb_stdout);
1979 gdb_flush (gdb_stderr);
1981 if (source_file_name != NULL)
1983 ++source_line_number;
1984 sprintf (source_error,
1985 "%s%s:%d: Error in sourced command file:\n",
1988 source_line_number);
1989 error_pre_print = source_error;
1992 if (annotation_level > 1 && instream == stdin)
1994 printf_unfiltered ("\n\032\032pre-");
1995 printf_unfiltered (annotation_suffix);
1996 printf_unfiltered ("\n");
1999 /* Don't use fancy stuff if not talking to stdin. */
2000 if (readline_hook && instream == NULL)
2002 rl = (*readline_hook) (local_prompt);
2004 else if (command_editing_p && instream == stdin && ISATTY (instream))
2006 rl = readline (local_prompt);
2010 rl = gdb_readline (local_prompt);
2013 if (annotation_level > 1 && instream == stdin)
2015 printf_unfiltered ("\n\032\032post-");
2016 printf_unfiltered (annotation_suffix);
2017 printf_unfiltered ("\n");
2020 if (!rl || rl == (char *) EOF)
2025 if (strlen(rl) + 1 + (p - linebuffer) > linelength)
2027 linelength = strlen(rl) + 1 + (p - linebuffer);
2028 nline = (char *) xrealloc (linebuffer, linelength);
2029 p += nline - linebuffer;
2033 /* Copy line. Don't copy null at end. (Leaves line alone
2034 if this was just a newline) */
2038 free (rl); /* Allocated in readline. */
2040 if (p == linebuffer || *(p - 1) != '\\')
2043 p--; /* Put on top of '\'. */
2044 local_prompt = (char *) 0;
2049 signal (STOP_SIGNAL, SIG_DFL);
2056 #define SERVER_COMMAND_LENGTH 7
2058 (p - linebuffer > SERVER_COMMAND_LENGTH)
2059 && STREQN (linebuffer, "server ", SERVER_COMMAND_LENGTH);
2062 /* Note that we don't set `line'. Between this and the check in
2063 dont_repeat, this insures that repeating will still do the
2066 return linebuffer + SERVER_COMMAND_LENGTH;
2069 /* Do history expansion if that is wished. */
2070 if (history_expansion_p && instream == stdin
2071 && ISATTY (instream))
2073 char *history_value;
2076 *p = '\0'; /* Insert null now. */
2077 expanded = history_expand (linebuffer, &history_value);
2080 /* Print the changes. */
2081 printf_unfiltered ("%s\n", history_value);
2083 /* If there was an error, call this function again. */
2086 free (history_value);
2087 return command_line_input (prrompt, repeat, annotation_suffix);
2089 if (strlen (history_value) > linelength)
2091 linelength = strlen (history_value) + 1;
2092 linebuffer = (char *) xrealloc (linebuffer, linelength);
2094 strcpy (linebuffer, history_value);
2095 p = linebuffer + strlen(linebuffer);
2096 free (history_value);
2100 /* If we just got an empty line, and that is supposed
2101 to repeat the previous command, return the value in the
2103 if (repeat && p == linebuffer)
2105 for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++) ;
2111 /* Add line to history if appropriate. */
2112 if (instream == stdin
2113 && ISATTY (stdin) && *linebuffer)
2114 add_history (linebuffer);
2116 /* Note: lines consisting solely of comments are added to the command
2117 history. This is useful when you type a command, and then
2118 realize you don't want to execute it quite yet. You can comment
2119 out the command and then later fetch it from the value history
2120 and remove the '#'. The kill ring is probably better, but some
2121 people are in the habit of commenting things out. */
2123 *p1 = '\0'; /* Found a comment. */
2125 /* Save into global buffer if appropriate. */
2128 if (linelength > linesize)
2130 line = xrealloc (line, linelength);
2131 linesize = linelength;
2133 strcpy (line, linebuffer);
2141 /* Expand the body_list of COMMAND so that it can hold NEW_LENGTH
2142 code bodies. This is typically used when we encounter an "else"
2143 clause for an "if" command. */
2146 realloc_body_list (command, new_length)
2147 struct command_line *command;
2151 struct command_line **body_list;
2153 n = command->body_count;
2155 /* Nothing to do? */
2156 if (new_length <= n)
2159 body_list = (struct command_line **)
2160 xmalloc (sizeof (struct command_line *) * new_length);
2162 memcpy (body_list, command->body_list, sizeof (struct command_line *) * n);
2164 free (command->body_list);
2165 command->body_list = body_list;
2166 command->body_count = new_length;
2169 /* Read one line from the input stream. If the command is an "else" or
2170 "end", return such an indication to the caller. */
2172 static enum misc_command_type
2173 read_next_line (command)
2174 struct command_line **command;
2176 char *p, *p1, *prompt_ptr, control_prompt[256];
2179 if (control_level >= 254)
2180 error ("Control nesting too deep!\n");
2182 /* Set a prompt based on the nesting of the control commands. */
2183 if (instream == stdin || (instream == 0 && readline_hook != NULL))
2185 for (i = 0; i < control_level; i++)
2186 control_prompt[i] = ' ';
2187 control_prompt[i] = '>';
2188 control_prompt[i+1] = '\0';
2189 prompt_ptr = (char *)&control_prompt[0];
2194 p = command_line_input (prompt_ptr, instream == stdin, "commands");
2196 /* Not sure what to do here. */
2200 /* Strip leading and trailing whitespace. */
2201 while (*p == ' ' || *p == '\t')
2204 p1 = p + strlen (p);
2205 while (p1 != p && (p1[-1] == ' ' || p1[-1] == '\t'))
2208 /* Blanks and comments don't really do anything, but we need to
2209 distinguish them from else, end and other commands which can be
2211 if (p1 == p || p[0] == '#')
2214 /* Is this the end of a simple, while, or if control structure? */
2215 if (p1 - p == 3 && !strncmp (p, "end", 3))
2218 /* Is the else clause of an if control structure? */
2219 if (p1 - p == 4 && !strncmp (p, "else", 4))
2220 return else_command;
2222 /* Check for while, if, break, continue, etc and build a new command
2223 line structure for them. */
2224 if (p1 - p > 5 && !strncmp (p, "while", 5))
2225 *command = build_command_line (while_control, p + 6);
2226 else if (p1 - p > 2 && !strncmp (p, "if", 2))
2227 *command = build_command_line (if_control, p + 3);
2228 else if (p1 - p == 10 && !strncmp (p, "loop_break", 10))
2230 *command = (struct command_line *)
2231 xmalloc (sizeof (struct command_line));
2232 (*command)->next = NULL;
2233 (*command)->line = NULL;
2234 (*command)->control_type = break_control;
2235 (*command)->body_count = 0;
2236 (*command)->body_list = NULL;
2238 else if (p1 - p == 13 && !strncmp (p, "loop_continue", 13))
2240 *command = (struct command_line *)
2241 xmalloc (sizeof (struct command_line));
2242 (*command)->next = NULL;
2243 (*command)->line = NULL;
2244 (*command)->control_type = continue_control;
2245 (*command)->body_count = 0;
2246 (*command)->body_list = NULL;
2250 /* A normal command. */
2251 *command = (struct command_line *)
2252 xmalloc (sizeof (struct command_line));
2253 (*command)->next = NULL;
2254 (*command)->line = savestring (p, p1 - p);
2255 (*command)->control_type = simple_control;
2256 (*command)->body_count = 0;
2257 (*command)->body_list = NULL;
2260 /* Nothing special. */
2264 /* Recursively read in the control structures and create a command_line
2265 structure from them.
2267 The parent_control parameter is the control structure in which the
2268 following commands are nested. */
2270 static enum command_control_type
2271 recurse_read_control_structure (current_cmd)
2272 struct command_line *current_cmd;
2274 int current_body, i;
2275 enum misc_command_type val;
2276 enum command_control_type ret;
2277 struct command_line **body_ptr, *child_tail, *next;
2282 /* Sanity checks. */
2283 if (current_cmd->control_type == simple_control)
2285 error ("Recursed on a simple control type\n");
2286 return invalid_control;
2289 if (current_body > current_cmd->body_count)
2291 error ("Allocated body is smaller than this command type needs\n");
2292 return invalid_control;
2295 /* Read lines from the input stream and build control structures. */
2301 val = read_next_line (&next);
2303 /* Just skip blanks and comments. */
2304 if (val == nop_command)
2307 if (val == end_command)
2309 if (current_cmd->control_type == while_control
2310 || current_cmd->control_type == if_control)
2312 /* Success reading an entire control structure. */
2313 ret = simple_control;
2318 ret = invalid_control;
2323 /* Not the end of a control structure. */
2324 if (val == else_command)
2326 if (current_cmd->control_type == if_control
2327 && current_body == 1)
2329 realloc_body_list (current_cmd, 2);
2336 ret = invalid_control;
2343 child_tail->next = next;
2347 body_ptr = current_cmd->body_list;
2348 for (i = 1; i < current_body; i++)
2357 /* If the latest line is another control structure, then recurse
2359 if (next->control_type == while_control
2360 || next->control_type == if_control)
2363 ret = recurse_read_control_structure (next);
2366 if (ret != simple_control)
2376 /* Read lines from the input stream and accumulate them in a chain of
2377 struct command_line's, which is then returned. For input from a
2378 terminal, the special command "end" is used to mark the end of the
2379 input, and is not included in the returned chain of commands. */
2381 #define END_MESSAGE "End with a line saying just \"end\"."
2383 struct command_line *
2384 read_command_lines (prompt, from_tty)
2388 struct command_line *head, *tail, *next;
2389 struct cleanup *old_chain;
2390 enum command_control_type ret;
2391 enum misc_command_type val;
2393 if (readline_begin_hook)
2395 /* Note - intentional to merge messages with no newline */
2396 (*readline_begin_hook) ("%s %s\n", prompt, END_MESSAGE);
2398 else if (from_tty && input_from_terminal_p ())
2400 printf_unfiltered ("%s\n%s\n", prompt, END_MESSAGE);
2401 gdb_flush (gdb_stdout);
2409 val = read_next_line (&next);
2411 /* Ignore blank lines or comments. */
2412 if (val == nop_command)
2415 if (val == end_command)
2417 ret = simple_control;
2421 if (val != ok_command)
2423 ret = invalid_control;
2427 if (next->control_type == while_control
2428 || next->control_type == if_control)
2431 ret = recurse_read_control_structure (next);
2434 if (ret == invalid_control)
2445 old_chain = make_cleanup (free_command_lines, &head);
2454 if (ret != invalid_control)
2456 discard_cleanups (old_chain);
2459 do_cleanups (old_chain);
2462 if (readline_end_hook)
2464 (*readline_end_hook) ();
2469 /* Free a chain of struct command_line's. */
2472 free_command_lines (lptr)
2473 struct command_line **lptr;
2475 register struct command_line *l = *lptr;
2476 register struct command_line *next;
2477 struct command_line **blist;
2482 if (l->body_count > 0)
2484 blist = l->body_list;
2485 for (i = 0; i < l->body_count; i++, blist++)
2486 free_command_lines (blist);
2495 /* Add an element to the list of info subcommands. */
2498 add_info (name, fun, doc)
2500 void (*fun) PARAMS ((char *, int));
2503 add_cmd (name, no_class, fun, doc, &infolist);
2506 /* Add an alias to the list of info subcommands. */
2509 add_info_alias (name, oldname, abbrev_flag)
2514 add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
2517 /* The "info" command is defined as a prefix, with allow_unknown = 0.
2518 Therefore, its own definition is called only for "info" with no args. */
2522 info_command (arg, from_tty)
2526 printf_unfiltered ("\"info\" must be followed by the name of an info command.\n");
2527 help_list (infolist, "info ", -1, gdb_stdout);
2530 /* The "complete" command is used by Emacs to implement completion. */
2534 complete_command (arg, from_tty)
2546 argpoint = strlen (arg);
2548 for (completion = line_completion_function (arg, i = 0, arg, argpoint);
2550 completion = line_completion_function (arg, ++i, arg, argpoint))
2552 printf_unfiltered ("%s\n", completion);
2557 /* The "show" command with no arguments shows all the settings. */
2561 show_command (arg, from_tty)
2565 cmd_show_list (showlist, from_tty, "");
2568 /* Add an element to the list of commands. */
2571 add_com (name, class, fun, doc)
2573 enum command_class class;
2574 void (*fun) PARAMS ((char *, int));
2577 add_cmd (name, class, fun, doc, &cmdlist);
2580 /* Add an alias or abbreviation command to the list of commands. */
2583 add_com_alias (name, oldname, class, abbrev_flag)
2586 enum command_class class;
2589 add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
2596 error ("Argument required (%s).", why);
2601 help_command (command, from_tty)
2603 int from_tty; /* Ignored */
2605 help_cmd (command, gdb_stdout);
2609 validate_comname (comname)
2615 error_no_arg ("name of command to define");
2620 if (!isalnum(*p) && *p != '-' && *p != '_')
2621 error ("Junk in argument list: \"%s\"", p);
2626 /* This is just a placeholder in the command data structures. */
2628 user_defined_command (ignore, from_tty)
2635 define_command (comname, from_tty)
2639 register struct command_line *cmds;
2640 register struct cmd_list_element *c, *newc, *hookc = 0;
2641 char *tem = comname;
2643 #define HOOK_STRING "hook-"
2646 validate_comname (comname);
2648 /* Look it up, and verify that we got an exact match. */
2649 c = lookup_cmd (&tem, cmdlist, "", -1, 1);
2650 if (c && !STREQ (comname, c->name))
2655 if (c->class == class_user || c->class == class_alias)
2656 tem = "Redefine command \"%s\"? ";
2658 tem = "Really redefine built-in command \"%s\"? ";
2659 if (!query (tem, c->name))
2660 error ("Command \"%s\" not redefined.", c->name);
2663 /* If this new command is a hook, then mark the command which it
2664 is hooking. Note that we allow hooking `help' commands, so that
2665 we can hook the `stop' pseudo-command. */
2667 if (!strncmp (comname, HOOK_STRING, HOOK_LEN))
2669 /* Look up cmd it hooks, and verify that we got an exact match. */
2670 tem = comname+HOOK_LEN;
2671 hookc = lookup_cmd (&tem, cmdlist, "", -1, 0);
2672 if (hookc && !STREQ (comname+HOOK_LEN, hookc->name))
2676 warning ("Your new `%s' command does not hook any existing command.",
2678 if (!query ("Proceed? "))
2679 error ("Not confirmed.");
2683 comname = savestring (comname, strlen (comname));
2685 /* If the rest of the commands will be case insensitive, this one
2686 should behave in the same manner. */
2687 for (tem = comname; *tem; tem++)
2688 if (isupper(*tem)) *tem = tolower(*tem);
2691 sprintf (tmpbuf, "Type commands for definition of \"%s\".", comname);
2692 cmds = read_command_lines (tmpbuf, from_tty);
2694 if (c && c->class == class_user)
2695 free_command_lines (&c->user_commands);
2697 newc = add_cmd (comname, class_user, user_defined_command,
2698 (c && c->class == class_user)
2699 ? c->doc : savestring ("User-defined.", 13), &cmdlist);
2700 newc->user_commands = cmds;
2702 /* If this new command is a hook, then mark both commands as being
2706 hookc->hook = newc; /* Target gets hooked. */
2707 newc->hookee = hookc; /* We are marked as hooking target cmd. */
2712 document_command (comname, from_tty)
2716 struct command_line *doclines;
2717 register struct cmd_list_element *c;
2718 char *tem = comname;
2721 validate_comname (comname);
2723 c = lookup_cmd (&tem, cmdlist, "", 0, 1);
2725 if (c->class != class_user)
2726 error ("Command \"%s\" is built-in.", comname);
2728 sprintf (tmpbuf, "Type documentation for \"%s\".", comname);
2729 doclines = read_command_lines (tmpbuf, from_tty);
2731 if (c->doc) free (c->doc);
2734 register struct command_line *cl1;
2735 register int len = 0;
2737 for (cl1 = doclines; cl1; cl1 = cl1->next)
2738 len += strlen (cl1->line) + 1;
2740 c->doc = (char *) xmalloc (len + 1);
2743 for (cl1 = doclines; cl1; cl1 = cl1->next)
2745 strcat (c->doc, cl1->line);
2747 strcat (c->doc, "\n");
2751 free_command_lines (&doclines);
2755 print_gdb_version (stream)
2758 /* From GNU coding standards, first line is meant to be easy for a
2759 program to parse, and is just canonical program name and version
2760 number, which starts after last space. */
2762 fprintf_filtered (stream, "GNU gdb %s\n", version);
2764 /* Second line is a copyright notice. */
2766 fprintf_filtered (stream, "Copyright 1996 Free Software Foundation, Inc.\n");
2768 /* Following the copyright is a brief statement that the program is
2769 free software, that users are free to copy and change it on
2770 certain conditions, that it is covered by the GNU GPL, and that
2771 there is no warranty. */
2773 fprintf_filtered (stream, "\
2774 GDB is free software, covered by the GNU General Public License, and you are\n\
2775 welcome to change it and/or distribute copies of it under certain conditions.\n\
2776 Type \"show copying\" to see the conditions.\n\
2777 There is absolutely no warranty for GDB. Type \"show warranty\" for details.\n");
2779 /* After the required info we print the configuration information. */
2781 fprintf_filtered (stream, "This GDB was configured as \"");
2782 if (!STREQ (host_name, target_name))
2784 fprintf_filtered (stream, "--host=%s --target=%s", host_name, target_name);
2788 fprintf_filtered (stream, "%s", host_name);
2790 fprintf_filtered (stream, "\".");
2795 show_version (args, from_tty)
2800 print_gdb_version (gdb_stdout);
2801 printf_filtered ("\n");
2805 /* xgdb calls this to reprint the usual GDB prompt. Obsolete now that xgdb
2811 printf_unfiltered ("%s", prompt);
2812 gdb_flush (gdb_stdout);
2816 quit_command (args, from_tty)
2822 /* An optional expression may be used to cause gdb to terminate with the
2823 value of that expression. */
2826 value_ptr val = parse_and_eval (args);
2828 exit_code = (int) value_as_long (val);
2831 if (inferior_pid != 0 && target_has_execution)
2835 if (query ("The program is running. Quit anyway (and detach it)? "))
2836 target_detach (args, from_tty);
2838 error ("Not confirmed.");
2842 if (query ("The program is running. Quit anyway (and kill it)? "))
2845 error ("Not confirmed.");
2848 /* UDI wants this, to kill the TIP. */
2851 /* Save the history information if it is appropriate to do so. */
2852 if (write_history_p && history_filename)
2853 write_history (history_filename);
2855 do_final_cleanups(ALL_CLEANUPS); /* Do any final cleanups before exiting */
2860 /* Returns whether GDB is running on a terminal and whether the user
2861 desires that questions be asked of them on that terminal. */
2864 input_from_terminal_p ()
2866 return gdb_has_a_terminal () && (instream == stdin) & caution;
2871 pwd_command (args, from_tty)
2875 if (args) error ("The \"pwd\" command does not take an argument: %s", args);
2876 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
2878 if (!STREQ (gdb_dirbuf, current_directory))
2879 printf_unfiltered ("Working directory %s\n (canonically %s).\n",
2880 current_directory, gdb_dirbuf);
2882 printf_unfiltered ("Working directory %s.\n", current_directory);
2886 cd_command (dir, from_tty)
2891 /* Found something other than leading repetitions of "/..". */
2892 int found_real_path;
2895 /* If the new directory is absolute, repeat is a no-op; if relative,
2896 repeat might be useful but is more likely to be a mistake. */
2900 error_no_arg ("new working directory");
2902 dir = tilde_expand (dir);
2903 make_cleanup (free, dir);
2905 if (chdir (dir) < 0)
2906 perror_with_name (dir);
2909 dir = savestring (dir, len - (len > 1 && SLASH_P(dir[len-1])));
2911 current_directory = dir;
2914 if (SLASH_P (current_directory[0]) && current_directory[1] == '\0')
2915 current_directory = concat (current_directory, dir, NULL);
2917 current_directory = concat (current_directory, SLASH_STRING, dir, NULL);
2921 /* Now simplify any occurrences of `.' and `..' in the pathname. */
2923 found_real_path = 0;
2924 for (p = current_directory; *p;)
2926 if (SLASH_P (p[0]) && p[1] == '.' && (p[2] == 0 || SLASH_P (p[2])))
2928 else if (SLASH_P (p[0]) && p[1] == '.' && p[2] == '.'
2929 && (p[3] == 0 || SLASH_P (p[3])))
2931 if (found_real_path)
2933 /* Search backwards for the directory just before the "/.."
2934 and obliterate it and the "/..". */
2936 while (q != current_directory && ! SLASH_P (q[-1]))
2939 if (q == current_directory)
2940 /* current_directory is
2941 a relative pathname ("can't happen"--leave it alone). */
2945 strcpy (q - 1, p + 3);
2950 /* We are dealing with leading repetitions of "/..", for example
2951 "/../..", which is the Mach super-root. */
2956 found_real_path = 1;
2961 forget_cached_source_info ();
2964 pwd_command ((char *) 0, 1);
2967 struct source_cleanup_lines_args {
2970 char *old_pre_error;
2971 char *old_error_pre_print;
2975 source_cleanup_lines (args)
2978 struct source_cleanup_lines_args *p =
2979 (struct source_cleanup_lines_args *)args;
2980 source_line_number = p->old_line;
2981 source_file_name = p->old_file;
2982 source_pre_error = p->old_pre_error;
2983 error_pre_print = p->old_error_pre_print;
2988 source_command (args, from_tty)
2993 struct cleanup *old_cleanups;
2995 struct source_cleanup_lines_args old_lines;
3000 error ("source command requires pathname of file to source.");
3003 file = tilde_expand (file);
3004 old_cleanups = make_cleanup (free, file);
3006 stream = fopen (file, FOPEN_RT);
3009 perror_with_name (file);
3013 make_cleanup (fclose, stream);
3015 old_lines.old_line = source_line_number;
3016 old_lines.old_file = source_file_name;
3017 old_lines.old_pre_error = source_pre_error;
3018 old_lines.old_error_pre_print = error_pre_print;
3019 make_cleanup (source_cleanup_lines, &old_lines);
3020 source_line_number = 0;
3021 source_file_name = file;
3022 source_pre_error = error_pre_print == NULL ? "" : error_pre_print;
3023 source_pre_error = savestring (source_pre_error, strlen (source_pre_error));
3024 make_cleanup (free, source_pre_error);
3025 /* This will get set every time we read a line. So it won't stay "" for
3027 error_pre_print = "";
3029 needed_length = strlen (source_file_name) + strlen (source_pre_error) + 80;
3030 if (source_error_allocated < needed_length)
3032 source_error_allocated *= 2;
3033 if (source_error_allocated < needed_length)
3034 source_error_allocated = needed_length;
3035 if (source_error == NULL)
3036 source_error = xmalloc (source_error_allocated);
3038 source_error = xrealloc (source_error, source_error_allocated);
3041 read_command_file (stream);
3043 do_cleanups (old_cleanups);
3048 echo_command (text, from_tty)
3056 while ((c = *p++) != '\0')
3060 /* \ at end of argument is used after spaces
3061 so they won't be lost. */
3065 c = parse_escape (&p);
3067 printf_filtered ("%c", c);
3070 printf_filtered ("%c", c);
3073 /* Force this output to appear now. */
3075 gdb_flush (gdb_stdout);
3080 dont_repeat_command (ignored, from_tty)
3084 *line = 0; /* Can't call dont_repeat here because we're not
3085 necessarily reading from stdin. */
3088 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3090 /* Functions to manipulate the endianness of the target. */
3092 #ifndef TARGET_BYTE_ORDER_DEFAULT
3093 #define TARGET_BYTE_ORDER_DEFAULT BIG_ENDIAN
3096 int target_byte_order = TARGET_BYTE_ORDER_DEFAULT;
3098 static int target_byte_order_auto = 1;
3100 /* Called if the user enters ``set endian'' without an argument. */
3102 set_endian (args, from_tty)
3106 printf_unfiltered ("\"set endian\" must be followed by \"auto\", \"big\" or \"little\".\n");
3107 show_endian (args, from_tty);
3110 /* Called by ``set endian big''. */
3112 set_endian_big (args, from_tty)
3116 target_byte_order = BIG_ENDIAN;
3117 target_byte_order_auto = 0;
3120 /* Called by ``set endian little''. */
3122 set_endian_little (args, from_tty)
3126 target_byte_order = LITTLE_ENDIAN;
3127 target_byte_order_auto = 0;
3130 /* Called by ``set endian auto''. */
3132 set_endian_auto (args, from_tty)
3136 target_byte_order_auto = 1;
3139 /* Called by ``show endian''. */
3141 show_endian (args, from_tty)
3146 (target_byte_order_auto
3147 ? "The target endianness is set automatically (currently %s endian)\n"
3148 : "The target is assumed to be %s endian\n");
3149 printf_unfiltered ((char *) msg, TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3152 #endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
3154 /* Set the endianness from a BFD. */
3156 set_endian_from_file (abfd)
3159 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3162 if (bfd_big_endian (abfd))
3165 want = LITTLE_ENDIAN;
3166 if (target_byte_order_auto)
3167 target_byte_order = want;
3168 else if (target_byte_order != want)
3169 warning ("%s endian file does not match %s endian target.",
3170 want == BIG_ENDIAN ? "big" : "little",
3171 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3173 #else /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */
3175 if (bfd_big_endian (abfd)
3176 ? TARGET_BYTE_ORDER != BIG_ENDIAN
3177 : TARGET_BYTE_ORDER == BIG_ENDIAN)
3178 warning ("%s endian file does not match %s endian target.",
3179 bfd_big_endian (abfd) ? "big" : "little",
3180 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3182 #endif /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */
3185 /* Functions to manipulate command line editing control variables. */
3187 /* Number of commands to print in each call to show_commands. */
3188 #define Hist_print 10
3190 show_commands (args, from_tty)
3194 /* Index for history commands. Relative to history_base. */
3197 /* Number of the history entry which we are planning to display next.
3198 Relative to history_base. */
3201 /* The first command in the history which doesn't exist (i.e. one more
3202 than the number of the last command). Relative to history_base. */
3205 extern HIST_ENTRY *history_get PARAMS ((int));
3207 /* Print out some of the commands from the command history. */
3208 /* First determine the length of the history list. */
3209 hist_len = history_size;
3210 for (offset = 0; offset < history_size; offset++)
3212 if (!history_get (history_base + offset))
3221 if (args[0] == '+' && args[1] == '\0')
3222 /* "info editing +" should print from the stored position. */
3225 /* "info editing <exp>" should print around command number <exp>. */
3226 num = (parse_and_eval_address (args) - history_base) - Hist_print / 2;
3228 /* "show commands" means print the last Hist_print commands. */
3231 num = hist_len - Hist_print;
3237 /* If there are at least Hist_print commands, we want to display the last
3238 Hist_print rather than, say, the last 6. */
3239 if (hist_len - num < Hist_print)
3241 num = hist_len - Hist_print;
3246 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
3248 printf_filtered ("%5d %s\n", history_base + offset,
3249 (history_get (history_base + offset))->line);
3252 /* The next command we want to display is the next one that we haven't
3256 /* If the user repeats this command with return, it should do what
3257 "show commands +" does. This is unnecessary if arg is null,
3258 because "show commands +" is not useful after "show commands". */
3259 if (from_tty && args)
3266 /* Called by do_setshow_command. */
3269 set_history_size_command (args, from_tty, c)
3272 struct cmd_list_element *c;
3274 if (history_size == INT_MAX)
3275 unstifle_history ();
3276 else if (history_size >= 0)
3277 stifle_history (history_size);
3280 history_size = INT_MAX;
3281 error ("History size must be non-negative");
3287 set_history (args, from_tty)
3291 printf_unfiltered ("\"set history\" must be followed by the name of a history subcommand.\n");
3292 help_list (sethistlist, "set history ", -1, gdb_stdout);
3297 show_history (args, from_tty)
3301 cmd_show_list (showhistlist, from_tty, "");
3304 int info_verbose = 0; /* Default verbose msgs off */
3306 /* Called by do_setshow_command. An elaborate joke. */
3309 set_verbose (args, from_tty, c)
3312 struct cmd_list_element *c;
3314 char *cmdname = "verbose";
3315 struct cmd_list_element *showcmd;
3317 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
3321 c->doc = "Set verbose printing of informational messages.";
3322 showcmd->doc = "Show verbose printing of informational messages.";
3326 c->doc = "Set verbosity.";
3327 showcmd->doc = "Show verbosity.";
3332 float_handler (signo)
3335 /* This message is based on ANSI C, section 4.7. Note that integer
3336 divide by zero causes this, so "float" is a misnomer. */
3337 signal (SIGFPE, float_handler);
3338 error ("Erroneous arithmetic operation.");
3350 enablebreaklist = NULL;
3354 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3358 showhistlist = NULL;
3359 unsethistlist = NULL;
3360 #if MAINTENANCE_CMDS
3361 maintenancelist = NULL;
3362 maintenanceinfolist = NULL;
3363 maintenanceprintlist = NULL;
3365 setprintlist = NULL;
3366 showprintlist = NULL;
3367 setchecklist = NULL;
3368 showchecklist = NULL;
3371 /* Init the history buffer. Note that we are called after the init file(s)
3372 * have been read so that the user can change the history file via his
3373 * .gdbinit file (for instance). The GDBHISTFILE environment variable
3374 * overrides all of this.
3382 tmpenv = getenv ("HISTSIZE");
3384 history_size = atoi (tmpenv);
3385 else if (!history_size)
3388 stifle_history (history_size);
3390 tmpenv = getenv ("GDBHISTFILE");
3392 history_filename = savestring (tmpenv, strlen(tmpenv));
3393 else if (!history_filename) {
3394 /* We include the current directory so that if the user changes
3395 directories the file written will be the same as the one
3397 history_filename = concat (current_directory, "/.gdb_history", NULL);
3399 read_history (history_filename);
3405 struct cmd_list_element *c;
3407 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3409 add_prefix_cmd ("endian", class_support, set_endian,
3410 "Set endianness of target.",
3411 &endianlist, "set endian ", 0, &setlist);
3412 add_cmd ("big", class_support, set_endian_big,
3413 "Set target as being big endian.", &endianlist);
3414 add_cmd ("little", class_support, set_endian_little,
3415 "Set target as being little endian.", &endianlist);
3416 add_cmd ("auto", class_support, set_endian_auto,
3417 "Select target endianness automatically.", &endianlist);
3418 add_cmd ("endian", class_support, show_endian,
3419 "Show endianness of target.", &showlist);
3421 #endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
3423 #ifdef DEFAULT_PROMPT
3424 prompt = savestring (DEFAULT_PROMPT, strlen(DEFAULT_PROMPT));
3426 prompt = savestring ("(gdb) ", 6);
3429 /* Set the important stuff up for command editing. */
3430 command_editing_p = 1;
3431 history_expansion_p = 0;
3432 write_history_p = 0;
3434 /* Setup important stuff for command line editing. */
3435 rl_completion_entry_function = (int (*)()) readline_line_completion_function;
3436 rl_completer_word_break_characters = gdb_completer_word_break_characters;
3437 rl_completer_quote_characters = gdb_completer_quote_characters;
3438 rl_readline_name = "gdb";
3440 /* Define the classes of commands.
3441 They will appear in the help list in the reverse of this order. */
3443 add_cmd ("internals", class_maintenance, NO_FUNCTION,
3444 "Maintenance commands.\n\
3445 Some gdb commands are provided just for use by gdb maintainers.\n\
3446 These commands are subject to frequent change, and may not be as\n\
3447 well documented as user commands.",
3449 add_cmd ("obscure", class_obscure, NO_FUNCTION, "Obscure features.", &cmdlist);
3450 add_cmd ("aliases", class_alias, NO_FUNCTION, "Aliases of other commands.", &cmdlist);
3451 add_cmd ("user-defined", class_user, NO_FUNCTION, "User-defined commands.\n\
3452 The commands in this class are those defined by the user.\n\
3453 Use the \"define\" command to define a command.", &cmdlist);
3454 add_cmd ("support", class_support, NO_FUNCTION, "Support facilities.", &cmdlist);
3455 add_cmd ("status", class_info, NO_FUNCTION, "Status inquiries.", &cmdlist);
3456 add_cmd ("files", class_files, NO_FUNCTION, "Specifying and examining files.", &cmdlist);
3457 add_cmd ("breakpoints", class_breakpoint, NO_FUNCTION, "Making program stop at certain points.", &cmdlist);
3458 add_cmd ("data", class_vars, NO_FUNCTION, "Examining data.", &cmdlist);
3459 add_cmd ("stack", class_stack, NO_FUNCTION, "Examining the stack.\n\
3460 The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
3461 counting from zero for the innermost (currently executing) frame.\n\n\
3462 At any time gdb identifies one frame as the \"selected\" frame.\n\
3463 Variable lookups are done with respect to the selected frame.\n\
3464 When the program being debugged stops, gdb selects the innermost frame.\n\
3465 The commands below can be used to select other frames by number or address.",
3467 add_cmd ("running", class_run, NO_FUNCTION, "Running the program.", &cmdlist);
3469 add_com ("pwd", class_files, pwd_command,
3470 "Print working directory. This is used for your program as well.");
3471 c = add_cmd ("cd", class_files, cd_command,
3472 "Set working directory to DIR for debugger and program being debugged.\n\
3473 The change does not take effect for the program being debugged\n\
3474 until the next time it is started.", &cmdlist);
3475 c->completer = filename_completer;
3478 (add_set_cmd ("prompt", class_support, var_string, (char *)&prompt,
3483 add_com ("echo", class_support, echo_command,
3484 "Print a constant string. Give string as argument.\n\
3485 C escape sequences may be used in the argument.\n\
3486 No newline is added at the end of the argument;\n\
3487 use \"\\n\" if you want a newline to be printed.\n\
3488 Since leading and trailing whitespace are ignored in command arguments,\n\
3489 if you want to print some you must use \"\\\" before leading whitespace\n\
3490 to be printed or after trailing whitespace.");
3491 add_com ("document", class_support, document_command,
3492 "Document a user-defined command.\n\
3493 Give command name as argument. Give documentation on following lines.\n\
3494 End with a line of just \"end\".");
3495 add_com ("define", class_support, define_command,
3496 "Define a new command name. Command name is argument.\n\
3497 Definition appears on following lines, one command per line.\n\
3498 End with a line of just \"end\".\n\
3499 Use the \"document\" command to give documentation for the new command.\n\
3500 Commands defined in this way may have up to ten arguments.");
3503 c = add_cmd ("source", class_support, source_command,
3504 "Read commands from a file named FILE.\n\
3505 Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
3506 when gdb is started.", &cmdlist);
3508 /* Punt file name, we can't help it easily. */
3509 c = add_cmd ("source", class_support, source_command,
3510 "Read commands from a file named FILE.\n\
3511 Note that the file \".gdbinit\" is read automatically in this way\n\
3512 when gdb is started.", &cmdlist);
3514 c->completer = filename_completer;
3516 add_com ("quit", class_support, quit_command, "Exit gdb.");
3517 add_com ("help", class_support, help_command, "Print list of commands.");
3518 add_com_alias ("q", "quit", class_support, 1);
3519 add_com_alias ("h", "help", class_support, 1);
3521 add_com ("dont-repeat", class_support, dont_repeat_command, "Don't repeat this command.\n\
3522 Primarily used inside of user-defined commands that should not be repeated when\n\
3525 c = add_set_cmd ("verbose", class_support, var_boolean, (char *)&info_verbose,
3528 add_show_from_set (c, &showlist);
3529 c->function.sfunc = set_verbose;
3530 set_verbose (NULL, 0, c);
3533 (add_set_cmd ("editing", class_support, var_boolean, (char *)&command_editing_p,
3534 "Set editing of command lines as they are typed.\n\
3535 Use \"on\" to enable to enable the editing, and \"off\" to disable it.\n\
3536 Without an argument, command line editing is enabled. To edit, use\n\
3537 EMACS-like or VI-like commands like control-P or ESC.", &setlist),
3540 add_prefix_cmd ("history", class_support, set_history,
3541 "Generic command for setting command history parameters.",
3542 &sethistlist, "set history ", 0, &setlist);
3543 add_prefix_cmd ("history", class_support, show_history,
3544 "Generic command for showing command history parameters.",
3545 &showhistlist, "show history ", 0, &showlist);
3548 (add_set_cmd ("expansion", no_class, var_boolean, (char *)&history_expansion_p,
3549 "Set history expansion on command input.\n\
3550 Without an argument, history expansion is enabled.", &sethistlist),
3554 (add_set_cmd ("save", no_class, var_boolean, (char *)&write_history_p,
3555 "Set saving of the history record on exit.\n\
3556 Use \"on\" to enable to enable the saving, and \"off\" to disable it.\n\
3557 Without an argument, saving is enabled.", &sethistlist),
3560 c = add_set_cmd ("size", no_class, var_integer, (char *)&history_size,
3561 "Set the size of the command history, \n\
3562 ie. the number of previous commands to keep a record of.", &sethistlist);
3563 add_show_from_set (c, &showhistlist);
3564 c->function.sfunc = set_history_size_command;
3567 (add_set_cmd ("filename", no_class, var_filename, (char *)&history_filename,
3568 "Set the filename in which to record the command history\n\
3569 (the list of previous commands of which a record is kept).", &sethistlist),
3573 (add_set_cmd ("confirm", class_support, var_boolean,
3575 "Set whether to confirm potentially dangerous operations.",
3579 add_prefix_cmd ("info", class_info, info_command,
3580 "Generic command for showing things about the program being debugged.",
3581 &infolist, "info ", 0, &cmdlist);
3582 add_com_alias ("i", "info", class_info, 1);
3584 add_com ("complete", class_obscure, complete_command,
3585 "List the completions for the rest of the line as a command.");
3587 add_prefix_cmd ("show", class_info, show_command,
3588 "Generic command for showing things about the debugger.",
3589 &showlist, "show ", 0, &cmdlist);
3590 /* Another way to get at the same thing. */
3591 add_info ("set", show_command, "Show all GDB settings.");
3593 add_cmd ("commands", no_class, show_commands,
3594 "Show the history of commands you typed.\n\
3595 You can supply a command number to start with, or a `+' to start after\n\
3596 the previous command number shown.",
3599 add_cmd ("version", no_class, show_version,
3600 "Show what version of GDB this is.", &showlist);
3602 add_com ("while", class_support, while_command,
3603 "Execute nested commands WHILE the conditional expression is non zero.\n\
3604 The conditional expression must follow the word `while' and must in turn be\n\
3605 followed by a new line. The nested commands must be entered one per line,\n\
3606 and should be terminated by the word `end'.");
3608 add_com ("if", class_support, if_command,
3609 "Execute nested commands once IF the conditional expression is non zero.\n\
3610 The conditional expression must follow the word `if' and must in turn be\n\
3611 followed by a new line. The nested commands must be entered one per line,\n\
3612 and should be terminated by the word 'else' or `end'. If an else clause\n\
3613 is used, the same rules apply to its nested commands as to the first ones.");
3615 /* If target is open when baud changes, it doesn't take effect until the
3616 next open (I think, not sure). */
3617 add_show_from_set (add_set_cmd ("remotebaud", no_class,
3618 var_zinteger, (char *)&baud_rate,
3619 "Set baud rate for remote serial I/O.\n\
3620 This value is used to set the speed of the serial port when debugging\n\
3621 using remote targets.", &setlist),
3625 add_set_cmd ("remotedebug", no_class, var_zinteger, (char *)&remote_debug,
3626 "Set debugging of remote protocol.\n\
3627 When enabled, each packet sent or received with the remote target\n\
3628 is displayed.", &setlist),
3632 add_set_cmd ("remotetimeout", no_class, var_integer, (char *)&remote_timeout,
3633 "Set timeout limit to wait for target to respond.\n\
3634 This value is used to set the time limit for gdb to wait for a response\n\
3635 from he target.", &setlist),
3638 c = add_set_cmd ("annotate", class_obscure, var_zinteger,
3639 (char *)&annotation_level, "Set annotation_level.\n\
3640 0 == normal; 1 == fullname (for use when running under emacs)\n\
3641 2 == output annotated suitably for use by programs that control GDB.",
3643 c = add_show_from_set (c, &showlist);