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