OSDN Git Service

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