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