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