1 /* Top level `main' program for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
23 #include "call-cmds.h"
28 #include "breakpoint.h"
30 #include "expression.h"
32 #include "serial.h" /* For job_control. */
36 /* readline include files */
40 /* readline defines this. */
44 #include <sys/types.h>
53 #include <sys/param.h>
57 #ifdef SET_STACK_LIMIT_HUGE
59 #include <sys/resource.h>
61 int original_stack_limit;
64 /* Prototypes for local functions */
67 symbol_completion_function PARAMS ((char *, int));
70 command_loop PARAMS ((void));
73 command_loop_marker PARAMS ((int));
76 print_gdb_version PARAMS ((FILE *));
79 quit_command PARAMS ((char *, int));
82 init_main PARAMS ((void));
85 init_history PARAMS ((void));
88 init_cmd_lists PARAMS ((void));
91 float_handler PARAMS ((int));
94 source_command PARAMS ((char *, int));
96 static void cd_command PARAMS ((char *, int));
99 print_gnu_advertisement PARAMS ((void));
102 init_signals PARAMS ((void));
105 read_command_file PARAMS ((FILE *));
108 set_verbose PARAMS ((char *, int, struct cmd_list_element *));
111 show_history PARAMS ((char *, int));
114 set_history PARAMS ((char *, int));
117 set_history_size_command PARAMS ((char *, int, struct cmd_list_element *));
120 show_commands PARAMS ((char *, int));
123 echo_command PARAMS ((char *, int));
126 pwd_command PARAMS ((char *, int));
129 show_version PARAMS ((char *, int));
132 document_command PARAMS ((char *, int));
135 define_command PARAMS ((char *, int));
138 validate_comname PARAMS ((char *));
141 help_command PARAMS ((char *, int));
144 show_command PARAMS ((char *, int));
147 info_command PARAMS ((char *, int));
150 do_nothing PARAMS ((int));
153 quit_cover PARAMS ((char *));
156 disconnect PARAMS ((int));
159 source_cleanup PARAMS ((FILE *));
161 /* If this definition isn't overridden by the header files, assume
162 that isatty and fileno exist on this system. */
164 #define ISATTY(FP) (isatty (fileno (FP)))
167 /* Initialization file name for gdb. This is overridden in some configs. */
169 #ifndef GDBINIT_FILENAME
170 #define GDBINIT_FILENAME ".gdbinit"
172 static char gdbinit[] = GDBINIT_FILENAME;
173 static int inhibit_gdbinit = 0;
175 #define ALL_CLEANUPS ((struct cleanup *)0)
177 /* Version number of GDB, as a string. */
179 extern char *version;
181 /* Canonical host name as a string. */
183 extern char *host_canonical;
185 /* Canonical target name as a string. */
187 extern char *target_canonical;
189 /* Message to be printed before the error message, when an error occurs. */
191 extern char *error_pre_print;
193 /* Message to be printed before the warning message, when a warning occurs. */
195 extern char *warning_pre_print;
197 extern char lang_frame_mismatch_warn[]; /* language.c */
199 /* Flag for whether we want all the "from_tty" gubbish printed. */
201 int caution = 1; /* Default is yes, sigh. */
204 * Define all cmd_list_element's
207 /* Chain containing all defined commands. */
209 struct cmd_list_element *cmdlist;
211 /* Chain containing all defined info subcommands. */
213 struct cmd_list_element *infolist;
215 /* Chain containing all defined enable subcommands. */
217 struct cmd_list_element *enablelist;
219 /* Chain containing all defined disable subcommands. */
221 struct cmd_list_element *disablelist;
223 /* Chain containing all defined delete subcommands. */
225 struct cmd_list_element *deletelist;
227 /* Chain containing all defined "enable breakpoint" subcommands. */
229 struct cmd_list_element *enablebreaklist;
231 /* Chain containing all defined set subcommands */
233 struct cmd_list_element *setlist;
235 /* Chain containing all defined unset subcommands */
237 struct cmd_list_element *unsetlist;
239 /* Chain containing all defined show subcommands. */
241 struct cmd_list_element *showlist;
243 /* Chain containing all defined \"set history\". */
245 struct cmd_list_element *sethistlist;
247 /* Chain containing all defined \"show history\". */
249 struct cmd_list_element *showhistlist;
251 /* Chain containing all defined \"unset history\". */
253 struct cmd_list_element *unsethistlist;
255 /* Chain containing all defined maintenance subcommands. */
258 struct cmd_list_element *maintenancelist;
261 /* Chain containing all defined "maintenance info" subcommands. */
264 struct cmd_list_element *maintenanceinfolist;
267 /* Chain containing all defined "maintenance print" subcommands. */
270 struct cmd_list_element *maintenanceprintlist;
273 struct cmd_list_element *setprintlist;
275 struct cmd_list_element *showprintlist;
277 struct cmd_list_element *setchecklist;
279 struct cmd_list_element *showchecklist;
281 /* stdio stream that command input is being read from. */
285 /* Current working directory. */
287 char *current_directory;
289 /* The directory name is actually stored here (usually). */
290 static char dirbuf[1024];
292 /* Function to call before reading a command, if nonzero.
293 The function receives two args: an input stream,
294 and a prompt string. */
296 void (*window_hook) PARAMS ((FILE *, char *));
298 extern int mapped_symbol_files;
299 extern int readnow_symbol_files;
304 /* gdb prints this when reading a command interactively */
307 /* Buffer used for reading command lines, and the size
308 allocated for it so far. */
313 /* Baud rate specified for talking to serial target systems. Default
314 is left as a zero pointer, so targets can choose their own defaults. */
318 /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
322 #define STOP_SIGNAL SIGTSTP
323 static void stop_sig PARAMS ((int));
327 /* Some System V have job control but not sigsetmask(). */
328 #if !defined (HAVE_SIGSETMASK)
329 #define HAVE_SIGSETMASK !defined (USG)
332 #if 0 == (HAVE_SIGSETMASK)
333 #define sigsetmask(n)
336 /* Where to go for return_to_top_level (RETURN_ERROR). */
337 static jmp_buf error_return;
338 /* Where to go for return_to_top_level (RETURN_QUIT). */
339 static jmp_buf quit_return;
341 /* Temporary variable for SET_TOP_LEVEL. */
342 static int top_level_val;
344 /* Do a setjmp on error_return and quit_return. catch_errors is
345 generally a cleaner way to do this, but main() would look pretty
346 ugly if it had to use catch_errors each time. */
348 #define SET_TOP_LEVEL() \
349 (((top_level_val = setjmp (error_return)) \
350 ? (PTR) 0 : (PTR) memcpy (quit_return, error_return, sizeof (jmp_buf))) \
353 /* Return for reason REASON. This generally gets back to the command
354 loop, but can be caught via catch_errors. */
357 return_to_top_level (reason)
358 enum return_reason reason;
363 /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
364 I can think of a reason why that is vital, though). */
365 bpstat_clear_actions(stop_bpstat); /* Clear queued breakpoint commands */
367 disable_current_display ();
368 do_cleanups (ALL_CLEANUPS);
369 (NORETURN void) longjmp
370 (reason == RETURN_ERROR ? error_return : quit_return, 1);
373 /* Call FUNC with arg ARGS, catching any errors. If there is no
374 error, return the value returned by FUNC. If there is an error,
375 print ERRSTRING, print the specific error message, then return
378 MASK specifies what to catch; it is normally set to
379 RETURN_MASK_ALL, if for no other reason than that the code which
380 calls catch_errors might not be set up to deal with a quit which
381 isn't caught. But if the code can deal with it, it generally
382 should be RETURN_MASK_ERROR, unless for some reason it is more
383 useful to abort only the portion of the operation inside the
384 catch_errors. Note that quit should return to the command line
385 fairly quickly, even if some further processing is being done. */
388 catch_errors (func, args, errstring, mask)
389 int (*func) PARAMS ((char *));
398 struct cleanup *saved_cleanup_chain;
399 char *saved_error_pre_print;
401 saved_cleanup_chain = save_cleanups ();
402 saved_error_pre_print = error_pre_print;
404 if (mask & RETURN_MASK_ERROR)
405 memcpy ((char *)saved_error, (char *)error_return, sizeof (jmp_buf));
406 if (mask & RETURN_MASK_QUIT)
407 memcpy (saved_quit, quit_return, sizeof (jmp_buf));
408 error_pre_print = errstring;
410 if (setjmp (tmp_jmp) == 0)
412 if (mask & RETURN_MASK_ERROR)
413 memcpy (error_return, tmp_jmp, sizeof (jmp_buf));
414 if (mask & RETURN_MASK_QUIT)
415 memcpy (quit_return, tmp_jmp, sizeof (jmp_buf));
416 val = (*func) (args);
421 restore_cleanups (saved_cleanup_chain);
423 error_pre_print = saved_error_pre_print;
424 if (mask & RETURN_MASK_ERROR)
425 memcpy (error_return, saved_error, sizeof (jmp_buf));
426 if (mask & RETURN_MASK_QUIT)
427 memcpy (quit_return, saved_quit, sizeof (jmp_buf));
431 /* Handler for SIGHUP. */
437 catch_errors (quit_cover, NULL,
438 "Could not kill the program being debugged", RETURN_MASK_ALL);
439 signal (SIGHUP, SIG_DFL);
440 kill (getpid (), SIGHUP);
443 /* Just a little helper function for disconnect(). */
449 caution = 0; /* Throw caution to the wind -- we're exiting.
450 This prevents asking the user dumb questions. */
451 quit_command((char *)0, 0);
455 /* Clean up on error during a "source" command (or execution of a
456 user-defined command). */
459 source_cleanup (stream)
462 /* Restore the previous input stream. */
466 /* Read commands from STREAM. */
468 read_command_file (stream)
471 struct cleanup *cleanups;
473 cleanups = make_cleanup (source_cleanup, instream);
476 do_cleanups (cleanups);
485 static int quiet = 0;
486 static int batch = 0;
488 /* Pointers to various arguments from command line. */
490 char *execarg = NULL;
491 char *corearg = NULL;
495 /* These are static so that we can take their address in an initializer. */
496 static int print_help;
497 static int print_version;
499 /* Pointers to all arguments of --command option. */
501 /* Allocated size of cmdarg. */
503 /* Number of elements of cmdarg used. */
506 /* Indices of all arguments of --directory option. */
508 /* Allocated size. */
510 /* Number of elements used. */
513 struct stat homebuf, cwdbuf;
514 char *homedir, *homeinit;
518 /* This needs to happen before the first use of malloc. */
519 init_malloc ((PTR) NULL);
521 #if defined (ALIGN_STACK_ON_STARTUP)
522 i = (int) &count & 0x3;
527 /* If error() is called from initialization code, just exit */
528 if (SET_TOP_LEVEL ()) {
533 cmdarg = (char **) xmalloc (cmdsize * sizeof (*cmdarg));
536 dirarg = (char **) xmalloc (dirsize * sizeof (*dirarg));
540 line = (char *) xmalloc (linesize);
541 line[0] = '\0'; /* Terminate saved (now empty) cmd line */
544 getcwd (dirbuf, sizeof (dirbuf));
545 current_directory = dirbuf;
547 #ifdef SET_STACK_LIMIT_HUGE
551 /* Set the stack limit huge so that alloca (particularly stringtab
552 * in dbxread.c) does not fail. */
553 getrlimit (RLIMIT_STACK, &rlim);
554 original_stack_limit = rlim.rlim_cur;
555 rlim.rlim_cur = rlim.rlim_max;
556 setrlimit (RLIMIT_STACK, &rlim);
558 #endif /* SET_STACK_LIMIT_HUGE */
560 /* Parse arguments and options. */
563 /* When var field is 0, use flag field to record the equivalent
564 short option (or arbitrary numbers starting at 10 for those
565 with no equivalent). */
566 static struct option long_options[] =
568 {"readnow", no_argument, &readnow_symbol_files, 1},
569 {"r", no_argument, &readnow_symbol_files, 1},
570 {"mapped", no_argument, &mapped_symbol_files, 1},
571 {"m", no_argument, &mapped_symbol_files, 1},
572 {"quiet", no_argument, &quiet, 1},
573 {"q", no_argument, &quiet, 1},
574 {"silent", no_argument, &quiet, 1},
575 {"nx", no_argument, &inhibit_gdbinit, 1},
576 {"n", no_argument, &inhibit_gdbinit, 1},
577 {"batch", no_argument, &batch, 1},
578 {"epoch", no_argument, &epoch_interface, 1},
579 {"fullname", no_argument, &frame_file_full_name, 1},
580 {"f", no_argument, &frame_file_full_name, 1},
581 {"help", no_argument, &print_help, 1},
582 {"se", required_argument, 0, 10},
583 {"symbols", required_argument, 0, 's'},
584 {"s", required_argument, 0, 's'},
585 {"exec", required_argument, 0, 'e'},
586 {"e", required_argument, 0, 'e'},
587 {"core", required_argument, 0, 'c'},
588 {"c", required_argument, 0, 'c'},
589 {"command", required_argument, 0, 'x'},
590 {"version", no_argument, &print_version, 1},
591 {"x", required_argument, 0, 'x'},
592 {"directory", required_argument, 0, 'd'},
593 {"cd", required_argument, 0, 11},
594 {"tty", required_argument, 0, 't'},
595 {"baud", required_argument, 0, 'b'},
596 {"b", required_argument, 0, 'b'},
597 /* Allow machine descriptions to add more options... */
598 #ifdef ADDITIONAL_OPTIONS
601 {0, no_argument, 0, 0},
608 c = getopt_long_only (argc, argv, "",
609 long_options, &option_index);
613 /* Long option that takes an argument. */
614 if (c == 0 && long_options[option_index].flag == 0)
615 c = long_options[option_index].val;
620 /* Long option that just sets a flag. */
639 cmdarg[ncmd++] = optarg;
643 cmdarg = (char **) xrealloc ((char *)cmdarg,
644 cmdsize * sizeof (*cmdarg));
648 dirarg[ndir++] = optarg;
652 dirarg = (char **) xrealloc ((char *)dirarg,
653 dirsize * sizeof (*dirarg));
665 #ifdef ADDITIONAL_OPTION_CASES
666 ADDITIONAL_OPTION_CASES
670 "Use `%s --help' for a complete list of options.\n",
676 /* OK, that's all the options. The other arguments are filenames. */
678 for (; optind < argc; optind++)
682 symarg = argv[optind];
683 execarg = argv[optind];
686 corearg = argv[optind];
690 "Excess command line arguments ignored. (%s%s)\n",
691 argv[optind], (optind == argc - 1) ? "" : " ...");
698 /* Run the init function of each source file */
700 init_cmd_lists (); /* This needs to be done first */
701 initialize_all_files ();
702 init_main (); /* But that omits this file! Do it now */
705 /* Do these (and anything which might call wrap_here or *_filtered)
706 after initialize_all_files. */
709 print_gdb_version (stdout);
711 printf_filtered ("\n");
717 /* --version is intentionally not documented here, because we
718 are printing the version here, and the help is long enough
721 print_gdb_version (stdout);
722 /* Make sure the output gets printed. */
724 printf_filtered ("\n");
726 /* But don't use *_filtered here. We don't want to prompt for continue
727 no matter how small the screen or how much we're going to print. */
729 This is the GNU debugger. Usage:\n\
730 gdb [options] [executable-file [core-file or process-id]]\n\
732 --help Print this message.\n\
733 --quiet Do not print version number on startup.\n\
734 --fullname Output information used by emacs-GDB interface.\n\
735 --epoch Output information used by epoch emacs-GDB interface.\n\
736 --batch Exit after processing options.\n\
737 --nx Do not read .gdbinit file.\n\
738 --tty=TTY Use TTY for input/output by the program being debugged.\n\
739 --cd=DIR Change current directory to DIR.\n\
740 --directory=DIR Search for source files in DIR.\n\
741 --command=FILE Execute GDB commands from FILE.\n\
742 --symbols=SYMFILE Read symbols from SYMFILE.\n\
743 --exec=EXECFILE Use EXECFILE as the executable.\n\
744 --se=FILE Use FILE as symbol file and executable file.\n\
745 --core=COREFILE Analyze the core dump COREFILE.\n\
746 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
747 --mapped Use mapped symbol files if supported on this system.\n\
748 --readnow Fully read symbol files on first access.\n\
750 #ifdef ADDITIONAL_OPTION_HELP
751 fputs (ADDITIONAL_OPTION_HELP, stdout);
754 For more information, type \"help\" from within GDB, or consult the\n\
755 GDB manual (available as on-line info or a printed manual).\n", stdout);
761 /* Print all the junk at the top, with trailing "..." if we are about
762 to read a symbol file (possibly slowly). */
763 print_gnu_advertisement ();
764 print_gdb_version (stdout);
766 printf_filtered ("..");
768 fflush (stdout); /* Force to screen during slow operations */
771 error_pre_print = "\n\n";
772 /* We may get more than one warning, don't double space all of them... */
773 warning_pre_print = "\nwarning: ";
775 /* We need a default language for parsing expressions, so simple things like
776 "set width 0" won't fail if no language is explicitly set in a config file
777 or implicitly set by reading an executable during startup. */
778 set_language (language_c);
779 expected_language = current_language; /* don't warn about the change. */
781 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
782 *before* all the command line arguments are processed; it sets
783 global parameters, which are independent of what file you are
784 debugging or what directory you are in. */
785 homedir = getenv ("HOME");
788 homeinit = (char *) alloca (strlen (getenv ("HOME")) +
789 strlen (gdbinit) + 10);
790 strcpy (homeinit, getenv ("HOME"));
791 strcat (homeinit, "/");
792 strcat (homeinit, gdbinit);
793 if (!inhibit_gdbinit && access (homeinit, R_OK) == 0)
795 if (!SET_TOP_LEVEL ())
796 source_command (homeinit, 0);
798 do_cleanups (ALL_CLEANUPS);
800 /* Do stats; no need to do them elsewhere since we'll only
801 need them if homedir is set. Make sure that they are
802 zero in case one of them fails (this guarantees that they
803 won't match if either exists). */
805 memset (&homebuf, 0, sizeof (struct stat));
806 memset (&cwdbuf, 0, sizeof (struct stat));
808 stat (homeinit, &homebuf);
809 stat (gdbinit, &cwdbuf); /* We'll only need this if
813 /* Now perform all the actions indicated by the arguments. */
816 if (!SET_TOP_LEVEL ())
818 cd_command (cdarg, 0);
822 do_cleanups (ALL_CLEANUPS);
824 for (i = 0; i < ndir; i++)
825 if (!SET_TOP_LEVEL ())
826 directory_command (dirarg[i], 0);
828 do_cleanups (ALL_CLEANUPS);
832 && STREQ (execarg, symarg))
834 /* The exec file and the symbol-file are the same. If we can't open
835 it, better only print one error message. */
836 if (!SET_TOP_LEVEL ())
838 exec_file_command (execarg, !batch);
839 symbol_file_command (symarg, 0);
845 if (!SET_TOP_LEVEL ())
846 exec_file_command (execarg, !batch);
848 if (!SET_TOP_LEVEL ())
849 symbol_file_command (symarg, 0);
851 do_cleanups (ALL_CLEANUPS);
853 /* After the symbol file has been read, print a newline to get us
854 beyond the copyright line... But errors should still set off
855 the error message with a (single) blank line. */
857 printf_filtered ("\n");
858 error_pre_print = "\n";
859 warning_pre_print = "\nwarning: ";
862 if (!SET_TOP_LEVEL ())
863 core_file_command (corearg, !batch);
864 else if (isdigit (corearg[0]) && !SET_TOP_LEVEL ())
865 attach_command (corearg, !batch);
866 do_cleanups (ALL_CLEANUPS);
869 if (!SET_TOP_LEVEL ())
870 tty_command (ttyarg, !batch);
871 do_cleanups (ALL_CLEANUPS);
873 #ifdef ADDITIONAL_OPTION_HANDLER
874 ADDITIONAL_OPTION_HANDLER;
877 /* Error messages should no longer be distinguished with extra output. */
879 warning_pre_print = "warning: ";
881 /* Read the .gdbinit file in the current directory, *if* it isn't
882 the same as the $HOME/.gdbinit file (it should exist, also). */
885 || memcmp ((char *) &homebuf, (char *) &cwdbuf, sizeof (struct stat)))
886 if (!inhibit_gdbinit && access (gdbinit, R_OK) == 0)
888 if (!SET_TOP_LEVEL ())
889 source_command (gdbinit, 0);
891 do_cleanups (ALL_CLEANUPS);
893 for (i = 0; i < ncmd; i++)
895 if (!SET_TOP_LEVEL ())
897 if (cmdarg[i][0] == '-' && cmdarg[i][1] == '\0')
898 read_command_file (stdin);
900 source_command (cmdarg[i], !batch);
901 do_cleanups (ALL_CLEANUPS);
906 /* Read in the old history after all the command files have been read. */
911 /* We have hit the end of the batch file. */
915 /* Do any host- or target-specific hacks. This is used for i960 targets
916 to force the user to set a nindy target and spec its parameters. */
918 #ifdef BEFORE_MAIN_LOOP_HOOK
919 BEFORE_MAIN_LOOP_HOOK;
922 /* The command loop. */
926 if (!SET_TOP_LEVEL ())
928 do_cleanups (ALL_CLEANUPS); /* Do complete cleanup */
930 quit_command ((char *)0, instream == stdin);
933 /* No exit -- exit is through quit_command. */
937 execute_user_command (c, args)
938 struct cmd_list_element *c;
941 register struct command_line *cmdlines;
942 struct cleanup *old_chain;
945 error ("User-defined commands cannot take arguments.");
947 cmdlines = c->user_commands;
952 /* Set the instream to 0, indicating execution of a
953 user-defined function. */
954 old_chain = make_cleanup (source_cleanup, instream);
955 instream = (FILE *) 0;
958 execute_command (cmdlines->line, 0);
959 cmdlines = cmdlines->next;
961 do_cleanups (old_chain);
964 /* Execute the line P as a command.
965 Pass FROM_TTY as second argument to the defining function. */
968 execute_command (p, from_tty)
972 register struct cmd_list_element *c;
973 register enum language flang;
974 static int warned = 0;
978 /* This can happen when command_line_input hits end of file. */
982 while (*p == ' ' || *p == '\t') p++;
987 c = lookup_cmd (&p, cmdlist, "", 0, 1);
988 /* Pass null arg rather than an empty one. */
991 /* If this command has been hooked, run the hook first. */
993 execute_user_command (c->hook, (char *)0);
995 if (c->class == class_user)
996 execute_user_command (c, arg);
997 else if (c->type == set_cmd || c->type == show_cmd)
998 do_setshow_command (arg, from_tty & caution, c);
999 else if (c->function.cfunc == NO_FUNCTION)
1000 error ("That is not a command, just a help topic.");
1002 (*c->function.cfunc) (arg, from_tty & caution);
1005 /* Tell the user if the language has changed (except first time). */
1006 if (current_language != expected_language)
1008 if (language_mode == language_mode_auto) {
1009 language_info (1); /* Print what changed. */
1014 /* Warn the user if the working language does not match the
1015 language of the current frame. Only warn the user if we are
1016 actually running the program, i.e. there is a stack. */
1017 /* FIXME: This should be cacheing the frame and only running when
1018 the frame changes. */
1019 if (target_has_stack)
1021 flang = get_frame_language ();
1023 && flang != language_unknown
1024 && flang != current_language->la_language)
1026 printf_filtered ("%s\n", lang_frame_mismatch_warn);
1034 command_loop_marker (foo)
1039 /* Read commands from `instream' and execute them
1040 until end of file or error reading instream. */
1044 struct cleanup *old_chain;
1046 int stdin_is_tty = ISATTY (stdin);
1048 while (!feof (instream))
1050 if (window_hook && instream == stdin)
1051 (*window_hook) (instream, prompt);
1054 if (instream == stdin && stdin_is_tty)
1055 reinitialize_more_filter ();
1056 old_chain = make_cleanup (command_loop_marker, 0);
1057 command = command_line_input (instream == stdin ? prompt : (char *) NULL,
1061 execute_command (command, instream == stdin);
1062 /* Do any commands attached to breakpoint we stopped at. */
1063 bpstat_do_actions (&stop_bpstat);
1064 do_cleanups (old_chain);
1068 /* Commands call this if they do not want to be repeated by null lines. */
1073 /* If we aren't reading from standard input, we are saving the last
1074 thing read from stdin in line and don't want to delete it. Null lines
1075 won't repeat here in any case. */
1076 if (instream == stdin)
1080 /* Read a line from the stream "instream" without command line editing.
1082 It prints PRROMPT once at the start.
1083 Action is compatible with "readline", e.g. space for the result is
1084 malloc'd and should be freed by the caller.
1086 A NULL return means end of file. */
1088 gdb_readline (prrompt)
1093 int input_index = 0;
1094 int result_size = 80;
1098 /* Don't use a _filtered function here. It causes the assumed
1099 character position to be off, since the newline we read from
1100 the user is not accounted for. */
1101 fputs (prrompt, stdout);
1105 result = (char *) xmalloc (result_size);
1109 /* Read from stdin if we are executing a user defined command.
1110 This is the right thing for prompt_for_continue, at least. */
1111 c = fgetc (instream ? instream : stdin);
1122 result[input_index++] = c;
1123 while (input_index >= result_size)
1126 result = (char *) xrealloc (result, result_size);
1130 result[input_index++] = '\0';
1134 /* Variables which control command line editing and history
1135 substitution. These variables are given default values at the end
1137 static int command_editing_p;
1138 static int history_expansion_p;
1139 static int write_history_p;
1140 static int history_size;
1141 static char *history_filename;
1143 /* readline uses the word breaks for two things:
1144 (1) In figuring out where to point the TEXT parameter to the
1145 rl_completion_entry_function. Since we don't use TEXT for much,
1146 it doesn't matter a lot what the word breaks are for this purpose, but
1147 it does affect how much stuff M-? lists.
1148 (2) If one of the matches contains a word break character, readline
1149 will quote it. That's why we switch between
1150 gdb_completer_word_break_characters and
1151 gdb_completer_command_word_break_characters. I'm not sure when
1152 we need this behavior (perhaps for funky characters in C++ symbols?). */
1154 /* Variables which are necessary for fancy command line editing. */
1155 char *gdb_completer_word_break_characters =
1156 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
1158 /* When completing on command names, we remove '-' from the list of
1159 word break characters, since we use it in command names. If the
1160 readline library sees one in any of the current completion strings,
1161 it thinks that the string needs to be quoted and automatically supplies
1163 char *gdb_completer_command_word_break_characters =
1164 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,";
1166 /* Characters that can be used to quote completion strings. Note that we
1167 can't include '"' because the gdb C parser treats such quoted sequences
1169 char *gdb_completer_quote_characters =
1172 /* Functions that are used as part of the fancy command line editing. */
1174 /* This can be used for functions which don't want to complete on symbols
1175 but don't want to complete on anything else either. */
1178 noop_completer (text, prefix)
1185 /* Complete on filenames. */
1187 filename_completer (text, word)
1191 /* From readline. */
1192 extern char *filename_completion_function ();
1193 int subsequent_name;
1195 int return_val_used;
1196 int return_val_alloced;
1198 return_val_used = 0;
1199 /* Small for testing. */
1200 return_val_alloced = 1;
1201 return_val = (char **) xmalloc (return_val_alloced * sizeof (char *));
1203 subsequent_name = 0;
1207 p = filename_completion_function (text, subsequent_name);
1208 if (return_val_used >= return_val_alloced)
1210 return_val_alloced *= 2;
1212 (char **) xrealloc (return_val,
1213 return_val_alloced * sizeof (char *));
1217 return_val[return_val_used++] = p;
1220 /* Like emacs, don't complete on old versions. Especially useful
1221 in the "source" command. */
1222 if (p[strlen (p) - 1] == '~')
1228 /* Return exactly p. */
1229 return_val[return_val_used++] = p;
1230 else if (word > text)
1232 /* Return some portion of p. */
1233 q = xmalloc (strlen (p) + 5);
1234 strcpy (q, p + (word - text));
1235 return_val[return_val_used++] = q;
1240 /* Return some of TEXT plus p. */
1241 q = xmalloc (strlen (p) + (text - word) + 5);
1242 strncpy (q, word, text - word);
1243 q[text - word] = '\0';
1245 return_val[return_val_used++] = q;
1249 subsequent_name = 1;
1252 /* There is no way to do this just long enough to affect quote inserting
1253 without also affecting the next completion. This should be fixed in
1255 /* Insure that readline does the right thing
1256 with respect to inserting quotes. */
1257 rl_completer_word_break_characters = "";
1262 /* Here are some useful test cases for completion. FIXME: These should
1263 be put in the test suite. They should be tested with both M-? and TAB.
1265 "show output-" "radix"
1266 "show output" "-radix"
1267 "p" ambiguous (commands starting with p--path, print, printf, etc.)
1268 "p " ambiguous (all symbols)
1269 "info t foo" no completions
1270 "info t " no completions
1271 "info t" ambiguous ("info target", "info terminal", etc.)
1272 "info ajksdlfk" no completions
1273 "info ajksdlfk " no completions
1275 "info " ambiguous (all info commands)
1276 "p \"a" no completions (string constant)
1277 "p 'a" ambiguous (all symbols starting with a)
1278 "p b-a" ambiguous (all symbols starting with a)
1279 "p b-" ambiguous (all symbols)
1280 "file Make" "file" (word break hard to screw up here)
1281 "file ../gdb.stabs/wi" "erd" (needs to not break word at slash)
1284 /* Generate completions one by one for the completer. Each time we are
1285 called return another potential completion to the caller. The function
1286 is misnamed; it just completes on commands or passes the buck to the
1287 command's completer function; the stuff specific to symbol completion
1288 is in make_symbol_completion_list.
1290 TEXT is readline's idea of the "word" we are looking at; we don't really
1291 like readline's ideas about word breaking so we ignore it.
1293 MATCHES is the number of matches that have currently been collected from
1294 calling this completion function. When zero, then we need to initialize,
1295 otherwise the initialization has already taken place and we can just
1296 return the next potential completion string.
1298 Returns NULL if there are no more completions, else a pointer to a string
1299 which is a possible completion.
1301 RL_LINE_BUFFER is available to be looked at; it contains the entire text
1302 of the line. RL_POINT is the offset in that line of the cursor. You
1303 should pretend that the line ends at RL_POINT. */
1306 symbol_completion_function (text, matches)
1310 static char **list = (char **)NULL; /* Cache of completions */
1311 static int index; /* Next cached completion */
1312 char *output = NULL;
1313 char *tmp_command, *p;
1314 /* Pointer within tmp_command which corresponds to text. */
1316 struct cmd_list_element *c, *result_list;
1317 extern char *rl_line_buffer;
1318 extern int rl_point;
1322 /* The caller is beginning to accumulate a new set of completions, so
1323 we need to find all of them now, and cache them for returning one at
1324 a time on future calls. */
1328 /* Free the storage used by LIST, but not by the strings inside.
1329 This is because rl_complete_internal () frees the strings. */
1335 /* Choose the default set of word break characters to break completions.
1336 If we later find out that we are doing completions on command strings
1337 (as opposed to strings supplied by the individual command completer
1338 functions, which can be any string) then we will switch to the
1339 special word break set for command strings, which leaves out the
1340 '-' character used in some commands. */
1342 rl_completer_word_break_characters =
1343 gdb_completer_word_break_characters;
1345 /* Decide whether to complete on a list of gdb commands or on symbols. */
1346 tmp_command = (char *) alloca (rl_point + 1);
1349 strncpy (tmp_command, rl_line_buffer, rl_point);
1350 tmp_command[rl_point] = '\0';
1351 /* Since text always contains some number of characters leading up
1352 to rl_point, we can find the equivalent position in tmp_command
1353 by subtracting that many characters from the end of tmp_command. */
1354 word = tmp_command + rl_point - strlen (text);
1358 /* An empty line we want to consider ambiguous; that is, it
1359 could be any command. */
1360 c = (struct cmd_list_element *) -1;
1365 c = lookup_cmd_1 (&p, cmdlist, &result_list, 1);
1368 /* Move p up to the next interesting thing. */
1369 while (*p == ' ' || *p == '\t')
1376 /* It is an unrecognized command. So there are no
1377 possible completions. */
1380 else if (c == (struct cmd_list_element *) -1)
1384 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
1385 doesn't advance over that thing itself. Do so now. */
1387 while (*q && (isalnum (*q) || *q == '-' || *q == '_'))
1389 if (q != tmp_command + rl_point)
1391 /* There is something beyond the ambiguous
1392 command, so there are no possible completions. For
1393 example, "info t " or "info t foo" does not complete
1394 to anything, because "info t" can be "info target" or
1400 /* We're trying to complete on the command which was ambiguous.
1401 This we can deal with. */
1404 list = complete_on_cmdlist (*result_list->prefixlist, p,
1409 list = complete_on_cmdlist (cmdlist, p, word);
1411 /* Insure that readline does the right thing with respect to
1412 inserting quotes. */
1413 rl_completer_word_break_characters =
1414 gdb_completer_command_word_break_characters;
1419 /* We've recognized a full command. */
1421 if (p == tmp_command + rl_point)
1423 /* There is no non-whitespace in the line beyond the command. */
1425 if (p[-1] == ' ' || p[-1] == '\t')
1427 /* The command is followed by whitespace; we need to complete
1428 on whatever comes after command. */
1431 /* It is a prefix command; what comes after it is
1432 a subcommand (e.g. "info "). */
1433 list = complete_on_cmdlist (*c->prefixlist, p, word);
1435 /* Insure that readline does the right thing
1436 with respect to inserting quotes. */
1437 rl_completer_word_break_characters =
1438 gdb_completer_command_word_break_characters;
1442 /* It is a normal command; what comes after it is
1443 completed by the command's completer function. */
1444 list = (*c->completer) (p, word);
1449 /* The command is not followed by whitespace; we need to
1450 complete on the command itself. e.g. "p" which is a
1451 command itself but also can complete to "print", "ptype"
1455 /* Find the command we are completing on. */
1457 while (q > tmp_command)
1459 if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_')
1465 list = complete_on_cmdlist (result_list, q, word);
1467 /* Insure that readline does the right thing
1468 with respect to inserting quotes. */
1469 rl_completer_word_break_characters =
1470 gdb_completer_command_word_break_characters;
1475 /* There is non-whitespace beyond the command. */
1477 if (c->prefixlist && !c->allow_unknown)
1479 /* It is an unrecognized subcommand of a prefix command,
1480 e.g. "info adsfkdj". */
1485 /* It is a normal command. */
1486 list = (*c->completer) (p, word);
1492 /* If we found a list of potential completions during initialization then
1493 dole them out one at a time. The vector of completions is NULL
1494 terminated, so after returning the last one, return NULL (and continue
1495 to do so) each time we are called after that, until a new list is
1500 output = list[index];
1508 /* Can't do this because readline hasn't yet checked the word breaks
1509 for figuring out whether to insert a quote. */
1511 /* Make sure the word break characters are set back to normal for the
1512 next time that readline tries to complete something. */
1513 rl_completer_word_break_characters =
1514 gdb_completer_word_break_characters;
1520 /* Skip over a possibly quoted word (as defined by the quote characters
1521 and word break characters the completer uses). Returns pointer to the
1522 location after the "word". */
1528 char quote_char = '\0';
1531 for (scan = str; *scan != '\0'; scan++)
1533 if (quote_char != '\0')
1535 /* Ignore everything until the matching close quote char */
1536 if (*scan == quote_char)
1538 /* Found matching close quote. */
1543 else if (strchr (gdb_completer_quote_characters, *scan))
1545 /* Found start of a quoted string. */
1548 else if (strchr (gdb_completer_word_break_characters, *scan))
1562 #if STOP_SIGNAL == SIGTSTP
1563 signal (SIGTSTP, SIG_DFL);
1565 kill (getpid (), SIGTSTP);
1566 signal (SIGTSTP, stop_sig);
1568 signal (STOP_SIGNAL, stop_sig);
1570 printf ("%s", prompt);
1573 /* Forget about any previous command -- null line now will do nothing. */
1576 #endif /* STOP_SIGNAL */
1578 /* Initialize signal handlers. */
1588 signal (SIGINT, request_quit);
1590 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
1591 passed to the inferior, which we don't want. It would be
1592 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
1593 on BSD4.3 systems using vfork, that can affect the
1594 GDB process as well as the inferior (the signal handling tables
1595 might be in memory, shared between the two). Since we establish
1596 a handler for SIGQUIT, when we call exec it will set the signal
1597 to SIG_DFL for us. */
1598 signal (SIGQUIT, do_nothing);
1599 if (signal (SIGHUP, do_nothing) != SIG_IGN)
1600 signal (SIGHUP, disconnect);
1601 signal (SIGFPE, float_handler);
1603 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1604 signal (SIGWINCH, SIGWINCH_HANDLER);
1608 /* Read one line from the command input stream `instream'
1609 into the local static buffer `linebuffer' (whose current length
1611 The buffer is made bigger as necessary.
1612 Returns the address of the start of the line.
1614 NULL is returned for end of file.
1616 *If* the instream == stdin & stdin is a terminal, the line read
1617 is copied into the file line saver (global var char *line,
1618 length linesize) so that it can be duplicated.
1620 This routine either uses fancy command line editing or
1621 simple input as the user has requested. */
1624 command_line_input (prrompt, repeat)
1628 static char *linebuffer = 0;
1629 static unsigned linelength = 0;
1633 char *local_prompt = prrompt;
1638 if (linebuffer == 0)
1641 linebuffer = (char *) xmalloc (linelength);
1646 /* Control-C quits instantly if typed while in this loop
1647 since it should not wait until the user types a newline. */
1651 signal (STOP_SIGNAL, stop_sig);
1656 /* Reports are that some Sys V's don't flush stdout/err on reads
1657 from stdin, when stdin/out are sockets rather than ttys. So we
1658 have to do it ourselves, to make emacs-gdb and xxgdb work.
1659 On other machines, doing this once per input should be a cheap nop. */
1663 /* Don't use fancy stuff if not talking to stdin. */
1664 if (command_editing_p && instream == stdin
1665 && ISATTY (instream))
1666 rl = readline (local_prompt);
1668 rl = gdb_readline (local_prompt);
1670 if (!rl || rl == (char *) EOF)
1675 if (strlen(rl) + 1 + (p - linebuffer) > linelength)
1677 linelength = strlen(rl) + 1 + (p - linebuffer);
1678 nline = (char *) xrealloc (linebuffer, linelength);
1679 p += nline - linebuffer;
1683 /* Copy line. Don't copy null at end. (Leaves line alone
1684 if this was just a newline) */
1688 free (rl); /* Allocated in readline. */
1690 if (p == linebuffer || *(p - 1) != '\\')
1693 p--; /* Put on top of '\'. */
1694 local_prompt = (char *) 0;
1699 signal (STOP_SIGNAL, SIG_DFL);
1706 /* Do history expansion if that is wished. */
1707 if (history_expansion_p && instream == stdin
1708 && ISATTY (instream))
1710 char *history_value;
1713 *p = '\0'; /* Insert null now. */
1714 expanded = history_expand (linebuffer, &history_value);
1717 /* Print the changes. */
1718 printf ("%s\n", history_value);
1720 /* If there was an error, call this function again. */
1723 free (history_value);
1724 return command_line_input (prrompt, repeat);
1726 if (strlen (history_value) > linelength)
1728 linelength = strlen (history_value) + 1;
1729 linebuffer = (char *) xrealloc (linebuffer, linelength);
1731 strcpy (linebuffer, history_value);
1732 p = linebuffer + strlen(linebuffer);
1733 free (history_value);
1737 /* If we just got an empty line, and that is supposed
1738 to repeat the previous command, return the value in the
1742 if (p == linebuffer)
1745 while (*p1 == ' ' || *p1 == '\t')
1753 /* Add line to history if appropriate. */
1754 if (instream == stdin
1755 && ISATTY (stdin) && *linebuffer)
1756 add_history (linebuffer);
1758 /* Note: lines consisting soley of comments are added to the command
1759 history. This is useful when you type a command, and then
1760 realize you don't want to execute it quite yet. You can comment
1761 out the command and then later fetch it from the value history
1762 and remove the '#'. The kill ring is probably better, but some
1763 people are in the habit of commenting things out. */
1765 while ((c = *p1++) != '\0')
1768 while ((c = *p1++) != '"')
1770 /* Make sure an escaped '"' doesn't make us think the string
1778 while ((c = *p1++) != '\'')
1780 /* Make sure an escaped '\'' doesn't make us think the string
1789 /* Found a comment. */
1795 /* Save into global buffer if appropriate. */
1798 if (linelength > linesize)
1800 line = xrealloc (line, linelength);
1801 linesize = linelength;
1803 strcpy (line, linebuffer);
1810 /* Read lines from the input stream
1811 and accumulate them in a chain of struct command_line's
1812 which is then returned. */
1814 struct command_line *
1815 read_command_lines ()
1817 struct command_line *first = 0;
1818 register struct command_line *next, *tail = 0;
1819 register char *p, *p1;
1820 struct cleanup *old_chain = 0;
1825 p = command_line_input ((char *) NULL, instream == stdin);
1827 /* Treat end of file like "end". */
1830 /* Remove leading and trailing blanks. */
1831 while (*p == ' ' || *p == '\t') p++;
1832 p1 = p + strlen (p);
1833 while (p1 != p && (p1[-1] == ' ' || p1[-1] == '\t')) p1--;
1835 /* Is this "end"? */
1836 if (p1 - p == 3 && !strncmp (p, "end", 3))
1839 /* No => add this line to the chain of command lines. */
1840 next = (struct command_line *) xmalloc (sizeof (struct command_line));
1841 next->line = savestring (p, p1 - p);
1849 /* We just read the first line.
1850 From now on, arrange to throw away the lines we have
1851 if we quit or get an error while inside this function. */
1853 old_chain = make_cleanup (free_command_lines, &first);
1860 /* Now we are about to return the chain to our caller,
1861 so freeing it becomes his responsibility. */
1863 discard_cleanups (old_chain);
1867 /* Free a chain of struct command_line's. */
1870 free_command_lines (lptr)
1871 struct command_line **lptr;
1873 register struct command_line *l = *lptr;
1874 register struct command_line *next;
1885 /* Add an element to the list of info subcommands. */
1888 add_info (name, fun, doc)
1890 void (*fun) PARAMS ((char *, int));
1893 add_cmd (name, no_class, fun, doc, &infolist);
1896 /* Add an alias to the list of info subcommands. */
1899 add_info_alias (name, oldname, abbrev_flag)
1904 add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
1907 /* The "info" command is defined as a prefix, with allow_unknown = 0.
1908 Therefore, its own definition is called only for "info" with no args. */
1912 info_command (arg, from_tty)
1916 printf ("\"info\" must be followed by the name of an info command.\n");
1917 help_list (infolist, "info ", -1, stdout);
1920 /* The "show" command with no arguments shows all the settings. */
1924 show_command (arg, from_tty)
1928 cmd_show_list (showlist, from_tty, "");
1931 /* Add an element to the list of commands. */
1934 add_com (name, class, fun, doc)
1936 enum command_class class;
1937 void (*fun) PARAMS ((char *, int));
1940 add_cmd (name, class, fun, doc, &cmdlist);
1943 /* Add an alias or abbreviation command to the list of commands. */
1946 add_com_alias (name, oldname, class, abbrev_flag)
1949 enum command_class class;
1952 add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
1959 error ("Argument required (%s).", why);
1964 help_command (command, from_tty)
1966 int from_tty; /* Ignored */
1968 help_cmd (command, stdout);
1972 validate_comname (comname)
1978 error_no_arg ("name of command to define");
1983 if (!isalnum(*p) && *p != '-')
1984 error ("Junk in argument list: \"%s\"", p);
1989 /* This is just a placeholder in the command data structures. */
1991 user_defined_command (ignore, from_tty)
1998 define_command (comname, from_tty)
2002 register struct command_line *cmds;
2003 register struct cmd_list_element *c, *newc, *hookc = 0;
2004 char *tem = comname;
2005 #define HOOK_STRING "hook-"
2008 validate_comname (comname);
2010 /* Look it up, and verify that we got an exact match. */
2011 c = lookup_cmd (&tem, cmdlist, "", -1, 1);
2012 if (c && !STREQ (comname, c->name))
2017 if (c->class == class_user || c->class == class_alias)
2018 tem = "Redefine command \"%s\"? ";
2020 tem = "Really redefine built-in command \"%s\"? ";
2021 if (!query (tem, c->name))
2022 error ("Command \"%s\" not redefined.", c->name);
2025 /* If this new command is a hook, then mark the command which it
2026 is hooking. Note that we allow hooking `help' commands, so that
2027 we can hook the `stop' pseudo-command. */
2029 if (!strncmp (comname, HOOK_STRING, HOOK_LEN))
2031 /* Look up cmd it hooks, and verify that we got an exact match. */
2032 tem = comname+HOOK_LEN;
2033 hookc = lookup_cmd (&tem, cmdlist, "", -1, 0);
2034 if (hookc && !STREQ (comname+HOOK_LEN, hookc->name))
2038 warning ("Your new `%s' command does not hook any existing command.",
2040 if (!query ("Proceed? ", (char *)0))
2041 error ("Not confirmed.");
2045 comname = savestring (comname, strlen (comname));
2047 /* If the rest of the commands will be case insensitive, this one
2048 should behave in the same manner. */
2049 for (tem = comname; *tem; tem++)
2050 if (isupper(*tem)) *tem = tolower(*tem);
2054 printf ("Type commands for definition of \"%s\".\n\
2055 End with a line saying just \"end\".\n", comname);
2059 cmds = read_command_lines ();
2061 if (c && c->class == class_user)
2062 free_command_lines (&c->user_commands);
2064 newc = add_cmd (comname, class_user, user_defined_command,
2065 (c && c->class == class_user)
2066 ? c->doc : savestring ("User-defined.", 13), &cmdlist);
2067 newc->user_commands = cmds;
2069 /* If this new command is a hook, then mark both commands as being
2073 hookc->hook = newc; /* Target gets hooked. */
2074 newc->hookee = hookc; /* We are marked as hooking target cmd. */
2079 document_command (comname, from_tty)
2083 struct command_line *doclines;
2084 register struct cmd_list_element *c;
2085 char *tem = comname;
2087 validate_comname (comname);
2089 c = lookup_cmd (&tem, cmdlist, "", 0, 1);
2091 if (c->class != class_user)
2092 error ("Command \"%s\" is built-in.", comname);
2095 printf ("Type documentation for \"%s\".\n\
2096 End with a line saying just \"end\".\n", comname);
2098 doclines = read_command_lines ();
2100 if (c->doc) free (c->doc);
2103 register struct command_line *cl1;
2104 register int len = 0;
2106 for (cl1 = doclines; cl1; cl1 = cl1->next)
2107 len += strlen (cl1->line) + 1;
2109 c->doc = (char *) xmalloc (len + 1);
2112 for (cl1 = doclines; cl1; cl1 = cl1->next)
2114 strcat (c->doc, cl1->line);
2116 strcat (c->doc, "\n");
2120 free_command_lines (&doclines);
2124 print_gnu_advertisement()
2127 GDB is free software and you are welcome to distribute copies of it\n\
2128 under certain conditions; type \"show copying\" to see the conditions.\n\
2129 There is absolutely no warranty for GDB; type \"show warranty\" for details.\n\
2134 print_gdb_version (stream)
2137 fprintf_filtered (stream, "\
2138 GDB %s (%s", version, host_canonical);
2140 if (strcmp(host_canonical, target_canonical))
2141 fprintf_filtered (stream, " --target %s", target_canonical);
2143 fprintf_filtered (stream, "), ");
2145 fprintf_filtered (stream, "Copyright 1993 Free Software Foundation, Inc.");
2150 show_version (args, from_tty)
2155 print_gnu_advertisement ();
2156 print_gdb_version (stdout);
2157 printf_filtered ("\n");
2161 /* xgdb calls this to reprint the usual GDB prompt. */
2166 printf ("%s", prompt);
2171 quit_command (args, from_tty)
2175 if (inferior_pid != 0 && target_has_execution)
2179 if (query ("The program is running. Quit anyway (and detach it)? "))
2180 target_detach (args, from_tty);
2182 error ("Not confirmed.");
2186 if (query ("The program is running. Quit anyway (and kill it)? "))
2189 error ("Not confirmed.");
2192 /* Save the history information if it is appropriate to do so. */
2193 if (write_history_p && history_filename)
2194 write_history (history_filename);
2198 /* Returns whether GDB is running on a terminal and whether the user
2199 desires that questions be asked of them on that terminal. */
2202 input_from_terminal_p ()
2204 return gdb_has_a_terminal () && (instream == stdin) & caution;
2209 pwd_command (args, from_tty)
2213 if (args) error ("The \"pwd\" command does not take an argument: %s", args);
2214 getcwd (dirbuf, sizeof (dirbuf));
2216 if (!STREQ (dirbuf, current_directory))
2217 printf ("Working directory %s\n (canonically %s).\n",
2218 current_directory, dirbuf);
2220 printf ("Working directory %s.\n", current_directory);
2224 cd_command (dir, from_tty)
2229 /* Found something other than leading repetitions of "/..". */
2230 int found_real_path;
2233 /* If the new directory is absolute, repeat is a no-op; if relative,
2234 repeat might be useful but is more likely to be a mistake. */
2238 error_no_arg ("new working directory");
2240 dir = tilde_expand (dir);
2241 make_cleanup (free, dir);
2243 if (chdir (dir) < 0)
2244 perror_with_name (dir);
2247 dir = savestring (dir, len - (len > 1 && dir[len-1] == '/'));
2249 current_directory = dir;
2252 if (current_directory[0] == '/' && current_directory[1] == '\0')
2253 current_directory = concat (current_directory, dir, NULL);
2255 current_directory = concat (current_directory, "/", dir, NULL);
2259 /* Now simplify any occurrences of `.' and `..' in the pathname. */
2261 found_real_path = 0;
2262 for (p = current_directory; *p;)
2264 if (p[0] == '/' && p[1] == '.' && (p[2] == 0 || p[2] == '/'))
2266 else if (p[0] == '/' && p[1] == '.' && p[2] == '.'
2267 && (p[3] == 0 || p[3] == '/'))
2269 if (found_real_path)
2271 /* Search backwards for the directory just before the "/.."
2272 and obliterate it and the "/..". */
2274 while (q != current_directory && q[-1] != '/')
2277 if (q == current_directory)
2278 /* current_directory is
2279 a relative pathname ("can't happen"--leave it alone). */
2283 strcpy (q - 1, p + 3);
2288 /* We are dealing with leading repetitions of "/..", for example
2289 "/../..", which is the Mach super-root. */
2294 found_real_path = 1;
2299 forget_cached_source_info ();
2302 pwd_command ((char *) 0, 1);
2307 source_command (args, from_tty)
2312 struct cleanup *cleanups;
2317 error ("source command requires pathname of file to source.");
2320 file = tilde_expand (file);
2321 make_cleanup (free, file);
2323 stream = fopen (file, FOPEN_RT);
2325 perror_with_name (file);
2327 cleanups = make_cleanup (fclose, stream);
2329 read_command_file (stream);
2331 do_cleanups (cleanups);
2336 echo_command (text, from_tty)
2344 while ((c = *p++) != '\0')
2348 /* \ at end of argument is used after spaces
2349 so they won't be lost. */
2353 c = parse_escape (&p);
2355 printf_filtered ("%c", c);
2358 printf_filtered ("%c", c);
2361 /* Force this output to appear now. */
2367 /* Functions to manipulate command line editing control variables. */
2369 /* Number of commands to print in each call to show_commands. */
2370 #define Hist_print 10
2372 show_commands (args, from_tty)
2376 /* Index for history commands. Relative to history_base. */
2379 /* Number of the history entry which we are planning to display next.
2380 Relative to history_base. */
2383 /* The first command in the history which doesn't exist (i.e. one more
2384 than the number of the last command). Relative to history_base. */
2387 extern struct _hist_entry *history_get PARAMS ((int));
2388 extern int history_base;
2390 /* Print out some of the commands from the command history. */
2391 /* First determine the length of the history list. */
2392 hist_len = history_size;
2393 for (offset = 0; offset < history_size; offset++)
2395 if (!history_get (history_base + offset))
2404 if (args[0] == '+' && args[1] == '\0')
2405 /* "info editing +" should print from the stored position. */
2408 /* "info editing <exp>" should print around command number <exp>. */
2409 num = (parse_and_eval_address (args) - history_base) - Hist_print / 2;
2411 /* "show commands" means print the last Hist_print commands. */
2414 num = hist_len - Hist_print;
2420 /* If there are at least Hist_print commands, we want to display the last
2421 Hist_print rather than, say, the last 6. */
2422 if (hist_len - num < Hist_print)
2424 num = hist_len - Hist_print;
2429 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
2431 printf_filtered ("%5d %s\n", history_base + offset,
2432 (history_get (history_base + offset))->line);
2435 /* The next command we want to display is the next one that we haven't
2439 /* If the user repeats this command with return, it should do what
2440 "show commands +" does. This is unnecessary if arg is null,
2441 because "show commands +" is not useful after "show commands". */
2442 if (from_tty && args)
2449 /* Called by do_setshow_command. */
2452 set_history_size_command (args, from_tty, c)
2455 struct cmd_list_element *c;
2457 if (history_size == INT_MAX)
2458 unstifle_history ();
2459 else if (history_size >= 0)
2460 stifle_history (history_size);
2463 history_size = INT_MAX;
2464 error ("History size must be non-negative");
2470 set_history (args, from_tty)
2474 printf ("\"set history\" must be followed by the name of a history subcommand.\n");
2475 help_list (sethistlist, "set history ", -1, stdout);
2480 show_history (args, from_tty)
2484 cmd_show_list (showhistlist, from_tty, "");
2487 int info_verbose = 0; /* Default verbose msgs off */
2489 /* Called by do_setshow_command. An elaborate joke. */
2492 set_verbose (args, from_tty, c)
2495 struct cmd_list_element *c;
2497 char *cmdname = "verbose";
2498 struct cmd_list_element *showcmd;
2500 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
2504 c->doc = "Set verbose printing of informational messages.";
2505 showcmd->doc = "Show verbose printing of informational messages.";
2509 c->doc = "Set verbosity.";
2510 showcmd->doc = "Show verbosity.";
2515 float_handler (signo)
2518 /* This message is based on ANSI C, section 4.7. Note that integer
2519 divide by zero causes this, so "float" is a misnomer. */
2520 signal (SIGFPE, float_handler);
2521 error ("Erroneous arithmetic operation.");
2524 /* Return whether we are running a batch file or from terminal. */
2528 return !(instream == stdin && ISATTY (stdin));
2540 enablebreaklist = NULL;
2545 showhistlist = NULL;
2546 unsethistlist = NULL;
2547 #if MAINTENANCE_CMDS
2548 maintenancelist = NULL;
2549 maintenanceinfolist = NULL;
2550 maintenanceprintlist = NULL;
2552 setprintlist = NULL;
2553 showprintlist = NULL;
2554 setchecklist = NULL;
2555 showchecklist = NULL;
2558 /* Init the history buffer. Note that we are called after the init file(s)
2559 * have been read so that the user can change the history file via his
2560 * .gdbinit file (for instance). The GDBHISTFILE environment variable
2561 * overrides all of this.
2569 tmpenv = getenv ("HISTSIZE");
2571 history_size = atoi (tmpenv);
2572 else if (!history_size)
2575 stifle_history (history_size);
2577 tmpenv = getenv ("GDBHISTFILE");
2579 history_filename = savestring (tmpenv, strlen(tmpenv));
2580 else if (!history_filename) {
2581 /* We include the current directory so that if the user changes
2582 directories the file written will be the same as the one
2584 history_filename = concat (current_directory, "/.gdb_history", NULL);
2586 read_history (history_filename);
2592 struct cmd_list_element *c;
2594 #ifdef DEFAULT_PROMPT
2595 prompt = savestring (DEFAULT_PROMPT, strlen(DEFAULT_PROMPT));
2597 prompt = savestring ("(gdb) ", 6);
2600 /* Set the important stuff up for command editing. */
2601 command_editing_p = 1;
2602 history_expansion_p = 0;
2603 write_history_p = 0;
2605 /* Setup important stuff for command line editing. */
2606 rl_completion_entry_function = (int (*)()) symbol_completion_function;
2607 rl_completer_word_break_characters = gdb_completer_word_break_characters;
2608 rl_completer_quote_characters = gdb_completer_quote_characters;
2609 rl_readline_name = "gdb";
2611 /* Define the classes of commands.
2612 They will appear in the help list in the reverse of this order. */
2614 add_cmd ("internals", class_maintenance, NO_FUNCTION,
2615 "Maintenance commands.\n\
2616 Some gdb commands are provided just for use by gdb maintainers.\n\
2617 These commands are subject to frequent change, and may not be as\n\
2618 well documented as user commands.",
2620 add_cmd ("obscure", class_obscure, NO_FUNCTION, "Obscure features.", &cmdlist);
2621 add_cmd ("aliases", class_alias, NO_FUNCTION, "Aliases of other commands.", &cmdlist);
2622 add_cmd ("user-defined", class_user, NO_FUNCTION, "User-defined commands.\n\
2623 The commands in this class are those defined by the user.\n\
2624 Use the \"define\" command to define a command.", &cmdlist);
2625 add_cmd ("support", class_support, NO_FUNCTION, "Support facilities.", &cmdlist);
2626 add_cmd ("status", class_info, NO_FUNCTION, "Status inquiries.", &cmdlist);
2627 add_cmd ("files", class_files, NO_FUNCTION, "Specifying and examining files.", &cmdlist);
2628 add_cmd ("breakpoints", class_breakpoint, NO_FUNCTION, "Making program stop at certain points.", &cmdlist);
2629 add_cmd ("data", class_vars, NO_FUNCTION, "Examining data.", &cmdlist);
2630 add_cmd ("stack", class_stack, NO_FUNCTION, "Examining the stack.\n\
2631 The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
2632 counting from zero for the innermost (currently executing) frame.\n\n\
2633 At any time gdb identifies one frame as the \"selected\" frame.\n\
2634 Variable lookups are done with respect to the selected frame.\n\
2635 When the program being debugged stops, gdb selects the innermost frame.\n\
2636 The commands below can be used to select other frames by number or address.",
2638 add_cmd ("running", class_run, NO_FUNCTION, "Running the program.", &cmdlist);
2640 add_com ("pwd", class_files, pwd_command,
2641 "Print working directory. This is used for your program as well.");
2642 c = add_cmd ("cd", class_files, cd_command,
2643 "Set working directory to DIR for debugger and program being debugged.\n\
2644 The change does not take effect for the program being debugged\n\
2645 until the next time it is started.", &cmdlist);
2646 c->completer = filename_completer;
2649 (add_set_cmd ("prompt", class_support, var_string, (char *)&prompt,
2654 add_com ("echo", class_support, echo_command,
2655 "Print a constant string. Give string as argument.\n\
2656 C escape sequences may be used in the argument.\n\
2657 No newline is added at the end of the argument;\n\
2658 use \"\\n\" if you want a newline to be printed.\n\
2659 Since leading and trailing whitespace are ignored in command arguments,\n\
2660 if you want to print some you must use \"\\\" before leading whitespace\n\
2661 to be printed or after trailing whitespace.");
2662 add_com ("document", class_support, document_command,
2663 "Document a user-defined command.\n\
2664 Give command name as argument. Give documentation on following lines.\n\
2665 End with a line of just \"end\".");
2666 add_com ("define", class_support, define_command,
2667 "Define a new command name. Command name is argument.\n\
2668 Definition appears on following lines, one command per line.\n\
2669 End with a line of just \"end\".\n\
2670 Use the \"document\" command to give documentation for the new command.\n\
2671 Commands defined in this way do not take arguments.");
2674 c = add_cmd ("source", class_support, source_command,
2675 "Read commands from a file named FILE.\n\
2676 Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
2677 when gdb is started.", &cmdlist);
2679 /* Punt file name, we can't help it easily. */
2680 c = add_cmd ("source", class_support, source_command,
2681 "Read commands from a file named FILE.\n\
2682 Note that the file \".gdbinit\" is read automatically in this way\n\
2683 when gdb is started.", &cmdlist);
2685 c->completer = filename_completer;
2687 add_com ("quit", class_support, quit_command, "Exit gdb.");
2688 add_com ("help", class_support, help_command, "Print list of commands.");
2689 add_com_alias ("q", "quit", class_support, 1);
2690 add_com_alias ("h", "help", class_support, 1);
2693 c = add_set_cmd ("verbose", class_support, var_boolean, (char *)&info_verbose,
2696 add_show_from_set (c, &showlist);
2697 c->function.sfunc = set_verbose;
2698 set_verbose (NULL, 0, c);
2701 (add_set_cmd ("editing", class_support, var_boolean, (char *)&command_editing_p,
2702 "Set editing of command lines as they are typed.\n\
2703 Use \"on\" to enable to enable the editing, and \"off\" to disable it.\n\
2704 Without an argument, command line editing is enabled. To edit, use\n\
2705 EMACS-like or VI-like commands like control-P or ESC.", &setlist),
2708 add_prefix_cmd ("history", class_support, set_history,
2709 "Generic command for setting command history parameters.",
2710 &sethistlist, "set history ", 0, &setlist);
2711 add_prefix_cmd ("history", class_support, show_history,
2712 "Generic command for showing command history parameters.",
2713 &showhistlist, "show history ", 0, &showlist);
2716 (add_set_cmd ("expansion", no_class, var_boolean, (char *)&history_expansion_p,
2717 "Set history expansion on command input.\n\
2718 Without an argument, history expansion is enabled.", &sethistlist),
2722 (add_set_cmd ("save", no_class, var_boolean, (char *)&write_history_p,
2723 "Set saving of the history record on exit.\n\
2724 Use \"on\" to enable to enable the saving, and \"off\" to disable it.\n\
2725 Without an argument, saving is enabled.", &sethistlist),
2728 c = add_set_cmd ("size", no_class, var_integer, (char *)&history_size,
2729 "Set the size of the command history, \n\
2730 ie. the number of previous commands to keep a record of.", &sethistlist);
2731 add_show_from_set (c, &showhistlist);
2732 c->function.sfunc = set_history_size_command;
2735 (add_set_cmd ("filename", no_class, var_filename, (char *)&history_filename,
2736 "Set the filename in which to record the command history\n\
2737 (the list of previous commands of which a record is kept).", &sethistlist),
2741 (add_set_cmd ("confirm", class_support, var_boolean,
2743 "Set whether to confirm potentially dangerous operations.",
2747 add_prefix_cmd ("info", class_info, info_command,
2748 "Generic command for showing things about the program being debugged.",
2749 &infolist, "info ", 0, &cmdlist);
2750 add_com_alias ("i", "info", class_info, 1);
2752 add_prefix_cmd ("show", class_info, show_command,
2753 "Generic command for showing things about the debugger.",
2754 &showlist, "show ", 0, &cmdlist);
2755 /* Another way to get at the same thing. */
2756 add_info ("set", show_command, "Show all GDB settings.");
2758 add_cmd ("commands", no_class, show_commands,
2759 "Show the the history of commands you typed.\n\
2760 You can supply a command number to start with, or a `+' to start after\n\
2761 the previous command number shown.",
2764 add_cmd ("version", no_class, show_version,
2765 "Show what version of GDB this is.", &showlist);