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