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