OSDN Git Service

* gdb.texinfo (Target Description Format): Add version attribute
[pf3gnuchains/pf3gnuchains4x.git] / gdb / top.c
1 /* Top level stuff for GDB, the GNU debugger.
2
3    Copyright (C) 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4    1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
5    Free Software Foundation, Inc.
6
7    This file is part of GDB.
8
9    This program is free software; you can redistribute it and/or modify
10    it under the terms of the GNU General Public License as published by
11    the Free Software Foundation; either version 2 of the License, or
12    (at your option) any later version.
13
14    This program is distributed in the hope that it will be useful,
15    but WITHOUT ANY WARRANTY; without even the implied warranty of
16    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17    GNU General Public License for more details.
18
19    You should have received a copy of the GNU General Public License
20    along with this program; if not, write to the Free Software
21    Foundation, Inc., 51 Franklin Street, Fifth Floor,
22    Boston, MA 02110-1301, USA.  */
23
24 #include "defs.h"
25 #include "gdbcmd.h"
26 #include "call-cmds.h"
27 #include "cli/cli-cmds.h"
28 #include "cli/cli-script.h"
29 #include "cli/cli-setshow.h"
30 #include "cli/cli-decode.h"
31 #include "symtab.h"
32 #include "inferior.h"
33 #include "exceptions.h"
34 #include <signal.h>
35 #include "target.h"
36 #include "breakpoint.h"
37 #include "gdbtypes.h"
38 #include "expression.h"
39 #include "value.h"
40 #include "language.h"
41 #include "terminal.h"           /* For job_control.  */
42 #include "annotate.h"
43 #include "completer.h"
44 #include "top.h"
45 #include "version.h"
46 #include "serial.h"
47 #include "doublest.h"
48 #include "gdb_assert.h"
49 #include "main.h"
50 #include "event-loop.h"
51
52 /* readline include files */
53 #include "readline/readline.h"
54 #include "readline/history.h"
55
56 /* readline defines this.  */
57 #undef savestring
58
59 #include <sys/types.h>
60
61 #include "event-top.h"
62 #include "gdb_string.h"
63 #include "gdb_stat.h"
64 #include <ctype.h>
65 #include "ui-out.h"
66 #include "cli-out.h"
67
68 /* Default command line prompt.  This is overriden in some configs. */
69
70 #ifndef DEFAULT_PROMPT
71 #define DEFAULT_PROMPT  "(gdb) "
72 #endif
73
74 /* Initialization file name for gdb.  This is overridden in some configs.  */
75
76 #ifndef PATH_MAX
77 # ifdef FILENAME_MAX
78 #  define PATH_MAX FILENAME_MAX
79 # else
80 #  define PATH_MAX 512
81 # endif
82 #endif
83
84 #ifndef GDBINIT_FILENAME
85 #define GDBINIT_FILENAME        ".gdbinit"
86 #endif
87 char gdbinit[PATH_MAX + 1] = GDBINIT_FILENAME;
88
89 int inhibit_gdbinit = 0;
90
91 /* If nonzero, and GDB has been configured to be able to use windows,
92    attempt to open them upon startup.  */
93
94 int use_windows = 0;
95
96 extern char lang_frame_mismatch_warn[];         /* language.c */
97
98 /* Flag for whether we want all the "from_tty" gubbish printed.  */
99
100 int caution = 1;                /* Default is yes, sigh. */
101 static void
102 show_caution (struct ui_file *file, int from_tty,
103               struct cmd_list_element *c, const char *value)
104 {
105   fprintf_filtered (file, _("\
106 Whether to confirm potentially dangerous operations is %s.\n"),
107                     value);
108 }
109
110 /* stdio stream that command input is being read from.  Set to stdin normally.
111    Set by source_command to the file we are sourcing.  Set to NULL if we are
112    executing a user-defined command or interacting via a GUI.  */
113
114 FILE *instream;
115
116 /* Flag to indicate whether a user defined command is currently running.  */
117
118 int in_user_command;
119
120 /* Current working directory.  */
121
122 char *current_directory;
123
124 /* The directory name is actually stored here (usually).  */
125 char gdb_dirbuf[1024];
126
127 /* Function to call before reading a command, if nonzero.
128    The function receives two args: an input stream,
129    and a prompt string.  */
130
131 void (*window_hook) (FILE *, char *);
132
133 int epoch_interface;
134 int xgdb_verbose;
135
136 /* gdb prints this when reading a command interactively */
137 static char *gdb_prompt_string; /* the global prompt string */
138
139 /* Buffer used for reading command lines, and the size
140    allocated for it so far.  */
141
142 char *line;
143 int linesize = 100;
144
145 /* Nonzero if the current command is modified by "server ".  This
146    affects things like recording into the command history, commands
147    repeating on RETURN, etc.  This is so a user interface (emacs, GUI,
148    whatever) can issue its own commands and also send along commands
149    from the user, and have the user not notice that the user interface
150    is issuing commands too.  */
151 int server_command;
152
153 /* Baud rate specified for talking to serial target systems.  Default
154    is left as -1, so targets can choose their own defaults.  */
155 /* FIXME: This means that "show remotebaud" and gr_files_info can print -1
156    or (unsigned int)-1.  This is a Bad User Interface.  */
157
158 int baud_rate = -1;
159
160 /* Timeout limit for response from target. */
161
162 /* The default value has been changed many times over the years.  It 
163    was originally 5 seconds.  But that was thought to be a long time 
164    to sit and wait, so it was changed to 2 seconds.  That was thought
165    to be plenty unless the connection was going through some terminal 
166    server or multiplexer or other form of hairy serial connection.
167
168    In mid-1996, remote_timeout was moved from remote.c to top.c and 
169    it began being used in other remote-* targets.  It appears that the
170    default was changed to 20 seconds at that time, perhaps because the
171    Renesas E7000 ICE didn't always respond in a timely manner.
172
173    But if 5 seconds is a long time to sit and wait for retransmissions,
174    20 seconds is far worse.  This demonstrates the difficulty of using 
175    a single variable for all protocol timeouts.
176
177    As remote.c is used much more than remote-e7000.c, it was changed 
178    back to 2 seconds in 1999. */
179
180 int remote_timeout = 2;
181
182 /* Non-zero tells remote* modules to output debugging info.  */
183
184 int remote_debug = 0;
185
186 /* Non-zero means the target is running. Note: this is different from
187    saying that there is an active target and we are stopped at a
188    breakpoint, for instance. This is a real indicator whether the
189    target is off and running, which gdb is doing something else. */
190 int target_executing = 0;
191
192 /* Sbrk location on entry to main.  Used for statistics only.  */
193 #ifdef HAVE_SBRK
194 char *lim_at_start;
195 #endif
196
197 /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT.  */
198
199 #ifndef STOP_SIGNAL
200 #ifdef SIGTSTP
201 #define STOP_SIGNAL SIGTSTP
202 static void stop_sig (int);
203 #endif
204 #endif
205
206 /* Hooks for alternate command interfaces.  */
207
208 /* Called after most modules have been initialized, but before taking users
209    command file.
210
211    If the UI fails to initialize and it wants GDB to continue
212    using the default UI, then it should clear this hook before returning. */
213
214 void (*deprecated_init_ui_hook) (char *argv0);
215
216 /* This hook is called from within gdb's many mini-event loops which could
217    steal control from a real user interface's event loop. It returns
218    non-zero if the user is requesting a detach, zero otherwise. */
219
220 int (*deprecated_ui_loop_hook) (int);
221
222 /* Called instead of command_loop at top level.  Can be invoked via
223    throw_exception().  */
224
225 void (*deprecated_command_loop_hook) (void);
226
227
228 /* Called from print_frame_info to list the line we stopped in.  */
229
230 void (*deprecated_print_frame_info_listing_hook) (struct symtab * s, int line,
231                                                   int stopline, int noerror);
232 /* Replaces most of query.  */
233
234 int (*deprecated_query_hook) (const char *, va_list);
235
236 /* Replaces most of warning.  */
237
238 void (*deprecated_warning_hook) (const char *, va_list);
239
240 /* These three functions support getting lines of text from the user.
241    They are used in sequence.  First deprecated_readline_begin_hook is
242    called with a text string that might be (for example) a message for
243    the user to type in a sequence of commands to be executed at a
244    breakpoint.  If this function calls back to a GUI, it might take
245    this opportunity to pop up a text interaction window with this
246    message.  Next, deprecated_readline_hook is called with a prompt
247    that is emitted prior to collecting the user input.  It can be
248    called multiple times.  Finally, deprecated_readline_end_hook is
249    called to notify the GUI that we are done with the interaction
250    window and it can close it.  */
251
252 void (*deprecated_readline_begin_hook) (char *, ...);
253 char *(*deprecated_readline_hook) (char *);
254 void (*deprecated_readline_end_hook) (void);
255
256 /* Called as appropriate to notify the interface of the specified breakpoint
257    conditions.  */
258
259 void (*deprecated_create_breakpoint_hook) (struct breakpoint * bpt);
260 void (*deprecated_delete_breakpoint_hook) (struct breakpoint * bpt);
261 void (*deprecated_modify_breakpoint_hook) (struct breakpoint * bpt);
262
263 /* Called as appropriate to notify the interface that we have attached
264    to or detached from an already running process. */
265
266 void (*deprecated_attach_hook) (void);
267 void (*deprecated_detach_hook) (void);
268
269 /* Called during long calculations to allow GUI to repair window damage, and to
270    check for stop buttons, etc... */
271
272 void (*deprecated_interactive_hook) (void);
273
274 /* Tell the GUI someone changed the register REGNO. -1 means
275    that the caller does not know which register changed or
276    that several registers have changed (see value_assign). */
277 void (*deprecated_register_changed_hook) (int regno);
278
279 /* Tell the GUI someone changed LEN bytes of memory at ADDR */
280 void (*deprecated_memory_changed_hook) (CORE_ADDR addr, int len);
281
282 /* Called when going to wait for the target.  Usually allows the GUI to run
283    while waiting for target events.  */
284
285 ptid_t (*deprecated_target_wait_hook) (ptid_t ptid,
286                                        struct target_waitstatus * status);
287
288 /* Used by UI as a wrapper around command execution.  May do various things
289    like enabling/disabling buttons, etc...  */
290
291 void (*deprecated_call_command_hook) (struct cmd_list_element * c, char *cmd,
292                                       int from_tty);
293
294 /* Called after a `set' command has finished.  Is only run if the
295    `set' command succeeded.  */
296
297 void (*deprecated_set_hook) (struct cmd_list_element * c);
298
299 /* Called when the current thread changes.  Argument is thread id.  */
300
301 void (*deprecated_context_hook) (int id);
302
303 /* Takes control from error ().  Typically used to prevent longjmps out of the
304    middle of the GUI.  Usually used in conjunction with a catch routine.  */
305
306 void (*deprecated_error_hook) (void);
307
308 /* Handler for SIGHUP.  */
309
310 #ifdef SIGHUP
311 /* NOTE 1999-04-29: This function will be static again, once we modify
312    gdb to use the event loop as the default command loop and we merge
313    event-top.c into this file, top.c */
314 /* static */ int
315 quit_cover (void *s)
316 {
317   caution = 0;                  /* Throw caution to the wind -- we're exiting.
318                                    This prevents asking the user dumb questions.  */
319   quit_command ((char *) 0, 0);
320   return 0;
321 }
322 #endif /* defined SIGHUP */
323 \f
324 /* Line number we are currently in in a file which is being sourced.  */
325 /* NOTE 1999-04-29: This variable will be static again, once we modify
326    gdb to use the event loop as the default command loop and we merge
327    event-top.c into this file, top.c */
328 /* static */ int source_line_number;
329
330 /* Name of the file we are sourcing.  */
331 /* NOTE 1999-04-29: This variable will be static again, once we modify
332    gdb to use the event loop as the default command loop and we merge
333    event-top.c into this file, top.c */
334 /* static */ char *source_file_name;
335
336 /* Clean up on error during a "source" command (or execution of a
337    user-defined command).  */
338
339 void
340 do_restore_instream_cleanup (void *stream)
341 {
342   /* Restore the previous input stream.  */
343   instream = stream;
344 }
345
346 /* Read commands from STREAM.  */
347 void
348 read_command_file (FILE *stream)
349 {
350   struct cleanup *cleanups;
351
352   cleanups = make_cleanup (do_restore_instream_cleanup, instream);
353   instream = stream;
354   command_loop ();
355   do_cleanups (cleanups);
356 }
357 \f
358 void (*pre_init_ui_hook) (void);
359
360 #ifdef __MSDOS__
361 void
362 do_chdir_cleanup (void *old_dir)
363 {
364   chdir (old_dir);
365   xfree (old_dir);
366 }
367 #endif
368
369 /* Execute the line P as a command.
370    Pass FROM_TTY as second argument to the defining function.  */
371
372 void
373 execute_command (char *p, int from_tty)
374 {
375   struct cmd_list_element *c;
376   enum language flang;
377   static int warned = 0;
378   char *line;
379   
380   free_all_values ();
381
382   /* Force cleanup of any alloca areas if using C alloca instead of
383      a builtin alloca.  */
384   alloca (0);
385
386   /* This can happen when command_line_input hits end of file.  */
387   if (p == NULL)
388     return;
389
390   serial_log_command (p);
391
392   while (*p == ' ' || *p == '\t')
393     p++;
394   if (*p)
395     {
396       char *arg;
397       line = p;
398
399       /* If trace-commands is set then this will print this command.  */
400       print_command_trace (p);
401
402       c = lookup_cmd (&p, cmdlist, "", 0, 1);
403
404       /* If the target is running, we allow only a limited set of
405          commands. */
406       if (target_can_async_p () && target_executing)
407         if (strcmp (c->name, "help") != 0
408             && strcmp (c->name, "pwd") != 0
409             && strcmp (c->name, "show") != 0
410             && strcmp (c->name, "stop") != 0)
411           error (_("Cannot execute this command while the target is running."));
412
413       /* Pass null arg rather than an empty one.  */
414       arg = *p ? p : 0;
415
416       /* FIXME: cagney/2002-02-02: The c->type test is pretty dodgy
417          while the is_complete_command(cfunc) test is just plain
418          bogus.  They should both be replaced by a test of the form
419          c->strip_trailing_white_space_p.  */
420       /* NOTE: cagney/2002-02-02: The function.cfunc in the below
421          can't be replaced with func.  This is because it is the
422          cfunc, and not the func, that has the value that the
423          is_complete_command hack is testing for.  */
424       /* Clear off trailing whitespace, except for set and complete
425          command.  */
426       if (arg
427           && c->type != set_cmd
428           && !is_complete_command (c))
429         {
430           p = arg + strlen (arg) - 1;
431           while (p >= arg && (*p == ' ' || *p == '\t'))
432             p--;
433           *(p + 1) = '\0';
434         }
435
436       /* If this command has been pre-hooked, run the hook first. */
437       execute_cmd_pre_hook (c);
438
439       if (c->flags & DEPRECATED_WARN_USER)
440         deprecated_cmd_warning (&line);
441
442       if (c->class == class_user)
443         execute_user_command (c, arg);
444       else if (c->type == set_cmd || c->type == show_cmd)
445         do_setshow_command (arg, from_tty & caution, c);
446       else if (!cmd_func_p (c))
447         error (_("That is not a command, just a help topic."));
448       else if (deprecated_call_command_hook)
449         deprecated_call_command_hook (c, arg, from_tty & caution);
450       else
451         cmd_func (c, arg, from_tty & caution);
452        
453       /* If this command has been post-hooked, run the hook last. */
454       execute_cmd_post_hook (c);
455
456     }
457
458   /* Tell the user if the language has changed (except first time).  */
459   if (current_language != expected_language)
460     {
461       if (language_mode == language_mode_auto)
462         {
463           language_info (1);    /* Print what changed.  */
464         }
465       warned = 0;
466     }
467
468   /* Warn the user if the working language does not match the
469      language of the current frame.  Only warn the user if we are
470      actually running the program, i.e. there is a stack. */
471   /* FIXME:  This should be cacheing the frame and only running when
472      the frame changes.  */
473
474   if (target_has_stack)
475     {
476       flang = get_frame_language ();
477       if (!warned
478           && flang != language_unknown
479           && flang != current_language->la_language)
480         {
481           printf_filtered ("%s\n", lang_frame_mismatch_warn);
482           warned = 1;
483         }
484     }
485 }
486
487 /* Read commands from `instream' and execute them
488    until end of file or error reading instream.  */
489
490 void
491 command_loop (void)
492 {
493   struct cleanup *old_chain;
494   char *command;
495   int stdin_is_tty = ISATTY (stdin);
496   long time_at_cmd_start;
497 #ifdef HAVE_SBRK
498   long space_at_cmd_start = 0;
499 #endif
500   extern int display_time;
501   extern int display_space;
502
503   while (instream && !feof (instream))
504     {
505       if (window_hook && instream == stdin)
506         (*window_hook) (instream, get_prompt ());
507
508       quit_flag = 0;
509       if (instream == stdin && stdin_is_tty)
510         reinitialize_more_filter ();
511       old_chain = make_cleanup (null_cleanup, 0);
512
513       /* Get a command-line. This calls the readline package. */
514       command = command_line_input (instream == stdin ?
515                                     get_prompt () : (char *) NULL,
516                                     instream == stdin, "prompt");
517       if (command == 0)
518         return;
519
520       time_at_cmd_start = get_run_time ();
521
522       if (display_space)
523         {
524 #ifdef HAVE_SBRK
525           char *lim = (char *) sbrk (0);
526           space_at_cmd_start = lim - lim_at_start;
527 #endif
528         }
529
530       execute_command (command, instream == stdin);
531       /* Do any commands attached to breakpoint we stopped at.  */
532       bpstat_do_actions (&stop_bpstat);
533       do_cleanups (old_chain);
534
535       if (display_time)
536         {
537           long cmd_time = get_run_time () - time_at_cmd_start;
538
539           printf_unfiltered (_("Command execution time: %ld.%06ld\n"),
540                              cmd_time / 1000000, cmd_time % 1000000);
541         }
542
543       if (display_space)
544         {
545 #ifdef HAVE_SBRK
546           char *lim = (char *) sbrk (0);
547           long space_now = lim - lim_at_start;
548           long space_diff = space_now - space_at_cmd_start;
549
550           printf_unfiltered (_("Space used: %ld (%c%ld for this command)\n"),
551                              space_now,
552                              (space_diff >= 0 ? '+' : '-'),
553                              space_diff);
554 #endif
555         }
556     }
557 }
558
559 /* Read commands from `instream' and execute them until end of file or
560    error reading instream. This command loop doesnt care about any
561    such things as displaying time and space usage. If the user asks
562    for those, they won't work. */
563 void
564 simplified_command_loop (char *(*read_input_func) (char *),
565                          void (*execute_command_func) (char *, int))
566 {
567   struct cleanup *old_chain;
568   char *command;
569   int stdin_is_tty = ISATTY (stdin);
570
571   while (instream && !feof (instream))
572     {
573       quit_flag = 0;
574       if (instream == stdin && stdin_is_tty)
575         reinitialize_more_filter ();
576       old_chain = make_cleanup (null_cleanup, 0);
577
578       /* Get a command-line. */
579       command = (*read_input_func) (instream == stdin ?
580                                     get_prompt () : (char *) NULL);
581
582       if (command == 0)
583         return;
584
585       (*execute_command_func) (command, instream == stdin);
586
587       /* Do any commands attached to breakpoint we stopped at.  */
588       bpstat_do_actions (&stop_bpstat);
589
590       do_cleanups (old_chain);
591     }
592 }
593 \f
594 /* Commands call this if they do not want to be repeated by null lines.  */
595
596 void
597 dont_repeat (void)
598 {
599   if (server_command)
600     return;
601
602   /* If we aren't reading from standard input, we are saving the last
603      thing read from stdin in line and don't want to delete it.  Null lines
604      won't repeat here in any case.  */
605   if (instream == stdin)
606     *line = 0;
607 }
608 \f
609 /* Read a line from the stream "instream" without command line editing.
610
611    It prints PROMPT_ARG once at the start.
612    Action is compatible with "readline", e.g. space for the result is
613    malloc'd and should be freed by the caller.
614
615    A NULL return means end of file.  */
616 char *
617 gdb_readline (char *prompt_arg)
618 {
619   int c;
620   char *result;
621   int input_index = 0;
622   int result_size = 80;
623
624   if (prompt_arg)
625     {
626       /* Don't use a _filtered function here.  It causes the assumed
627          character position to be off, since the newline we read from
628          the user is not accounted for.  */
629       fputs_unfiltered (prompt_arg, gdb_stdout);
630       gdb_flush (gdb_stdout);
631     }
632
633   result = (char *) xmalloc (result_size);
634
635   while (1)
636     {
637       /* Read from stdin if we are executing a user defined command.
638          This is the right thing for prompt_for_continue, at least.  */
639       c = fgetc (instream ? instream : stdin);
640
641       if (c == EOF)
642         {
643           if (input_index > 0)
644             /* The last line does not end with a newline.  Return it, and
645                if we are called again fgetc will still return EOF and
646                we'll return NULL then.  */
647             break;
648           xfree (result);
649           return NULL;
650         }
651
652       if (c == '\n')
653         {
654           if (input_index > 0 && result[input_index - 1] == '\r')
655             input_index--;
656           break;
657         }
658
659       result[input_index++] = c;
660       while (input_index >= result_size)
661         {
662           result_size *= 2;
663           result = (char *) xrealloc (result, result_size);
664         }
665     }
666
667   result[input_index++] = '\0';
668   return result;
669 }
670
671 /* Variables which control command line editing and history
672    substitution.  These variables are given default values at the end
673    of this file.  */
674 static int command_editing_p;
675
676 /* NOTE 1999-04-29: This variable will be static again, once we modify
677    gdb to use the event loop as the default command loop and we merge
678    event-top.c into this file, top.c */
679
680 /* static */ int history_expansion_p;
681
682 static int write_history_p;
683 static void
684 show_write_history_p (struct ui_file *file, int from_tty,
685                       struct cmd_list_element *c, const char *value)
686 {
687   fprintf_filtered (file, _("Saving of the history record on exit is %s.\n"),
688                     value);
689 }
690
691 static int history_size;
692 static void
693 show_history_size (struct ui_file *file, int from_tty,
694                    struct cmd_list_element *c, const char *value)
695 {
696   fprintf_filtered (file, _("The size of the command history is %s.\n"),
697                     value);
698 }
699
700 static char *history_filename;
701 static void
702 show_history_filename (struct ui_file *file, int from_tty,
703                        struct cmd_list_element *c, const char *value)
704 {
705   fprintf_filtered (file, _("\
706 The filename in which to record the command history is \"%s\".\n"),
707                     value);
708 }
709
710 /* This is like readline(), but it has some gdb-specific behavior.
711    gdb may want readline in both the synchronous and async modes during
712    a single gdb invocation.  At the ordinary top-level prompt we might
713    be using the async readline.  That means we can't use
714    rl_pre_input_hook, since it doesn't work properly in async mode.
715    However, for a secondary prompt (" >", such as occurs during a
716    `define'), gdb wants a synchronous response.
717
718    We used to call readline() directly, running it in synchronous
719    mode.  But mixing modes this way is not supported, and as of
720    readline 5.x it no longer works; the arrow keys come unbound during
721    the synchronous call.  So we make a nested call into the event
722    loop.  That's what gdb_readline_wrapper is for.  */
723
724 /* A flag set as soon as gdb_readline_wrapper_line is called; we can't
725    rely on gdb_readline_wrapper_result, which might still be NULL if
726    the user types Control-D for EOF.  */
727 static int gdb_readline_wrapper_done;
728
729 /* The result of the current call to gdb_readline_wrapper, once a newline
730    is seen.  */
731 static char *gdb_readline_wrapper_result;
732
733 /* Any intercepted hook.  Operate-and-get-next sets this, expecting it
734    to be called after the newline is processed (which will redisplay
735    the prompt).  But in gdb_readline_wrapper we will not get a new
736    prompt until the next call, or until we return to the event loop.
737    So we disable this hook around the newline and restore it before we
738    return.  */
739 static void (*saved_after_char_processing_hook) (void);
740
741 /* This function is called when readline has seen a complete line of
742    text.  */
743
744 static void
745 gdb_readline_wrapper_line (char *line)
746 {
747   gdb_assert (!gdb_readline_wrapper_done);
748   gdb_readline_wrapper_result = line;
749   gdb_readline_wrapper_done = 1;
750
751   /* Prevent operate-and-get-next from acting too early.  */
752   saved_after_char_processing_hook = after_char_processing_hook;
753   after_char_processing_hook = NULL;
754 }
755
756 struct gdb_readline_wrapper_cleanup
757   {
758     void (*handler_orig) (char *);
759     char *prompt_orig;
760     int already_prompted_orig;
761   };
762
763 static void
764 gdb_readline_wrapper_cleanup (void *arg)
765 {
766   struct gdb_readline_wrapper_cleanup *cleanup = arg;
767
768   rl_already_prompted = cleanup->already_prompted_orig;
769   PROMPT (0) = cleanup->prompt_orig;
770
771   gdb_assert (input_handler == gdb_readline_wrapper_line);
772   input_handler = cleanup->handler_orig;
773   gdb_readline_wrapper_result = NULL;
774   gdb_readline_wrapper_done = 0;
775
776   after_char_processing_hook = saved_after_char_processing_hook;
777   saved_after_char_processing_hook = NULL;
778
779   xfree (cleanup);
780 }
781
782 char *
783 gdb_readline_wrapper (char *prompt)
784 {
785   struct cleanup *back_to;
786   struct gdb_readline_wrapper_cleanup *cleanup;
787   char *retval;
788
789   cleanup = xmalloc (sizeof (*cleanup));
790   cleanup->handler_orig = input_handler;
791   input_handler = gdb_readline_wrapper_line;
792
793   cleanup->prompt_orig = get_prompt ();
794   PROMPT (0) = prompt;
795   cleanup->already_prompted_orig = rl_already_prompted;
796
797   back_to = make_cleanup (gdb_readline_wrapper_cleanup, cleanup);
798
799   /* Display our prompt and prevent double prompt display.  */
800   display_gdb_prompt (NULL);
801   rl_already_prompted = 1;
802
803   if (after_char_processing_hook)
804     (*after_char_processing_hook) ();
805   gdb_assert (after_char_processing_hook == NULL);
806
807   /* gdb_do_one_event argument is unused.  */
808   while (gdb_do_one_event (NULL) >= 0)
809     if (gdb_readline_wrapper_done)
810       break;
811
812   retval = gdb_readline_wrapper_result;
813   do_cleanups (back_to);
814   return retval;
815 }
816
817 \f
818 #ifdef STOP_SIGNAL
819 static void
820 stop_sig (int signo)
821 {
822 #if STOP_SIGNAL == SIGTSTP
823   signal (SIGTSTP, SIG_DFL);
824 #if HAVE_SIGPROCMASK
825   {
826     sigset_t zero;
827
828     sigemptyset (&zero);
829     sigprocmask (SIG_SETMASK, &zero, 0);
830   }
831 #elif HAVE_SIGSETMASK
832   sigsetmask (0);
833 #endif
834   kill (getpid (), SIGTSTP);
835   signal (SIGTSTP, stop_sig);
836 #else
837   signal (STOP_SIGNAL, stop_sig);
838 #endif
839   printf_unfiltered ("%s", get_prompt ());
840   gdb_flush (gdb_stdout);
841
842   /* Forget about any previous command -- null line now will do nothing.  */
843   dont_repeat ();
844 }
845 #endif /* STOP_SIGNAL */
846
847 /* Initialize signal handlers. */
848 static void
849 float_handler (int signo)
850 {
851   /* This message is based on ANSI C, section 4.7.  Note that integer
852      divide by zero causes this, so "float" is a misnomer.  */
853   signal (SIGFPE, float_handler);
854   error (_("Erroneous arithmetic operation."));
855 }
856
857 static void
858 do_nothing (int signo)
859 {
860   /* Under System V the default disposition of a signal is reinstated after
861      the signal is caught and delivered to an application process.  On such
862      systems one must restore the replacement signal handler if one wishes
863      to continue handling the signal in one's program.  On BSD systems this
864      is not needed but it is harmless, and it simplifies the code to just do
865      it unconditionally. */
866   signal (signo, do_nothing);
867 }
868
869 /* The current saved history number from operate-and-get-next.
870    This is -1 if not valid.  */
871 static int operate_saved_history = -1;
872
873 /* This is put on the appropriate hook and helps operate-and-get-next
874    do its work.  */
875 static void
876 gdb_rl_operate_and_get_next_completion (void)
877 {
878   int delta = where_history () - operate_saved_history;
879   /* The `key' argument to rl_get_previous_history is ignored.  */
880   rl_get_previous_history (delta, 0);
881   operate_saved_history = -1;
882
883   /* readline doesn't automatically update the display for us.  */
884   rl_redisplay ();
885
886   after_char_processing_hook = NULL;
887   rl_pre_input_hook = NULL;
888 }
889
890 /* This is a gdb-local readline command handler.  It accepts the
891    current command line (like RET does) and, if this command was taken
892    from the history, arranges for the next command in the history to
893    appear on the command line when the prompt returns.
894    We ignore the arguments.  */
895 static int
896 gdb_rl_operate_and_get_next (int count, int key)
897 {
898   int where;
899
900   /* Use the async hook.  */
901   after_char_processing_hook = gdb_rl_operate_and_get_next_completion;
902
903   /* Find the current line, and find the next line to use.  */
904   where = where_history();
905
906   /* FIXME: kettenis/20020817: max_input_history is renamed into
907      history_max_entries in readline-4.2.  When we do a new readline
908      import, we should probably change it here too, even though
909      readline maintains backwards compatibility for now by still
910      defining max_input_history.  */
911   if ((history_is_stifled () && (history_length >= max_input_history)) ||
912       (where >= history_length - 1))
913     operate_saved_history = where;
914   else
915     operate_saved_history = where + 1;
916
917   return rl_newline (1, key);
918 }
919 \f
920 /* Read one line from the command input stream `instream'
921    into the local static buffer `linebuffer' (whose current length
922    is `linelength').
923    The buffer is made bigger as necessary.
924    Returns the address of the start of the line.
925
926    NULL is returned for end of file.
927
928    *If* the instream == stdin & stdin is a terminal, the line read
929    is copied into the file line saver (global var char *line,
930    length linesize) so that it can be duplicated.
931
932    This routine either uses fancy command line editing or
933    simple input as the user has requested.  */
934
935 char *
936 command_line_input (char *prompt_arg, int repeat, char *annotation_suffix)
937 {
938   static char *linebuffer = 0;
939   static unsigned linelength = 0;
940   char *p;
941   char *p1;
942   char *rl;
943   char *local_prompt = prompt_arg;
944   char *nline;
945   char got_eof = 0;
946
947   /* The annotation suffix must be non-NULL.  */
948   if (annotation_suffix == NULL)
949     annotation_suffix = "";
950
951   if (annotation_level > 1 && instream == stdin)
952     {
953       local_prompt = alloca ((prompt_arg == NULL ? 0 : strlen (prompt_arg))
954                              + strlen (annotation_suffix) + 40);
955       if (prompt_arg == NULL)
956         local_prompt[0] = '\0';
957       else
958         strcpy (local_prompt, prompt_arg);
959       strcat (local_prompt, "\n\032\032");
960       strcat (local_prompt, annotation_suffix);
961       strcat (local_prompt, "\n");
962     }
963
964   if (linebuffer == 0)
965     {
966       linelength = 80;
967       linebuffer = (char *) xmalloc (linelength);
968     }
969
970   p = linebuffer;
971
972   /* Control-C quits instantly if typed while in this loop
973      since it should not wait until the user types a newline.  */
974   immediate_quit++;
975 #ifdef STOP_SIGNAL
976   if (job_control)
977     signal (STOP_SIGNAL, handle_stop_sig);
978 #endif
979
980   while (1)
981     {
982       /* Make sure that all output has been output.  Some machines may let
983          you get away with leaving out some of the gdb_flush, but not all.  */
984       wrap_here ("");
985       gdb_flush (gdb_stdout);
986       gdb_flush (gdb_stderr);
987
988       if (source_file_name != NULL)
989         ++source_line_number;
990
991       if (annotation_level > 1 && instream == stdin)
992         {
993           puts_unfiltered ("\n\032\032pre-");
994           puts_unfiltered (annotation_suffix);
995           puts_unfiltered ("\n");
996         }
997
998       /* Don't use fancy stuff if not talking to stdin.  */
999       if (deprecated_readline_hook && input_from_terminal_p ())
1000         {
1001           rl = (*deprecated_readline_hook) (local_prompt);
1002         }
1003       else if (command_editing_p && input_from_terminal_p ())
1004         {
1005           rl = gdb_readline_wrapper (local_prompt);
1006         }
1007       else
1008         {
1009           rl = gdb_readline (local_prompt);
1010         }
1011
1012       if (annotation_level > 1 && instream == stdin)
1013         {
1014           puts_unfiltered ("\n\032\032post-");
1015           puts_unfiltered (annotation_suffix);
1016           puts_unfiltered ("\n");
1017         }
1018
1019       if (!rl || rl == (char *) EOF)
1020         {
1021           got_eof = 1;
1022           break;
1023         }
1024       if (strlen (rl) + 1 + (p - linebuffer) > linelength)
1025         {
1026           linelength = strlen (rl) + 1 + (p - linebuffer);
1027           nline = (char *) xrealloc (linebuffer, linelength);
1028           p += nline - linebuffer;
1029           linebuffer = nline;
1030         }
1031       p1 = rl;
1032       /* Copy line.  Don't copy null at end.  (Leaves line alone
1033          if this was just a newline)  */
1034       while (*p1)
1035         *p++ = *p1++;
1036
1037       xfree (rl);               /* Allocated in readline.  */
1038
1039       if (p == linebuffer || *(p - 1) != '\\')
1040         break;
1041
1042       p--;                      /* Put on top of '\'.  */
1043       local_prompt = (char *) 0;
1044     }
1045
1046 #ifdef STOP_SIGNAL
1047   if (job_control)
1048     signal (STOP_SIGNAL, SIG_DFL);
1049 #endif
1050   immediate_quit--;
1051
1052   if (got_eof)
1053     return NULL;
1054
1055 #define SERVER_COMMAND_LENGTH 7
1056   server_command =
1057     (p - linebuffer > SERVER_COMMAND_LENGTH)
1058     && strncmp (linebuffer, "server ", SERVER_COMMAND_LENGTH) == 0;
1059   if (server_command)
1060     {
1061       /* Note that we don't set `line'.  Between this and the check in
1062          dont_repeat, this insures that repeating will still do the
1063          right thing.  */
1064       *p = '\0';
1065       return linebuffer + SERVER_COMMAND_LENGTH;
1066     }
1067
1068   /* Do history expansion if that is wished.  */
1069   if (history_expansion_p && instream == stdin
1070       && ISATTY (instream))
1071     {
1072       char *history_value;
1073       int expanded;
1074
1075       *p = '\0';                /* Insert null now.  */
1076       expanded = history_expand (linebuffer, &history_value);
1077       if (expanded)
1078         {
1079           /* Print the changes.  */
1080           printf_unfiltered ("%s\n", history_value);
1081
1082           /* If there was an error, call this function again.  */
1083           if (expanded < 0)
1084             {
1085               xfree (history_value);
1086               return command_line_input (prompt_arg, repeat, annotation_suffix);
1087             }
1088           if (strlen (history_value) > linelength)
1089             {
1090               linelength = strlen (history_value) + 1;
1091               linebuffer = (char *) xrealloc (linebuffer, linelength);
1092             }
1093           strcpy (linebuffer, history_value);
1094           p = linebuffer + strlen (linebuffer);
1095           xfree (history_value);
1096         }
1097     }
1098
1099   /* If we just got an empty line, and that is supposed
1100      to repeat the previous command, return the value in the
1101      global buffer.  */
1102   if (repeat && p == linebuffer)
1103     return line;
1104   for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++);
1105   if (repeat && !*p1)
1106     return line;
1107
1108   *p = 0;
1109
1110   /* Add line to history if appropriate.  */
1111   if (instream == stdin
1112       && ISATTY (stdin) && *linebuffer)
1113     add_history (linebuffer);
1114
1115   /* Note: lines consisting solely of comments are added to the command
1116      history.  This is useful when you type a command, and then
1117      realize you don't want to execute it quite yet.  You can comment
1118      out the command and then later fetch it from the value history
1119      and remove the '#'.  The kill ring is probably better, but some
1120      people are in the habit of commenting things out.  */
1121   if (*p1 == '#')
1122     *p1 = '\0';                 /* Found a comment. */
1123
1124   /* Save into global buffer if appropriate.  */
1125   if (repeat)
1126     {
1127       if (linelength > linesize)
1128         {
1129           line = xrealloc (line, linelength);
1130           linesize = linelength;
1131         }
1132       strcpy (line, linebuffer);
1133       return line;
1134     }
1135
1136   return linebuffer;
1137 }
1138 \f
1139 /* Print the GDB banner. */
1140 void
1141 print_gdb_version (struct ui_file *stream)
1142 {
1143   /* From GNU coding standards, first line is meant to be easy for a
1144      program to parse, and is just canonical program name and version
1145      number, which starts after last space. */
1146
1147   fprintf_filtered (stream, "GNU gdb %s\n", version);
1148
1149   /* Second line is a copyright notice. */
1150
1151   fprintf_filtered (stream, "Copyright (C) 2007 Free Software Foundation, Inc.\n");
1152
1153   /* Following the copyright is a brief statement that the program is
1154      free software, that users are free to copy and change it on
1155      certain conditions, that it is covered by the GNU GPL, and that
1156      there is no warranty. */
1157
1158   fprintf_filtered (stream, "\
1159 GDB is free software, covered by the GNU General Public License, and you are\n\
1160 welcome to change it and/or distribute copies of it under certain conditions.\n\
1161 Type \"show copying\" to see the conditions.\n\
1162 There is absolutely no warranty for GDB.  Type \"show warranty\" for details.\n");
1163
1164   /* After the required info we print the configuration information. */
1165
1166   fprintf_filtered (stream, "This GDB was configured as \"");
1167   if (strcmp (host_name, target_name) != 0)
1168     {
1169       fprintf_filtered (stream, "--host=%s --target=%s", host_name, target_name);
1170     }
1171   else
1172     {
1173       fprintf_filtered (stream, "%s", host_name);
1174     }
1175   fprintf_filtered (stream, "\".");
1176 }
1177 \f
1178 /* get_prompt: access method for the GDB prompt string.  */
1179
1180 char *
1181 get_prompt (void)
1182 {
1183   return PROMPT (0);
1184 }
1185
1186 void
1187 set_prompt (char *s)
1188 {
1189 /* ??rehrauer: I don't know why this fails, since it looks as though
1190    assignments to prompt are wrapped in calls to savestring...
1191    if (prompt != NULL)
1192    xfree (prompt);
1193  */
1194   PROMPT (0) = savestring (s, strlen (s));
1195 }
1196 \f
1197
1198 /* If necessary, make the user confirm that we should quit.  Return
1199    non-zero if we should quit, zero if we shouldn't.  */
1200
1201 int
1202 quit_confirm (void)
1203 {
1204   if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
1205     {
1206       char *s;
1207
1208       /* This is something of a hack.  But there's no reliable way to
1209          see if a GUI is running.  The `use_windows' variable doesn't
1210          cut it.  */
1211       if (deprecated_init_ui_hook)
1212         s = "A debugging session is active.\nDo you still want to close the debugger?";
1213       else if (attach_flag)
1214         s = "The program is running.  Quit anyway (and detach it)? ";
1215       else
1216         s = "The program is running.  Exit anyway? ";
1217
1218       if (!query ("%s", s))
1219         return 0;
1220     }
1221
1222   return 1;
1223 }
1224
1225 /* Helper routine for quit_force that requires error handling.  */
1226
1227 struct qt_args
1228 {
1229   char *args;
1230   int from_tty;
1231 };
1232
1233 static int
1234 quit_target (void *arg)
1235 {
1236   struct qt_args *qt = (struct qt_args *)arg;
1237
1238   if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
1239     {
1240       if (attach_flag)
1241         target_detach (qt->args, qt->from_tty);
1242       else
1243         target_kill ();
1244     }
1245
1246   /* UDI wants this, to kill the TIP.  */
1247   target_close (&current_target, 1);
1248
1249   /* Save the history information if it is appropriate to do so.  */
1250   if (write_history_p && history_filename)
1251     write_history (history_filename);
1252
1253   do_final_cleanups (ALL_CLEANUPS);     /* Do any final cleanups before exiting */
1254
1255   return 0;
1256 }
1257
1258 /* Quit without asking for confirmation.  */
1259
1260 void
1261 quit_force (char *args, int from_tty)
1262 {
1263   int exit_code = 0;
1264   struct qt_args qt;
1265
1266   /* An optional expression may be used to cause gdb to terminate with the 
1267      value of that expression. */
1268   if (args)
1269     {
1270       struct value *val = parse_and_eval (args);
1271
1272       exit_code = (int) value_as_long (val);
1273     }
1274   else if (return_child_result)
1275     exit_code = return_child_result_value;
1276
1277   qt.args = args;
1278   qt.from_tty = from_tty;
1279
1280   /* We want to handle any quit errors and exit regardless.  */
1281   catch_errors (quit_target, &qt,
1282                 "Quitting: ", RETURN_MASK_ALL);
1283
1284   exit (exit_code);
1285 }
1286
1287 /* Returns whether GDB is running on a terminal and input is
1288    currently coming from that terminal.  */
1289
1290 int
1291 input_from_terminal_p (void)
1292 {
1293   if (gdb_has_a_terminal () && instream == stdin)
1294     return 1;
1295
1296   /* If INSTREAM is unset, and we are not in a user command, we
1297      must be in Insight.  That's like having a terminal, for our
1298      purposes.  */
1299   if (instream == NULL && !in_user_command)
1300     return 1;
1301
1302   return 0;
1303 }
1304 \f
1305 static void
1306 dont_repeat_command (char *ignored, int from_tty)
1307 {
1308   *line = 0;                    /* Can't call dont_repeat here because we're not
1309                                    necessarily reading from stdin.  */
1310 }
1311 \f
1312 /* Functions to manipulate command line editing control variables.  */
1313
1314 /* Number of commands to print in each call to show_commands.  */
1315 #define Hist_print 10
1316 void
1317 show_commands (char *args, int from_tty)
1318 {
1319   /* Index for history commands.  Relative to history_base.  */
1320   int offset;
1321
1322   /* Number of the history entry which we are planning to display next.
1323      Relative to history_base.  */
1324   static int num = 0;
1325
1326   /* The first command in the history which doesn't exist (i.e. one more
1327      than the number of the last command).  Relative to history_base.  */
1328   int hist_len;
1329
1330   /* Print out some of the commands from the command history.  */
1331   /* First determine the length of the history list.  */
1332   hist_len = history_size;
1333   for (offset = 0; offset < history_size; offset++)
1334     {
1335       if (!history_get (history_base + offset))
1336         {
1337           hist_len = offset;
1338           break;
1339         }
1340     }
1341
1342   if (args)
1343     {
1344       if (args[0] == '+' && args[1] == '\0')
1345         /* "info editing +" should print from the stored position.  */
1346         ;
1347       else
1348         /* "info editing <exp>" should print around command number <exp>.  */
1349         num = (parse_and_eval_long (args) - history_base) - Hist_print / 2;
1350     }
1351   /* "show commands" means print the last Hist_print commands.  */
1352   else
1353     {
1354       num = hist_len - Hist_print;
1355     }
1356
1357   if (num < 0)
1358     num = 0;
1359
1360   /* If there are at least Hist_print commands, we want to display the last
1361      Hist_print rather than, say, the last 6.  */
1362   if (hist_len - num < Hist_print)
1363     {
1364       num = hist_len - Hist_print;
1365       if (num < 0)
1366         num = 0;
1367     }
1368
1369   for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
1370     {
1371       printf_filtered ("%5d  %s\n", history_base + offset,
1372                        (history_get (history_base + offset))->line);
1373     }
1374
1375   /* The next command we want to display is the next one that we haven't
1376      displayed yet.  */
1377   num += Hist_print;
1378
1379   /* If the user repeats this command with return, it should do what
1380      "show commands +" does.  This is unnecessary if arg is null,
1381      because "show commands +" is not useful after "show commands".  */
1382   if (from_tty && args)
1383     {
1384       args[0] = '+';
1385       args[1] = '\0';
1386     }
1387 }
1388
1389 /* Called by do_setshow_command.  */
1390 static void
1391 set_history_size_command (char *args, int from_tty, struct cmd_list_element *c)
1392 {
1393   if (history_size == INT_MAX)
1394     unstifle_history ();
1395   else if (history_size >= 0)
1396     stifle_history (history_size);
1397   else
1398     {
1399       history_size = INT_MAX;
1400       error (_("History size must be non-negative"));
1401     }
1402 }
1403
1404 void
1405 set_history (char *args, int from_tty)
1406 {
1407   printf_unfiltered (_("\"set history\" must be followed by the name of a history subcommand.\n"));
1408   help_list (sethistlist, "set history ", -1, gdb_stdout);
1409 }
1410
1411 void
1412 show_history (char *args, int from_tty)
1413 {
1414   cmd_show_list (showhistlist, from_tty, "");
1415 }
1416
1417 int info_verbose = 0;           /* Default verbose msgs off */
1418
1419 /* Called by do_setshow_command.  An elaborate joke.  */
1420 void
1421 set_verbose (char *args, int from_tty, struct cmd_list_element *c)
1422 {
1423   char *cmdname = "verbose";
1424   struct cmd_list_element *showcmd;
1425
1426   showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
1427
1428   if (info_verbose)
1429     {
1430       c->doc = "Set verbose printing of informational messages.";
1431       showcmd->doc = "Show verbose printing of informational messages.";
1432     }
1433   else
1434     {
1435       c->doc = "Set verbosity.";
1436       showcmd->doc = "Show verbosity.";
1437     }
1438 }
1439
1440 /* Init the history buffer.  Note that we are called after the init file(s)
1441  * have been read so that the user can change the history file via his
1442  * .gdbinit file (for instance).  The GDBHISTFILE environment variable
1443  * overrides all of this.
1444  */
1445
1446 void
1447 init_history (void)
1448 {
1449   char *tmpenv;
1450
1451   tmpenv = getenv ("HISTSIZE");
1452   if (tmpenv)
1453     history_size = atoi (tmpenv);
1454   else if (!history_size)
1455     history_size = 256;
1456
1457   stifle_history (history_size);
1458
1459   tmpenv = getenv ("GDBHISTFILE");
1460   if (tmpenv)
1461     history_filename = savestring (tmpenv, strlen (tmpenv));
1462   else if (!history_filename)
1463     {
1464       /* We include the current directory so that if the user changes
1465          directories the file written will be the same as the one
1466          that was read.  */
1467 #ifdef __MSDOS__
1468       /* No leading dots in file names are allowed on MSDOS.  */
1469       history_filename = concat (current_directory, "/_gdb_history",
1470                                  (char *)NULL);
1471 #else
1472       history_filename = concat (current_directory, "/.gdb_history",
1473                                  (char *)NULL);
1474 #endif
1475     }
1476   read_history (history_filename);
1477 }
1478
1479 static void
1480 show_new_async_prompt (struct ui_file *file, int from_tty,
1481                        struct cmd_list_element *c, const char *value)
1482 {
1483   fprintf_filtered (file, _("Gdb's prompt is \"%s\".\n"), value);
1484 }
1485
1486 static void
1487 show_async_command_editing_p (struct ui_file *file, int from_tty,
1488                               struct cmd_list_element *c, const char *value)
1489 {
1490   fprintf_filtered (file, _("\
1491 Editing of command lines as they are typed is %s.\n"),
1492                     value);
1493 }
1494
1495 static void
1496 show_annotation_level (struct ui_file *file, int from_tty,
1497                        struct cmd_list_element *c, const char *value)
1498 {
1499   fprintf_filtered (file, _("Annotation_level is %s.\n"), value);
1500 }
1501
1502 static void
1503 show_exec_done_display_p (struct ui_file *file, int from_tty,
1504                           struct cmd_list_element *c, const char *value)
1505 {
1506   fprintf_filtered (file, _("\
1507 Notification of completion for asynchronous execution commands is %s.\n"),
1508                     value);
1509 }
1510 static void
1511 init_main (void)
1512 {
1513   struct cmd_list_element *c;
1514
1515   /* initialize the prompt stack to a simple "(gdb) " prompt or to
1516      whatever the DEFAULT_PROMPT is.  */
1517   the_prompts.top = 0;
1518   PREFIX (0) = "";
1519   PROMPT (0) = savestring (DEFAULT_PROMPT, strlen (DEFAULT_PROMPT));
1520   SUFFIX (0) = "";
1521   /* Set things up for annotation_level > 1, if the user ever decides
1522      to use it.  */
1523   async_annotation_suffix = "prompt";
1524   /* Set the variable associated with the setshow prompt command.  */
1525   new_async_prompt = savestring (PROMPT (0), strlen (PROMPT (0)));
1526
1527   /* If gdb was started with --annotate=2, this is equivalent to the
1528      user entering the command 'set annotate 2' at the gdb prompt, so
1529      we need to do extra processing.  */
1530   if (annotation_level > 1)
1531     set_async_annotation_level (NULL, 0, NULL);
1532
1533   /* Set the important stuff up for command editing.  */
1534   command_editing_p = 1;
1535   history_expansion_p = 0;
1536   write_history_p = 0;
1537
1538   /* Setup important stuff for command line editing.  */
1539   rl_completion_entry_function = readline_line_completion_function;
1540   rl_completer_word_break_characters = default_word_break_characters ();
1541   rl_completer_quote_characters = get_gdb_completer_quote_characters ();
1542   rl_readline_name = "gdb";
1543   rl_terminal_name = getenv ("TERM");
1544
1545   /* The name for this defun comes from Bash, where it originated.
1546      15 is Control-o, the same binding this function has in Bash.  */
1547   rl_add_defun ("operate-and-get-next", gdb_rl_operate_and_get_next, 15);
1548
1549   add_setshow_string_cmd ("prompt", class_support,
1550                           &new_async_prompt, _("\
1551 Set gdb's prompt"), _("\
1552 Show gdb's prompt"), NULL,
1553                           set_async_prompt,
1554                           show_new_async_prompt,
1555                           &setlist, &showlist);
1556
1557   add_com ("dont-repeat", class_support, dont_repeat_command, _("\
1558 Don't repeat this command.\n\
1559 Primarily used inside of user-defined commands that should not be repeated when\n\
1560 hitting return."));
1561
1562   add_setshow_boolean_cmd ("editing", class_support,
1563                            &async_command_editing_p, _("\
1564 Set editing of command lines as they are typed."), _("\
1565 Show editing of command lines as they are typed."), _("\
1566 Use \"on\" to enable the editing, and \"off\" to disable it.\n\
1567 Without an argument, command line editing is enabled.  To edit, use\n\
1568 EMACS-like or VI-like commands like control-P or ESC."),
1569                            set_async_editing_command,
1570                            show_async_command_editing_p,
1571                            &setlist, &showlist);
1572
1573   add_setshow_boolean_cmd ("save", no_class, &write_history_p, _("\
1574 Set saving of the history record on exit."), _("\
1575 Show saving of the history record on exit."), _("\
1576 Use \"on\" to enable the saving, and \"off\" to disable it.\n\
1577 Without an argument, saving is enabled."),
1578                            NULL,
1579                            show_write_history_p,
1580                            &sethistlist, &showhistlist);
1581
1582   add_setshow_integer_cmd ("size", no_class, &history_size, _("\
1583 Set the size of the command history,"), _("\
1584 Show the size of the command history,"), _("\
1585 ie. the number of previous commands to keep a record of."),
1586                            set_history_size_command,
1587                            show_history_size,
1588                            &sethistlist, &showhistlist);
1589
1590   add_setshow_filename_cmd ("filename", no_class, &history_filename, _("\
1591 Set the filename in which to record the command history"), _("\
1592 Show the filename in which to record the command history"), _("\
1593 (the list of previous commands of which a record is kept)."),
1594                             NULL,
1595                             show_history_filename,
1596                             &sethistlist, &showhistlist);
1597
1598   add_setshow_boolean_cmd ("confirm", class_support, &caution, _("\
1599 Set whether to confirm potentially dangerous operations."), _("\
1600 Show whether to confirm potentially dangerous operations."), NULL,
1601                            NULL,
1602                            show_caution,
1603                            &setlist, &showlist);
1604
1605   add_setshow_zinteger_cmd ("annotate", class_obscure, &annotation_level, _("\
1606 Set annotation_level."), _("\
1607 Show annotation_level."), _("\
1608 0 == normal;     1 == fullname (for use when running under emacs)\n\
1609 2 == output annotated suitably for use by programs that control GDB."),
1610                             set_async_annotation_level,
1611                             show_annotation_level,
1612                             &setlist, &showlist);
1613
1614   add_setshow_boolean_cmd ("exec-done-display", class_support,
1615                            &exec_done_display_p, _("\
1616 Set notification of completion for asynchronous execution commands."), _("\
1617 Show notification of completion for asynchronous execution commands."), _("\
1618 Use \"on\" to enable the notification, and \"off\" to disable it."),
1619                            NULL,
1620                            show_exec_done_display_p,
1621                            &setlist, &showlist);
1622 }
1623
1624 void
1625 gdb_init (char *argv0)
1626 {
1627   if (pre_init_ui_hook)
1628     pre_init_ui_hook ();
1629
1630   /* Run the init function of each source file */
1631
1632   getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
1633   current_directory = gdb_dirbuf;
1634
1635 #ifdef __MSDOS__
1636   /* Make sure we return to the original directory upon exit, come
1637      what may, since the OS doesn't do that for us.  */
1638   make_final_cleanup (do_chdir_cleanup, xstrdup (current_directory));
1639 #endif
1640
1641   init_cmd_lists ();            /* This needs to be done first */
1642   initialize_targets ();        /* Setup target_terminal macros for utils.c */
1643   initialize_utils ();          /* Make errors and warnings possible */
1644   initialize_all_files ();
1645   initialize_current_architecture ();
1646   init_cli_cmds();
1647   init_main ();                 /* But that omits this file!  Do it now */
1648
1649   initialize_stdin_serial ();
1650
1651   async_init_signals ();
1652
1653   /* We need a default language for parsing expressions, so simple things like
1654      "set width 0" won't fail if no language is explicitly set in a config file
1655      or implicitly set by reading an executable during startup. */
1656   set_language (language_c);
1657   expected_language = current_language;         /* don't warn about the change.  */
1658
1659   /* Allow another UI to initialize. If the UI fails to initialize,
1660      and it wants GDB to revert to the CLI, it should clear
1661      deprecated_init_ui_hook.  */
1662   if (deprecated_init_ui_hook)
1663     deprecated_init_ui_hook (argv0);
1664 }