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