* ch-exp.c (calculate_array_length): Fix prototype.
[deliverable/binutils-gdb.git] / gdb / top.c
CommitLineData
172559ec 1/* Top level stuff for GDB, the GNU debugger.
255181a9 2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995, 1996
172559ec
JK
3 Free Software Foundation, Inc.
4
5This file is part of GDB.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation; either version 2 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
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
18along with this program; if not, write to the Free Software
6c9638b4 19Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
172559ec
JK
20
21#include "defs.h"
22#include "gdbcmd.h"
23#include "call-cmds.h"
24#include "symtab.h"
25#include "inferior.h"
26#include "signals.h"
27#include "target.h"
28#include "breakpoint.h"
29#include "gdbtypes.h"
30#include "expression.h"
e52bfe0c 31#include "value.h"
172559ec
JK
32#include "language.h"
33#include "terminal.h" /* For job_control. */
34#include "annotate.h"
35#include <setjmp.h>
36#include "top.h"
37
38/* readline include files */
39#include "readline.h"
40#include "history.h"
41
42/* readline defines this. */
43#undef savestring
44
45#include <sys/types.h>
1a494973 46#ifdef HAVE_UNISTD_H
172559ec
JK
47#include <unistd.h>
48#endif
49
2b576293 50#include "gdb_string.h"
172559ec
JK
51#ifndef NO_SYS_FILE
52#include <sys/file.h>
53#endif
54#include <sys/param.h>
2b576293 55#include "gdb_stat.h"
172559ec
JK
56#include <ctype.h>
57
e3be225e
SS
58extern void initialize_targets PARAMS ((void));
59
60extern void initialize_utils PARAMS ((void));
61
172559ec
JK
62/* Prototypes for local functions */
63
9ed8604f
PS
64static char * line_completion_function PARAMS ((char *, int, char *, int));
65
66static char * readline_line_completion_function PARAMS ((char *, int));
172559ec 67
e52bfe0c 68static void command_loop_marker PARAMS ((int));
172559ec 69
e52bfe0c 70static void while_command PARAMS ((char *, int));
172559ec 71
e52bfe0c 72static void if_command PARAMS ((char *, int));
172559ec 73
e52bfe0c
JL
74static struct command_line *
75build_command_line PARAMS ((enum command_control_type, char *));
172559ec 76
e52bfe0c
JL
77static struct command_line *
78get_command_line PARAMS ((enum command_control_type, char *));
172559ec 79
e52bfe0c 80static void realloc_body_list PARAMS ((struct command_line *, int));
172559ec 81
e52bfe0c 82static enum misc_command_type read_next_line PARAMS ((struct command_line **));
172559ec 83
e52bfe0c
JL
84static enum command_control_type
85recurse_read_control_structure PARAMS ((struct command_line *));
172559ec 86
0f8cdd9b
JL
87static struct cleanup * setup_user_args PARAMS ((char *));
88
89static char * locate_arg PARAMS ((char *));
90
91static char * insert_args PARAMS ((char *));
92
93static void arg_cleanup PARAMS ((void));
94
e52bfe0c 95static void init_main PARAMS ((void));
172559ec 96
e52bfe0c 97static void init_cmd_lists PARAMS ((void));
172559ec 98
e52bfe0c 99static void float_handler PARAMS ((int));
172559ec 100
e52bfe0c 101static void init_signals PARAMS ((void));
172559ec 102
e52bfe0c 103static void set_verbose PARAMS ((char *, int, struct cmd_list_element *));
172559ec 104
b8176214
ILT
105#ifdef TARGET_BYTE_ORDER_SELECTABLE
106
107static void set_endian PARAMS ((char *, int));
108
109static void set_endian_big PARAMS ((char *, int));
110
111static void set_endian_little PARAMS ((char *, int));
112
b83ed019
ILT
113static void set_endian_auto PARAMS ((char *, int));
114
b8176214
ILT
115static void show_endian PARAMS ((char *, int));
116
117#endif
118
e52bfe0c 119static void show_history PARAMS ((char *, int));
172559ec 120
e52bfe0c 121static void set_history PARAMS ((char *, int));
172559ec 122
e52bfe0c
JL
123static void set_history_size_command PARAMS ((char *, int,
124 struct cmd_list_element *));
172559ec 125
e52bfe0c 126static void show_commands PARAMS ((char *, int));
172559ec 127
e52bfe0c 128static void echo_command PARAMS ((char *, int));
172559ec 129
e52bfe0c 130static void pwd_command PARAMS ((char *, int));
172559ec 131
e52bfe0c 132static void show_version PARAMS ((char *, int));
172559ec 133
e52bfe0c 134static void document_command PARAMS ((char *, int));
172559ec 135
e52bfe0c 136static void define_command PARAMS ((char *, int));
172559ec 137
e52bfe0c
JL
138static void validate_comname PARAMS ((char *));
139
140static void help_command PARAMS ((char *, int));
141
142static void show_command PARAMS ((char *, int));
143
144static void info_command PARAMS ((char *, int));
145
146static void complete_command PARAMS ((char *, int));
147
148static void do_nothing PARAMS ((int));
149
150static int quit_cover PARAMS ((char *));
151
152static void disconnect PARAMS ((int));
153
154static void source_cleanup PARAMS ((FILE *));
172559ec
JK
155
156/* If this definition isn't overridden by the header files, assume
157 that isatty and fileno exist on this system. */
158#ifndef ISATTY
159#define ISATTY(FP) (isatty (fileno (FP)))
160#endif
161
162/* Initialization file name for gdb. This is overridden in some configs. */
163
164#ifndef GDBINIT_FILENAME
165#define GDBINIT_FILENAME ".gdbinit"
166#endif
167char gdbinit[] = GDBINIT_FILENAME;
f22661ee 168
172559ec
JK
169int inhibit_gdbinit = 0;
170
f22661ee
SS
171/* If nonzero, and GDB has been configured to be able to use windows,
172 attempt to open them upon startup. */
754e5da2 173
f22661ee 174int use_windows = 1;
754e5da2 175
172559ec
JK
176/* Version number of GDB, as a string. */
177
178extern char *version;
179
180/* Canonical host name as a string. */
181
182extern char *host_name;
183
184/* Canonical target name as a string. */
185
186extern char *target_name;
187
188extern char lang_frame_mismatch_warn[]; /* language.c */
189
190/* Flag for whether we want all the "from_tty" gubbish printed. */
191
192int caution = 1; /* Default is yes, sigh. */
193
f22661ee 194/* Define all cmd_list_elements. */
172559ec
JK
195
196/* Chain containing all defined commands. */
197
198struct cmd_list_element *cmdlist;
199
200/* Chain containing all defined info subcommands. */
201
202struct cmd_list_element *infolist;
203
204/* Chain containing all defined enable subcommands. */
205
206struct cmd_list_element *enablelist;
207
208/* Chain containing all defined disable subcommands. */
209
210struct cmd_list_element *disablelist;
211
212/* Chain containing all defined delete subcommands. */
213
214struct cmd_list_element *deletelist;
215
216/* Chain containing all defined "enable breakpoint" subcommands. */
217
218struct cmd_list_element *enablebreaklist;
219
220/* Chain containing all defined set subcommands */
221
222struct cmd_list_element *setlist;
223
224/* Chain containing all defined unset subcommands */
225
226struct cmd_list_element *unsetlist;
227
228/* Chain containing all defined show subcommands. */
229
230struct cmd_list_element *showlist;
231
b8176214
ILT
232#ifdef TARGET_BYTE_ORDER_SELECTABLE
233/* Chain containing the \"set endian\" commands. */
234
235struct cmd_list_element *endianlist;
236#endif
237
172559ec
JK
238/* Chain containing all defined \"set history\". */
239
240struct cmd_list_element *sethistlist;
241
242/* Chain containing all defined \"show history\". */
243
244struct cmd_list_element *showhistlist;
245
246/* Chain containing all defined \"unset history\". */
247
248struct cmd_list_element *unsethistlist;
249
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
262/* Chain containing all defined "maintenance print" subcommands. */
263
264#if MAINTENANCE_CMDS
265struct cmd_list_element *maintenanceprintlist;
266#endif
267
268struct cmd_list_element *setprintlist;
269
270struct cmd_list_element *showprintlist;
271
272struct cmd_list_element *setchecklist;
273
274struct cmd_list_element *showchecklist;
275
276/* stdio stream that command input is being read from. Set to stdin normally.
277 Set by source_command to the file we are sourcing. Set to NULL if we are
278 executing a user-defined command. */
279
280FILE *instream;
281
282/* Current working directory. */
283
284char *current_directory;
285
286/* The directory name is actually stored here (usually). */
b7ec5b8d 287char gdb_dirbuf[1024];
172559ec
JK
288
289/* Function to call before reading a command, if nonzero.
290 The function receives two args: an input stream,
291 and a prompt string. */
292
293void (*window_hook) PARAMS ((FILE *, char *));
294
295int epoch_interface;
296int xgdb_verbose;
297
298/* gdb prints this when reading a command interactively */
299static char *prompt;
300
301/* Buffer used for reading command lines, and the size
302 allocated for it so far. */
303
304char *line;
305int linesize = 100;
306
307/* Nonzero if the current command is modified by "server ". This
308 affects things like recording into the command history, comamnds
309 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
310 whatever) can issue its own commands and also send along commands
311 from the user, and have the user not notice that the user interface
312 is issuing commands too. */
313int server_command;
314
315/* Baud rate specified for talking to serial target systems. Default
316 is left as -1, so targets can choose their own defaults. */
317/* FIXME: This means that "show remotebaud" and gr_files_info can print -1
318 or (unsigned int)-1. This is a Bad User Interface. */
319
320int baud_rate = -1;
321
322/* Non-zero tells remote* modules to output debugging info. */
323
324int remote_debug = 0;
325
e52bfe0c
JL
326/* Level of control structure. */
327static int control_level;
328
0f8cdd9b
JL
329/* Structure for arguments to user defined functions. */
330#define MAXUSERARGS 10
331struct user_args
332{
333 struct user_args *next;
334 struct
335 {
336 char *arg;
337 int len;
338 } a[MAXUSERARGS];
339 int count;
340} *user_args;
341
172559ec
JK
342/* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
343
344#ifndef STOP_SIGNAL
345#ifdef SIGTSTP
346#define STOP_SIGNAL SIGTSTP
347static void stop_sig PARAMS ((int));
348#endif
349#endif
350
351/* Some System V have job control but not sigsetmask(). */
352#if !defined (HAVE_SIGSETMASK)
353#if !defined (USG)
354#define HAVE_SIGSETMASK 1
355#else
356#define HAVE_SIGSETMASK 0
357#endif
358#endif
359
360#if 0 == (HAVE_SIGSETMASK)
361#define sigsetmask(n)
362#endif
8164ec2e
SG
363
364/* Hooks for alternate command interfaces. */
365
366/* Called after most modules have been initialized, but before taking users
367 command file. */
368
369void (*init_ui_hook) PARAMS ((void));
370
371/* Called instead of command_loop at top level. Can be invoked via
372 return_to_top_level. */
373
374void (*command_loop_hook) PARAMS ((void));
375
764efb58 376
8164ec2e
SG
377/* Called instead of fputs for all output. */
378
86db943c 379void (*fputs_unfiltered_hook) PARAMS ((const char *linebuffer, FILE *stream));
8164ec2e 380
764efb58
SC
381/* Called when the target says something to the host, which may
382 want to appear in a different window. */
383
327332d8 384void (*target_output_hook) PARAMS ((char *));
764efb58 385
8164ec2e
SG
386/* Called from print_frame_info to list the line we stopped in. */
387
388void (*print_frame_info_listing_hook) PARAMS ((struct symtab *s, int line,
389 int stopline, int noerror));
390/* Replaces most of query. */
391
392int (*query_hook) PARAMS (());
393
394/* Called from gdb_flush to flush output. */
395
396void (*flush_hook) PARAMS ((FILE *stream));
397
398/* Called as appropriate to notify the interface of the specified breakpoint
399 conditions. */
400
637b1661 401void (*create_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
8164ec2e 402void (*delete_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
6131622e 403void (*modify_breakpoint_hook) PARAMS ((struct breakpoint *bpt));
637b1661
SG
404
405/* Called during long calculations to allow GUI to repair window damage, and to
406 check for stop buttons, etc... */
407
408void (*interactive_hook) PARAMS ((void));
409
16041d53
SC
410/* Called when the registers have changed, as a hint to a GUI
411 to minimize window update. */
412
413void (*registers_changed_hook) PARAMS ((void));
414
479f0f18
SG
415/* Called when going to wait for the target. Usually allows the GUI to run
416 while waiting for target events. */
417
418int (*target_wait_hook) PARAMS ((int pid, struct target_waitstatus *status));
419
420/* Used by UI as a wrapper around command execution. May do various things
421 like enabling/disabling buttons, etc... */
422
423void (*call_command_hook) PARAMS ((struct cmd_list_element *c, char *cmd,
424 int from_tty));
45993f61
SC
425
426
427/* Takes control from error (). Typically used to prevent longjmps out of the
428 middle of the GUI. Usually used in conjunction with a catch routine. */
429
6b14af2b 430NORETURN void (*error_hook) PARAMS (()) ATTR_NORETURN;
45993f61 431
172559ec
JK
432\f
433/* Where to go for return_to_top_level (RETURN_ERROR). */
434jmp_buf error_return;
435/* Where to go for return_to_top_level (RETURN_QUIT). */
436jmp_buf quit_return;
437
438/* Return for reason REASON. This generally gets back to the command
439 loop, but can be caught via catch_errors. */
440
441NORETURN void
442return_to_top_level (reason)
443 enum return_reason reason;
444{
445 quit_flag = 0;
446 immediate_quit = 0;
447
448 /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
449 I can think of a reason why that is vital, though). */
450 bpstat_clear_actions(stop_bpstat); /* Clear queued breakpoint commands */
451
452 disable_current_display ();
453 do_cleanups (ALL_CLEANUPS);
454
455 if (annotation_level > 1)
456 switch (reason)
457 {
458 case RETURN_QUIT:
459 annotate_quit ();
460 break;
461 case RETURN_ERROR:
462 annotate_error ();
463 break;
464 }
465
466 (NORETURN void) longjmp
467 (reason == RETURN_ERROR ? error_return : quit_return, 1);
468}
469
470/* Call FUNC with arg ARGS, catching any errors. If there is no
471 error, return the value returned by FUNC. If there is an error,
472 print ERRSTRING, print the specific error message, then return
473 zero.
474
475 Must not be called with immediate_quit in effect (bad things might
476 happen, say we got a signal in the middle of a memcpy to quit_return).
477 This is an OK restriction; with very few exceptions immediate_quit can
478 be replaced by judicious use of QUIT.
479
480 MASK specifies what to catch; it is normally set to
481 RETURN_MASK_ALL, if for no other reason than that the code which
482 calls catch_errors might not be set up to deal with a quit which
483 isn't caught. But if the code can deal with it, it generally
484 should be RETURN_MASK_ERROR, unless for some reason it is more
485 useful to abort only the portion of the operation inside the
486 catch_errors. Note that quit should return to the command line
487 fairly quickly, even if some further processing is being done. */
488
489int
490catch_errors (func, args, errstring, mask)
491 int (*func) PARAMS ((char *));
492 PTR args;
493 char *errstring;
494 return_mask mask;
495{
496 jmp_buf saved_error;
497 jmp_buf saved_quit;
498 jmp_buf tmp_jmp;
499 int val;
500 struct cleanup *saved_cleanup_chain;
501 char *saved_error_pre_print;
dee80384 502 char *saved_quit_pre_print;
172559ec
JK
503
504 saved_cleanup_chain = save_cleanups ();
505 saved_error_pre_print = error_pre_print;
dee80384 506 saved_quit_pre_print = quit_pre_print;
172559ec
JK
507
508 if (mask & RETURN_MASK_ERROR)
dee80384
JK
509 {
510 memcpy ((char *)saved_error, (char *)error_return, sizeof (jmp_buf));
511 error_pre_print = errstring;
512 }
172559ec 513 if (mask & RETURN_MASK_QUIT)
dee80384
JK
514 {
515 memcpy (saved_quit, quit_return, sizeof (jmp_buf));
516 quit_pre_print = errstring;
517 }
172559ec
JK
518
519 if (setjmp (tmp_jmp) == 0)
520 {
521 if (mask & RETURN_MASK_ERROR)
522 memcpy (error_return, tmp_jmp, sizeof (jmp_buf));
523 if (mask & RETURN_MASK_QUIT)
524 memcpy (quit_return, tmp_jmp, sizeof (jmp_buf));
525 val = (*func) (args);
526 }
527 else
528 val = 0;
529
530 restore_cleanups (saved_cleanup_chain);
531
172559ec 532 if (mask & RETURN_MASK_ERROR)
dee80384
JK
533 {
534 memcpy (error_return, saved_error, sizeof (jmp_buf));
535 error_pre_print = saved_error_pre_print;
536 }
172559ec 537 if (mask & RETURN_MASK_QUIT)
dee80384
JK
538 {
539 memcpy (quit_return, saved_quit, sizeof (jmp_buf));
540 quit_pre_print = saved_quit_pre_print;
541 }
172559ec
JK
542 return val;
543}
544
545/* Handler for SIGHUP. */
546
547static void
548disconnect (signo)
549int signo;
550{
551 catch_errors (quit_cover, NULL,
552 "Could not kill the program being debugged", RETURN_MASK_ALL);
553 signal (SIGHUP, SIG_DFL);
554 kill (getpid (), SIGHUP);
555}
556
557/* Just a little helper function for disconnect(). */
558
559static int
560quit_cover (s)
561char *s;
562{
563 caution = 0; /* Throw caution to the wind -- we're exiting.
564 This prevents asking the user dumb questions. */
565 quit_command((char *)0, 0);
566 return 0;
567}
568\f
569/* Line number we are currently in in a file which is being sourced. */
570static int source_line_number;
571
572/* Name of the file we are sourcing. */
573static char *source_file_name;
574
575/* Buffer containing the error_pre_print used by the source stuff.
576 Malloc'd. */
577static char *source_error;
578static int source_error_allocated;
579
580/* Something to glom on to the start of error_pre_print if source_file_name
581 is set. */
582static char *source_pre_error;
583
584/* Clean up on error during a "source" command (or execution of a
585 user-defined command). */
586
587static void
588source_cleanup (stream)
589 FILE *stream;
590{
591 /* Restore the previous input stream. */
592 instream = stream;
593}
594
595/* Read commands from STREAM. */
596void
597read_command_file (stream)
598 FILE *stream;
599{
600 struct cleanup *cleanups;
601
602 cleanups = make_cleanup (source_cleanup, instream);
603 instream = stream;
604 command_loop ();
605 do_cleanups (cleanups);
606}
607\f
608extern void init_proc ();
609
43ab4ba5
SS
610void (*pre_init_ui_hook) PARAMS ((void));
611
172559ec
JK
612void
613gdb_init ()
614{
43ab4ba5
SS
615 if (pre_init_ui_hook)
616 pre_init_ui_hook ();
617
172559ec
JK
618 /* Run the init function of each source file */
619
b7ec5b8d
FF
620 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
621 current_directory = gdb_dirbuf;
f36b58b1 622
172559ec 623 init_cmd_lists (); /* This needs to be done first */
754e5da2
SG
624 initialize_targets (); /* Setup target_terminal macros for utils.c */
625 initialize_utils (); /* Make errors and warnings possible */
172559ec
JK
626 initialize_all_files ();
627 init_main (); /* But that omits this file! Do it now */
628 init_signals ();
629
630 init_proc ();
631
632 /* We need a default language for parsing expressions, so simple things like
633 "set width 0" won't fail if no language is explicitly set in a config file
634 or implicitly set by reading an executable during startup. */
635 set_language (language_c);
636 expected_language = current_language; /* don't warn about the change. */
754e5da2
SG
637
638 if (init_ui_hook)
639 init_ui_hook ();
172559ec
JK
640}
641
e52bfe0c
JL
642/* Allocate, initialize a new command line structure for one of the
643 control commands (if/while). */
644
645static struct command_line *
646build_command_line (type, args)
647 enum command_control_type type;
648 char *args;
649{
650 struct command_line *cmd;
651
a25ffb08
JL
652 if (args == NULL)
653 error ("if/while commands require arguments.\n");
654
e52bfe0c
JL
655 cmd = (struct command_line *)xmalloc (sizeof (struct command_line));
656 cmd->next = NULL;
657 cmd->control_type = type;
658
659 cmd->body_count = 1;
660 cmd->body_list
661 = (struct command_line **)xmalloc (sizeof (struct command_line *)
662 * cmd->body_count);
663 memset (cmd->body_list, 0, sizeof (struct command_line *) * cmd->body_count);
664 cmd->line = savestring (args, strlen (args));
665 return cmd;
666}
667
668/* Build and return a new command structure for the control commands
669 such as "if" and "while". */
670
671static struct command_line *
672get_command_line (type, arg)
673 enum command_control_type type;
674 char *arg;
675{
676 struct command_line *cmd;
677 struct cleanup *old_chain = NULL;
678
679 /* Allocate and build a new command line structure. */
680 cmd = build_command_line (type, arg);
681
682 old_chain = make_cleanup (free_command_lines, &cmd);
683
684 /* Read in the body of this command. */
685 if (recurse_read_control_structure (cmd) == invalid_control)
686 {
687 warning ("error reading in control structure\n");
688 do_cleanups (old_chain);
689 return NULL;
690 }
691
692 discard_cleanups (old_chain);
693 return cmd;
694}
695
0f8cdd9b
JL
696/* Recursively print a command (including full control structures). */
697void
698print_command_line (cmd, depth)
699 struct command_line *cmd;
700 unsigned int depth;
701{
702 unsigned int i;
703
704 if (depth)
705 {
706 for (i = 0; i < depth; i++)
707 fputs_filtered (" ", gdb_stdout);
708 }
709
710 /* A simple command, print it and return. */
711 if (cmd->control_type == simple_control)
712 {
713 fputs_filtered (cmd->line, gdb_stdout);
714 fputs_filtered ("\n", gdb_stdout);
715 return;
716 }
717
718 /* loop_continue to jump to the start of a while loop, print it
719 and return. */
720 if (cmd->control_type == continue_control)
721 {
722 fputs_filtered ("loop_continue\n", gdb_stdout);
723 return;
724 }
725
726 /* loop_break to break out of a while loop, print it and return. */
727 if (cmd->control_type == break_control)
728 {
729 fputs_filtered ("loop_break\n", gdb_stdout);
730 return;
731 }
732
733 /* A while command. Recursively print its subcommands before returning. */
734 if (cmd->control_type == while_control)
735 {
736 struct command_line *list;
737 fputs_filtered ("while ", gdb_stdout);
738 fputs_filtered (cmd->line, gdb_stdout);
739 fputs_filtered ("\n", gdb_stdout);
740 list = *cmd->body_list;
741 while (list)
742 {
743 print_command_line (list, depth + 1);
744 list = list->next;
745 }
746 }
747
748 /* An if command. Recursively print both arms before returning. */
749 if (cmd->control_type == if_control)
750 {
751 fputs_filtered ("if ", gdb_stdout);
752 fputs_filtered (cmd->line, gdb_stdout);
753 fputs_filtered ("\n", gdb_stdout);
754 /* The true arm. */
755 print_command_line (cmd->body_list[0], depth + 1);
756
757 /* Show the false arm if it exists. */
758 if (cmd->body_count == 2)
759 {
760 if (depth)
761 {
762 for (i = 0; i < depth; i++)
763 fputs_filtered (" ", gdb_stdout);
764 }
765 fputs_filtered ("else\n", gdb_stdout);
766 print_command_line (cmd->body_list[1], depth + 1);
767 }
768 if (depth)
769 {
770 for (i = 0; i < depth; i++)
771 fputs_filtered (" ", gdb_stdout);
772 }
773 fputs_filtered ("end\n", gdb_stdout);
774 }
775}
776
e52bfe0c
JL
777/* Execute the command in CMD. */
778
0f8cdd9b 779enum command_control_type
e52bfe0c
JL
780execute_control_command (cmd)
781 struct command_line *cmd;
782{
783 struct expression *expr;
784 struct command_line *current;
785 struct cleanup *old_chain = 0;
e52bfe0c
JL
786 value_ptr val;
787 int loop;
788 enum command_control_type ret;
0f8cdd9b 789 char *new_line;
e52bfe0c
JL
790
791 switch (cmd->control_type)
792 {
793 case simple_control:
794 /* A simple command, execute it and return. */
0f8cdd9b
JL
795 new_line = insert_args (cmd->line);
796 if (!new_line)
797 return invalid_control;
798 old_chain = make_cleanup (free_current_contents, &new_line);
799 execute_command (new_line, 0);
800 ret = cmd->control_type;
801 break;
e52bfe0c
JL
802
803 case continue_control:
804 case break_control:
805 /* Return for "continue", and "break" so we can either
806 continue the loop at the top, or break out. */
0f8cdd9b
JL
807 ret = cmd->control_type;
808 break;
e52bfe0c
JL
809
810 case while_control:
811 {
812 /* Parse the loop control expression for the while statement. */
0f8cdd9b
JL
813 new_line = insert_args (cmd->line);
814 if (!new_line)
815 return invalid_control;
816 old_chain = make_cleanup (free_current_contents, &new_line);
817 expr = parse_expression (new_line);
818 make_cleanup (free_current_contents, &expr);
819
e52bfe0c 820 ret = simple_control;
b5776522 821 loop = 1;
e52bfe0c
JL
822
823 /* Keep iterating so long as the expression is true. */
b5776522 824 while (loop == 1)
e52bfe0c
JL
825 {
826 /* Evaluate the expression. */
827 val = evaluate_expression (expr);
828
829 /* If the value is false, then break out of the loop. */
830 if (!value_true (val))
831 break;
832
833 /* Execute the body of the while statement. */
834 current = *cmd->body_list;
835 while (current)
836 {
837 ret = execute_control_command (current);
838
839 /* If we got an error, or a "break" command, then stop
840 looping. */
841 if (ret == invalid_control || ret == break_control)
842 {
b5776522 843 loop = 0;
e52bfe0c
JL
844 break;
845 }
846
847 /* If we got a "continue" command, then restart the loop
848 at this point. */
849 if (ret == continue_control)
850 break;
851
852 /* Get the next statement. */
853 current = current->next;
854 }
855 }
856
857 /* Reset RET so that we don't recurse the break all the way down. */
858 if (ret == break_control)
859 ret = simple_control;
860
861 break;
862 }
863
864 case if_control:
865 {
0f8cdd9b
JL
866 new_line = insert_args (cmd->line);
867 if (!new_line)
868 return invalid_control;
869 old_chain = make_cleanup (free_current_contents, &new_line);
e52bfe0c 870 /* Parse the conditional for the if statement. */
0f8cdd9b
JL
871 expr = parse_expression (new_line);
872 make_cleanup (free_current_contents, &expr);
e52bfe0c
JL
873
874 current = NULL;
875 ret = simple_control;
876
877 /* Evaluate the conditional. */
878 val = evaluate_expression (expr);
879
880 /* Choose which arm to take commands from based on the value of the
881 conditional expression. */
882 if (value_true (val))
883 current = *cmd->body_list;
884 else if (cmd->body_count == 2)
885 current = *(cmd->body_list + 1);
886
887 /* Execute commands in the given arm. */
888 while (current)
889 {
890 ret = execute_control_command (current);
891
892 /* If we got an error, get out. */
893 if (ret != simple_control)
894 break;
895
896 /* Get the next statement in the body. */
897 current = current->next;
898 }
0f8cdd9b 899
e52bfe0c
JL
900 break;
901 }
902
903 default:
904 warning ("Invalid control type in command structure.");
905 return invalid_control;
906 }
907
908 if (old_chain)
909 do_cleanups (old_chain);
910
911 return ret;
912}
913
914/* "while" command support. Executes a body of statements while the
915 loop condition is nonzero. */
916
917static void
918while_command (arg, from_tty)
919 char *arg;
920 int from_tty;
921{
922 struct command_line *command = NULL;
923
924 control_level = 1;
925 command = get_command_line (while_control, arg);
926
927 if (command == NULL)
928 return;
929
930 execute_control_command (command);
931 free_command_lines (&command);
932}
933
934/* "if" command support. Execute either the true or false arm depending
935 on the value of the if conditional. */
936
937static void
938if_command (arg, from_tty)
939 char *arg;
940 int from_tty;
941{
942 struct command_line *command = NULL;
943
944 control_level = 1;
945 command = get_command_line (if_control, arg);
946
947 if (command == NULL)
948 return;
949
950 execute_control_command (command);
951 free_command_lines (&command);
952}
953
0f8cdd9b
JL
954/* Cleanup */
955static void
956arg_cleanup ()
957{
958 struct user_args *oargs = user_args;
959 if (!user_args)
960 fatal ("Internal error, arg_cleanup called with no user args.\n");
961
962 user_args = user_args->next;
963 free (oargs);
964}
965
966/* Bind the incomming arguments for a user defined command to
967 $arg0, $arg1 ... $argMAXUSERARGS. */
968
969static struct cleanup *
970setup_user_args (p)
971 char *p;
972{
973 struct user_args *args;
974 struct cleanup *old_chain;
975 unsigned int arg_count = 0;
976
977 args = (struct user_args *)xmalloc (sizeof (struct user_args));
978 memset (args, 0, sizeof (struct user_args));
979
980 args->next = user_args;
981 user_args = args;
982
983 old_chain = make_cleanup (arg_cleanup, 0);
984
985 if (p == NULL)
986 return old_chain;
987
988 while (*p)
989 {
990 char *start_arg;
991
992 if (arg_count >= MAXUSERARGS)
993 {
994 error ("user defined function may only have %d arguments.\n",
995 MAXUSERARGS);
996 return old_chain;
997 }
998
999 /* Strip whitespace. */
1000 while (*p == ' ' || *p == '\t')
1001 p++;
1002
1003 /* P now points to an argument. */
1004 start_arg = p;
1005 user_args->a[arg_count].arg = p;
1006
1007 /* Get to the end of this argument. */
1008 while (*p && *p != ' ' && *p != '\t')
1009 p++;
1010
1011 user_args->a[arg_count].len = p - start_arg;
1012 arg_count++;
1013 user_args->count++;
1014 }
1015 return old_chain;
1016}
1017
1018/* Given character string P, return a point to the first argument ($arg),
1019 or NULL if P contains no arguments. */
1020
1021static char *
1022locate_arg (p)
1023 char *p;
1024{
e3be225e 1025 while ((p = strchr (p, '$')))
0f8cdd9b
JL
1026 {
1027 if (strncmp (p, "$arg", 4) == 0 && isdigit (p[4]))
1028 return p;
1029 p++;
1030 }
1031 return NULL;
1032}
1033
1034/* Insert the user defined arguments stored in user_arg into the $arg
1035 arguments found in line, with the updated copy being placed into nline. */
1036
1037static char *
1038insert_args (line)
1039 char *line;
1040{
1041 char *p, *save_line, *new_line;
1042 unsigned len, i;
1043
1044 /* First we need to know how much memory to allocate for the new line. */
1045 save_line = line;
1046 len = 0;
e3be225e 1047 while ((p = locate_arg (line)))
0f8cdd9b
JL
1048 {
1049 len += p - line;
1050 i = p[4] - '0';
1051
1052 if (i >= user_args->count)
1053 {
1054 error ("Missing argument %d in user function.\n", i);
1055 return NULL;
1056 }
1057 len += user_args->a[i].len;
1058 line = p + 5;
1059 }
1060
1061 /* Don't forget the tail. */
1062 len += strlen (line);
1063
1064 /* Allocate space for the new line and fill it in. */
1065 new_line = (char *)xmalloc (len + 1);
1066 if (new_line == NULL)
1067 return NULL;
1068
1069 /* Restore pointer to beginning of old line. */
1070 line = save_line;
1071
1072 /* Save pointer to beginning of new line. */
1073 save_line = new_line;
1074
e3be225e 1075 while ((p = locate_arg (line)))
0f8cdd9b
JL
1076 {
1077 int i, len;
1078
1079 memcpy (new_line, line, p - line);
1080 new_line += p - line;
1081 i = p[4] - '0';
1082
e3be225e
SS
1083 len = user_args->a[i].len;
1084 if (len)
0f8cdd9b
JL
1085 {
1086 memcpy (new_line, user_args->a[i].arg, len);
1087 new_line += len;
1088 }
1089 line = p + 5;
1090 }
1091 /* Don't forget the tail. */
1092 strcpy (new_line, line);
1093
1094 /* Return a pointer to the beginning of the new line. */
1095 return save_line;
1096}
1097
172559ec
JK
1098void
1099execute_user_command (c, args)
1100 struct cmd_list_element *c;
1101 char *args;
1102{
1103 register struct command_line *cmdlines;
1104 struct cleanup *old_chain;
e52bfe0c
JL
1105 enum command_control_type ret;
1106
0f8cdd9b 1107 old_chain = setup_user_args (args);
172559ec
JK
1108
1109 cmdlines = c->user_commands;
1110 if (cmdlines == 0)
1111 /* Null command */
1112 return;
1113
1114 /* Set the instream to 0, indicating execution of a
1115 user-defined function. */
1116 old_chain = make_cleanup (source_cleanup, instream);
1117 instream = (FILE *) 0;
1118 while (cmdlines)
1119 {
e52bfe0c
JL
1120 ret = execute_control_command (cmdlines);
1121 if (ret != simple_control && ret != break_control)
1122 {
1123 warning ("Error in control structure.\n");
1124 break;
1125 }
172559ec
JK
1126 cmdlines = cmdlines->next;
1127 }
1128 do_cleanups (old_chain);
1129}
1130
1131/* Execute the line P as a command.
1132 Pass FROM_TTY as second argument to the defining function. */
1133
1134void
1135execute_command (p, from_tty)
1136 char *p;
1137 int from_tty;
1138{
1139 register struct cmd_list_element *c;
1140 register enum language flang;
1141 static int warned = 0;
e8f1ad9a 1142 extern FILE *serial_logfp;
172559ec
JK
1143
1144 free_all_values ();
1145
1146 /* This can happen when command_line_input hits end of file. */
1147 if (p == NULL)
1148 return;
e52bfe0c 1149
e8f1ad9a
FF
1150 if (serial_logfp != NULL)
1151 serial_log_command (p);
1152
172559ec
JK
1153 while (*p == ' ' || *p == '\t') p++;
1154 if (*p)
1155 {
1156 char *arg;
e52bfe0c 1157
172559ec
JK
1158 c = lookup_cmd (&p, cmdlist, "", 0, 1);
1159 /* Pass null arg rather than an empty one. */
1160 arg = *p ? p : 0;
1161
080868b4
PS
1162 /* Clear off trailing whitespace, except for set and complete command. */
1163 if (arg && c->type != set_cmd && c->function.cfunc != complete_command)
1164 {
1165 p = arg + strlen (arg) - 1;
1166 while (p >= arg && (*p == ' ' || *p == '\t'))
1167 p--;
1168 *(p + 1) = '\0';
1169 }
1170
172559ec
JK
1171 /* If this command has been hooked, run the hook first. */
1172 if (c->hook)
1173 execute_user_command (c->hook, (char *)0);
1174
1175 if (c->class == class_user)
1176 execute_user_command (c, arg);
1177 else if (c->type == set_cmd || c->type == show_cmd)
1178 do_setshow_command (arg, from_tty & caution, c);
1179 else if (c->function.cfunc == NO_FUNCTION)
1180 error ("That is not a command, just a help topic.");
479f0f18
SG
1181 else if (call_command_hook)
1182 call_command_hook (c, arg, from_tty & caution);
172559ec
JK
1183 else
1184 (*c->function.cfunc) (arg, from_tty & caution);
1185 }
1186
1187 /* Tell the user if the language has changed (except first time). */
1188 if (current_language != expected_language)
1189 {
1190 if (language_mode == language_mode_auto) {
1191 language_info (1); /* Print what changed. */
1192 }
1193 warned = 0;
1194 }
1195
1196 /* Warn the user if the working language does not match the
1197 language of the current frame. Only warn the user if we are
1198 actually running the program, i.e. there is a stack. */
1199 /* FIXME: This should be cacheing the frame and only running when
1200 the frame changes. */
43ab4ba5 1201
172559ec 1202 if (target_has_stack)
172559ec 1203 {
43ab4ba5
SS
1204 flang = get_frame_language ();
1205 if (!warned
1206 && flang != language_unknown
1207 && flang != current_language->la_language)
1208 {
1209 printf_filtered ("%s\n", lang_frame_mismatch_warn);
1210 warned = 1;
1211 }
172559ec 1212 }
172559ec
JK
1213}
1214
1215/* ARGSUSED */
1216static void
1217command_loop_marker (foo)
1218 int foo;
1219{
1220}
1221
1222/* Read commands from `instream' and execute them
1223 until end of file or error reading instream. */
43ab4ba5 1224
172559ec
JK
1225void
1226command_loop ()
1227{
1228 struct cleanup *old_chain;
1229 char *command;
1230 int stdin_is_tty = ISATTY (stdin);
43ab4ba5 1231 long time_at_cmd_start;
38d715a4 1232#ifdef HAVE_SBRK
83ebf439 1233 long space_at_cmd_start;
38d715a4 1234#endif
43ab4ba5
SS
1235 extern int display_time;
1236 extern int display_space;
172559ec
JK
1237
1238 while (!feof (instream))
1239 {
1240 if (window_hook && instream == stdin)
1241 (*window_hook) (instream, prompt);
1242
1243 quit_flag = 0;
1244 if (instream == stdin && stdin_is_tty)
1245 reinitialize_more_filter ();
1246 old_chain = make_cleanup (command_loop_marker, 0);
1247 command = command_line_input (instream == stdin ? prompt : (char *) NULL,
1248 instream == stdin, "prompt");
1249 if (command == 0)
1250 return;
43ab4ba5
SS
1251
1252 time_at_cmd_start = get_run_time ();
1253
83ebf439
SS
1254 if (display_space)
1255 {
38d715a4 1256#ifdef HAVE_SBRK
83ebf439
SS
1257 extern char **environ;
1258 char *lim = (char *) sbrk (0);
1259
1260 space_at_cmd_start = (long) (lim - (char *) &environ);
38d715a4 1261#endif
83ebf439
SS
1262 }
1263
172559ec
JK
1264 execute_command (command, instream == stdin);
1265 /* Do any commands attached to breakpoint we stopped at. */
1266 bpstat_do_actions (&stop_bpstat);
1267 do_cleanups (old_chain);
43ab4ba5
SS
1268
1269 if (display_time)
1270 {
1271 long cmd_time = get_run_time () - time_at_cmd_start;
1272
1273 printf_unfiltered ("Command execution time: %ld.%06ld\n",
1274 cmd_time / 1000000, cmd_time % 1000000);
1275 }
1276
1277 if (display_space)
1278 {
38d715a4 1279#ifdef HAVE_SBRK
43ab4ba5
SS
1280 extern char **environ;
1281 char *lim = (char *) sbrk (0);
83ebf439
SS
1282 long space_now = lim - (char *) &environ;
1283 long space_diff = space_now - space_at_cmd_start;
43ab4ba5 1284
83ebf439
SS
1285 printf_unfiltered ("Space used: %ld (%c%ld for this command)\n",
1286 space_now,
1287 (space_diff >= 0 ? '+' : '-'),
1288 space_diff);
38d715a4 1289#endif
43ab4ba5 1290 }
172559ec
JK
1291 }
1292}
1293\f
1294/* Commands call this if they do not want to be repeated by null lines. */
1295
1296void
1297dont_repeat ()
1298{
1299 if (server_command)
1300 return;
1301
1302 /* If we aren't reading from standard input, we are saving the last
1303 thing read from stdin in line and don't want to delete it. Null lines
1304 won't repeat here in any case. */
1305 if (instream == stdin)
1306 *line = 0;
1307}
1308\f
1309/* Read a line from the stream "instream" without command line editing.
1310
1311 It prints PRROMPT once at the start.
e52bfe0c 1312 Action is compatible with "readline", e.g. space for the result is
172559ec
JK
1313 malloc'd and should be freed by the caller.
1314
1315 A NULL return means end of file. */
1316char *
1317gdb_readline (prrompt)
1318 char *prrompt;
1319{
1320 int c;
1321 char *result;
1322 int input_index = 0;
1323 int result_size = 80;
1324
1325 if (prrompt)
1326 {
1327 /* Don't use a _filtered function here. It causes the assumed
1328 character position to be off, since the newline we read from
1329 the user is not accounted for. */
1330 fputs_unfiltered (prrompt, gdb_stdout);
172559ec
JK
1331#ifdef MPW
1332 /* Move to a new line so the entered line doesn't have a prompt
1333 on the front of it. */
1334 fputs_unfiltered ("\n", gdb_stdout);
1335#endif /* MPW */
172559ec
JK
1336 gdb_flush (gdb_stdout);
1337 }
e52bfe0c 1338
172559ec
JK
1339 result = (char *) xmalloc (result_size);
1340
1341 while (1)
1342 {
1343 /* Read from stdin if we are executing a user defined command.
1344 This is the right thing for prompt_for_continue, at least. */
1345 c = fgetc (instream ? instream : stdin);
1346
1347 if (c == EOF)
1348 {
1349 if (input_index > 0)
1350 /* The last line does not end with a newline. Return it, and
1351 if we are called again fgetc will still return EOF and
1352 we'll return NULL then. */
1353 break;
1354 free (result);
1355 return NULL;
1356 }
1357
1358 if (c == '\n')
1359 break;
1360
1361 result[input_index++] = c;
1362 while (input_index >= result_size)
1363 {
1364 result_size *= 2;
1365 result = (char *) xrealloc (result, result_size);
1366 }
1367 }
1368
1369 result[input_index++] = '\0';
1370 return result;
1371}
1372
1373/* Variables which control command line editing and history
1374 substitution. These variables are given default values at the end
1375 of this file. */
1376static int command_editing_p;
1377static int history_expansion_p;
1378static int write_history_p;
1379static int history_size;
1380static char *history_filename;
1381
1382/* readline uses the word breaks for two things:
1383 (1) In figuring out where to point the TEXT parameter to the
1384 rl_completion_entry_function. Since we don't use TEXT for much,
1385 it doesn't matter a lot what the word breaks are for this purpose, but
1386 it does affect how much stuff M-? lists.
1387 (2) If one of the matches contains a word break character, readline
1388 will quote it. That's why we switch between
1389 gdb_completer_word_break_characters and
1390 gdb_completer_command_word_break_characters. I'm not sure when
1391 we need this behavior (perhaps for funky characters in C++ symbols?). */
1392
1393/* Variables which are necessary for fancy command line editing. */
1394char *gdb_completer_word_break_characters =
1395 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,-";
1396
1397/* When completing on command names, we remove '-' from the list of
1398 word break characters, since we use it in command names. If the
1399 readline library sees one in any of the current completion strings,
1400 it thinks that the string needs to be quoted and automatically supplies
1401 a leading quote. */
1402char *gdb_completer_command_word_break_characters =
1403 " \t\n!@#$%^&*()+=|~`}{[]\"';:?/>.<,";
1404
1405/* Characters that can be used to quote completion strings. Note that we
1406 can't include '"' because the gdb C parser treats such quoted sequences
1407 as strings. */
1408char *gdb_completer_quote_characters =
1409 "'";
1410
1411/* Functions that are used as part of the fancy command line editing. */
1412
1413/* This can be used for functions which don't want to complete on symbols
1414 but don't want to complete on anything else either. */
1415/* ARGSUSED */
1416char **
1417noop_completer (text, prefix)
1418 char *text;
1419 char *prefix;
1420{
1421 return NULL;
1422}
1423
1424/* Complete on filenames. */
1425char **
1426filename_completer (text, word)
1427 char *text;
1428 char *word;
1429{
1430 /* From readline. */
1431 extern char *filename_completion_function ();
1432 int subsequent_name;
1433 char **return_val;
1434 int return_val_used;
1435 int return_val_alloced;
1436
1437 return_val_used = 0;
1438 /* Small for testing. */
1439 return_val_alloced = 1;
1440 return_val = (char **) xmalloc (return_val_alloced * sizeof (char *));
1441
1442 subsequent_name = 0;
1443 while (1)
1444 {
1445 char *p;
1446 p = filename_completion_function (text, subsequent_name);
1447 if (return_val_used >= return_val_alloced)
1448 {
1449 return_val_alloced *= 2;
1450 return_val =
1451 (char **) xrealloc (return_val,
1452 return_val_alloced * sizeof (char *));
1453 }
1454 if (p == NULL)
1455 {
1456 return_val[return_val_used++] = p;
1457 break;
1458 }
1459 /* Like emacs, don't complete on old versions. Especially useful
1460 in the "source" command. */
1461 if (p[strlen (p) - 1] == '~')
1462 continue;
1463
1464 {
1465 char *q;
1466 if (word == text)
1467 /* Return exactly p. */
1468 return_val[return_val_used++] = p;
1469 else if (word > text)
1470 {
1471 /* Return some portion of p. */
1472 q = xmalloc (strlen (p) + 5);
1473 strcpy (q, p + (word - text));
1474 return_val[return_val_used++] = q;
1475 free (p);
1476 }
1477 else
1478 {
1479 /* Return some of TEXT plus p. */
1480 q = xmalloc (strlen (p) + (text - word) + 5);
1481 strncpy (q, word, text - word);
1482 q[text - word] = '\0';
1483 strcat (q, p);
1484 return_val[return_val_used++] = q;
1485 free (p);
1486 }
1487 }
1488 subsequent_name = 1;
1489 }
1490#if 0
1491 /* There is no way to do this just long enough to affect quote inserting
1492 without also affecting the next completion. This should be fixed in
1493 readline. FIXME. */
1494 /* Insure that readline does the right thing
1495 with respect to inserting quotes. */
1496 rl_completer_word_break_characters = "";
1497#endif
1498 return return_val;
1499}
1500
1501/* Here are some useful test cases for completion. FIXME: These should
1502 be put in the test suite. They should be tested with both M-? and TAB.
1503
1504 "show output-" "radix"
1505 "show output" "-radix"
1506 "p" ambiguous (commands starting with p--path, print, printf, etc.)
1507 "p " ambiguous (all symbols)
1508 "info t foo" no completions
1509 "info t " no completions
1510 "info t" ambiguous ("info target", "info terminal", etc.)
1511 "info ajksdlfk" no completions
1512 "info ajksdlfk " no completions
1513 "info" " "
1514 "info " ambiguous (all info commands)
1515 "p \"a" no completions (string constant)
1516 "p 'a" ambiguous (all symbols starting with a)
1517 "p b-a" ambiguous (all symbols starting with a)
1518 "p b-" ambiguous (all symbols)
1519 "file Make" "file" (word break hard to screw up here)
1520 "file ../gdb.stabs/we" "ird" (needs to not break word at slash)
1521 */
1522
1523/* Generate completions one by one for the completer. Each time we are
9ed8604f
PS
1524 called return another potential completion to the caller.
1525 line_completion just completes on commands or passes the buck to the
1526 command's completer function, the stuff specific to symbol completion
172559ec
JK
1527 is in make_symbol_completion_list.
1528
9ed8604f 1529 TEXT is the caller's idea of the "word" we are looking at.
172559ec
JK
1530
1531 MATCHES is the number of matches that have currently been collected from
1532 calling this completion function. When zero, then we need to initialize,
1533 otherwise the initialization has already taken place and we can just
1534 return the next potential completion string.
1535
9ed8604f
PS
1536 LINE_BUFFER is available to be looked at; it contains the entire text
1537 of the line. POINT is the offset in that line of the cursor. You
1538 should pretend that the line ends at POINT.
172559ec 1539
9ed8604f
PS
1540 Returns NULL if there are no more completions, else a pointer to a string
1541 which is a possible completion, it is the caller's responsibility to
1542 free the string. */
172559ec
JK
1543
1544static char *
9ed8604f 1545line_completion_function (text, matches, line_buffer, point)
172559ec
JK
1546 char *text;
1547 int matches;
9ed8604f
PS
1548 char *line_buffer;
1549 int point;
172559ec
JK
1550{
1551 static char **list = (char **)NULL; /* Cache of completions */
1552 static int index; /* Next cached completion */
1553 char *output = NULL;
1554 char *tmp_command, *p;
1555 /* Pointer within tmp_command which corresponds to text. */
1556 char *word;
1557 struct cmd_list_element *c, *result_list;
1558
1559 if (matches == 0)
1560 {
1561 /* The caller is beginning to accumulate a new set of completions, so
1562 we need to find all of them now, and cache them for returning one at
1563 a time on future calls. */
1564
1565 if (list)
1566 {
1567 /* Free the storage used by LIST, but not by the strings inside.
1568 This is because rl_complete_internal () frees the strings. */
1569 free ((PTR)list);
1570 }
1571 list = 0;
1572 index = 0;
1573
1574 /* Choose the default set of word break characters to break completions.
1575 If we later find out that we are doing completions on command strings
1576 (as opposed to strings supplied by the individual command completer
1577 functions, which can be any string) then we will switch to the
1578 special word break set for command strings, which leaves out the
1579 '-' character used in some commands. */
1580
1581 rl_completer_word_break_characters =
1582 gdb_completer_word_break_characters;
1583
1584 /* Decide whether to complete on a list of gdb commands or on symbols. */
9ed8604f 1585 tmp_command = (char *) alloca (point + 1);
172559ec
JK
1586 p = tmp_command;
1587
9ed8604f
PS
1588 strncpy (tmp_command, line_buffer, point);
1589 tmp_command[point] = '\0';
172559ec 1590 /* Since text always contains some number of characters leading up
9ed8604f 1591 to point, we can find the equivalent position in tmp_command
172559ec 1592 by subtracting that many characters from the end of tmp_command. */
9ed8604f 1593 word = tmp_command + point - strlen (text);
172559ec 1594
9ed8604f 1595 if (point == 0)
172559ec
JK
1596 {
1597 /* An empty line we want to consider ambiguous; that is, it
1598 could be any command. */
1599 c = (struct cmd_list_element *) -1;
1600 result_list = 0;
1601 }
1602 else
1603 {
1604 c = lookup_cmd_1 (&p, cmdlist, &result_list, 1);
1605 }
1606
1607 /* Move p up to the next interesting thing. */
1608 while (*p == ' ' || *p == '\t')
1609 {
1610 p++;
1611 }
1612
1613 if (!c)
1614 {
1615 /* It is an unrecognized command. So there are no
1616 possible completions. */
1617 list = NULL;
1618 }
1619 else if (c == (struct cmd_list_element *) -1)
1620 {
1621 char *q;
1622
1623 /* lookup_cmd_1 advances p up to the first ambiguous thing, but
1624 doesn't advance over that thing itself. Do so now. */
1625 q = p;
1626 while (*q && (isalnum (*q) || *q == '-' || *q == '_'))
1627 ++q;
9ed8604f 1628 if (q != tmp_command + point)
172559ec
JK
1629 {
1630 /* There is something beyond the ambiguous
1631 command, so there are no possible completions. For
1632 example, "info t " or "info t foo" does not complete
1633 to anything, because "info t" can be "info target" or
1634 "info terminal". */
1635 list = NULL;
1636 }
1637 else
1638 {
1639 /* We're trying to complete on the command which was ambiguous.
1640 This we can deal with. */
1641 if (result_list)
1642 {
1643 list = complete_on_cmdlist (*result_list->prefixlist, p,
1644 word);
1645 }
1646 else
1647 {
1648 list = complete_on_cmdlist (cmdlist, p, word);
1649 }
1650 /* Insure that readline does the right thing with respect to
1651 inserting quotes. */
1652 rl_completer_word_break_characters =
1653 gdb_completer_command_word_break_characters;
1654 }
1655 }
1656 else
1657 {
1658 /* We've recognized a full command. */
1659
9ed8604f 1660 if (p == tmp_command + point)
172559ec
JK
1661 {
1662 /* There is no non-whitespace in the line beyond the command. */
1663
1664 if (p[-1] == ' ' || p[-1] == '\t')
1665 {
1666 /* The command is followed by whitespace; we need to complete
1667 on whatever comes after command. */
1668 if (c->prefixlist)
1669 {
1670 /* It is a prefix command; what comes after it is
1671 a subcommand (e.g. "info "). */
1672 list = complete_on_cmdlist (*c->prefixlist, p, word);
1673
1674 /* Insure that readline does the right thing
1675 with respect to inserting quotes. */
1676 rl_completer_word_break_characters =
1677 gdb_completer_command_word_break_characters;
1678 }
09374c98
SG
1679 else if (c->enums)
1680 {
1681 list = complete_on_enum (c->enums, p, word);
1682 rl_completer_word_break_characters =
1683 gdb_completer_command_word_break_characters;
1684 }
172559ec
JK
1685 else
1686 {
1687 /* It is a normal command; what comes after it is
1688 completed by the command's completer function. */
1689 list = (*c->completer) (p, word);
1690 }
1691 }
1692 else
1693 {
1694 /* The command is not followed by whitespace; we need to
1695 complete on the command itself. e.g. "p" which is a
1696 command itself but also can complete to "print", "ptype"
1697 etc. */
1698 char *q;
1699
1700 /* Find the command we are completing on. */
1701 q = p;
1702 while (q > tmp_command)
1703 {
1704 if (isalnum (q[-1]) || q[-1] == '-' || q[-1] == '_')
1705 --q;
1706 else
1707 break;
1708 }
1709
1710 list = complete_on_cmdlist (result_list, q, word);
1711
1712 /* Insure that readline does the right thing
1713 with respect to inserting quotes. */
1714 rl_completer_word_break_characters =
1715 gdb_completer_command_word_break_characters;
1716 }
1717 }
1718 else
1719 {
1720 /* There is non-whitespace beyond the command. */
1721
1722 if (c->prefixlist && !c->allow_unknown)
1723 {
1724 /* It is an unrecognized subcommand of a prefix command,
1725 e.g. "info adsfkdj". */
1726 list = NULL;
1727 }
09374c98
SG
1728 else if (c->enums)
1729 {
1730 list = complete_on_enum (c->enums, p, word);
1731 }
172559ec
JK
1732 else
1733 {
1734 /* It is a normal command. */
1735 list = (*c->completer) (p, word);
1736 }
1737 }
1738 }
1739 }
1740
1741 /* If we found a list of potential completions during initialization then
1742 dole them out one at a time. The vector of completions is NULL
1743 terminated, so after returning the last one, return NULL (and continue
1744 to do so) each time we are called after that, until a new list is
1745 available. */
1746
1747 if (list)
1748 {
1749 output = list[index];
1750 if (output)
1751 {
1752 index++;
1753 }
1754 }
1755
1756#if 0
1757 /* Can't do this because readline hasn't yet checked the word breaks
1758 for figuring out whether to insert a quote. */
1759 if (output == NULL)
1760 /* Make sure the word break characters are set back to normal for the
1761 next time that readline tries to complete something. */
1762 rl_completer_word_break_characters =
1763 gdb_completer_word_break_characters;
1764#endif
1765
1766 return (output);
1767}
1768
9ed8604f
PS
1769/* Line completion interface function for readline. */
1770
1771static char *
1772readline_line_completion_function (text, matches)
1773 char *text;
1774 int matches;
1775{
1776 return line_completion_function (text, matches, rl_line_buffer, rl_point);
1777}
1778
172559ec
JK
1779/* Skip over a possibly quoted word (as defined by the quote characters
1780 and word break characters the completer uses). Returns pointer to the
1781 location after the "word". */
1782
1783char *
1784skip_quoted (str)
1785 char *str;
1786{
1787 char quote_char = '\0';
1788 char *scan;
1789
1790 for (scan = str; *scan != '\0'; scan++)
1791 {
1792 if (quote_char != '\0')
1793 {
1794 /* Ignore everything until the matching close quote char */
1795 if (*scan == quote_char)
1796 {
1797 /* Found matching close quote. */
1798 scan++;
1799 break;
1800 }
1801 }
1802 else if (strchr (gdb_completer_quote_characters, *scan))
1803 {
1804 /* Found start of a quoted string. */
1805 quote_char = *scan;
1806 }
1807 else if (strchr (gdb_completer_word_break_characters, *scan))
1808 {
1809 break;
1810 }
1811 }
1812 return (scan);
1813}
1814
1815\f
1816#ifdef STOP_SIGNAL
1817static void
1818stop_sig (signo)
1819int signo;
1820{
1821#if STOP_SIGNAL == SIGTSTP
1822 signal (SIGTSTP, SIG_DFL);
1823 sigsetmask (0);
1824 kill (getpid (), SIGTSTP);
1825 signal (SIGTSTP, stop_sig);
1826#else
1827 signal (STOP_SIGNAL, stop_sig);
1828#endif
1829 printf_unfiltered ("%s", prompt);
1830 gdb_flush (gdb_stdout);
1831
1832 /* Forget about any previous command -- null line now will do nothing. */
1833 dont_repeat ();
1834}
1835#endif /* STOP_SIGNAL */
1836
1837/* Initialize signal handlers. */
1838static void
1839do_nothing (signo)
1840int signo;
1841{
1842}
1843
1844static void
1845init_signals ()
1846{
1847 signal (SIGINT, request_quit);
1848
255181a9
PS
1849 /* If SIGTRAP was set to SIG_IGN, then the SIG_IGN will get passed
1850 to the inferior and breakpoints will be ignored. */
1851#ifdef SIGTRAP
1852 signal (SIGTRAP, SIG_DFL);
1853#endif
1854
172559ec
JK
1855 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
1856 passed to the inferior, which we don't want. It would be
1857 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
1858 on BSD4.3 systems using vfork, that can affect the
1859 GDB process as well as the inferior (the signal handling tables
1860 might be in memory, shared between the two). Since we establish
1861 a handler for SIGQUIT, when we call exec it will set the signal
1862 to SIG_DFL for us. */
1863 signal (SIGQUIT, do_nothing);
1864 if (signal (SIGHUP, do_nothing) != SIG_IGN)
1865 signal (SIGHUP, disconnect);
1866 signal (SIGFPE, float_handler);
1867
1868#if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1869 signal (SIGWINCH, SIGWINCH_HANDLER);
1870#endif
1871}
1872\f
1873/* Read one line from the command input stream `instream'
1874 into the local static buffer `linebuffer' (whose current length
1875 is `linelength').
1876 The buffer is made bigger as necessary.
1877 Returns the address of the start of the line.
1878
1879 NULL is returned for end of file.
1880
1881 *If* the instream == stdin & stdin is a terminal, the line read
1882 is copied into the file line saver (global var char *line,
1883 length linesize) so that it can be duplicated.
1884
1885 This routine either uses fancy command line editing or
1886 simple input as the user has requested. */
1887
1888char *
1889command_line_input (prrompt, repeat, annotation_suffix)
1890 char *prrompt;
1891 int repeat;
1892 char *annotation_suffix;
1893{
1894 static char *linebuffer = 0;
1895 static unsigned linelength = 0;
1896 register char *p;
1897 char *p1;
1898 char *rl;
1899 char *local_prompt = prrompt;
172559ec
JK
1900 char *nline;
1901 char got_eof = 0;
1902
dfb14bc8
SS
1903 /* The annotation suffix must be non-NULL. */
1904 if (annotation_suffix == NULL)
1905 annotation_suffix = "";
1906
172559ec
JK
1907 if (annotation_level > 1 && instream == stdin)
1908 {
1909 local_prompt = alloca ((prrompt == NULL ? 0 : strlen (prrompt))
1910 + strlen (annotation_suffix) + 40);
1911 if (prrompt == NULL)
1912 local_prompt[0] = '\0';
1913 else
1914 strcpy (local_prompt, prrompt);
1915 strcat (local_prompt, "\n\032\032");
1916 strcat (local_prompt, annotation_suffix);
1917 strcat (local_prompt, "\n");
1918 }
1919
1920 if (linebuffer == 0)
1921 {
1922 linelength = 80;
1923 linebuffer = (char *) xmalloc (linelength);
1924 }
1925
1926 p = linebuffer;
1927
1928 /* Control-C quits instantly if typed while in this loop
1929 since it should not wait until the user types a newline. */
1930 immediate_quit++;
1931#ifdef STOP_SIGNAL
1932 if (job_control)
1933 signal (STOP_SIGNAL, stop_sig);
1934#endif
1935
1936 while (1)
1937 {
1938 /* Make sure that all output has been output. Some machines may let
1939 you get away with leaving out some of the gdb_flush, but not all. */
1940 wrap_here ("");
1941 gdb_flush (gdb_stdout);
1942 gdb_flush (gdb_stderr);
1943
1944 if (source_file_name != NULL)
1945 {
1946 ++source_line_number;
1947 sprintf (source_error,
1948 "%s%s:%d: Error in sourced command file:\n",
1949 source_pre_error,
1950 source_file_name,
1951 source_line_number);
1952 error_pre_print = source_error;
1953 }
1954
1955 if (annotation_level > 1 && instream == stdin)
1956 {
1957 printf_unfiltered ("\n\032\032pre-");
1958 printf_unfiltered (annotation_suffix);
1959 printf_unfiltered ("\n");
1960 }
1961
1962 /* Don't use fancy stuff if not talking to stdin. */
1963 if (command_editing_p && instream == stdin
1964 && ISATTY (instream))
1965 rl = readline (local_prompt);
1966 else
1967 rl = gdb_readline (local_prompt);
1968
1969 if (annotation_level > 1 && instream == stdin)
1970 {
1971 printf_unfiltered ("\n\032\032post-");
1972 printf_unfiltered (annotation_suffix);
1973 printf_unfiltered ("\n");
1974 }
1975
1976 if (!rl || rl == (char *) EOF)
1977 {
1978 got_eof = 1;
1979 break;
1980 }
1981 if (strlen(rl) + 1 + (p - linebuffer) > linelength)
1982 {
1983 linelength = strlen(rl) + 1 + (p - linebuffer);
1984 nline = (char *) xrealloc (linebuffer, linelength);
1985 p += nline - linebuffer;
1986 linebuffer = nline;
1987 }
1988 p1 = rl;
1989 /* Copy line. Don't copy null at end. (Leaves line alone
1990 if this was just a newline) */
1991 while (*p1)
1992 *p++ = *p1++;
1993
1994 free (rl); /* Allocated in readline. */
1995
1996 if (p == linebuffer || *(p - 1) != '\\')
1997 break;
1998
1999 p--; /* Put on top of '\'. */
2000 local_prompt = (char *) 0;
2001 }
2002
2003#ifdef STOP_SIGNAL
2004 if (job_control)
2005 signal (STOP_SIGNAL, SIG_DFL);
2006#endif
2007 immediate_quit--;
2008
2009 if (got_eof)
2010 return NULL;
2011
2012#define SERVER_COMMAND_LENGTH 7
2013 server_command =
2014 (p - linebuffer > SERVER_COMMAND_LENGTH)
2015 && STREQN (linebuffer, "server ", SERVER_COMMAND_LENGTH);
2016 if (server_command)
2017 {
2018 /* Note that we don't set `line'. Between this and the check in
2019 dont_repeat, this insures that repeating will still do the
2020 right thing. */
2021 *p = '\0';
2022 return linebuffer + SERVER_COMMAND_LENGTH;
2023 }
2024
2025 /* Do history expansion if that is wished. */
2026 if (history_expansion_p && instream == stdin
2027 && ISATTY (instream))
2028 {
2029 char *history_value;
2030 int expanded;
2031
2032 *p = '\0'; /* Insert null now. */
2033 expanded = history_expand (linebuffer, &history_value);
2034 if (expanded)
2035 {
2036 /* Print the changes. */
2037 printf_unfiltered ("%s\n", history_value);
2038
2039 /* If there was an error, call this function again. */
2040 if (expanded < 0)
2041 {
2042 free (history_value);
2043 return command_line_input (prrompt, repeat, annotation_suffix);
2044 }
2045 if (strlen (history_value) > linelength)
2046 {
2047 linelength = strlen (history_value) + 1;
2048 linebuffer = (char *) xrealloc (linebuffer, linelength);
2049 }
2050 strcpy (linebuffer, history_value);
2051 p = linebuffer + strlen(linebuffer);
2052 free (history_value);
2053 }
2054 }
2055
2056 /* If we just got an empty line, and that is supposed
2057 to repeat the previous command, return the value in the
2058 global buffer. */
f2ed3a80
PB
2059 if (repeat && p == linebuffer)
2060 return line;
2061 for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++) ;
2062 if (repeat && !*p1)
2063 return line;
172559ec
JK
2064
2065 *p = 0;
2066
2067 /* Add line to history if appropriate. */
2068 if (instream == stdin
2069 && ISATTY (stdin) && *linebuffer)
2070 add_history (linebuffer);
2071
2072 /* Note: lines consisting solely of comments are added to the command
2073 history. This is useful when you type a command, and then
2074 realize you don't want to execute it quite yet. You can comment
2075 out the command and then later fetch it from the value history
2076 and remove the '#'. The kill ring is probably better, but some
2077 people are in the habit of commenting things out. */
f2ed3a80
PB
2078 if (*p1 == '#')
2079 *p1 = '\0'; /* Found a comment. */
172559ec
JK
2080
2081 /* Save into global buffer if appropriate. */
2082 if (repeat)
2083 {
2084 if (linelength > linesize)
2085 {
2086 line = xrealloc (line, linelength);
2087 linesize = linelength;
2088 }
2089 strcpy (line, linebuffer);
2090 return line;
2091 }
2092
2093 return linebuffer;
2094}
2095\f
e52bfe0c
JL
2096
2097/* Expand the body_list of COMMAND so that it can hold NEW_LENGTH
2098 code bodies. This is typically used when we encounter an "else"
2099 clause for an "if" command. */
2100
2101static void
2102realloc_body_list (command, new_length)
2103 struct command_line *command;
2104 int new_length;
2105{
2106 int n;
2107 struct command_line **body_list;
2108
2109 n = command->body_count;
2110
2111 /* Nothing to do? */
2112 if (new_length <= n)
2113 return;
2114
2115 body_list = (struct command_line **)
2116 xmalloc (sizeof (struct command_line *) * new_length);
2117
2118 memcpy (body_list, command->body_list, sizeof (struct command_line *) * n);
2119
2120 free (command->body_list);
2121 command->body_list = body_list;
2122 command->body_count = new_length;
2123}
2124
2125/* Read one line from the input stream. If the command is an "else" or
2126 "end", return such an indication to the caller. */
2127
2128static enum misc_command_type
2129read_next_line (command)
2130 struct command_line **command;
2131{
2132 char *p, *p1, *prompt_ptr, control_prompt[256];
2133 int i = 0;
2134
2135 if (control_level >= 254)
2136 error ("Control nesting too deep!\n");
2137
2138 /* Set a prompt based on the nesting of the control commands. */
2139 if (instream == stdin)
2140 {
2141 for (i = 0; i < control_level; i++)
2142 control_prompt[i] = ' ';
2143 control_prompt[i] = '>';
2144 control_prompt[i+1] = '\0';
2145 prompt_ptr = (char *)&control_prompt[0];
2146 }
2147 else
2148 prompt_ptr = NULL;
2149
e04f8901 2150 p = command_line_input (prompt_ptr, instream == stdin, "commands");
e52bfe0c
JL
2151
2152 /* Not sure what to do here. */
2153 if (p == NULL)
2154 return end_command;
2155
2156 /* Strip leading and trailing whitespace. */
2157 while (*p == ' ' || *p == '\t')
2158 p++;
2159
2160 p1 = p + strlen (p);
2161 while (p1 != p && (p1[-1] == ' ' || p1[-1] == '\t'))
2162 p1--;
2163
2164 /* Blanks and comments don't really do anything, but we need to
2165 distinguish them from else, end and other commands which can be
2166 executed. */
2167 if (p1 == p || p[0] == '#')
2168 return nop_command;
2169
2170 /* Is this the end of a simple, while, or if control structure? */
2171 if (p1 - p == 3 && !strncmp (p, "end", 3))
2172 return end_command;
2173
2174 /* Is the else clause of an if control structure? */
2175 if (p1 - p == 4 && !strncmp (p, "else", 4))
2176 return else_command;
2177
2178 /* Check for while, if, break, continue, etc and build a new command
2179 line structure for them. */
2180 if (p1 - p > 5 && !strncmp (p, "while", 5))
2181 *command = build_command_line (while_control, p + 6);
2182 else if (p1 - p > 2 && !strncmp (p, "if", 2))
2183 *command = build_command_line (if_control, p + 3);
2184 else if (p1 - p == 5 && !strncmp (p, "loop_break", 5))
2185 {
2186 *command = (struct command_line *)
2187 xmalloc (sizeof (struct command_line));
2188 (*command)->next = NULL;
2189 (*command)->line = NULL;
2190 (*command)->control_type = break_control;
2191 (*command)->body_count = 0;
2192 (*command)->body_list = NULL;
2193 }
2194 else if (p1 - p == 8 && !strncmp (p, "loop_continue", 8))
2195 {
2196 *command = (struct command_line *)
2197 xmalloc (sizeof (struct command_line));
2198 (*command)->next = NULL;
2199 (*command)->line = NULL;
2200 (*command)->control_type = continue_control;
2201 (*command)->body_count = 0;
2202 (*command)->body_list = NULL;
2203 }
2204 else
2205 {
2206 /* A normal command. */
2207 *command = (struct command_line *)
2208 xmalloc (sizeof (struct command_line));
2209 (*command)->next = NULL;
2210 (*command)->line = savestring (p, p1 - p);
2211 (*command)->control_type = simple_control;
2212 (*command)->body_count = 0;
2213 (*command)->body_list = NULL;
2214 }
2215
2216 /* Nothing special. */
2217 return ok_command;
2218}
2219
2220/* Recursively read in the control structures and create a command_line
2221 tructure from them.
2222
2223 The parent_control parameter is the control structure in which the
2224 following commands are nested. */
2225
2226static enum command_control_type
2227recurse_read_control_structure (current_cmd)
2228 struct command_line *current_cmd;
2229{
2230 int current_body, i;
2231 enum misc_command_type val;
2232 enum command_control_type ret;
2233 struct command_line **body_ptr, *child_tail, *next;
e52bfe0c 2234
e52bfe0c
JL
2235 child_tail = NULL;
2236 current_body = 1;
2237
2238 /* Sanity checks. */
2239 if (current_cmd->control_type == simple_control)
2240 {
2241 error ("Recursed on a simple control type\n");
2242 return invalid_control;
2243 }
2244
2245 if (current_body > current_cmd->body_count)
2246 {
2247 error ("Allocated body is smaller than this command type needs\n");
2248 return invalid_control;
2249 }
2250
2251 /* Read lines from the input stream and build control structures. */
2252 while (1)
2253 {
2254 dont_repeat ();
2255
2256 next = NULL;
2257 val = read_next_line (&next);
2258
2259 /* Just skip blanks and comments. */
2260 if (val == nop_command)
2261 continue;
2262
2263 if (val == end_command)
2264 {
2265 if (current_cmd->control_type == while_control
2266 || current_cmd->control_type == if_control)
2267 {
2268 /* Success reading an entire control structure. */
2269 ret = simple_control;
2270 break;
2271 }
2272 else
2273 {
2274 ret = invalid_control;
2275 break;
2276 }
2277 }
2278
2279 /* Not the end of a control structure. */
2280 if (val == else_command)
2281 {
2282 if (current_cmd->control_type == if_control
2283 && current_body == 1)
2284 {
2285 realloc_body_list (current_cmd, 2);
2286 current_body = 2;
2287 child_tail = NULL;
2288 continue;
2289 }
2290 else
2291 {
2292 ret = invalid_control;
2293 break;
2294 }
2295 }
2296
2297 if (child_tail)
2298 {
2299 child_tail->next = next;
2300 }
2301 else
2302 {
e52bfe0c
JL
2303 body_ptr = current_cmd->body_list;
2304 for (i = 1; i < current_body; i++)
2305 body_ptr++;
2306
2307 *body_ptr = next;
2308
e52bfe0c
JL
2309 }
2310
2311 child_tail = next;
2312
2313 /* If the latest line is another control structure, then recurse
2314 on it. */
2315 if (next->control_type == while_control
2316 || next->control_type == if_control)
2317 {
2318 control_level++;
2319 ret = recurse_read_control_structure (next);
2320 control_level--;
2321
2322 if (ret != simple_control)
2323 break;
2324 }
2325 }
2326
2327 dont_repeat ();
e52bfe0c
JL
2328
2329 return ret;
2330}
2331
2332
172559ec
JK
2333/* Read lines from the input stream
2334 and accumulate them in a chain of struct command_line's
2335 which is then returned. */
2336
2337struct command_line *
2338read_command_lines ()
2339{
e52bfe0c
JL
2340 struct command_line *head, *tail, *next;
2341 struct cleanup *old_chain;
2342 enum command_control_type ret;
2343 enum misc_command_type val;
2344
2345 head = tail = NULL;
2346 old_chain = NULL;
172559ec
JK
2347
2348 while (1)
2349 {
e52bfe0c 2350 val = read_next_line (&next);
172559ec 2351
e52bfe0c
JL
2352 /* Ignore blank lines or comments. */
2353 if (val == nop_command)
2354 continue;
2355
2356 if (val == end_command)
2357 {
2358 ret = simple_control;
2359 break;
2360 }
2361
2362 if (val != ok_command)
2363 {
2364 ret = invalid_control;
2365 break;
2366 }
2367
2368 if (next->control_type == while_control
2369 || next->control_type == if_control)
2370 {
2371 control_level++;
2372 ret = recurse_read_control_structure (next);
2373 control_level--;
172559ec 2374
e52bfe0c
JL
2375 if (ret == invalid_control)
2376 break;
2377 }
2378
172559ec
JK
2379 if (tail)
2380 {
2381 tail->next = next;
2382 }
2383 else
2384 {
e52bfe0c
JL
2385 head = next;
2386 old_chain = make_cleanup (free_command_lines, &head);
172559ec
JK
2387 }
2388 tail = next;
2389 }
2390
2391 dont_repeat ();
2392
e52bfe0c
JL
2393 if (head)
2394 {
2395 if (ret != invalid_control)
2396 {
2397 discard_cleanups (old_chain);
2398 return head;
2399 }
2400 else
2401 do_cleanups (old_chain);
2402 }
2403
2404 return NULL;
172559ec
JK
2405}
2406
2407/* Free a chain of struct command_line's. */
2408
2409void
2410free_command_lines (lptr)
2411 struct command_line **lptr;
2412{
2413 register struct command_line *l = *lptr;
2414 register struct command_line *next;
e52bfe0c
JL
2415 struct command_line **blist;
2416 int i;
172559ec
JK
2417
2418 while (l)
2419 {
e52bfe0c
JL
2420 if (l->body_count > 0)
2421 {
2422 blist = l->body_list;
2423 for (i = 0; i < l->body_count; i++, blist++)
2424 free_command_lines (blist);
2425 }
172559ec
JK
2426 next = l->next;
2427 free (l->line);
2428 free ((PTR)l);
2429 l = next;
2430 }
2431}
2432\f
2433/* Add an element to the list of info subcommands. */
2434
2435void
2436add_info (name, fun, doc)
2437 char *name;
2438 void (*fun) PARAMS ((char *, int));
2439 char *doc;
2440{
2441 add_cmd (name, no_class, fun, doc, &infolist);
2442}
2443
2444/* Add an alias to the list of info subcommands. */
2445
2446void
2447add_info_alias (name, oldname, abbrev_flag)
2448 char *name;
2449 char *oldname;
2450 int abbrev_flag;
2451{
2452 add_alias_cmd (name, oldname, 0, abbrev_flag, &infolist);
2453}
2454
2455/* The "info" command is defined as a prefix, with allow_unknown = 0.
2456 Therefore, its own definition is called only for "info" with no args. */
2457
2458/* ARGSUSED */
2459static void
2460info_command (arg, from_tty)
2461 char *arg;
2462 int from_tty;
2463{
2464 printf_unfiltered ("\"info\" must be followed by the name of an info command.\n");
2465 help_list (infolist, "info ", -1, gdb_stdout);
2466}
2467
2468/* The "complete" command is used by Emacs to implement completion. */
2469
2470/* ARGSUSED */
2471static void
2472complete_command (arg, from_tty)
2473 char *arg;
2474 int from_tty;
2475{
2476 int i;
9ed8604f 2477 int argpoint;
172559ec
JK
2478 char *completion;
2479
2480 dont_repeat ();
2481
2482 if (arg == NULL)
9ed8604f
PS
2483 arg = "";
2484 argpoint = strlen (arg);
172559ec 2485
9ed8604f 2486 for (completion = line_completion_function (arg, i = 0, arg, argpoint);
172559ec 2487 completion;
9ed8604f
PS
2488 completion = line_completion_function (arg, ++i, arg, argpoint))
2489 {
2490 printf_unfiltered ("%s\n", completion);
2491 free (completion);
2492 }
172559ec
JK
2493}
2494
2495/* The "show" command with no arguments shows all the settings. */
2496
2497/* ARGSUSED */
2498static void
2499show_command (arg, from_tty)
2500 char *arg;
2501 int from_tty;
2502{
2503 cmd_show_list (showlist, from_tty, "");
2504}
2505\f
2506/* Add an element to the list of commands. */
2507
2508void
2509add_com (name, class, fun, doc)
2510 char *name;
2511 enum command_class class;
2512 void (*fun) PARAMS ((char *, int));
2513 char *doc;
2514{
2515 add_cmd (name, class, fun, doc, &cmdlist);
2516}
2517
2518/* Add an alias or abbreviation command to the list of commands. */
2519
2520void
2521add_com_alias (name, oldname, class, abbrev_flag)
2522 char *name;
2523 char *oldname;
2524 enum command_class class;
2525 int abbrev_flag;
2526{
2527 add_alias_cmd (name, oldname, class, abbrev_flag, &cmdlist);
2528}
2529
2530void
2531error_no_arg (why)
2532 char *why;
2533{
2534 error ("Argument required (%s).", why);
2535}
2536
2537/* ARGSUSED */
2538static void
2539help_command (command, from_tty)
2540 char *command;
2541 int from_tty; /* Ignored */
2542{
2543 help_cmd (command, gdb_stdout);
2544}
2545\f
2546static void
2547validate_comname (comname)
2548 char *comname;
2549{
2550 register char *p;
2551
2552 if (comname == 0)
2553 error_no_arg ("name of command to define");
2554
2555 p = comname;
2556 while (*p)
2557 {
080868b4 2558 if (!isalnum(*p) && *p != '-' && *p != '_')
172559ec
JK
2559 error ("Junk in argument list: \"%s\"", p);
2560 p++;
2561 }
2562}
2563
2564/* This is just a placeholder in the command data structures. */
2565static void
2566user_defined_command (ignore, from_tty)
2567 char *ignore;
2568 int from_tty;
2569{
2570}
2571
2572static void
2573define_command (comname, from_tty)
2574 char *comname;
2575 int from_tty;
2576{
2577 register struct command_line *cmds;
2578 register struct cmd_list_element *c, *newc, *hookc = 0;
2579 char *tem = comname;
2580#define HOOK_STRING "hook-"
2581#define HOOK_LEN 5
2582
2583 validate_comname (comname);
2584
2585 /* Look it up, and verify that we got an exact match. */
2586 c = lookup_cmd (&tem, cmdlist, "", -1, 1);
2587 if (c && !STREQ (comname, c->name))
2588 c = 0;
e52bfe0c 2589
172559ec
JK
2590 if (c)
2591 {
2592 if (c->class == class_user || c->class == class_alias)
2593 tem = "Redefine command \"%s\"? ";
2594 else
2595 tem = "Really redefine built-in command \"%s\"? ";
2596 if (!query (tem, c->name))
2597 error ("Command \"%s\" not redefined.", c->name);
2598 }
2599
2600 /* If this new command is a hook, then mark the command which it
2601 is hooking. Note that we allow hooking `help' commands, so that
2602 we can hook the `stop' pseudo-command. */
2603
2604 if (!strncmp (comname, HOOK_STRING, HOOK_LEN))
2605 {
2606 /* Look up cmd it hooks, and verify that we got an exact match. */
2607 tem = comname+HOOK_LEN;
2608 hookc = lookup_cmd (&tem, cmdlist, "", -1, 0);
2609 if (hookc && !STREQ (comname+HOOK_LEN, hookc->name))
2610 hookc = 0;
2611 if (!hookc)
2612 {
2613 warning ("Your new `%s' command does not hook any existing command.",
2614 comname);
e3033bb0 2615 if (!query ("Proceed? "))
172559ec
JK
2616 error ("Not confirmed.");
2617 }
2618 }
2619
2620 comname = savestring (comname, strlen (comname));
2621
e52bfe0c 2622 /* If the rest of the commands will be case insensitive, this one
172559ec
JK
2623 should behave in the same manner. */
2624 for (tem = comname; *tem; tem++)
2625 if (isupper(*tem)) *tem = tolower(*tem);
2626
2627 if (from_tty)
2628 {
2629 printf_unfiltered ("Type commands for definition of \"%s\".\n\
2630End with a line saying just \"end\".\n", comname);
2631 gdb_flush (gdb_stdout);
2632 }
2633
e52bfe0c 2634 control_level = 0;
172559ec
JK
2635 cmds = read_command_lines ();
2636
2637 if (c && c->class == class_user)
2638 free_command_lines (&c->user_commands);
2639
2640 newc = add_cmd (comname, class_user, user_defined_command,
2641 (c && c->class == class_user)
2642 ? c->doc : savestring ("User-defined.", 13), &cmdlist);
2643 newc->user_commands = cmds;
2644
2645 /* If this new command is a hook, then mark both commands as being
2646 tied. */
2647 if (hookc)
2648 {
2649 hookc->hook = newc; /* Target gets hooked. */
2650 newc->hookee = hookc; /* We are marked as hooking target cmd. */
2651 }
2652}
2653
2654static void
2655document_command (comname, from_tty)
2656 char *comname;
2657 int from_tty;
2658{
2659 struct command_line *doclines;
2660 register struct cmd_list_element *c;
2661 char *tem = comname;
2662
2663 validate_comname (comname);
2664
2665 c = lookup_cmd (&tem, cmdlist, "", 0, 1);
2666
2667 if (c->class != class_user)
2668 error ("Command \"%s\" is built-in.", comname);
2669
2670 if (from_tty)
2671 printf_unfiltered ("Type documentation for \"%s\".\n\
2672End with a line saying just \"end\".\n", comname);
2673
2674 doclines = read_command_lines ();
2675
2676 if (c->doc) free (c->doc);
2677
2678 {
2679 register struct command_line *cl1;
2680 register int len = 0;
2681
2682 for (cl1 = doclines; cl1; cl1 = cl1->next)
2683 len += strlen (cl1->line) + 1;
2684
2685 c->doc = (char *) xmalloc (len + 1);
2686 *c->doc = 0;
2687
2688 for (cl1 = doclines; cl1; cl1 = cl1->next)
2689 {
2690 strcat (c->doc, cl1->line);
2691 if (cl1->next)
2692 strcat (c->doc, "\n");
2693 }
2694 }
2695
2696 free_command_lines (&doclines);
2697}
2698\f
2699void
2700print_gnu_advertisement ()
2701{
2702 printf_unfiltered ("\
2703GDB is free software and you are welcome to distribute copies of it\n\
2704 under certain conditions; type \"show copying\" to see the conditions.\n\
2705There is absolutely no warranty for GDB; type \"show warranty\" for details.\n\
2706");
2707}
2708
2709void
2710print_gdb_version (stream)
2711 GDB_FILE *stream;
2712{
2713 fprintf_filtered (stream, "\
2714GDB %s (%s", version, host_name);
2715
2716 if (!STREQ (host_name, target_name))
2717 fprintf_filtered (stream, " --target %s", target_name);
2718
2719 fprintf_filtered (stream, "), ");
2720 wrap_here("");
f935141e 2721 fprintf_filtered (stream, "Copyright 1996 Free Software Foundation, Inc.");
172559ec
JK
2722}
2723
2724/* ARGSUSED */
2725static void
2726show_version (args, from_tty)
2727 char *args;
2728 int from_tty;
2729{
2730 immediate_quit++;
2731 print_gnu_advertisement ();
2732 print_gdb_version (gdb_stdout);
2733 printf_filtered ("\n");
2734 immediate_quit--;
2735}
2736\f
2737/* xgdb calls this to reprint the usual GDB prompt. Obsolete now that xgdb
2738 is obsolete. */
2739
2740void
2741print_prompt ()
2742{
2743 printf_unfiltered ("%s", prompt);
2744 gdb_flush (gdb_stdout);
2745}
2746\f
2747void
2748quit_command (args, from_tty)
2749 char *args;
2750 int from_tty;
2751{
641c7fdf
SS
2752 int exit_code = 0;
2753
2754 /* An optional expression may be used to cause gdb to terminate with the
2755 value of that expression. */
2756 if (args)
2757 {
2758 value_ptr val = parse_and_eval (args);
2759
2760 exit_code = (int) value_as_long (val);
2761 }
2762
172559ec
JK
2763 if (inferior_pid != 0 && target_has_execution)
2764 {
2765 if (attach_flag)
2766 {
2767 if (query ("The program is running. Quit anyway (and detach it)? "))
2768 target_detach (args, from_tty);
2769 else
2770 error ("Not confirmed.");
2771 }
2772 else
2773 {
2774 if (query ("The program is running. Quit anyway (and kill it)? "))
2775 target_kill ();
2776 else
2777 error ("Not confirmed.");
2778 }
2779 }
2780 /* UDI wants this, to kill the TIP. */
2781 target_close (1);
2782
2783 /* Save the history information if it is appropriate to do so. */
2784 if (write_history_p && history_filename)
2785 write_history (history_filename);
2786
641c7fdf 2787 exit (exit_code);
172559ec
JK
2788}
2789
2790/* Returns whether GDB is running on a terminal and whether the user
2791 desires that questions be asked of them on that terminal. */
2792
2793int
2794input_from_terminal_p ()
2795{
2796 return gdb_has_a_terminal () && (instream == stdin) & caution;
2797}
2798\f
2799/* ARGSUSED */
2800static void
2801pwd_command (args, from_tty)
2802 char *args;
2803 int from_tty;
2804{
2805 if (args) error ("The \"pwd\" command does not take an argument: %s", args);
b7ec5b8d 2806 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
172559ec 2807
b7ec5b8d 2808 if (!STREQ (gdb_dirbuf, current_directory))
172559ec 2809 printf_unfiltered ("Working directory %s\n (canonically %s).\n",
b7ec5b8d 2810 current_directory, gdb_dirbuf);
172559ec
JK
2811 else
2812 printf_unfiltered ("Working directory %s.\n", current_directory);
2813}
2814
2815void
2816cd_command (dir, from_tty)
2817 char *dir;
2818 int from_tty;
2819{
2820 int len;
2821 /* Found something other than leading repetitions of "/..". */
2822 int found_real_path;
2823 char *p;
2824
2825 /* If the new directory is absolute, repeat is a no-op; if relative,
2826 repeat might be useful but is more likely to be a mistake. */
2827 dont_repeat ();
2828
2829 if (dir == 0)
2830 error_no_arg ("new working directory");
2831
2832 dir = tilde_expand (dir);
2833 make_cleanup (free, dir);
2834
2835 if (chdir (dir) < 0)
2836 perror_with_name (dir);
2837
2838 len = strlen (dir);
2e1cc801
SS
2839 dir = savestring (dir, len - (len > 1 && SLASH_P(dir[len-1])));
2840 if (ROOTED_P(dir))
172559ec
JK
2841 current_directory = dir;
2842 else
2843 {
2e1cc801 2844 if (SLASH_P (current_directory[0]) && current_directory[1] == '\0')
172559ec
JK
2845 current_directory = concat (current_directory, dir, NULL);
2846 else
2e1cc801 2847 current_directory = concat (current_directory, SLASH_STRING, dir, NULL);
172559ec
JK
2848 free (dir);
2849 }
2850
2851 /* Now simplify any occurrences of `.' and `..' in the pathname. */
2852
2853 found_real_path = 0;
2854 for (p = current_directory; *p;)
2855 {
2e1cc801 2856 if (SLASH_P (p[0]) && p[1] == '.' && (p[2] == 0 || SLASH_P (p[2])))
172559ec 2857 strcpy (p, p + 2);
2e1cc801
SS
2858 else if (SLASH_P (p[0]) && p[1] == '.' && p[2] == '.'
2859 && (p[3] == 0 || SLASH_P (p[3])))
172559ec
JK
2860 {
2861 if (found_real_path)
2862 {
2863 /* Search backwards for the directory just before the "/.."
2864 and obliterate it and the "/..". */
2865 char *q = p;
2e1cc801 2866 while (q != current_directory && ! SLASH_P (q[-1]))
172559ec
JK
2867 --q;
2868
2869 if (q == current_directory)
2870 /* current_directory is
2871 a relative pathname ("can't happen"--leave it alone). */
2872 ++p;
2873 else
2874 {
2875 strcpy (q - 1, p + 3);
2876 p = q - 1;
2877 }
2878 }
2879 else
2880 /* We are dealing with leading repetitions of "/..", for example
2881 "/../..", which is the Mach super-root. */
2882 p += 3;
2883 }
2884 else
2885 {
2886 found_real_path = 1;
2887 ++p;
2888 }
2889 }
2890
2891 forget_cached_source_info ();
2892
2893 if (from_tty)
2894 pwd_command ((char *) 0, 1);
2895}
2896\f
2897struct source_cleanup_lines_args {
2898 int old_line;
2899 char *old_file;
2900 char *old_pre_error;
2901 char *old_error_pre_print;
2902};
2903
2904static void
2905source_cleanup_lines (args)
2906 PTR args;
2907{
2908 struct source_cleanup_lines_args *p =
2909 (struct source_cleanup_lines_args *)args;
2910 source_line_number = p->old_line;
2911 source_file_name = p->old_file;
2912 source_pre_error = p->old_pre_error;
2913 error_pre_print = p->old_error_pre_print;
2914}
2915
2916/* ARGSUSED */
2917void
2918source_command (args, from_tty)
2919 char *args;
2920 int from_tty;
2921{
2922 FILE *stream;
2923 struct cleanup *old_cleanups;
2924 char *file = args;
2925 struct source_cleanup_lines_args old_lines;
2926 int needed_length;
2927
2928 if (file == NULL)
2929 {
2930 error ("source command requires pathname of file to source.");
2931 }
2932
2933 file = tilde_expand (file);
2934 old_cleanups = make_cleanup (free, file);
2935
2936 stream = fopen (file, FOPEN_RT);
2937 if (stream == 0)
2938 perror_with_name (file);
2939
2940 make_cleanup (fclose, stream);
2941
2942 old_lines.old_line = source_line_number;
2943 old_lines.old_file = source_file_name;
2944 old_lines.old_pre_error = source_pre_error;
2945 old_lines.old_error_pre_print = error_pre_print;
2946 make_cleanup (source_cleanup_lines, &old_lines);
2947 source_line_number = 0;
2948 source_file_name = file;
2949 source_pre_error = error_pre_print == NULL ? "" : error_pre_print;
2950 source_pre_error = savestring (source_pre_error, strlen (source_pre_error));
2951 make_cleanup (free, source_pre_error);
2952 /* This will get set every time we read a line. So it won't stay "" for
2953 long. */
2954 error_pre_print = "";
2955
2956 needed_length = strlen (source_file_name) + strlen (source_pre_error) + 80;
2957 if (source_error_allocated < needed_length)
2958 {
2959 source_error_allocated *= 2;
2960 if (source_error_allocated < needed_length)
2961 source_error_allocated = needed_length;
2962 if (source_error == NULL)
2963 source_error = xmalloc (source_error_allocated);
2964 else
2965 source_error = xrealloc (source_error, source_error_allocated);
2966 }
2967
2968 read_command_file (stream);
2969
2970 do_cleanups (old_cleanups);
2971}
2972
2973/* ARGSUSED */
2974static void
2975echo_command (text, from_tty)
2976 char *text;
2977 int from_tty;
2978{
2979 char *p = text;
2980 register int c;
2981
2982 if (text)
2983 while ((c = *p++) != '\0')
2984 {
2985 if (c == '\\')
2986 {
2987 /* \ at end of argument is used after spaces
2988 so they won't be lost. */
2989 if (*p == 0)
2990 return;
2991
2992 c = parse_escape (&p);
2993 if (c >= 0)
2994 printf_filtered ("%c", c);
2995 }
2996 else
2997 printf_filtered ("%c", c);
2998 }
2999
3000 /* Force this output to appear now. */
3001 wrap_here ("");
3002 gdb_flush (gdb_stdout);
3003}
3004
cd10c7e3
SG
3005/* ARGSUSED */
3006static void
3007dont_repeat_command (ignored, from_tty)
3008 char *ignored;
3009 int from_tty;
3010{
3011 *line = 0; /* Can't call dont_repeat here because we're not
3012 necessarily reading from stdin. */
3013}
b8176214
ILT
3014\f
3015#ifdef TARGET_BYTE_ORDER_SELECTABLE
3016
3017/* Functions to manipulate the endianness of the target. */
3018
3019#ifndef TARGET_BYTE_ORDER_DEFAULT
3020#define TARGET_BYTE_ORDER_DEFAULT BIG_ENDIAN
3021#endif
3022
3023int target_byte_order = TARGET_BYTE_ORDER_DEFAULT;
3024
b83ed019
ILT
3025static int target_byte_order_auto = 1;
3026
b8176214
ILT
3027/* Called if the user enters ``set endian'' without an argument. */
3028static void
3029set_endian (args, from_tty)
3030 char *args;
3031 int from_tty;
3032{
b83ed019 3033 printf_unfiltered ("\"set endian\" must be followed by \"auto\", \"big\" or \"little\".\n");
b8176214
ILT
3034 show_endian (args, from_tty);
3035}
3036
3037/* Called by ``set endian big''. */
3038static void
3039set_endian_big (args, from_tty)
3040 char *args;
3041 int from_tty;
3042{
3043 target_byte_order = BIG_ENDIAN;
b83ed019 3044 target_byte_order_auto = 0;
b8176214
ILT
3045}
3046
3047/* Called by ``set endian little''. */
3048static void
3049set_endian_little (args, from_tty)
3050 char *args;
3051 int from_tty;
3052{
3053 target_byte_order = LITTLE_ENDIAN;
b83ed019
ILT
3054 target_byte_order_auto = 0;
3055}
3056
3057/* Called by ``set endian auto''. */
3058static void
3059set_endian_auto (args, from_tty)
3060 char *args;
3061 int from_tty;
3062{
3063 target_byte_order_auto = 1;
b8176214
ILT
3064}
3065
3066/* Called by ``show endian''. */
3067static void
3068show_endian (args, from_tty)
3069 char *args;
3070 int from_tty;
3071{
b83ed019
ILT
3072 const char *msg =
3073 (target_byte_order_auto
3074 ? "The target endianness is set automatically (currently %s endian)\n"
3075 : "The target is assumed to be %s endian\n");
032f80d8 3076 printf_unfiltered ((char *) msg, TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
b8176214
ILT
3077}
3078
3079#endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
b83ed019
ILT
3080
3081/* Set the endianness from a BFD. */
3082void
3083set_endian_from_file (abfd)
3084 bfd *abfd;
3085{
3086#ifdef TARGET_BYTE_ORDER_SELECTABLE
3087 int want;
3088
3ecd62ca 3089 if (bfd_big_endian (abfd))
b83ed019
ILT
3090 want = BIG_ENDIAN;
3091 else
3092 want = LITTLE_ENDIAN;
3093 if (target_byte_order_auto)
3094 target_byte_order = want;
3095 else if (target_byte_order != want)
3096 warning ("%s endian file does not match %s endian target.",
3097 want == BIG_ENDIAN ? "big" : "little",
3098 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3099
3100#else /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */
3101
3ecd62ca 3102 if (bfd_big_endian (abfd)
b83ed019
ILT
3103 ? TARGET_BYTE_ORDER != BIG_ENDIAN
3104 : TARGET_BYTE_ORDER == BIG_ENDIAN)
3105 warning ("%s endian file does not match %s endian target.",
3ecd62ca 3106 bfd_big_endian (abfd) ? "big" : "little",
b83ed019
ILT
3107 TARGET_BYTE_ORDER == BIG_ENDIAN ? "big" : "little");
3108
3109#endif /* ! defined (TARGET_BYTE_ORDER_SELECTABLE) */
3110}
172559ec
JK
3111\f
3112/* Functions to manipulate command line editing control variables. */
3113
3114/* Number of commands to print in each call to show_commands. */
3115#define Hist_print 10
3116static void
3117show_commands (args, from_tty)
3118 char *args;
3119 int from_tty;
3120{
3121 /* Index for history commands. Relative to history_base. */
3122 int offset;
3123
3124 /* Number of the history entry which we are planning to display next.
3125 Relative to history_base. */
3126 static int num = 0;
3127
3128 /* The first command in the history which doesn't exist (i.e. one more
3129 than the number of the last command). Relative to history_base. */
3130 int hist_len;
3131
3132 extern HIST_ENTRY *history_get PARAMS ((int));
3133
3134 /* Print out some of the commands from the command history. */
3135 /* First determine the length of the history list. */
3136 hist_len = history_size;
3137 for (offset = 0; offset < history_size; offset++)
3138 {
3139 if (!history_get (history_base + offset))
3140 {
3141 hist_len = offset;
3142 break;
3143 }
3144 }
3145
3146 if (args)
3147 {
3148 if (args[0] == '+' && args[1] == '\0')
3149 /* "info editing +" should print from the stored position. */
3150 ;
3151 else
3152 /* "info editing <exp>" should print around command number <exp>. */
3153 num = (parse_and_eval_address (args) - history_base) - Hist_print / 2;
3154 }
3155 /* "show commands" means print the last Hist_print commands. */
3156 else
3157 {
3158 num = hist_len - Hist_print;
3159 }
3160
3161 if (num < 0)
3162 num = 0;
3163
3164 /* If there are at least Hist_print commands, we want to display the last
3165 Hist_print rather than, say, the last 6. */
3166 if (hist_len - num < Hist_print)
3167 {
3168 num = hist_len - Hist_print;
3169 if (num < 0)
3170 num = 0;
3171 }
3172
3173 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
3174 {
3175 printf_filtered ("%5d %s\n", history_base + offset,
3176 (history_get (history_base + offset))->line);
3177 }
3178
3179 /* The next command we want to display is the next one that we haven't
3180 displayed yet. */
3181 num += Hist_print;
e52bfe0c 3182
172559ec
JK
3183 /* If the user repeats this command with return, it should do what
3184 "show commands +" does. This is unnecessary if arg is null,
3185 because "show commands +" is not useful after "show commands". */
3186 if (from_tty && args)
3187 {
3188 args[0] = '+';
3189 args[1] = '\0';
3190 }
3191}
3192
3193/* Called by do_setshow_command. */
3194/* ARGSUSED */
3195static void
3196set_history_size_command (args, from_tty, c)
3197 char *args;
3198 int from_tty;
3199 struct cmd_list_element *c;
3200{
3201 if (history_size == INT_MAX)
3202 unstifle_history ();
3203 else if (history_size >= 0)
3204 stifle_history (history_size);
3205 else
3206 {
3207 history_size = INT_MAX;
3208 error ("History size must be non-negative");
3209 }
3210}
3211
3212/* ARGSUSED */
3213static void
3214set_history (args, from_tty)
3215 char *args;
3216 int from_tty;
3217{
3218 printf_unfiltered ("\"set history\" must be followed by the name of a history subcommand.\n");
3219 help_list (sethistlist, "set history ", -1, gdb_stdout);
3220}
3221
3222/* ARGSUSED */
3223static void
3224show_history (args, from_tty)
3225 char *args;
3226 int from_tty;
3227{
3228 cmd_show_list (showhistlist, from_tty, "");
3229}
3230
3231int info_verbose = 0; /* Default verbose msgs off */
3232
3233/* Called by do_setshow_command. An elaborate joke. */
3234/* ARGSUSED */
e52bfe0c 3235static void
172559ec
JK
3236set_verbose (args, from_tty, c)
3237 char *args;
3238 int from_tty;
3239 struct cmd_list_element *c;
3240{
3241 char *cmdname = "verbose";
3242 struct cmd_list_element *showcmd;
e52bfe0c 3243
172559ec
JK
3244 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
3245
3246 if (info_verbose)
3247 {
3248 c->doc = "Set verbose printing of informational messages.";
3249 showcmd->doc = "Show verbose printing of informational messages.";
3250 }
3251 else
3252 {
3253 c->doc = "Set verbosity.";
3254 showcmd->doc = "Show verbosity.";
3255 }
3256}
3257
3258static void
3259float_handler (signo)
3260int signo;
3261{
3262 /* This message is based on ANSI C, section 4.7. Note that integer
3263 divide by zero causes this, so "float" is a misnomer. */
3264 signal (SIGFPE, float_handler);
3265 error ("Erroneous arithmetic operation.");
3266}
3267
172559ec
JK
3268\f
3269static void
3270init_cmd_lists ()
3271{
3272 cmdlist = NULL;
3273 infolist = NULL;
3274 enablelist = NULL;
3275 disablelist = NULL;
3276 deletelist = NULL;
3277 enablebreaklist = NULL;
3278 setlist = NULL;
3279 unsetlist = NULL;
3280 showlist = NULL;
b8176214
ILT
3281#ifdef TARGET_BYTE_ORDER_SELECTABLE
3282 endianlist = NULL;
3283#endif
172559ec
JK
3284 sethistlist = NULL;
3285 showhistlist = NULL;
3286 unsethistlist = NULL;
3287#if MAINTENANCE_CMDS
3288 maintenancelist = NULL;
3289 maintenanceinfolist = NULL;
3290 maintenanceprintlist = NULL;
3291#endif
3292 setprintlist = NULL;
3293 showprintlist = NULL;
3294 setchecklist = NULL;
3295 showchecklist = NULL;
3296}
3297
3298/* Init the history buffer. Note that we are called after the init file(s)
3299 * have been read so that the user can change the history file via his
3300 * .gdbinit file (for instance). The GDBHISTFILE environment variable
3301 * overrides all of this.
3302 */
3303
3304void
3305init_history()
3306{
3307 char *tmpenv;
3308
3309 tmpenv = getenv ("HISTSIZE");
3310 if (tmpenv)
3311 history_size = atoi (tmpenv);
3312 else if (!history_size)
3313 history_size = 256;
3314
3315 stifle_history (history_size);
3316
3317 tmpenv = getenv ("GDBHISTFILE");
3318 if (tmpenv)
3319 history_filename = savestring (tmpenv, strlen(tmpenv));
3320 else if (!history_filename) {
3321 /* We include the current directory so that if the user changes
3322 directories the file written will be the same as the one
3323 that was read. */
3324 history_filename = concat (current_directory, "/.gdb_history", NULL);
3325 }
3326 read_history (history_filename);
3327}
3328
3329static void
3330init_main ()
3331{
3332 struct cmd_list_element *c;
e52bfe0c 3333
b8176214
ILT
3334#ifdef TARGET_BYTE_ORDER_SELECTABLE
3335
3336 add_prefix_cmd ("endian", class_support, set_endian,
3337 "Set endianness of target.",
3338 &endianlist, "set endian ", 0, &setlist);
3339 add_cmd ("big", class_support, set_endian_big,
3340 "Set target as being big endian.", &endianlist);
3341 add_cmd ("little", class_support, set_endian_little,
3342 "Set target as being little endian.", &endianlist);
b83ed019
ILT
3343 add_cmd ("auto", class_support, set_endian_auto,
3344 "Select target endianness automatically.", &endianlist);
b8176214
ILT
3345 add_cmd ("endian", class_support, show_endian,
3346 "Show endianness of target.", &showlist);
3347
3348#endif /* defined (TARGET_BYTE_ORDER_SELECTABLE) */
3349
172559ec
JK
3350#ifdef DEFAULT_PROMPT
3351 prompt = savestring (DEFAULT_PROMPT, strlen(DEFAULT_PROMPT));
3352#else
3353 prompt = savestring ("(gdb) ", 6);
3354#endif
3355
3356 /* Set the important stuff up for command editing. */
3357 command_editing_p = 1;
3358 history_expansion_p = 0;
3359 write_history_p = 0;
e52bfe0c 3360
172559ec 3361 /* Setup important stuff for command line editing. */
9ed8604f 3362 rl_completion_entry_function = (int (*)()) readline_line_completion_function;
172559ec
JK
3363 rl_completer_word_break_characters = gdb_completer_word_break_characters;
3364 rl_completer_quote_characters = gdb_completer_quote_characters;
3365 rl_readline_name = "gdb";
3366
3367 /* Define the classes of commands.
3368 They will appear in the help list in the reverse of this order. */
3369
3370 add_cmd ("internals", class_maintenance, NO_FUNCTION,
3371 "Maintenance commands.\n\
3372Some gdb commands are provided just for use by gdb maintainers.\n\
3373These commands are subject to frequent change, and may not be as\n\
3374well documented as user commands.",
3375 &cmdlist);
3376 add_cmd ("obscure", class_obscure, NO_FUNCTION, "Obscure features.", &cmdlist);
3377 add_cmd ("aliases", class_alias, NO_FUNCTION, "Aliases of other commands.", &cmdlist);
3378 add_cmd ("user-defined", class_user, NO_FUNCTION, "User-defined commands.\n\
3379The commands in this class are those defined by the user.\n\
3380Use the \"define\" command to define a command.", &cmdlist);
3381 add_cmd ("support", class_support, NO_FUNCTION, "Support facilities.", &cmdlist);
3382 add_cmd ("status", class_info, NO_FUNCTION, "Status inquiries.", &cmdlist);
3383 add_cmd ("files", class_files, NO_FUNCTION, "Specifying and examining files.", &cmdlist);
3384 add_cmd ("breakpoints", class_breakpoint, NO_FUNCTION, "Making program stop at certain points.", &cmdlist);
3385 add_cmd ("data", class_vars, NO_FUNCTION, "Examining data.", &cmdlist);
3386 add_cmd ("stack", class_stack, NO_FUNCTION, "Examining the stack.\n\
3387The stack is made up of stack frames. Gdb assigns numbers to stack frames\n\
3388counting from zero for the innermost (currently executing) frame.\n\n\
3389At any time gdb identifies one frame as the \"selected\" frame.\n\
3390Variable lookups are done with respect to the selected frame.\n\
3391When the program being debugged stops, gdb selects the innermost frame.\n\
3392The commands below can be used to select other frames by number or address.",
3393 &cmdlist);
3394 add_cmd ("running", class_run, NO_FUNCTION, "Running the program.", &cmdlist);
3395
3396 add_com ("pwd", class_files, pwd_command,
3397 "Print working directory. This is used for your program as well.");
3398 c = add_cmd ("cd", class_files, cd_command,
3399 "Set working directory to DIR for debugger and program being debugged.\n\
3400The change does not take effect for the program being debugged\n\
3401until the next time it is started.", &cmdlist);
3402 c->completer = filename_completer;
3403
3404 add_show_from_set
3405 (add_set_cmd ("prompt", class_support, var_string, (char *)&prompt,
3406 "Set gdb's prompt",
3407 &setlist),
3408 &showlist);
e52bfe0c 3409
172559ec
JK
3410 add_com ("echo", class_support, echo_command,
3411 "Print a constant string. Give string as argument.\n\
3412C escape sequences may be used in the argument.\n\
3413No newline is added at the end of the argument;\n\
3414use \"\\n\" if you want a newline to be printed.\n\
3415Since leading and trailing whitespace are ignored in command arguments,\n\
3416if you want to print some you must use \"\\\" before leading whitespace\n\
3417to be printed or after trailing whitespace.");
3418 add_com ("document", class_support, document_command,
3419 "Document a user-defined command.\n\
3420Give command name as argument. Give documentation on following lines.\n\
3421End with a line of just \"end\".");
3422 add_com ("define", class_support, define_command,
3423 "Define a new command name. Command name is argument.\n\
3424Definition appears on following lines, one command per line.\n\
3425End with a line of just \"end\".\n\
3426Use the \"document\" command to give documentation for the new command.\n\
59528079 3427Commands defined in this way may have up to ten arguments.");
172559ec
JK
3428
3429#ifdef __STDC__
3430 c = add_cmd ("source", class_support, source_command,
3431 "Read commands from a file named FILE.\n\
3432Note that the file \"" GDBINIT_FILENAME "\" is read automatically in this way\n\
3433when gdb is started.", &cmdlist);
3434#else
3435 /* Punt file name, we can't help it easily. */
3436 c = add_cmd ("source", class_support, source_command,
3437 "Read commands from a file named FILE.\n\
3438Note that the file \".gdbinit\" is read automatically in this way\n\
3439when gdb is started.", &cmdlist);
3440#endif
3441 c->completer = filename_completer;
3442
3443 add_com ("quit", class_support, quit_command, "Exit gdb.");
3444 add_com ("help", class_support, help_command, "Print list of commands.");
3445 add_com_alias ("q", "quit", class_support, 1);
3446 add_com_alias ("h", "help", class_support, 1);
3447
cd10c7e3
SG
3448 add_com ("dont-repeat", class_support, dont_repeat_command, "Don't repeat this command.\n\
3449Primarily used inside of user-defined commands that should not be repeated when\n\
3450hitting return.");
172559ec
JK
3451
3452 c = add_set_cmd ("verbose", class_support, var_boolean, (char *)&info_verbose,
3453 "Set ",
3454 &setlist),
3455 add_show_from_set (c, &showlist);
3456 c->function.sfunc = set_verbose;
3457 set_verbose (NULL, 0, c);
e52bfe0c 3458
172559ec
JK
3459 add_show_from_set
3460 (add_set_cmd ("editing", class_support, var_boolean, (char *)&command_editing_p,
3461 "Set editing of command lines as they are typed.\n\
3462Use \"on\" to enable to enable the editing, and \"off\" to disable it.\n\
3463Without an argument, command line editing is enabled. To edit, use\n\
3464EMACS-like or VI-like commands like control-P or ESC.", &setlist),
3465 &showlist);
3466
3467 add_prefix_cmd ("history", class_support, set_history,
3468 "Generic command for setting command history parameters.",
3469 &sethistlist, "set history ", 0, &setlist);
3470 add_prefix_cmd ("history", class_support, show_history,
3471 "Generic command for showing command history parameters.",
3472 &showhistlist, "show history ", 0, &showlist);
3473
3474 add_show_from_set
3475 (add_set_cmd ("expansion", no_class, var_boolean, (char *)&history_expansion_p,
3476 "Set history expansion on command input.\n\
3477Without an argument, history expansion is enabled.", &sethistlist),
3478 &showhistlist);
3479
3480 add_show_from_set
3481 (add_set_cmd ("save", no_class, var_boolean, (char *)&write_history_p,
3482 "Set saving of the history record on exit.\n\
3483Use \"on\" to enable to enable the saving, and \"off\" to disable it.\n\
3484Without an argument, saving is enabled.", &sethistlist),
3485 &showhistlist);
3486
3487 c = add_set_cmd ("size", no_class, var_integer, (char *)&history_size,
3488 "Set the size of the command history, \n\
3489ie. the number of previous commands to keep a record of.", &sethistlist);
3490 add_show_from_set (c, &showhistlist);
3491 c->function.sfunc = set_history_size_command;
3492
3493 add_show_from_set
3494 (add_set_cmd ("filename", no_class, var_filename, (char *)&history_filename,
3495 "Set the filename in which to record the command history\n\
3496 (the list of previous commands of which a record is kept).", &sethistlist),
3497 &showhistlist);
3498
3499 add_show_from_set
3500 (add_set_cmd ("confirm", class_support, var_boolean,
3501 (char *)&caution,
3502 "Set whether to confirm potentially dangerous operations.",
3503 &setlist),
3504 &showlist);
3505
3506 add_prefix_cmd ("info", class_info, info_command,
3507 "Generic command for showing things about the program being debugged.",
3508 &infolist, "info ", 0, &cmdlist);
3509 add_com_alias ("i", "info", class_info, 1);
3510
3511 add_com ("complete", class_obscure, complete_command,
3512 "List the completions for the rest of the line as a command.");
3513
3514 add_prefix_cmd ("show", class_info, show_command,
3515 "Generic command for showing things about the debugger.",
3516 &showlist, "show ", 0, &cmdlist);
3517 /* Another way to get at the same thing. */
3518 add_info ("set", show_command, "Show all GDB settings.");
3519
3520 add_cmd ("commands", no_class, show_commands,
943b7032 3521 "Show the history of commands you typed.\n\
172559ec
JK
3522You can supply a command number to start with, or a `+' to start after\n\
3523the previous command number shown.",
3524 &showlist);
3525
3526 add_cmd ("version", no_class, show_version,
3527 "Show what version of GDB this is.", &showlist);
3528
e52bfe0c
JL
3529 add_com ("while", class_support, while_command,
3530"Execute nested commands WHILE the conditional expression is non zero.\n\
943b7032
PS
3531The conditional expression must follow the word `while' and must in turn be\n\
3532followed by a new line. The nested commands must be entered one per line,\n\
e52bfe0c
JL
3533and should be terminated by the word `end'.");
3534
3535 add_com ("if", class_support, if_command,
3536"Execute nested commands once IF the conditional expression is non zero.\n\
943b7032
PS
3537The conditional expression must follow the word `if' and must in turn be\n\
3538followed by a new line. The nested commands must be entered one per line,\n\
3539and should be terminated by the word 'else' or `end'. If an else clause\n\
e52bfe0c
JL
3540is used, the same rules apply to its nested commands as to the first ones.");
3541
172559ec
JK
3542 /* If target is open when baud changes, it doesn't take effect until the
3543 next open (I think, not sure). */
3544 add_show_from_set (add_set_cmd ("remotebaud", no_class,
3545 var_zinteger, (char *)&baud_rate,
3546 "Set baud rate for remote serial I/O.\n\
3547This value is used to set the speed of the serial port when debugging\n\
3548using remote targets.", &setlist),
3549 &showlist);
3550
3551 add_show_from_set (
3552 add_set_cmd ("remotedebug", no_class, var_zinteger, (char *)&remote_debug,
3553 "Set debugging of remote protocol.\n\
3554When enabled, each packet sent or received with the remote target\n\
3555is displayed.", &setlist),
3556 &showlist);
3557}
This page took 0.268416 seconds and 4 git commands to generate.