1 /* Top level `main' program for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994
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 "terminal.h" /* For job_control. */
37 /* readline include files */
41 /* readline defines this. */
44 #include <sys/types.h>
46 /* What is this for? X_OK? */
55 #include <sys/param.h>
59 /* Prototypes for local functions */
62 symbol_completion_function PARAMS ((char *, int));
65 command_loop PARAMS ((void));
68 command_loop_marker PARAMS ((int));
71 print_gdb_version PARAMS ((GDB_FILE *));
74 quit_command PARAMS ((char *, int));
77 init_main PARAMS ((void));
80 init_history PARAMS ((void));
83 init_cmd_lists PARAMS ((void));
86 float_handler PARAMS ((int));
89 source_command PARAMS ((char *, int));
91 static void cd_command PARAMS ((char *, int));
94 print_gnu_advertisement PARAMS ((void));
97 init_signals PARAMS ((void));
100 read_command_file PARAMS ((FILE *));
103 set_verbose PARAMS ((char *, int, struct cmd_list_element *));
106 show_history PARAMS ((char *, int));
109 set_history PARAMS ((char *, int));
112 set_history_size_command PARAMS ((char *, int, struct cmd_list_element *));
115 show_commands PARAMS ((char *, int));
118 echo_command PARAMS ((char *, int));
121 pwd_command PARAMS ((char *, int));
124 show_version PARAMS ((char *, int));
127 document_command PARAMS ((char *, int));
130 define_command PARAMS ((char *, int));
133 validate_comname PARAMS ((char *));
136 help_command PARAMS ((char *, int));
139 show_command PARAMS ((char *, int));
142 info_command PARAMS ((char *, int));
145 complete_command PARAMS ((char *, int));
148 do_nothing PARAMS ((int));
151 quit_cover PARAMS ((char *));
154 disconnect PARAMS ((int));
157 source_cleanup PARAMS ((FILE *));
159 /* If this definition isn't overridden by the header files, assume
160 that isatty and fileno exist on this system. */
162 #define ISATTY(FP) (isatty (fileno (FP)))
165 /* Initialization file name for gdb. This is overridden in some configs. */
167 #ifndef GDBINIT_FILENAME
168 #define GDBINIT_FILENAME ".gdbinit"
170 static char gdbinit[] = GDBINIT_FILENAME;
171 static int inhibit_gdbinit = 0;
173 #define ALL_CLEANUPS ((struct cleanup *)0)
175 /* Version number of GDB, as a string. */
177 extern char *version;
179 /* Canonical host name as a string. */
181 extern char *host_name;
183 /* Canonical target name as a string. */
185 extern char *target_name;
187 extern char lang_frame_mismatch_warn[]; /* language.c */
189 /* Flag for whether we want all the "from_tty" gubbish printed. */
191 int caution = 1; /* Default is yes, sigh. */
194 * Define all cmd_list_element's
197 /* Chain containing all defined commands. */
199 struct cmd_list_element *cmdlist;
201 /* Chain containing all defined info subcommands. */
203 struct cmd_list_element *infolist;
205 /* Chain containing all defined enable subcommands. */
207 struct cmd_list_element *enablelist;
209 /* Chain containing all defined disable subcommands. */
211 struct cmd_list_element *disablelist;
213 /* Chain containing all defined delete subcommands. */
215 struct cmd_list_element *deletelist;
217 /* Chain containing all defined "enable breakpoint" subcommands. */
219 struct cmd_list_element *enablebreaklist;
221 /* Chain containing all defined set subcommands */
223 struct cmd_list_element *setlist;
225 /* Chain containing all defined unset subcommands */
227 struct cmd_list_element *unsetlist;
229 /* Chain containing all defined show subcommands. */
231 struct cmd_list_element *showlist;
233 /* Chain containing all defined \"set history\". */
235 struct cmd_list_element *sethistlist;
237 /* Chain containing all defined \"show history\". */
239 struct cmd_list_element *showhistlist;
241 /* Chain containing all defined \"unset history\". */
243 struct cmd_list_element *unsethistlist;
245 /* Chain containing all defined maintenance subcommands. */
248 struct cmd_list_element *maintenancelist;
251 /* Chain containing all defined "maintenance info" subcommands. */
254 struct cmd_list_element *maintenanceinfolist;
257 /* Chain containing all defined "maintenance print" subcommands. */
260 struct cmd_list_element *maintenanceprintlist;
263 struct cmd_list_element *setprintlist;
265 struct cmd_list_element *showprintlist;
267 struct cmd_list_element *setchecklist;
269 struct cmd_list_element *showchecklist;
271 /* stdio stream that command input is being read from. Set to stdin normally.
272 Set by source_command to the file we are sourcing. Set to NULL if we are
273 executing a user-defined command. */
277 /* Current working directory. */
279 char *current_directory;
281 /* The directory name is actually stored here (usually). */
282 static char dirbuf[1024];
284 /* Function to call before reading a command, if nonzero.
285 The function receives two args: an input stream,
286 and a prompt string. */
288 void (*window_hook) PARAMS ((FILE *, char *));
290 extern int mapped_symbol_files;
291 extern int readnow_symbol_files;
296 /* gdb prints this when reading a command interactively */
299 /* Buffer used for reading command lines, and the size
300 allocated for it so far. */
305 /* Nonzero if the current command is modified by "server ". This
306 affects things like recording into the command history, comamnds
307 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
308 whatever) can issue its own commands and also send along commands
309 from the user, and have the user not notice that the user interface
310 is issuing commands too. */
313 /* Baud rate specified for talking to serial target systems. Default
314 is left as -1, so targets can choose their own defaults. */
315 /* FIXME: This means that "show remotebaud" and gr_files_info can print -1
316 or (unsigned int)-1. This is a Bad User Interface. */
320 /* Non-zero tells remote* modules to output debugging info. */
322 int remote_debug = 0;
324 /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
328 #define STOP_SIGNAL SIGTSTP
329 static void stop_sig PARAMS ((int));
333 /* Some System V have job control but not sigsetmask(). */
334 #if !defined (HAVE_SIGSETMASK)
336 #define HAVE_SIGSETMASK 1
338 #define HAVE_SIGSETMASK 0
342 #if 0 == (HAVE_SIGSETMASK)
343 #define sigsetmask(n)
346 /* Where to go for return_to_top_level (RETURN_ERROR). */
347 static jmp_buf error_return;
348 /* Where to go for return_to_top_level (RETURN_QUIT). */
349 static jmp_buf quit_return;
351 /* Temporary variable for SET_TOP_LEVEL. */
352 static int top_level_val;
354 /* Do a setjmp on error_return and quit_return. catch_errors is
355 generally a cleaner way to do this, but main() would look pretty
356 ugly if it had to use catch_errors each time. */
358 #define SET_TOP_LEVEL() \
359 (((top_level_val = setjmp (error_return)) \
360 ? (PTR) 0 : (PTR) memcpy (quit_return, error_return, sizeof (jmp_buf))) \
363 /* Return for reason REASON. This generally gets back to the command
364 loop, but can be caught via catch_errors. */
367 return_to_top_level (reason)
368 enum return_reason reason;
373 /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
374 I can think of a reason why that is vital, though). */
375 bpstat_clear_actions(stop_bpstat); /* Clear queued breakpoint commands */
377 disable_current_display ();
378 do_cleanups (ALL_CLEANUPS);
380 if (annotation_level > 1)
391 (NORETURN void) longjmp
392 (reason == RETURN_ERROR ? error_return : quit_return, 1);
395 /* Call FUNC with arg ARGS, catching any errors. If there is no
396 error, return the value returned by FUNC. If there is an error,
397 print ERRSTRING, print the specific error message, then return
400 Must not be called with immediate_quit in effect (bad things might
401 happen, say we got a signal in the middle of a memcpy to quit_return).
402 This is an OK restriction; with very few exceptions immediate_quit can
403 be replaced by judicious use of QUIT.
405 MASK specifies what to catch; it is normally set to
406 RETURN_MASK_ALL, if for no other reason than that the code which
407 calls catch_errors might not be set up to deal with a quit which
408 isn't caught. But if the code can deal with it, it generally
409 should be RETURN_MASK_ERROR, unless for some reason it is more
410 useful to abort only the portion of the operation inside the
411 catch_errors. Note that quit should return to the command line
412 fairly quickly, even if some further processing is being done. */
415 catch_errors (func, args, errstring, mask)
416 int (*func) PARAMS ((char *));
425 struct cleanup *saved_cleanup_chain;
426 char *saved_error_pre_print;
428 saved_cleanup_chain = save_cleanups ();
429 saved_error_pre_print = error_pre_print;
431 if (mask & RETURN_MASK_ERROR)
432 memcpy ((char *)saved_error, (char *)error_return, sizeof (jmp_buf));
433 if (mask & RETURN_MASK_QUIT)
434 memcpy (saved_quit, quit_return, sizeof (jmp_buf));
435 error_pre_print = errstring;
437 if (setjmp (tmp_jmp) == 0)
439 if (mask & RETURN_MASK_ERROR)
440 memcpy (error_return, tmp_jmp, sizeof (jmp_buf));
441 if (mask & RETURN_MASK_QUIT)
442 memcpy (quit_return, tmp_jmp, sizeof (jmp_buf));
443 val = (*func) (args);
448 restore_cleanups (saved_cleanup_chain);
450 error_pre_print = saved_error_pre_print;
451 if (mask & RETURN_MASK_ERROR)
452 memcpy (error_return, saved_error, sizeof (jmp_buf));
453 if (mask & RETURN_MASK_QUIT)
454 memcpy (quit_return, saved_quit, sizeof (jmp_buf));
458 /* Handler for SIGHUP. */
464 catch_errors (quit_cover, NULL,
465 "Could not kill the program being debugged", RETURN_MASK_ALL);
466 signal (SIGHUP, SIG_DFL);
467 kill (getpid (), SIGHUP);
470 /* Just a little helper function for disconnect(). */
476 caution = 0; /* Throw caution to the wind -- we're exiting.
477 This prevents asking the user dumb questions. */
478 quit_command((char *)0, 0);
482 /* Line number we are currently in in a file which is being sourced. */
483 static int source_line_number;
485 /* Name of the file we are sourcing. */
486 static char *source_file_name;
488 /* Buffer containing the error_pre_print used by the source stuff.
490 static char *source_error;
491 static int source_error_allocated;
493 /* Something to glom on to the start of error_pre_print if source_file_name
495 static char *source_pre_error;
497 /* Clean up on error during a "source" command (or execution of a
498 user-defined command). */
501 source_cleanup (stream)
504 /* Restore the previous input stream. */
508 /* Read commands from STREAM. */
510 read_command_file (stream)
513 struct cleanup *cleanups;
515 cleanups = make_cleanup (source_cleanup, instream);
518 do_cleanups (cleanups);
521 extern void init_proc ();
526 /* Run the init function of each source file */
528 init_cmd_lists (); /* This needs to be done first */
529 initialize_all_files ();
530 init_main (); /* But that omits this file! Do it now */
535 /* We need a default language for parsing expressions, so simple things like
536 "set width 0" won't fail if no language is explicitly set in a config file
537 or implicitly set by reading an executable during startup. */
538 set_language (language_c);
539 expected_language = current_language; /* don't warn about the change. */
542 #ifndef MAIN_OVERRIDE
549 static int quiet = 0;
550 static int batch = 0;
552 /* Pointers to various arguments from command line. */
554 char *execarg = NULL;
555 char *corearg = NULL;
559 /* These are static so that we can take their address in an initializer. */
560 static int print_help;
561 static int print_version;
563 /* Pointers to all arguments of --command option. */
565 /* Allocated size of cmdarg. */
567 /* Number of elements of cmdarg used. */
570 /* Indices of all arguments of --directory option. */
572 /* Allocated size. */
574 /* Number of elements used. */
577 struct stat homebuf, cwdbuf;
578 char *homedir, *homeinit;
582 /* start-sanitize-mpw */
584 /* Drop into MacsBug, but only if the executable is specially named. */
585 if (strcmp(argv[0], "DEBUGGDB") == 0)
586 DebugStr("\pat start of GDB main");
589 mac_app = mac_init ();
591 /* end-sanitize-mpw */
592 /* This needs to happen before the first use of malloc. */
593 init_malloc ((PTR) NULL);
595 #if defined (ALIGN_STACK_ON_STARTUP)
596 i = (int) &count & 0x3;
601 /* If error() is called from initialization code, just exit */
602 if (SET_TOP_LEVEL ()) {
607 cmdarg = (char **) xmalloc (cmdsize * sizeof (*cmdarg));
610 dirarg = (char **) xmalloc (dirsize * sizeof (*dirarg));
614 line = (char *) xmalloc (linesize);
615 line[0] = '\0'; /* Terminate saved (now empty) cmd line */
618 getcwd (dirbuf, sizeof (dirbuf));
619 current_directory = dirbuf;
621 /* Parse arguments and options. */
624 /* When var field is 0, use flag field to record the equivalent
625 short option (or arbitrary numbers starting at 10 for those
626 with no equivalent). */
627 static struct option long_options[] =
629 {"readnow", no_argument, &readnow_symbol_files, 1},
630 {"r", no_argument, &readnow_symbol_files, 1},
631 {"mapped", no_argument, &mapped_symbol_files, 1},
632 {"m", no_argument, &mapped_symbol_files, 1},
633 {"quiet", no_argument, &quiet, 1},
634 {"q", no_argument, &quiet, 1},
635 {"silent", no_argument, &quiet, 1},
636 {"nx", no_argument, &inhibit_gdbinit, 1},
637 {"n", no_argument, &inhibit_gdbinit, 1},
638 {"batch", no_argument, &batch, 1},
639 {"epoch", no_argument, &epoch_interface, 1},
641 /* This is a synonym for "--annotate=1". --annotate is now preferred,
642 but keep this here for a long time because people will be running
643 emacses which use --fullname. */
644 {"fullname", no_argument, 0, 'f'},
645 {"f", no_argument, 0, 'f'},
647 {"annotate", required_argument, 0, 12},
648 {"help", no_argument, &print_help, 1},
649 {"se", required_argument, 0, 10},
650 {"symbols", required_argument, 0, 's'},
651 {"s", required_argument, 0, 's'},
652 {"exec", required_argument, 0, 'e'},
653 {"e", required_argument, 0, 'e'},
654 {"core", required_argument, 0, 'c'},
655 {"c", required_argument, 0, 'c'},
656 {"command", required_argument, 0, 'x'},
657 {"version", no_argument, &print_version, 1},
658 {"x", required_argument, 0, 'x'},
659 {"directory", required_argument, 0, 'd'},
660 {"cd", required_argument, 0, 11},
661 {"tty", required_argument, 0, 't'},
662 {"baud", required_argument, 0, 'b'},
663 {"b", required_argument, 0, 'b'},
664 /* Allow machine descriptions to add more options... */
665 #ifdef ADDITIONAL_OPTIONS
668 {0, no_argument, 0, 0},
675 c = getopt_long_only (argc, argv, "",
676 long_options, &option_index);
680 /* Long option that takes an argument. */
681 if (c == 0 && long_options[option_index].flag == 0)
682 c = long_options[option_index].val;
687 /* Long option that just sets a flag. */
697 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
698 annotation_level = atoi (optarg);
701 annotation_level = 1;
713 cmdarg[ncmd++] = optarg;
717 cmdarg = (char **) xrealloc ((char *)cmdarg,
718 cmdsize * sizeof (*cmdarg));
722 dirarg[ndir++] = optarg;
726 dirarg = (char **) xrealloc ((char *)dirarg,
727 dirsize * sizeof (*dirarg));
741 i = strtol (optarg, &p, 0);
742 if (i == 0 && p == optarg)
744 /* Don't use *_filtered or warning() (which relies on
745 current_target) until after initialize_all_files(). */
749 "warning: could not set baud rate to `%s'.\n", optarg);
755 #ifdef ADDITIONAL_OPTION_CASES
756 ADDITIONAL_OPTION_CASES
759 fprintf_unfiltered (gdb_stderr,
760 "Use `%s --help' for a complete list of options.\n",
766 /* OK, that's all the options. The other arguments are filenames. */
768 for (; optind < argc; optind++)
772 symarg = argv[optind];
773 execarg = argv[optind];
776 corearg = argv[optind];
779 fprintf_unfiltered (gdb_stderr,
780 "Excess command line arguments ignored. (%s%s)\n",
781 argv[optind], (optind == argc - 1) ? "" : " ...");
790 /* Do these (and anything which might call wrap_here or *_filtered)
791 after initialize_all_files. */
794 print_gdb_version (gdb_stdout);
796 printf_filtered ("\n");
802 /* --version is intentionally not documented here, because we
803 are printing the version here, and the help is long enough
806 print_gdb_version (gdb_stdout);
807 /* Make sure the output gets printed. */
809 printf_filtered ("\n");
811 /* But don't use *_filtered here. We don't want to prompt for continue
812 no matter how small the screen or how much we're going to print. */
813 /* start-sanitize-mpw */
814 /* For reasons too ugly to describe... */
816 fputs_unfiltered ("This is the GNU debugger.\n", gdb_stdout);
818 /* end-sanitize-mpw */
820 This is the GNU debugger. Usage:\n\
821 gdb [options] [executable-file [core-file or process-id]]\n\
823 --help Print this message.\n\
824 --quiet Do not print version number on startup.\n\
825 --fullname Output information used by emacs-GDB interface.\n\
826 --epoch Output information used by epoch emacs-GDB interface.\n\
827 --batch Exit after processing options.\n\
828 --nx Do not read .gdbinit file.\n\
829 --tty=TTY Use TTY for input/output by the program being debugged.\n\
830 --cd=DIR Change current directory to DIR.\n\
831 --directory=DIR Search for source files in DIR.\n\
832 --command=FILE Execute GDB commands from FILE.\n\
833 --symbols=SYMFILE Read symbols from SYMFILE.\n\
834 --exec=EXECFILE Use EXECFILE as the executable.\n\
835 --se=FILE Use FILE as symbol file and executable file.\n\
836 --core=COREFILE Analyze the core dump COREFILE.\n\
837 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
838 --mapped Use mapped symbol files if supported on this system.\n\
839 --readnow Fully read symbol files on first access.\n\
841 /* start-sanitize-mpw */
843 /* end-sanitize-mpw */
844 #ifdef ADDITIONAL_OPTION_HELP
845 fputs_unfiltered (ADDITIONAL_OPTION_HELP, gdb_stdout);
847 fputs_unfiltered ("\n\
848 For more information, type \"help\" from within GDB, or consult the\n\
849 GDB manual (available as on-line info or a printed manual).\n", gdb_stdout);
855 /* Print all the junk at the top, with trailing "..." if we are about
856 to read a symbol file (possibly slowly). */
857 print_gnu_advertisement ();
858 print_gdb_version (gdb_stdout);
860 printf_filtered ("..");
862 gdb_flush (gdb_stdout); /* Force to screen during slow operations */
865 error_pre_print = "\n\n";
866 /* We may get more than one warning, don't double space all of them... */
867 warning_pre_print = "\nwarning: ";
869 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
870 *before* all the command line arguments are processed; it sets
871 global parameters, which are independent of what file you are
872 debugging or what directory you are in. */
873 homedir = getenv ("HOME");
876 homeinit = (char *) alloca (strlen (getenv ("HOME")) +
877 strlen (gdbinit) + 10);
878 strcpy (homeinit, getenv ("HOME"));
879 strcat (homeinit, "/");
880 strcat (homeinit, gdbinit);
881 if (!inhibit_gdbinit && access (homeinit, R_OK) == 0)
883 if (!SET_TOP_LEVEL ())
884 source_command (homeinit, 0);
886 do_cleanups (ALL_CLEANUPS);
888 /* Do stats; no need to do them elsewhere since we'll only
889 need them if homedir is set. Make sure that they are
890 zero in case one of them fails (this guarantees that they
891 won't match if either exists). */
893 memset (&homebuf, 0, sizeof (struct stat));
894 memset (&cwdbuf, 0, sizeof (struct stat));
896 stat (homeinit, &homebuf);
897 stat (gdbinit, &cwdbuf); /* We'll only need this if
901 /* Now perform all the actions indicated by the arguments. */
904 if (!SET_TOP_LEVEL ())
906 cd_command (cdarg, 0);
909 do_cleanups (ALL_CLEANUPS);
911 for (i = 0; i < ndir; i++)
912 if (!SET_TOP_LEVEL ())
913 directory_command (dirarg[i], 0);
915 do_cleanups (ALL_CLEANUPS);
919 && STREQ (execarg, symarg))
921 /* The exec file and the symbol-file are the same. If we can't open
922 it, better only print one error message. */
923 if (!SET_TOP_LEVEL ())
925 exec_file_command (execarg, !batch);
926 symbol_file_command (symarg, 0);
932 if (!SET_TOP_LEVEL ())
933 exec_file_command (execarg, !batch);
935 if (!SET_TOP_LEVEL ())
936 symbol_file_command (symarg, 0);
938 do_cleanups (ALL_CLEANUPS);
940 /* After the symbol file has been read, print a newline to get us
941 beyond the copyright line... But errors should still set off
942 the error message with a (single) blank line. */
944 printf_filtered ("\n");
945 error_pre_print = "\n";
946 warning_pre_print = "\nwarning: ";
949 if (!SET_TOP_LEVEL ())
950 core_file_command (corearg, !batch);
951 else if (isdigit (corearg[0]) && !SET_TOP_LEVEL ())
952 attach_command (corearg, !batch);
953 do_cleanups (ALL_CLEANUPS);
956 if (!SET_TOP_LEVEL ())
957 tty_command (ttyarg, !batch);
958 do_cleanups (ALL_CLEANUPS);
960 #ifdef ADDITIONAL_OPTION_HANDLER
961 ADDITIONAL_OPTION_HANDLER;
964 /* Error messages should no longer be distinguished with extra output. */
966 warning_pre_print = "warning: ";
968 /* Read the .gdbinit file in the current directory, *if* it isn't
969 the same as the $HOME/.gdbinit file (it should exist, also). */
972 || memcmp ((char *) &homebuf, (char *) &cwdbuf, sizeof (struct stat)))
973 if (!inhibit_gdbinit && access (gdbinit, R_OK) == 0)
975 if (!SET_TOP_LEVEL ())
976 source_command (gdbinit, 0);
978 do_cleanups (ALL_CLEANUPS);
980 for (i = 0; i < ncmd; i++)
982 if (!SET_TOP_LEVEL ())
984 if (cmdarg[i][0] == '-' && cmdarg[i][1] == '\0')
985 read_command_file (stdin);
987 source_command (cmdarg[i], !batch);
988 do_cleanups (ALL_CLEANUPS);
993 /* Read in the old history after all the command files have been read. */
998 /* We have hit the end of the batch file. */
1002 /* Do any host- or target-specific hacks. This is used for i960 targets
1003 to force the user to set a nindy target and spec its parameters. */
1005 #ifdef BEFORE_MAIN_LOOP_HOOK
1006 BEFORE_MAIN_LOOP_HOOK;
1009 /* The command loop. */
1013 if (!SET_TOP_LEVEL ())
1015 do_cleanups (ALL_CLEANUPS); /* Do complete cleanup */
1016 /* start-sanitize-mpw */
1018 /* If we're being a Mac application, go into a Mac-specific
1019 event-handling loop instead. We still want to be inside
1020 the outer loop, because that will catch longjmps resulting
1021 from some command executions. */
1023 mac_command_loop ();
1026 /* end-sanitize-mpw */
1028 quit_command ((char *)0, instream == stdin);
1031 /* No exit -- exit is through quit_command. */
1040 proc_wait (pid, status)
1044 return wait (status);
1048 proc_remove_foreign (pid)
1052 #endif /* MAIN_OVERRIDE */
1055 execute_user_command (c, args)
1056 struct cmd_list_element *c;
1059 register struct command_line *cmdlines;
1060 struct cleanup *old_chain;
1063 error ("User-defined commands cannot take arguments.");
1065 cmdlines = c->user_commands;
1070 /* Set the instream to 0, indicating execution of a
1071 user-defined function. */
1072 old_chain = make_cleanup (source_cleanup, instream);
1073 instream = (FILE *) 0;
1076 execute_command (cmdlines->line, 0);
1077 cmdlines = cmdlines->next;
1079 do_cleanups (old_chain);
1082 /* Execute the line P as a command.
1083 Pass FROM_TTY as second argument to the defining function. */
1086 execute_command (p, from_tty)
1090 register struct cmd_list_element *c;
1091 register enum language flang;
1092 static int warned = 0;
1096 /* This can happen when command_line_input hits end of file. */
1100 while (*p == ' ' || *p == '\t') p++;
1105 c = lookup_cmd (&p, cmdlist, "", 0, 1);
1106 /* Pass null arg rather than an empty one. */
1109 /* If this command has been hooked, run the hook first. */
1111 execute_user_command (c->hook, (char *)0);
1113 if (c->class == class_user)
1114 execute_user_command (c, arg);
1115 else if (c->type == set_cmd || c->type == show_cmd)
1116 do_setshow_command (arg, from_tty & caution, c);
1117 else if (c->function.cfunc == NO_FUNCTION)
1118 error ("That is not a command, just a help topic.");
1120 (*c->function.cfunc) (arg, from_tty & caution);
1123 /* Tell the user if the language has changed (except first time). */
1124 if (current_language != expected_language)
1126 if (language_mode == language_mode_auto) {
1127 language_info (1); /* Print what changed. */
1132 /* Warn the user if the working language does not match the
1133 language of the current frame. Only warn the user if we are
1134 actually running the program, i.e. there is a stack. */
1135 /* FIXME: This should be cacheing the frame and only running when
1136 the frame changes. */
1137 if (target_has_stack)
1139 flang = get_frame_language ();
1141 && flang != language_unknown
1142 && flang != current_language->la_language)
1144 printf_filtered ("%s\n", lang_frame_mismatch_warn);
1152 command_loop_marker (foo)
1157 /* Read commands from `instream' and execute them
1158 until end of file or error reading instream. */
1162 struct cleanup *old_chain;
1164 int stdin_is_tty = ISATTY (stdin);
1166 while (!feof (instream))
1168 if (window_hook && instream == stdin)
1169 (*window_hook) (instream, prompt);
1172 if (instream == stdin && stdin_is_tty)
1173 reinitialize_more_filter ();
1174 old_chain = make_cleanup (command_loop_marker, 0);
1175 command = command_line_input (instream == stdin ? prompt : (char *) NULL,
1176 instream == stdin, "prompt");
1179 execute_command (command, instream == stdin);
1180 /* Do any commands attached to breakpoint we stopped at. */
1181 bpstat_do_actions (&stop_bpstat);
1182 do_cleanups (old_chain);
1186 /* Commands call this if they do not want to be repeated by null lines. */
1194 /* If we aren't reading from standard input, we are saving the last
1195 thing read from stdin in line and don't want to delete it. Null lines
1196 won't repeat here in any case. */
1197 if (instream == stdin)
1201 /* Read a line from the stream "instream" without command line editing.
1203 It prints PRROMPT once at the start.
1204 Action is compatible with "readline", e.g. space for the result is
1205 malloc'd and should be freed by the caller.
1207 A NULL return means end of file. */
1209 gdb_readline (prrompt)
1214 int input_index = 0;
1215 int result_size = 80;
1219 /* Don't use a _filtered function here. It causes the assumed
1220 character position to be off, since the newline we read from
1221 the user is not accounted for. */
1222 fputs_unfiltered (prrompt, gdb_stdout);
1223 /* start-sanitize-mpw */
1225 /* Move to a new line so the entered line doesn't have a prompt
1226 on the front of it. */
1227 fputs_unfiltered ("\n", gdb_stdout);
1229 /* end-sanitize-mpw */
1230 gdb_flush (gdb_stdout);
1233 result = (char *) xmalloc (result_size);
1237 /* Read from stdin if we are executing a user defined command.
1238 This is the right thing for prompt_for_continue, at least. */
1239 c = fgetc (instream ? instream : stdin);
1243 if (input_index > 0)
1244 /* The last line does not end with a newline. Return it, and
1245 if we are called again fgetc will still return EOF and
1246 we'll return NULL then. */
1255 result[input_index++] = c;
1256 while (input_index >= result_size)
1259 result = (char *) xrealloc (result, result_size);
1263 result[input_index++] = '\0';
1267 /* Variables which control command line editing and history
1268 substitution. These variables are given default values at the end
1270 static int command_editing_p;
1271 static int history_expansion_p;
1272 static int write_history_p;
1273 static int history_size;
1274 static char *history_filename;
1276 /* readline uses the word breaks for two things:
1277 (1) In figuring out where to point the TEXT parameter to the
1278 rl_completion_entry_function. Since we don't use TEXT for much,
1279 it doesn't matter a lot what the word breaks are for this purpose, but
1280 it does affect how much stuff M-? lists.
1281 (2) If one of the matches contains a word break character, readline
1282 will quote it. That's why we switch between
1283 gdb_completer_word_break_characters and
1284 gdb_completer_command_word_break_characters. I'm not sure when
1285 we need this behavior (perhaps for funky characters in C++ symbols?). */
1287 /* Variables which are necessary for fancy command line editing. */
1288 char *gdb_completer_word_break_characters =
1289 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
1291 /* When completing on command names, we remove '-' from the list of
1292 word break characters, since we use it in command names. If the
1293 readline library sees one in any of the current completion strings,
1294 it thinks that the string needs to be quoted and automatically supplies
1296 char *gdb_completer_command_word_break_characters =
1297 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,";
1299 /* Characters that can be used to quote completion strings. Note that we
1300 can't include '"' because the gdb C parser treats such quoted sequences
1302 char *gdb_completer_quote_characters =
1305 /* Functions that are used as part of the fancy command line editing. */
1307 /* This can be used for functions which don't want to complete on symbols
1308 but don't want to complete on anything else either. */
1311 noop_completer (text, prefix)
1318 /* Complete on filenames. */
1320 filename_completer (text, word)
1324 /* From readline. */
1325 extern char *filename_completion_function ();
1326 int subsequent_name;
1328 int return_val_used;
1329 int return_val_alloced;
1331 return_val_used = 0;
1332 /* Small for testing. */
1333 return_val_alloced = 1;
1334 return_val = (char **) xmalloc (return_val_alloced * sizeof (char *));
1336 subsequent_name = 0;
1340 p = filename_completion_function (text, subsequent_name);
1341 if (return_val_used >= return_val_alloced)
1343 return_val_alloced *= 2;
1345 (char **) xrealloc (return_val,
1346 return_val_alloced * sizeof (char *));
1350 return_val[return_val_used++] = p;
1353 /* Like emacs, don't complete on old versions. Especially useful
1354 in the "source" command. */
1355 if (p[strlen (p) - 1] == '~')
1361 /* Return exactly p. */
1362 return_val[return_val_used++] = p;
1363 else if (word > text)
1365 /* Return some portion of p. */
1366 q = xmalloc (strlen (p) + 5);
1367 strcpy (q, p + (word - text));
1368 return_val[return_val_used++] = q;
1373 /* Return some of TEXT plus p. */
1374 q = xmalloc (strlen (p) + (text - word) + 5);
1375 strncpy (q, word, text - word);
1376 q[text - word] = '\0';
1378 return_val[return_val_used++] = q;
1382 subsequent_name = 1;
1385 /* There is no way to do this just long enough to affect quote inserting
1386 without also affecting the next completion. This should be fixed in
1388 /* Insure that readline does the right thing
1389 with respect to inserting quotes. */
1390 rl_completer_word_break_characters = "";
1395 /* Here are some useful test cases for completion. FIXME: These should
1396 be put in the test suite. They should be tested with both M-? and TAB.
1398 "show output-" "radix"
1399 "show output" "-radix"
1400 "p" ambiguous (commands starting with p--path, print, printf, etc.)
1401 "p " ambiguous (all symbols)
1402 "info t foo" no completions
1403 "info t " no completions
1404 "info t" ambiguous ("info target", "info terminal", etc.)
1405 "info ajksdlfk" no completions
1406 "info ajksdlfk " no completions
1408 "info " ambiguous (all info commands)
1409 "p \"a" no completions (string constant)
1410 "p 'a" ambiguous (all symbols starting with a)
1411 "p b-a" ambiguous (all symbols starting with a)
1412 "p b-" ambiguous (all symbols)
1413 "file Make" "file" (word break hard to screw up here)
1414 "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
1417 /* Generate completions one by one for the completer. Each time we are
1418 called return another potential completion to the caller. The function
1419 is misnamed; it just completes on commands or passes the buck to the
1420 command's completer function; the stuff specific to symbol completion
1421 is in make_symbol_completion_list.
1423 TEXT is readline's idea of the "word" we are looking at; we don't really
1424 like readline's ideas about word breaking so we ignore it.
1426 MATCHES is the number of matches that have currently been collected from
1427 calling this completion function. When zero, then we need to initialize,
1428 otherwise the initialization has already taken place and we can just
1429 return the next potential completion string.
1431 Returns NULL if there are no more completions, else a pointer to a string
1432 which is a possible completion.
1434 RL_LINE_BUFFER is available to be looked at; it contains the entire text
1435 of the line. RL_POINT is the offset in that line of the cursor. You
1436 should pretend that the line ends at RL_POINT. */
1439 symbol_completion_function (text, matches)
1443 static char **list = (char **)NULL; /* Cache of completions */
1444 static int index; /* Next cached completion */
1445 char *output = NULL;
1446 char *tmp_command, *p;
1447 /* Pointer within tmp_command which corresponds to text. */
1449 struct cmd_list_element *c, *result_list;
1453 /* The caller is beginning to accumulate a new set of completions, so
1454 we need to find all of them now, and cache them for returning one at
1455 a time on future calls. */
1459 /* Free the storage used by LIST, but not by the strings inside.
1460 This is because rl_complete_internal () frees the strings. */
1466 /* Choose the default set of word break characters to break completions.
1467 If we later find out that we are doing completions on command strings
1468 (as opposed to strings supplied by the individual command completer
1469 functions, which can be any string) then we will switch to the
1470 special word break set for command strings, which leaves out the
1471 '-' character used in some commands. */
1473 rl_completer_word_break_characters =
1474 gdb_completer_word_break_characters;
1476 /* Decide whether to complete on a list of gdb commands or on symbols. */
1477 tmp_command = (char *) alloca (rl_point + 1);
1480 strncpy (tmp_command, rl_line_buffer, rl_point);
1481 tmp_command[rl_point] = '\0';
1482 /* Since text always contains some number of characters leading up
1483 to rl_point, we can find the equivalent position in tmp_command
1484 by subtracting that many characters from the end of tmp_command. */
1485 word = tmp_command + rl_point - strlen (text);
1489 /* An empty line we want to consider ambiguous; that is, it
1490 could be any command. */
1491 c = (struct cmd_list_element *) -1;
1496 c = lookup_cmd_1 (&p, cmdlist, &result_list, 1);
1499 /* Move p up to the next interesting thing. */
1500 while (*p == ' ' || *p == '\t')
1507 /* It is an unrecognized command. So there are no
1508 possible completions. */
1511 else if (c == (struct cmd_list_element *) -1)
1515 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
1516 doesn't advance over that thing itself. Do so now. */
1518 while (*q && (isalnum (*q) || *q == '-' || *q == '_'))
1520 if (q != tmp_command + rl_point)
1522 /* There is something beyond the ambiguous
1523 command, so there are no possible completions. For
1524 example, "info t " or "info t foo" does not complete
1525 to anything, because "info t" can be "info target" or
1531 /* We're trying to complete on the command which was ambiguous.
1532 This we can deal with. */
1535 list = complete_on_cmdlist (*result_list->prefixlist, p,
1540 list = complete_on_cmdlist (cmdlist, p, word);
1542 /* Insure that readline does the right thing with respect to
1543 inserting quotes. */
1544 rl_completer_word_break_characters =
1545 gdb_completer_command_word_break_characters;
1550 /* We've recognized a full command. */
1552 if (p == tmp_command + rl_point)
1554 /* There is no non-whitespace in the line beyond the command. */
1556 if (p[-1] == ' ' || p[-1] == '\t')
1558 /* The command is followed by whitespace; we need to complete
1559 on whatever comes after command. */
1562 /* It is a prefix command; what comes after it is
1563 a subcommand (e.g. "info "). */
1564 list = complete_on_cmdlist (*c->prefixlist, p, word);
1566 /* Insure that readline does the right thing
1567 with respect to inserting quotes. */
1568 rl_completer_word_break_characters =
1569 gdb_completer_command_word_break_characters;
1573 /* It is a normal command; what comes after it is
1574 completed by the command's completer function. */
1575 list = (*c->completer) (p, word);
1580 /* The command is not followed by whitespace; we need to
1581 complete on the command itself. e.g. "p" which is a
1582 command itself but also can complete to "print", "ptype"
1586 /* Find the command we are completing on. */
1588 while (q > tmp_command)
1590 if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_')
1596 list = complete_on_cmdlist (result_list, q, word);
1598 /* Insure that readline does the right thing
1599 with respect to inserting quotes. */
1600 rl_completer_word_break_characters =
1601 gdb_completer_command_word_break_characters;
1606 /* There is non-whitespace beyond the command. */
1608 if (c->prefixlist && !c->allow_unknown)
1610 /* It is an unrecognized subcommand of a prefix command,
1611 e.g. "info adsfkdj". */
1616 /* It is a normal command. */
1617 list = (*c->completer) (p, word);
1623 /* If we found a list of potential completions during initialization then
1624 dole them out one at a time. The vector of completions is NULL
1625 terminated, so after returning the last one, return NULL (and continue
1626 to do so) each time we are called after that, until a new list is
1631 output = list[index];
1639 /* Can't do this because readline hasn't yet checked the word breaks
1640 for figuring out whether to insert a quote. */
1642 /* Make sure the word break characters are set back to normal for the
1643 next time that readline tries to complete something. */
1644 rl_completer_word_break_characters =
1645 gdb_completer_word_break_characters;
1651 /* Skip over a possibly quoted word (as defined by the quote characters
1652 and word break characters the completer uses). Returns pointer to the
1653 location after the "word". */
1659 char quote_char = '\0';
1662 for (scan = str; *scan != '\0'; scan++)
1664 if (quote_char != '\0')
1666 /* Ignore everything until the matching close quote char */
1667 if (*scan == quote_char)
1669 /* Found matching close quote. */
1674 else if (strchr (gdb_completer_quote_characters, *scan))
1676 /* Found start of a quoted string. */
1679 else if (strchr (gdb_completer_word_break_characters, *scan))
1693 #if STOP_SIGNAL == SIGTSTP
1694 signal (SIGTSTP, SIG_DFL);
1696 kill (getpid (), SIGTSTP);
1697 signal (SIGTSTP, stop_sig);
1699 signal (STOP_SIGNAL, stop_sig);
1701 printf_unfiltered ("%s", prompt);
1702 gdb_flush (gdb_stdout);
1704 /* Forget about any previous command -- null line now will do nothing. */
1707 #endif /* STOP_SIGNAL */
1709 /* Initialize signal handlers. */
1719 signal (SIGINT, request_quit);
1721 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
1722 passed to the inferior, which we don't want. It would be
1723 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
1724 on BSD4.3 systems using vfork, that can affect the
1725 GDB process as well as the inferior (the signal handling tables
1726 might be in memory, shared between the two). Since we establish
1727 a handler for SIGQUIT, when we call exec it will set the signal
1728 to SIG_DFL for us. */
1729 signal (SIGQUIT, do_nothing);
1730 if (signal (SIGHUP, do_nothing) != SIG_IGN)
1731 signal (SIGHUP, disconnect);
1732 signal (SIGFPE, float_handler);
1734 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1735 signal (SIGWINCH, SIGWINCH_HANDLER);
1739 /* Read one line from the command input stream `instream'
1740 into the local static buffer `linebuffer' (whose current length
1742 The buffer is made bigger as necessary.
1743 Returns the address of the start of the line.
1745 NULL is returned for end of file.
1747 *If* the instream == stdin & stdin is a terminal, the line read
1748 is copied into the file line saver (global var char *line,
1749 length linesize) so that it can be duplicated.
1751 This routine either uses fancy command line editing or
1752 simple input as the user has requested. */
1755 command_line_input (prrompt, repeat, annotation_suffix)
1758 char *annotation_suffix;
1760 static char *linebuffer = 0;
1761 static unsigned linelength = 0;
1765 char *local_prompt = prrompt;
1770 if (annotation_level > 1 && instream == stdin)
1772 local_prompt = alloca ((prrompt == NULL ? 0 : strlen (prrompt))
1773 + strlen (annotation_suffix) + 40);
1774 if (prrompt == NULL)
1775 local_prompt[0] = '\0';
1777 strcpy (local_prompt, prrompt);
1778 strcat (local_prompt, "\n\032\032");
1779 strcat (local_prompt, annotation_suffix);
1780 strcat (local_prompt, "\n");
1783 if (linebuffer == 0)
1786 linebuffer = (char *) xmalloc (linelength);
1791 /* Control-C quits instantly if typed while in this loop
1792 since it should not wait until the user types a newline. */
1796 signal (STOP_SIGNAL, stop_sig);
1801 /* Make sure that all output has been output. Some machines may let
1802 you get away with leaving out some of the gdb_flush, but not all. */
1804 gdb_flush (gdb_stdout);
1805 gdb_flush (gdb_stderr);
1807 if (source_file_name != NULL)
1809 ++source_line_number;
1810 sprintf (source_error,
1811 "%s%s:%d: Error in sourced command file:\n",
1814 source_line_number);
1815 error_pre_print = source_error;
1818 if (annotation_level > 1 && instream == stdin)
1820 printf_unfiltered ("\n\032\032pre-");
1821 printf_unfiltered (annotation_suffix);
1822 printf_unfiltered ("\n");
1825 /* Don't use fancy stuff if not talking to stdin. */
1826 if (command_editing_p && instream == stdin
1827 && ISATTY (instream))
1828 rl = readline (local_prompt);
1830 rl = gdb_readline (local_prompt);
1832 if (annotation_level > 1 && instream == stdin)
1834 printf_unfiltered ("\n\032\032post-");
1835 printf_unfiltered (annotation_suffix);
1836 printf_unfiltered ("\n");
1839 if (!rl || rl == (char *) EOF)
1844 if (strlen(rl) + 1 + (p - linebuffer) > linelength)
1846 linelength = strlen(rl) + 1 + (p - linebuffer);
1847 nline = (char *) xrealloc (linebuffer, linelength);
1848 p += nline - linebuffer;
1852 /* Copy line. Don't copy null at end. (Leaves line alone
1853 if this was just a newline) */
1857 free (rl); /* Allocated in readline. */
1859 if (p == linebuffer || *(p - 1) != '\\')
1862 p--; /* Put on top of '\'. */
1863 local_prompt = (char *) 0;
1868 signal (STOP_SIGNAL, SIG_DFL);
1875 #define SERVER_COMMAND_LENGTH 7
1877 (p - linebuffer > SERVER_COMMAND_LENGTH)
1878 && STREQN (linebuffer, "server ", SERVER_COMMAND_LENGTH);
1881 /* Note that we don't set `line'. Between this and the check in
1882 dont_repeat, this insures that repeating will still do the
1885 return linebuffer + SERVER_COMMAND_LENGTH;
1888 /* Do history expansion if that is wished. */
1889 if (history_expansion_p && instream == stdin
1890 && ISATTY (instream))
1892 char *history_value;
1895 *p = '\0'; /* Insert null now. */
1896 expanded = history_expand (linebuffer, &history_value);
1899 /* Print the changes. */
1900 printf_unfiltered ("%s\n", history_value);
1902 /* If there was an error, call this function again. */
1905 free (history_value);
1906 return command_line_input (prrompt, repeat, annotation_suffix);
1908 if (strlen (history_value) > linelength)
1910 linelength = strlen (history_value) + 1;
1911 linebuffer = (char *) xrealloc (linebuffer, linelength);
1913 strcpy (linebuffer, history_value);
1914 p = linebuffer + strlen(linebuffer);
1915 free (history_value);
1919 /* If we just got an empty line, and that is supposed
1920 to repeat the previous command, return the value in the
1924 if (p == linebuffer)
1927 while (*p1 == ' ' || *p1 == '\t')
1935 /* Add line to history if appropriate. */
1936 if (instream == stdin
1937 && ISATTY (stdin) && *linebuffer)
1938 add_history (linebuffer);
1940 /* Note: lines consisting solely of comments are added to the command
1941 history. This is useful when you type a command, and then
1942 realize you don't want to execute it quite yet. You can comment
1943 out the command and then later fetch it from the value history
1944 and remove the '#'. The kill ring is probably better, but some
1945 people are in the habit of commenting things out. */
1947 while ((c = *p1++) != '\0')
1950 while ((c = *p1++) != '"')
1952 /* Make sure an escaped '"' doesn't make us think the string
1960 while ((c = *p1++) != '\'')
1962 /* Make sure an escaped '\'' doesn't make us think the string
1971 /* Found a comment. */
1977 /* Save into global buffer if appropriate. */
1980 if (linelength > linesize)
1982 line = xrealloc (line, linelength);
1983 linesize = linelength;
1985 strcpy (line, linebuffer);
1992 /* Read lines from the input stream
1993 and accumulate them in a chain of struct command_line's
1994 which is then returned. */
1996 struct command_line *
1997 read_command_lines ()
1999 struct command_line *first = 0;
2000 register struct command_line *next, *tail = 0;
2001 register char *p, *p1;
2002 struct cleanup *old_chain = 0;
2007 p = command_line_input ((char *) NULL, instream == stdin, "commands");
2009 /* Treat end of file like "end". */
2012 /* Remove leading and trailing blanks. */
2013 while (*p == ' ' || *p == '\t') p++;
2014 p1 = p + strlen (p);
2015 while (p1 != p && (p1[-1] == ' ' || p1[-1] == '\t')) p1--;
2017 /* Is this "end"? */
2018 if (p1 - p == 3 && !strncmp (p, "end", 3))
2021 /* No => add this line to the chain of command lines. */
2022 next = (struct command_line *) xmalloc (sizeof (struct command_line));
2023 next->line = savestring (p, p1 - p);
2031 /* We just read the first line.
2032 From now on, arrange to throw away the lines we have
2033 if we quit or get an error while inside this function. */
2035 old_chain = make_cleanup (free_command_lines, &first);
2042 /* Now we are about to return the chain to our caller,
2043 so freeing it becomes his responsibility. */
2045 discard_cleanups (old_chain);
2049 /* Free a chain of struct command_line's. */
2052 free_command_lines (lptr)
2053 struct command_line **lptr;
2055 register struct command_line *l = *lptr;
2056 register struct command_line *next;
2067 /* Add an element to the list of info subcommands. */
2070 add_info (name, fun, doc)
2072 void (*fun) PARAMS ((char *, int));
2075 add_cmd (name, no_class, fun, doc, &infolist);
2078 /* Add an alias to the list of info subcommands. */
2081 add_info_alias (name, oldname, abbrev_flag)
2086 add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
2089 /* The "info" command is defined as a prefix, with allow_unknown = 0.
2090 Therefore, its own definition is called only for "info" with no args. */
2094 info_command (arg, from_tty)
2098 printf_unfiltered ("\"info\" must be followed by the name of an info command.\n");
2099 help_list (infolist, "info ", -1, gdb_stdout);
2102 /* The "complete" command is used by Emacs to implement completion. */
2106 complete_command (arg, from_tty)
2117 rl_line_buffer[0] = '\0';
2122 strcpy (rl_line_buffer, arg);
2123 rl_point = strlen (arg);
2126 for (completion = symbol_completion_function (rl_line_buffer, i = 0);
2128 completion = symbol_completion_function (rl_line_buffer, ++i))
2129 printf_unfiltered ("%s\n", completion);
2132 /* The "show" command with no arguments shows all the settings. */
2136 show_command (arg, from_tty)
2140 cmd_show_list (showlist, from_tty, "");
2143 /* Add an element to the list of commands. */
2146 add_com (name, class, fun, doc)
2148 enum command_class class;
2149 void (*fun) PARAMS ((char *, int));
2152 add_cmd (name, class, fun, doc, &cmdlist);
2155 /* Add an alias or abbreviation command to the list of commands. */
2158 add_com_alias (name, oldname, class, abbrev_flag)
2161 enum command_class class;
2164 add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
2171 error ("Argument required (%s).", why);
2176 help_command (command, from_tty)
2178 int from_tty; /* Ignored */
2180 help_cmd (command, gdb_stdout);
2184 validate_comname (comname)
2190 error_no_arg ("name of command to define");
2195 if (!isalnum(*p) && *p != '-')
2196 error ("Junk in argument list: \"%s\"", p);
2201 /* This is just a placeholder in the command data structures. */
2203 user_defined_command (ignore, from_tty)
2210 define_command (comname, from_tty)
2214 register struct command_line *cmds;
2215 register struct cmd_list_element *c, *newc, *hookc = 0;
2216 char *tem = comname;
2217 #define HOOK_STRING "hook-"
2220 validate_comname (comname);
2222 /* Look it up, and verify that we got an exact match. */
2223 c = lookup_cmd (&tem, cmdlist, "", -1, 1);
2224 if (c && !STREQ (comname, c->name))
2229 if (c->class == class_user || c->class == class_alias)
2230 tem = "Redefine command \"%s\"? ";
2232 tem = "Really redefine built-in command \"%s\"? ";
2233 if (!query (tem, c->name))
2234 error ("Command \"%s\" not redefined.", c->name);
2237 /* If this new command is a hook, then mark the command which it
2238 is hooking. Note that we allow hooking `help' commands, so that
2239 we can hook the `stop' pseudo-command. */
2241 if (!strncmp (comname, HOOK_STRING, HOOK_LEN))
2243 /* Look up cmd it hooks, and verify that we got an exact match. */
2244 tem = comname+HOOK_LEN;
2245 hookc = lookup_cmd (&tem, cmdlist, "", -1, 0);
2246 if (hookc && !STREQ (comname+HOOK_LEN, hookc->name))
2250 warning ("Your new `%s' command does not hook any existing command.",
2252 if (!query ("Proceed? ", (char *)0))
2253 error ("Not confirmed.");
2257 comname = savestring (comname, strlen (comname));
2259 /* If the rest of the commands will be case insensitive, this one
2260 should behave in the same manner. */
2261 for (tem = comname; *tem; tem++)
2262 if (isupper(*tem)) *tem = tolower(*tem);
2266 printf_unfiltered ("Type commands for definition of \"%s\".\n\
2267 End with a line saying just \"end\".\n", comname);
2268 gdb_flush (gdb_stdout);
2271 cmds = read_command_lines ();
2273 if (c && c->class == class_user)
2274 free_command_lines (&c->user_commands);
2276 newc = add_cmd (comname, class_user, user_defined_command,
2277 (c && c->class == class_user)
2278 ? c->doc : savestring ("User-defined.", 13), &cmdlist);
2279 newc->user_commands = cmds;
2281 /* If this new command is a hook, then mark both commands as being
2285 hookc->hook = newc; /* Target gets hooked. */
2286 newc->hookee = hookc; /* We are marked as hooking target cmd. */
2291 document_command (comname, from_tty)
2295 struct command_line *doclines;
2296 register struct cmd_list_element *c;
2297 char *tem = comname;
2299 validate_comname (comname);
2301 c = lookup_cmd (&tem, cmdlist, "", 0, 1);
2303 if (c->class != class_user)
2304 error ("Command \"%s\" is built-in.", comname);
2307 printf_unfiltered ("Type documentation for \"%s\".\n\
2308 End with a line saying just \"end\".\n", comname);
2310 doclines = read_command_lines ();
2312 if (c->doc) free (c->doc);
2315 register struct command_line *cl1;
2316 register int len = 0;
2318 for (cl1 = doclines; cl1; cl1 = cl1->next)
2319 len += strlen (cl1->line) + 1;
2321 c->doc = (char *) xmalloc (len + 1);
2324 for (cl1 = doclines; cl1; cl1 = cl1->next)
2326 strcat (c->doc, cl1->line);
2328 strcat (c->doc, "\n");
2332 free_command_lines (&doclines);
2336 print_gnu_advertisement()
2338 printf_unfiltered ("\
2339 GDB is free software and you are welcome to distribute copies of it\n\
2340 under certain conditions; type \"show copying\" to see the conditions.\n\
2341 There is absolutely no warranty for GDB; type \"show warranty\" for details.\n\
2346 print_gdb_version (stream)
2349 fprintf_filtered (stream, "\
2350 GDB %s (%s", version, host_name);
2352 if (!STREQ (host_name, target_name))
2353 fprintf_filtered (stream, " --target %s", target_name);
2355 fprintf_filtered (stream, "), ");
2357 fprintf_filtered (stream, "Copyright 1994 Free Software Foundation, Inc.");
2362 show_version (args, from_tty)
2367 print_gnu_advertisement ();
2368 print_gdb_version (gdb_stdout);
2369 printf_filtered ("\n");
2373 /* xgdb calls this to reprint the usual GDB prompt. Obsolete now that xgdb
2379 printf_unfiltered ("%s", prompt);
2380 gdb_flush (gdb_stdout);
2384 quit_command (args, from_tty)
2388 if (inferior_pid != 0 && target_has_execution)
2392 if (query ("The program is running. Quit anyway (and detach it)? "))
2393 target_detach (args, from_tty);
2395 error ("Not confirmed.");
2399 if (query ("The program is running. Quit anyway (and kill it)? "))
2402 error ("Not confirmed.");
2405 /* UDI wants this, to kill the TIP. */
2408 /* Save the history information if it is appropriate to do so. */
2409 if (write_history_p && history_filename)
2410 write_history (history_filename);
2415 /* Returns whether GDB is running on a terminal and whether the user
2416 desires that questions be asked of them on that terminal. */
2419 input_from_terminal_p ()
2421 return gdb_has_a_terminal () && (instream == stdin) & caution;
2426 pwd_command (args, from_tty)
2430 if (args) error ("The \"pwd\" command does not take an argument: %s", args);
2431 getcwd (dirbuf, sizeof (dirbuf));
2433 if (!STREQ (dirbuf, current_directory))
2434 printf_unfiltered ("Working directory %s\n (canonically %s).\n",
2435 current_directory, dirbuf);
2437 printf_unfiltered ("Working directory %s.\n", current_directory);
2441 cd_command (dir, from_tty)
2446 /* Found something other than leading repetitions of "/..". */
2447 int found_real_path;
2450 /* If the new directory is absolute, repeat is a no-op; if relative,
2451 repeat might be useful but is more likely to be a mistake. */
2455 error_no_arg ("new working directory");
2457 dir = tilde_expand (dir);
2458 make_cleanup (free, dir);
2460 if (chdir (dir) < 0)
2461 perror_with_name (dir);
2464 dir = savestring (dir, len - (len > 1 && dir[len-1] == '/'));
2466 current_directory = dir;
2469 if (current_directory[0] == '/' && current_directory[1] == '\0')
2470 current_directory = concat (current_directory, dir, NULL);
2472 current_directory = concat (current_directory, "/", dir, NULL);
2476 /* Now simplify any occurrences of `.' and `..' in the pathname. */
2478 found_real_path = 0;
2479 for (p = current_directory; *p;)
2481 if (p[0] == '/' && p[1] == '.' && (p[2] == 0 || p[2] == '/'))
2483 else if (p[0] == '/' && p[1] == '.' && p[2] == '.'
2484 && (p[3] == 0 || p[3] == '/'))
2486 if (found_real_path)
2488 /* Search backwards for the directory just before the "/.."
2489 and obliterate it and the "/..". */
2491 while (q != current_directory && q[-1] != '/')
2494 if (q == current_directory)
2495 /* current_directory is
2496 a relative pathname ("can't happen"--leave it alone). */
2500 strcpy (q - 1, p + 3);
2505 /* We are dealing with leading repetitions of "/..", for example
2506 "/../..", which is the Mach super-root. */
2511 found_real_path = 1;
2516 forget_cached_source_info ();
2519 pwd_command ((char *) 0, 1);
2522 struct source_cleanup_lines_args {
2525 char *old_pre_error;
2526 char *old_error_pre_print;
2530 source_cleanup_lines (args)
2533 struct source_cleanup_lines_args *p =
2534 (struct source_cleanup_lines_args *)args;
2535 source_line_number = p->old_line;
2536 source_file_name = p->old_file;
2537 source_pre_error = p->old_pre_error;
2538 error_pre_print = p->old_error_pre_print;
2543 source_command (args, from_tty)
2548 struct cleanup *old_cleanups;
2550 struct source_cleanup_lines_args old_lines;
2555 error ("source command requires pathname of file to source.");
2558 file = tilde_expand (file);
2559 old_cleanups = make_cleanup (free, file);
2561 stream = fopen (file, FOPEN_RT);
2563 perror_with_name (file);
2565 make_cleanup (fclose, stream);
2567 old_lines.old_line = source_line_number;
2568 old_lines.old_file = source_file_name;
2569 old_lines.old_pre_error = source_pre_error;
2570 old_lines.old_error_pre_print = error_pre_print;
2571 make_cleanup (source_cleanup_lines, &old_lines);
2572 source_line_number = 0;
2573 source_file_name = file;
2574 source_pre_error = error_pre_print == NULL ? "" : error_pre_print;
2575 source_pre_error = savestring (source_pre_error, strlen (source_pre_error));
2576 make_cleanup (free, source_pre_error);
2577 /* This will get set every time we read a line. So it won't stay "" for
2579 error_pre_print = "";
2581 needed_length = strlen (source_file_name) + strlen (source_pre_error) + 80;
2582 if (source_error_allocated < needed_length)
2584 source_error_allocated *= 2;
2585 if (source_error_allocated < needed_length)
2586 source_error_allocated = needed_length;
2587 if (source_error == NULL)
2588 source_error = xmalloc (source_error_allocated);
2590 source_error = xrealloc (source_error, source_error_allocated);
2593 read_command_file (stream);
2595 do_cleanups (old_cleanups);
2600 echo_command (text, from_tty)
2608 while ((c = *p++) != '\0')
2612 /* \ at end of argument is used after spaces
2613 so they won't be lost. */
2617 c = parse_escape (&p);
2619 printf_filtered ("%c", c);
2622 printf_filtered ("%c", c);
2625 /* Force this output to appear now. */
2627 gdb_flush (gdb_stdout);
2631 /* Functions to manipulate command line editing control variables. */
2633 /* Number of commands to print in each call to show_commands. */
2634 #define Hist_print 10
2636 show_commands (args, from_tty)
2640 /* Index for history commands. Relative to history_base. */
2643 /* Number of the history entry which we are planning to display next.
2644 Relative to history_base. */
2647 /* The first command in the history which doesn't exist (i.e. one more
2648 than the number of the last command). Relative to history_base. */
2651 extern HIST_ENTRY *history_get PARAMS ((int));
2653 /* Print out some of the commands from the command history. */
2654 /* First determine the length of the history list. */
2655 hist_len = history_size;
2656 for (offset = 0; offset < history_size; offset++)
2658 if (!history_get (history_base + offset))
2667 if (args[0] == '+' && args[1] == '\0')
2668 /* "info editing +" should print from the stored position. */
2671 /* "info editing <exp>" should print around command number <exp>. */
2672 num = (parse_and_eval_address (args) - history_base) - Hist_print / 2;
2674 /* "show commands" means print the last Hist_print commands. */
2677 num = hist_len - Hist_print;
2683 /* If there are at least Hist_print commands, we want to display the last
2684 Hist_print rather than, say, the last 6. */
2685 if (hist_len - num < Hist_print)
2687 num = hist_len - Hist_print;
2692 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
2694 printf_filtered ("%5d %s\n", history_base + offset,
2695 (history_get (history_base + offset))->line);
2698 /* The next command we want to display is the next one that we haven't
2702 /* If the user repeats this command with return, it should do what
2703 "show commands +" does. This is unnecessary if arg is null,
2704 because "show commands +" is not useful after "show commands". */
2705 if (from_tty && args)
2712 /* Called by do_setshow_command. */
2715 set_history_size_command (args, from_tty, c)
2718 struct cmd_list_element *c;
2720 if (history_size == INT_MAX)
2721 unstifle_history ();
2722 else if (history_size >= 0)
2723 stifle_history (history_size);
2726 history_size = INT_MAX;
2727 error ("History size must be non-negative");
2733 set_history (args, from_tty)
2737 printf_unfiltered ("\"set history\" must be followed by the name of a history subcommand.\n");
2738 help_list (sethistlist, "set history ", -1, gdb_stdout);
2743 show_history (args, from_tty)
2747 cmd_show_list (showhistlist, from_tty, "");
2750 int info_verbose = 0; /* Default verbose msgs off */
2752 /* Called by do_setshow_command. An elaborate joke. */
2755 set_verbose (args, from_tty, c)
2758 struct cmd_list_element *c;
2760 char *cmdname = "verbose";
2761 struct cmd_list_element *showcmd;
2763 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
2767 c->doc = "Set verbose printing of informational messages.";
2768 showcmd->doc = "Show verbose printing of informational messages.";
2772 c->doc = "Set verbosity.";
2773 showcmd->doc = "Show verbosity.";
2778 float_handler (signo)
2781 /* This message is based on ANSI C, section 4.7. Note that integer
2782 divide by zero causes this, so "float" is a misnomer. */
2783 signal (SIGFPE, float_handler);
2784 error ("Erroneous arithmetic operation.");
2787 /* Return whether we are running a batch file or from terminal. */
2791 return !(instream == stdin && ISATTY (stdin));
2803 enablebreaklist = NULL;
2808 showhistlist = NULL;
2809 unsethistlist = NULL;
2810 #if MAINTENANCE_CMDS
2811 maintenancelist = NULL;
2812 maintenanceinfolist = NULL;
2813 maintenanceprintlist = NULL;
2815 setprintlist = NULL;
2816 showprintlist = NULL;
2817 setchecklist = NULL;
2818 showchecklist = NULL;
2821 /* Init the history buffer. Note that we are called after the init file(s)
2822 * have been read so that the user can change the history file via his
2823 * .gdbinit file (for instance). The GDBHISTFILE environment variable
2824 * overrides all of this.
2832 tmpenv = getenv ("HISTSIZE");
2834 history_size = atoi (tmpenv);
2835 else if (!history_size)
2838 stifle_history (history_size);
2840 tmpenv = getenv ("GDBHISTFILE");
2842 history_filename = savestring (tmpenv, strlen(tmpenv));
2843 else if (!history_filename) {
2844 /* We include the current directory so that if the user changes
2845 directories the file written will be the same as the one
2847 history_filename = concat (current_directory, "/.gdb_history", NULL);
2849 read_history (history_filename);
2855 struct cmd_list_element *c;
2857 #ifdef DEFAULT_PROMPT
2858 prompt = savestring (DEFAULT_PROMPT, strlen(DEFAULT_PROMPT));
2860 prompt = savestring ("(gdb) ", 6);
2863 /* Set the important stuff up for command editing. */
2864 command_editing_p = 1;
2865 history_expansion_p = 0;
2866 write_history_p = 0;
2868 /* Setup important stuff for command line editing. */
2869 rl_completion_entry_function = (int (*)()) symbol_completion_function;
2870 rl_completer_word_break_characters = gdb_completer_word_break_characters;
2871 rl_completer_quote_characters = gdb_completer_quote_characters;
2872 rl_readline_name = "gdb";
2874 /* Define the classes of commands.
2875 They will appear in the help list in the reverse of this order. */
2877 add_cmd ("internals", class_maintenance, NO_FUNCTION,
2878 "Maintenance commands.\n\
2879 Some gdb commands are provided just for use by gdb maintainers.\n\
2880 These commands are subject to frequent change, and may not be as\n\
2881 well documented as user commands.",
2883 add_cmd ("obscure", class_obscure, NO_FUNCTION, "Obscure features.", &cmdlist);
2884 add_cmd ("aliases", class_alias, NO_FUNCTION, "Aliases of other commands.", &cmdlist);
2885 add_cmd ("user-defined", class_user, NO_FUNCTION, "User-defined commands.\n\
2886 The commands in this class are those defined by the user.\n\
2887 Use the \"define\" command to define a command.", &cmdlist);
2888 add_cmd ("support", class_support, NO_FUNCTION, "Support facilities.", &cmdlist);
2889 add_cmd ("status", class_info, NO_FUNCTION, "Status inquiries.", &cmdlist);
2890 add_cmd ("files", class_files, NO_FUNCTION, "Specifying and examining files.", &cmdlist);
2891 add_cmd ("breakpoints", class_breakpoint, NO_FUNCTION, "Making program stop at certain points.", &cmdlist);
2892 add_cmd ("data", class_vars, NO_FUNCTION, "Examining data.", &cmdlist);
2893 add_cmd ("stack", class_stack, NO_FUNCTION, "Examining the stack.\n\
2894 The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
2895 counting from zero for the innermost (currently executing) frame.\n\n\
2896 At any time gdb identifies one frame as the \"selected\" frame.\n\
2897 Variable lookups are done with respect to the selected frame.\n\
2898 When the program being debugged stops, gdb selects the innermost frame.\n\
2899 The commands below can be used to select other frames by number or address.",
2901 add_cmd ("running", class_run, NO_FUNCTION, "Running the program.", &cmdlist);
2903 add_com ("pwd", class_files, pwd_command,
2904 "Print working directory. This is used for your program as well.");
2905 c = add_cmd ("cd", class_files, cd_command,
2906 "Set working directory to DIR for debugger and program being debugged.\n\
2907 The change does not take effect for the program being debugged\n\
2908 until the next time it is started.", &cmdlist);
2909 c->completer = filename_completer;
2912 (add_set_cmd ("prompt", class_support, var_string, (char *)&prompt,
2917 add_com ("echo", class_support, echo_command,
2918 "Print a constant string. Give string as argument.\n\
2919 C escape sequences may be used in the argument.\n\
2920 No newline is added at the end of the argument;\n\
2921 use \"\\n\" if you want a newline to be printed.\n\
2922 Since leading and trailing whitespace are ignored in command arguments,\n\
2923 if you want to print some you must use \"\\\" before leading whitespace\n\
2924 to be printed or after trailing whitespace.");
2925 add_com ("document", class_support, document_command,
2926 "Document a user-defined command.\n\
2927 Give command name as argument. Give documentation on following lines.\n\
2928 End with a line of just \"end\".");
2929 add_com ("define", class_support, define_command,
2930 "Define a new command name. Command name is argument.\n\
2931 Definition appears on following lines, one command per line.\n\
2932 End with a line of just \"end\".\n\
2933 Use the \"document\" command to give documentation for the new command.\n\
2934 Commands defined in this way do not take arguments.");
2937 c = add_cmd ("source", class_support, source_command,
2938 "Read commands from a file named FILE.\n\
2939 Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
2940 when gdb is started.", &cmdlist);
2942 /* Punt file name, we can't help it easily. */
2943 c = add_cmd ("source", class_support, source_command,
2944 "Read commands from a file named FILE.\n\
2945 Note that the file \".gdbinit\" is read automatically in this way\n\
2946 when gdb is started.", &cmdlist);
2948 c->completer = filename_completer;
2950 add_com ("quit", class_support, quit_command, "Exit gdb.");
2951 add_com ("help", class_support, help_command, "Print list of commands.");
2952 add_com_alias ("q", "quit", class_support, 1);
2953 add_com_alias ("h", "help", class_support, 1);
2956 c = add_set_cmd ("verbose", class_support, var_boolean, (char *)&info_verbose,
2959 add_show_from_set (c, &showlist);
2960 c->function.sfunc = set_verbose;
2961 set_verbose (NULL, 0, c);
2964 (add_set_cmd ("editing", class_support, var_boolean, (char *)&command_editing_p,
2965 "Set editing of command lines as they are typed.\n\
2966 Use \"on\" to enable to enable the editing, and \"off\" to disable it.\n\
2967 Without an argument, command line editing is enabled. To edit, use\n\
2968 EMACS-like or VI-like commands like control-P or ESC.", &setlist),
2971 add_prefix_cmd ("history", class_support, set_history,
2972 "Generic command for setting command history parameters.",
2973 &sethistlist, "set history ", 0, &setlist);
2974 add_prefix_cmd ("history", class_support, show_history,
2975 "Generic command for showing command history parameters.",
2976 &showhistlist, "show history ", 0, &showlist);
2979 (add_set_cmd ("expansion", no_class, var_boolean, (char *)&history_expansion_p,
2980 "Set history expansion on command input.\n\
2981 Without an argument, history expansion is enabled.", &sethistlist),
2985 (add_set_cmd ("save", no_class, var_boolean, (char *)&write_history_p,
2986 "Set saving of the history record on exit.\n\
2987 Use \"on\" to enable to enable the saving, and \"off\" to disable it.\n\
2988 Without an argument, saving is enabled.", &sethistlist),
2991 c = add_set_cmd ("size", no_class, var_integer, (char *)&history_size,
2992 "Set the size of the command history, \n\
2993 ie. the number of previous commands to keep a record of.", &sethistlist);
2994 add_show_from_set (c, &showhistlist);
2995 c->function.sfunc = set_history_size_command;
2998 (add_set_cmd ("filename", no_class, var_filename, (char *)&history_filename,
2999 "Set the filename in which to record the command history\n\
3000 (the list of previous commands of which a record is kept).", &sethistlist),
3004 (add_set_cmd ("confirm", class_support, var_boolean,
3006 "Set whether to confirm potentially dangerous operations.",
3010 add_prefix_cmd ("info", class_info, info_command,
3011 "Generic command for showing things about the program being debugged.",
3012 &infolist, "info ", 0, &cmdlist);
3013 add_com_alias ("i", "info", class_info, 1);
3015 add_com ("complete", class_obscure, complete_command,
3016 "List the completions for the rest of the line as a command.");
3018 add_prefix_cmd ("show", class_info, show_command,
3019 "Generic command for showing things about the debugger.",
3020 &showlist, "show ", 0, &cmdlist);
3021 /* Another way to get at the same thing. */
3022 add_info ("set", show_command, "Show all GDB settings.");
3024 add_cmd ("commands", no_class, show_commands,
3025 "Show the the history of commands you typed.\n\
3026 You can supply a command number to start with, or a `+' to start after\n\
3027 the previous command number shown.",
3030 add_cmd ("version", no_class, show_version,
3031 "Show what version of GDB this is.", &showlist);
3033 /* If target is open when baud changes, it doesn't take effect until the
3034 next open (I think, not sure). */
3035 add_show_from_set (add_set_cmd ("remotebaud", no_class,
3036 var_zinteger, (char *)&baud_rate,
3037 "Set baud rate for remote serial I/O.\n\
3038 This value is used to set the speed of the serial port when debugging\n\
3039 using remote targets.", &setlist),
3043 add_set_cmd ("remotedebug", no_class, var_zinteger, (char *)&remote_debug,
3044 "Set debugging of remote protocol.\n\
3045 When enabled, each packet sent or received with the remote target\n\
3046 is displayed.", &setlist),