b0dc6710c0743f928617ecccac45775042028e08
[external/binutils.git] / gdb / top.c
1 /* Top level stuff for GDB, the GNU debugger.
2    Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3    1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
4
5    This file is part of GDB.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 59 Temple Place - Suite 330,
20    Boston, MA 02111-1307, USA.  */
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 "symtab.h"
29 #include "inferior.h"
30 #include <signal.h>
31 #include "target.h"
32 #include "breakpoint.h"
33 #include "gdbtypes.h"
34 #include "expression.h"
35 #include "value.h"
36 #include "language.h"
37 #include "terminal.h"           /* For job_control.  */
38 #include "annotate.h"
39 #include "completer.h"
40 #include "top.h"
41 #include "version.h"
42 #include "serial.h"
43
44 /* readline include files */
45 #include <readline/readline.h>
46 #include <readline/history.h>
47
48 /* readline defines this.  */
49 #undef savestring
50
51 #include <sys/types.h>
52
53 #include <setjmp.h>
54
55 #include "event-top.h"
56 #include "gdb_string.h"
57 #include "gdb_stat.h"
58 #include <ctype.h>
59 #ifdef UI_OUT
60 #include "ui-out.h"
61 #include "cli-out.h"
62 #endif
63
64 /* Default command line prompt.  This is overriden in some configs. */
65
66 #ifndef DEFAULT_PROMPT
67 #define DEFAULT_PROMPT  "(gdb) "
68 #endif
69
70 /* Initialization file name for gdb.  This is overridden in some configs.  */
71
72 #ifndef GDBINIT_FILENAME
73 #define GDBINIT_FILENAME        ".gdbinit"
74 #endif
75 char gdbinit[] = GDBINIT_FILENAME;
76
77 int inhibit_gdbinit = 0;
78
79 /* If nonzero, and GDB has been configured to be able to use windows,
80    attempt to open them upon startup.  */
81
82 int use_windows = 1;
83
84 extern char lang_frame_mismatch_warn[];         /* language.c */
85
86 /* Flag for whether we want all the "from_tty" gubbish printed.  */
87
88 int caution = 1;                /* Default is yes, sigh. */
89
90 /* stdio stream that command input is being read from.  Set to stdin normally.
91    Set by source_command to the file we are sourcing.  Set to NULL if we are
92    executing a user-defined command or interacting via a GUI.  */
93
94 FILE *instream;
95
96 /* Current working directory.  */
97
98 char *current_directory;
99
100 /* The directory name is actually stored here (usually).  */
101 char gdb_dirbuf[1024];
102
103 /* Function to call before reading a command, if nonzero.
104    The function receives two args: an input stream,
105    and a prompt string.  */
106
107 void (*window_hook) (FILE *, char *);
108
109 int epoch_interface;
110 int xgdb_verbose;
111
112 /* gdb prints this when reading a command interactively */
113 static char *gdb_prompt_string; /* the global prompt string */
114
115 /* Buffer used for reading command lines, and the size
116    allocated for it so far.  */
117
118 char *line;
119 int linesize = 100;
120
121 /* Nonzero if the current command is modified by "server ".  This
122    affects things like recording into the command history, commands
123    repeating on RETURN, etc.  This is so a user interface (emacs, GUI,
124    whatever) can issue its own commands and also send along commands
125    from the user, and have the user not notice that the user interface
126    is issuing commands too.  */
127 int server_command;
128
129 /* Baud rate specified for talking to serial target systems.  Default
130    is left as -1, so targets can choose their own defaults.  */
131 /* FIXME: This means that "show remotebaud" and gr_files_info can print -1
132    or (unsigned int)-1.  This is a Bad User Interface.  */
133
134 int baud_rate = -1;
135
136 /* Timeout limit for response from target. */
137
138 /* The default value has been changed many times over the years.  It 
139    was originally 5 seconds.  But that was thought to be a long time 
140    to sit and wait, so it was changed to 2 seconds.  That was thought
141    to be plenty unless the connection was going through some terminal 
142    server or multiplexer or other form of hairy serial connection.
143
144    In mid-1996, remote_timeout was moved from remote.c to top.c and 
145    it began being used in other remote-* targets.  It appears that the
146    default was changed to 20 seconds at that time, perhaps because the
147    Hitachi E7000 ICE didn't always respond in a timely manner.
148
149    But if 5 seconds is a long time to sit and wait for retransmissions,
150    20 seconds is far worse.  This demonstrates the difficulty of using 
151    a single variable for all protocol timeouts.
152
153    As remote.c is used much more than remote-e7000.c, it was changed 
154    back to 2 seconds in 1999. */
155
156 int remote_timeout = 2;
157
158 /* Non-zero tells remote* modules to output debugging info.  */
159
160 int remote_debug = 0;
161
162 /* Non-zero means the target is running. Note: this is different from
163    saying that there is an active target and we are stopped at a
164    breakpoint, for instance. This is a real indicator whether the
165    target is off and running, which gdb is doing something else. */
166 int target_executing = 0;
167
168 /* Level of control structure.  */
169 static int control_level;
170
171 /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT.  */
172
173 #ifndef STOP_SIGNAL
174 #ifdef SIGTSTP
175 #define STOP_SIGNAL SIGTSTP
176 static void stop_sig (int);
177 #endif
178 #endif
179
180 /* Some System V have job control but not sigsetmask(). */
181 #if !defined (HAVE_SIGSETMASK)
182 #if !defined (USG)
183 #define HAVE_SIGSETMASK 1
184 #else
185 #define HAVE_SIGSETMASK 0
186 #endif
187 #endif
188
189 #if 0 == (HAVE_SIGSETMASK)
190 #define sigsetmask(n)
191 #endif
192
193 /* Hooks for alternate command interfaces.  */
194
195 /* Called after most modules have been initialized, but before taking users
196    command file.  */
197
198 void (*init_ui_hook) (char *argv0);
199
200 /* This hook is called from within gdb's many mini-event loops which could
201    steal control from a real user interface's event loop. It returns
202    non-zero if the user is requesting a detach, zero otherwise. */
203
204 int (*ui_loop_hook) (int);
205
206 /* Called instead of command_loop at top level.  Can be invoked via
207    return_to_top_level.  */
208
209 void (*command_loop_hook) (void);
210
211
212 /* Called from print_frame_info to list the line we stopped in.  */
213
214 void (*print_frame_info_listing_hook) (struct symtab * s, int line,
215                                        int stopline, int noerror);
216 /* Replaces most of query.  */
217
218 int (*query_hook) (const char *, va_list);
219
220 /* Replaces most of warning.  */
221
222 void (*warning_hook) (const char *, va_list);
223
224 /* These three functions support getting lines of text from the user.  They
225    are used in sequence.  First readline_begin_hook is called with a text
226    string that might be (for example) a message for the user to type in a
227    sequence of commands to be executed at a breakpoint.  If this function
228    calls back to a GUI, it might take this opportunity to pop up a text
229    interaction window with this message.  Next, readline_hook is called
230    with a prompt that is emitted prior to collecting the user input.
231    It can be called multiple times.  Finally, readline_end_hook is called
232    to notify the GUI that we are done with the interaction window and it
233    can close it. */
234
235 void (*readline_begin_hook) (char *, ...);
236 char *(*readline_hook) (char *);
237 void (*readline_end_hook) (void);
238
239 /* Called as appropriate to notify the interface of the specified breakpoint
240    conditions.  */
241
242 void (*create_breakpoint_hook) (struct breakpoint * bpt);
243 void (*delete_breakpoint_hook) (struct breakpoint * bpt);
244 void (*modify_breakpoint_hook) (struct breakpoint * bpt);
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 (*attach_hook) (void);
250 void (*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 (*interactive_hook) (void);
256
257 /* Called when the registers have changed, as a hint to a GUI
258    to minimize window update. */
259
260 void (*registers_changed_hook) (void);
261
262 /* Tell the GUI someone changed the register REGNO. -1 means
263    that the caller does not know which register changed or
264    that several registers have changed (see value_assign). */
265 void (*register_changed_hook) (int regno);
266
267 /* Tell the GUI someone changed LEN bytes of memory at ADDR */
268 void (*memory_changed_hook) (CORE_ADDR addr, int len);
269
270 /* Called when going to wait for the target.  Usually allows the GUI to run
271    while waiting for target events.  */
272
273 ptid_t (*target_wait_hook) (ptid_t ptid,
274                             struct target_waitstatus * status);
275
276 /* Used by UI as a wrapper around command execution.  May do various things
277    like enabling/disabling buttons, etc...  */
278
279 void (*call_command_hook) (struct cmd_list_element * c, char *cmd,
280                            int from_tty);
281
282 /* Called after a `set' command has finished.  Is only run if the
283    `set' command succeeded.  */
284
285 void (*set_hook) (struct cmd_list_element * c);
286
287 /* Called when the current thread changes.  Argument is thread id.  */
288
289 void (*context_hook) (int id);
290
291 /* Takes control from error ().  Typically used to prevent longjmps out of the
292    middle of the GUI.  Usually used in conjunction with a catch routine.  */
293
294 NORETURN void (*error_hook) (void) ATTR_NORETURN;
295 \f
296
297 /* One should use catch_errors rather than manipulating these
298    directly.  */
299 #if defined(HAVE_SIGSETJMP)
300 #define SIGJMP_BUF              sigjmp_buf
301 #define SIGSETJMP(buf)          sigsetjmp(buf, 1)
302 #define SIGLONGJMP(buf,val)     siglongjmp(buf,val)
303 #else
304 #define SIGJMP_BUF              jmp_buf
305 #define SIGSETJMP(buf)          setjmp(buf)
306 #define SIGLONGJMP(buf,val)     longjmp(buf,val)
307 #endif
308
309 /* Where to go for return_to_top_level.  */
310 static SIGJMP_BUF *catch_return;
311
312 /* Return for reason REASON to the nearest containing catch_errors().  */
313
314 NORETURN void
315 return_to_top_level (enum return_reason reason)
316 {
317   quit_flag = 0;
318   immediate_quit = 0;
319
320   /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
321      I can think of a reason why that is vital, though).  */
322   bpstat_clear_actions (stop_bpstat);   /* Clear queued breakpoint commands */
323
324   disable_current_display ();
325   do_cleanups (ALL_CLEANUPS);
326   if (event_loop_p && target_can_async_p () && !target_executing)
327     do_exec_cleanups (ALL_CLEANUPS);
328   if (event_loop_p && sync_execution)
329     do_exec_error_cleanups (ALL_CLEANUPS);
330
331   if (annotation_level > 1)
332     switch (reason)
333       {
334       case RETURN_QUIT:
335         annotate_quit ();
336         break;
337       case RETURN_ERROR:
338         annotate_error ();
339         break;
340       }
341
342   /* Jump to the containing catch_errors() call, communicating REASON
343      to that call via setjmp's return value.  Note that REASON can't
344      be zero, by definition in defs.h. */
345
346   (NORETURN void) SIGLONGJMP (*catch_return, (int) reason);
347 }
348
349 /* Call FUNC with arg ARGS, catching any errors.  If there is no
350    error, return the value returned by FUNC.  If there is an error,
351    print ERRSTRING, print the specific error message, then return
352    zero.
353
354    Must not be called with immediate_quit in effect (bad things might
355    happen, say we got a signal in the middle of a memcpy to quit_return).
356    This is an OK restriction; with very few exceptions immediate_quit can
357    be replaced by judicious use of QUIT.
358
359    MASK specifies what to catch; it is normally set to
360    RETURN_MASK_ALL, if for no other reason than that the code which
361    calls catch_errors might not be set up to deal with a quit which
362    isn't caught.  But if the code can deal with it, it generally
363    should be RETURN_MASK_ERROR, unless for some reason it is more
364    useful to abort only the portion of the operation inside the
365    catch_errors.  Note that quit should return to the command line
366    fairly quickly, even if some further processing is being done.  */
367
368 /* MAYBE: cagney/1999-11-05: catch_errors() in conjunction with
369    error() et.al. could maintain a set of flags that indicate the the
370    current state of each of the longjmp buffers.  This would give the
371    longjmp code the chance to detect a longjmp botch (before it gets
372    to longjmperror()).  Prior to 1999-11-05 this wasn't possible as
373    code also randomly used a SET_TOP_LEVEL macro that directly
374    initialize the longjmp buffers. */
375
376 /* MAYBE: cagney/1999-11-05: Should the catch_errors and cleanups code
377    be consolidated into a single file instead of being distributed
378    between utils.c and top.c? */
379
380 int
381 catch_errors (catch_errors_ftype *func, PTR args, char *errstring,
382               return_mask mask)
383 {
384   SIGJMP_BUF *saved_catch;
385   SIGJMP_BUF catch;
386   int val;
387   struct cleanup *saved_cleanup_chain;
388   char *saved_error_pre_print;
389   char *saved_quit_pre_print;
390
391   /* Return value from SIGSETJMP(): enum return_reason if error or
392      quit caught, 0 otherwise. */
393   int caught;
394
395   /* Override error/quit messages during FUNC. */
396
397   saved_error_pre_print = error_pre_print;
398   saved_quit_pre_print = quit_pre_print;
399
400   if (mask & RETURN_MASK_ERROR)
401     error_pre_print = errstring;
402   if (mask & RETURN_MASK_QUIT)
403     quit_pre_print = errstring;
404
405   /* Prevent error/quit during FUNC from calling cleanups established
406      prior to here. */
407
408   saved_cleanup_chain = save_cleanups ();
409
410   /* Call FUNC, catching error/quit events. */
411
412   saved_catch = catch_return;
413   catch_return = &catch;
414   caught = SIGSETJMP (catch);
415   if (!caught)
416     val = (*func) (args);
417   else
418     val = 0;
419   catch_return = saved_catch;
420
421   /* FIXME: cagney/1999-11-05: A correct FUNC implementation will
422      clean things up (restoring the cleanup chain) to the state they
423      were just prior to the call.  Unfortunately, many FUNC's are not
424      that well behaved.  This could be fixed by adding either a
425      do_cleanups call (to cover the problem) or an assertion check to
426      detect bad FUNCs code. */
427
428   /* Restore the cleanup chain and error/quit messages to their
429      original states. */
430
431   restore_cleanups (saved_cleanup_chain);
432
433   if (mask & RETURN_MASK_QUIT)
434     quit_pre_print = saved_quit_pre_print;
435   if (mask & RETURN_MASK_ERROR)
436     error_pre_print = saved_error_pre_print;
437
438   /* Return normally if no error/quit event occurred. */
439
440   if (!caught)
441     return val;
442
443   /* If the caller didn't request that the event be caught, relay the
444      event to the next containing catch_errors(). */
445
446   if (!(mask & RETURN_MASK (caught)))
447     return_to_top_level (caught);
448
449   /* Tell the caller that an event was caught.
450
451      FIXME: nsd/2000-02-22: When MASK is RETURN_MASK_ALL, the caller
452      can't tell what type of event occurred.
453
454      A possible fix is to add a new interface, catch_event(), that
455      returns enum return_reason after catching an error or a quit.
456
457      When returning normally, i.e. without catching an error or a
458      quit, catch_event() could return RETURN_NORMAL, which would be
459      added to enum return_reason.  FUNC would return information
460      exclusively via ARGS.
461
462      Alternatively, normal catch_event() could return FUNC's return
463      value.  The caller would need to be aware of potential overlap
464      with enum return_reason, which could be publicly restricted to
465      negative values to simplify return value processing in FUNC and
466      in the caller. */
467
468   return 0;
469 }
470
471 struct captured_command_args
472   {
473     catch_command_errors_ftype *command;
474     char *arg;
475     int from_tty;
476   };
477
478 static int
479 do_captured_command (void *data)
480 {
481   struct captured_command_args *context = data;
482   context->command (context->arg, context->from_tty);
483   /* FIXME: cagney/1999-11-07: Technically this do_cleanups() call
484      isn't needed.  Instead an assertion check could be made that
485      simply confirmed that the called function correctly cleaned up
486      after itself.  Unfortunately, old code (prior to 1999-11-04) in
487      main.c was calling SET_TOP_LEVEL(), calling the command function,
488      and then *always* calling do_cleanups().  For the moment we
489      remain ``bug compatible'' with that old code..  */
490   do_cleanups (ALL_CLEANUPS);
491   return 1;
492 }
493
494 int
495 catch_command_errors (catch_command_errors_ftype * command,
496                       char *arg, int from_tty, return_mask mask)
497 {
498   struct captured_command_args args;
499   args.command = command;
500   args.arg = arg;
501   args.from_tty = from_tty;
502   return catch_errors (do_captured_command, &args, "", mask);
503 }
504
505
506 /* Handler for SIGHUP.  */
507
508 #ifdef SIGHUP
509 /* Just a little helper function for disconnect().  */
510
511 /* NOTE 1999-04-29: This function will be static again, once we modify
512    gdb to use the event loop as the default command loop and we merge
513    event-top.c into this file, top.c */
514 /* static */ int
515 quit_cover (PTR s)
516 {
517   caution = 0;                  /* Throw caution to the wind -- we're exiting.
518                                    This prevents asking the user dumb questions.  */
519   quit_command ((char *) 0, 0);
520   return 0;
521 }
522
523 static void
524 disconnect (int signo)
525 {
526   catch_errors (quit_cover, NULL,
527               "Could not kill the program being debugged", RETURN_MASK_ALL);
528   signal (SIGHUP, SIG_DFL);
529   kill (getpid (), SIGHUP);
530 }
531 #endif /* defined SIGHUP */
532 \f
533 /* Line number we are currently in in a file which is being sourced.  */
534 /* NOTE 1999-04-29: This variable will be static again, once we modify
535    gdb to use the event loop as the default command loop and we merge
536    event-top.c into this file, top.c */
537 /* static */ int source_line_number;
538
539 /* Name of the file we are sourcing.  */
540 /* NOTE 1999-04-29: This variable will be static again, once we modify
541    gdb to use the event loop as the default command loop and we merge
542    event-top.c into this file, top.c */
543 /* static */ char *source_file_name;
544
545 /* Buffer containing the error_pre_print used by the source stuff.
546    Malloc'd.  */
547 /* NOTE 1999-04-29: This variable will be static again, once we modify
548    gdb to use the event loop as the default command loop and we merge
549    event-top.c into this file, top.c */
550 /* static */ char *source_error;
551 static int source_error_allocated;
552
553 /* Something to glom on to the start of error_pre_print if source_file_name
554    is set.  */
555 /* NOTE 1999-04-29: This variable will be static again, once we modify
556    gdb to use the event loop as the default command loop and we merge
557    event-top.c into this file, top.c */
558 /* static */ char *source_pre_error;
559
560 /* Clean up on error during a "source" command (or execution of a
561    user-defined command).  */
562
563 void
564 do_restore_instream_cleanup (void *stream)
565 {
566   /* Restore the previous input stream.  */
567   instream = stream;
568 }
569
570 /* Read commands from STREAM.  */
571 void
572 read_command_file (FILE *stream)
573 {
574   struct cleanup *cleanups;
575
576   cleanups = make_cleanup (do_restore_instream_cleanup, instream);
577   instream = stream;
578   command_loop ();
579   do_cleanups (cleanups);
580 }
581 \f
582 void (*pre_init_ui_hook) (void);
583
584 #ifdef __MSDOS__
585 void
586 do_chdir_cleanup (void *old_dir)
587 {
588   chdir (old_dir);
589   xfree (old_dir);
590 }
591 #endif
592
593 /* Execute the line P as a command.
594    Pass FROM_TTY as second argument to the defining function.  */
595
596 void
597 execute_command (char *p, int from_tty)
598 {
599   register struct cmd_list_element *c;
600   register enum language flang;
601   static int warned = 0;
602   char *line;
603   
604   free_all_values ();
605
606   /* Force cleanup of any alloca areas if using C alloca instead of
607      a builtin alloca.  */
608   alloca (0);
609
610   /* This can happen when command_line_input hits end of file.  */
611   if (p == NULL)
612     return;
613
614   serial_log_command (p);
615
616   while (*p == ' ' || *p == '\t')
617     p++;
618   if (*p)
619     {
620       char *arg;
621       line = p;
622
623       c = lookup_cmd (&p, cmdlist, "", 0, 1);
624
625       /* If the target is running, we allow only a limited set of
626          commands. */
627       if (event_loop_p && target_can_async_p () && target_executing)
628         if (!strcmp (c->name, "help")
629             && !strcmp (c->name, "pwd")
630             && !strcmp (c->name, "show")
631             && !strcmp (c->name, "stop"))
632           error ("Cannot execute this command while the target is running.");
633
634       /* Pass null arg rather than an empty one.  */
635       arg = *p ? p : 0;
636
637       /* Clear off trailing whitespace, except for set and complete command.  */
638       if (arg
639           && c->type != set_cmd
640           && !is_complete_command (c->function.cfunc))
641         {
642           p = arg + strlen (arg) - 1;
643           while (p >= arg && (*p == ' ' || *p == '\t'))
644             p--;
645           *(p + 1) = '\0';
646         }
647
648       /* If this command has been pre-hooked, run the hook first. */
649       if ((c->hook_pre) && (!c->hook_in))
650       {
651         c->hook_in = 1; /* Prevent recursive hooking */
652         execute_user_command (c->hook_pre, (char *) 0);
653         c->hook_in = 0; /* Allow hook to work again once it is complete */
654       }
655
656       if (c->flags & DEPRECATED_WARN_USER)
657         deprecated_cmd_warning (&line);
658
659       if (c->class == class_user)
660         execute_user_command (c, arg);
661       else if (c->type == set_cmd || c->type == show_cmd)
662         do_setshow_command (arg, from_tty & caution, c);
663       else if (c->function.cfunc == NO_FUNCTION)
664         error ("That is not a command, just a help topic.");
665       else if (call_command_hook)
666         call_command_hook (c, arg, from_tty & caution);
667       else
668         (*c->function.cfunc) (arg, from_tty & caution);
669        
670       /* If this command has been post-hooked, run the hook last. */
671       if ((c->hook_post) && (!c->hook_in))
672       {
673         c->hook_in = 1; /* Prevent recursive hooking */
674         execute_user_command (c->hook_post, (char *) 0);
675         c->hook_in = 0; /* allow hook to work again once it is complete */
676       }
677
678     }
679
680   /* Tell the user if the language has changed (except first time).  */
681   if (current_language != expected_language)
682     {
683       if (language_mode == language_mode_auto)
684         {
685           language_info (1);    /* Print what changed.  */
686         }
687       warned = 0;
688     }
689
690   /* Warn the user if the working language does not match the
691      language of the current frame.  Only warn the user if we are
692      actually running the program, i.e. there is a stack. */
693   /* FIXME:  This should be cacheing the frame and only running when
694      the frame changes.  */
695
696   if (target_has_stack)
697     {
698       flang = get_frame_language ();
699       if (!warned
700           && flang != language_unknown
701           && flang != current_language->la_language)
702         {
703           printf_filtered ("%s\n", lang_frame_mismatch_warn);
704           warned = 1;
705         }
706     }
707 }
708
709 /* Read commands from `instream' and execute them
710    until end of file or error reading instream.  */
711
712 void
713 command_loop (void)
714 {
715   struct cleanup *old_chain;
716   char *command;
717   int stdin_is_tty = ISATTY (stdin);
718   long time_at_cmd_start;
719 #ifdef HAVE_SBRK
720   long space_at_cmd_start = 0;
721 #endif
722   extern int display_time;
723   extern int display_space;
724
725   while (instream && !feof (instream))
726     {
727       if (window_hook && instream == stdin)
728         (*window_hook) (instream, get_prompt ());
729
730       quit_flag = 0;
731       if (instream == stdin && stdin_is_tty)
732         reinitialize_more_filter ();
733       old_chain = make_cleanup (null_cleanup, 0);
734
735       /* Get a command-line. This calls the readline package. */
736       command = command_line_input (instream == stdin ?
737                                     get_prompt () : (char *) NULL,
738                                     instream == stdin, "prompt");
739       if (command == 0)
740         return;
741
742       time_at_cmd_start = get_run_time ();
743
744       if (display_space)
745         {
746 #ifdef HAVE_SBRK
747           extern char **environ;
748           char *lim = (char *) sbrk (0);
749
750           space_at_cmd_start = (long) (lim - (char *) &environ);
751 #endif
752         }
753
754       execute_command (command, instream == stdin);
755       /* Do any commands attached to breakpoint we stopped at.  */
756       bpstat_do_actions (&stop_bpstat);
757       do_cleanups (old_chain);
758
759       if (display_time)
760         {
761           long cmd_time = get_run_time () - time_at_cmd_start;
762
763           printf_unfiltered ("Command execution time: %ld.%06ld\n",
764                              cmd_time / 1000000, cmd_time % 1000000);
765         }
766
767       if (display_space)
768         {
769 #ifdef HAVE_SBRK
770           extern char **environ;
771           char *lim = (char *) sbrk (0);
772           long space_now = lim - (char *) &environ;
773           long space_diff = space_now - space_at_cmd_start;
774
775           printf_unfiltered ("Space used: %ld (%c%ld for this command)\n",
776                              space_now,
777                              (space_diff >= 0 ? '+' : '-'),
778                              space_diff);
779 #endif
780         }
781     }
782 }
783
784 /* Read commands from `instream' and execute them until end of file or
785    error reading instream. This command loop doesnt care about any
786    such things as displaying time and space usage. If the user asks
787    for those, they won't work. */
788 void
789 simplified_command_loop (char *(*read_input_func) (char *),
790                          void (*execute_command_func) (char *, int))
791 {
792   struct cleanup *old_chain;
793   char *command;
794   int stdin_is_tty = ISATTY (stdin);
795
796   while (instream && !feof (instream))
797     {
798       quit_flag = 0;
799       if (instream == stdin && stdin_is_tty)
800         reinitialize_more_filter ();
801       old_chain = make_cleanup (null_cleanup, 0);
802
803       /* Get a command-line. */
804       command = (*read_input_func) (instream == stdin ?
805                                     get_prompt () : (char *) NULL);
806
807       if (command == 0)
808         return;
809
810       (*execute_command_func) (command, instream == stdin);
811
812       /* Do any commands attached to breakpoint we stopped at.  */
813       bpstat_do_actions (&stop_bpstat);
814
815       do_cleanups (old_chain);
816     }
817 }
818 \f
819 /* Commands call this if they do not want to be repeated by null lines.  */
820
821 void
822 dont_repeat (void)
823 {
824   if (server_command)
825     return;
826
827   /* If we aren't reading from standard input, we are saving the last
828      thing read from stdin in line and don't want to delete it.  Null lines
829      won't repeat here in any case.  */
830   if (instream == stdin)
831     *line = 0;
832 }
833 \f
834 /* Read a line from the stream "instream" without command line editing.
835
836    It prints PROMPT_ARG once at the start.
837    Action is compatible with "readline", e.g. space for the result is
838    malloc'd and should be freed by the caller.
839
840    A NULL return means end of file.  */
841 char *
842 gdb_readline (char *prompt_arg)
843 {
844   int c;
845   char *result;
846   int input_index = 0;
847   int result_size = 80;
848
849   if (prompt_arg)
850     {
851       /* Don't use a _filtered function here.  It causes the assumed
852          character position to be off, since the newline we read from
853          the user is not accounted for.  */
854       fputs_unfiltered (prompt_arg, gdb_stdout);
855       /* OBSOLETE #ifdef MPW */
856       /* OBSOLETE          Move to a new line so the entered line doesn't have a prompt */
857       /* OBSOLETE          on the front of it. */
858       /* OBSOLETE       fputs_unfiltered ("\n", gdb_stdout); */
859       /* OBSOLETE #endif  *//* MPW */
860       gdb_flush (gdb_stdout);
861     }
862
863   result = (char *) xmalloc (result_size);
864
865   while (1)
866     {
867       /* Read from stdin if we are executing a user defined command.
868          This is the right thing for prompt_for_continue, at least.  */
869       c = fgetc (instream ? instream : stdin);
870
871       if (c == EOF)
872         {
873           if (input_index > 0)
874             /* The last line does not end with a newline.  Return it, and
875                if we are called again fgetc will still return EOF and
876                we'll return NULL then.  */
877             break;
878           xfree (result);
879           return NULL;
880         }
881
882       if (c == '\n')
883 #ifndef CRLF_SOURCE_FILES
884         break;
885 #else
886         {
887           if (input_index > 0 && result[input_index - 1] == '\r')
888             input_index--;
889           break;
890         }
891 #endif
892
893       result[input_index++] = c;
894       while (input_index >= result_size)
895         {
896           result_size *= 2;
897           result = (char *) xrealloc (result, result_size);
898         }
899     }
900
901   result[input_index++] = '\0';
902   return result;
903 }
904
905 /* Variables which control command line editing and history
906    substitution.  These variables are given default values at the end
907    of this file.  */
908 static int command_editing_p;
909 /* NOTE 1999-04-29: This variable will be static again, once we modify
910    gdb to use the event loop as the default command loop and we merge
911    event-top.c into this file, top.c */
912 /* static */ int history_expansion_p;
913 static int write_history_p;
914 static int history_size;
915 static char *history_filename;
916
917 \f
918 #ifdef STOP_SIGNAL
919 static void
920 stop_sig (int signo)
921 {
922 #if STOP_SIGNAL == SIGTSTP
923   signal (SIGTSTP, SIG_DFL);
924   sigsetmask (0);
925   kill (getpid (), SIGTSTP);
926   signal (SIGTSTP, stop_sig);
927 #else
928   signal (STOP_SIGNAL, stop_sig);
929 #endif
930   printf_unfiltered ("%s", get_prompt ());
931   gdb_flush (gdb_stdout);
932
933   /* Forget about any previous command -- null line now will do nothing.  */
934   dont_repeat ();
935 }
936 #endif /* STOP_SIGNAL */
937
938 /* Initialize signal handlers. */
939 static void
940 float_handler (int signo)
941 {
942   /* This message is based on ANSI C, section 4.7.  Note that integer
943      divide by zero causes this, so "float" is a misnomer.  */
944   signal (SIGFPE, float_handler);
945   error ("Erroneous arithmetic operation.");
946 }
947
948 static void
949 do_nothing (int signo)
950 {
951   /* Under System V the default disposition of a signal is reinstated after
952      the signal is caught and delivered to an application process.  On such
953      systems one must restore the replacement signal handler if one wishes
954      to continue handling the signal in one's program.  On BSD systems this
955      is not needed but it is harmless, and it simplifies the code to just do
956      it unconditionally. */
957   signal (signo, do_nothing);
958 }
959
960 static void
961 init_signals (void)
962 {
963   signal (SIGINT, request_quit);
964
965   /* If SIGTRAP was set to SIG_IGN, then the SIG_IGN will get passed
966      to the inferior and breakpoints will be ignored.  */
967 #ifdef SIGTRAP
968   signal (SIGTRAP, SIG_DFL);
969 #endif
970
971   /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
972      passed to the inferior, which we don't want.  It would be
973      possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
974      on BSD4.3 systems using vfork, that can affect the
975      GDB process as well as the inferior (the signal handling tables
976      might be in memory, shared between the two).  Since we establish
977      a handler for SIGQUIT, when we call exec it will set the signal
978      to SIG_DFL for us.  */
979   signal (SIGQUIT, do_nothing);
980 #ifdef SIGHUP
981   if (signal (SIGHUP, do_nothing) != SIG_IGN)
982     signal (SIGHUP, disconnect);
983 #endif
984   signal (SIGFPE, float_handler);
985
986 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
987   signal (SIGWINCH, SIGWINCH_HANDLER);
988 #endif
989 }
990 \f
991 /* Read one line from the command input stream `instream'
992    into the local static buffer `linebuffer' (whose current length
993    is `linelength').
994    The buffer is made bigger as necessary.
995    Returns the address of the start of the line.
996
997    NULL is returned for end of file.
998
999    *If* the instream == stdin & stdin is a terminal, the line read
1000    is copied into the file line saver (global var char *line,
1001    length linesize) so that it can be duplicated.
1002
1003    This routine either uses fancy command line editing or
1004    simple input as the user has requested.  */
1005
1006 char *
1007 command_line_input (char *prompt_arg, int repeat, char *annotation_suffix)
1008 {
1009   static char *linebuffer = 0;
1010   static unsigned linelength = 0;
1011   register char *p;
1012   char *p1;
1013   char *rl;
1014   char *local_prompt = prompt_arg;
1015   char *nline;
1016   char got_eof = 0;
1017
1018   /* The annotation suffix must be non-NULL.  */
1019   if (annotation_suffix == NULL)
1020     annotation_suffix = "";
1021
1022   if (annotation_level > 1 && instream == stdin)
1023     {
1024       local_prompt = alloca ((prompt_arg == NULL ? 0 : strlen (prompt_arg))
1025                              + strlen (annotation_suffix) + 40);
1026       if (prompt_arg == NULL)
1027         local_prompt[0] = '\0';
1028       else
1029         strcpy (local_prompt, prompt_arg);
1030       strcat (local_prompt, "\n\032\032");
1031       strcat (local_prompt, annotation_suffix);
1032       strcat (local_prompt, "\n");
1033     }
1034
1035   if (linebuffer == 0)
1036     {
1037       linelength = 80;
1038       linebuffer = (char *) xmalloc (linelength);
1039     }
1040
1041   p = linebuffer;
1042
1043   /* Control-C quits instantly if typed while in this loop
1044      since it should not wait until the user types a newline.  */
1045   immediate_quit++;
1046 #ifdef STOP_SIGNAL
1047   if (job_control)
1048     {
1049       if (event_loop_p)
1050         signal (STOP_SIGNAL, handle_stop_sig);
1051       else
1052         signal (STOP_SIGNAL, stop_sig);
1053     }
1054 #endif
1055
1056   while (1)
1057     {
1058       /* Make sure that all output has been output.  Some machines may let
1059          you get away with leaving out some of the gdb_flush, but not all.  */
1060       wrap_here ("");
1061       gdb_flush (gdb_stdout);
1062       gdb_flush (gdb_stderr);
1063
1064       if (source_file_name != NULL)
1065         {
1066           ++source_line_number;
1067           sprintf (source_error,
1068                    "%s%s:%d: Error in sourced command file:\n",
1069                    source_pre_error,
1070                    source_file_name,
1071                    source_line_number);
1072           error_pre_print = source_error;
1073         }
1074
1075       if (annotation_level > 1 && instream == stdin)
1076         {
1077           printf_unfiltered ("\n\032\032pre-");
1078           printf_unfiltered (annotation_suffix);
1079           printf_unfiltered ("\n");
1080         }
1081
1082       /* Don't use fancy stuff if not talking to stdin.  */
1083       if (readline_hook && instream == NULL)
1084         {
1085           rl = (*readline_hook) (local_prompt);
1086         }
1087       else if (command_editing_p && instream == stdin && ISATTY (instream))
1088         {
1089           rl = readline (local_prompt);
1090         }
1091       else
1092         {
1093           rl = gdb_readline (local_prompt);
1094         }
1095
1096       if (annotation_level > 1 && instream == stdin)
1097         {
1098           printf_unfiltered ("\n\032\032post-");
1099           printf_unfiltered (annotation_suffix);
1100           printf_unfiltered ("\n");
1101         }
1102
1103       if (!rl || rl == (char *) EOF)
1104         {
1105           got_eof = 1;
1106           break;
1107         }
1108       if (strlen (rl) + 1 + (p - linebuffer) > linelength)
1109         {
1110           linelength = strlen (rl) + 1 + (p - linebuffer);
1111           nline = (char *) xrealloc (linebuffer, linelength);
1112           p += nline - linebuffer;
1113           linebuffer = nline;
1114         }
1115       p1 = rl;
1116       /* Copy line.  Don't copy null at end.  (Leaves line alone
1117          if this was just a newline)  */
1118       while (*p1)
1119         *p++ = *p1++;
1120
1121       xfree (rl);               /* Allocated in readline.  */
1122
1123       if (p == linebuffer || *(p - 1) != '\\')
1124         break;
1125
1126       p--;                      /* Put on top of '\'.  */
1127       local_prompt = (char *) 0;
1128     }
1129
1130 #ifdef STOP_SIGNAL
1131   if (job_control)
1132     signal (STOP_SIGNAL, SIG_DFL);
1133 #endif
1134   immediate_quit--;
1135
1136   if (got_eof)
1137     return NULL;
1138
1139 #define SERVER_COMMAND_LENGTH 7
1140   server_command =
1141     (p - linebuffer > SERVER_COMMAND_LENGTH)
1142     && STREQN (linebuffer, "server ", SERVER_COMMAND_LENGTH);
1143   if (server_command)
1144     {
1145       /* Note that we don't set `line'.  Between this and the check in
1146          dont_repeat, this insures that repeating will still do the
1147          right thing.  */
1148       *p = '\0';
1149       return linebuffer + SERVER_COMMAND_LENGTH;
1150     }
1151
1152   /* Do history expansion if that is wished.  */
1153   if (history_expansion_p && instream == stdin
1154       && ISATTY (instream))
1155     {
1156       char *history_value;
1157       int expanded;
1158
1159       *p = '\0';                /* Insert null now.  */
1160       expanded = history_expand (linebuffer, &history_value);
1161       if (expanded)
1162         {
1163           /* Print the changes.  */
1164           printf_unfiltered ("%s\n", history_value);
1165
1166           /* If there was an error, call this function again.  */
1167           if (expanded < 0)
1168             {
1169               xfree (history_value);
1170               return command_line_input (prompt_arg, repeat, annotation_suffix);
1171             }
1172           if (strlen (history_value) > linelength)
1173             {
1174               linelength = strlen (history_value) + 1;
1175               linebuffer = (char *) xrealloc (linebuffer, linelength);
1176             }
1177           strcpy (linebuffer, history_value);
1178           p = linebuffer + strlen (linebuffer);
1179           xfree (history_value);
1180         }
1181     }
1182
1183   /* If we just got an empty line, and that is supposed
1184      to repeat the previous command, return the value in the
1185      global buffer.  */
1186   if (repeat && p == linebuffer)
1187     return line;
1188   for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++);
1189   if (repeat && !*p1)
1190     return line;
1191
1192   *p = 0;
1193
1194   /* Add line to history if appropriate.  */
1195   if (instream == stdin
1196       && ISATTY (stdin) && *linebuffer)
1197     add_history (linebuffer);
1198
1199   /* Note: lines consisting solely of comments are added to the command
1200      history.  This is useful when you type a command, and then
1201      realize you don't want to execute it quite yet.  You can comment
1202      out the command and then later fetch it from the value history
1203      and remove the '#'.  The kill ring is probably better, but some
1204      people are in the habit of commenting things out.  */
1205   if (*p1 == '#')
1206     *p1 = '\0';                 /* Found a comment. */
1207
1208   /* Save into global buffer if appropriate.  */
1209   if (repeat)
1210     {
1211       if (linelength > linesize)
1212         {
1213           line = xrealloc (line, linelength);
1214           linesize = linelength;
1215         }
1216       strcpy (line, linebuffer);
1217       return line;
1218     }
1219
1220   return linebuffer;
1221 }
1222 \f
1223 /* Print the GDB banner. */
1224 void
1225 print_gdb_version (struct ui_file *stream)
1226 {
1227   /* From GNU coding standards, first line is meant to be easy for a
1228      program to parse, and is just canonical program name and version
1229      number, which starts after last space. */
1230
1231 #ifdef MI_OUT
1232   /* Print it console style until a format is defined */
1233   fprintf_filtered (stream, "GNU gdb %s (MI_OUT)\n", version);
1234 #else
1235   fprintf_filtered (stream, "GNU gdb %s\n", version);
1236 #endif
1237
1238   /* Second line is a copyright notice. */
1239
1240   fprintf_filtered (stream, "Copyright 2001 Free Software Foundation, Inc.\n");
1241
1242   /* Following the copyright is a brief statement that the program is
1243      free software, that users are free to copy and change it on
1244      certain conditions, that it is covered by the GNU GPL, and that
1245      there is no warranty. */
1246
1247   fprintf_filtered (stream, "\
1248 GDB is free software, covered by the GNU General Public License, and you are\n\
1249 welcome to change it and/or distribute copies of it under certain conditions.\n\
1250 Type \"show copying\" to see the conditions.\n\
1251 There is absolutely no warranty for GDB.  Type \"show warranty\" for details.\n");
1252
1253   /* After the required info we print the configuration information. */
1254
1255   fprintf_filtered (stream, "This GDB was configured as \"");
1256   if (!STREQ (host_name, target_name))
1257     {
1258       fprintf_filtered (stream, "--host=%s --target=%s", host_name, target_name);
1259     }
1260   else
1261     {
1262       fprintf_filtered (stream, "%s", host_name);
1263     }
1264   fprintf_filtered (stream, "\".");
1265 }
1266 \f
1267 /* get_prompt: access method for the GDB prompt string.  */
1268
1269 #define MAX_PROMPT_SIZE 256
1270
1271 /*
1272  * int get_prompt_1 (char * buf);
1273  *
1274  * Work-horse for get_prompt (called via catch_errors).
1275  * Argument is buffer to hold the formatted prompt.
1276  *
1277  * Returns: 1 for success (use formatted prompt)
1278  *          0 for failure (use gdb_prompt_string).
1279  */
1280
1281 static int gdb_prompt_escape;
1282
1283 static int
1284 get_prompt_1 (void *data)
1285 {
1286   char *formatted_prompt = data;
1287   char *local_prompt;
1288
1289   if (event_loop_p)
1290     local_prompt = PROMPT (0);
1291   else
1292     local_prompt = gdb_prompt_string;
1293
1294
1295   if (gdb_prompt_escape == 0)
1296     {
1297       return 0;                 /* do no formatting */
1298     }
1299   else
1300     /* formatted prompt */
1301     {
1302       char fmt[40], *promptp, *outp, *tmp;
1303       value_ptr arg_val;
1304       DOUBLEST doubleval;
1305       LONGEST longval;
1306       CORE_ADDR addrval;
1307
1308       int i, len;
1309       struct type *arg_type, *elt_type;
1310
1311       promptp = local_prompt;
1312       outp = formatted_prompt;
1313
1314       while (*promptp != '\0')
1315         {
1316           int available = MAX_PROMPT_SIZE - (outp - formatted_prompt) - 1;
1317
1318           if (*promptp != gdb_prompt_escape)
1319             {
1320               if (available >= 1)       /* overflow protect */
1321                 *outp++ = *promptp++;
1322             }
1323           else
1324             {
1325               /* GDB prompt string contains escape char.  Parse for arg.
1326                  Two consecutive escape chars followed by arg followed by
1327                  a comma means to insert the arg using a default format.
1328                  Otherwise a printf format string may be included between
1329                  the two escape chars.  eg:
1330                  %%foo, insert foo using default format
1331                  %2.2f%foo,     insert foo using "%2.2f" format
1332                  A mismatch between the format string and the data type
1333                  of "foo" is an error (which we don't know how to protect
1334                  against).  */
1335
1336               fmt[0] = '\0';    /* assume null format string */
1337               if (promptp[1] == gdb_prompt_escape)      /* double esc char */
1338                 {
1339                   promptp += 2; /* skip past two escape chars. */
1340                 }
1341               else
1342                 {
1343                   /* extract format string from between two esc chars */
1344                   i = 0;
1345                   do
1346                     {
1347                       fmt[i++] = *promptp++;    /* copy format string */
1348                     }
1349                   while (i < sizeof (fmt) - 1 &&
1350                          *promptp != gdb_prompt_escape &&
1351                          *promptp != '\0');
1352
1353                   if (*promptp != gdb_prompt_escape)
1354                     error ("Syntax error at prompt position %d",
1355                            promptp - local_prompt);
1356                   else
1357                     {
1358                       promptp++;        /* skip second escape char */
1359                       fmt[i++] = '\0';  /* terminate the format string */
1360                     }
1361                 }
1362
1363               arg_val = parse_to_comma_and_eval (&promptp);
1364               if (*promptp == ',')
1365                 promptp++;      /* skip past the comma */
1366               arg_type = check_typedef (VALUE_TYPE (arg_val));
1367               switch (TYPE_CODE (arg_type))
1368                 {
1369                 case TYPE_CODE_ARRAY:
1370                   elt_type = check_typedef (TYPE_TARGET_TYPE (arg_type));
1371                   if (TYPE_LENGTH (arg_type) > 0 &&
1372                       TYPE_LENGTH (elt_type) == 1 &&
1373                       TYPE_CODE (elt_type) == TYPE_CODE_INT)
1374                     {
1375                       int len = TYPE_LENGTH (arg_type);
1376
1377                       if (VALUE_LAZY (arg_val))
1378                         value_fetch_lazy (arg_val);
1379                       tmp = VALUE_CONTENTS (arg_val);
1380
1381                       if (len > available)
1382                         len = available;        /* overflow protect */
1383
1384                       /* FIXME: how to protect GDB from crashing
1385                          from bad user-supplied format string? */
1386                       if (fmt[0] != 0)
1387                         sprintf (outp, fmt, tmp);
1388                       else
1389                         strncpy (outp, tmp, len);
1390                       outp[len] = '\0';
1391                     }
1392                   break;
1393                 case TYPE_CODE_PTR:
1394                   elt_type = check_typedef (TYPE_TARGET_TYPE (arg_type));
1395                   addrval = value_as_pointer (arg_val);
1396
1397                   if (TYPE_LENGTH (elt_type) == 1 &&
1398                       TYPE_CODE (elt_type) == TYPE_CODE_INT &&
1399                       addrval != 0)
1400                     {
1401                       /* display it as a string */
1402                       char *default_fmt = "%s";
1403                       char *tmp;
1404                       int err = 0;
1405
1406                       /* Limiting the number of bytes that the following call
1407                          will read protects us from sprintf overflow later. */
1408                       i = target_read_string (addrval,  /* src */
1409                                               &tmp,     /* dest */
1410                                               available,        /* len */
1411                                               &err);
1412                       if (err)  /* read failed */
1413                         error ("%s on target_read", safe_strerror (err));
1414
1415                       tmp[i] = '\0';    /* force-terminate string */
1416                       /* FIXME: how to protect GDB from crashing
1417                          from bad user-supplied format string? */
1418                       sprintf (outp, fmt[0] == 0 ? default_fmt : fmt,
1419                                tmp);
1420                       xfree (tmp);
1421                     }
1422                   else
1423                     {
1424                       /* display it as a pointer */
1425                       char *default_fmt = "0x%x";
1426
1427                       /* FIXME: how to protect GDB from crashing
1428                          from bad user-supplied format string? */
1429                       if (available >= 16 /*? */ )      /* overflow protect */
1430                         sprintf (outp, fmt[0] == 0 ? default_fmt : fmt,
1431                                  (long) addrval);
1432                     }
1433                   break;
1434                 case TYPE_CODE_FLT:
1435                   {
1436                     char *default_fmt = "%g";
1437
1438                     doubleval = value_as_double (arg_val);
1439                     /* FIXME: how to protect GDB from crashing
1440                        from bad user-supplied format string? */
1441                     if (available >= 16 /*? */ )        /* overflow protect */
1442                       sprintf (outp, fmt[0] == 0 ? default_fmt : fmt,
1443                                (double) doubleval);
1444                     break;
1445                   }
1446                 case TYPE_CODE_INT:
1447                   {
1448                     char *default_fmt = "%d";
1449
1450                     longval = value_as_long (arg_val);
1451                     /* FIXME: how to protect GDB from crashing
1452                        from bad user-supplied format string? */
1453                     if (available >= 16 /*? */ )        /* overflow protect */
1454                       sprintf (outp, fmt[0] == 0 ? default_fmt : fmt,
1455                                (long) longval);
1456                     break;
1457                   }
1458                 case TYPE_CODE_BOOL:
1459                   {
1460                     /* no default format for bool */
1461                     longval = value_as_long (arg_val);
1462                     if (available >= 8 /*? */ )         /* overflow protect */
1463                       {
1464                         if (longval)
1465                           strcpy (outp, "<true>");
1466                         else
1467                           strcpy (outp, "<false>");
1468                       }
1469                     break;
1470                   }
1471                 case TYPE_CODE_ENUM:
1472                   {
1473                     /* no default format for enum */
1474                     longval = value_as_long (arg_val);
1475                     len = TYPE_NFIELDS (arg_type);
1476                     /* find enum name if possible */
1477                     for (i = 0; i < len; i++)
1478                       if (TYPE_FIELD_BITPOS (arg_type, i) == longval)
1479                         break;  /* match -- end loop */
1480
1481                     if (i < len)        /* enum name found */
1482                       {
1483                         char *name = TYPE_FIELD_NAME (arg_type, i);
1484
1485                         strncpy (outp, name, available);
1486                         /* in casel available < strlen (name), */
1487                         outp[available] = '\0';
1488                       }
1489                     else
1490                       {
1491                         if (available >= 16 /*? */ )    /* overflow protect */
1492                           sprintf (outp, "%ld", (long) longval);
1493                       }
1494                     break;
1495                   }
1496                 case TYPE_CODE_VOID:
1497                   *outp = '\0';
1498                   break;        /* void type -- no output */
1499                 default:
1500                   error ("bad data type at prompt position %d",
1501                          promptp - local_prompt);
1502                   break;
1503                 }
1504               outp += strlen (outp);
1505             }
1506         }
1507       *outp++ = '\0';           /* terminate prompt string */
1508       return 1;
1509     }
1510 }
1511
1512 char *
1513 get_prompt (void)
1514 {
1515   static char buf[MAX_PROMPT_SIZE];
1516
1517   if (catch_errors (get_prompt_1, buf, "bad formatted prompt: ",
1518                     RETURN_MASK_ALL))
1519     {
1520       return &buf[0];           /* successful formatted prompt */
1521     }
1522   else
1523     {
1524       /* Prompt could not be formatted.  */
1525       if (event_loop_p)
1526         return PROMPT (0);
1527       else
1528         return gdb_prompt_string;
1529     }
1530 }
1531
1532 void
1533 set_prompt (char *s)
1534 {
1535 /* ??rehrauer: I don't know why this fails, since it looks as though
1536    assignments to prompt are wrapped in calls to savestring...
1537    if (prompt != NULL)
1538    xfree (prompt);
1539  */
1540   if (event_loop_p)
1541     PROMPT (0) = savestring (s, strlen (s));
1542   else
1543     gdb_prompt_string = savestring (s, strlen (s));
1544 }
1545 \f
1546
1547 /* If necessary, make the user confirm that we should quit.  Return
1548    non-zero if we should quit, zero if we shouldn't.  */
1549
1550 int
1551 quit_confirm (void)
1552 {
1553   if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
1554     {
1555       char *s;
1556
1557       /* This is something of a hack.  But there's no reliable way to
1558          see if a GUI is running.  The `use_windows' variable doesn't
1559          cut it.  */
1560       if (init_ui_hook)
1561         s = "A debugging session is active.\nDo you still want to close the debugger?";
1562       else if (attach_flag)
1563         s = "The program is running.  Quit anyway (and detach it)? ";
1564       else
1565         s = "The program is running.  Exit anyway? ";
1566
1567       if (!query (s))
1568         return 0;
1569     }
1570
1571   return 1;
1572 }
1573
1574 /* Quit without asking for confirmation.  */
1575
1576 void
1577 quit_force (char *args, int from_tty)
1578 {
1579   int exit_code = 0;
1580
1581   /* An optional expression may be used to cause gdb to terminate with the 
1582      value of that expression. */
1583   if (args)
1584     {
1585       value_ptr val = parse_and_eval (args);
1586
1587       exit_code = (int) value_as_long (val);
1588     }
1589
1590   if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
1591     {
1592       if (attach_flag)
1593         target_detach (args, from_tty);
1594       else
1595         target_kill ();
1596     }
1597
1598   /* UDI wants this, to kill the TIP.  */
1599   target_close (1);
1600
1601   /* Save the history information if it is appropriate to do so.  */
1602   if (write_history_p && history_filename)
1603     write_history (history_filename);
1604
1605   do_final_cleanups (ALL_CLEANUPS);     /* Do any final cleanups before exiting */
1606
1607   exit (exit_code);
1608 }
1609
1610 /* Returns whether GDB is running on a terminal and whether the user
1611    desires that questions be asked of them on that terminal.  */
1612
1613 int
1614 input_from_terminal_p (void)
1615 {
1616   return gdb_has_a_terminal () && (instream == stdin) & caution;
1617 }
1618 \f
1619 /* ARGSUSED */
1620 static void
1621 dont_repeat_command (char *ignored, int from_tty)
1622 {
1623   *line = 0;                    /* Can't call dont_repeat here because we're not
1624                                    necessarily reading from stdin.  */
1625 }
1626 \f
1627 /* Functions to manipulate command line editing control variables.  */
1628
1629 /* Number of commands to print in each call to show_commands.  */
1630 #define Hist_print 10
1631 void
1632 show_commands (char *args, int from_tty)
1633 {
1634   /* Index for history commands.  Relative to history_base.  */
1635   int offset;
1636
1637   /* Number of the history entry which we are planning to display next.
1638      Relative to history_base.  */
1639   static int num = 0;
1640
1641   /* The first command in the history which doesn't exist (i.e. one more
1642      than the number of the last command).  Relative to history_base.  */
1643   int hist_len;
1644
1645 extern HIST_ENTRY *history_get (int);
1646
1647   /* Print out some of the commands from the command history.  */
1648   /* First determine the length of the history list.  */
1649   hist_len = history_size;
1650   for (offset = 0; offset < history_size; offset++)
1651     {
1652       if (!history_get (history_base + offset))
1653         {
1654           hist_len = offset;
1655           break;
1656         }
1657     }
1658
1659   if (args)
1660     {
1661       if (args[0] == '+' && args[1] == '\0')
1662         /* "info editing +" should print from the stored position.  */
1663         ;
1664       else
1665         /* "info editing <exp>" should print around command number <exp>.  */
1666         num = (parse_and_eval_long (args) - history_base) - Hist_print / 2;
1667     }
1668   /* "show commands" means print the last Hist_print commands.  */
1669   else
1670     {
1671       num = hist_len - Hist_print;
1672     }
1673
1674   if (num < 0)
1675     num = 0;
1676
1677   /* If there are at least Hist_print commands, we want to display the last
1678      Hist_print rather than, say, the last 6.  */
1679   if (hist_len - num < Hist_print)
1680     {
1681       num = hist_len - Hist_print;
1682       if (num < 0)
1683         num = 0;
1684     }
1685
1686   for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
1687     {
1688       printf_filtered ("%5d  %s\n", history_base + offset,
1689                        (history_get (history_base + offset))->line);
1690     }
1691
1692   /* The next command we want to display is the next one that we haven't
1693      displayed yet.  */
1694   num += Hist_print;
1695
1696   /* If the user repeats this command with return, it should do what
1697      "show commands +" does.  This is unnecessary if arg is null,
1698      because "show commands +" is not useful after "show commands".  */
1699   if (from_tty && args)
1700     {
1701       args[0] = '+';
1702       args[1] = '\0';
1703     }
1704 }
1705
1706 /* Called by do_setshow_command.  */
1707 /* ARGSUSED */
1708 static void
1709 set_history_size_command (char *args, int from_tty, struct cmd_list_element *c)
1710 {
1711   if (history_size == INT_MAX)
1712     unstifle_history ();
1713   else if (history_size >= 0)
1714     stifle_history (history_size);
1715   else
1716     {
1717       history_size = INT_MAX;
1718       error ("History size must be non-negative");
1719     }
1720 }
1721
1722 /* ARGSUSED */
1723 void
1724 set_history (char *args, int from_tty)
1725 {
1726   printf_unfiltered ("\"set history\" must be followed by the name of a history subcommand.\n");
1727   help_list (sethistlist, "set history ", -1, gdb_stdout);
1728 }
1729
1730 /* ARGSUSED */
1731 void
1732 show_history (char *args, int from_tty)
1733 {
1734   cmd_show_list (showhistlist, from_tty, "");
1735 }
1736
1737 int info_verbose = 0;           /* Default verbose msgs off */
1738
1739 /* Called by do_setshow_command.  An elaborate joke.  */
1740 /* ARGSUSED */
1741 void
1742 set_verbose (char *args, int from_tty, struct cmd_list_element *c)
1743 {
1744   char *cmdname = "verbose";
1745   struct cmd_list_element *showcmd;
1746
1747   showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
1748
1749   if (info_verbose)
1750     {
1751       c->doc = "Set verbose printing of informational messages.";
1752       showcmd->doc = "Show verbose printing of informational messages.";
1753     }
1754   else
1755     {
1756       c->doc = "Set verbosity.";
1757       showcmd->doc = "Show verbosity.";
1758     }
1759 }
1760
1761 /* Init the history buffer.  Note that we are called after the init file(s)
1762  * have been read so that the user can change the history file via his
1763  * .gdbinit file (for instance).  The GDBHISTFILE environment variable
1764  * overrides all of this.
1765  */
1766
1767 void
1768 init_history (void)
1769 {
1770   char *tmpenv;
1771
1772   tmpenv = getenv ("HISTSIZE");
1773   if (tmpenv)
1774     history_size = atoi (tmpenv);
1775   else if (!history_size)
1776     history_size = 256;
1777
1778   stifle_history (history_size);
1779
1780   tmpenv = getenv ("GDBHISTFILE");
1781   if (tmpenv)
1782     history_filename = savestring (tmpenv, strlen (tmpenv));
1783   else if (!history_filename)
1784     {
1785       /* We include the current directory so that if the user changes
1786          directories the file written will be the same as the one
1787          that was read.  */
1788 #ifdef __MSDOS__
1789       /* No leading dots in file names are allowed on MSDOS.  */
1790       history_filename = concat (current_directory, "/_gdb_history", NULL);
1791 #else
1792       history_filename = concat (current_directory, "/.gdb_history", NULL);
1793 #endif
1794     }
1795   read_history (history_filename);
1796 }
1797
1798 static void
1799 init_main (void)
1800 {
1801   struct cmd_list_element *c;
1802
1803   /* If we are running the asynchronous version,
1804      we initialize the prompts differently. */
1805   if (!event_loop_p)
1806     {
1807       gdb_prompt_string = savestring (DEFAULT_PROMPT, strlen (DEFAULT_PROMPT));
1808     }
1809   else
1810     {
1811       /* initialize the prompt stack to a simple "(gdb) " prompt or to
1812          whatever the DEFAULT_PROMPT is. */
1813       the_prompts.top = 0;
1814       PREFIX (0) = "";
1815       PROMPT (0) = savestring (DEFAULT_PROMPT, strlen (DEFAULT_PROMPT));
1816       SUFFIX (0) = "";
1817       /* Set things up for annotation_level > 1, if the user ever decides
1818          to use it. */
1819       async_annotation_suffix = "prompt";
1820       /* Set the variable associated with the setshow prompt command. */
1821       new_async_prompt = savestring (PROMPT (0), strlen (PROMPT (0)));
1822
1823       /* If gdb was started with --annotate=2, this is equivalent to
1824          the user entering the command 'set annotate 2' at the gdb
1825          prompt, so we need to do extra processing. */
1826       if (annotation_level > 1)
1827         set_async_annotation_level (NULL, 0, NULL);
1828     }
1829   gdb_prompt_escape = 0;        /* default to none.  */
1830
1831   /* Set the important stuff up for command editing.  */
1832   command_editing_p = 1;
1833   history_expansion_p = 0;
1834   write_history_p = 0;
1835
1836   /* Setup important stuff for command line editing.  */
1837   rl_completion_entry_function = (int (*)()) readline_line_completion_function;
1838   rl_completer_word_break_characters =
1839                                  get_gdb_completer_word_break_characters ();
1840   rl_completer_quote_characters = get_gdb_completer_quote_characters ();
1841   rl_readline_name = "gdb";
1842
1843   /* The set prompt command is different depending whether or not the
1844      async version is run. NOTE: this difference is going to
1845      disappear as we make the event loop be the default engine of
1846      gdb. */
1847   if (!event_loop_p)
1848     {
1849       add_show_from_set
1850         (add_set_cmd ("prompt", class_support, var_string,
1851                       (char *) &gdb_prompt_string, "Set gdb's prompt",
1852                       &setlist),
1853          &showlist);
1854     }
1855   else
1856     {
1857       c = add_set_cmd ("prompt", class_support, var_string,
1858                        (char *) &new_async_prompt, "Set gdb's prompt",
1859                        &setlist);
1860       add_show_from_set (c, &showlist);
1861       c->function.sfunc = set_async_prompt;
1862     }
1863
1864   add_show_from_set
1865     (add_set_cmd ("prompt-escape-char", class_support, var_zinteger,
1866                   (char *) &gdb_prompt_escape,
1867                   "Set escape character for formatting of gdb's prompt",
1868                   &setlist),
1869      &showlist);
1870
1871   add_com ("dont-repeat", class_support, dont_repeat_command, "Don't repeat this command.\n\
1872 Primarily used inside of user-defined commands that should not be repeated when\n\
1873 hitting return.");
1874
1875   /* The set editing command is different depending whether or not the
1876      async version is run. NOTE: this difference is going to disappear
1877      as we make the event loop be the default engine of gdb. */
1878   if (!event_loop_p)
1879     {
1880       add_show_from_set
1881         (add_set_cmd ("editing", class_support, var_boolean, (char *) &command_editing_p,
1882                       "Set editing of command lines as they are typed.\n\
1883 Use \"on\" to enable the editing, and \"off\" to disable it.\n\
1884 Without an argument, command line editing is enabled.  To edit, use\n\
1885 EMACS-like or VI-like commands like control-P or ESC.", &setlist),
1886          &showlist);
1887     }
1888   else
1889     {
1890       c = add_set_cmd ("editing", class_support, var_boolean, (char *) &async_command_editing_p,
1891                        "Set editing of command lines as they are typed.\n\
1892 Use \"on\" to enable the editing, and \"off\" to disable it.\n\
1893 Without an argument, command line editing is enabled.  To edit, use\n\
1894 EMACS-like or VI-like commands like control-P or ESC.", &setlist);
1895
1896       add_show_from_set (c, &showlist);
1897       c->function.sfunc = set_async_editing_command;
1898     }
1899
1900   add_show_from_set
1901     (add_set_cmd ("save", no_class, var_boolean, (char *) &write_history_p,
1902                   "Set saving of the history record on exit.\n\
1903 Use \"on\" to enable the saving, and \"off\" to disable it.\n\
1904 Without an argument, saving is enabled.", &sethistlist),
1905      &showhistlist);
1906
1907   c = add_set_cmd ("size", no_class, var_integer, (char *) &history_size,
1908                    "Set the size of the command history, \n\
1909 ie. the number of previous commands to keep a record of.", &sethistlist);
1910   add_show_from_set (c, &showhistlist);
1911   c->function.sfunc = set_history_size_command;
1912
1913   c = add_set_cmd ("filename", no_class, var_filename,
1914                    (char *) &history_filename,
1915                    "Set the filename in which to record the command history\n\
1916  (the list of previous commands of which a record is kept).", &sethistlist);
1917   c->completer = filename_completer;
1918   add_show_from_set (c, &showhistlist);
1919
1920   add_show_from_set
1921     (add_set_cmd ("confirm", class_support, var_boolean,
1922                   (char *) &caution,
1923                   "Set whether to confirm potentially dangerous operations.",
1924                   &setlist),
1925      &showlist);
1926
1927   /* The set annotate command is different depending whether or not
1928      the async version is run. NOTE: this difference is going to
1929      disappear as we make the event loop be the default engine of
1930      gdb. */
1931   if (!event_loop_p)
1932     {
1933       c = add_set_cmd ("annotate", class_obscure, var_zinteger,
1934                        (char *) &annotation_level, "Set annotation_level.\n\
1935 0 == normal;     1 == fullname (for use when running under emacs)\n\
1936 2 == output annotated suitably for use by programs that control GDB.",
1937                        &setlist);
1938       c = add_show_from_set (c, &showlist);
1939     }
1940   else
1941     {
1942       c = add_set_cmd ("annotate", class_obscure, var_zinteger,
1943                        (char *) &annotation_level, "Set annotation_level.\n\
1944 0 == normal;     1 == fullname (for use when running under emacs)\n\
1945 2 == output annotated suitably for use by programs that control GDB.",
1946                        &setlist);
1947       add_show_from_set (c, &showlist);
1948       c->function.sfunc = set_async_annotation_level;
1949     }
1950   if (event_loop_p)
1951     {
1952       add_show_from_set
1953         (add_set_cmd ("exec-done-display", class_support, var_boolean, (char *) &exec_done_display_p,
1954                       "Set notification of completion for asynchronous execution commands.\n\
1955 Use \"on\" to enable the notification, and \"off\" to disable it.", &setlist),
1956          &showlist);
1957     }
1958 }
1959
1960 void
1961 gdb_init (char *argv0)
1962 {
1963   if (pre_init_ui_hook)
1964     pre_init_ui_hook ();
1965
1966   /* Run the init function of each source file */
1967
1968   getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
1969   current_directory = gdb_dirbuf;
1970
1971 #ifdef __MSDOS__
1972   /* Make sure we return to the original directory upon exit, come
1973      what may, since the OS doesn't do that for us.  */
1974   make_final_cleanup (do_chdir_cleanup, xstrdup (current_directory));
1975 #endif
1976
1977   init_cmd_lists ();            /* This needs to be done first */
1978   initialize_targets ();        /* Setup target_terminal macros for utils.c */
1979   initialize_utils ();          /* Make errors and warnings possible */
1980   initialize_all_files ();
1981   initialize_current_architecture ();
1982   init_cli_cmds();
1983   init_main ();                 /* But that omits this file!  Do it now */
1984
1985   /* The signal handling mechanism is different depending whether or
1986      not the async version is run. NOTE: in the future we plan to make
1987      the event loop be the default engine of gdb, and this difference
1988      will disappear. */
1989   if (event_loop_p)
1990     async_init_signals ();
1991   else
1992     init_signals ();
1993
1994   /* We need a default language for parsing expressions, so simple things like
1995      "set width 0" won't fail if no language is explicitly set in a config file
1996      or implicitly set by reading an executable during startup. */
1997   set_language (language_c);
1998   expected_language = current_language;         /* don't warn about the change.  */
1999
2000 #ifdef UI_OUT
2001   /* Install the default UI */
2002   if (!init_ui_hook)
2003     {
2004       uiout = cli_out_new (gdb_stdout);
2005
2006       /* All the interpreters should have had a look at things by now.
2007          Initialize the selected interpreter. */
2008       if (interpreter_p)
2009         {
2010           fprintf_unfiltered (gdb_stderr, "Interpreter `%s' unrecognized.\n",
2011                               interpreter_p);
2012           exit (1);
2013         }
2014     }
2015 #endif
2016
2017   if (init_ui_hook)
2018     init_ui_hook (argv0);
2019 }