* am29k-tdep.c (initialize_29k): Fix call_scratch_address doc.
[deliverable/binutils-gdb.git] / gdb / main.c
CommitLineData
7d9884b9 1/* Top level `main' program for GDB, the GNU debugger.
51b57ded
FF
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992
3 Free Software Foundation, Inc.
bd5635a1
RP
4
5This file is part of GDB.
6
e522fb52 7This program is free software; you can redistribute it and/or modify
bd5635a1 8it under the terms of the GNU General Public License as published by
e522fb52
JG
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
bd5635a1 11
e522fb52 12This program is distributed in the hope that it will be useful,
bd5635a1
RP
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
e522fb52
JG
18along with this program; if not, write to the Free Software
19Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
bd5635a1 20
bd5635a1
RP
21#include "defs.h"
22#include "gdbcmd.h"
51b57ded 23#include "call-cmds.h"
bd5635a1
RP
24#include "symtab.h"
25#include "inferior.h"
26#include "signals.h"
27#include "target.h"
28#include "breakpoint.h"
30875e1c
SG
29#include "gdbtypes.h"
30#include "expression.h"
bd099407 31#include "language.h"
bd5635a1 32
e522fb52
JG
33#include "getopt.h"
34
35/* readline include files */
36#include "readline.h"
37#include "history.h"
bd5635a1
RP
38
39/* readline defines this. */
40#undef savestring
41
42#ifdef USG
43#include <sys/types.h>
44#include <unistd.h>
45#endif
46
47#include <string.h>
ee0613d1 48#ifndef NO_SYS_FILE
bd5635a1 49#include <sys/file.h>
ee0613d1 50#endif
bd5635a1
RP
51#include <setjmp.h>
52#include <sys/param.h>
53#include <sys/stat.h>
e522fb52 54#include <ctype.h>
bd5635a1
RP
55
56#ifdef SET_STACK_LIMIT_HUGE
57#include <sys/time.h>
58#include <sys/resource.h>
bd5635a1
RP
59
60int original_stack_limit;
61#endif
62
30875e1c
SG
63/* Prototypes for local functions */
64
65static char *
66symbol_completion_function PARAMS ((char *, int));
67
68static void
69command_loop PARAMS ((void));
70
71static void
72command_loop_marker PARAMS ((int));
73
74static void
fb29d681 75print_gdb_version PARAMS ((FILE *));
30875e1c
SG
76
77static void
78quit_command PARAMS ((char *, int));
79
80static void
81initialize_main PARAMS ((void));
82
83static void
84initialize_history PARAMS ((void));
85
86static void
87initialize_cmd_lists PARAMS ((void));
88
89static void
90float_handler PARAMS ((int));
91
92static void
93source_command PARAMS ((char *, int));
94
95static void
96cd_command PARAMS ((char *, int));
97
98static void
99print_gnu_advertisement PARAMS ((void));
100
101static void
102init_signals PARAMS ((void));
103
104static void
105read_command_file PARAMS ((FILE *));
106
107static void
108set_verbose PARAMS ((char *, int, struct cmd_list_element *));
109
110static void
111show_history PARAMS ((char *, int));
112
113static void
114set_history PARAMS ((char *, int));
115
116static void
117set_history_size_command PARAMS ((char *, int, struct cmd_list_element *));
118
119static void
120show_commands PARAMS ((char *, int));
121
30875e1c
SG
122static void
123echo_command PARAMS ((char *, int));
124
125static void
126pwd_command PARAMS ((char *, int));
127
128static void
129show_version PARAMS ((char *, int));
130
131static void
132document_command PARAMS ((char *, int));
133
134static void
135define_command PARAMS ((char *, int));
136
137static void
138validate_comname PARAMS ((char *));
139
140static void
141help_command PARAMS ((char *, int));
142
143static void
144show_command PARAMS ((char *, int));
145
146static void
147info_command PARAMS ((char *, int));
148
149static void
150do_nothing PARAMS ((int));
151
597dc86b
SG
152static int
153quit_cover PARAMS ((char *));
154
30875e1c
SG
155static void
156disconnect PARAMS ((int));
157
158static void
159source_cleanup PARAMS ((FILE *));
bd5635a1
RP
160
161/* If this definition isn't overridden by the header files, assume
162 that isatty and fileno exist on this system. */
163#ifndef ISATTY
164#define ISATTY(FP) (isatty (fileno (FP)))
165#endif
166
167/* Initialization file name for gdb. This is overridden in some configs. */
168
169#ifndef GDBINIT_FILENAME
170#define GDBINIT_FILENAME ".gdbinit"
171#endif
172char gdbinit[] = GDBINIT_FILENAME;
173
f266e564
JK
174#define ALL_CLEANUPS ((struct cleanup *)0)
175
bd5635a1
RP
176/* Version number of GDB, as a string. */
177
178extern char *version;
179
81066208
JG
180/* Message to be printed before the error message, when an error occurs. */
181
182extern char *error_pre_print;
183
318bf84f
FF
184/* Message to be printed before the warning message, when a warning occurs. */
185
186extern char *warning_pre_print;
187
bd099407
JG
188extern char lang_frame_mismatch_warn[]; /* language.c */
189
ee0613d1
JG
190/* Whether GDB's stdin is on a terminal. */
191
192extern int gdb_has_a_terminal; /* inflow.c */
193
bd5635a1
RP
194/* Flag for whether we want all the "from_tty" gubbish printed. */
195
196int caution = 1; /* Default is yes, sigh. */
197
198/*
199 * Define all cmd_list_element's
200 */
201
202/* Chain containing all defined commands. */
203
204struct cmd_list_element *cmdlist;
205
206/* Chain containing all defined info subcommands. */
207
208struct cmd_list_element *infolist;
209
210/* Chain containing all defined enable subcommands. */
211
212struct cmd_list_element *enablelist;
213
214/* Chain containing all defined disable subcommands. */
215
216struct cmd_list_element *disablelist;
217
218/* Chain containing all defined delete subcommands. */
219
220struct cmd_list_element *deletelist;
221
222/* Chain containing all defined "enable breakpoint" subcommands. */
223
224struct cmd_list_element *enablebreaklist;
225
226/* Chain containing all defined set subcommands */
227
228struct cmd_list_element *setlist;
229
0239d9b3
FF
230/* Chain containing all defined unset subcommands */
231
232struct cmd_list_element *unsetlist;
233
bd5635a1 234/* Chain containing all defined show subcommands. */
0239d9b3 235
bd5635a1
RP
236struct cmd_list_element *showlist;
237
238/* Chain containing all defined \"set history\". */
239
240struct cmd_list_element *sethistlist;
241
242/* Chain containing all defined \"show history\". */
0239d9b3 243
bd5635a1
RP
244struct cmd_list_element *showhistlist;
245
246/* Chain containing all defined \"unset history\". */
247
248struct cmd_list_element *unsethistlist;
249
0239d9b3
FF
250/* Chain containing all defined maintenance subcommands. */
251
252#if MAINTENANCE_CMDS
253struct cmd_list_element *maintenancelist;
254#endif
255
256/* Chain containing all defined "maintenance info" subcommands. */
257
258#if MAINTENANCE_CMDS
259struct cmd_list_element *maintenanceinfolist;
260#endif
261
a8e033f2
SG
262/* Chain containing all defined "maintenance print" subcommands. */
263
264#if MAINTENANCE_CMDS
265struct cmd_list_element *maintenanceprintlist;
266#endif
267
0239d9b3
FF
268struct cmd_list_element *setprintlist;
269
270struct cmd_list_element *showprintlist;
271
272struct cmd_list_element *setchecklist;
273
274struct cmd_list_element *showchecklist;
275
bd5635a1
RP
276/* stdio stream that command input is being read from. */
277
278FILE *instream;
279
280/* Current working directory. */
281
282char *current_directory;
283
284/* The directory name is actually stored here (usually). */
f7402c04 285static char dirbuf[1024];
bd5635a1
RP
286
287/* Function to call before reading a command, if nonzero.
288 The function receives two args: an input stream,
289 and a prompt string. */
bd099407 290
30875e1c 291void (*window_hook) PARAMS ((FILE *, char *));
bd5635a1
RP
292
293extern int frame_file_full_name;
318bf84f
FF
294extern int mapped_symbol_files;
295extern int readnow_symbol_files;
296
bd5635a1
RP
297int epoch_interface;
298int xgdb_verbose;
299
bd5635a1
RP
300/* gdb prints this when reading a command interactively */
301static char *prompt;
302
303/* Buffer used for reading command lines, and the size
304 allocated for it so far. */
305
306char *line;
307int linesize = 100;
308
309/* Baud rate specified for talking to serial target systems. Default
310 is left as a zero pointer, so targets can choose their own defaults. */
311
312char *baud_rate;
313
314/* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
315
316#ifndef STOP_SIGNAL
317#ifdef SIGTSTP
318#define STOP_SIGNAL SIGTSTP
30875e1c 319static void stop_sig PARAMS ((int));
bd5635a1
RP
320#endif
321#endif
d566d62a
JK
322
323/* Some System V have job control but not sigsetmask(). */
324#if !defined (HAVE_SIGSETMASK)
325#define HAVE_SIGSETMASK !defined (USG)
326#endif
327
8b3c897a 328#if 0 == (HAVE_SIGSETMASK)
d566d62a
JK
329#define sigsetmask(n)
330#endif
bd5635a1
RP
331\f
332/* This is how `error' returns to command level. */
333
334jmp_buf to_top_level;
335
30875e1c 336NORETURN void
bd5635a1
RP
337return_to_top_level ()
338{
339 quit_flag = 0;
340 immediate_quit = 0;
341 bpstat_clear_actions(stop_bpstat); /* Clear queued breakpoint commands */
bd5635a1 342 disable_current_display ();
f266e564 343 do_cleanups (ALL_CLEANUPS);
30875e1c 344 (NORETURN void) longjmp (to_top_level, 1);
bd5635a1
RP
345}
346
347/* Call FUNC with arg ARGS, catching any errors.
348 If there is no error, return the value returned by FUNC.
81066208
JG
349 If there is an error, print ERRSTRING, print the specific error message,
350 then return zero. */
bd5635a1
RP
351
352int
353catch_errors (func, args, errstring)
30875e1c 354 int (*func) PARAMS ((char *));
bdbd5f50 355 char *args;
bd5635a1
RP
356 char *errstring;
357{
358 jmp_buf saved;
359 int val;
360 struct cleanup *saved_cleanup_chain;
81066208 361 char *saved_error_pre_print;
bd5635a1
RP
362
363 saved_cleanup_chain = save_cleanups ();
81066208 364 saved_error_pre_print = error_pre_print;
bd5635a1 365
318bf84f 366 memcpy ((char *)saved, (char *)to_top_level, sizeof (jmp_buf));
81066208 367 error_pre_print = errstring;
bd5635a1
RP
368
369 if (setjmp (to_top_level) == 0)
370 val = (*func) (args);
371 else
81066208 372 val = 0;
bd5635a1
RP
373
374 restore_cleanups (saved_cleanup_chain);
375
81066208 376 error_pre_print = saved_error_pre_print;
318bf84f 377 memcpy ((char *)to_top_level, (char *)saved, sizeof (jmp_buf));
bd5635a1
RP
378 return val;
379}
380
381/* Handler for SIGHUP. */
382
383static void
30875e1c
SG
384disconnect (signo)
385int signo;
bd5635a1 386{
597dc86b
SG
387 catch_errors (quit_cover, NULL, "Could not kill inferior process");
388 signal (SIGHUP, SIG_DFL);
bd5635a1
RP
389 kill (getpid (), SIGHUP);
390}
597dc86b
SG
391
392/* Just a little helper function for disconnect(). */
393
394static int
395quit_cover (s)
396char *s;
397{
398 caution = 0; /* Throw caution to the wind -- we're exiting.
399 This prevents asking the user dumb questions. */
400 quit_command((char *)0, 0);
401 return 0;
402}
bd5635a1
RP
403\f
404/* Clean up on error during a "source" command (or execution of a
405 user-defined command). */
406
407static void
408source_cleanup (stream)
409 FILE *stream;
410{
411 /* Restore the previous input stream. */
412 instream = stream;
413}
414
415/* Read commands from STREAM. */
416static void
417read_command_file (stream)
418 FILE *stream;
419{
420 struct cleanup *cleanups;
421
422 cleanups = make_cleanup (source_cleanup, instream);
423 instream = stream;
424 command_loop ();
425 do_cleanups (cleanups);
426}
427\f
428int
429main (argc, argv)
430 int argc;
431 char **argv;
432{
433 int count;
434 static int inhibit_gdbinit = 0;
435 static int quiet = 0;
436 static int batch = 0;
437
438 /* Pointers to various arguments from command line. */
439 char *symarg = NULL;
440 char *execarg = NULL;
441 char *corearg = NULL;
442 char *cdarg = NULL;
443 char *ttyarg = NULL;
444
445 /* Pointers to all arguments of +command option. */
446 char **cmdarg;
447 /* Allocated size of cmdarg. */
448 int cmdsize;
449 /* Number of elements of cmdarg used. */
450 int ncmd;
451
452 /* Indices of all arguments of +directory option. */
453 char **dirarg;
454 /* Allocated size. */
455 int dirsize;
456 /* Number of elements used. */
457 int ndir;
458
3a16d640
JG
459 struct stat homebuf, cwdbuf;
460 char *homedir, *homeinit;
461
bd5635a1
RP
462 register int i;
463
464 /* This needs to happen before the first use of malloc. */
318bf84f 465 init_malloc ((PTR) NULL);
bd5635a1
RP
466
467#if defined (ALIGN_STACK_ON_STARTUP)
468 i = (int) &count & 0x3;
469 if (i != 0)
470 alloca (4 - i);
471#endif
472
bd099407
JG
473 /* If error() is called from initialization code, just exit */
474 if (setjmp (to_top_level)) {
475 exit(1);
476 }
477
bd5635a1
RP
478 cmdsize = 1;
479 cmdarg = (char **) xmalloc (cmdsize * sizeof (*cmdarg));
480 ncmd = 0;
481 dirsize = 1;
482 dirarg = (char **) xmalloc (dirsize * sizeof (*dirarg));
483 ndir = 0;
484
485 quit_flag = 0;
486 line = (char *) xmalloc (linesize);
487 line[0] = '\0'; /* Terminate saved (now empty) cmd line */
488 instream = stdin;
489
f7402c04 490 getcwd (dirbuf, sizeof (dirbuf));
bd5635a1
RP
491 current_directory = dirbuf;
492
493#ifdef SET_STACK_LIMIT_HUGE
494 {
495 struct rlimit rlim;
496
497 /* Set the stack limit huge so that alloca (particularly stringtab
498 * in dbxread.c) does not fail. */
499 getrlimit (RLIMIT_STACK, &rlim);
500 original_stack_limit = rlim.rlim_cur;
501 rlim.rlim_cur = rlim.rlim_max;
502 setrlimit (RLIMIT_STACK, &rlim);
503 }
504#endif /* SET_STACK_LIMIT_HUGE */
505
506 /* Parse arguments and options. */
507 {
508 int c;
509 static int print_help;
510 /* When var field is 0, use flag field to record the equivalent
511 short option (or arbitrary numbers starting at 10 for those
512 with no equivalent). */
513 static struct option long_options[] =
514 {
318bf84f
FF
515 {"readnow", no_argument, &readnow_symbol_files, 1},
516 {"r", no_argument, &readnow_symbol_files, 1},
517 {"mapped", no_argument, &mapped_symbol_files, 1},
518 {"m", no_argument, &mapped_symbol_files, 1},
ee0613d1
JG
519 {"quiet", no_argument, &quiet, 1},
520 {"q", no_argument, &quiet, 1},
fb29d681 521 {"silent", no_argument, &quiet, 1},
ee0613d1
JG
522 {"nx", no_argument, &inhibit_gdbinit, 1},
523 {"n", no_argument, &inhibit_gdbinit, 1},
524 {"batch", no_argument, &batch, 1},
525 {"epoch", no_argument, &epoch_interface, 1},
526 {"fullname", no_argument, &frame_file_full_name, 1},
527 {"f", no_argument, &frame_file_full_name, 1},
528 {"help", no_argument, &print_help, 1},
529 {"se", required_argument, 0, 10},
530 {"symbols", required_argument, 0, 's'},
531 {"s", required_argument, 0, 's'},
532 {"exec", required_argument, 0, 'e'},
533 {"e", required_argument, 0, 'e'},
534 {"core", required_argument, 0, 'c'},
535 {"c", required_argument, 0, 'c'},
536 {"command", required_argument, 0, 'x'},
537 {"x", required_argument, 0, 'x'},
538 {"directory", required_argument, 0, 'd'},
539 {"cd", required_argument, 0, 11},
540 {"tty", required_argument, 0, 't'},
541 {"baud", required_argument, 0, 'b'},
542 {"b", required_argument, 0, 'b'},
bd5635a1
RP
543/* Allow machine descriptions to add more options... */
544#ifdef ADDITIONAL_OPTIONS
545 ADDITIONAL_OPTIONS
546#endif
ee0613d1 547 {0, no_argument, 0, 0},
bd5635a1
RP
548 };
549
550 while (1)
551 {
ee0613d1
JG
552 int option_index;
553
bd5635a1
RP
554 c = getopt_long_only (argc, argv, "",
555 long_options, &option_index);
556 if (c == EOF)
557 break;
558
559 /* Long option that takes an argument. */
560 if (c == 0 && long_options[option_index].flag == 0)
561 c = long_options[option_index].val;
562
563 switch (c)
564 {
565 case 0:
566 /* Long option that just sets a flag. */
567 break;
568 case 10:
569 symarg = optarg;
570 execarg = optarg;
571 break;
572 case 11:
573 cdarg = optarg;
574 break;
575 case 's':
576 symarg = optarg;
577 break;
578 case 'e':
579 execarg = optarg;
580 break;
581 case 'c':
582 corearg = optarg;
583 break;
584 case 'x':
585 cmdarg[ncmd++] = optarg;
586 if (ncmd >= cmdsize)
587 {
588 cmdsize *= 2;
589 cmdarg = (char **) xrealloc ((char *)cmdarg,
590 cmdsize * sizeof (*cmdarg));
591 }
592 break;
593 case 'd':
594 dirarg[ndir++] = optarg;
595 if (ndir >= dirsize)
596 {
597 dirsize *= 2;
598 dirarg = (char **) xrealloc ((char *)dirarg,
599 dirsize * sizeof (*dirarg));
600 }
601 break;
602 case 't':
603 ttyarg = optarg;
604 break;
605 case 'q':
606 quiet = 1;
607 break;
608 case 'b':
609 baud_rate = optarg;
610 break;
611#ifdef ADDITIONAL_OPTION_CASES
612 ADDITIONAL_OPTION_CASES
613#endif
614 case '?':
597dc86b 615 fprintf (stderr,
fb29d681 616 "Use `%s --help' for a complete list of options.\n",
bd5635a1
RP
617 argv[0]);
618 exit (1);
619 }
bd5635a1 620 }
fb29d681 621
bd5635a1
RP
622 if (print_help)
623 {
fb29d681
JG
624 print_gdb_version(stderr);
625 fputs ("\n\
626This is the GNU debugger. Usage:\n\
627 gdb [options] [executable-file [core-file or process-id]]\n\
628Options:\n\
bd5635a1
RP
629 -help Print this message.\n\
630 -quiet Do not print version number on startup.\n\
631 -fullname Output information used by emacs-GDB interface.\n\
632 -epoch Output information used by epoch emacs-GDB interface.\n\
633 -batch Exit after processing options.\n\
634 -nx Do not read .gdbinit file.\n\
635 -tty=TTY Use TTY for input/output by the program being debugged.\n\
636 -cd=DIR Change current directory to DIR.\n\
637 -directory=DIR Search for source files in DIR.\n\
638 -command=FILE Execute GDB commands from FILE.\n\
639 -symbols=SYMFILE Read symbols from SYMFILE.\n\
640 -exec=EXECFILE Use EXECFILE as the executable.\n\
641 -se=FILE Use FILE as symbol file and executable file.\n\
642 -core=COREFILE Analyze the core dump COREFILE.\n\
b0246b3b
FF
643 -b BAUDRATE Set serial port baud rate used for remote debugging.\n\
644 -mapped Use mapped symbol files if supported on this system.\n\
645 -readnow Fully read symbol files on first access.\n\
bd5635a1
RP
646", stderr);
647#ifdef ADDITIONAL_OPTION_HELP
648 fputs (ADDITIONAL_OPTION_HELP, stderr);
649#endif
650 fputs ("\n\
651For more information, type \"help\" from within GDB, or consult the\n\
652GDB manual (available as on-line info or a printed manual).\n", stderr);
653 /* Exiting after printing this message seems like
654 the most useful thing to do. */
655 exit (0);
656 }
657
658 /* OK, that's all the options. The other arguments are filenames. */
659 count = 0;
660 for (; optind < argc; optind++)
661 switch (++count)
662 {
663 case 1:
664 symarg = argv[optind];
665 execarg = argv[optind];
666 break;
667 case 2:
668 corearg = argv[optind];
669 break;
670 case 3:
597dc86b 671 fprintf (stderr,
bd5635a1
RP
672 "Excess command line arguments ignored. (%s%s)\n",
673 argv[optind], (optind == argc - 1) ? "" : " ...");
674 break;
675 }
676 if (batch)
677 quiet = 1;
678 }
679
680 /* Run the init function of each source file */
681
682 initialize_cmd_lists (); /* This needs to be done first */
683 initialize_all_files ();
684 initialize_main (); /* But that omits this file! Do it now */
685 init_signals ();
686
687 if (!quiet)
688 {
81066208
JG
689 /* Print all the junk at the top, with trailing "..." if we are about
690 to read a symbol file (possibly slowly). */
691 print_gnu_advertisement ();
fb29d681 692 print_gdb_version (stdout);
81066208
JG
693 if (symarg)
694 printf_filtered ("..");
bd099407 695 wrap_here("");
81066208 696 fflush (stdout); /* Force to screen during slow operations */
bd5635a1
RP
697 }
698
81066208 699 error_pre_print = "\n\n";
51b57ded
FF
700 /* We may get more than one warning, don't double space all of them... */
701 warning_pre_print = "\nwarning: ";
81066208 702
538280d8
FF
703 /* We need a default language for parsing expressions, so simple things like
704 "set width 0" won't fail if no language is explicitly set in a config file
705 or implicitly set by reading an executable during startup. */
706 set_language (language_c);
b5af69c3 707 expected_language = current_language; /* don't warn about the change. */
538280d8 708
3a16d640
JG
709 /* Read and execute $HOME/.gdbinit file, if it exists. This is done
710 *before* all the command line arguments are processed; it sets
711 global parameters, which are independent of what file you are
712 debugging or what directory you are in. */
713 homedir = getenv ("HOME");
714 if (homedir)
715 {
716 homeinit = (char *) alloca (strlen (getenv ("HOME")) +
717 strlen (gdbinit) + 10);
718 strcpy (homeinit, getenv ("HOME"));
719 strcat (homeinit, "/");
720 strcat (homeinit, gdbinit);
721 if (!inhibit_gdbinit && access (homeinit, R_OK) == 0)
722 {
3a16d640
JG
723 if (!setjmp (to_top_level))
724 source_command (homeinit, 0);
725 }
726 do_cleanups (ALL_CLEANUPS);
727
728 /* Do stats; no need to do them elsewhere since we'll only
729 need them if homedir is set. Make sure that they are
730 zero in case one of them fails (this guarantees that they
731 won't match if either exists). */
732
733 memset (&homebuf, 0, sizeof (struct stat));
734 memset (&cwdbuf, 0, sizeof (struct stat));
735
736 stat (homeinit, &homebuf);
737 stat (gdbinit, &cwdbuf); /* We'll only need this if
738 homedir was set. */
739 }
740
bd5635a1
RP
741 /* Now perform all the actions indicated by the arguments. */
742 if (cdarg != NULL)
743 {
744 if (!setjmp (to_top_level))
745 {
746 cd_command (cdarg, 0);
747 init_source_path ();
748 }
749 }
f266e564
JK
750 do_cleanups (ALL_CLEANUPS);
751
bd5635a1
RP
752 for (i = 0; i < ndir; i++)
753 if (!setjmp (to_top_level))
754 directory_command (dirarg[i], 0);
51b57ded 755 free ((PTR)dirarg);
f266e564
JK
756 do_cleanups (ALL_CLEANUPS);
757
bd5635a1
RP
758 if (execarg != NULL
759 && symarg != NULL
2e4964ad 760 && STREQ (execarg, symarg))
bd5635a1
RP
761 {
762 /* The exec file and the symbol-file are the same. If we can't open
763 it, better only print one error message. */
764 if (!setjmp (to_top_level))
765 {
766 exec_file_command (execarg, !batch);
81066208 767 symbol_file_command (symarg, 0);
bd5635a1
RP
768 }
769 }
770 else
771 {
772 if (execarg != NULL)
773 if (!setjmp (to_top_level))
774 exec_file_command (execarg, !batch);
775 if (symarg != NULL)
776 if (!setjmp (to_top_level))
81066208 777 symbol_file_command (symarg, 0);
bd5635a1 778 }
f266e564
JK
779 do_cleanups (ALL_CLEANUPS);
780
81066208
JG
781 /* After the symbol file has been read, print a newline to get us
782 beyond the copyright line... But errors should still set off
783 the error message with a (single) blank line. */
afe4ca15
JG
784 if (!quiet)
785 printf_filtered ("\n");
81066208 786 error_pre_print = "\n";
318bf84f 787 warning_pre_print = "\nwarning: ";
81066208 788
bd5635a1
RP
789 if (corearg != NULL)
790 if (!setjmp (to_top_level))
791 core_file_command (corearg, !batch);
e522fb52 792 else if (isdigit (corearg[0]) && !setjmp (to_top_level))
bd5635a1 793 attach_command (corearg, !batch);
f266e564 794 do_cleanups (ALL_CLEANUPS);
bd5635a1
RP
795
796 if (ttyarg != NULL)
797 if (!setjmp (to_top_level))
798 tty_command (ttyarg, !batch);
f266e564 799 do_cleanups (ALL_CLEANUPS);
bd5635a1
RP
800
801#ifdef ADDITIONAL_OPTION_HANDLER
802 ADDITIONAL_OPTION_HANDLER;
803#endif
804
81066208
JG
805 /* Error messages should no longer be distinguished with extra output. */
806 error_pre_print = 0;
318bf84f 807 warning_pre_print = "warning: ";
81066208 808
3a16d640
JG
809 /* Read the .gdbinit file in the current directory, *if* it isn't
810 the same as the $HOME/.gdbinit file (it should exist, also). */
811
812 if (!homedir
813 || memcmp ((char *) &homebuf, (char *) &cwdbuf, sizeof (struct stat)))
814 if (!inhibit_gdbinit && access (gdbinit, R_OK) == 0)
bd5635a1 815 {
d75710b0
FF
816 if (!setjmp (to_top_level))
817 source_command (gdbinit, 0);
bd5635a1 818 }
d75710b0
FF
819 do_cleanups (ALL_CLEANUPS);
820
821 for (i = 0; i < ncmd; i++)
822 {
d75710b0
FF
823 if (!setjmp (to_top_level))
824 {
825 if (cmdarg[i][0] == '-' && cmdarg[i][1] == '\0')
826 read_command_file (stdin);
827 else
828 source_command (cmdarg[i], !batch);
829 do_cleanups (ALL_CLEANUPS);
830 }
831 }
51b57ded 832 free ((PTR)cmdarg);
bd5635a1 833
8b3c897a
SG
834 /* Read in the old history after all the command files have been read. */
835 initialize_history();
836
bd5635a1
RP
837 if (batch)
838 {
839 /* We have hit the end of the batch file. */
840 exit (0);
841 }
842
843 /* Do any host- or target-specific hacks. This is used for i960 targets
844 to force the user to set a nindy target and spec its parameters. */
845
846#ifdef BEFORE_MAIN_LOOP_HOOK
847 BEFORE_MAIN_LOOP_HOOK;
848#endif
849
850 /* The command loop. */
851
852 while (1)
853 {
854 if (!setjmp (to_top_level))
855 {
f266e564 856 do_cleanups (ALL_CLEANUPS); /* Do complete cleanup */
bd5635a1
RP
857 command_loop ();
858 quit_command ((char *)0, instream == stdin);
859 }
860 }
861 /* No exit -- exit is through quit_command. */
862}
863
b5af69c3
JG
864void
865execute_user_command (c, args)
866 struct cmd_list_element *c;
867 char *args;
868{
869 register struct command_line *cmdlines;
870 struct cleanup *old_chain;
871
872 if (args)
873 error ("User-defined commands cannot take arguments.");
874
875 cmdlines = c->user_commands;
876 if (cmdlines == 0)
877 /* Null command */
878 return;
879
880 /* Set the instream to 0, indicating execution of a
881 user-defined function. */
882 old_chain = make_cleanup (source_cleanup, instream);
883 instream = (FILE *) 0;
884 while (cmdlines)
885 {
886 execute_command (cmdlines->line, 0);
887 cmdlines = cmdlines->next;
888 }
889 do_cleanups (old_chain);
890}
891
bd5635a1
RP
892/* Execute the line P as a command.
893 Pass FROM_TTY as second argument to the defining function. */
894
895void
896execute_command (p, from_tty)
897 char *p;
898 int from_tty;
899{
900 register struct cmd_list_element *c;
bd099407 901 register enum language flang;
bd099407 902 static int warned = 0;
bd5635a1
RP
903
904 free_all_values ();
905
906 /* This can happen when command_line_input hits end of file. */
907 if (p == NULL)
908 return;
909
910 while (*p == ' ' || *p == '\t') p++;
911 if (*p)
912 {
913 char *arg;
914
915 c = lookup_cmd (&p, cmdlist, "", 0, 1);
916 /* Pass null arg rather than an empty one. */
917 arg = *p ? p : 0;
b5af69c3
JG
918
919 /* If this command has been hooked, run the hook first. */
920 if (c->hook)
921 execute_user_command (c->hook, (char *)0);
922
bd5635a1 923 if (c->class == class_user)
b5af69c3 924 execute_user_command (c, arg);
bd5635a1
RP
925 else if (c->type == set_cmd || c->type == show_cmd)
926 do_setshow_command (arg, from_tty & caution, c);
30875e1c 927 else if (c->function.cfunc == NO_FUNCTION)
bd5635a1
RP
928 error ("That is not a command, just a help topic.");
929 else
30875e1c 930 (*c->function.cfunc) (arg, from_tty & caution);
bd099407
JG
931 }
932
afe4ca15 933 /* Tell the user if the language has changed (except first time). */
b5af69c3 934 if (current_language != expected_language)
bd099407
JG
935 {
936 if (language_mode == language_mode_auto) {
b5af69c3 937 language_info (1); /* Print what changed. */
bd5635a1 938 }
bd099407
JG
939 warned = 0;
940 }
941
942 /* Warn the user if the working language does not match the
943 language of the current frame. Only warn the user if we are
944 actually running the program, i.e. there is a stack. */
afe4ca15
JG
945 /* FIXME: This should be cacheing the frame and only running when
946 the frame changes. */
bd099407
JG
947 if (target_has_stack)
948 {
afe4ca15
JG
949 flang = get_frame_language ();
950 if (!warned
951 && flang != language_unknown
952 && flang != current_language->la_language)
bd099407
JG
953 {
954 printf_filtered ("%s\n", lang_frame_mismatch_warn);
955 warned = 1;
956 }
957 }
bd5635a1
RP
958}
959
960/* ARGSUSED */
30875e1c 961static void
f266e564 962command_loop_marker (foo)
bd5635a1
RP
963 int foo;
964{
965}
966
967/* Read commands from `instream' and execute them
968 until end of file or error reading instream. */
30875e1c 969static void
bd5635a1
RP
970command_loop ()
971{
972 struct cleanup *old_chain;
973 char *command;
974 int stdin_is_tty = ISATTY (stdin);
975
976 while (!feof (instream))
977 {
978 if (window_hook && instream == stdin)
979 (*window_hook) (instream, prompt);
980
981 quit_flag = 0;
982 if (instream == stdin && stdin_is_tty)
983 reinitialize_more_filter ();
f266e564 984 old_chain = make_cleanup (command_loop_marker, 0);
30875e1c 985 command = command_line_input (instream == stdin ? prompt : (char *) NULL,
bd5635a1
RP
986 instream == stdin);
987 if (command == 0)
988 return;
989 execute_command (command, instream == stdin);
990 /* Do any commands attached to breakpoint we stopped at. */
991 bpstat_do_actions (&stop_bpstat);
992 do_cleanups (old_chain);
993 }
994}
995\f
996/* Commands call this if they do not want to be repeated by null lines. */
997
998void
999dont_repeat ()
1000{
1001 /* If we aren't reading from standard input, we are saving the last
1002 thing read from stdin in line and don't want to delete it. Null lines
1003 won't repeat here in any case. */
1004 if (instream == stdin)
1005 *line = 0;
1006}
1007\f
1008/* Read a line from the stream "instream" without command line editing.
1009
1010 It prints PRROMPT once at the start.
bdbd5f50
JG
1011 Action is compatible with "readline", e.g. space for the result is
1012 malloc'd and should be freed by the caller.
bd5635a1 1013
bdbd5f50 1014 A NULL return means end of file. */
bd5635a1 1015char *
bdbd5f50 1016gdb_readline (prrompt)
bd5635a1 1017 char *prrompt;
bd5635a1
RP
1018{
1019 int c;
1020 char *result;
1021 int input_index = 0;
1022 int result_size = 80;
1023
1024 if (prrompt)
1025 {
c35475f9
JG
1026 /* Don't use a _filtered function here. It causes the assumed
1027 character position to be off, since the newline we read from
1028 the user is not accounted for. */
1029 fputs (prrompt, stdout);
bd5635a1
RP
1030 fflush (stdout);
1031 }
1032
bdbd5f50 1033 result = (char *) xmalloc (result_size);
bd5635a1
RP
1034
1035 while (1)
1036 {
1037 /* Read from stdin if we are executing a user defined command.
1038 This is the right thing for prompt_for_continue, at least. */
1039 c = fgetc (instream ? instream : stdin);
bdbd5f50
JG
1040
1041 if (c == EOF)
bd5635a1 1042 {
bdbd5f50
JG
1043 free (result);
1044 return NULL;
bd5635a1 1045 }
bd5635a1 1046
bdbd5f50
JG
1047 if (c == '\n')
1048 break;
bd5635a1 1049
bdbd5f50
JG
1050 result[input_index++] = c;
1051 while (input_index >= result_size)
1052 {
1053 result_size *= 2;
1054 result = (char *) xrealloc (result, result_size);
1055 }
bd5635a1 1056 }
bdbd5f50
JG
1057
1058 result[input_index++] = '\0';
1059 return result;
bd5635a1
RP
1060}
1061
bd5635a1
RP
1062/* Variables which control command line editing and history
1063 substitution. These variables are given default values at the end
1064 of this file. */
1065static int command_editing_p;
1066static int history_expansion_p;
1067static int write_history_p;
1068static int history_size;
1069static char *history_filename;
1070
1071/* Variables which are necessary for fancy command line editing. */
1072char *gdb_completer_word_break_characters =
a8e033f2
SG
1073 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
1074
1075/* When completing on command names, we remove '-' from the list of
1076 word break characters, since we use it in command names. If the
1077 readline library sees one in any of the current completion strings,
1078 it thinks that the string needs to be quoted and automatically supplies
1079 a leading quote. */
1080char *gdb_completer_command_word_break_characters =
1081 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,";
1082
51b57ded
FF
1083/* Characters that can be used to quote completion strings. Note that we
1084 can't include '"' because the gdb C parser treats such quoted sequences
1085 as strings. */
1086char *gdb_completer_quote_characters =
1087 "'";
bd5635a1
RP
1088
1089/* Functions that are used as part of the fancy command line editing. */
1090
1091/* This can be used for functions which don't want to complete on symbols
1092 but don't want to complete on anything else either. */
1093/* ARGSUSED */
1094char **
1095noop_completer (text)
1096 char *text;
1097{
1098 return NULL;
1099}
1100
51b57ded
FF
1101/* Generate symbol names one by one for the completer. Each time we are
1102 called return another potential completion to the caller.
1103
1104 TEXT is what we expect the symbol to start with.
1105
1106 MATCHES is the number of matches that have currently been collected from
1107 calling this completion function. When zero, then we need to initialize,
1108 otherwise the initialization has already taken place and we can just
1109 return the next potential completion string.
30875e1c 1110
51b57ded
FF
1111 Returns NULL if there are no more completions, else a pointer to a string
1112 which is a possible completion.
1113
1114 RL_LINE_BUFFER is available to be looked at; it contains the entire text
1115 of the line. RL_POINT is the offset in that line of the cursor. You
1116 should pretend that the line ends at RL_POINT. */
1117
30875e1c 1118static char *
51b57ded 1119symbol_completion_function (text, matches)
bd5635a1 1120 char *text;
51b57ded 1121 int matches;
bd5635a1 1122{
51b57ded
FF
1123 static char **list = (char **)NULL; /* Cache of completions */
1124 static int index; /* Next cached completion */
1125 char *output = NULL;
bd5635a1
RP
1126 char *tmp_command, *p;
1127 struct cmd_list_element *c, *result_list;
51b57ded
FF
1128 extern char *rl_line_buffer;
1129 extern int rl_point;
bd5635a1 1130
51b57ded 1131 if (matches == 0)
bd5635a1 1132 {
51b57ded
FF
1133 /* The caller is beginning to accumulate a new set of completions, so
1134 we need to find all of them now, and cache them for returning one at
1135 a time on future calls. */
1136
bd5635a1 1137 if (list)
51b57ded
FF
1138 {
1139 /* Free the storage used by LIST, but not by the strings inside.
1140 This is because rl_complete_internal () frees the strings. */
1141 free ((PTR)list);
1142 }
bd5635a1
RP
1143 list = 0;
1144 index = 0;
1145
a8e033f2
SG
1146 /* Choose the default set of word break characters to break completions.
1147 If we later find out that we are doing completions on command strings
1148 (as opposed to strings supplied by the individual command completer
1149 functions, which can be any string) then we will switch to the
1150 special word break set for command strings, which leaves out the
1151 '-' character used in some commands. */
1152
1153 rl_completer_word_break_characters =
1154 gdb_completer_word_break_characters;
1155
51b57ded 1156 /* Decide whether to complete on a list of gdb commands or on symbols. */
bd5635a1
RP
1157 tmp_command = (char *) alloca (rl_point + 1);
1158 p = tmp_command;
1159
1160 strncpy (tmp_command, rl_line_buffer, rl_point);
1161 tmp_command[rl_point] = '\0';
1162
1163 if (rl_point == 0)
1164 {
51b57ded
FF
1165 /* An empty line we want to consider ambiguous; that is, it
1166 could be any command. */
bd5635a1
RP
1167 c = (struct cmd_list_element *) -1;
1168 result_list = 0;
1169 }
1170 else
51b57ded
FF
1171 {
1172 c = lookup_cmd_1 (&p, cmdlist, &result_list, 1);
1173 }
bd5635a1
RP
1174
1175 /* Move p up to the next interesting thing. */
1176 while (*p == ' ' || *p == '\t')
51b57ded
FF
1177 {
1178 p++;
1179 }
bd5635a1
RP
1180
1181 if (!c)
51b57ded
FF
1182 {
1183 /* He's typed something unrecognizable. Sigh. */
1184 list = NULL;
1185 }
bd5635a1
RP
1186 else if (c == (struct cmd_list_element *) -1)
1187 {
1188 /* If we didn't recognize everything up to the thing that
1189 needs completing, and we don't know what command it is
a8e033f2 1190 yet, we are in trouble. */
51b57ded
FF
1191
1192 if (p + strlen(text) != tmp_command + rl_point)
1193 {
a8e033f2
SG
1194 /* This really should not produce an error. Better would
1195 be to pretend to hit RETURN here; this would produce a
1196 response like "Ambiguous command: foo, foobar, etc",
1197 and leave the line available for re-entry with ^P.
1198 Instead, this error blows away the user's typed input
1199 without any way to get it back. */
1200 error (" Unrecognized command.");
bd5635a1 1201 }
bd5635a1
RP
1202
1203 /* He's typed something ambiguous. This is easier. */
1204 if (result_list)
51b57ded
FF
1205 {
1206 list = complete_on_cmdlist (*result_list->prefixlist, text);
1207 }
bd5635a1 1208 else
51b57ded
FF
1209 {
1210 list = complete_on_cmdlist (cmdlist, text);
1211 }
a8e033f2
SG
1212 rl_completer_word_break_characters =
1213 gdb_completer_command_word_break_characters;
bd5635a1
RP
1214 }
1215 else
1216 {
1217 /* If we've gotten this far, gdb has recognized a full
1218 command. There are several possibilities:
1219
1220 1) We need to complete on the command.
1221 2) We need to complete on the possibilities coming after
1222 the command.
1223 2) We need to complete the text of what comes after the
1224 command. */
1225
1226 if (!*p && *text)
51b57ded
FF
1227 {
1228 /* Always (might be longer versions of thie command). */
1229 list = complete_on_cmdlist (result_list, text);
a8e033f2
SG
1230 rl_completer_word_break_characters =
1231 gdb_completer_command_word_break_characters;
51b57ded 1232 }
bd5635a1
RP
1233 else if (!*p && !*text)
1234 {
1235 if (c->prefixlist)
51b57ded
FF
1236 {
1237 list = complete_on_cmdlist (*c->prefixlist, "");
a8e033f2
SG
1238 rl_completer_word_break_characters =
1239 gdb_completer_command_word_break_characters;
51b57ded 1240 }
bd5635a1 1241 else
51b57ded
FF
1242 {
1243 list = (*c->completer) ("");
1244 }
bd5635a1
RP
1245 }
1246 else
1247 {
1248 if (c->prefixlist && !c->allow_unknown)
1249 {
51b57ded
FF
1250 /* Something like "info adsfkdj". But error() is not the
1251 proper response; just return no completions instead. */
bd5635a1 1252 list = NULL;
bd5635a1
RP
1253 }
1254 else
51b57ded
FF
1255 {
1256 list = (*c->completer) (text);
1257 }
bd5635a1
RP
1258 }
1259 }
1260 }
1261
51b57ded
FF
1262 /* If we found a list of potential completions during initialization then
1263 dole them out one at a time. The vector of completions is NULL
1264 terminated, so after returning the last one, return NULL (and continue
1265 to do so) each time we are called after that, until a new list is
1266 available. */
bd5635a1 1267
51b57ded
FF
1268 if (list)
1269 {
1270 output = list[index];
1271 if (output)
1272 {
1273 index++;
1274 }
1275 }
bd5635a1
RP
1276
1277 return (output);
1278}
51b57ded
FF
1279
1280/* Skip over a possibly quoted word (as defined by the quote characters
1281 and word break characters the completer uses). Returns pointer to the
1282 location after the "word". */
1283
1284char *
1285skip_quoted (str)
1286 char *str;
1287{
1288 char quote_char = '\0';
1289 char *scan;
1290
1291 for (scan = str; *scan != '\0'; scan++)
1292 {
1293 if (quote_char != '\0')
1294 {
1295 /* Ignore everything until the matching close quote char */
1296 if (*scan == quote_char)
1297 {
1298 /* Found matching close quote. */
1299 scan++;
1300 break;
1301 }
1302 }
1303 else if (strchr (gdb_completer_quote_characters, *scan))
1304 {
1305 /* Found start of a quoted string. */
1306 quote_char = *scan;
1307 }
1308 else if (strchr (gdb_completer_word_break_characters, *scan))
1309 {
1310 break;
1311 }
1312 }
1313 return (scan);
1314}
1315
bd5635a1
RP
1316\f
1317#ifdef STOP_SIGNAL
1318static void
30875e1c
SG
1319stop_sig (signo)
1320int signo;
bd5635a1
RP
1321{
1322#if STOP_SIGNAL == SIGTSTP
1323 signal (SIGTSTP, SIG_DFL);
1324 sigsetmask (0);
1325 kill (getpid (), SIGTSTP);
1326 signal (SIGTSTP, stop_sig);
1327#else
1328 signal (STOP_SIGNAL, stop_sig);
1329#endif
597dc86b 1330 printf ("%s", prompt);
bd5635a1
RP
1331 fflush (stdout);
1332
1333 /* Forget about any previous command -- null line now will do nothing. */
1334 dont_repeat ();
1335}
1336#endif /* STOP_SIGNAL */
1337
bd5635a1 1338/* Initialize signal handlers. */
f266e564 1339static void
30875e1c
SG
1340do_nothing (signo)
1341int signo;
f266e564
JK
1342{
1343}
1344
bd5635a1
RP
1345static void
1346init_signals ()
1347{
bd5635a1
RP
1348 signal (SIGINT, request_quit);
1349
1350 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
1351 passed to the inferior, which we don't want. It would be
1352 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
bdbd5f50 1353 on BSD4.3 systems using vfork, that can affect the
bd5635a1 1354 GDB process as well as the inferior (the signal handling tables
bdbd5f50 1355 might be in memory, shared between the two). Since we establish
bd5635a1
RP
1356 a handler for SIGQUIT, when we call exec it will set the signal
1357 to SIG_DFL for us. */
1358 signal (SIGQUIT, do_nothing);
1359 if (signal (SIGHUP, do_nothing) != SIG_IGN)
1360 signal (SIGHUP, disconnect);
1361 signal (SIGFPE, float_handler);
1eeba686
PB
1362
1363#if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1364 signal (SIGWINCH, SIGWINCH_HANDLER);
1365#endif
bd5635a1
RP
1366}
1367\f
1368/* Read one line from the command input stream `instream'
1369 into the local static buffer `linebuffer' (whose current length
1370 is `linelength').
1371 The buffer is made bigger as necessary.
1372 Returns the address of the start of the line.
1373
1374 NULL is returned for end of file.
1375
1376 *If* the instream == stdin & stdin is a terminal, the line read
1377 is copied into the file line saver (global var char *line,
1378 length linesize) so that it can be duplicated.
1379
1380 This routine either uses fancy command line editing or
1381 simple input as the user has requested. */
1382
1383char *
1384command_line_input (prrompt, repeat)
1385 char *prrompt;
1386 int repeat;
1387{
1388 static char *linebuffer = 0;
30875e1c 1389 static unsigned linelength = 0;
bd5635a1
RP
1390 register char *p;
1391 char *p1;
1392 char *rl;
1393 char *local_prompt = prrompt;
1394 register int c;
1395 char *nline;
1396 char got_eof = 0;
1397
1398 if (linebuffer == 0)
1399 {
1400 linelength = 80;
1401 linebuffer = (char *) xmalloc (linelength);
1402 }
1403
1404 p = linebuffer;
1405
1406 /* Control-C quits instantly if typed while in this loop
1407 since it should not wait until the user types a newline. */
1408 immediate_quit++;
1409#ifdef STOP_SIGNAL
1410 signal (STOP_SIGNAL, stop_sig);
1411#endif
1412
1413 while (1)
1414 {
e522fb52
JG
1415 /* Reports are that some Sys V's don't flush stdout/err on reads
1416 from stdin, when stdin/out are sockets rather than ttys. So we
1417 have to do it ourselves, to make emacs-gdb and xxgdb work.
1418 On other machines, doing this once per input should be a cheap nop. */
1419 fflush (stdout);
1420 fflush (stderr);
1421
bd5635a1
RP
1422 /* Don't use fancy stuff if not talking to stdin. */
1423 if (command_editing_p && instream == stdin
1424 && ISATTY (instream))
1425 rl = readline (local_prompt);
1426 else
bdbd5f50 1427 rl = gdb_readline (local_prompt);
bd5635a1
RP
1428
1429 if (!rl || rl == (char *) EOF)
1430 {
1431 got_eof = 1;
1432 break;
1433 }
1434 if (strlen(rl) + 1 + (p - linebuffer) > linelength)
1435 {
1436 linelength = strlen(rl) + 1 + (p - linebuffer);
1437 nline = (char *) xrealloc (linebuffer, linelength);
1438 p += nline - linebuffer;
1439 linebuffer = nline;
1440 }
1441 p1 = rl;
1442 /* Copy line. Don't copy null at end. (Leaves line alone
1443 if this was just a newline) */
1444 while (*p1)
1445 *p++ = *p1++;
1446
1447 free (rl); /* Allocated in readline. */
1448
1449 if (p == linebuffer || *(p - 1) != '\\')
1450 break;
1451
1452 p--; /* Put on top of '\'. */
1453 local_prompt = (char *) 0;
1454 }
1455
1456#ifdef STOP_SIGNAL
1457 signal (SIGTSTP, SIG_DFL);
1458#endif
1459 immediate_quit--;
1460
1461 if (got_eof)
1462 return NULL;
1463
1464 /* Do history expansion if that is wished. */
1465 if (history_expansion_p && instream == stdin
1466 && ISATTY (instream))
1467 {
1468 char *history_value;
1469 int expanded;
1470
1471 *p = '\0'; /* Insert null now. */
1472 expanded = history_expand (linebuffer, &history_value);
1473 if (expanded)
1474 {
1475 /* Print the changes. */
597dc86b 1476 printf ("%s\n", history_value);
bd5635a1
RP
1477
1478 /* If there was an error, call this function again. */
1479 if (expanded < 0)
1480 {
1481 free (history_value);
1482 return command_line_input (prrompt, repeat);
1483 }
1484 if (strlen (history_value) > linelength)
1485 {
1486 linelength = strlen (history_value) + 1;
1487 linebuffer = (char *) xrealloc (linebuffer, linelength);
1488 }
1489 strcpy (linebuffer, history_value);
1490 p = linebuffer + strlen(linebuffer);
1491 free (history_value);
1492 }
1493 }
1494
1495 /* If we just got an empty line, and that is supposed
1496 to repeat the previous command, return the value in the
1497 global buffer. */
1498 if (repeat)
1499 {
1500 if (p == linebuffer)
1501 return line;
1502 p1 = linebuffer;
1503 while (*p1 == ' ' || *p1 == '\t')
1504 p1++;
1505 if (!*p1)
1506 return line;
1507 }
1508
1509 *p = 0;
1510
1511 /* Add line to history if appropriate. */
1512 if (instream == stdin
1513 && ISATTY (stdin) && *linebuffer)
1514 add_history (linebuffer);
1515
1516 /* Note: lines consisting soley of comments are added to the command
1517 history. This is useful when you type a command, and then
1518 realize you don't want to execute it quite yet. You can comment
1519 out the command and then later fetch it from the value history
1520 and remove the '#'. The kill ring is probably better, but some
1521 people are in the habit of commenting things out. */
1522 p1 = linebuffer;
1523 while ((c = *p1++) != '\0')
1524 {
1525 if (c == '"')
1526 while ((c = *p1++) != '"')
1527 {
1528 /* Make sure an escaped '"' doesn't make us think the string
1529 is ended. */
1530 if (c == '\\')
1531 parse_escape (&p1);
1532 if (c == '\0')
1533 break;
1534 }
1535 else if (c == '\'')
1536 while ((c = *p1++) != '\'')
1537 {
1538 /* Make sure an escaped '\'' doesn't make us think the string
1539 is ended. */
1540 if (c == '\\')
1541 parse_escape (&p1);
1542 if (c == '\0')
1543 break;
1544 }
1545 else if (c == '#')
1546 {
1547 /* Found a comment. */
1548 p1[-1] = '\0';
1549 break;
1550 }
1551 }
1552
1553 /* Save into global buffer if appropriate. */
1554 if (repeat)
1555 {
1556 if (linelength > linesize)
1557 {
1558 line = xrealloc (line, linelength);
1559 linesize = linelength;
1560 }
1561 strcpy (line, linebuffer);
1562 return line;
1563 }
1564
1565 return linebuffer;
1566}
1567\f
1568/* Read lines from the input stream
1569 and accumulate them in a chain of struct command_line's
1570 which is then returned. */
1571
1572struct command_line *
1573read_command_lines ()
1574{
1575 struct command_line *first = 0;
1576 register struct command_line *next, *tail = 0;
1577 register char *p, *p1;
1578 struct cleanup *old_chain = 0;
1579
1580 while (1)
1581 {
1582 dont_repeat ();
30875e1c 1583 p = command_line_input ((char *) NULL, instream == stdin);
bd5635a1
RP
1584 if (p == NULL)
1585 /* Treat end of file like "end". */
1586 break;
1587
1588 /* Remove leading and trailing blanks. */
1589 while (*p == ' ' || *p == '\t') p++;
1590 p1 = p + strlen (p);
1591 while (p1 != p && (p1[-1] == ' ' || p1[-1] == '\t')) p1--;
1592
1593 /* Is this "end"? */
1594 if (p1 - p == 3 && !strncmp (p, "end", 3))
1595 break;
1596
1597 /* No => add this line to the chain of command lines. */
1598 next = (struct command_line *) xmalloc (sizeof (struct command_line));
1599 next->line = savestring (p, p1 - p);
1600 next->next = 0;
1601 if (tail)
1602 {
1603 tail->next = next;
1604 }
1605 else
1606 {
1607 /* We just read the first line.
1608 From now on, arrange to throw away the lines we have
1609 if we quit or get an error while inside this function. */
1610 first = next;
1611 old_chain = make_cleanup (free_command_lines, &first);
1612 }
1613 tail = next;
1614 }
1615
1616 dont_repeat ();
1617
1618 /* Now we are about to return the chain to our caller,
1619 so freeing it becomes his responsibility. */
1620 if (first)
1621 discard_cleanups (old_chain);
1622 return first;
1623}
1624
1625/* Free a chain of struct command_line's. */
1626
1627void
1628free_command_lines (lptr)
1629 struct command_line **lptr;
1630{
1631 register struct command_line *l = *lptr;
1632 register struct command_line *next;
1633
1634 while (l)
1635 {
1636 next = l->next;
1637 free (l->line);
51b57ded 1638 free ((PTR)l);
bd5635a1
RP
1639 l = next;
1640 }
1641}
1642\f
1643/* Add an element to the list of info subcommands. */
1644
1645void
1646add_info (name, fun, doc)
1647 char *name;
30875e1c 1648 void (*fun) PARAMS ((char *, int));
bd5635a1
RP
1649 char *doc;
1650{
1651 add_cmd (name, no_class, fun, doc, &infolist);
1652}
1653
1654/* Add an alias to the list of info subcommands. */
1655
1656void
1657add_info_alias (name, oldname, abbrev_flag)
1658 char *name;
1659 char *oldname;
1660 int abbrev_flag;
1661{
1662 add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
1663}
1664
1665/* The "info" command is defined as a prefix, with allow_unknown = 0.
1666 Therefore, its own definition is called only for "info" with no args. */
1667
1668/* ARGSUSED */
1669static void
1670info_command (arg, from_tty)
1671 char *arg;
1672 int from_tty;
1673{
597dc86b 1674 printf ("\"info\" must be followed by the name of an info command.\n");
bd5635a1
RP
1675 help_list (infolist, "info ", -1, stdout);
1676}
1677
1678/* The "show" command with no arguments shows all the settings. */
1679
1680/* ARGSUSED */
1681static void
1682show_command (arg, from_tty)
1683 char *arg;
1684 int from_tty;
1685{
1686 cmd_show_list (showlist, from_tty, "");
1687}
1688\f
1689/* Add an element to the list of commands. */
1690
1691void
1692add_com (name, class, fun, doc)
1693 char *name;
1694 enum command_class class;
30875e1c 1695 void (*fun) PARAMS ((char *, int));
bd5635a1
RP
1696 char *doc;
1697{
1698 add_cmd (name, class, fun, doc, &cmdlist);
1699}
1700
1701/* Add an alias or abbreviation command to the list of commands. */
1702
1703void
1704add_com_alias (name, oldname, class, abbrev_flag)
1705 char *name;
1706 char *oldname;
1707 enum command_class class;
1708 int abbrev_flag;
1709{
1710 add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
1711}
1712
1713void
1714error_no_arg (why)
1715 char *why;
1716{
1717 error ("Argument required (%s).", why);
1718}
1719
e1ce8aa5 1720/* ARGSUSED */
bd5635a1
RP
1721static void
1722help_command (command, from_tty)
1723 char *command;
1724 int from_tty; /* Ignored */
1725{
1726 help_cmd (command, stdout);
1727}
1728\f
1729static void
1730validate_comname (comname)
1731 char *comname;
1732{
1733 register char *p;
1734
1735 if (comname == 0)
1736 error_no_arg ("name of command to define");
1737
1738 p = comname;
1739 while (*p)
1740 {
c2e4669f 1741 if (!isalnum(*p) && *p != '-')
bd5635a1
RP
1742 error ("Junk in argument list: \"%s\"", p);
1743 p++;
1744 }
1745}
1746
51b57ded
FF
1747/* This is just a placeholder in the command data structures. */
1748static void
1749user_defined_command (ignore, from_tty)
1750 char *ignore;
1751 int from_tty;
1752{
1753}
1754
bd5635a1
RP
1755static void
1756define_command (comname, from_tty)
1757 char *comname;
1758 int from_tty;
1759{
1760 register struct command_line *cmds;
fb29d681 1761 register struct cmd_list_element *c, *newc, *hookc = 0;
bd5635a1 1762 char *tem = comname;
b5af69c3
JG
1763#define HOOK_STRING "hook-"
1764#define HOOK_LEN 5
bd5635a1
RP
1765
1766 validate_comname (comname);
1767
afe4ca15 1768 /* Look it up, and verify that we got an exact match. */
bd5635a1 1769 c = lookup_cmd (&tem, cmdlist, "", -1, 1);
2e4964ad 1770 if (c && !STREQ (comname, c->name))
afe4ca15
JG
1771 c = 0;
1772
bd5635a1
RP
1773 if (c)
1774 {
1775 if (c->class == class_user || c->class == class_alias)
1776 tem = "Redefine command \"%s\"? ";
1777 else
1778 tem = "Really redefine built-in command \"%s\"? ";
c2e4669f
JG
1779 if (!query (tem, c->name))
1780 error ("Command \"%s\" not redefined.", c->name);
bd5635a1
RP
1781 }
1782
b5af69c3
JG
1783 /* If this new command is a hook, then mark the command which it
1784 is hooking. Note that we allow hooking `help' commands, so that
1785 we can hook the `stop' pseudo-command. */
1786
1787 if (!strncmp (comname, HOOK_STRING, HOOK_LEN))
1788 {
1789 /* Look up cmd it hooks, and verify that we got an exact match. */
1790 tem = comname+HOOK_LEN;
1791 hookc = lookup_cmd (&tem, cmdlist, "", -1, 0);
2e4964ad 1792 if (hookc && !STREQ (comname+HOOK_LEN, hookc->name))
b5af69c3
JG
1793 hookc = 0;
1794 if (!hookc)
1795 {
1796 warning ("Your new `%s' command does not hook any existing command.",
1797 comname);
1798 if (!query ("Proceed? ", (char *)0))
1799 error ("Not confirmed.");
1800 }
1801 }
1802
c2e4669f
JG
1803 comname = savestring (comname, strlen (comname));
1804
b5af69c3 1805 /* If the rest of the commands will be case insensitive, this one
c2e4669f
JG
1806 should behave in the same manner. */
1807 for (tem = comname; *tem; tem++)
1808 if (isupper(*tem)) *tem = tolower(*tem);
1809
bd5635a1
RP
1810 if (from_tty)
1811 {
597dc86b 1812 printf ("Type commands for definition of \"%s\".\n\
bd5635a1
RP
1813End with a line saying just \"end\".\n", comname);
1814 fflush (stdout);
1815 }
bd5635a1
RP
1816
1817 cmds = read_command_lines ();
1818
1819 if (c && c->class == class_user)
1820 free_command_lines (&c->user_commands);
1821
51b57ded 1822 newc = add_cmd (comname, class_user, user_defined_command,
bd5635a1
RP
1823 (c && c->class == class_user)
1824 ? c->doc : savestring ("User-defined.", 13), &cmdlist);
1825 newc->user_commands = cmds;
b5af69c3
JG
1826
1827 /* If this new command is a hook, then mark both commands as being
1828 tied. */
1829 if (hookc)
1830 {
1831 hookc->hook = newc; /* Target gets hooked. */
1832 newc->hookee = hookc; /* We are marked as hooking target cmd. */
1833 }
bd5635a1
RP
1834}
1835
1836static void
1837document_command (comname, from_tty)
1838 char *comname;
1839 int from_tty;
1840{
1841 struct command_line *doclines;
1842 register struct cmd_list_element *c;
1843 char *tem = comname;
1844
1845 validate_comname (comname);
1846
1847 c = lookup_cmd (&tem, cmdlist, "", 0, 1);
1848
1849 if (c->class != class_user)
1850 error ("Command \"%s\" is built-in.", comname);
1851
1852 if (from_tty)
597dc86b 1853 printf ("Type documentation for \"%s\".\n\
bd5635a1
RP
1854End with a line saying just \"end\".\n", comname);
1855
1856 doclines = read_command_lines ();
1857
1858 if (c->doc) free (c->doc);
1859
1860 {
1861 register struct command_line *cl1;
1862 register int len = 0;
1863
1864 for (cl1 = doclines; cl1; cl1 = cl1->next)
1865 len += strlen (cl1->line) + 1;
1866
1867 c->doc = (char *) xmalloc (len + 1);
1868 *c->doc = 0;
1869
1870 for (cl1 = doclines; cl1; cl1 = cl1->next)
1871 {
1872 strcat (c->doc, cl1->line);
1873 if (cl1->next)
1874 strcat (c->doc, "\n");
1875 }
1876 }
1877
1878 free_command_lines (&doclines);
1879}
1880\f
1881static void
81066208 1882print_gnu_advertisement()
bd5635a1 1883{
597dc86b 1884 printf ("\
bd5635a1 1885GDB is free software and you are welcome to distribute copies of it\n\
afe4ca15
JG
1886 under certain conditions; type \"show copying\" to see the conditions.\n\
1887There is absolutely no warranty for GDB; type \"show warranty\" for details.\n\
81066208
JG
1888");
1889}
1890
1891static void
fb29d681
JG
1892print_gdb_version (stream)
1893 FILE *stream;
81066208 1894{
fb29d681 1895 fprintf_filtered (stream, "\
ee0613d1 1896GDB %s, Copyright 1992 Free Software Foundation, Inc.",
81066208 1897 version);
bd5635a1
RP
1898}
1899
e1ce8aa5 1900/* ARGSUSED */
bd5635a1 1901static void
f266e564 1902show_version (args, from_tty)
bd5635a1
RP
1903 char *args;
1904 int from_tty;
1905{
1906 immediate_quit++;
81066208 1907 print_gnu_advertisement ();
fb29d681 1908 print_gdb_version (stdout);
81066208 1909 printf_filtered ("\n");
bd5635a1
RP
1910 immediate_quit--;
1911}
1912\f
1913/* xgdb calls this to reprint the usual GDB prompt. */
1914
1915void
1916print_prompt ()
1917{
597dc86b 1918 printf ("%s", prompt);
bd5635a1
RP
1919 fflush (stdout);
1920}
1921\f
1922static void
1923quit_command (args, from_tty)
1924 char *args;
1925 int from_tty;
1926{
f266e564 1927 if (inferior_pid != 0 && target_has_execution)
bd5635a1
RP
1928 {
1929 if (query ("The program is running. Quit anyway? "))
1930 {
597dc86b
SG
1931 if (attach_flag)
1932 target_detach (args, from_tty);
1933 else
1934 target_kill ();
bd5635a1
RP
1935 }
1936 else
1937 error ("Not confirmed.");
1938 }
1939 /* Save the history information if it is appropriate to do so. */
1940 if (write_history_p && history_filename)
1941 write_history (history_filename);
1942 exit (0);
1943}
1944
ee0613d1
JG
1945/* Returns whether GDB is running on a terminal and whether the user
1946 desires that questions be asked of them on that terminal. */
1947
bd5635a1
RP
1948int
1949input_from_terminal_p ()
1950{
ee0613d1 1951 return gdb_has_a_terminal && (instream == stdin) & caution;
bd5635a1
RP
1952}
1953\f
e1ce8aa5 1954/* ARGSUSED */
bd5635a1
RP
1955static void
1956pwd_command (args, from_tty)
1957 char *args;
1958 int from_tty;
1959{
1960 if (args) error ("The \"pwd\" command does not take an argument: %s", args);
f7402c04 1961 getcwd (dirbuf, sizeof (dirbuf));
bd5635a1 1962
2e4964ad 1963 if (!STREQ (dirbuf, current_directory))
597dc86b 1964 printf ("Working directory %s\n (canonically %s).\n",
bd5635a1
RP
1965 current_directory, dirbuf);
1966 else
597dc86b 1967 printf ("Working directory %s.\n", current_directory);
bd5635a1
RP
1968}
1969
1970static void
1971cd_command (dir, from_tty)
1972 char *dir;
1973 int from_tty;
1974{
1975 int len;
1976 int change;
1977
9107291d
JK
1978 /* If the new directory is absolute, repeat is a no-op; if relative,
1979 repeat might be useful but is more likely to be a mistake. */
1980 dont_repeat ();
1981
bd5635a1
RP
1982 if (dir == 0)
1983 error_no_arg ("new working directory");
1984
1985 dir = tilde_expand (dir);
1986 make_cleanup (free, dir);
1987
ee0613d1
JG
1988 if (chdir (dir) < 0)
1989 perror_with_name (dir);
1990
bd5635a1
RP
1991 len = strlen (dir);
1992 dir = savestring (dir, len - (len > 1 && dir[len-1] == '/'));
1993 if (dir[0] == '/')
1994 current_directory = dir;
1995 else
1996 {
7d9884b9 1997 current_directory = concat (current_directory, "/", dir, NULL);
bd5635a1
RP
1998 free (dir);
1999 }
2000
2001 /* Now simplify any occurrences of `.' and `..' in the pathname. */
2002
2003 change = 1;
2004 while (change)
2005 {
2006 char *p;
2007 change = 0;
2008
2009 for (p = current_directory; *p;)
2010 {
2011 if (!strncmp (p, "/./", 2)
2012 && (p[2] == 0 || p[2] == '/'))
2013 strcpy (p, p + 2);
2014 else if (!strncmp (p, "/..", 3)
2015 && (p[3] == 0 || p[3] == '/')
2016 && p != current_directory)
2017 {
2018 char *q = p;
2019 while (q != current_directory && q[-1] != '/') q--;
2020 if (q != current_directory)
2021 {
2022 strcpy (q-1, p+3);
2023 p = q-1;
2024 }
2025 }
2026 else p++;
2027 }
2028 }
2029
bd5635a1
RP
2030 forget_cached_source_info ();
2031
2032 if (from_tty)
2033 pwd_command ((char *) 0, 1);
2034}
2035\f
e1ce8aa5 2036/* ARGSUSED */
bd5635a1
RP
2037static void
2038source_command (args, from_tty)
2039 char *args;
2040 int from_tty;
2041{
2042 FILE *stream;
2043 struct cleanup *cleanups;
2044 char *file = args;
2045
2046 if (file == 0)
2047 /* Let source without arguments read .gdbinit. */
2048 file = gdbinit;
2049
2050 file = tilde_expand (file);
2051 make_cleanup (free, file);
2052
2053 stream = fopen (file, "r");
2054 if (stream == 0)
2055 perror_with_name (file);
2056
2057 cleanups = make_cleanup (fclose, stream);
2058
2059 read_command_file (stream);
2060
2061 do_cleanups (cleanups);
2062}
2063
2064/* ARGSUSED */
2065static void
2066echo_command (text, from_tty)
2067 char *text;
2068 int from_tty;
2069{
2070 char *p = text;
2071 register int c;
2072
2073 if (text)
a8a69e63 2074 while ((c = *p++) != '\0')
bd5635a1
RP
2075 {
2076 if (c == '\\')
2077 {
2078 /* \ at end of argument is used after spaces
2079 so they won't be lost. */
2080 if (*p == 0)
2081 return;
2082
2083 c = parse_escape (&p);
2084 if (c >= 0)
afe4ca15 2085 printf_filtered ("%c", c);
bd5635a1
RP
2086 }
2087 else
afe4ca15 2088 printf_filtered ("%c", c);
bd5635a1 2089 }
afe4ca15
JG
2090
2091 /* Force this output to appear now. */
2092 wrap_here ("");
f266e564 2093 fflush (stdout);
bd5635a1
RP
2094}
2095
bd5635a1
RP
2096\f
2097/* Functions to manipulate command line editing control variables. */
2098
f266e564 2099/* Number of commands to print in each call to show_commands. */
bd5635a1
RP
2100#define Hist_print 10
2101static void
f266e564 2102show_commands (args, from_tty)
bd5635a1
RP
2103 char *args;
2104 int from_tty;
2105{
2106 /* Index for history commands. Relative to history_base. */
2107 int offset;
2108
2109 /* Number of the history entry which we are planning to display next.
2110 Relative to history_base. */
2111 static int num = 0;
2112
2113 /* The first command in the history which doesn't exist (i.e. one more
2114 than the number of the last command). Relative to history_base. */
2115 int hist_len;
2116
30875e1c 2117 extern struct _hist_entry *history_get PARAMS ((int));
bd5635a1
RP
2118 extern int history_base;
2119
bd5635a1
RP
2120 /* Print out some of the commands from the command history. */
2121 /* First determine the length of the history list. */
2122 hist_len = history_size;
2123 for (offset = 0; offset < history_size; offset++)
2124 {
2125 if (!history_get (history_base + offset))
2126 {
2127 hist_len = offset;
2128 break;
2129 }
2130 }
2131
2132 if (args)
2133 {
2134 if (args[0] == '+' && args[1] == '\0')
2135 /* "info editing +" should print from the stored position. */
2136 ;
2137 else
2138 /* "info editing <exp>" should print around command number <exp>. */
2139 num = (parse_and_eval_address (args) - history_base) - Hist_print / 2;
2140 }
ee0613d1 2141 /* "show commands" means print the last Hist_print commands. */
bd5635a1
RP
2142 else
2143 {
2144 num = hist_len - Hist_print;
2145 }
2146
2147 if (num < 0)
2148 num = 0;
2149
2150 /* If there are at least Hist_print commands, we want to display the last
2151 Hist_print rather than, say, the last 6. */
2152 if (hist_len - num < Hist_print)
2153 {
2154 num = hist_len - Hist_print;
2155 if (num < 0)
2156 num = 0;
2157 }
2158
bd5635a1
RP
2159 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
2160 {
2161 printf_filtered ("%5d %s\n", history_base + offset,
2162 (history_get (history_base + offset))->line);
2163 }
2164
2165 /* The next command we want to display is the next one that we haven't
2166 displayed yet. */
2167 num += Hist_print;
2168
2169 /* If the user repeats this command with return, it should do what
ee0613d1
JG
2170 "show commands +" does. This is unnecessary if arg is null,
2171 because "show commands +" is not useful after "show commands". */
bd5635a1
RP
2172 if (from_tty && args)
2173 {
2174 args[0] = '+';
2175 args[1] = '\0';
2176 }
2177}
2178
2179/* Called by do_setshow_command. */
e1ce8aa5 2180/* ARGSUSED */
bd5635a1
RP
2181static void
2182set_history_size_command (args, from_tty, c)
2183 char *args;
2184 int from_tty;
2185 struct cmd_list_element *c;
2186{
2187 if (history_size == UINT_MAX)
2188 unstifle_history ();
c2e4669f 2189 else if (history_size >= 0)
bd5635a1 2190 stifle_history (history_size);
c2e4669f
JG
2191 else
2192 {
2193 history_size = UINT_MAX;
2194 error ("History size must be non-negative");
2195 }
bd5635a1
RP
2196}
2197
e1ce8aa5 2198/* ARGSUSED */
bd5635a1
RP
2199static void
2200set_history (args, from_tty)
2201 char *args;
2202 int from_tty;
2203{
597dc86b 2204 printf ("\"set history\" must be followed by the name of a history subcommand.\n");
bd5635a1
RP
2205 help_list (sethistlist, "set history ", -1, stdout);
2206}
2207
e1ce8aa5 2208/* ARGSUSED */
bd5635a1
RP
2209static void
2210show_history (args, from_tty)
2211 char *args;
2212 int from_tty;
2213{
f266e564 2214 cmd_show_list (showhistlist, from_tty, "");
bd5635a1
RP
2215}
2216
2217int info_verbose = 0; /* Default verbose msgs off */
2218
2219/* Called by do_setshow_command. An elaborate joke. */
e1ce8aa5 2220/* ARGSUSED */
bd5635a1
RP
2221static void
2222set_verbose (args, from_tty, c)
2223 char *args;
2224 int from_tty;
2225 struct cmd_list_element *c;
2226{
2227 char *cmdname = "verbose";
2228 struct cmd_list_element *showcmd;
2229
2230 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
2231
2232 if (info_verbose)
2233 {
2234 c->doc = "Set verbose printing of informational messages.";
2235 showcmd->doc = "Show verbose printing of informational messages.";
2236 }
2237 else
2238 {
2239 c->doc = "Set verbosity.";
2240 showcmd->doc = "Show verbosity.";
2241 }
2242}
2243
2244static void
30875e1c
SG
2245float_handler (signo)
2246int signo;
bd5635a1
RP
2247{
2248 /* This message is based on ANSI C, section 4.7. Note that integer
2249 divide by zero causes this, so "float" is a misnomer. */
76a0ffb4 2250 signal (SIGFPE, float_handler);
bd5635a1
RP
2251 error ("Erroneous arithmetic operation.");
2252}
2253
2254/* Return whether we are running a batch file or from terminal. */
2255int
2256batch_mode ()
2257{
2258 return !(instream == stdin && ISATTY (stdin));
2259}
2260
2261\f
2262static void
2263initialize_cmd_lists ()
2264{
0239d9b3
FF
2265 cmdlist = NULL;
2266 infolist = NULL;
2267 enablelist = NULL;
2268 disablelist = NULL;
2269 deletelist = NULL;
2270 enablebreaklist = NULL;
2271 setlist = NULL;
2272 unsetlist = NULL;
bd5635a1 2273 showlist = NULL;
0239d9b3 2274 sethistlist = NULL;
bd5635a1 2275 showhistlist = NULL;
0239d9b3
FF
2276 unsethistlist = NULL;
2277#if MAINTENANCE_CMDS
2278 maintenancelist = NULL;
2279 maintenanceinfolist = NULL;
a8e033f2 2280 maintenanceprintlist = NULL;
0239d9b3
FF
2281#endif
2282 setprintlist = NULL;
2283 showprintlist = NULL;
2284 setchecklist = NULL;
2285 showchecklist = NULL;
bd5635a1
RP
2286}
2287
8b3c897a
SG
2288/* Init the history buffer. Note that we are called after the init file(s)
2289 * have been read so that the user can change the history file via his
2290 * .gdbinit file (for instance). The GDBHISTFILE environment variable
2291 * overrides all of this.
2292 */
2293
bd5635a1 2294static void
8b3c897a 2295initialize_history()
bd5635a1 2296{
bd5635a1 2297 char *tmpenv;
bd5635a1 2298
318bf84f
FF
2299 tmpenv = getenv ("HISTSIZE");
2300 if (tmpenv)
bd5635a1 2301 history_size = atoi (tmpenv);
8b3c897a 2302 else if (!history_size)
bd5635a1
RP
2303 history_size = 256;
2304
2305 stifle_history (history_size);
2306
318bf84f
FF
2307 tmpenv = getenv ("GDBHISTFILE");
2308 if (tmpenv)
bd5635a1 2309 history_filename = savestring (tmpenv, strlen(tmpenv));
8b3c897a 2310 else if (!history_filename) {
bd5635a1
RP
2311 /* We include the current directory so that if the user changes
2312 directories the file written will be the same as the one
2313 that was read. */
7d9884b9 2314 history_filename = concat (current_directory, "/.gdb_history", NULL);
8b3c897a 2315 }
bd5635a1 2316 read_history (history_filename);
8b3c897a 2317}
bd5635a1 2318
8b3c897a
SG
2319static void
2320initialize_main ()
2321{
2322 struct cmd_list_element *c;
2323
2324#ifdef DEFAULT_PROMPT
2325 prompt = savestring (DEFAULT_PROMPT, strlen(DEFAULT_PROMPT));
2326#else
2327 prompt = savestring ("(gdb) ", 6);
2328#endif
2329
2330 /* Set the important stuff up for command editing. */
2331 command_editing_p = 1;
2332 history_expansion_p = 0;
2333 write_history_p = 0;
2334
bd5635a1
RP
2335 /* Setup important stuff for command line editing. */
2336 rl_completion_entry_function = (int (*)()) symbol_completion_function;
2337 rl_completer_word_break_characters = gdb_completer_word_break_characters;
51b57ded 2338 rl_completer_quote_characters = gdb_completer_quote_characters;
bd5635a1
RP
2339 rl_readline_name = "gdb";
2340
2341 /* Define the classes of commands.
2342 They will appear in the help list in the reverse of this order. */
2343
0239d9b3
FF
2344 add_cmd ("internals", class_maintenance, NO_FUNCTION,
2345 "Maintenance commands.\n\
2346Some gdb commands are provided just for use by gdb maintainers.\n\
2347These commands are subject to frequent change, and may not be as\n\
2348well documented as user commands.",
2349 &cmdlist);
bd5635a1
RP
2350 add_cmd ("obscure", class_obscure, NO_FUNCTION, "Obscure features.", &cmdlist);
2351 add_cmd ("aliases", class_alias, NO_FUNCTION, "Aliases of other commands.", &cmdlist);
2352 add_cmd ("user-defined", class_user, NO_FUNCTION, "User-defined commands.\n\
2353The commands in this class are those defined by the user.\n\
2354Use the \"define\" command to define a command.", &cmdlist);
2355 add_cmd ("support", class_support, NO_FUNCTION, "Support facilities.", &cmdlist);
2356 add_cmd ("status", class_info, NO_FUNCTION, "Status inquiries.", &cmdlist);
2357 add_cmd ("files", class_files, NO_FUNCTION, "Specifying and examining files.", &cmdlist);
2358 add_cmd ("breakpoints", class_breakpoint, NO_FUNCTION, "Making program stop at certain points.", &cmdlist);
2359 add_cmd ("data", class_vars, NO_FUNCTION, "Examining data.", &cmdlist);
2360 add_cmd ("stack", class_stack, NO_FUNCTION, "Examining the stack.\n\
2361The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
2362counting from zero for the innermost (currently executing) frame.\n\n\
2363At any time gdb identifies one frame as the \"selected\" frame.\n\
2364Variable lookups are done with respect to the selected frame.\n\
2365When the program being debugged stops, gdb selects the innermost frame.\n\
2366The commands below can be used to select other frames by number or address.",
2367 &cmdlist);
2368 add_cmd ("running", class_run, NO_FUNCTION, "Running the program.", &cmdlist);
2369
2370 add_com ("pwd", class_files, pwd_command,
2371 "Print working directory. This is used for your program as well.");
2372 add_com ("cd", class_files, cd_command,
2373 "Set working directory to DIR for debugger and program being debugged.\n\
2374The change does not take effect for the program being debugged\n\
2375until the next time it is started.");
2376
2377 add_show_from_set
2378 (add_set_cmd ("prompt", class_support, var_string, (char *)&prompt,
2379 "Set gdb's prompt",
2380 &setlist),
2381 &showlist);
2382
2383 add_com ("echo", class_support, echo_command,
2384 "Print a constant string. Give string as argument.\n\
2385C escape sequences may be used in the argument.\n\
2386No newline is added at the end of the argument;\n\
2387use \"\\n\" if you want a newline to be printed.\n\
2388Since leading and trailing whitespace are ignored in command arguments,\n\
2389if you want to print some you must use \"\\\" before leading whitespace\n\
2390to be printed or after trailing whitespace.");
2391 add_com ("document", class_support, document_command,
2392 "Document a user-defined command.\n\
2393Give command name as argument. Give documentation on following lines.\n\
2394End with a line of just \"end\".");
2395 add_com ("define", class_support, define_command,
2396 "Define a new command name. Command name is argument.\n\
2397Definition appears on following lines, one command per line.\n\
2398End with a line of just \"end\".\n\
2399Use the \"document\" command to give documentation for the new command.\n\
2400Commands defined in this way do not take arguments.");
2401
2402#ifdef __STDC__
2403 add_com ("source", class_support, source_command,
2404 "Read commands from a file named FILE.\n\
2405Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
2406when gdb is started.");
2407#else
2408 /* Punt file name, we can't help it easily. */
2409 add_com ("source", class_support, source_command,
2410 "Read commands from a file named FILE.\n\
2411Note that the file \".gdbinit\" is read automatically in this way\n\
2412when gdb is started.");
2413#endif
2414
2415 add_com ("quit", class_support, quit_command, "Exit gdb.");
2416 add_com ("help", class_support, help_command, "Print list of commands.");
2417 add_com_alias ("q", "quit", class_support, 1);
2418 add_com_alias ("h", "help", class_support, 1);
2419
2420
2421 c = add_set_cmd ("verbose", class_support, var_boolean, (char *)&info_verbose,
2422 "Set ",
2423 &setlist),
2424 add_show_from_set (c, &showlist);
30875e1c 2425 c->function.sfunc = set_verbose;
bd5635a1
RP
2426 set_verbose (NULL, 0, c);
2427
bd5635a1
RP
2428 add_show_from_set
2429 (add_set_cmd ("editing", class_support, var_boolean, (char *)&command_editing_p,
ee0613d1 2430 "Set editing of command lines as they are typed.\n\
bd5635a1 2431Use \"on\" to enable to enable the editing, and \"off\" to disable it.\n\
ee0613d1
JG
2432Without an argument, command line editing is enabled. To edit, use\n\
2433EMACS-like or VI-like commands like control-P or ESC.", &setlist),
bd5635a1
RP
2434 &showlist);
2435
2436 add_prefix_cmd ("history", class_support, set_history,
2437 "Generic command for setting command history parameters.",
2438 &sethistlist, "set history ", 0, &setlist);
2439 add_prefix_cmd ("history", class_support, show_history,
2440 "Generic command for showing command history parameters.",
2441 &showhistlist, "show history ", 0, &showlist);
2442
2443 add_show_from_set
2444 (add_set_cmd ("expansion", no_class, var_boolean, (char *)&history_expansion_p,
2445 "Set history expansion on command input.\n\
2446Without an argument, history expansion is enabled.", &sethistlist),
2447 &showhistlist);
2448
2449 add_show_from_set
f266e564 2450 (add_set_cmd ("save", no_class, var_boolean, (char *)&write_history_p,
bd5635a1
RP
2451 "Set saving of the history record on exit.\n\
2452Use \"on\" to enable to enable the saving, and \"off\" to disable it.\n\
2453Without an argument, saving is enabled.", &sethistlist),
2454 &showhistlist);
2455
2456 c = add_set_cmd ("size", no_class, var_uinteger, (char *)&history_size,
2457 "Set the size of the command history, \n\
2458ie. the number of previous commands to keep a record of.", &sethistlist);
2459 add_show_from_set (c, &showhistlist);
30875e1c 2460 c->function.sfunc = set_history_size_command;
bd5635a1
RP
2461
2462 add_show_from_set
2463 (add_set_cmd ("filename", no_class, var_filename, (char *)&history_filename,
2464 "Set the filename in which to record the command history\n\
2465 (the list of previous commands of which a record is kept).", &sethistlist),
2466 &showhistlist);
2467
2468 add_show_from_set
f266e564 2469 (add_set_cmd ("confirm", class_support, var_boolean,
bd5635a1 2470 (char *)&caution,
f266e564
JK
2471 "Set whether to confirm potentially dangerous operations.",
2472 &setlist),
bd5635a1
RP
2473 &showlist);
2474
2475 add_prefix_cmd ("info", class_info, info_command,
ee0613d1 2476 "Generic command for showing things about the program being debugged.",
bd5635a1
RP
2477 &infolist, "info ", 0, &cmdlist);
2478 add_com_alias ("i", "info", class_info, 1);
2479
2480 add_prefix_cmd ("show", class_info, show_command,
ee0613d1 2481 "Generic command for showing things about the debugger.",
bd5635a1
RP
2482 &showlist, "show ", 0, &cmdlist);
2483 /* Another way to get at the same thing. */
2484 add_info ("set", show_command, "Show all GDB settings.");
2485
ee0613d1
JG
2486 add_cmd ("commands", no_class, show_commands,
2487 "Show the the history of commands you typed.\n\
2488You can supply a command number to start with, or a `+' to start after\n\
2489the previous command number shown.",
f266e564 2490 &showlist);
bd5635a1 2491
f266e564 2492 add_cmd ("version", no_class, show_version,
ee0613d1 2493 "Show what version of GDB this is.", &showlist);
bd5635a1 2494}
This page took 0.190497 seconds and 4 git commands to generate.