/gas/ChangeLog
[deliverable/binutils-gdb.git] / gdb / main.c
CommitLineData
c906108c 1/* Top level stuff for GDB, the GNU debugger.
b6ba6518 2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
00546b04
MS
3 1996, 1997, 1998, 1999, 2000, 2001, 2002
4 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b
JM
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
c906108c
SS
22
23#include "defs.h"
c906108c
SS
24#include "top.h"
25#include "target.h"
26#include "inferior.h"
1adeb98a
FN
27#include "symfile.h"
28#include "gdbcore.h"
c906108c
SS
29
30#include "getopt.h"
31
32#include <sys/types.h>
33#include "gdb_stat.h"
34#include <ctype.h>
35
36#include "gdb_string.h"
9e0b60a8 37#include "event-loop.h"
8b93c638 38#include "ui-out.h"
6457bd47 39
c906108c
SS
40/* If nonzero, display time usage both at startup and for each command. */
41
42int display_time;
43
44/* If nonzero, display space usage both at startup and for each command. */
45
46int display_space;
47
cd0fc7c3 48/* Whether this is the async version or not. The async version is
c5aa993b
JM
49 invoked on the command line with the -nw --async options. In this
50 version, the usual command_loop is substituted by and event loop which
51 processes UI events asynchronously. */
6426a772 52int event_loop_p = 1;
cd0fc7c3 53
fb40c209
AC
54/* Has an interpreter been specified and if so, which. */
55char *interpreter_p;
fb40c209 56
c906108c
SS
57/* Whether this is the command line version or not */
58int tui_version = 0;
59
60/* Whether xdb commands will be handled */
61int xdb_commands = 0;
62
63/* Whether dbx commands will be handled */
64int dbx_commands = 0;
65
d9fcf2fb
JM
66struct ui_file *gdb_stdout;
67struct ui_file *gdb_stderr;
68struct ui_file *gdb_stdlog;
69struct ui_file *gdb_stdtarg;
c906108c 70
2acceee2
JM
71/* Used to initialize error() - defined in utils.c */
72
73extern void error_init (void);
74
c906108c
SS
75/* Whether to enable writing into executable and core files */
76extern int write_files;
77
d9fcf2fb 78static void print_gdb_help (struct ui_file *);
c906108c
SS
79
80/* These two are used to set the external editor commands when gdb is farming
81 out files to be edited by another program. */
82
c5aa993b 83extern char *external_editor_command;
c906108c 84
11cf8741
JM
85/* Call command_loop. If it happens to return, pass that through as a
86 non-zero return status. */
87
88static int
89captured_command_loop (void *data)
c906108c 90{
11cf8741
JM
91 if (command_loop_hook == NULL)
92 command_loop ();
93 else
94 command_loop_hook ();
95 /* FIXME: cagney/1999-11-05: A correct command_loop() implementaton
96 would clean things up (restoring the cleanup chain) to the state
97 they were just prior to the call. Technically, this means that
e26cc349 98 the do_cleanups() below is redundant. Unfortunately, many FUNCs
11cf8741
JM
99 are not that well behaved. do_cleanups should either be replaced
100 with a do_cleanups call (to cover the problem) or an assertion
101 check to detect bad FUNCs code. */
102 do_cleanups (ALL_CLEANUPS);
103 /* If the command_loop returned, normally (rather than threw an
104 error) we try to quit. If the quit is aborted, catch_errors()
105 which called this catch the signal and restart the command
106 loop. */
107 quit_command (NULL, instream == stdin);
108 return 1;
109}
110
111struct captured_main_args
112 {
113 int argc;
114 char **argv;
115 };
116
117static int
118captured_main (void *data)
119{
120 struct captured_main_args *context = data;
121 int argc = context->argc;
122 char **argv = context->argv;
c906108c
SS
123 int count;
124 static int quiet = 0;
125 static int batch = 0;
552c04a7 126 static int set_args = 0;
c906108c
SS
127
128 /* Pointers to various arguments from command line. */
129 char *symarg = NULL;
130 char *execarg = NULL;
131 char *corearg = NULL;
132 char *cdarg = NULL;
133 char *ttyarg = NULL;
134
135 /* These are static so that we can take their address in an initializer. */
136 static int print_help;
137 static int print_version;
138
139 /* Pointers to all arguments of --command option. */
140 char **cmdarg;
141 /* Allocated size of cmdarg. */
142 int cmdsize;
143 /* Number of elements of cmdarg used. */
144 int ncmd;
145
146 /* Indices of all arguments of --directory option. */
147 char **dirarg;
148 /* Allocated size. */
149 int dirsize;
150 /* Number of elements used. */
151 int ndir;
c5aa993b 152
c906108c
SS
153 struct stat homebuf, cwdbuf;
154 char *homedir, *homeinit;
155
156 register int i;
157
158 long time_at_startup = get_run_time ();
159
0fbb3da7
TT
160#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
161 setlocale (LC_MESSAGES, "");
162#endif
163#if defined (HAVE_SETLOCALE)
164 setlocale (LC_CTYPE, "");
165#endif
166 bindtextdomain (PACKAGE, LOCALEDIR);
167 textdomain (PACKAGE);
168
c906108c
SS
169 START_PROGRESS (argv[0], 0);
170
171#ifdef MPW
172 /* Do all Mac-specific setup. */
173 mac_init ();
174#endif /* MPW */
175
176 /* This needs to happen before the first use of malloc. */
177 init_malloc ((PTR) NULL);
178
179#if defined (ALIGN_STACK_ON_STARTUP)
180 i = (int) &count & 0x3;
181 if (i != 0)
182 alloca (4 - i);
183#endif
184
c906108c
SS
185 cmdsize = 1;
186 cmdarg = (char **) xmalloc (cmdsize * sizeof (*cmdarg));
187 ncmd = 0;
188 dirsize = 1;
189 dirarg = (char **) xmalloc (dirsize * sizeof (*dirarg));
190 ndir = 0;
191
192 quit_flag = 0;
193 line = (char *) xmalloc (linesize);
194 line[0] = '\0'; /* Terminate saved (now empty) cmd line */
195 instream = stdin;
196
197 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
198 current_directory = gdb_dirbuf;
199
da59e081
JM
200 gdb_stdout = stdio_fileopen (stdout);
201 gdb_stderr = stdio_fileopen (stderr);
202 gdb_stdlog = gdb_stderr; /* for moment */
203 gdb_stdtarg = gdb_stderr; /* for moment */
c906108c 204
2acceee2
JM
205 /* initialize error() */
206 error_init ();
207
c906108c
SS
208 /* Parse arguments and options. */
209 {
210 int c;
211 /* When var field is 0, use flag field to record the equivalent
212 short option (or arbitrary numbers starting at 10 for those
213 with no equivalent). */
214 static struct option long_options[] =
c5aa993b 215 {
6426a772
JM
216 {"async", no_argument, &event_loop_p, 1},
217 {"noasync", no_argument, &event_loop_p, 0},
c906108c 218#if defined(TUI)
c5aa993b 219 {"tui", no_argument, &tui_version, 1},
c906108c 220#endif
c5aa993b
JM
221 {"xdb", no_argument, &xdb_commands, 1},
222 {"dbx", no_argument, &dbx_commands, 1},
223 {"readnow", no_argument, &readnow_symbol_files, 1},
224 {"r", no_argument, &readnow_symbol_files, 1},
225 {"mapped", no_argument, &mapped_symbol_files, 1},
226 {"m", no_argument, &mapped_symbol_files, 1},
227 {"quiet", no_argument, &quiet, 1},
228 {"q", no_argument, &quiet, 1},
229 {"silent", no_argument, &quiet, 1},
230 {"nx", no_argument, &inhibit_gdbinit, 1},
231 {"n", no_argument, &inhibit_gdbinit, 1},
232 {"batch", no_argument, &batch, 1},
233 {"epoch", no_argument, &epoch_interface, 1},
234
235 /* This is a synonym for "--annotate=1". --annotate is now preferred,
236 but keep this here for a long time because people will be running
237 emacses which use --fullname. */
238 {"fullname", no_argument, 0, 'f'},
239 {"f", no_argument, 0, 'f'},
240
241 {"annotate", required_argument, 0, 12},
242 {"help", no_argument, &print_help, 1},
243 {"se", required_argument, 0, 10},
244 {"symbols", required_argument, 0, 's'},
245 {"s", required_argument, 0, 's'},
246 {"exec", required_argument, 0, 'e'},
247 {"e", required_argument, 0, 'e'},
248 {"core", required_argument, 0, 'c'},
249 {"c", required_argument, 0, 'c'},
00546b04
MS
250 {"pid", required_argument, 0, 'p'},
251 {"p", required_argument, 0, 'p'},
c5aa993b
JM
252 {"command", required_argument, 0, 'x'},
253 {"version", no_argument, &print_version, 1},
254 {"x", required_argument, 0, 'x'},
3fc11d3e
JM
255#ifdef GDBTK
256 {"tclcommand", required_argument, 0, 'z'},
257 {"enable-external-editor", no_argument, 0, 'y'},
258 {"editor-command", required_argument, 0, 'w'},
259#endif
8b93c638
JM
260 {"ui", required_argument, 0, 'i'},
261 {"interpreter", required_argument, 0, 'i'},
262 {"i", required_argument, 0, 'i'},
c5aa993b 263 {"directory", required_argument, 0, 'd'},
c4093a6a 264 {"d", required_argument, 0, 'd'},
c5aa993b
JM
265 {"cd", required_argument, 0, 11},
266 {"tty", required_argument, 0, 't'},
267 {"baud", required_argument, 0, 'b'},
268 {"b", required_argument, 0, 'b'},
269 {"nw", no_argument, &use_windows, 0},
270 {"nowindows", no_argument, &use_windows, 0},
271 {"w", no_argument, &use_windows, 1},
272 {"windows", no_argument, &use_windows, 1},
273 {"statistics", no_argument, 0, 13},
274 {"write", no_argument, &write_files, 1},
552c04a7 275 {"args", no_argument, &set_args, 1},
c906108c
SS
276/* Allow machine descriptions to add more options... */
277#ifdef ADDITIONAL_OPTIONS
c5aa993b 278 ADDITIONAL_OPTIONS
c906108c 279#endif
c5aa993b
JM
280 {0, no_argument, 0, 0}
281 };
c906108c
SS
282
283 while (1)
284 {
285 int option_index;
286
287 c = getopt_long_only (argc, argv, "",
288 long_options, &option_index);
552c04a7 289 if (c == EOF || set_args)
c906108c
SS
290 break;
291
292 /* Long option that takes an argument. */
293 if (c == 0 && long_options[option_index].flag == 0)
294 c = long_options[option_index].val;
295
296 switch (c)
297 {
298 case 0:
299 /* Long option that just sets a flag. */
300 break;
301 case 10:
302 symarg = optarg;
303 execarg = optarg;
304 break;
305 case 11:
306 cdarg = optarg;
307 break;
308 case 12:
309 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
310 annotation_level = atoi (optarg);
311 break;
312 case 13:
313 /* Enable the display of both time and space usage. */
314 display_time = 1;
315 display_space = 1;
316 break;
317 case 'f':
318 annotation_level = 1;
319/* We have probably been invoked from emacs. Disable window interface. */
320 use_windows = 0;
321 break;
322 case 's':
323 symarg = optarg;
324 break;
325 case 'e':
326 execarg = optarg;
327 break;
328 case 'c':
329 corearg = optarg;
330 break;
00546b04
MS
331 case 'p':
332 /* "corearg" is shared by "--core" and "--pid" */
333 corearg = optarg;
334 break;
c906108c
SS
335 case 'x':
336 cmdarg[ncmd++] = optarg;
337 if (ncmd >= cmdsize)
338 {
339 cmdsize *= 2;
c5aa993b 340 cmdarg = (char **) xrealloc ((char *) cmdarg,
c906108c
SS
341 cmdsize * sizeof (*cmdarg));
342 }
343 break;
3fc11d3e
JM
344#ifdef GDBTK
345 case 'z':
346 {
a14ed312 347extern int gdbtk_test (char *);
3fc11d3e
JM
348 if (!gdbtk_test (optarg))
349 {
defc6f8c 350 fprintf_unfiltered (gdb_stderr, _("%s: unable to load tclcommand file \"%s\""),
3fc11d3e
JM
351 argv[0], optarg);
352 exit (1);
353 }
354 break;
355 }
356 case 'y':
78f49586
TT
357 /* Backwards compatibility only. */
358 break;
3fc11d3e
JM
359 case 'w':
360 {
3fc11d3e
JM
361 external_editor_command = xstrdup (optarg);
362 break;
363 }
364#endif /* GDBTK */
fb40c209
AC
365 case 'i':
366 interpreter_p = optarg;
367 break;
c906108c
SS
368 case 'd':
369 dirarg[ndir++] = optarg;
370 if (ndir >= dirsize)
371 {
372 dirsize *= 2;
c5aa993b 373 dirarg = (char **) xrealloc ((char *) dirarg,
c906108c
SS
374 dirsize * sizeof (*dirarg));
375 }
376 break;
377 case 't':
378 ttyarg = optarg;
379 break;
380 case 'q':
381 quiet = 1;
382 break;
383 case 'b':
384 {
385 int i;
386 char *p;
387
388 i = strtol (optarg, &p, 0);
389 if (i == 0 && p == optarg)
390
391 /* Don't use *_filtered or warning() (which relies on
c5aa993b 392 current_target) until after initialize_all_files(). */
c906108c
SS
393
394 fprintf_unfiltered
395 (gdb_stderr,
defc6f8c 396 _("warning: could not set baud rate to `%s'.\n"), optarg);
c906108c
SS
397 else
398 baud_rate = i;
399 }
046ca86a 400 break;
c906108c
SS
401 case 'l':
402 {
403 int i;
404 char *p;
405
406 i = strtol (optarg, &p, 0);
407 if (i == 0 && p == optarg)
408
409 /* Don't use *_filtered or warning() (which relies on
c5aa993b 410 current_target) until after initialize_all_files(). */
c906108c
SS
411
412 fprintf_unfiltered
413 (gdb_stderr,
defc6f8c 414 _("warning: could not set timeout limit to `%s'.\n"), optarg);
c906108c
SS
415 else
416 remote_timeout = i;
417 }
418 break;
419
420#ifdef ADDITIONAL_OPTION_CASES
c5aa993b 421 ADDITIONAL_OPTION_CASES
c906108c
SS
422#endif
423 case '?':
424 fprintf_unfiltered (gdb_stderr,
defc6f8c 425 _("Use `%s --help' for a complete list of options.\n"),
c5aa993b 426 argv[0]);
c906108c
SS
427 exit (1);
428 }
429 }
430
431 /* If --help or --version, disable window interface. */
432 if (print_help || print_version)
433 {
434 use_windows = 0;
435#ifdef TUI
436 /* Disable the TUI as well. */
437 tui_version = 0;
438#endif
439 }
440
441#ifdef TUI
442 /* An explicit --tui flag overrides the default UI, which is the
443 window system. */
444 if (tui_version)
445 use_windows = 0;
c5aa993b 446#endif
c906108c 447
552c04a7
TT
448 if (set_args)
449 {
450 /* The remaining options are the command-line options for the
451 inferior. The first one is the sym/exec file, and the rest
452 are arguments. */
453 if (optind >= argc)
454 {
455 fprintf_unfiltered (gdb_stderr,
defc6f8c 456 _("%s: `--args' specified but no program specified\n"),
552c04a7
TT
457 argv[0]);
458 exit (1);
459 }
460 symarg = argv[optind];
461 execarg = argv[optind];
462 ++optind;
463 set_inferior_args_vector (argc - optind, &argv[optind]);
464 }
465 else
466 {
467 /* OK, that's all the options. The other arguments are filenames. */
468 count = 0;
469 for (; optind < argc; optind++)
470 switch (++count)
471 {
472 case 1:
473 symarg = argv[optind];
474 execarg = argv[optind];
475 break;
476 case 2:
00546b04
MS
477 /* The documentation says this can be a "ProcID" as well.
478 We will try it as both a corefile and a pid. */
552c04a7
TT
479 corearg = argv[optind];
480 break;
481 case 3:
482 fprintf_unfiltered (gdb_stderr,
defc6f8c 483 _("Excess command line arguments ignored. (%s%s)\n"),
552c04a7
TT
484 argv[optind], (optind == argc - 1) ? "" : " ...");
485 break;
486 }
487 }
c906108c
SS
488 if (batch)
489 quiet = 1;
490 }
491
0f71a2f6
JM
492 /* Initialize all files. Give the interpreter a chance to take
493 control of the console via the init_ui_hook()) */
c906108c
SS
494 gdb_init (argv[0]);
495
496 /* Do these (and anything which might call wrap_here or *_filtered)
497 after initialize_all_files. */
498 if (print_version)
499 {
500 print_gdb_version (gdb_stdout);
501 wrap_here ("");
502 printf_filtered ("\n");
503 exit (0);
504 }
505
506 if (print_help)
507 {
508 print_gdb_help (gdb_stdout);
509 fputs_unfiltered ("\n", gdb_stdout);
510 exit (0);
511 }
512
513 if (!quiet)
514 {
515 /* Print all the junk at the top, with trailing "..." if we are about
c5aa993b 516 to read a symbol file (possibly slowly). */
c906108c
SS
517 print_gdb_version (gdb_stdout);
518 if (symarg)
519 printf_filtered ("..");
c5aa993b
JM
520 wrap_here ("");
521 gdb_flush (gdb_stdout); /* Force to screen during slow operations */
c906108c
SS
522 }
523
524 error_pre_print = "\n\n";
525 quit_pre_print = error_pre_print;
526
527 /* We may get more than one warning, don't double space all of them... */
defc6f8c 528 warning_pre_print = _("\nwarning: ");
c906108c
SS
529
530 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
531 *before* all the command line arguments are processed; it sets
532 global parameters, which are independent of what file you are
533 debugging or what directory you are in. */
c5aa993b 534 homedir = getenv ("HOME");
c906108c
SS
535 if (homedir)
536 {
537 homeinit = (char *) alloca (strlen (homedir) +
538 strlen (gdbinit) + 10);
539 strcpy (homeinit, homedir);
540 strcat (homeinit, "/");
541 strcat (homeinit, gdbinit);
542
543 if (!inhibit_gdbinit)
544 {
11cf8741 545 catch_command_errors (source_command, homeinit, 0, RETURN_MASK_ALL);
c906108c 546 }
c906108c
SS
547
548 /* Do stats; no need to do them elsewhere since we'll only
c5aa993b
JM
549 need them if homedir is set. Make sure that they are
550 zero in case one of them fails (this guarantees that they
551 won't match if either exists). */
552
c906108c
SS
553 memset (&homebuf, 0, sizeof (struct stat));
554 memset (&cwdbuf, 0, sizeof (struct stat));
c5aa993b 555
c906108c 556 stat (homeinit, &homebuf);
c5aa993b
JM
557 stat (gdbinit, &cwdbuf); /* We'll only need this if
558 homedir was set. */
c906108c
SS
559 }
560
561 /* Now perform all the actions indicated by the arguments. */
562 if (cdarg != NULL)
563 {
11cf8741 564 catch_command_errors (cd_command, cdarg, 0, RETURN_MASK_ALL);
c906108c 565 }
c906108c
SS
566
567 for (i = 0; i < ndir; i++)
11cf8741 568 catch_command_errors (directory_command, dirarg[i], 0, RETURN_MASK_ALL);
b8c9b27d 569 xfree (dirarg);
c906108c
SS
570
571 if (execarg != NULL
572 && symarg != NULL
573 && STREQ (execarg, symarg))
574 {
11cf8741
JM
575 /* The exec file and the symbol-file are the same. If we can't
576 open it, better only print one error message.
577 catch_command_errors returns non-zero on success! */
1adeb98a
FN
578 if (catch_command_errors (exec_file_attach, execarg, !batch, RETURN_MASK_ALL))
579 catch_command_errors (symbol_file_add_main, symarg, 0, RETURN_MASK_ALL);
c906108c
SS
580 }
581 else
582 {
583 if (execarg != NULL)
1adeb98a 584 catch_command_errors (exec_file_attach, execarg, !batch, RETURN_MASK_ALL);
c906108c 585 if (symarg != NULL)
1adeb98a 586 catch_command_errors (symbol_file_add_main, symarg, 0, RETURN_MASK_ALL);
c906108c 587 }
c906108c
SS
588
589 /* After the symbol file has been read, print a newline to get us
590 beyond the copyright line... But errors should still set off
591 the error message with a (single) blank line. */
592 if (!quiet)
593 printf_filtered ("\n");
594 error_pre_print = "\n";
595 quit_pre_print = error_pre_print;
defc6f8c 596 warning_pre_print = _("\nwarning: ");
c906108c
SS
597
598 if (corearg != NULL)
599 {
00546b04
MS
600 /* corearg may be either a corefile or a pid.
601 If its first character is a digit, try attach first
602 and then corefile. Otherwise try corefile first. */
603
604 if (isdigit (corearg[0]))
11cf8741 605 {
00546b04
MS
606 if (catch_command_errors (attach_command, corearg,
607 !batch, RETURN_MASK_ALL) == 0)
608 catch_command_errors (core_file_command, corearg,
609 !batch, RETURN_MASK_ALL);
11cf8741 610 }
00546b04
MS
611 else /* Can't be a pid, better be a corefile. */
612 catch_command_errors (core_file_command, corearg,
613 !batch, RETURN_MASK_ALL);
c906108c 614 }
c906108c
SS
615
616 if (ttyarg != NULL)
11cf8741 617 catch_command_errors (tty_command, ttyarg, !batch, RETURN_MASK_ALL);
c906108c
SS
618
619#ifdef ADDITIONAL_OPTION_HANDLER
620 ADDITIONAL_OPTION_HANDLER;
621#endif
622
623 /* Error messages should no longer be distinguished with extra output. */
624 error_pre_print = NULL;
625 quit_pre_print = NULL;
defc6f8c 626 warning_pre_print = _("warning: ");
c906108c
SS
627
628 /* Read the .gdbinit file in the current directory, *if* it isn't
629 the same as the $HOME/.gdbinit file (it should exist, also). */
c5aa993b 630
c906108c
SS
631 if (!homedir
632 || memcmp ((char *) &homebuf, (char *) &cwdbuf, sizeof (struct stat)))
633 if (!inhibit_gdbinit)
634 {
11cf8741 635 catch_command_errors (source_command, gdbinit, 0, RETURN_MASK_ALL);
c906108c 636 }
c906108c
SS
637
638 for (i = 0; i < ncmd; i++)
639 {
11cf8741
JM
640#if 0
641 /* NOTE: cagney/1999-11-03: SET_TOP_LEVEL() was a macro that
642 expanded into a call to setjmp(). */
643 if (!SET_TOP_LEVEL ()) /* NB: This is #if 0'd out */
c906108c 644 {
b83266a0
SS
645 /* NOTE: I am commenting this out, because it is not clear
646 where this feature is used. It is very old and
c5aa993b 647 undocumented. ezannoni: 1999-05-04 */
b83266a0 648#if 0
c906108c
SS
649 if (cmdarg[i][0] == '-' && cmdarg[i][1] == '\0')
650 read_command_file (stdin);
651 else
b83266a0 652#endif
c906108c
SS
653 source_command (cmdarg[i], !batch);
654 do_cleanups (ALL_CLEANUPS);
655 }
11cf8741
JM
656#endif
657 catch_command_errors (source_command, cmdarg[i], !batch, RETURN_MASK_ALL);
c906108c 658 }
b8c9b27d 659 xfree (cmdarg);
c906108c
SS
660
661 /* Read in the old history after all the command files have been read. */
c5aa993b 662 init_history ();
c906108c
SS
663
664 if (batch)
665 {
666 /* We have hit the end of the batch file. */
667 exit (0);
668 }
669
670 /* Do any host- or target-specific hacks. This is used for i960 targets
671 to force the user to set a nindy target and spec its parameters. */
672
673#ifdef BEFORE_MAIN_LOOP_HOOK
674 BEFORE_MAIN_LOOP_HOOK;
675#endif
676
677 END_PROGRESS (argv[0]);
678
679 /* Show time and/or space usage. */
680
681 if (display_time)
682 {
683 long init_time = get_run_time () - time_at_startup;
684
defc6f8c 685 printf_unfiltered (_("Startup time: %ld.%06ld\n"),
c906108c
SS
686 init_time / 1000000, init_time % 1000000);
687 }
688
689 if (display_space)
690 {
691#ifdef HAVE_SBRK
692 extern char **environ;
693 char *lim = (char *) sbrk (0);
694
defc6f8c 695 printf_unfiltered (_("Startup size: data size %ld\n"),
c906108c
SS
696 (long) (lim - (char *) &environ));
697#endif
698 }
699
11cf8741
JM
700#if 0
701 /* FIXME: cagney/1999-11-06: The original main loop was like: */
c906108c
SS
702 while (1)
703 {
704 if (!SET_TOP_LEVEL ())
705 {
c5aa993b 706 do_cleanups (ALL_CLEANUPS); /* Do complete cleanup */
c906108c
SS
707 /* GUIs generally have their own command loop, mainloop, or whatever.
708 This is a good place to gain control because many error
709 conditions will end up here via longjmp(). */
710 if (command_loop_hook)
711 command_loop_hook ();
712 else
713 command_loop ();
c5aa993b 714 quit_command ((char *) 0, instream == stdin);
c906108c
SS
715 }
716 }
11cf8741
JM
717 /* NOTE: If the command_loop() returned normally, the loop would
718 attempt to exit by calling the function quit_command(). That
719 function would either call exit() or throw an error returning
720 control to SET_TOP_LEVEL. */
721 /* NOTE: The function do_cleanups() was called once each time round
722 the loop. The usefulness of the call isn't clear. If an error
723 was thrown, everything would have already been cleaned up. If
724 command_loop() returned normally and quit_command() was called,
725 either exit() or error() (again cleaning up) would be called. */
726#endif
727 /* NOTE: cagney/1999-11-07: There is probably no reason for not
728 moving this loop and the code found in captured_command_loop()
729 into the command_loop() proper. The main thing holding back that
730 change - SET_TOP_LEVEL() - has been eliminated. */
731 while (1)
732 {
733 catch_errors (captured_command_loop, 0, "", RETURN_MASK_ALL);
734 }
11cf8741
JM
735 /* No exit -- exit is through quit_command. */
736}
c906108c 737
11cf8741
JM
738int
739main (int argc, char **argv)
740{
11cf8741
JM
741 struct captured_main_args args;
742 args.argc = argc;
743 args.argv = argv;
744 catch_errors (captured_main, &args, "", RETURN_MASK_ALL);
745 return 0;
c906108c
SS
746}
747
11cf8741 748
c906108c
SS
749/* Don't use *_filtered for printing help. We don't want to prompt
750 for continue no matter how small the screen or how much we're going
751 to print. */
752
753static void
d9fcf2fb 754print_gdb_help (struct ui_file *stream)
c906108c 755{
defc6f8c 756 fputs_unfiltered (_("\
c906108c 757This is the GNU debugger. Usage:\n\n\
552c04a7
TT
758 gdb [options] [executable-file [core-file or process-id]]\n\
759 gdb [options] --args executable-file [inferior-arguments ...]\n\n\
c906108c 760Options:\n\n\
defc6f8c
TT
761"), stream);
762 fputs_unfiltered (_("\
552c04a7 763 --args Arguments after executable-file are passed to inferior\n\
defc6f8c
TT
764"), stream);
765 fputs_unfiltered (_("\
0f71a2f6 766 --[no]async Enable (disable) asynchronous version of CLI\n\
defc6f8c
TT
767"), stream);
768 fputs_unfiltered (_("\
c906108c
SS
769 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
770 --batch Exit after processing options.\n\
771 --cd=DIR Change current directory to DIR.\n\
772 --command=FILE Execute GDB commands from FILE.\n\
773 --core=COREFILE Analyze the core dump COREFILE.\n\
00546b04 774 --pid=PID Attach to running process PID.\n\
defc6f8c
TT
775"), stream);
776 fputs_unfiltered (_("\
c906108c
SS
777 --dbx DBX compatibility mode.\n\
778 --directory=DIR Search for source files in DIR.\n\
779 --epoch Output information used by epoch emacs-GDB interface.\n\
780 --exec=EXECFILE Use EXECFILE as the executable.\n\
781 --fullname Output information used by emacs-GDB interface.\n\
782 --help Print this message.\n\
defc6f8c
TT
783"), stream);
784 fputs_unfiltered (_("\
8b93c638
JM
785 --interpreter=INTERP\n\
786 Select a specific interpreter / user interface\n\
defc6f8c
TT
787"), stream);
788 fputs_unfiltered (_("\
c906108c
SS
789 --mapped Use mapped symbol files if supported on this system.\n\
790 --nw Do not use a window interface.\n\
defc6f8c 791 --nx Do not read "), stream);
96baa820 792 fputs_unfiltered (gdbinit, stream);
defc6f8c 793 fputs_unfiltered (_(" file.\n\
c906108c
SS
794 --quiet Do not print version number on startup.\n\
795 --readnow Fully read symbol files on first access.\n\
defc6f8c
TT
796"), stream);
797 fputs_unfiltered (_("\
c906108c
SS
798 --se=FILE Use FILE as symbol file and executable file.\n\
799 --symbols=SYMFILE Read symbols from SYMFILE.\n\
800 --tty=TTY Use TTY for input/output by the program being debugged.\n\
defc6f8c 801"), stream);
c906108c 802#if defined(TUI)
defc6f8c 803 fputs_unfiltered (_("\
c906108c 804 --tui Use a terminal user interface.\n\
defc6f8c 805"), stream);
c906108c 806#endif
defc6f8c 807 fputs_unfiltered (_("\
c906108c
SS
808 --version Print version information and then exit.\n\
809 -w Use a window interface.\n\
810 --write Set writing into executable and core files.\n\
811 --xdb XDB compatibility mode.\n\
defc6f8c 812"), stream);
c906108c 813#ifdef ADDITIONAL_OPTION_HELP
c5aa993b 814 fputs_unfiltered (ADDITIONAL_OPTION_HELP, stream);
c906108c 815#endif
defc6f8c 816 fputs_unfiltered (_("\n\
c906108c
SS
817For more information, type \"help\" from within GDB, or consult the\n\
818GDB manual (available as on-line info or a printed manual).\n\
2df3850c 819Report bugs to \"bug-gdb@gnu.org\".\
defc6f8c 820"), stream);
c906108c 821}
This page took 0.339609 seconds and 4 git commands to generate.