1 /* Top level stuff for GDB, the GNU debugger.
2 Copyright 1986, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96, 1997
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 char * line_completion_function PARAMS ((char *, int, char *, int));
72 static char * readline_line_completion_function PARAMS ((char *, int));
74 static void command_loop_marker PARAMS ((int));
76 static void while_command PARAMS ((char *, int));
78 static void if_command PARAMS ((char *, int));
80 static struct command_line *
81 build_command_line PARAMS ((enum command_control_type, char *));
83 static struct command_line *
84 get_command_line PARAMS ((enum command_control_type, char *));
86 static void realloc_body_list PARAMS ((struct command_line *, int));
88 static enum misc_command_type read_next_line PARAMS ((struct command_line **));
90 static enum command_control_type
91 recurse_read_control_structure PARAMS ((struct command_line *));
93 static struct cleanup * setup_user_args PARAMS ((char *));
95 static char * locate_arg PARAMS ((char *));
97 static char * insert_args PARAMS ((char *));
99 static void arg_cleanup PARAMS ((void));
101 static void init_main PARAMS ((void));
103 static void init_cmd_lists PARAMS ((void));
105 static void float_handler PARAMS ((int));
107 static void init_signals PARAMS ((void));
109 static void set_verbose PARAMS ((char *, int, struct cmd_list_element *));
111 static void set_endian PARAMS ((char *, int));
113 static void set_endian_big PARAMS ((char *, int));
115 static void set_endian_little PARAMS ((char *, int));
117 static void set_endian_auto PARAMS ((char *, int));
119 static void show_endian PARAMS ((char *, int));
121 static void show_history PARAMS ((char *, int));
123 static void set_history PARAMS ((char *, int));
125 static void set_history_size_command PARAMS ((char *, int,
126 struct cmd_list_element *));
128 static void show_commands PARAMS ((char *, int));
130 static void echo_command PARAMS ((char *, int));
132 static void pwd_command PARAMS ((char *, int));
134 static void show_version PARAMS ((char *, int));
136 static void document_command PARAMS ((char *, int));
138 static void define_command PARAMS ((char *, int));
140 static void validate_comname PARAMS ((char *));
142 static void help_command PARAMS ((char *, int));
144 static void show_command PARAMS ((char *, int));
146 static void info_command PARAMS ((char *, int));
148 static void complete_command PARAMS ((char *, int));
150 static void do_nothing PARAMS ((int));
153 static int quit_cover PARAMS ((char *));
155 static void disconnect PARAMS ((int));
158 static void source_cleanup PARAMS ((FILE *));
160 /* If this definition isn't overridden by the header files, assume
161 that isatty and fileno exist on this system. */
163 #define ISATTY(FP) (isatty (fileno (FP)))
166 /* Initialization file name for gdb. This is overridden in some configs. */
168 #ifndef GDBINIT_FILENAME
169 #define GDBINIT_FILENAME ".gdbinit"
171 char gdbinit[] = GDBINIT_FILENAME;
173 int inhibit_gdbinit = 0;
175 /* If nonzero, and GDB has been configured to be able to use windows,
176 attempt to open them upon startup. */
180 /* Version number of GDB, as a string. */
182 extern char *version;
184 /* Canonical host name as a string. */
186 extern char *host_name;
188 /* Canonical target name as a string. */
190 extern char *target_name;
192 extern char lang_frame_mismatch_warn[]; /* language.c */
194 /* Flag for whether we want all the "from_tty" gubbish printed. */
196 int caution = 1; /* Default is yes, sigh. */
198 /* Define all cmd_list_elements. */
200 /* Chain containing all defined commands. */
202 struct cmd_list_element *cmdlist;
204 /* Chain containing all defined info subcommands. */
206 struct cmd_list_element *infolist;
208 /* Chain containing all defined enable subcommands. */
210 struct cmd_list_element *enablelist;
212 /* Chain containing all defined disable subcommands. */
214 struct cmd_list_element *disablelist;
216 /* Chain containing all defined delete subcommands. */
218 struct cmd_list_element *deletelist;
220 /* Chain containing all defined "enable breakpoint" subcommands. */
222 struct cmd_list_element *enablebreaklist;
224 /* Chain containing all defined set subcommands */
226 struct cmd_list_element *setlist;
228 /* Chain containing all defined unset subcommands */
230 struct cmd_list_element *unsetlist;
232 /* Chain containing all defined show subcommands. */
234 struct cmd_list_element *showlist;
236 /* Chain containing the \"set endian\" commands. */
238 struct cmd_list_element *endianlist;
240 /* Chain containing all defined \"set history\". */
242 struct cmd_list_element *sethistlist;
244 /* Chain containing all defined \"show history\". */
246 struct cmd_list_element *showhistlist;
248 /* Chain containing all defined \"unset history\". */
250 struct cmd_list_element *unsethistlist;
252 /* Chain containing all defined maintenance subcommands. */
255 struct cmd_list_element *maintenancelist;
258 /* Chain containing all defined "maintenance info" subcommands. */
261 struct cmd_list_element *maintenanceinfolist;
264 /* Chain containing all defined "maintenance print" subcommands. */
267 struct cmd_list_element *maintenanceprintlist;
270 struct cmd_list_element *setprintlist;
272 struct cmd_list_element *showprintlist;
274 struct cmd_list_element *setchecklist;
276 struct cmd_list_element *showchecklist;
278 /* stdio stream that command input is being read from. Set to stdin normally.
279 Set by source_command to the file we are sourcing. Set to NULL if we are
280 executing a user-defined command or interacting via a GUI. */
284 /* Current working directory. */
286 char *current_directory;
288 /* The directory name is actually stored here (usually). */
289 char gdb_dirbuf[1024];
291 /* Function to call before reading a command, if nonzero.
292 The function receives two args: an input stream,
293 and a prompt string. */
295 void (*window_hook) PARAMS ((FILE *, char *));
300 /* gdb prints this when reading a command interactively */
303 /* Buffer used for reading command lines, and the size
304 allocated for it so far. */
309 /* Nonzero if the current command is modified by "server ". This
310 affects things like recording into the command history, comamnds
311 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
312 whatever) can issue its own commands and also send along commands
313 from the user, and have the user not notice that the user interface
314 is issuing commands too. */
317 /* Baud rate specified for talking to serial target systems. Default
318 is left as -1, so targets can choose their own defaults. */
319 /* FIXME: This means that "show remotebaud" and gr_files_info can print -1
320 or (unsigned int)-1. This is a Bad User Interface. */
324 /* Timeout limit for response from target. */
326 int remote_timeout = 20; /* Set default to 20 */
328 /* Non-zero tells remote* modules to output debugging info. */
330 int remote_debug = 0;
332 /* Level of control structure. */
333 static int control_level;
335 /* Structure for arguments to user defined functions. */
336 #define MAXUSERARGS 10
339 struct user_args *next;
348 /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
352 #define STOP_SIGNAL SIGTSTP
353 static void stop_sig PARAMS ((int));
357 /* Some System V have job control but not sigsetmask(). */
358 #if !defined (HAVE_SIGSETMASK)
360 #define HAVE_SIGSETMASK 1
362 #define HAVE_SIGSETMASK 0
366 #if 0 == (HAVE_SIGSETMASK)
367 #define sigsetmask(n)
370 /* Hooks for alternate command interfaces. */
372 /* Called after most modules have been initialized, but before taking users
375 void (*init_ui_hook) PARAMS ((void));
377 /* Called instead of command_loop at top level. Can be invoked via
378 return_to_top_level. */
380 void (*command_loop_hook) PARAMS ((void));
383 /* Called instead of fputs for all output. */
385 void (*fputs_unfiltered_hook) PARAMS ((const char *linebuffer, FILE *stream));
387 /* Called when the target says something to the host, which may
388 want to appear in a different window. */
390 void (*target_output_hook) PARAMS ((char *));
392 /* Called from print_frame_info to list the line we stopped in. */
394 void (*print_frame_info_listing_hook) PARAMS ((struct symtab *s, int line,
395 int stopline, int noerror));
396 /* Replaces most of query. */
398 int (*query_hook) PARAMS ((const char *, va_list));
400 /* Called from gdb_flush to flush output. */
402 void (*flush_hook) PARAMS ((FILE *stream));
404 /* These three functions support getting lines of text from the user. They
405 are used in sequence. First readline_begin_hook is called with a text
406 string that might be (for example) a message for the user to type in a
407 sequence of commands to be executed at a breakpoint. If this function
408 calls back to a GUI, it might take this opportunity to pop up a text
409 interaction window with this message. Next, readline_hook is called
410 with a prompt that is emitted prior to collecting the user input.
411 It can be called multiple times. Finally, readline_end_hook is called
412 to notify the GUI that we are done with the interaction window and it
415 void (*readline_begin_hook) PARAMS ((char *, ...));
416 char * (*readline_hook) PARAMS ((char *));
417 void (*readline_end_hook) PARAMS ((void));
419 /* Called as appropriate to notify the interface of the specified breakpoint
422 void (*create_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
423 void (*delete_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
424 void (*modify_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
426 /* Called during long calculations to allow GUI to repair window damage, and to
427 check for stop buttons, etc... */
429 void (*interactive_hook) PARAMS ((void));
431 /* Called when the registers have changed, as a hint to a GUI
432 to minimize window update. */
434 void (*registers_changed_hook) PARAMS ((void));
436 /* Called when going to wait for the target. Usually allows the GUI to run
437 while waiting for target events. */
439 int (*target_wait_hook) PARAMS ((int pid, struct target_waitstatus *status));
441 /* Used by UI as a wrapper around command execution. May do various things
442 like enabling/disabling buttons, etc... */
444 void (*call_command_hook) PARAMS ((struct cmd_list_element *c, char *cmd,
448 /* Takes control from error (). Typically used to prevent longjmps out of the
449 middle of the GUI. Usually used in conjunction with a catch routine. */
451 NORETURN void (*error_hook) PARAMS ((void)) ATTR_NORETURN;
454 /* Where to go for return_to_top_level (RETURN_ERROR). */
455 jmp_buf error_return;
456 /* Where to go for return_to_top_level (RETURN_QUIT). */
459 /* Return for reason REASON. This generally gets back to the command
460 loop, but can be caught via catch_errors. */
463 return_to_top_level (reason)
464 enum return_reason reason;
469 /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
470 I can think of a reason why that is vital, though). */
471 bpstat_clear_actions(stop_bpstat); /* Clear queued breakpoint commands */
473 disable_current_display ();
474 do_cleanups (ALL_CLEANUPS);
476 if (annotation_level > 1)
487 (NORETURN void) longjmp
488 (reason == RETURN_ERROR ? error_return : quit_return, 1);
491 /* Call FUNC with arg ARGS, catching any errors. If there is no
492 error, return the value returned by FUNC. If there is an error,
493 print ERRSTRING, print the specific error message, then return
496 Must not be called with immediate_quit in effect (bad things might
497 happen, say we got a signal in the middle of a memcpy to quit_return).
498 This is an OK restriction; with very few exceptions immediate_quit can
499 be replaced by judicious use of QUIT.
501 MASK specifies what to catch; it is normally set to
502 RETURN_MASK_ALL, if for no other reason than that the code which
503 calls catch_errors might not be set up to deal with a quit which
504 isn't caught. But if the code can deal with it, it generally
505 should be RETURN_MASK_ERROR, unless for some reason it is more
506 useful to abort only the portion of the operation inside the
507 catch_errors. Note that quit should return to the command line
508 fairly quickly, even if some further processing is being done. */
511 catch_errors (func, args, errstring, mask)
512 int (*func) PARAMS ((char *));
521 struct cleanup *saved_cleanup_chain;
522 char *saved_error_pre_print;
523 char *saved_quit_pre_print;
525 saved_cleanup_chain = save_cleanups ();
526 saved_error_pre_print = error_pre_print;
527 saved_quit_pre_print = quit_pre_print;
529 if (mask & RETURN_MASK_ERROR)
531 memcpy ((char *)saved_error, (char *)error_return, sizeof (jmp_buf));
532 error_pre_print = errstring;
534 if (mask & RETURN_MASK_QUIT)
536 memcpy (saved_quit, quit_return, sizeof (jmp_buf));
537 quit_pre_print = errstring;
540 if (setjmp (tmp_jmp) == 0)
542 if (mask & RETURN_MASK_ERROR)
543 memcpy (error_return, tmp_jmp, sizeof (jmp_buf));
544 if (mask & RETURN_MASK_QUIT)
545 memcpy (quit_return, tmp_jmp, sizeof (jmp_buf));
546 val = (*func) (args);
551 restore_cleanups (saved_cleanup_chain);
553 if (mask & RETURN_MASK_ERROR)
555 memcpy (error_return, saved_error, sizeof (jmp_buf));
556 error_pre_print = saved_error_pre_print;
558 if (mask & RETURN_MASK_QUIT)
560 memcpy (quit_return, saved_quit, sizeof (jmp_buf));
561 quit_pre_print = saved_quit_pre_print;
566 /* Handler for SIGHUP. */
573 catch_errors (quit_cover, NULL,
574 "Could not kill the program being debugged", RETURN_MASK_ALL);
575 signal (SIGHUP, SIG_DFL);
576 kill (getpid (), SIGHUP);
579 /* Just a little helper function for disconnect(). */
585 caution = 0; /* Throw caution to the wind -- we're exiting.
586 This prevents asking the user dumb questions. */
587 quit_command((char *)0, 0);
590 #endif /* defined SIGHUP */
592 /* Line number we are currently in in a file which is being sourced. */
593 static int source_line_number;
595 /* Name of the file we are sourcing. */
596 static char *source_file_name;
598 /* Buffer containing the error_pre_print used by the source stuff.
600 static char *source_error;
601 static int source_error_allocated;
603 /* Something to glom on to the start of error_pre_print if source_file_name
605 static char *source_pre_error;
607 /* Clean up on error during a "source" command (or execution of a
608 user-defined command). */
611 source_cleanup (stream)
614 /* Restore the previous input stream. */
618 /* Read commands from STREAM. */
620 read_command_file (stream)
623 struct cleanup *cleanups;
625 cleanups = make_cleanup (source_cleanup, instream);
628 do_cleanups (cleanups);
631 extern void init_proc PARAMS ((void));
633 void (*pre_init_ui_hook) PARAMS ((void));
638 if (pre_init_ui_hook)
641 /* Run the init function of each source file */
643 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
644 current_directory = gdb_dirbuf;
646 init_cmd_lists (); /* This needs to be done first */
647 initialize_targets (); /* Setup target_terminal macros for utils.c */
648 initialize_utils (); /* Make errors and warnings possible */
649 initialize_all_files ();
650 init_main (); /* But that omits this file! Do it now */
655 /* We need a default language for parsing expressions, so simple things like
656 "set width 0" won't fail if no language is explicitly set in a config file
657 or implicitly set by reading an executable during startup. */
658 set_language (language_c);
659 expected_language = current_language; /* don't warn about the change. */
665 /* Allocate, initialize a new command line structure for one of the
666 control commands (if/while). */
668 static struct command_line *
669 build_command_line (type, args)
670 enum command_control_type type;
673 struct command_line *cmd;
676 error ("if/while commands require arguments.\n");
678 cmd = (struct command_line *)xmalloc (sizeof (struct command_line));
680 cmd->control_type = type;
684 = (struct command_line **)xmalloc (sizeof (struct command_line *)
686 memset (cmd->body_list, 0, sizeof (struct command_line *) * cmd->body_count);
687 cmd->line = savestring (args, strlen (args));
691 /* Build and return a new command structure for the control commands
692 such as "if" and "while". */
694 static struct command_line *
695 get_command_line (type, arg)
696 enum command_control_type type;
699 struct command_line *cmd;
700 struct cleanup *old_chain = NULL;
702 /* Allocate and build a new command line structure. */
703 cmd = build_command_line (type, arg);
705 old_chain = make_cleanup (free_command_lines, &cmd);
707 /* Read in the body of this command. */
708 if (recurse_read_control_structure (cmd) == invalid_control)
710 warning ("error reading in control structure\n");
711 do_cleanups (old_chain);
715 discard_cleanups (old_chain);
719 /* Recursively print a command (including full control structures). */
721 print_command_line (cmd, depth)
722 struct command_line *cmd;
729 for (i = 0; i < depth; i++)
730 fputs_filtered (" ", gdb_stdout);
733 /* A simple command, print it and return. */
734 if (cmd->control_type == simple_control)
736 fputs_filtered (cmd->line, gdb_stdout);
737 fputs_filtered ("\n", gdb_stdout);
741 /* loop_continue to jump to the start of a while loop, print it
743 if (cmd->control_type == continue_control)
745 fputs_filtered ("loop_continue\n", gdb_stdout);
749 /* loop_break to break out of a while loop, print it and return. */
750 if (cmd->control_type == break_control)
752 fputs_filtered ("loop_break\n", gdb_stdout);
756 /* A while command. Recursively print its subcommands before returning. */
757 if (cmd->control_type == while_control)
759 struct command_line *list;
760 fputs_filtered ("while ", gdb_stdout);
761 fputs_filtered (cmd->line, gdb_stdout);
762 fputs_filtered ("\n", gdb_stdout);
763 list = *cmd->body_list;
766 print_command_line (list, depth + 1);
771 /* An if command. Recursively print both arms before returning. */
772 if (cmd->control_type == if_control)
774 fputs_filtered ("if ", gdb_stdout);
775 fputs_filtered (cmd->line, gdb_stdout);
776 fputs_filtered ("\n", gdb_stdout);
778 print_command_line (cmd->body_list[0], depth + 1);
780 /* Show the false arm if it exists. */
781 if (cmd->body_count == 2)
785 for (i = 0; i < depth; i++)
786 fputs_filtered (" ", gdb_stdout);
788 fputs_filtered ("else\n", gdb_stdout);
789 print_command_line (cmd->body_list[1], depth + 1);
793 for (i = 0; i < depth; i++)
794 fputs_filtered (" ", gdb_stdout);
796 fputs_filtered ("end\n", gdb_stdout);
800 /* Execute the command in CMD. */
802 enum command_control_type
803 execute_control_command (cmd)
804 struct command_line *cmd;
806 struct expression *expr;
807 struct command_line *current;
808 struct cleanup *old_chain = 0;
812 enum command_control_type ret;
815 switch (cmd->control_type)
818 /* A simple command, execute it and return. */
819 new_line = insert_args (cmd->line);
821 return invalid_control;
822 old_chain = make_cleanup (free_current_contents, &new_line);
823 execute_command (new_line, 0);
824 ret = cmd->control_type;
827 case continue_control:
829 /* Return for "continue", and "break" so we can either
830 continue the loop at the top, or break out. */
831 ret = cmd->control_type;
836 /* Parse the loop control expression for the while statement. */
837 new_line = insert_args (cmd->line);
839 return invalid_control;
840 old_chain = make_cleanup (free_current_contents, &new_line);
841 expr = parse_expression (new_line);
842 make_cleanup (free_current_contents, &expr);
844 ret = simple_control;
847 /* Keep iterating so long as the expression is true. */
854 /* Evaluate the expression. */
855 val_mark = value_mark ();
856 val = evaluate_expression (expr);
857 cond_result = value_true (val);
858 value_free_to_mark (val_mark);
860 /* If the value is false, then break out of the loop. */
864 /* Execute the body of the while statement. */
865 current = *cmd->body_list;
868 ret = execute_control_command (current);
870 /* If we got an error, or a "break" command, then stop
872 if (ret == invalid_control || ret == break_control)
878 /* If we got a "continue" command, then restart the loop
880 if (ret == continue_control)
883 /* Get the next statement. */
884 current = current->next;
888 /* Reset RET so that we don't recurse the break all the way down. */
889 if (ret == break_control)
890 ret = simple_control;
897 new_line = insert_args (cmd->line);
899 return invalid_control;
900 old_chain = make_cleanup (free_current_contents, &new_line);
901 /* Parse the conditional for the if statement. */
902 expr = parse_expression (new_line);
903 make_cleanup (free_current_contents, &expr);
906 ret = simple_control;
908 /* Evaluate the conditional. */
909 val_mark = value_mark ();
910 val = evaluate_expression (expr);
912 /* Choose which arm to take commands from based on the value of the
913 conditional expression. */
914 if (value_true (val))
915 current = *cmd->body_list;
916 else if (cmd->body_count == 2)
917 current = *(cmd->body_list + 1);
918 value_free_to_mark (val_mark);
920 /* Execute commands in the given arm. */
923 ret = execute_control_command (current);
925 /* If we got an error, get out. */
926 if (ret != simple_control)
929 /* Get the next statement in the body. */
930 current = current->next;
937 warning ("Invalid control type in command structure.");
938 return invalid_control;
942 do_cleanups (old_chain);
947 /* "while" command support. Executes a body of statements while the
948 loop condition is nonzero. */
951 while_command (arg, from_tty)
955 struct command_line *command = NULL;
958 command = get_command_line (while_control, arg);
963 execute_control_command (command);
964 free_command_lines (&command);
967 /* "if" command support. Execute either the true or false arm depending
968 on the value of the if conditional. */
971 if_command (arg, from_tty)
975 struct command_line *command = NULL;
978 command = get_command_line (if_control, arg);
983 execute_control_command (command);
984 free_command_lines (&command);
991 struct user_args *oargs = user_args;
993 fatal ("Internal error, arg_cleanup called with no user args.\n");
995 user_args = user_args->next;
999 /* Bind the incomming arguments for a user defined command to
1000 $arg0, $arg1 ... $argMAXUSERARGS. */
1002 static struct cleanup *
1006 struct user_args *args;
1007 struct cleanup *old_chain;
1008 unsigned int arg_count = 0;
1010 args = (struct user_args *)xmalloc (sizeof (struct user_args));
1011 memset (args, 0, sizeof (struct user_args));
1013 args->next = user_args;
1016 old_chain = make_cleanup (arg_cleanup, 0);
1028 if (arg_count >= MAXUSERARGS)
1030 error ("user defined function may only have %d arguments.\n",
1035 /* Strip whitespace. */
1036 while (*p == ' ' || *p == '\t')
1039 /* P now points to an argument. */
1041 user_args->a[arg_count].arg = p;
1043 /* Get to the end of this argument. */
1046 if (((*p == ' ' || *p == '\t')) && !squote && !dquote && !bsquote)
1052 else if (*p == '\\')
1075 user_args->a[arg_count].len = p - start_arg;
1082 /* Given character string P, return a point to the first argument ($arg),
1083 or NULL if P contains no arguments. */
1089 while ((p = strchr (p, '$')))
1091 if (strncmp (p, "$arg", 4) == 0 && isdigit (p[4]))
1098 /* Insert the user defined arguments stored in user_arg into the $arg
1099 arguments found in line, with the updated copy being placed into nline. */
1105 char *p, *save_line, *new_line;
1108 /* First we need to know how much memory to allocate for the new line. */
1111 while ((p = locate_arg (line)))
1116 if (i >= user_args->count)
1118 error ("Missing argument %d in user function.\n", i);
1121 len += user_args->a[i].len;
1125 /* Don't forget the tail. */
1126 len += strlen (line);
1128 /* Allocate space for the new line and fill it in. */
1129 new_line = (char *)xmalloc (len + 1);
1130 if (new_line == NULL)
1133 /* Restore pointer to beginning of old line. */
1136 /* Save pointer to beginning of new line. */
1137 save_line = new_line;
1139 while ((p = locate_arg (line)))
1143 memcpy (new_line, line, p - line);
1144 new_line += p - line;
1147 len = user_args->a[i].len;
1150 memcpy (new_line, user_args->a[i].arg, len);
1155 /* Don't forget the tail. */
1156 strcpy (new_line, line);
1158 /* Return a pointer to the beginning of the new line. */
1163 execute_user_command (c, args)
1164 struct cmd_list_element *c;
1167 register struct command_line *cmdlines;
1168 struct cleanup *old_chain;
1169 enum command_control_type ret;
1171 old_chain = setup_user_args (args);
1173 cmdlines = c->user_commands;
1178 /* Set the instream to 0, indicating execution of a
1179 user-defined function. */
1180 old_chain = make_cleanup (source_cleanup, instream);
1181 instream = (FILE *) 0;
1184 ret = execute_control_command (cmdlines);
1185 if (ret != simple_control && ret != break_control)
1187 warning ("Error in control structure.\n");
1190 cmdlines = cmdlines->next;
1192 do_cleanups (old_chain);
1195 /* Execute the line P as a command.
1196 Pass FROM_TTY as second argument to the defining function. */
1199 execute_command (p, from_tty)
1203 register struct cmd_list_element *c;
1204 register enum language flang;
1205 static int warned = 0;
1206 /* FIXME: These should really be in an appropriate header file */
1207 extern void serial_log_command PARAMS ((const char *));
1211 /* This can happen when command_line_input hits end of file. */
1215 serial_log_command (p);
1217 while (*p == ' ' || *p == '\t') p++;
1222 c = lookup_cmd (&p, cmdlist, "", 0, 1);
1223 /* Pass null arg rather than an empty one. */
1226 /* Clear off trailing whitespace, except for set and complete command. */
1227 if (arg && c->type != set_cmd && c->function.cfunc != complete_command)
1229 p = arg + strlen (arg) - 1;
1230 while (p >= arg && (*p == ' ' || *p == '\t'))
1235 /* If this command has been hooked, run the hook first. */
1237 execute_user_command (c->hook, (char *)0);
1239 if (c->class == class_user)
1240 execute_user_command (c, arg);
1241 else if (c->type == set_cmd || c->type == show_cmd)
1242 do_setshow_command (arg, from_tty & caution, c);
1243 else if (c->function.cfunc == NO_FUNCTION)
1244 error ("That is not a command, just a help topic.");
1245 else if (call_command_hook)
1246 call_command_hook (c, arg, from_tty & caution);
1248 (*c->function.cfunc) (arg, from_tty & caution);
1251 /* Tell the user if the language has changed (except first time). */
1252 if (current_language != expected_language)
1254 if (language_mode == language_mode_auto) {
1255 language_info (1); /* Print what changed. */
1260 /* Warn the user if the working language does not match the
1261 language of the current frame. Only warn the user if we are
1262 actually running the program, i.e. there is a stack. */
1263 /* FIXME: This should be cacheing the frame and only running when
1264 the frame changes. */
1266 if (target_has_stack)
1268 flang = get_frame_language ();
1270 && flang != language_unknown
1271 && flang != current_language->la_language)
1273 printf_filtered ("%s\n", lang_frame_mismatch_warn);
1281 command_loop_marker (foo)
1286 /* Read commands from `instream' and execute them
1287 until end of file or error reading instream. */
1292 struct cleanup *old_chain;
1294 int stdin_is_tty = ISATTY (stdin);
1295 long time_at_cmd_start;
1297 long space_at_cmd_start;
1299 extern int display_time;
1300 extern int display_space;
1302 while (instream && !feof (instream))
1304 if (window_hook && instream == stdin)
1305 (*window_hook) (instream, prompt);
1308 if (instream == stdin && stdin_is_tty)
1309 reinitialize_more_filter ();
1310 old_chain = make_cleanup (command_loop_marker, 0);
1311 command = command_line_input (instream == stdin ? prompt : (char *) NULL,
1312 instream == stdin, "prompt");
1316 time_at_cmd_start = get_run_time ();
1321 extern char **environ;
1322 char *lim = (char *) sbrk (0);
1324 space_at_cmd_start = (long) (lim - (char *) &environ);
1328 execute_command (command, instream == stdin);
1329 /* Do any commands attached to breakpoint we stopped at. */
1330 bpstat_do_actions (&stop_bpstat);
1331 do_cleanups (old_chain);
1335 long cmd_time = get_run_time () - time_at_cmd_start;
1337 printf_unfiltered ("Command execution time: %ld.%06ld\n",
1338 cmd_time / 1000000, cmd_time % 1000000);
1344 extern char **environ;
1345 char *lim = (char *) sbrk (0);
1346 long space_now = lim - (char *) &environ;
1347 long space_diff = space_now - space_at_cmd_start;
1349 printf_unfiltered ("Space used: %ld (%c%ld for this command)\n",
1351 (space_diff >= 0 ? '+' : '-'),
1358 /* Commands call this if they do not want to be repeated by null lines. */
1366 /* If we aren't reading from standard input, we are saving the last
1367 thing read from stdin in line and don't want to delete it. Null lines
1368 won't repeat here in any case. */
1369 if (instream == stdin)
1373 /* Read a line from the stream "instream" without command line editing.
1375 It prints PRROMPT once at the start.
1376 Action is compatible with "readline", e.g. space for the result is
1377 malloc'd and should be freed by the caller.
1379 A NULL return means end of file. */
1381 gdb_readline (prrompt)
1386 int input_index = 0;
1387 int result_size = 80;
1391 /* Don't use a _filtered function here. It causes the assumed
1392 character position to be off, since the newline we read from
1393 the user is not accounted for. */
1394 fputs_unfiltered (prrompt, gdb_stdout);
1396 /* Move to a new line so the entered line doesn't have a prompt
1397 on the front of it. */
1398 fputs_unfiltered ("\n", gdb_stdout);
1400 gdb_flush (gdb_stdout);
1403 result = (char *) xmalloc (result_size);
1407 /* Read from stdin if we are executing a user defined command.
1408 This is the right thing for prompt_for_continue, at least. */
1409 c = fgetc (instream ? instream : stdin);
1413 if (input_index > 0)
1414 /* The last line does not end with a newline. Return it, and
1415 if we are called again fgetc will still return EOF and
1416 we'll return NULL then. */
1425 result[input_index++] = c;
1426 while (input_index >= result_size)
1429 result = (char *) xrealloc (result, result_size);
1433 result[input_index++] = '\0';
1437 /* Variables which control command line editing and history
1438 substitution. These variables are given default values at the end
1440 static int command_editing_p;
1441 static int history_expansion_p;
1442 static int write_history_p;
1443 static int history_size;
1444 static char *history_filename;
1446 /* readline uses the word breaks for two things:
1447 (1) In figuring out where to point the TEXT parameter to the
1448 rl_completion_entry_function. Since we don't use TEXT for much,
1449 it doesn't matter a lot what the word breaks are for this purpose, but
1450 it does affect how much stuff M-? lists.
1451 (2) If one of the matches contains a word break character, readline
1452 will quote it. That's why we switch between
1453 gdb_completer_word_break_characters and
1454 gdb_completer_command_word_break_characters. I'm not sure when
1455 we need this behavior (perhaps for funky characters in C++ symbols?). */
1457 /* Variables which are necessary for fancy command line editing. */
1458 char *gdb_completer_word_break_characters =
1459 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
1461 /* When completing on command names, we remove '-' from the list of
1462 word break characters, since we use it in command names. If the
1463 readline library sees one in any of the current completion strings,
1464 it thinks that the string needs to be quoted and automatically supplies
1466 char *gdb_completer_command_word_break_characters =
1467 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,";
1469 /* Characters that can be used to quote completion strings. Note that we
1470 can't include '"' because the gdb C parser treats such quoted sequences
1472 char *gdb_completer_quote_characters =
1475 /* Functions that are used as part of the fancy command line editing. */
1477 /* This can be used for functions which don't want to complete on symbols
1478 but don't want to complete on anything else either. */
1481 noop_completer (text, prefix)
1488 /* Complete on filenames. */
1490 filename_completer (text, word)
1494 /* From readline. */
1495 extern char *filename_completion_function PARAMS ((char *, int));
1496 int subsequent_name;
1498 int return_val_used;
1499 int return_val_alloced;
1501 return_val_used = 0;
1502 /* Small for testing. */
1503 return_val_alloced = 1;
1504 return_val = (char **) xmalloc (return_val_alloced * sizeof (char *));
1506 subsequent_name = 0;
1510 p = filename_completion_function (text, subsequent_name);
1511 if (return_val_used >= return_val_alloced)
1513 return_val_alloced *= 2;
1515 (char **) xrealloc (return_val,
1516 return_val_alloced * sizeof (char *));
1520 return_val[return_val_used++] = p;
1523 /* Like emacs, don't complete on old versions. Especially useful
1524 in the "source" command. */
1525 if (p[strlen (p) - 1] == '~')
1531 /* Return exactly p. */
1532 return_val[return_val_used++] = p;
1533 else if (word > text)
1535 /* Return some portion of p. */
1536 q = xmalloc (strlen (p) + 5);
1537 strcpy (q, p + (word - text));
1538 return_val[return_val_used++] = q;
1543 /* Return some of TEXT plus p. */
1544 q = xmalloc (strlen (p) + (text - word) + 5);
1545 strncpy (q, word, text - word);
1546 q[text - word] = '\0';
1548 return_val[return_val_used++] = q;
1552 subsequent_name = 1;
1555 /* There is no way to do this just long enough to affect quote inserting
1556 without also affecting the next completion. This should be fixed in
1558 /* Insure that readline does the right thing
1559 with respect to inserting quotes. */
1560 rl_completer_word_break_characters = "";
1565 /* Here are some useful test cases for completion. FIXME: These should
1566 be put in the test suite. They should be tested with both M-? and TAB.
1568 "show output-" "radix"
1569 "show output" "-radix"
1570 "p" ambiguous (commands starting with p--path, print, printf, etc.)
1571 "p " ambiguous (all symbols)
1572 "info t foo" no completions
1573 "info t " no completions
1574 "info t" ambiguous ("info target", "info terminal", etc.)
1575 "info ajksdlfk" no completions
1576 "info ajksdlfk " no completions
1578 "info " ambiguous (all info commands)
1579 "p \"a" no completions (string constant)
1580 "p 'a" ambiguous (all symbols starting with a)
1581 "p b-a" ambiguous (all symbols starting with a)
1582 "p b-" ambiguous (all symbols)
1583 "file Make" "file" (word break hard to screw up here)
1584 "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
1587 /* Generate completions one by one for the completer. Each time we are
1588 called return another potential completion to the caller.
1589 line_completion just completes on commands or passes the buck to the
1590 command's completer function, the stuff specific to symbol completion
1591 is in make_symbol_completion_list.
1593 TEXT is the caller's idea of the "word" we are looking at.
1595 MATCHES is the number of matches that have currently been collected from
1596 calling this completion function. When zero, then we need to initialize,
1597 otherwise the initialization has already taken place and we can just
1598 return the next potential completion string.
1600 LINE_BUFFER is available to be looked at; it contains the entire text
1601 of the line. POINT is the offset in that line of the cursor. You
1602 should pretend that the line ends at POINT.
1604 Returns NULL if there are no more completions, else a pointer to a string
1605 which is a possible completion, it is the caller's responsibility to
1609 line_completion_function (text, matches, line_buffer, point)
1615 static char **list = (char **)NULL; /* Cache of completions */
1616 static int index; /* Next cached completion */
1617 char *output = NULL;
1618 char *tmp_command, *p;
1619 /* Pointer within tmp_command which corresponds to text. */
1621 struct cmd_list_element *c, *result_list;
1625 /* The caller is beginning to accumulate a new set of completions, so
1626 we need to find all of them now, and cache them for returning one at
1627 a time on future calls. */
1631 /* Free the storage used by LIST, but not by the strings inside.
1632 This is because rl_complete_internal () frees the strings. */
1638 /* Choose the default set of word break characters to break completions.
1639 If we later find out that we are doing completions on command strings
1640 (as opposed to strings supplied by the individual command completer
1641 functions, which can be any string) then we will switch to the
1642 special word break set for command strings, which leaves out the
1643 '-' character used in some commands. */
1645 rl_completer_word_break_characters =
1646 gdb_completer_word_break_characters;
1648 /* Decide whether to complete on a list of gdb commands or on symbols. */
1649 tmp_command = (char *) alloca (point + 1);
1652 strncpy (tmp_command, line_buffer, point);
1653 tmp_command[point] = '\0';
1654 /* Since text always contains some number of characters leading up
1655 to point, we can find the equivalent position in tmp_command
1656 by subtracting that many characters from the end of tmp_command. */
1657 word = tmp_command + point - strlen (text);
1661 /* An empty line we want to consider ambiguous; that is, it
1662 could be any command. */
1663 c = (struct cmd_list_element *) -1;
1668 c = lookup_cmd_1 (&p, cmdlist, &result_list, 1);
1671 /* Move p up to the next interesting thing. */
1672 while (*p == ' ' || *p == '\t')
1679 /* It is an unrecognized command. So there are no
1680 possible completions. */
1683 else if (c == (struct cmd_list_element *) -1)
1687 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
1688 doesn't advance over that thing itself. Do so now. */
1690 while (*q && (isalnum (*q) || *q == '-' || *q == '_'))
1692 if (q != tmp_command + point)
1694 /* There is something beyond the ambiguous
1695 command, so there are no possible completions. For
1696 example, "info t " or "info t foo" does not complete
1697 to anything, because "info t" can be "info target" or
1703 /* We're trying to complete on the command which was ambiguous.
1704 This we can deal with. */
1707 list = complete_on_cmdlist (*result_list->prefixlist, p,
1712 list = complete_on_cmdlist (cmdlist, p, word);
1714 /* Insure that readline does the right thing with respect to
1715 inserting quotes. */
1716 rl_completer_word_break_characters =
1717 gdb_completer_command_word_break_characters;
1722 /* We've recognized a full command. */
1724 if (p == tmp_command + point)
1726 /* There is no non-whitespace in the line beyond the command. */
1728 if (p[-1] == ' ' || p[-1] == '\t')
1730 /* The command is followed by whitespace; we need to complete
1731 on whatever comes after command. */
1734 /* It is a prefix command; what comes after it is
1735 a subcommand (e.g. "info "). */
1736 list = complete_on_cmdlist (*c->prefixlist, p, word);
1738 /* Insure that readline does the right thing
1739 with respect to inserting quotes. */
1740 rl_completer_word_break_characters =
1741 gdb_completer_command_word_break_characters;
1745 list = complete_on_enum (c->enums, p, word);
1746 rl_completer_word_break_characters =
1747 gdb_completer_command_word_break_characters;
1751 /* It is a normal command; what comes after it is
1752 completed by the command's completer function. */
1753 list = (*c->completer) (p, word);
1758 /* The command is not followed by whitespace; we need to
1759 complete on the command itself. e.g. "p" which is a
1760 command itself but also can complete to "print", "ptype"
1764 /* Find the command we are completing on. */
1766 while (q > tmp_command)
1768 if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_')
1774 list = complete_on_cmdlist (result_list, q, word);
1776 /* Insure that readline does the right thing
1777 with respect to inserting quotes. */
1778 rl_completer_word_break_characters =
1779 gdb_completer_command_word_break_characters;
1784 /* There is non-whitespace beyond the command. */
1786 if (c->prefixlist && !c->allow_unknown)
1788 /* It is an unrecognized subcommand of a prefix command,
1789 e.g. "info adsfkdj". */
1794 list = complete_on_enum (c->enums, p, word);
1798 /* It is a normal command. */
1799 list = (*c->completer) (p, word);
1805 /* If we found a list of potential completions during initialization then
1806 dole them out one at a time. The vector of completions is NULL
1807 terminated, so after returning the last one, return NULL (and continue
1808 to do so) each time we are called after that, until a new list is
1813 output = list[index];
1821 /* Can't do this because readline hasn't yet checked the word breaks
1822 for figuring out whether to insert a quote. */
1824 /* Make sure the word break characters are set back to normal for the
1825 next time that readline tries to complete something. */
1826 rl_completer_word_break_characters =
1827 gdb_completer_word_break_characters;
1833 /* Line completion interface function for readline. */
1836 readline_line_completion_function (text, matches)
1840 return line_completion_function (text, matches, rl_line_buffer, rl_point);
1843 /* Skip over a possibly quoted word (as defined by the quote characters
1844 and word break characters the completer uses). Returns pointer to the
1845 location after the "word". */
1851 char quote_char = '\0';
1854 for (scan = str; *scan != '\0'; scan++)
1856 if (quote_char != '\0')
1858 /* Ignore everything until the matching close quote char */
1859 if (*scan == quote_char)
1861 /* Found matching close quote. */
1866 else if (strchr (gdb_completer_quote_characters, *scan))
1868 /* Found start of a quoted string. */
1871 else if (strchr (gdb_completer_word_break_characters, *scan))
1885 #if STOP_SIGNAL == SIGTSTP
1886 signal (SIGTSTP, SIG_DFL);
1888 kill (getpid (), SIGTSTP);
1889 signal (SIGTSTP, stop_sig);
1891 signal (STOP_SIGNAL, stop_sig);
1893 printf_unfiltered ("%s", prompt);
1894 gdb_flush (gdb_stdout);
1896 /* Forget about any previous command -- null line now will do nothing. */
1899 #endif /* STOP_SIGNAL */
1901 /* Initialize signal handlers. */
1911 signal (SIGINT, request_quit);
1913 /* If SIGTRAP was set to SIG_IGN, then the SIG_IGN will get passed
1914 to the inferior and breakpoints will be ignored. */
1916 signal (SIGTRAP, SIG_DFL);
1919 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
1920 passed to the inferior, which we don't want. It would be
1921 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
1922 on BSD4.3 systems using vfork, that can affect the
1923 GDB process as well as the inferior (the signal handling tables
1924 might be in memory, shared between the two). Since we establish
1925 a handler for SIGQUIT, when we call exec it will set the signal
1926 to SIG_DFL for us. */
1927 signal (SIGQUIT, do_nothing);
1929 if (signal (SIGHUP, do_nothing) != SIG_IGN)
1930 signal (SIGHUP, disconnect);
1932 signal (SIGFPE, float_handler);
1934 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1935 signal (SIGWINCH, SIGWINCH_HANDLER);
1939 /* Read one line from the command input stream `instream'
1940 into the local static buffer `linebuffer' (whose current length
1942 The buffer is made bigger as necessary.
1943 Returns the address of the start of the line.
1945 NULL is returned for end of file.
1947 *If* the instream == stdin & stdin is a terminal, the line read
1948 is copied into the file line saver (global var char *line,
1949 length linesize) so that it can be duplicated.
1951 This routine either uses fancy command line editing or
1952 simple input as the user has requested. */
1955 command_line_input (prrompt, repeat, annotation_suffix)
1958 char *annotation_suffix;
1960 static char *linebuffer = 0;
1961 static unsigned linelength = 0;
1965 char *local_prompt = prrompt;
1969 /* The annotation suffix must be non-NULL. */
1970 if (annotation_suffix == NULL)
1971 annotation_suffix = "";
1973 if (annotation_level > 1 && instream == stdin)
1975 local_prompt = alloca ((prrompt == NULL ? 0 : strlen (prrompt))
1976 + strlen (annotation_suffix) + 40);
1977 if (prrompt == NULL)
1978 local_prompt[0] = '\0';
1980 strcpy (local_prompt, prrompt);
1981 strcat (local_prompt, "\n\032\032");
1982 strcat (local_prompt, annotation_suffix);
1983 strcat (local_prompt, "\n");
1986 if (linebuffer == 0)
1989 linebuffer = (char *) xmalloc (linelength);
1994 /* Control-C quits instantly if typed while in this loop
1995 since it should not wait until the user types a newline. */
1999 signal (STOP_SIGNAL, stop_sig);
2004 /* Make sure that all output has been output. Some machines may let
2005 you get away with leaving out some of the gdb_flush, but not all. */
2007 gdb_flush (gdb_stdout);
2008 gdb_flush (gdb_stderr);
2010 if (source_file_name != NULL)
2012 ++source_line_number;
2013 sprintf (source_error,
2014 "%s%s:%d: Error in sourced command file:\n",
2017 source_line_number);
2018 error_pre_print = source_error;
2021 if (annotation_level > 1 && instream == stdin)
2023 printf_unfiltered ("\n\032\032pre-");
2024 printf_unfiltered (annotation_suffix);
2025 printf_unfiltered ("\n");
2028 /* Don't use fancy stuff if not talking to stdin. */
2029 if (readline_hook && instream == NULL)
2031 rl = (*readline_hook) (local_prompt);
2033 else if (command_editing_p && instream == stdin && ISATTY (instream))
2035 rl = readline (local_prompt);
2039 rl = gdb_readline (local_prompt);
2042 if (annotation_level > 1 && instream == stdin)
2044 printf_unfiltered ("\n\032\032post-");
2045 printf_unfiltered (annotation_suffix);
2046 printf_unfiltered ("\n");
2049 if (!rl || rl == (char *) EOF)
2054 if (strlen(rl) + 1 + (p - linebuffer) > linelength)
2056 linelength = strlen(rl) + 1 + (p - linebuffer);
2057 nline = (char *) xrealloc (linebuffer, linelength);
2058 p += nline - linebuffer;
2062 /* Copy line. Don't copy null at end. (Leaves line alone
2063 if this was just a newline) */
2067 free (rl); /* Allocated in readline. */
2069 if (p == linebuffer || *(p - 1) != '\\')
2072 p--; /* Put on top of '\'. */
2073 local_prompt = (char *) 0;
2078 signal (STOP_SIGNAL, SIG_DFL);
2085 #define SERVER_COMMAND_LENGTH 7
2087 (p - linebuffer > SERVER_COMMAND_LENGTH)
2088 && STREQN (linebuffer, "server ", SERVER_COMMAND_LENGTH);
2091 /* Note that we don't set `line'. Between this and the check in
2092 dont_repeat, this insures that repeating will still do the
2095 return linebuffer + SERVER_COMMAND_LENGTH;
2098 /* Do history expansion if that is wished. */
2099 if (history_expansion_p && instream == stdin
2100 && ISATTY (instream))
2102 char *history_value;
2105 *p = '\0'; /* Insert null now. */
2106 expanded = history_expand (linebuffer, &history_value);
2109 /* Print the changes. */
2110 printf_unfiltered ("%s\n", history_value);
2112 /* If there was an error, call this function again. */
2115 free (history_value);
2116 return command_line_input (prrompt, repeat, annotation_suffix);
2118 if (strlen (history_value) > linelength)
2120 linelength = strlen (history_value) + 1;
2121 linebuffer = (char *) xrealloc (linebuffer, linelength);
2123 strcpy (linebuffer, history_value);
2124 p = linebuffer + strlen(linebuffer);
2125 free (history_value);
2129 /* If we just got an empty line, and that is supposed
2130 to repeat the previous command, return the value in the
2132 if (repeat && p == linebuffer)
2134 for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++) ;
2140 /* Add line to history if appropriate. */
2141 if (instream == stdin
2142 && ISATTY (stdin) && *linebuffer)
2143 add_history (linebuffer);
2145 /* Note: lines consisting solely of comments are added to the command
2146 history. This is useful when you type a command, and then
2147 realize you don't want to execute it quite yet. You can comment
2148 out the command and then later fetch it from the value history
2149 and remove the '#'. The kill ring is probably better, but some
2150 people are in the habit of commenting things out. */
2152 *p1 = '\0'; /* Found a comment. */
2154 /* Save into global buffer if appropriate. */
2157 if (linelength > linesize)
2159 line = xrealloc (line, linelength);
2160 linesize = linelength;
2162 strcpy (line, linebuffer);
2170 /* Expand the body_list of COMMAND so that it can hold NEW_LENGTH
2171 code bodies. This is typically used when we encounter an "else"
2172 clause for an "if" command. */
2175 realloc_body_list (command, new_length)
2176 struct command_line *command;
2180 struct command_line **body_list;
2182 n = command->body_count;
2184 /* Nothing to do? */
2185 if (new_length <= n)
2188 body_list = (struct command_line **)
2189 xmalloc (sizeof (struct command_line *) * new_length);
2191 memcpy (body_list, command->body_list, sizeof (struct command_line *) * n);
2193 free (command->body_list);
2194 command->body_list = body_list;
2195 command->body_count = new_length;
2198 /* Read one line from the input stream. If the command is an "else" or
2199 "end", return such an indication to the caller. */
2201 static enum misc_command_type
2202 read_next_line (command)
2203 struct command_line **command;
2205 char *p, *p1, *prompt_ptr, control_prompt[256];
2208 if (control_level >= 254)
2209 error ("Control nesting too deep!\n");
2211 /* Set a prompt based on the nesting of the control commands. */
2212 if (instream == stdin || (instream == 0 && readline_hook != NULL))
2214 for (i = 0; i < control_level; i++)
2215 control_prompt[i] = ' ';
2216 control_prompt[i] = '>';
2217 control_prompt[i+1] = '\0';
2218 prompt_ptr = (char *)&control_prompt[0];
2223 p = command_line_input (prompt_ptr, instream == stdin, "commands");
2225 /* Not sure what to do here. */
2229 /* Strip leading and trailing whitespace. */
2230 while (*p == ' ' || *p == '\t')
2233 p1 = p + strlen (p);
2234 while (p1 != p && (p1[-1] == ' ' || p1[-1] == '\t'))
2237 /* Blanks and comments don't really do anything, but we need to
2238 distinguish them from else, end and other commands which can be
2240 if (p1 == p || p[0] == '#')
2243 /* Is this the end of a simple, while, or if control structure? */
2244 if (p1 - p == 3 && !strncmp (p, "end", 3))
2247 /* Is the else clause of an if control structure? */
2248 if (p1 - p == 4 && !strncmp (p, "else", 4))
2249 return else_command;
2251 /* Check for while, if, break, continue, etc and build a new command
2252 line structure for them. */
2253 if (p1 - p > 5 && !strncmp (p, "while", 5))
2254 *command = build_command_line (while_control, p + 6);
2255 else if (p1 - p > 2 && !strncmp (p, "if", 2))
2256 *command = build_command_line (if_control, p + 3);
2257 else if (p1 - p == 10 && !strncmp (p, "loop_break", 10))
2259 *command = (struct command_line *)
2260 xmalloc (sizeof (struct command_line));
2261 (*command)->next = NULL;
2262 (*command)->line = NULL;
2263 (*command)->control_type = break_control;
2264 (*command)->body_count = 0;
2265 (*command)->body_list = NULL;
2267 else if (p1 - p == 13 && !strncmp (p, "loop_continue", 13))
2269 *command = (struct command_line *)
2270 xmalloc (sizeof (struct command_line));
2271 (*command)->next = NULL;
2272 (*command)->line = NULL;
2273 (*command)->control_type = continue_control;
2274 (*command)->body_count = 0;
2275 (*command)->body_list = NULL;
2279 /* A normal command. */
2280 *command = (struct command_line *)
2281 xmalloc (sizeof (struct command_line));
2282 (*command)->next = NULL;
2283 (*command)->line = savestring (p, p1 - p);
2284 (*command)->control_type = simple_control;
2285 (*command)->body_count = 0;
2286 (*command)->body_list = NULL;
2289 /* Nothing special. */
2293 /* Recursively read in the control structures and create a command_line
2294 structure from them.
2296 The parent_control parameter is the control structure in which the
2297 following commands are nested. */
2299 static enum command_control_type
2300 recurse_read_control_structure (current_cmd)
2301 struct command_line *current_cmd;
2303 int current_body, i;
2304 enum misc_command_type val;
2305 enum command_control_type ret;
2306 struct command_line **body_ptr, *child_tail, *next;
2311 /* Sanity checks. */
2312 if (current_cmd->control_type == simple_control)
2314 error ("Recursed on a simple control type\n");
2315 return invalid_control;
2318 if (current_body > current_cmd->body_count)
2320 error ("Allocated body is smaller than this command type needs\n");
2321 return invalid_control;
2324 /* Read lines from the input stream and build control structures. */
2330 val = read_next_line (&next);
2332 /* Just skip blanks and comments. */
2333 if (val == nop_command)
2336 if (val == end_command)
2338 if (current_cmd->control_type == while_control
2339 || current_cmd->control_type == if_control)
2341 /* Success reading an entire control structure. */
2342 ret = simple_control;
2347 ret = invalid_control;
2352 /* Not the end of a control structure. */
2353 if (val == else_command)
2355 if (current_cmd->control_type == if_control
2356 && current_body == 1)
2358 realloc_body_list (current_cmd, 2);
2365 ret = invalid_control;
2372 child_tail->next = next;
2376 body_ptr = current_cmd->body_list;
2377 for (i = 1; i < current_body; i++)
2386 /* If the latest line is another control structure, then recurse
2388 if (next->control_type == while_control
2389 || next->control_type == if_control)
2392 ret = recurse_read_control_structure (next);
2395 if (ret != simple_control)
2405 /* Read lines from the input stream and accumulate them in a chain of
2406 struct command_line's, which is then returned. For input from a
2407 terminal, the special command "end" is used to mark the end of the
2408 input, and is not included in the returned chain of commands. */
2410 #define END_MESSAGE "End with a line saying just \"end\"."
2412 struct command_line *
2413 read_command_lines (prompt, from_tty)
2417 struct command_line *head, *tail, *next;
2418 struct cleanup *old_chain;
2419 enum command_control_type ret;
2420 enum misc_command_type val;
2422 if (readline_begin_hook)
2424 /* Note - intentional to merge messages with no newline */
2425 (*readline_begin_hook) ("%s %s\n", prompt, END_MESSAGE);
2427 else if (from_tty && input_from_terminal_p ())
2429 printf_unfiltered ("%s\n%s\n", prompt, END_MESSAGE);
2430 gdb_flush (gdb_stdout);
2438 val = read_next_line (&next);
2440 /* Ignore blank lines or comments. */
2441 if (val == nop_command)
2444 if (val == end_command)
2446 ret = simple_control;
2450 if (val != ok_command)
2452 ret = invalid_control;
2456 if (next->control_type == while_control
2457 || next->control_type == if_control)
2460 ret = recurse_read_control_structure (next);
2463 if (ret == invalid_control)
2474 old_chain = make_cleanup (free_command_lines, &head);
2483 if (ret != invalid_control)
2485 discard_cleanups (old_chain);
2488 do_cleanups (old_chain);
2491 if (readline_end_hook)
2493 (*readline_end_hook) ();
2498 /* Free a chain of struct command_line's. */
2501 free_command_lines (lptr)
2502 struct command_line **lptr;
2504 register struct command_line *l = *lptr;
2505 register struct command_line *next;
2506 struct command_line **blist;
2511 if (l->body_count > 0)
2513 blist = l->body_list;
2514 for (i = 0; i < l->body_count; i++, blist++)
2515 free_command_lines (blist);
2524 /* Add an element to the list of info subcommands. */
2527 add_info (name, fun, doc)
2529 void (*fun) PARAMS ((char *, int));
2532 add_cmd (name, no_class, fun, doc, &infolist);
2535 /* Add an alias to the list of info subcommands. */
2538 add_info_alias (name, oldname, abbrev_flag)
2543 add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
2546 /* The "info" command is defined as a prefix, with allow_unknown = 0.
2547 Therefore, its own definition is called only for "info" with no args. */
2551 info_command (arg, from_tty)
2555 printf_unfiltered ("\"info\" must be followed by the name of an info command.\n");
2556 help_list (infolist, "info ", -1, gdb_stdout);
2559 /* The "complete" command is used by Emacs to implement completion. */
2563 complete_command (arg, from_tty)
2575 argpoint = strlen (arg);
2577 for (completion = line_completion_function (arg, i = 0, arg, argpoint);
2579 completion = line_completion_function (arg, ++i, arg, argpoint))
2581 printf_unfiltered ("%s\n", completion);
2586 /* The "show" command with no arguments shows all the settings. */
2590 show_command (arg, from_tty)
2594 cmd_show_list (showlist, from_tty, "");
2597 /* Add an element to the list of commands. */
2600 add_com (name, class, fun, doc)
2602 enum command_class class;
2603 void (*fun) PARAMS ((char *, int));
2606 add_cmd (name, class, fun, doc, &cmdlist);
2609 /* Add an alias or abbreviation command to the list of commands. */
2612 add_com_alias (name, oldname, class, abbrev_flag)
2615 enum command_class class;
2618 add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
2625 error ("Argument required (%s).", why);
2630 help_command (command, from_tty)
2632 int from_tty; /* Ignored */
2634 help_cmd (command, gdb_stdout);
2638 validate_comname (comname)
2644 error_no_arg ("name of command to define");
2649 if (!isalnum(*p) && *p != '-' && *p != '_')
2650 error ("Junk in argument list: \"%s\"", p);
2655 /* This is just a placeholder in the command data structures. */
2657 user_defined_command (ignore, from_tty)
2664 define_command (comname, from_tty)
2668 register struct command_line *cmds;
2669 register struct cmd_list_element *c, *newc, *hookc = 0;
2670 char *tem = comname;
2672 #define HOOK_STRING "hook-"
2675 validate_comname (comname);
2677 /* Look it up, and verify that we got an exact match. */
2678 c = lookup_cmd (&tem, cmdlist, "", -1, 1);
2679 if (c && !STREQ (comname, c->name))
2684 if (c->class == class_user || c->class == class_alias)
2685 tem = "Redefine command \"%s\"? ";
2687 tem = "Really redefine built-in command \"%s\"? ";
2688 if (!query (tem, c->name))
2689 error ("Command \"%s\" not redefined.", c->name);
2692 /* If this new command is a hook, then mark the command which it
2693 is hooking. Note that we allow hooking `help' commands, so that
2694 we can hook the `stop' pseudo-command. */
2696 if (!strncmp (comname, HOOK_STRING, HOOK_LEN))
2698 /* Look up cmd it hooks, and verify that we got an exact match. */
2699 tem = comname+HOOK_LEN;
2700 hookc = lookup_cmd (&tem, cmdlist, "", -1, 0);
2701 if (hookc && !STREQ (comname+HOOK_LEN, hookc->name))
2705 warning ("Your new `%s' command does not hook any existing command.",
2707 if (!query ("Proceed? "))
2708 error ("Not confirmed.");
2712 comname = savestring (comname, strlen (comname));
2714 /* If the rest of the commands will be case insensitive, this one
2715 should behave in the same manner. */
2716 for (tem = comname; *tem; tem++)
2717 if (isupper(*tem)) *tem = tolower(*tem);
2720 sprintf (tmpbuf, "Type commands for definition of \"%s\".", comname);
2721 cmds = read_command_lines (tmpbuf, from_tty);
2723 if (c && c->class == class_user)
2724 free_command_lines (&c->user_commands);
2726 newc = add_cmd (comname, class_user, user_defined_command,
2727 (c && c->class == class_user)
2728 ? c->doc : savestring ("User-defined.", 13), &cmdlist);
2729 newc->user_commands = cmds;
2731 /* If this new command is a hook, then mark both commands as being
2735 hookc->hook = newc; /* Target gets hooked. */
2736 newc->hookee = hookc; /* We are marked as hooking target cmd. */
2741 document_command (comname, from_tty)
2745 struct command_line *doclines;
2746 register struct cmd_list_element *c;
2747 char *tem = comname;
2750 validate_comname (comname);
2752 c = lookup_cmd (&tem, cmdlist, "", 0, 1);
2754 if (c->class != class_user)
2755 error ("Command \"%s\" is built-in.", comname);
2757 sprintf (tmpbuf, "Type documentation for \"%s\".", comname);
2758 doclines = read_command_lines (tmpbuf, from_tty);
2760 if (c->doc) free (c->doc);
2763 register struct command_line *cl1;
2764 register int len = 0;
2766 for (cl1 = doclines; cl1; cl1 = cl1->next)
2767 len += strlen (cl1->line) + 1;
2769 c->doc = (char *) xmalloc (len + 1);
2772 for (cl1 = doclines; cl1; cl1 = cl1->next)
2774 strcat (c->doc, cl1->line);
2776 strcat (c->doc, "\n");
2780 free_command_lines (&doclines);
2784 print_gdb_version (stream)
2787 /* From GNU coding standards, first line is meant to be easy for a
2788 program to parse, and is just canonical program name and version
2789 number, which starts after last space. */
2791 fprintf_filtered (stream, "GNU gdb %s\n", version);
2793 /* Second line is a copyright notice. */
2795 fprintf_filtered (stream, "Copyright 1997 Free Software Foundation, Inc.\n");
2797 /* Following the copyright is a brief statement that the program is
2798 free software, that users are free to copy and change it on
2799 certain conditions, that it is covered by the GNU GPL, and that
2800 there is no warranty. */
2802 fprintf_filtered (stream, "\
2803 GDB is free software, covered by the GNU General Public License, and you are\n\
2804 welcome to change it and/or distribute copies of it under certain conditions.\n\
2805 Type \"show copying\" to see the conditions.\n\
2806 There is absolutely no warranty for GDB. Type \"show warranty\" for details.\n");
2808 /* After the required info we print the configuration information. */
2810 fprintf_filtered (stream, "This GDB was configured as \"");
2811 if (!STREQ (host_name, target_name))
2813 fprintf_filtered (stream, "--host=%s --target=%s", host_name, target_name);
2817 fprintf_filtered (stream, "%s", host_name);
2819 fprintf_filtered (stream, "\".");
2824 show_version (args, from_tty)
2829 print_gdb_version (gdb_stdout);
2830 printf_filtered ("\n");
2834 /* xgdb calls this to reprint the usual GDB prompt. Obsolete now that xgdb
2840 printf_unfiltered ("%s", prompt);
2841 gdb_flush (gdb_stdout);
2845 quit_command (args, from_tty)
2851 /* An optional expression may be used to cause gdb to terminate with the
2852 value of that expression. */
2855 value_ptr val = parse_and_eval (args);
2857 exit_code = (int) value_as_long (val);
2860 if (inferior_pid != 0 && target_has_execution)
2864 if (query ("The program is running. Quit anyway (and detach it)? "))
2865 target_detach (args, from_tty);
2867 error ("Not confirmed.");
2871 if (query ("The program is running. Quit anyway (and kill it)? "))
2874 error ("Not confirmed.");
2877 /* UDI wants this, to kill the TIP. */
2880 /* Save the history information if it is appropriate to do so. */
2881 if (write_history_p && history_filename)
2882 write_history (history_filename);
2884 do_final_cleanups(ALL_CLEANUPS); /* Do any final cleanups before exiting */
2889 /* Returns whether GDB is running on a terminal and whether the user
2890 desires that questions be asked of them on that terminal. */
2893 input_from_terminal_p ()
2895 return gdb_has_a_terminal () && (instream == stdin) & caution;
2900 pwd_command (args, from_tty)
2904 if (args) error ("The \"pwd\" command does not take an argument: %s", args);
2905 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
2907 if (!STREQ (gdb_dirbuf, current_directory))
2908 printf_unfiltered ("Working directory %s\n (canonically %s).\n",
2909 current_directory, gdb_dirbuf);
2911 printf_unfiltered ("Working directory %s.\n", current_directory);
2915 cd_command (dir, from_tty)
2920 /* Found something other than leading repetitions of "/..". */
2921 int found_real_path;
2924 /* If the new directory is absolute, repeat is a no-op; if relative,
2925 repeat might be useful but is more likely to be a mistake. */
2929 error_no_arg ("new working directory");
2931 dir = tilde_expand (dir);
2932 make_cleanup (free, dir);
2934 if (chdir (dir) < 0)
2935 perror_with_name (dir);
2938 dir = savestring (dir, len - (len > 1 && SLASH_P(dir[len-1])));
2940 current_directory = dir;
2943 if (SLASH_P (current_directory[0]) && current_directory[1] == '\0')
2944 current_directory = concat (current_directory, dir, NULL);
2946 current_directory = concat (current_directory, SLASH_STRING, dir, NULL);
2950 /* Now simplify any occurrences of `.' and `..' in the pathname. */
2952 found_real_path = 0;
2953 for (p = current_directory; *p;)
2955 if (SLASH_P (p[0]) && p[1] == '.' && (p[2] == 0 || SLASH_P (p[2])))
2957 else if (SLASH_P (p[0]) && p[1] == '.' && p[2] == '.'
2958 && (p[3] == 0 || SLASH_P (p[3])))
2960 if (found_real_path)
2962 /* Search backwards for the directory just before the "/.."
2963 and obliterate it and the "/..". */
2965 while (q != current_directory && ! SLASH_P (q[-1]))
2968 if (q == current_directory)
2969 /* current_directory is
2970 a relative pathname ("can't happen"--leave it alone). */
2974 strcpy (q - 1, p + 3);
2979 /* We are dealing with leading repetitions of "/..", for example
2980 "/../..", which is the Mach super-root. */
2985 found_real_path = 1;
2990 forget_cached_source_info ();
2993 pwd_command ((char *) 0, 1);
2996 struct source_cleanup_lines_args {
2999 char *old_pre_error;
3000 char *old_error_pre_print;
3004 source_cleanup_lines (args)
3007 struct source_cleanup_lines_args *p =
3008 (struct source_cleanup_lines_args *)args;
3009 source_line_number = p->old_line;
3010 source_file_name = p->old_file;
3011 source_pre_error = p->old_pre_error;
3012 error_pre_print = p->old_error_pre_print;
3017 source_command (args, from_tty)
3022 struct cleanup *old_cleanups;
3024 struct source_cleanup_lines_args old_lines;
3029 error ("source command requires pathname of file to source.");
3032 file = tilde_expand (file);
3033 old_cleanups = make_cleanup (free, file);
3035 stream = fopen (file, FOPEN_RT);
3038 perror_with_name (file);
3042 make_cleanup (fclose, stream);
3044 old_lines.old_line = source_line_number;
3045 old_lines.old_file = source_file_name;
3046 old_lines.old_pre_error = source_pre_error;
3047 old_lines.old_error_pre_print = error_pre_print;
3048 make_cleanup (source_cleanup_lines, &old_lines);
3049 source_line_number = 0;
3050 source_file_name = file;
3051 source_pre_error = error_pre_print == NULL ? "" : error_pre_print;
3052 source_pre_error = savestring (source_pre_error, strlen (source_pre_error));
3053 make_cleanup (free, source_pre_error);
3054 /* This will get set every time we read a line. So it won't stay "" for
3056 error_pre_print = "";
3058 needed_length = strlen (source_file_name) + strlen (source_pre_error) + 80;
3059 if (source_error_allocated < needed_length)
3061 source_error_allocated *= 2;
3062 if (source_error_allocated < needed_length)
3063 source_error_allocated = needed_length;
3064 if (source_error == NULL)
3065 source_error = xmalloc (source_error_allocated);
3067 source_error = xrealloc (source_error, source_error_allocated);
3070 read_command_file (stream);
3072 do_cleanups (old_cleanups);
3077 echo_command (text, from_tty)
3085 while ((c = *p++) != '\0')
3089 /* \ at end of argument is used after spaces
3090 so they won't be lost. */
3094 c = parse_escape (&p);
3096 printf_filtered ("%c", c);
3099 printf_filtered ("%c", c);
3102 /* Force this output to appear now. */
3104 gdb_flush (gdb_stdout);
3109 dont_repeat_command (ignored, from_tty)
3113 *line = 0; /* Can't call dont_repeat here because we're not
3114 necessarily reading from stdin. */
3117 /* Functions to manipulate the endianness of the target. */
3119 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3120 #ifndef TARGET_BYTE_ORDER_DEFAULT
3121 #define TARGET_BYTE_ORDER_DEFAULT BIG_ENDIAN
3123 int target_byte_order = TARGET_BYTE_ORDER_DEFAULT;
3124 static int target_byte_order_auto = 1;
3126 static int target_byte_order_auto = 0;
3129 /* Called if the user enters ``set endian'' without an argument. */
3131 set_endian (args, from_tty)
3135 printf_unfiltered ("\"set endian\" must be followed by \"auto\", \"big\" or \"little\".\n");
3136 show_endian (args, from_tty);
3139 /* Called by ``set endian big''. */
3141 set_endian_big (args, from_tty)
3145 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3146 target_byte_order = BIG_ENDIAN;
3147 target_byte_order_auto = 0;
3149 printf_unfiltered ("Byte order is not selectable.");
3150 show_endian (args, from_tty);
3154 /* Called by ``set endian little''. */
3156 set_endian_little (args, from_tty)
3160 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3161 target_byte_order = LITTLE_ENDIAN;
3162 target_byte_order_auto = 0;
3164 printf_unfiltered ("Byte order is not selectable.");
3165 show_endian (args, from_tty);
3169 /* Called by ``set endian auto''. */
3171 set_endian_auto (args, from_tty)
3175 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3176 target_byte_order_auto = 1;
3178 printf_unfiltered ("Byte order is not selectable.");
3179 show_endian (args, from_tty);
3183 /* Called by ``show endian''. */
3185 show_endian (args, from_tty)
3190 (target_byte_order_auto
3191 ? "The target endianness is set automatically (currently %s endian)\n"
3192 : "The target is assumed to be %s endian\n");
3193 printf_unfiltered ((char *) msg, TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3196 /* Set the endianness from a BFD. */
3198 set_endian_from_file (abfd)
3201 #ifdef TARGET_BYTE_ORDER_SELECTABLE
3204 if (bfd_big_endian (abfd))
3207 want = LITTLE_ENDIAN;
3208 if (target_byte_order_auto)
3209 target_byte_order = want;
3210 else if (target_byte_order != want)
3211 warning ("%s endian file does not match %s endian target.",
3212 want == BIG_ENDIAN ? "big" : "little",
3213 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3215 #else /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */
3217 if (bfd_big_endian (abfd)
3218 ? TARGET_BYTE_ORDER != BIG_ENDIAN
3219 : TARGET_BYTE_ORDER == BIG_ENDIAN)
3220 warning ("%s endian file does not match %s endian target.",
3221 bfd_big_endian (abfd) ? "big" : "little",
3222 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3224 #endif /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */
3227 /* Functions to manipulate command line editing control variables. */
3229 /* Number of commands to print in each call to show_commands. */
3230 #define Hist_print 10
3232 show_commands (args, from_tty)
3236 /* Index for history commands. Relative to history_base. */
3239 /* Number of the history entry which we are planning to display next.
3240 Relative to history_base. */
3243 /* The first command in the history which doesn't exist (i.e. one more
3244 than the number of the last command). Relative to history_base. */
3247 extern HIST_ENTRY *history_get PARAMS ((int));
3249 /* Print out some of the commands from the command history. */
3250 /* First determine the length of the history list. */
3251 hist_len = history_size;
3252 for (offset = 0; offset < history_size; offset++)
3254 if (!history_get (history_base + offset))
3263 if (args[0] == '+' && args[1] == '\0')
3264 /* "info editing +" should print from the stored position. */
3267 /* "info editing <exp>" should print around command number <exp>. */
3268 num = (parse_and_eval_address (args) - history_base) - Hist_print / 2;
3270 /* "show commands" means print the last Hist_print commands. */
3273 num = hist_len - Hist_print;
3279 /* If there are at least Hist_print commands, we want to display the last
3280 Hist_print rather than, say, the last 6. */
3281 if (hist_len - num < Hist_print)
3283 num = hist_len - Hist_print;
3288 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
3290 printf_filtered ("%5d %s\n", history_base + offset,
3291 (history_get (history_base + offset))->line);
3294 /* The next command we want to display is the next one that we haven't
3298 /* If the user repeats this command with return, it should do what
3299 "show commands +" does. This is unnecessary if arg is null,
3300 because "show commands +" is not useful after "show commands". */
3301 if (from_tty && args)
3308 /* Called by do_setshow_command. */
3311 set_history_size_command (args, from_tty, c)
3314 struct cmd_list_element *c;
3316 if (history_size == INT_MAX)
3317 unstifle_history ();
3318 else if (history_size >= 0)
3319 stifle_history (history_size);
3322 history_size = INT_MAX;
3323 error ("History size must be non-negative");
3329 set_history (args, from_tty)
3333 printf_unfiltered ("\"set history\" must be followed by the name of a history subcommand.\n");
3334 help_list (sethistlist, "set history ", -1, gdb_stdout);
3339 show_history (args, from_tty)
3343 cmd_show_list (showhistlist, from_tty, "");
3346 int info_verbose = 0; /* Default verbose msgs off */
3348 /* Called by do_setshow_command. An elaborate joke. */
3351 set_verbose (args, from_tty, c)
3354 struct cmd_list_element *c;
3356 char *cmdname = "verbose";
3357 struct cmd_list_element *showcmd;
3359 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
3363 c->doc = "Set verbose printing of informational messages.";
3364 showcmd->doc = "Show verbose printing of informational messages.";
3368 c->doc = "Set verbosity.";
3369 showcmd->doc = "Show verbosity.";
3374 float_handler (signo)
3377 /* This message is based on ANSI C, section 4.7. Note that integer
3378 divide by zero causes this, so "float" is a misnomer. */
3379 signal (SIGFPE, float_handler);
3380 error ("Erroneous arithmetic operation.");
3392 enablebreaklist = NULL;
3398 showhistlist = NULL;
3399 unsethistlist = NULL;
3400 #if MAINTENANCE_CMDS
3401 maintenancelist = NULL;
3402 maintenanceinfolist = NULL;
3403 maintenanceprintlist = NULL;
3405 setprintlist = NULL;
3406 showprintlist = NULL;
3407 setchecklist = NULL;
3408 showchecklist = NULL;
3411 /* Init the history buffer. Note that we are called after the init file(s)
3412 * have been read so that the user can change the history file via his
3413 * .gdbinit file (for instance). The GDBHISTFILE environment variable
3414 * overrides all of this.
3422 tmpenv = getenv ("HISTSIZE");
3424 history_size = atoi (tmpenv);
3425 else if (!history_size)
3428 stifle_history (history_size);
3430 tmpenv = getenv ("GDBHISTFILE");
3432 history_filename = savestring (tmpenv, strlen(tmpenv));
3433 else if (!history_filename) {
3434 /* We include the current directory so that if the user changes
3435 directories the file written will be the same as the one
3437 history_filename = concat (current_directory, "/.gdb_history", NULL);
3439 read_history (history_filename);
3445 struct cmd_list_element *c;
3447 add_prefix_cmd ("endian", class_support, set_endian,
3448 "Set endianness of target.",
3449 &endianlist, "set endian ", 0, &setlist);
3450 add_cmd ("big", class_support, set_endian_big,
3451 "Set target as being big endian.", &endianlist);
3452 add_cmd ("little", class_support, set_endian_little,
3453 "Set target as being little endian.", &endianlist);
3454 add_cmd ("auto", class_support, set_endian_auto,
3455 "Select target endianness automatically.", &endianlist);
3456 add_cmd ("endian", class_support, show_endian,
3457 "Show endianness of target.", &showlist);
3459 #ifdef DEFAULT_PROMPT
3460 prompt = savestring (DEFAULT_PROMPT, strlen(DEFAULT_PROMPT));
3462 prompt = savestring ("(gdb) ", 6);
3465 /* Set the important stuff up for command editing. */
3466 command_editing_p = 1;
3467 history_expansion_p = 0;
3468 write_history_p = 0;
3470 /* Setup important stuff for command line editing. */
3471 rl_completion_entry_function = (int (*)()) readline_line_completion_function;
3472 rl_completer_word_break_characters = gdb_completer_word_break_characters;
3473 rl_completer_quote_characters = gdb_completer_quote_characters;
3474 rl_readline_name = "gdb";
3476 /* Define the classes of commands.
3477 They will appear in the help list in the reverse of this order. */
3479 add_cmd ("internals", class_maintenance, NO_FUNCTION,
3480 "Maintenance commands.\n\
3481 Some gdb commands are provided just for use by gdb maintainers.\n\
3482 These commands are subject to frequent change, and may not be as\n\
3483 well documented as user commands.",
3485 add_cmd ("obscure", class_obscure, NO_FUNCTION, "Obscure features.", &cmdlist);
3486 add_cmd ("aliases", class_alias, NO_FUNCTION, "Aliases of other commands.", &cmdlist);
3487 add_cmd ("user-defined", class_user, NO_FUNCTION, "User-defined commands.\n\
3488 The commands in this class are those defined by the user.\n\
3489 Use the \"define\" command to define a command.", &cmdlist);
3490 add_cmd ("support", class_support, NO_FUNCTION, "Support facilities.", &cmdlist);
3491 add_cmd ("status", class_info, NO_FUNCTION, "Status inquiries.", &cmdlist);
3492 add_cmd ("files", class_files, NO_FUNCTION, "Specifying and examining files.", &cmdlist);
3493 add_cmd ("breakpoints", class_breakpoint, NO_FUNCTION, "Making program stop at certain points.", &cmdlist);
3494 add_cmd ("data", class_vars, NO_FUNCTION, "Examining data.", &cmdlist);
3495 add_cmd ("stack", class_stack, NO_FUNCTION, "Examining the stack.\n\
3496 The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
3497 counting from zero for the innermost (currently executing) frame.\n\n\
3498 At any time gdb identifies one frame as the \"selected\" frame.\n\
3499 Variable lookups are done with respect to the selected frame.\n\
3500 When the program being debugged stops, gdb selects the innermost frame.\n\
3501 The commands below can be used to select other frames by number or address.",
3503 add_cmd ("running", class_run, NO_FUNCTION, "Running the program.", &cmdlist);
3505 add_com ("pwd", class_files, pwd_command,
3506 "Print working directory. This is used for your program as well.");
3507 c = add_cmd ("cd", class_files, cd_command,
3508 "Set working directory to DIR for debugger and program being debugged.\n\
3509 The change does not take effect for the program being debugged\n\
3510 until the next time it is started.", &cmdlist);
3511 c->completer = filename_completer;
3514 (add_set_cmd ("prompt", class_support, var_string, (char *)&prompt,
3519 add_com ("echo", class_support, echo_command,
3520 "Print a constant string. Give string as argument.\n\
3521 C escape sequences may be used in the argument.\n\
3522 No newline is added at the end of the argument;\n\
3523 use \"\\n\" if you want a newline to be printed.\n\
3524 Since leading and trailing whitespace are ignored in command arguments,\n\
3525 if you want to print some you must use \"\\\" before leading whitespace\n\
3526 to be printed or after trailing whitespace.");
3527 add_com ("document", class_support, document_command,
3528 "Document a user-defined command.\n\
3529 Give command name as argument. Give documentation on following lines.\n\
3530 End with a line of just \"end\".");
3531 add_com ("define", class_support, define_command,
3532 "Define a new command name. Command name is argument.\n\
3533 Definition appears on following lines, one command per line.\n\
3534 End with a line of just \"end\".\n\
3535 Use the \"document\" command to give documentation for the new command.\n\
3536 Commands defined in this way may have up to ten arguments.");
3539 c = add_cmd ("source", class_support, source_command,
3540 "Read commands from a file named FILE.\n\
3541 Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
3542 when gdb is started.", &cmdlist);
3544 /* Punt file name, we can't help it easily. */
3545 c = add_cmd ("source", class_support, source_command,
3546 "Read commands from a file named FILE.\n\
3547 Note that the file \".gdbinit\" is read automatically in this way\n\
3548 when gdb is started.", &cmdlist);
3550 c->completer = filename_completer;
3552 add_com ("quit", class_support, quit_command, "Exit gdb.");
3553 add_com ("help", class_support, help_command, "Print list of commands.");
3554 add_com_alias ("q", "quit", class_support, 1);
3555 add_com_alias ("h", "help", class_support, 1);
3557 add_com ("dont-repeat", class_support, dont_repeat_command, "Don't repeat this command.\n\
3558 Primarily used inside of user-defined commands that should not be repeated when\n\
3561 c = add_set_cmd ("verbose", class_support, var_boolean, (char *)&info_verbose,
3564 add_show_from_set (c, &showlist);
3565 c->function.sfunc = set_verbose;
3566 set_verbose (NULL, 0, c);
3569 (add_set_cmd ("editing", class_support, var_boolean, (char *)&command_editing_p,
3570 "Set editing of command lines as they are typed.\n\
3571 Use \"on\" to enable the editing, and \"off\" to disable it.\n\
3572 Without an argument, command line editing is enabled. To edit, use\n\
3573 EMACS-like or VI-like commands like control-P or ESC.", &setlist),
3576 add_prefix_cmd ("history", class_support, set_history,
3577 "Generic command for setting command history parameters.",
3578 &sethistlist, "set history ", 0, &setlist);
3579 add_prefix_cmd ("history", class_support, show_history,
3580 "Generic command for showing command history parameters.",
3581 &showhistlist, "show history ", 0, &showlist);
3584 (add_set_cmd ("expansion", no_class, var_boolean, (char *)&history_expansion_p,
3585 "Set history expansion on command input.\n\
3586 Without an argument, history expansion is enabled.", &sethistlist),
3590 (add_set_cmd ("save", no_class, var_boolean, (char *)&write_history_p,
3591 "Set saving of the history record on exit.\n\
3592 Use \"on\" to enable the saving, and \"off\" to disable it.\n\
3593 Without an argument, saving is enabled.", &sethistlist),
3596 c = add_set_cmd ("size", no_class, var_integer, (char *)&history_size,
3597 "Set the size of the command history, \n\
3598 ie. the number of previous commands to keep a record of.", &sethistlist);
3599 add_show_from_set (c, &showhistlist);
3600 c->function.sfunc = set_history_size_command;
3603 (add_set_cmd ("filename", no_class, var_filename, (char *)&history_filename,
3604 "Set the filename in which to record the command history\n\
3605 (the list of previous commands of which a record is kept).", &sethistlist),
3609 (add_set_cmd ("confirm", class_support, var_boolean,
3611 "Set whether to confirm potentially dangerous operations.",
3615 add_prefix_cmd ("info", class_info, info_command,
3616 "Generic command for showing things about the program being debugged.",
3617 &infolist, "info ", 0, &cmdlist);
3618 add_com_alias ("i", "info", class_info, 1);
3620 add_com ("complete", class_obscure, complete_command,
3621 "List the completions for the rest of the line as a command.");
3623 add_prefix_cmd ("show", class_info, show_command,
3624 "Generic command for showing things about the debugger.",
3625 &showlist, "show ", 0, &cmdlist);
3626 /* Another way to get at the same thing. */
3627 add_info ("set", show_command, "Show all GDB settings.");
3629 add_cmd ("commands", no_class, show_commands,
3630 "Show the history of commands you typed.\n\
3631 You can supply a command number to start with, or a `+' to start after\n\
3632 the previous command number shown.",
3635 add_cmd ("version", no_class, show_version,
3636 "Show what version of GDB this is.", &showlist);
3638 add_com ("while", class_support, while_command,
3639 "Execute nested commands WHILE the conditional expression is non zero.\n\
3640 The conditional expression must follow the word `while' and must in turn be\n\
3641 followed by a new line. The nested commands must be entered one per line,\n\
3642 and should be terminated by the word `end'.");
3644 add_com ("if", class_support, if_command,
3645 "Execute nested commands once IF the conditional expression is non zero.\n\
3646 The conditional expression must follow the word `if' and must in turn be\n\
3647 followed by a new line. The nested commands must be entered one per line,\n\
3648 and should be terminated by the word 'else' or `end'. If an else clause\n\
3649 is used, the same rules apply to its nested commands as to the first ones.");
3651 /* If target is open when baud changes, it doesn't take effect until the
3652 next open (I think, not sure). */
3653 add_show_from_set (add_set_cmd ("remotebaud", no_class,
3654 var_zinteger, (char *)&baud_rate,
3655 "Set baud rate for remote serial I/O.\n\
3656 This value is used to set the speed of the serial port when debugging\n\
3657 using remote targets.", &setlist),
3661 add_set_cmd ("remotedebug", no_class, var_zinteger, (char *)&remote_debug,
3662 "Set debugging of remote protocol.\n\
3663 When enabled, each packet sent or received with the remote target\n\
3664 is displayed.", &setlist),
3668 add_set_cmd ("remotetimeout", no_class, var_integer, (char *)&remote_timeout,
3669 "Set timeout limit to wait for target to respond.\n\
3670 This value is used to set the time limit for gdb to wait for a response\n\
3671 from he target.", &setlist),
3674 c = add_set_cmd ("annotate", class_obscure, var_zinteger,
3675 (char *)&annotation_level, "Set annotation_level.\n\
3676 0 == normal; 1 == fullname (for use when running under emacs)\n\
3677 2 == output annotated suitably for use by programs that control GDB.",
3679 c = add_show_from_set (c, &showlist);