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