1 /* Top level stuff for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995
3 Free Software Foundation, Inc.
5 This file is part of GDB.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
19 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
26 #include "call-cmds.h"
30 #include <sys/types.h>
34 #include "gdb_string.h"
42 /* Temporary variable for SET_TOP_LEVEL. */
44 static int top_level_val;
46 /* Do a setjmp on error_return and quit_return. catch_errors is
47 generally a cleaner way to do this, but main() would look pretty
48 ugly if it had to use catch_errors each time. */
50 #define SET_TOP_LEVEL() \
51 (((top_level_val = setjmp (error_return)) \
52 ? (PTR) 0 : (PTR) memcpy (quit_return, error_return, sizeof (jmp_buf))) \
55 /* If nonzero, display time usage both at startup and for each command. */
59 /* If nonzero, display space usage both at startup and for each command. */
63 extern void gdb_init PARAMS ((void));
74 /* Pointers to various arguments from command line. */
81 /* These are static so that we can take their address in an initializer. */
82 static int print_help;
83 static int print_version;
85 /* Pointers to all arguments of --command option. */
87 /* Allocated size of cmdarg. */
89 /* Number of elements of cmdarg used. */
92 /* Indices of all arguments of --directory option. */
96 /* Number of elements used. */
99 struct stat homebuf, cwdbuf;
100 char *homedir, *homeinit;
104 long time_at_startup = get_run_time ();
106 START_PROGRESS (argv[0], 0);
109 /* Do all Mac-specific setup. */
113 /* This needs to happen before the first use of malloc. */
114 init_malloc ((PTR) NULL);
116 #if defined (ALIGN_STACK_ON_STARTUP)
117 i = (int) &count & 0x3;
122 /* If error() is called from initialization code, just exit */
123 if (SET_TOP_LEVEL ()) {
128 cmdarg = (char **) xmalloc (cmdsize * sizeof (*cmdarg));
131 dirarg = (char **) xmalloc (dirsize * sizeof (*dirarg));
135 line = (char *) xmalloc (linesize);
136 line[0] = '\0'; /* Terminate saved (now empty) cmd line */
139 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
140 current_directory = gdb_dirbuf;
142 /* Parse arguments and options. */
146 /* When var field is 0, use flag field to record the equivalent
147 short option (or arbitrary numbers starting at 10 for those
148 with no equivalent). */
149 static struct option long_options[] =
151 {"readnow", no_argument, &readnow_symbol_files, 1},
152 {"r", no_argument, &readnow_symbol_files, 1},
153 {"mapped", no_argument, &mapped_symbol_files, 1},
154 {"m", no_argument, &mapped_symbol_files, 1},
155 {"quiet", no_argument, &quiet, 1},
156 {"q", no_argument, &quiet, 1},
157 {"silent", no_argument, &quiet, 1},
158 {"nx", no_argument, &inhibit_gdbinit, 1},
159 {"n", no_argument, &inhibit_gdbinit, 1},
160 {"batch", no_argument, &batch, 1},
161 {"epoch", no_argument, &epoch_interface, 1},
163 /* This is a synonym for "--annotate=1". --annotate is now preferred,
164 but keep this here for a long time because people will be running
165 emacses which use --fullname. */
166 {"fullname", no_argument, 0, 'f'},
167 {"f", no_argument, 0, 'f'},
169 {"annotate", required_argument, 0, 12},
170 {"help", no_argument, &print_help, 1},
171 {"se", required_argument, 0, 10},
172 {"symbols", required_argument, 0, 's'},
173 {"s", required_argument, 0, 's'},
174 {"exec", required_argument, 0, 'e'},
175 {"e", required_argument, 0, 'e'},
176 {"core", required_argument, 0, 'c'},
177 {"c", required_argument, 0, 'c'},
178 {"command", required_argument, 0, 'x'},
179 {"version", no_argument, &print_version, 1},
180 {"x", required_argument, 0, 'x'},
181 {"directory", required_argument, 0, 'd'},
182 {"cd", required_argument, 0, 11},
183 {"tty", required_argument, 0, 't'},
184 {"baud", required_argument, 0, 'b'},
185 {"b", required_argument, 0, 'b'},
186 {"nw", no_argument, &use_windows, 0},
187 {"nowindows", no_argument, &use_windows, 0},
188 {"w", no_argument, &use_windows, 1},
189 {"windows", no_argument, &use_windows, 1},
190 {"statistics", no_argument, 0, 13},
191 /* Allow machine descriptions to add more options... */
192 #ifdef ADDITIONAL_OPTIONS
195 {0, no_argument, 0, 0}
202 c = getopt_long_only (argc, argv, "",
203 long_options, &option_index);
207 /* Long option that takes an argument. */
208 if (c == 0 && long_options[option_index].flag == 0)
209 c = long_options[option_index].val;
214 /* Long option that just sets a flag. */
224 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
225 annotation_level = atoi (optarg);
228 /* Enable the display of both time and space usage. */
233 annotation_level = 1;
234 /* We have probably been invoked from emacs. Disable window interface. */
247 cmdarg[ncmd++] = optarg;
251 cmdarg = (char **) xrealloc ((char *)cmdarg,
252 cmdsize * sizeof (*cmdarg));
256 dirarg[ndir++] = optarg;
260 dirarg = (char **) xrealloc ((char *)dirarg,
261 dirsize * sizeof (*dirarg));
275 i = strtol (optarg, &p, 0);
276 if (i == 0 && p == optarg)
278 /* Don't use *_filtered or warning() (which relies on
279 current_target) until after initialize_all_files(). */
283 "warning: could not set baud rate to `%s'.\n", optarg);
289 #ifdef ADDITIONAL_OPTION_CASES
290 ADDITIONAL_OPTION_CASES
293 fprintf_unfiltered (gdb_stderr,
294 "Use `%s --help' for a complete list of options.\n",
300 /* OK, that's all the options. The other arguments are filenames. */
302 for (; optind < argc; optind++)
306 symarg = argv[optind];
307 execarg = argv[optind];
310 corearg = argv[optind];
313 fprintf_unfiltered (gdb_stderr,
314 "Excess command line arguments ignored. (%s%s)\n",
315 argv[optind], (optind == argc - 1) ? "" : " ...");
325 /* Do these (and anything which might call wrap_here or *_filtered)
326 after initialize_all_files. */
329 print_gdb_version (gdb_stdout);
331 printf_filtered ("\n");
337 /* --version is intentionally not documented here, because we
338 are printing the version here, and the help is long enough
341 print_gdb_version (gdb_stdout);
342 /* Make sure the output gets printed. */
344 printf_filtered ("\n");
346 /* But don't use *_filtered here. We don't want to prompt for continue
347 no matter how small the screen or how much we're going to print. */
349 This is the GNU debugger. Usage:\n\
350 gdb [options] [executable-file [core-file or process-id]]\n\
352 --help Print this message.\n\
353 --quiet Do not print version number on startup.\n\
354 --fullname Output information used by emacs-GDB interface.\n\
355 --epoch Output information used by epoch emacs-GDB interface.\n\
358 --batch Exit after processing options.\n\
359 --nx Do not read .gdbinit file.\n\
360 --tty=TTY Use TTY for input/output by the program being debugged.\n\
361 --cd=DIR Change current directory to DIR.\n\
362 --directory=DIR Search for source files in DIR.\n\
365 --command=FILE Execute GDB commands from FILE.\n\
366 --symbols=SYMFILE Read symbols from SYMFILE.\n\
367 --exec=EXECFILE Use EXECFILE as the executable.\n\
368 --se=FILE Use FILE as symbol file and executable file.\n\
371 --core=COREFILE Analyze the core dump COREFILE.\n\
372 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
373 --mapped Use mapped symbol files if supported on this system.\n\
374 --readnow Fully read symbol files on first access.\n\
375 --nw Do not use a window interface.\n\
377 #ifdef ADDITIONAL_OPTION_HELP
378 fputs_unfiltered (ADDITIONAL_OPTION_HELP, gdb_stdout);
380 fputs_unfiltered ("\n\
381 For more information, type \"help\" from within GDB, or consult the\n\
382 GDB manual (available as on-line info or a printed manual).\n", gdb_stdout);
388 /* Print all the junk at the top, with trailing "..." if we are about
389 to read a symbol file (possibly slowly). */
390 print_gnu_advertisement ();
391 print_gdb_version (gdb_stdout);
393 printf_filtered ("..");
395 gdb_flush (gdb_stdout); /* Force to screen during slow operations */
398 error_pre_print = "\n\n";
399 quit_pre_print = error_pre_print;
401 /* We may get more than one warning, don't double space all of them... */
402 warning_pre_print = "\nwarning: ";
404 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
405 *before* all the command line arguments are processed; it sets
406 global parameters, which are independent of what file you are
407 debugging or what directory you are in. */
408 homedir = getenv ("HOME");
411 homeinit = (char *) alloca (strlen (getenv ("HOME")) +
412 strlen (gdbinit) + 10);
413 strcpy (homeinit, getenv ("HOME"));
414 strcat (homeinit, "/");
415 strcat (homeinit, gdbinit);
416 if (!inhibit_gdbinit && access (homeinit, R_OK) == 0)
418 if (!SET_TOP_LEVEL ())
419 source_command (homeinit, 0);
421 do_cleanups (ALL_CLEANUPS);
423 /* Do stats; no need to do them elsewhere since we'll only
424 need them if homedir is set. Make sure that they are
425 zero in case one of them fails (this guarantees that they
426 won't match if either exists). */
428 memset (&homebuf, 0, sizeof (struct stat));
429 memset (&cwdbuf, 0, sizeof (struct stat));
431 stat (homeinit, &homebuf);
432 stat (gdbinit, &cwdbuf); /* We'll only need this if
436 /* Now perform all the actions indicated by the arguments. */
439 if (!SET_TOP_LEVEL ())
441 cd_command (cdarg, 0);
444 do_cleanups (ALL_CLEANUPS);
446 for (i = 0; i < ndir; i++)
447 if (!SET_TOP_LEVEL ())
448 directory_command (dirarg[i], 0);
450 do_cleanups (ALL_CLEANUPS);
454 && STREQ (execarg, symarg))
456 /* The exec file and the symbol-file are the same. If we can't open
457 it, better only print one error message. */
458 if (!SET_TOP_LEVEL ())
460 exec_file_command (execarg, !batch);
461 symbol_file_command (symarg, 0);
467 if (!SET_TOP_LEVEL ())
468 exec_file_command (execarg, !batch);
470 if (!SET_TOP_LEVEL ())
471 symbol_file_command (symarg, 0);
473 do_cleanups (ALL_CLEANUPS);
475 /* After the symbol file has been read, print a newline to get us
476 beyond the copyright line... But errors should still set off
477 the error message with a (single) blank line. */
479 printf_filtered ("\n");
480 error_pre_print = "\n";
481 quit_pre_print = error_pre_print;
482 warning_pre_print = "\nwarning: ";
485 if (!SET_TOP_LEVEL ())
486 core_file_command (corearg, !batch);
487 else if (isdigit (corearg[0]) && !SET_TOP_LEVEL ())
488 attach_command (corearg, !batch);
489 do_cleanups (ALL_CLEANUPS);
492 if (!SET_TOP_LEVEL ())
493 tty_command (ttyarg, !batch);
494 do_cleanups (ALL_CLEANUPS);
496 #ifdef ADDITIONAL_OPTION_HANDLER
497 ADDITIONAL_OPTION_HANDLER;
500 /* Error messages should no longer be distinguished with extra output. */
501 error_pre_print = NULL;
502 quit_pre_print = NULL;
503 warning_pre_print = "warning: ";
505 /* Read the .gdbinit file in the current directory, *if* it isn't
506 the same as the $HOME/.gdbinit file (it should exist, also). */
509 || memcmp ((char *) &homebuf, (char *) &cwdbuf, sizeof (struct stat)))
510 if (!inhibit_gdbinit && access (gdbinit, R_OK) == 0)
512 if (!SET_TOP_LEVEL ())
513 source_command (gdbinit, 0);
515 do_cleanups (ALL_CLEANUPS);
517 for (i = 0; i < ncmd; i++)
519 if (!SET_TOP_LEVEL ())
521 if (cmdarg[i][0] == '-' && cmdarg[i][1] == '\0')
522 read_command_file (stdin);
524 source_command (cmdarg[i], !batch);
525 do_cleanups (ALL_CLEANUPS);
530 /* Read in the old history after all the command files have been read. */
535 /* We have hit the end of the batch file. */
539 /* Do any host- or target-specific hacks. This is used for i960 targets
540 to force the user to set a nindy target and spec its parameters. */
542 #ifdef BEFORE_MAIN_LOOP_HOOK
543 BEFORE_MAIN_LOOP_HOOK;
546 END_PROGRESS (argv[0]);
548 /* Show time and/or space usage. */
552 long init_time = get_run_time () - time_at_startup;
554 printf_unfiltered ("Startup time: %ld.%06ld\n",
555 init_time / 1000000, init_time % 1000000);
560 extern char **environ;
561 char *lim = (char *) sbrk (0);
563 printf_unfiltered ("Startup size: data size %ld\n",
564 (long) (lim - (char *) &environ));
567 /* The default command loop.
568 The WIN32 Gui calls this main to set up gdb's state, and
569 has its own command loop. */
573 if (!SET_TOP_LEVEL ())
575 do_cleanups (ALL_CLEANUPS); /* Do complete cleanup */
576 /* GUIs generally have their own command loop, mainloop, or whatever.
577 This is a good place to gain control because many error
578 conditions will end up here via longjmp(). */
579 if (command_loop_hook)
580 command_loop_hook ();
583 quit_command ((char *)0, instream == stdin);
587 /* No exit -- exit is through quit_command. */
598 proc_wait (pid, status)
603 return wait (status);
608 proc_remove_foreign (pid)
614 fputs_unfiltered (linebuffer, stream)
615 const char *linebuffer;
618 if (fputs_unfiltered_hook)
620 /* FIXME: I think we should only be doing this for stdout or stderr.
621 Either that or we should be passing stream to the hook so it can
622 deal with it. If that is cleaned up, this function can go back
623 into utils.c and the fputs_unfiltered_hook can replace the current
624 ability to avoid this function by not linking with main.c. */
625 fputs_unfiltered_hook (linebuffer, stream);
629 fputs (linebuffer, stream);