daily update
[deliverable/binutils-gdb.git] / gdb / main.c
CommitLineData
c906108c 1/* Top level stuff for GDB, the GNU debugger.
4389a95a 2
6aba47ca 3 Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
0fb0cc75 4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2007, 2008,
4c38e0a4 5 2009, 2010 Free Software Foundation, Inc.
c906108c 6
c5aa993b 7 This file is part of GDB.
c906108c 8
c5aa993b
JM
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
a9762ec7 11 the Free Software Foundation; either version 3 of the License, or
c5aa993b 12 (at your option) any later version.
c906108c 13
c5aa993b
JM
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
c906108c 18
c5aa993b 19 You should have received a copy of the GNU General Public License
a9762ec7 20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
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 28
60250e8b 29#include "exceptions.h"
c906108c
SS
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
4389a95a 40#include "interps.h"
f15ab4a7
AC
41#include "main.h"
42
29b0e8a2
JM
43#include "source.h"
44
c906108c
SS
45/* If nonzero, display time usage both at startup and for each command. */
46
47int display_time;
48
49/* If nonzero, display space usage both at startup and for each command. */
50
51int display_space;
52
4389a95a
AC
53/* The selected interpreter. This will be used as a set command
54 variable, so it should always be malloc'ed - since
55 do_setshow_command will free it. */
fb40c209 56char *interpreter_p;
fb40c209 57
c906108c
SS
58/* Whether xdb commands will be handled */
59int xdb_commands = 0;
60
61/* Whether dbx commands will be handled */
62int dbx_commands = 0;
63
030292b7
DJ
64/* System root path, used to find libraries etc. */
65char *gdb_sysroot = 0;
66
b14b1491
TT
67/* GDB datadir, used to store data files. */
68char *gdb_datadir = 0;
69
d9fcf2fb
JM
70struct ui_file *gdb_stdout;
71struct ui_file *gdb_stderr;
72struct ui_file *gdb_stdlog;
449092f6
CV
73struct ui_file *gdb_stdin;
74/* target IO streams */
75struct ui_file *gdb_stdtargin;
22e8e3c7 76struct ui_file *gdb_stdtarg;
449092f6 77struct ui_file *gdb_stdtargerr;
c906108c 78
1a088d06
AS
79/* Support for the --batch-silent option. */
80int batch_silent = 0;
81
4b0ad762
AS
82/* Support for --return-child-result option.
83 Set the default to -1 to return error in the case
84 that the program does not run or does not complete. */
85int return_child_result = 0;
86int return_child_result_value = -1;
87
c906108c
SS
88/* Whether to enable writing into executable and core files */
89extern int write_files;
90
16e7150e
JG
91/* GDB as it has been invoked from the command line (i.e. argv[0]). */
92static char *gdb_program_name;
93
d9fcf2fb 94static void print_gdb_help (struct ui_file *);
c906108c
SS
95
96/* These two are used to set the external editor commands when gdb is farming
97 out files to be edited by another program. */
98
c5aa993b 99extern char *external_editor_command;
c906108c 100
b14b1491
TT
101/* Relocate a file or directory. PROGNAME is the name by which gdb
102 was invoked (i.e., argv[0]). INITIAL is the default value for the
103 file or directory. FLAG is true if the value is relocatable, false
104 otherwise. Returns a newly allocated string; this may return NULL
105 under the same conditions as make_relative_prefix. */
106static char *
107relocate_path (const char *progname, const char *initial, int flag)
108{
109 if (flag)
110 return make_relative_prefix (progname, BINDIR, initial);
111 return xstrdup (initial);
112}
113
114/* Like relocate_path, but specifically checks for a directory.
115 INITIAL is relocated according to the rules of relocate_path. If
116 the result is a directory, it is used; otherwise, INITIAL is used.
117 The chosen directory is then canonicalized using lrealpath. This
118 function always returns a newly-allocated string. */
119static char *
120relocate_directory (const char *progname, const char *initial, int flag)
121{
122 char *dir;
123
124 dir = relocate_path (progname, initial, flag);
125 if (dir)
126 {
127 struct stat s;
128
129 if (stat (dir, &s) != 0 || !S_ISDIR (s.st_mode))
130 {
131 xfree (dir);
132 dir = NULL;
133 }
134 }
135 if (!dir)
136 dir = xstrdup (initial);
137
138 /* Canonicalize the directory. */
139 if (*dir)
140 {
141 char *canon_sysroot = lrealpath (dir);
142 if (canon_sysroot)
143 {
144 xfree (dir);
145 dir = canon_sysroot;
146 }
147 }
148
149 return dir;
150}
151
16e7150e
JG
152/* Compute the locations of init files that GDB should source and return
153 them in SYSTEM_GDBINIT, HOME_GDBINIT, LOCAL_GDBINIT. If there is
154 no system gdbinit (resp. home gdbinit and local gdbinit) to be loaded,
155 then SYSTEM_GDBINIT (resp. HOME_GDBINIT and LOCAL_GDBINIT) is set to
156 NULL. */
157static void
158get_init_files (char **system_gdbinit,
159 char **home_gdbinit,
160 char **local_gdbinit)
161{
162 static char *sysgdbinit = NULL;
163 static char *homeinit = NULL;
164 static char *localinit = NULL;
165 static int initialized = 0;
166
167 if (!initialized)
168 {
169 struct stat homebuf, cwdbuf, s;
170 char *homedir, *relocated_sysgdbinit;
171
b14b1491 172 if (SYSTEM_GDBINIT[0])
16e7150e 173 {
b14b1491
TT
174 relocated_sysgdbinit = relocate_path (gdb_program_name,
175 SYSTEM_GDBINIT,
176 SYSTEM_GDBINIT_RELOCATABLE);
177 if (relocated_sysgdbinit && stat (relocated_sysgdbinit, &s) == 0)
16e7150e
JG
178 sysgdbinit = relocated_sysgdbinit;
179 else
180 xfree (relocated_sysgdbinit);
181 }
16e7150e
JG
182
183 homedir = getenv ("HOME");
184
185 /* If the .gdbinit file in the current directory is the same as
186 the $HOME/.gdbinit file, it should not be sourced. homebuf
187 and cwdbuf are used in that purpose. Make sure that the stats
188 are zero in case one of them fails (this guarantees that they
189 won't match if either exists). */
190
191 memset (&homebuf, 0, sizeof (struct stat));
192 memset (&cwdbuf, 0, sizeof (struct stat));
193
194 if (homedir)
195 {
196 homeinit = xstrprintf ("%s/%s", homedir, gdbinit);
197 if (stat (homeinit, &homebuf) != 0)
198 {
199 xfree (homeinit);
200 homeinit = NULL;
201 }
202 }
203
204 if (stat (gdbinit, &cwdbuf) == 0)
205 {
206 if (!homeinit
207 || memcmp ((char *) &homebuf, (char *) &cwdbuf,
208 sizeof (struct stat)))
209 localinit = gdbinit;
210 }
211
212 initialized = 1;
213 }
214
215 *system_gdbinit = sysgdbinit;
216 *home_gdbinit = homeinit;
217 *local_gdbinit = localinit;
218}
219
11cf8741
JM
220/* Call command_loop. If it happens to return, pass that through as a
221 non-zero return status. */
222
223static int
224captured_command_loop (void *data)
c906108c 225{
4389a95a 226 current_interp_command_loop ();
11cf8741
JM
227 /* FIXME: cagney/1999-11-05: A correct command_loop() implementaton
228 would clean things up (restoring the cleanup chain) to the state
229 they were just prior to the call. Technically, this means that
e26cc349 230 the do_cleanups() below is redundant. Unfortunately, many FUNCs
11cf8741
JM
231 are not that well behaved. do_cleanups should either be replaced
232 with a do_cleanups call (to cover the problem) or an assertion
233 check to detect bad FUNCs code. */
234 do_cleanups (ALL_CLEANUPS);
235 /* If the command_loop returned, normally (rather than threw an
236 error) we try to quit. If the quit is aborted, catch_errors()
237 which called this catch the signal and restart the command
238 loop. */
239 quit_command (NULL, instream == stdin);
240 return 1;
241}
242
11cf8741
JM
243static int
244captured_main (void *data)
245{
246 struct captured_main_args *context = data;
247 int argc = context->argc;
248 char **argv = context->argv;
c906108c
SS
249 static int quiet = 0;
250 static int batch = 0;
552c04a7 251 static int set_args = 0;
c906108c
SS
252
253 /* Pointers to various arguments from command line. */
254 char *symarg = NULL;
255 char *execarg = NULL;
a4d9b460 256 char *pidarg = NULL;
c906108c 257 char *corearg = NULL;
a4d9b460 258 char *pid_or_core_arg = NULL;
c906108c
SS
259 char *cdarg = NULL;
260 char *ttyarg = NULL;
261
262 /* These are static so that we can take their address in an initializer. */
263 static int print_help;
264 static int print_version;
265
266 /* Pointers to all arguments of --command option. */
8a5a3c82
AS
267 struct cmdarg {
268 enum {
269 CMDARG_FILE,
270 CMDARG_COMMAND
271 } type;
272 char *string;
273 } *cmdarg;
c906108c
SS
274 /* Allocated size of cmdarg. */
275 int cmdsize;
276 /* Number of elements of cmdarg used. */
277 int ncmd;
278
279 /* Indices of all arguments of --directory option. */
280 char **dirarg;
281 /* Allocated size. */
282 int dirsize;
283 /* Number of elements used. */
284 int ndir;
c5aa993b 285
16e7150e
JG
286 /* gdb init files. */
287 char *system_gdbinit;
288 char *home_gdbinit;
289 char *local_gdbinit;
c906108c 290
52f0bd74 291 int i;
c906108c
SS
292
293 long time_at_startup = get_run_time ();
294
0fbb3da7
TT
295#if defined (HAVE_SETLOCALE) && defined (HAVE_LC_MESSAGES)
296 setlocale (LC_MESSAGES, "");
297#endif
298#if defined (HAVE_SETLOCALE)
299 setlocale (LC_CTYPE, "");
300#endif
301 bindtextdomain (PACKAGE, LOCALEDIR);
302 textdomain (PACKAGE);
303
6dd77b81
RH
304#ifdef HAVE_SBRK
305 lim_at_start = (char *) sbrk (0);
306#endif
307
c906108c 308 cmdsize = 1;
8a5a3c82 309 cmdarg = (struct cmdarg *) xmalloc (cmdsize * sizeof (*cmdarg));
c906108c
SS
310 ncmd = 0;
311 dirsize = 1;
312 dirarg = (char **) xmalloc (dirsize * sizeof (*dirarg));
313 ndir = 0;
314
315 quit_flag = 0;
316 line = (char *) xmalloc (linesize);
317 line[0] = '\0'; /* Terminate saved (now empty) cmd line */
318 instream = stdin;
319
da59e081
JM
320 gdb_stdout = stdio_fileopen (stdout);
321 gdb_stderr = stdio_fileopen (stderr);
322 gdb_stdlog = gdb_stderr; /* for moment */
323 gdb_stdtarg = gdb_stderr; /* for moment */
449092f6
CV
324 gdb_stdin = stdio_fileopen (stdin);
325 gdb_stdtargerr = gdb_stderr; /* for moment */
326 gdb_stdtargin = gdb_stdin; /* for moment */
c906108c 327
16e7150e
JG
328 gdb_program_name = xstrdup (argv[0]);
329
bf1d7d9c
JB
330 if (! getcwd (gdb_dirbuf, sizeof (gdb_dirbuf)))
331 /* Don't use *_filtered or warning() (which relies on
332 current_target) until after initialize_all_files(). */
333 fprintf_unfiltered (gdb_stderr,
334 _("%s: warning: error finding working directory: %s\n"),
335 argv[0], safe_strerror (errno));
336
337 current_directory = gdb_dirbuf;
338
030292b7 339 /* Set the sysroot path. */
b14b1491
TT
340 gdb_sysroot = relocate_directory (argv[0], TARGET_SYSTEM_ROOT,
341 TARGET_SYSTEM_ROOT_RELOCATABLE);
030292b7 342
b14b1491
TT
343 debug_file_directory = relocate_directory (argv[0], DEBUGDIR,
344 DEBUGDIR_RELOCATABLE);
030292b7 345
b14b1491
TT
346 gdb_datadir = relocate_directory (argv[0], GDB_DATADIR,
347 GDB_DATADIR_RELOCATABLE);
aa28a74e 348
29b0e8a2
JM
349#ifdef RELOC_SRCDIR
350 add_substitute_path_rule (RELOC_SRCDIR,
351 make_relative_prefix (argv[0], BINDIR,
352 RELOC_SRCDIR));
353#endif
354
4389a95a 355 /* There will always be an interpreter. Either the one passed into
e46e5ccd
KS
356 this captured main, or one specified by the user at start up, or
357 the console. Initialize the interpreter to the one requested by
358 the application. */
359 interpreter_p = xstrdup (context->interpreter_p);
4389a95a 360
c906108c
SS
361 /* Parse arguments and options. */
362 {
363 int c;
364 /* When var field is 0, use flag field to record the equivalent
365 short option (or arbitrary numbers starting at 10 for those
366 with no equivalent). */
49c7e338
AC
367 enum {
368 OPT_SE = 10,
369 OPT_CD,
370 OPT_ANNOTATE,
371 OPT_STATISTICS,
42fa7c0f
AC
372 OPT_TUI,
373 OPT_NOWINDOWS,
374 OPT_WINDOWS
49c7e338 375 };
c906108c 376 static struct option long_options[] =
c5aa993b 377 {
49c7e338 378 {"tui", no_argument, 0, OPT_TUI},
c5aa993b
JM
379 {"xdb", no_argument, &xdb_commands, 1},
380 {"dbx", no_argument, &dbx_commands, 1},
381 {"readnow", no_argument, &readnow_symbol_files, 1},
382 {"r", no_argument, &readnow_symbol_files, 1},
c5aa993b
JM
383 {"quiet", no_argument, &quiet, 1},
384 {"q", no_argument, &quiet, 1},
385 {"silent", no_argument, &quiet, 1},
386 {"nx", no_argument, &inhibit_gdbinit, 1},
387 {"n", no_argument, &inhibit_gdbinit, 1},
1a088d06 388 {"batch-silent", no_argument, 0, 'B'},
c5aa993b
JM
389 {"batch", no_argument, &batch, 1},
390 {"epoch", no_argument, &epoch_interface, 1},
391
392 /* This is a synonym for "--annotate=1". --annotate is now preferred,
393 but keep this here for a long time because people will be running
394 emacses which use --fullname. */
395 {"fullname", no_argument, 0, 'f'},
396 {"f", no_argument, 0, 'f'},
397
49c7e338 398 {"annotate", required_argument, 0, OPT_ANNOTATE},
c5aa993b 399 {"help", no_argument, &print_help, 1},
49c7e338 400 {"se", required_argument, 0, OPT_SE},
c5aa993b
JM
401 {"symbols", required_argument, 0, 's'},
402 {"s", required_argument, 0, 's'},
403 {"exec", required_argument, 0, 'e'},
404 {"e", required_argument, 0, 'e'},
405 {"core", required_argument, 0, 'c'},
406 {"c", required_argument, 0, 'c'},
00546b04
MS
407 {"pid", required_argument, 0, 'p'},
408 {"p", required_argument, 0, 'p'},
c5aa993b 409 {"command", required_argument, 0, 'x'},
8a5a3c82 410 {"eval-command", required_argument, 0, 'X'},
c5aa993b
JM
411 {"version", no_argument, &print_version, 1},
412 {"x", required_argument, 0, 'x'},
8a5a3c82 413 {"ex", required_argument, 0, 'X'},
3fc11d3e
JM
414#ifdef GDBTK
415 {"tclcommand", required_argument, 0, 'z'},
416 {"enable-external-editor", no_argument, 0, 'y'},
417 {"editor-command", required_argument, 0, 'w'},
418#endif
8b93c638
JM
419 {"ui", required_argument, 0, 'i'},
420 {"interpreter", required_argument, 0, 'i'},
421 {"i", required_argument, 0, 'i'},
c5aa993b 422 {"directory", required_argument, 0, 'd'},
c4093a6a 423 {"d", required_argument, 0, 'd'},
49c7e338 424 {"cd", required_argument, 0, OPT_CD},
c5aa993b
JM
425 {"tty", required_argument, 0, 't'},
426 {"baud", required_argument, 0, 'b'},
427 {"b", required_argument, 0, 'b'},
42fa7c0f
AC
428 {"nw", no_argument, NULL, OPT_NOWINDOWS},
429 {"nowindows", no_argument, NULL, OPT_NOWINDOWS},
430 {"w", no_argument, NULL, OPT_WINDOWS},
431 {"windows", no_argument, NULL, OPT_WINDOWS},
49c7e338 432 {"statistics", no_argument, 0, OPT_STATISTICS},
c5aa993b 433 {"write", no_argument, &write_files, 1},
552c04a7 434 {"args", no_argument, &set_args, 1},
39c76ca3 435 {"l", required_argument, 0, 'l'},
4b0ad762 436 {"return-child-result", no_argument, &return_child_result, 1},
c5aa993b
JM
437 {0, no_argument, 0, 0}
438 };
c906108c
SS
439
440 while (1)
441 {
442 int option_index;
443
444 c = getopt_long_only (argc, argv, "",
445 long_options, &option_index);
552c04a7 446 if (c == EOF || set_args)
c906108c
SS
447 break;
448
449 /* Long option that takes an argument. */
450 if (c == 0 && long_options[option_index].flag == 0)
451 c = long_options[option_index].val;
452
453 switch (c)
454 {
455 case 0:
456 /* Long option that just sets a flag. */
457 break;
49c7e338 458 case OPT_SE:
c906108c
SS
459 symarg = optarg;
460 execarg = optarg;
461 break;
49c7e338 462 case OPT_CD:
c906108c
SS
463 cdarg = optarg;
464 break;
49c7e338 465 case OPT_ANNOTATE:
c906108c
SS
466 /* FIXME: what if the syntax is wrong (e.g. not digits)? */
467 annotation_level = atoi (optarg);
468 break;
49c7e338 469 case OPT_STATISTICS:
c906108c
SS
470 /* Enable the display of both time and space usage. */
471 display_time = 1;
472 display_space = 1;
473 break;
49c7e338 474 case OPT_TUI:
021e7609 475 /* --tui is equivalent to -i=tui. */
b0da54f1 476#ifdef TUI
021e7609 477 xfree (interpreter_p);
cc4349ed 478 interpreter_p = xstrdup (INTERP_TUI);
b0da54f1
BW
479#else
480 fprintf_unfiltered (gdb_stderr,
481 _("%s: TUI mode is not supported\n"),
482 argv[0]);
483 exit (1);
484#endif
021e7609 485 break;
42fa7c0f
AC
486 case OPT_WINDOWS:
487 /* FIXME: cagney/2003-03-01: Not sure if this option is
488 actually useful, and if it is, what it should do. */
cc4349ed
AS
489#ifdef GDBTK
490 /* --windows is equivalent to -i=insight. */
491 xfree (interpreter_p);
492 interpreter_p = xstrdup (INTERP_INSIGHT);
493#endif
42fa7c0f
AC
494 use_windows = 1;
495 break;
496 case OPT_NOWINDOWS:
497 /* -nw is equivalent to -i=console. */
498 xfree (interpreter_p);
499 interpreter_p = xstrdup (INTERP_CONSOLE);
500 use_windows = 0;
501 break;
c906108c
SS
502 case 'f':
503 annotation_level = 1;
504/* We have probably been invoked from emacs. Disable window interface. */
505 use_windows = 0;
506 break;
507 case 's':
508 symarg = optarg;
509 break;
510 case 'e':
511 execarg = optarg;
512 break;
513 case 'c':
514 corearg = optarg;
515 break;
00546b04 516 case 'p':
a4d9b460 517 pidarg = optarg;
00546b04 518 break;
c906108c 519 case 'x':
8a5a3c82
AS
520 cmdarg[ncmd].type = CMDARG_FILE;
521 cmdarg[ncmd++].string = optarg;
522 if (ncmd >= cmdsize)
523 {
524 cmdsize *= 2;
525 cmdarg = xrealloc ((char *) cmdarg,
526 cmdsize * sizeof (*cmdarg));
527 }
528 break;
529 case 'X':
530 cmdarg[ncmd].type = CMDARG_COMMAND;
531 cmdarg[ncmd++].string = optarg;
c906108c
SS
532 if (ncmd >= cmdsize)
533 {
534 cmdsize *= 2;
8a5a3c82
AS
535 cmdarg = xrealloc ((char *) cmdarg,
536 cmdsize * sizeof (*cmdarg));
c906108c
SS
537 }
538 break;
1a088d06
AS
539 case 'B':
540 batch = batch_silent = 1;
541 gdb_stdout = ui_file_new();
542 break;
3fc11d3e
JM
543#ifdef GDBTK
544 case 'z':
545 {
a14ed312 546extern int gdbtk_test (char *);
3fc11d3e
JM
547 if (!gdbtk_test (optarg))
548 {
defc6f8c 549 fprintf_unfiltered (gdb_stderr, _("%s: unable to load tclcommand file \"%s\""),
3fc11d3e
JM
550 argv[0], optarg);
551 exit (1);
552 }
553 break;
554 }
555 case 'y':
78f49586
TT
556 /* Backwards compatibility only. */
557 break;
3fc11d3e
JM
558 case 'w':
559 {
3fc11d3e
JM
560 external_editor_command = xstrdup (optarg);
561 break;
562 }
563#endif /* GDBTK */
fb40c209 564 case 'i':
4389a95a
AC
565 xfree (interpreter_p);
566 interpreter_p = xstrdup (optarg);
fb40c209 567 break;
c906108c
SS
568 case 'd':
569 dirarg[ndir++] = optarg;
570 if (ndir >= dirsize)
571 {
572 dirsize *= 2;
c5aa993b 573 dirarg = (char **) xrealloc ((char *) dirarg,
c906108c
SS
574 dirsize * sizeof (*dirarg));
575 }
576 break;
577 case 't':
578 ttyarg = optarg;
579 break;
580 case 'q':
581 quiet = 1;
582 break;
583 case 'b':
584 {
585 int i;
586 char *p;
587
588 i = strtol (optarg, &p, 0);
589 if (i == 0 && p == optarg)
590
591 /* Don't use *_filtered or warning() (which relies on
c5aa993b 592 current_target) until after initialize_all_files(). */
c906108c
SS
593
594 fprintf_unfiltered
595 (gdb_stderr,
defc6f8c 596 _("warning: could not set baud rate to `%s'.\n"), optarg);
c906108c
SS
597 else
598 baud_rate = i;
599 }
046ca86a 600 break;
c906108c
SS
601 case 'l':
602 {
603 int i;
604 char *p;
605
606 i = strtol (optarg, &p, 0);
607 if (i == 0 && p == optarg)
608
609 /* Don't use *_filtered or warning() (which relies on
c5aa993b 610 current_target) until after initialize_all_files(). */
c906108c
SS
611
612 fprintf_unfiltered
613 (gdb_stderr,
defc6f8c 614 _("warning: could not set timeout limit to `%s'.\n"), optarg);
c906108c
SS
615 else
616 remote_timeout = i;
617 }
618 break;
619
c906108c
SS
620 case '?':
621 fprintf_unfiltered (gdb_stderr,
defc6f8c 622 _("Use `%s --help' for a complete list of options.\n"),
c5aa993b 623 argv[0]);
c906108c
SS
624 exit (1);
625 }
626 }
627
628 /* If --help or --version, disable window interface. */
629 if (print_help || print_version)
630 {
631 use_windows = 0;
c906108c
SS
632 }
633
c906108c
SS
634 if (batch)
635 quiet = 1;
636 }
637
0f71a2f6 638 /* Initialize all files. Give the interpreter a chance to take
ba5e7e8d 639 control of the console via the deprecated_init_ui_hook (). */
c906108c
SS
640 gdb_init (argv[0]);
641
3f81c18a
VP
642 /* Now that gdb_init has created the initial inferior, we're in position
643 to set args for that inferior. */
644 if (set_args)
645 {
646 /* The remaining options are the command-line options for the
647 inferior. The first one is the sym/exec file, and the rest
648 are arguments. */
649 if (optind >= argc)
650 {
651 fprintf_unfiltered (gdb_stderr,
652 _("%s: `--args' specified but no program specified\n"),
653 argv[0]);
654 exit (1);
655 }
656 symarg = argv[optind];
657 execarg = argv[optind];
658 ++optind;
659 set_inferior_args_vector (argc - optind, &argv[optind]);
660 }
661 else
662 {
663 /* OK, that's all the options. */
664
665 /* The first argument, if specified, is the name of the
666 executable. */
667 if (optind < argc)
668 {
669 symarg = argv[optind];
670 execarg = argv[optind];
671 optind++;
672 }
673
674 /* If the user hasn't already specified a PID or the name of a
675 core file, then a second optional argument is allowed. If
676 present, this argument should be interpreted as either a
677 PID or a core file, whichever works. */
678 if (pidarg == NULL && corearg == NULL && optind < argc)
679 {
680 pid_or_core_arg = argv[optind];
681 optind++;
682 }
683
684 /* Any argument left on the command line is unexpected and
685 will be ignored. Inform the user. */
686 if (optind < argc)
687 fprintf_unfiltered (gdb_stderr, _("\
688Excess command line arguments ignored. (%s%s)\n"),
689 argv[optind],
690 (optind == argc - 1) ? "" : " ...");
691 }
692
57a46001
JG
693 /* Lookup gdbinit files. Note that the gdbinit file name may be overriden
694 during file initialization, so get_init_files should be called after
695 gdb_init. */
696 get_init_files (&system_gdbinit, &home_gdbinit, &local_gdbinit);
697
c906108c 698 /* Do these (and anything which might call wrap_here or *_filtered)
4389a95a
AC
699 after initialize_all_files() but before the interpreter has been
700 installed. Otherwize the help/version messages will be eaten by
701 the interpreter's output handler. */
702
c906108c
SS
703 if (print_version)
704 {
705 print_gdb_version (gdb_stdout);
706 wrap_here ("");
707 printf_filtered ("\n");
708 exit (0);
709 }
710
711 if (print_help)
712 {
713 print_gdb_help (gdb_stdout);
714 fputs_unfiltered ("\n", gdb_stdout);
715 exit (0);
716 }
717
4389a95a
AC
718 /* FIXME: cagney/2003-02-03: The big hack (part 1 of 2) that lets
719 GDB retain the old MI1 interpreter startup behavior. Output the
720 copyright message before the interpreter is installed. That way
721 it isn't encapsulated in MI output. */
722 if (!quiet && strcmp (interpreter_p, INTERP_MI1) == 0)
723 {
724 /* Print all the junk at the top, with trailing "..." if we are about
725 to read a symbol file (possibly slowly). */
726 print_gdb_version (gdb_stdout);
727 if (symarg)
728 printf_filtered ("..");
729 wrap_here ("");
e896d70e 730 printf_filtered ("\n");
4389a95a
AC
731 gdb_flush (gdb_stdout); /* Force to screen during slow operations */
732 }
733
734
735 /* Install the default UI. All the interpreters should have had a
736 look at things by now. Initialize the default interpreter. */
737
738 {
739 /* Find it. */
740 struct interp *interp = interp_lookup (interpreter_p);
741 if (interp == NULL)
8a3fe4f8 742 error (_("Interpreter `%s' unrecognized"), interpreter_p);
4389a95a 743 /* Install it. */
683f2885 744 if (!interp_set (interp, 1))
4389a95a
AC
745 {
746 fprintf_unfiltered (gdb_stderr,
747 "Interpreter `%s' failed to initialize.\n",
748 interpreter_p);
749 exit (1);
750 }
751 }
752
753 /* FIXME: cagney/2003-02-03: The big hack (part 2 of 2) that lets
754 GDB retain the old MI1 interpreter startup behavior. Output the
755 copyright message after the interpreter is installed when it is
756 any sane interpreter. */
757 if (!quiet && !current_interp_named_p (INTERP_MI1))
c906108c
SS
758 {
759 /* Print all the junk at the top, with trailing "..." if we are about
c5aa993b 760 to read a symbol file (possibly slowly). */
c906108c
SS
761 print_gdb_version (gdb_stdout);
762 if (symarg)
763 printf_filtered ("..");
c5aa993b 764 wrap_here ("");
e896d70e 765 printf_filtered ("\n");
c5aa993b 766 gdb_flush (gdb_stdout); /* Force to screen during slow operations */
c906108c
SS
767 }
768
e896d70e
DJ
769 /* Set off error and warning messages with a blank line. */
770 error_pre_print = "\n";
c906108c 771 quit_pre_print = error_pre_print;
defc6f8c 772 warning_pre_print = _("\nwarning: ");
c906108c 773
16e7150e
JG
774 /* Read and execute the system-wide gdbinit file, if it exists.
775 This is done *before* all the command line arguments are
776 processed; it sets global parameters, which are independent of
777 what file you are debugging or what directory you are in. */
778 if (system_gdbinit && !inhibit_gdbinit)
779 catch_command_errors (source_script, system_gdbinit, 0, RETURN_MASK_ALL);
780
c906108c
SS
781 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
782 *before* all the command line arguments are processed; it sets
783 global parameters, which are independent of what file you are
784 debugging or what directory you are in. */
c906108c 785
16e7150e
JG
786 if (home_gdbinit && !inhibit_gdbinit)
787 catch_command_errors (source_script, home_gdbinit, 0, RETURN_MASK_ALL);
c906108c
SS
788
789 /* Now perform all the actions indicated by the arguments. */
790 if (cdarg != NULL)
791 {
11cf8741 792 catch_command_errors (cd_command, cdarg, 0, RETURN_MASK_ALL);
c906108c 793 }
c906108c
SS
794
795 for (i = 0; i < ndir; i++)
13d35ae5 796 catch_command_errors (directory_switch, dirarg[i], 0, RETURN_MASK_ALL);
b8c9b27d 797 xfree (dirarg);
c906108c
SS
798
799 if (execarg != NULL
800 && symarg != NULL
5cb316ef 801 && strcmp (execarg, symarg) == 0)
c906108c 802 {
11cf8741
JM
803 /* The exec file and the symbol-file are the same. If we can't
804 open it, better only print one error message.
805 catch_command_errors returns non-zero on success! */
1adeb98a 806 if (catch_command_errors (exec_file_attach, execarg, !batch, RETURN_MASK_ALL))
55333a84 807 catch_command_errors (symbol_file_add_main, symarg, !batch, RETURN_MASK_ALL);
c906108c
SS
808 }
809 else
810 {
811 if (execarg != NULL)
1adeb98a 812 catch_command_errors (exec_file_attach, execarg, !batch, RETURN_MASK_ALL);
c906108c 813 if (symarg != NULL)
55333a84 814 catch_command_errors (symbol_file_add_main, symarg, !batch, RETURN_MASK_ALL);
c906108c 815 }
c906108c 816
a4d9b460
PA
817 if (corearg && pidarg)
818 error (_("\
819Can't attach to process and specify a core file at the same time."));
820
c906108c 821 if (corearg != NULL)
a4d9b460
PA
822 catch_command_errors (core_file_command, corearg,
823 !batch, RETURN_MASK_ALL);
824 else if (pidarg != NULL)
825 catch_command_errors (attach_command, pidarg,
826 !batch, RETURN_MASK_ALL);
827 else if (pid_or_core_arg)
c906108c 828 {
a4d9b460
PA
829 /* The user specified 'gdb program pid' or gdb program core'.
830 If pid_or_core_arg's first character is a digit, try attach
831 first and then corefile. Otherwise try just corefile. */
00546b04 832
a4d9b460 833 if (isdigit (pid_or_core_arg[0]))
11cf8741 834 {
a4d9b460 835 if (catch_command_errors (attach_command, pid_or_core_arg,
00546b04 836 !batch, RETURN_MASK_ALL) == 0)
a4d9b460 837 catch_command_errors (core_file_command, pid_or_core_arg,
00546b04 838 !batch, RETURN_MASK_ALL);
11cf8741 839 }
a4d9b460
PA
840 else /* Can't be a pid, better be a corefile. */
841 catch_command_errors (core_file_command, pid_or_core_arg,
00546b04 842 !batch, RETURN_MASK_ALL);
c906108c 843 }
c906108c
SS
844
845 if (ttyarg != NULL)
3f81c18a 846 set_inferior_io_terminal (ttyarg);
c906108c 847
c906108c
SS
848 /* Error messages should no longer be distinguished with extra output. */
849 error_pre_print = NULL;
850 quit_pre_print = NULL;
defc6f8c 851 warning_pre_print = _("warning: ");
c906108c
SS
852
853 /* Read the .gdbinit file in the current directory, *if* it isn't
854 the same as the $HOME/.gdbinit file (it should exist, also). */
16e7150e
JG
855 if (local_gdbinit && !inhibit_gdbinit)
856 catch_command_errors (source_script, local_gdbinit, 0, RETURN_MASK_ALL);
c906108c
SS
857
858 for (i = 0; i < ncmd; i++)
859 {
8a5a3c82 860 if (cmdarg[i].type == CMDARG_FILE)
16026cd7 861 catch_command_errors (source_script, cmdarg[i].string,
8a5a3c82
AS
862 !batch, RETURN_MASK_ALL);
863 else /* cmdarg[i].type == CMDARG_COMMAND */
864 catch_command_errors (execute_command, cmdarg[i].string,
865 !batch, RETURN_MASK_ALL);
c906108c 866 }
b8c9b27d 867 xfree (cmdarg);
c906108c
SS
868
869 /* Read in the old history after all the command files have been read. */
c5aa993b 870 init_history ();
c906108c
SS
871
872 if (batch)
873 {
874 /* We have hit the end of the batch file. */
4b0ad762 875 quit_force (NULL, 0);
c906108c
SS
876 }
877
c906108c
SS
878 /* Show time and/or space usage. */
879
880 if (display_time)
881 {
882 long init_time = get_run_time () - time_at_startup;
883
defc6f8c 884 printf_unfiltered (_("Startup time: %ld.%06ld\n"),
c906108c
SS
885 init_time / 1000000, init_time % 1000000);
886 }
887
888 if (display_space)
889 {
890#ifdef HAVE_SBRK
891 extern char **environ;
892 char *lim = (char *) sbrk (0);
893
defc6f8c 894 printf_unfiltered (_("Startup size: data size %ld\n"),
c906108c
SS
895 (long) (lim - (char *) &environ));
896#endif
897 }
898
11cf8741
JM
899 /* NOTE: cagney/1999-11-07: There is probably no reason for not
900 moving this loop and the code found in captured_command_loop()
901 into the command_loop() proper. The main thing holding back that
902 change - SET_TOP_LEVEL() - has been eliminated. */
903 while (1)
904 {
905 catch_errors (captured_command_loop, 0, "", RETURN_MASK_ALL);
906 }
11cf8741
JM
907 /* No exit -- exit is through quit_command. */
908}
c906108c 909
11cf8741 910int
f15ab4a7 911gdb_main (struct captured_main_args *args)
11cf8741 912{
f15ab4a7
AC
913 use_windows = args->use_windows;
914 catch_errors (captured_main, args, "", RETURN_MASK_ALL);
864dbc90
AC
915 /* The only way to end up here is by an error (normal exit is
916 handled by quit_force()), hence always return an error status. */
917 return 1;
c906108c
SS
918}
919
11cf8741 920
c906108c
SS
921/* Don't use *_filtered for printing help. We don't want to prompt
922 for continue no matter how small the screen or how much we're going
923 to print. */
924
925static void
d9fcf2fb 926print_gdb_help (struct ui_file *stream)
c906108c 927{
16e7150e
JG
928 char *system_gdbinit;
929 char *home_gdbinit;
930 char *local_gdbinit;
931
932 get_init_files (&system_gdbinit, &home_gdbinit, &local_gdbinit);
933
defc6f8c 934 fputs_unfiltered (_("\
c906108c 935This is the GNU debugger. Usage:\n\n\
552c04a7
TT
936 gdb [options] [executable-file [core-file or process-id]]\n\
937 gdb [options] --args executable-file [inferior-arguments ...]\n\n\
c906108c 938Options:\n\n\
defc6f8c
TT
939"), stream);
940 fputs_unfiltered (_("\
552c04a7 941 --args Arguments after executable-file are passed to inferior\n\
defc6f8c
TT
942"), stream);
943 fputs_unfiltered (_("\
c906108c
SS
944 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
945 --batch Exit after processing options.\n\
1a088d06 946 --batch-silent As for --batch, but suppress all gdb stdout output.\n\
4b0ad762
AS
947 --return-child-result\n\
948 GDB exit code will be the child's exit code.\n\
c906108c 949 --cd=DIR Change current directory to DIR.\n\
8a5a3c82
AS
950 --command=FILE, -x Execute GDB commands from FILE.\n\
951 --eval-command=COMMAND, -ex\n\
952 Execute a single GDB command.\n\
953 May be used multiple times and in conjunction\n\
954 with --command.\n\
c906108c 955 --core=COREFILE Analyze the core dump COREFILE.\n\
00546b04 956 --pid=PID Attach to running process PID.\n\
defc6f8c
TT
957"), stream);
958 fputs_unfiltered (_("\
c906108c
SS
959 --dbx DBX compatibility mode.\n\
960 --directory=DIR Search for source files in DIR.\n\
961 --epoch Output information used by epoch emacs-GDB interface.\n\
962 --exec=EXECFILE Use EXECFILE as the executable.\n\
963 --fullname Output information used by emacs-GDB interface.\n\
964 --help Print this message.\n\
defc6f8c
TT
965"), stream);
966 fputs_unfiltered (_("\
8b93c638
JM
967 --interpreter=INTERP\n\
968 Select a specific interpreter / user interface\n\
defc6f8c
TT
969"), stream);
970 fputs_unfiltered (_("\
f47b1503 971 -l TIMEOUT Set timeout in seconds for remote debugging.\n\
c906108c 972 --nw Do not use a window interface.\n\
defc6f8c 973 --nx Do not read "), stream);
96baa820 974 fputs_unfiltered (gdbinit, stream);
defc6f8c 975 fputs_unfiltered (_(" file.\n\
c906108c
SS
976 --quiet Do not print version number on startup.\n\
977 --readnow Fully read symbol files on first access.\n\
defc6f8c
TT
978"), stream);
979 fputs_unfiltered (_("\
c906108c
SS
980 --se=FILE Use FILE as symbol file and executable file.\n\
981 --symbols=SYMFILE Read symbols from SYMFILE.\n\
982 --tty=TTY Use TTY for input/output by the program being debugged.\n\
defc6f8c 983"), stream);
c906108c 984#if defined(TUI)
defc6f8c 985 fputs_unfiltered (_("\
c906108c 986 --tui Use a terminal user interface.\n\
defc6f8c 987"), stream);
c906108c 988#endif
defc6f8c 989 fputs_unfiltered (_("\
c906108c
SS
990 --version Print version information and then exit.\n\
991 -w Use a window interface.\n\
992 --write Set writing into executable and core files.\n\
993 --xdb XDB compatibility mode.\n\
defc6f8c 994"), stream);
defc6f8c 995 fputs_unfiltered (_("\n\
16e7150e
JG
996At startup, GDB reads the following init files and executes their commands:\n\
997"), stream);
998 if (system_gdbinit)
999 fprintf_unfiltered (stream, _("\
1000 * system-wide init file: %s\n\
1001"), system_gdbinit);
1002 if (home_gdbinit)
1003 fprintf_unfiltered (stream, _("\
1004 * user-specific init file: %s\n\
1005"), home_gdbinit);
1006 if (local_gdbinit)
1007 fprintf_unfiltered (stream, _("\
1008 * local init file: ./%s\n\
1009"), local_gdbinit);
1010 fputs_unfiltered (_("\n\
c906108c
SS
1011For more information, type \"help\" from within GDB, or consult the\n\
1012GDB manual (available as on-line info or a printed manual).\n\
defc6f8c 1013"), stream);
c16158bc
JM
1014 if (REPORT_BUGS_TO[0] && stream == gdb_stdout)
1015 fprintf_unfiltered (stream, _("\
1016Report bugs to \"%s\".\n\
1017"), REPORT_BUGS_TO);
c906108c 1018}
This page took 0.796614 seconds and 4 git commands to generate.