1 /* Top level stuff for GDB, the GNU debugger.
3 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994,
4 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003
5 Free Software Foundation, Inc.
7 This file is part of GDB.
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.
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.
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. */
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"
35 #include "breakpoint.h"
37 #include "expression.h"
40 #include "terminal.h" /* For job_control. */
42 #include "completer.h"
47 #include "gdb_assert.h"
49 /* readline include files */
50 #include <readline/readline.h>
51 #include <readline/history.h>
53 /* readline defines this. */
56 #include <sys/types.h>
60 #include "event-top.h"
61 #include "gdb_string.h"
67 /* Default command line prompt. This is overriden in some configs. */
69 #ifndef DEFAULT_PROMPT
70 #define DEFAULT_PROMPT "(gdb) "
73 /* Initialization file name for gdb. This is overridden in some configs. */
75 #ifndef GDBINIT_FILENAME
76 #define GDBINIT_FILENAME ".gdbinit"
78 char gdbinit[] = GDBINIT_FILENAME;
80 int inhibit_gdbinit = 0;
82 /* If nonzero, and GDB has been configured to be able to use windows,
83 attempt to open them upon startup. */
87 extern char lang_frame_mismatch_warn[]; /* language.c */
89 /* Flag for whether we want all the "from_tty" gubbish printed. */
91 int caution = 1; /* Default is yes, sigh. */
93 /* stdio stream that command input is being read from. Set to stdin normally.
94 Set by source_command to the file we are sourcing. Set to NULL if we are
95 executing a user-defined command or interacting via a GUI. */
99 /* Current working directory. */
101 char *current_directory;
103 /* The directory name is actually stored here (usually). */
104 char gdb_dirbuf[1024];
106 /* Function to call before reading a command, if nonzero.
107 The function receives two args: an input stream,
108 and a prompt string. */
110 void (*window_hook) (FILE *, char *);
115 /* gdb prints this when reading a command interactively */
116 static char *gdb_prompt_string; /* the global prompt string */
118 /* Buffer used for reading command lines, and the size
119 allocated for it so far. */
124 /* Nonzero if the current command is modified by "server ". This
125 affects things like recording into the command history, commands
126 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
127 whatever) can issue its own commands and also send along commands
128 from the user, and have the user not notice that the user interface
129 is issuing commands too. */
132 /* Baud rate specified for talking to serial target systems. Default
133 is left as -1, so targets can choose their own defaults. */
134 /* FIXME: This means that "show remotebaud" and gr_files_info can print -1
135 or (unsigned int)-1. This is a Bad User Interface. */
139 /* Timeout limit for response from target. */
141 /* The default value has been changed many times over the years. It
142 was originally 5 seconds. But that was thought to be a long time
143 to sit and wait, so it was changed to 2 seconds. That was thought
144 to be plenty unless the connection was going through some terminal
145 server or multiplexer or other form of hairy serial connection.
147 In mid-1996, remote_timeout was moved from remote.c to top.c and
148 it began being used in other remote-* targets. It appears that the
149 default was changed to 20 seconds at that time, perhaps because the
150 Hitachi E7000 ICE didn't always respond in a timely manner.
152 But if 5 seconds is a long time to sit and wait for retransmissions,
153 20 seconds is far worse. This demonstrates the difficulty of using
154 a single variable for all protocol timeouts.
156 As remote.c is used much more than remote-e7000.c, it was changed
157 back to 2 seconds in 1999. */
159 int remote_timeout = 2;
161 /* Non-zero tells remote* modules to output debugging info. */
163 int remote_debug = 0;
165 /* Non-zero means the target is running. Note: this is different from
166 saying that there is an active target and we are stopped at a
167 breakpoint, for instance. This is a real indicator whether the
168 target is off and running, which gdb is doing something else. */
169 int target_executing = 0;
171 /* Level of control structure. */
172 static int control_level;
174 /* Sbrk location on entry to main. Used for statistics only. */
179 /* Signal to catch ^Z typed while reading a command: SIGTSTP or SIGCONT. */
183 #define STOP_SIGNAL SIGTSTP
184 static void stop_sig (int);
188 /* Hooks for alternate command interfaces. */
190 /* Called after most modules have been initialized, but before taking users
193 If the UI fails to initialize and it wants GDB to continue
194 using the default UI, then it should clear this hook before returning. */
196 void (*init_ui_hook) (char *argv0);
198 /* This hook is called from within gdb's many mini-event loops which could
199 steal control from a real user interface's event loop. It returns
200 non-zero if the user is requesting a detach, zero otherwise. */
202 int (*ui_loop_hook) (int);
204 /* Called instead of command_loop at top level. Can be invoked via
205 throw_exception(). */
207 void (*command_loop_hook) (void);
210 /* Called from print_frame_info to list the line we stopped in. */
212 void (*print_frame_info_listing_hook) (struct symtab * s, int line,
213 int stopline, int noerror);
214 /* Replaces most of query. */
216 int (*query_hook) (const char *, va_list);
218 /* Replaces most of warning. */
220 void (*warning_hook) (const char *, va_list);
222 /* These three functions support getting lines of text from the user. They
223 are used in sequence. First readline_begin_hook is called with a text
224 string that might be (for example) a message for the user to type in a
225 sequence of commands to be executed at a breakpoint. If this function
226 calls back to a GUI, it might take this opportunity to pop up a text
227 interaction window with this message. Next, readline_hook is called
228 with a prompt that is emitted prior to collecting the user input.
229 It can be called multiple times. Finally, readline_end_hook is called
230 to notify the GUI that we are done with the interaction window and it
233 void (*readline_begin_hook) (char *, ...);
234 char *(*readline_hook) (char *);
235 void (*readline_end_hook) (void);
237 /* Called as appropriate to notify the interface of the specified breakpoint
240 void (*create_breakpoint_hook) (struct breakpoint * bpt);
241 void (*delete_breakpoint_hook) (struct breakpoint * bpt);
242 void (*modify_breakpoint_hook) (struct breakpoint * bpt);
244 /* Called as appropriate to notify the interface that we have attached
245 to or detached from an already running process. */
247 void (*attach_hook) (void);
248 void (*detach_hook) (void);
250 /* Called during long calculations to allow GUI to repair window damage, and to
251 check for stop buttons, etc... */
253 void (*interactive_hook) (void);
255 /* Called when the registers have changed, as a hint to a GUI
256 to minimize window update. */
258 void (*registers_changed_hook) (void);
260 /* Tell the GUI someone changed the register REGNO. -1 means
261 that the caller does not know which register changed or
262 that several registers have changed (see value_assign). */
263 void (*register_changed_hook) (int regno);
265 /* Tell the GUI someone changed LEN bytes of memory at ADDR */
266 void (*memory_changed_hook) (CORE_ADDR addr, int len);
268 /* Called when going to wait for the target. Usually allows the GUI to run
269 while waiting for target events. */
271 ptid_t (*target_wait_hook) (ptid_t ptid,
272 struct target_waitstatus * status);
274 /* Used by UI as a wrapper around command execution. May do various things
275 like enabling/disabling buttons, etc... */
277 void (*call_command_hook) (struct cmd_list_element * c, char *cmd,
280 /* Called after a `set' command has finished. Is only run if the
281 `set' command succeeded. */
283 void (*set_hook) (struct cmd_list_element * c);
285 /* Called when the current thread changes. Argument is thread id. */
287 void (*context_hook) (int id);
289 /* Takes control from error (). Typically used to prevent longjmps out of the
290 middle of the GUI. Usually used in conjunction with a catch routine. */
292 NORETURN void (*error_hook) (void) ATTR_NORETURN;
295 /* One should use catch_errors rather than manipulating these
297 #if defined(HAVE_SIGSETJMP)
298 #define SIGJMP_BUF sigjmp_buf
299 #define SIGSETJMP(buf) sigsetjmp((buf), 1)
300 #define SIGLONGJMP(buf,val) siglongjmp((buf), (val))
302 #define SIGJMP_BUF jmp_buf
303 #define SIGSETJMP(buf) setjmp(buf)
304 #define SIGLONGJMP(buf,val) longjmp((buf), (val))
307 /* Where to go for throw_exception(). */
308 static SIGJMP_BUF *catch_return;
310 /* Return for reason REASON to the nearest containing catch_errors(). */
313 throw_exception (enum return_reason reason)
318 /* Perhaps it would be cleaner to do this via the cleanup chain (not sure
319 I can think of a reason why that is vital, though). */
320 bpstat_clear_actions (stop_bpstat); /* Clear queued breakpoint commands */
322 disable_current_display ();
323 do_cleanups (ALL_CLEANUPS);
324 if (event_loop_p && target_can_async_p () && !target_executing)
325 do_exec_cleanups (ALL_CLEANUPS);
326 if (event_loop_p && sync_execution)
327 do_exec_error_cleanups (ALL_CLEANUPS);
329 if (annotation_level > 1)
340 /* Jump to the containing catch_errors() call, communicating REASON
341 to that call via setjmp's return value. Note that REASON can't
342 be zero, by definition in defs.h. */
344 (NORETURN void) SIGLONGJMP (*catch_return, (int) reason);
347 /* Call FUNC() with args FUNC_UIOUT and FUNC_ARGS, catching any
348 errors. Set FUNC_CAUGHT to an ``enum return_reason'' if the
349 function is aborted (using throw_exception() or zero if the
350 function returns normally. Set FUNC_VAL to the value returned by
351 the function or 0 if the function was aborted.
353 Must not be called with immediate_quit in effect (bad things might
354 happen, say we got a signal in the middle of a memcpy to quit_return).
355 This is an OK restriction; with very few exceptions immediate_quit can
356 be replaced by judicious use of QUIT.
358 MASK specifies what to catch; it is normally set to
359 RETURN_MASK_ALL, if for no other reason than that the code which
360 calls catch_errors might not be set up to deal with a quit which
361 isn't caught. But if the code can deal with it, it generally
362 should be RETURN_MASK_ERROR, unless for some reason it is more
363 useful to abort only the portion of the operation inside the
364 catch_errors. Note that quit should return to the command line
365 fairly quickly, even if some further processing is being done. */
367 /* MAYBE: cagney/1999-11-05: catch_errors() in conjunction with
368 error() et.al. could maintain a set of flags that indicate the the
369 current state of each of the longjmp buffers. This would give the
370 longjmp code the chance to detect a longjmp botch (before it gets
371 to longjmperror()). Prior to 1999-11-05 this wasn't possible as
372 code also randomly used a SET_TOP_LEVEL macro that directly
373 initialize the longjmp buffers. */
375 /* MAYBE: cagney/1999-11-05: Should the catch_errors and cleanups code
376 be consolidated into a single file instead of being distributed
377 between utils.c and top.c? */
380 catcher (catch_exceptions_ftype *func,
381 struct ui_out *func_uiout,
384 enum return_reason *func_caught,
388 SIGJMP_BUF *saved_catch;
390 struct cleanup *saved_cleanup_chain;
391 char *saved_error_pre_print;
392 char *saved_quit_pre_print;
393 struct ui_out *saved_uiout;
395 /* Return value from SIGSETJMP(): enum return_reason if error or
396 quit caught, 0 otherwise. */
399 /* Return value from FUNC(): Hopefully non-zero. Explicitly set to
400 zero if an error quit was caught. */
403 /* Override error/quit messages during FUNC. */
405 saved_error_pre_print = error_pre_print;
406 saved_quit_pre_print = quit_pre_print;
408 if (mask & RETURN_MASK_ERROR)
409 error_pre_print = errstring;
410 if (mask & RETURN_MASK_QUIT)
411 quit_pre_print = errstring;
413 /* Override the global ``struct ui_out'' builder. */
418 /* Prevent error/quit during FUNC from calling cleanups established
421 saved_cleanup_chain = save_cleanups ();
423 /* Call FUNC, catching error/quit events. */
425 saved_catch = catch_return;
426 catch_return = &catch;
427 caught = SIGSETJMP (catch);
429 val = (*func) (func_uiout, func_args);
432 catch_return = saved_catch;
434 /* FIXME: cagney/1999-11-05: A correct FUNC implementation will
435 clean things up (restoring the cleanup chain) to the state they
436 were just prior to the call. Unfortunately, many FUNC's are not
437 that well behaved. This could be fixed by adding either a
438 do_cleanups call (to cover the problem) or an assertion check to
439 detect bad FUNCs code. */
441 /* Restore the cleanup chain, the error/quit messages, and the uiout
442 builder, to their original states. */
444 restore_cleanups (saved_cleanup_chain);
448 if (mask & RETURN_MASK_QUIT)
449 quit_pre_print = saved_quit_pre_print;
450 if (mask & RETURN_MASK_ERROR)
451 error_pre_print = saved_error_pre_print;
453 /* Return normally if no error/quit event occurred or this catcher
454 can handle this exception. The caller analyses the func return
457 if (!caught || (mask & RETURN_MASK (caught)))
460 *func_caught = caught;
464 /* The caller didn't request that the event be caught, relay the
465 event to the next containing catch_errors(). */
467 throw_exception (caught);
471 catch_exceptions (struct ui_out *uiout,
472 catch_exceptions_ftype *func,
478 enum return_reason caught;
479 catcher (func, uiout, func_args, &val, &caught, errstring, mask);
480 gdb_assert (val >= 0);
481 gdb_assert (caught <= 0);
487 struct catch_errors_args
489 catch_errors_ftype *func;
494 do_catch_errors (struct ui_out *uiout, void *data)
496 struct catch_errors_args *args = data;
497 return args->func (args->func_args);
501 catch_errors (catch_errors_ftype *func, void *func_args, char *errstring,
505 enum return_reason caught;
506 struct catch_errors_args args;
508 args.func_args = func_args;
509 catcher (do_catch_errors, uiout, &args, &val, &caught, errstring, mask);
515 struct captured_command_args
517 catch_command_errors_ftype *command;
523 do_captured_command (void *data)
525 struct captured_command_args *context = data;
526 context->command (context->arg, context->from_tty);
527 /* FIXME: cagney/1999-11-07: Technically this do_cleanups() call
528 isn't needed. Instead an assertion check could be made that
529 simply confirmed that the called function correctly cleaned up
530 after itself. Unfortunately, old code (prior to 1999-11-04) in
531 main.c was calling SET_TOP_LEVEL(), calling the command function,
532 and then *always* calling do_cleanups(). For the moment we
533 remain ``bug compatible'' with that old code.. */
534 do_cleanups (ALL_CLEANUPS);
539 catch_command_errors (catch_command_errors_ftype * command,
540 char *arg, int from_tty, return_mask mask)
542 struct captured_command_args args;
543 args.command = command;
545 args.from_tty = from_tty;
546 return catch_errors (do_captured_command, &args, "", mask);
550 /* Handler for SIGHUP. */
553 /* Just a little helper function for disconnect(). */
555 /* NOTE 1999-04-29: This function 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 */
561 caution = 0; /* Throw caution to the wind -- we're exiting.
562 This prevents asking the user dumb questions. */
563 quit_command ((char *) 0, 0);
568 disconnect (int signo)
570 catch_errors (quit_cover, NULL,
571 "Could not kill the program being debugged", RETURN_MASK_ALL);
572 signal (SIGHUP, SIG_DFL);
573 kill (getpid (), SIGHUP);
575 #endif /* defined SIGHUP */
577 /* Line number we are currently in in a file which is being sourced. */
578 /* NOTE 1999-04-29: This variable will be static again, once we modify
579 gdb to use the event loop as the default command loop and we merge
580 event-top.c into this file, top.c */
581 /* static */ int source_line_number;
583 /* Name of the file we are sourcing. */
584 /* NOTE 1999-04-29: This variable will be static again, once we modify
585 gdb to use the event loop as the default command loop and we merge
586 event-top.c into this file, top.c */
587 /* static */ char *source_file_name;
589 /* Buffer containing the error_pre_print used by the source stuff.
591 /* NOTE 1999-04-29: This variable will be static again, once we modify
592 gdb to use the event loop as the default command loop and we merge
593 event-top.c into this file, top.c */
594 /* static */ char *source_error;
595 static int source_error_allocated;
597 /* Something to glom on to the start of error_pre_print if source_file_name
599 /* NOTE 1999-04-29: This variable will be static again, once we modify
600 gdb to use the event loop as the default command loop and we merge
601 event-top.c into this file, top.c */
602 /* static */ char *source_pre_error;
604 /* Clean up on error during a "source" command (or execution of a
605 user-defined command). */
608 do_restore_instream_cleanup (void *stream)
610 /* Restore the previous input stream. */
614 /* Read commands from STREAM. */
616 read_command_file (FILE *stream)
618 struct cleanup *cleanups;
620 cleanups = make_cleanup (do_restore_instream_cleanup, instream);
623 do_cleanups (cleanups);
626 void (*pre_init_ui_hook) (void);
630 do_chdir_cleanup (void *old_dir)
637 /* Execute the line P as a command.
638 Pass FROM_TTY as second argument to the defining function. */
641 execute_command (char *p, int from_tty)
643 register struct cmd_list_element *c;
644 register enum language flang;
645 static int warned = 0;
650 /* Force cleanup of any alloca areas if using C alloca instead of
654 /* This can happen when command_line_input hits end of file. */
658 serial_log_command (p);
660 while (*p == ' ' || *p == '\t')
667 c = lookup_cmd (&p, cmdlist, "", 0, 1);
669 /* If the target is running, we allow only a limited set of
671 if (event_loop_p && target_can_async_p () && target_executing)
672 if (!strcmp (c->name, "help")
673 && !strcmp (c->name, "pwd")
674 && !strcmp (c->name, "show")
675 && !strcmp (c->name, "stop"))
676 error ("Cannot execute this command while the target is running.");
678 /* Pass null arg rather than an empty one. */
681 /* FIXME: cagney/2002-02-02: The c->type test is pretty dodgy
682 while the is_complete_command(cfunc) test is just plain
683 bogus. They should both be replaced by a test of the form
684 c->strip_trailing_white_space_p. */
685 /* NOTE: cagney/2002-02-02: The function.cfunc in the below
686 can't be replaced with func. This is because it is the
687 cfunc, and not the func, that has the value that the
688 is_complete_command hack is testing for. */
689 /* Clear off trailing whitespace, except for set and complete
692 && c->type != set_cmd
693 && !is_complete_command (c))
695 p = arg + strlen (arg) - 1;
696 while (p >= arg && (*p == ' ' || *p == '\t'))
701 /* If this command has been pre-hooked, run the hook first. */
702 execute_cmd_pre_hook (c);
704 if (c->flags & DEPRECATED_WARN_USER)
705 deprecated_cmd_warning (&line);
707 if (c->class == class_user)
708 execute_user_command (c, arg);
709 else if (c->type == set_cmd || c->type == show_cmd)
710 do_setshow_command (arg, from_tty & caution, c);
711 else if (!cmd_func_p (c))
712 error ("That is not a command, just a help topic.");
713 else if (call_command_hook)
714 call_command_hook (c, arg, from_tty & caution);
716 cmd_func (c, arg, from_tty & caution);
718 /* If this command has been post-hooked, run the hook last. */
719 execute_cmd_post_hook (c);
723 /* Tell the user if the language has changed (except first time). */
724 if (current_language != expected_language)
726 if (language_mode == language_mode_auto)
728 language_info (1); /* Print what changed. */
733 /* Warn the user if the working language does not match the
734 language of the current frame. Only warn the user if we are
735 actually running the program, i.e. there is a stack. */
736 /* FIXME: This should be cacheing the frame and only running when
737 the frame changes. */
739 if (target_has_stack)
741 flang = get_frame_language ();
743 && flang != language_unknown
744 && flang != current_language->la_language)
746 printf_filtered ("%s\n", lang_frame_mismatch_warn);
752 /* Read commands from `instream' and execute them
753 until end of file or error reading instream. */
758 struct cleanup *old_chain;
760 int stdin_is_tty = ISATTY (stdin);
761 long time_at_cmd_start;
763 long space_at_cmd_start = 0;
765 extern int display_time;
766 extern int display_space;
768 while (instream && !feof (instream))
770 if (window_hook && instream == stdin)
771 (*window_hook) (instream, get_prompt ());
774 if (instream == stdin && stdin_is_tty)
775 reinitialize_more_filter ();
776 old_chain = make_cleanup (null_cleanup, 0);
778 /* Get a command-line. This calls the readline package. */
779 command = command_line_input (instream == stdin ?
780 get_prompt () : (char *) NULL,
781 instream == stdin, "prompt");
785 time_at_cmd_start = get_run_time ();
790 char *lim = (char *) sbrk (0);
791 space_at_cmd_start = lim - lim_at_start;
795 execute_command (command, instream == stdin);
796 /* Do any commands attached to breakpoint we stopped at. */
797 bpstat_do_actions (&stop_bpstat);
798 do_cleanups (old_chain);
802 long cmd_time = get_run_time () - time_at_cmd_start;
804 printf_unfiltered ("Command execution time: %ld.%06ld\n",
805 cmd_time / 1000000, cmd_time % 1000000);
811 char *lim = (char *) sbrk (0);
812 long space_now = lim - lim_at_start;
813 long space_diff = space_now - space_at_cmd_start;
815 printf_unfiltered ("Space used: %ld (%c%ld for this command)\n",
817 (space_diff >= 0 ? '+' : '-'),
824 /* Read commands from `instream' and execute them until end of file or
825 error reading instream. This command loop doesnt care about any
826 such things as displaying time and space usage. If the user asks
827 for those, they won't work. */
829 simplified_command_loop (char *(*read_input_func) (char *),
830 void (*execute_command_func) (char *, int))
832 struct cleanup *old_chain;
834 int stdin_is_tty = ISATTY (stdin);
836 while (instream && !feof (instream))
839 if (instream == stdin && stdin_is_tty)
840 reinitialize_more_filter ();
841 old_chain = make_cleanup (null_cleanup, 0);
843 /* Get a command-line. */
844 command = (*read_input_func) (instream == stdin ?
845 get_prompt () : (char *) NULL);
850 (*execute_command_func) (command, instream == stdin);
852 /* Do any commands attached to breakpoint we stopped at. */
853 bpstat_do_actions (&stop_bpstat);
855 do_cleanups (old_chain);
859 /* Commands call this if they do not want to be repeated by null lines. */
867 /* If we aren't reading from standard input, we are saving the last
868 thing read from stdin in line and don't want to delete it. Null lines
869 won't repeat here in any case. */
870 if (instream == stdin)
874 /* Read a line from the stream "instream" without command line editing.
876 It prints PROMPT_ARG once at the start.
877 Action is compatible with "readline", e.g. space for the result is
878 malloc'd and should be freed by the caller.
880 A NULL return means end of file. */
882 gdb_readline (char *prompt_arg)
887 int result_size = 80;
891 /* Don't use a _filtered function here. It causes the assumed
892 character position to be off, since the newline we read from
893 the user is not accounted for. */
894 fputs_unfiltered (prompt_arg, gdb_stdout);
895 gdb_flush (gdb_stdout);
898 result = (char *) xmalloc (result_size);
902 /* Read from stdin if we are executing a user defined command.
903 This is the right thing for prompt_for_continue, at least. */
904 c = fgetc (instream ? instream : stdin);
909 /* The last line does not end with a newline. Return it, and
910 if we are called again fgetc will still return EOF and
911 we'll return NULL then. */
918 #ifndef CRLF_SOURCE_FILES
922 if (input_index > 0 && result[input_index - 1] == '\r')
928 result[input_index++] = c;
929 while (input_index >= result_size)
932 result = (char *) xrealloc (result, result_size);
936 result[input_index++] = '\0';
940 /* Variables which control command line editing and history
941 substitution. These variables are given default values at the end
943 static int command_editing_p;
944 /* NOTE 1999-04-29: This variable will be static again, once we modify
945 gdb to use the event loop as the default command loop and we merge
946 event-top.c into this file, top.c */
947 /* static */ int history_expansion_p;
948 static int write_history_p;
949 static int history_size;
950 static char *history_filename;
952 /* This is like readline(), but it has some gdb-specific behavior.
953 gdb can use readline in both the synchronous and async modes during
954 a single gdb invocation. At the ordinary top-level prompt we might
955 be using the async readline. That means we can't use
956 rl_pre_input_hook, since it doesn't work properly in async mode.
957 However, for a secondary prompt (" >", such as occurs during a
958 `define'), gdb just calls readline() directly, running it in
959 synchronous mode. So for operate-and-get-next to work in this
960 situation, we have to switch the hooks around. That is what
961 gdb_readline_wrapper is for. */
963 gdb_readline_wrapper (char *prompt)
965 /* Set the hook that works in this case. */
966 if (event_loop_p && after_char_processing_hook)
968 rl_pre_input_hook = (Function *) after_char_processing_hook;
969 after_char_processing_hook = NULL;
972 return readline (prompt);
980 #if STOP_SIGNAL == SIGTSTP
981 signal (SIGTSTP, SIG_DFL);
987 sigprocmask (SIG_SETMASK, &zero, 0);
989 #elif HAVE_SIGSETMASK
992 kill (getpid (), SIGTSTP);
993 signal (SIGTSTP, stop_sig);
995 signal (STOP_SIGNAL, stop_sig);
997 printf_unfiltered ("%s", get_prompt ());
998 gdb_flush (gdb_stdout);
1000 /* Forget about any previous command -- null line now will do nothing. */
1003 #endif /* STOP_SIGNAL */
1005 /* Initialize signal handlers. */
1007 float_handler (int signo)
1009 /* This message is based on ANSI C, section 4.7. Note that integer
1010 divide by zero causes this, so "float" is a misnomer. */
1011 signal (SIGFPE, float_handler);
1012 error ("Erroneous arithmetic operation.");
1016 do_nothing (int signo)
1018 /* Under System V the default disposition of a signal is reinstated after
1019 the signal is caught and delivered to an application process. On such
1020 systems one must restore the replacement signal handler if one wishes
1021 to continue handling the signal in one's program. On BSD systems this
1022 is not needed but it is harmless, and it simplifies the code to just do
1023 it unconditionally. */
1024 signal (signo, do_nothing);
1030 signal (SIGINT, request_quit);
1032 /* If SIGTRAP was set to SIG_IGN, then the SIG_IGN will get passed
1033 to the inferior and breakpoints will be ignored. */
1035 signal (SIGTRAP, SIG_DFL);
1038 /* If we initialize SIGQUIT to SIG_IGN, then the SIG_IGN will get
1039 passed to the inferior, which we don't want. It would be
1040 possible to do a "signal (SIGQUIT, SIG_DFL)" after we fork, but
1041 on BSD4.3 systems using vfork, that can affect the
1042 GDB process as well as the inferior (the signal handling tables
1043 might be in memory, shared between the two). Since we establish
1044 a handler for SIGQUIT, when we call exec it will set the signal
1045 to SIG_DFL for us. */
1046 signal (SIGQUIT, do_nothing);
1048 if (signal (SIGHUP, do_nothing) != SIG_IGN)
1049 signal (SIGHUP, disconnect);
1051 signal (SIGFPE, float_handler);
1053 #if defined(SIGWINCH) && defined(SIGWINCH_HANDLER)
1054 signal (SIGWINCH, SIGWINCH_HANDLER);
1058 /* The current saved history number from operate-and-get-next.
1059 This is -1 if not valid. */
1060 static int operate_saved_history = -1;
1062 /* This is put on the appropriate hook and helps operate-and-get-next
1065 gdb_rl_operate_and_get_next_completion (void)
1067 int delta = where_history () - operate_saved_history;
1068 /* The `key' argument to rl_get_previous_history is ignored. */
1069 rl_get_previous_history (delta, 0);
1070 operate_saved_history = -1;
1072 /* readline doesn't automatically update the display for us. */
1075 after_char_processing_hook = NULL;
1076 rl_pre_input_hook = NULL;
1079 /* This is a gdb-local readline command handler. It accepts the
1080 current command line (like RET does) and, if this command was taken
1081 from the history, arranges for the next command in the history to
1082 appear on the command line when the prompt returns.
1083 We ignore the arguments. */
1085 gdb_rl_operate_and_get_next (int count, int key)
1091 /* Use the async hook. */
1092 after_char_processing_hook = gdb_rl_operate_and_get_next_completion;
1096 /* This hook only works correctly when we are using the
1097 synchronous readline. */
1098 rl_pre_input_hook = (Function *) gdb_rl_operate_and_get_next_completion;
1101 /* Find the current line, and find the next line to use. */
1102 where = where_history();
1104 /* FIXME: kettenis/20020817: max_input_history is renamed into
1105 history_max_entries in readline-4.2. When we do a new readline
1106 import, we should probably change it here too, even though
1107 readline maintains backwards compatibility for now by still
1108 defining max_input_history. */
1109 if ((history_is_stifled () && (history_length >= max_input_history)) ||
1110 (where >= history_length - 1))
1111 operate_saved_history = where;
1113 operate_saved_history = where + 1;
1115 return rl_newline (1, key);
1118 /* Read one line from the command input stream `instream'
1119 into the local static buffer `linebuffer' (whose current length
1121 The buffer is made bigger as necessary.
1122 Returns the address of the start of the line.
1124 NULL is returned for end of file.
1126 *If* the instream == stdin & stdin is a terminal, the line read
1127 is copied into the file line saver (global var char *line,
1128 length linesize) so that it can be duplicated.
1130 This routine either uses fancy command line editing or
1131 simple input as the user has requested. */
1134 command_line_input (char *prompt_arg, int repeat, char *annotation_suffix)
1136 static char *linebuffer = 0;
1137 static unsigned linelength = 0;
1141 char *local_prompt = prompt_arg;
1145 /* The annotation suffix must be non-NULL. */
1146 if (annotation_suffix == NULL)
1147 annotation_suffix = "";
1149 if (annotation_level > 1 && instream == stdin)
1151 local_prompt = alloca ((prompt_arg == NULL ? 0 : strlen (prompt_arg))
1152 + strlen (annotation_suffix) + 40);
1153 if (prompt_arg == NULL)
1154 local_prompt[0] = '\0';
1156 strcpy (local_prompt, prompt_arg);
1157 strcat (local_prompt, "\n\032\032");
1158 strcat (local_prompt, annotation_suffix);
1159 strcat (local_prompt, "\n");
1162 if (linebuffer == 0)
1165 linebuffer = (char *) xmalloc (linelength);
1170 /* Control-C quits instantly if typed while in this loop
1171 since it should not wait until the user types a newline. */
1177 signal (STOP_SIGNAL, handle_stop_sig);
1179 signal (STOP_SIGNAL, stop_sig);
1185 /* Make sure that all output has been output. Some machines may let
1186 you get away with leaving out some of the gdb_flush, but not all. */
1188 gdb_flush (gdb_stdout);
1189 gdb_flush (gdb_stderr);
1191 if (source_file_name != NULL)
1193 ++source_line_number;
1194 sprintf (source_error,
1195 "%s%s:%d: Error in sourced command file:\n",
1198 source_line_number);
1199 error_pre_print = source_error;
1202 if (annotation_level > 1 && instream == stdin)
1204 printf_unfiltered ("\n\032\032pre-");
1205 printf_unfiltered (annotation_suffix);
1206 printf_unfiltered ("\n");
1209 /* Don't use fancy stuff if not talking to stdin. */
1210 if (readline_hook && instream == NULL)
1212 rl = (*readline_hook) (local_prompt);
1214 else if (command_editing_p && instream == stdin && ISATTY (instream))
1216 rl = gdb_readline_wrapper (local_prompt);
1220 rl = gdb_readline (local_prompt);
1223 if (annotation_level > 1 && instream == stdin)
1225 printf_unfiltered ("\n\032\032post-");
1226 printf_unfiltered (annotation_suffix);
1227 printf_unfiltered ("\n");
1230 if (!rl || rl == (char *) EOF)
1235 if (strlen (rl) + 1 + (p - linebuffer) > linelength)
1237 linelength = strlen (rl) + 1 + (p - linebuffer);
1238 nline = (char *) xrealloc (linebuffer, linelength);
1239 p += nline - linebuffer;
1243 /* Copy line. Don't copy null at end. (Leaves line alone
1244 if this was just a newline) */
1248 xfree (rl); /* Allocated in readline. */
1250 if (p == linebuffer || *(p - 1) != '\\')
1253 p--; /* Put on top of '\'. */
1254 local_prompt = (char *) 0;
1259 signal (STOP_SIGNAL, SIG_DFL);
1266 #define SERVER_COMMAND_LENGTH 7
1268 (p - linebuffer > SERVER_COMMAND_LENGTH)
1269 && STREQN (linebuffer, "server ", SERVER_COMMAND_LENGTH);
1272 /* Note that we don't set `line'. Between this and the check in
1273 dont_repeat, this insures that repeating will still do the
1276 return linebuffer + SERVER_COMMAND_LENGTH;
1279 /* Do history expansion if that is wished. */
1280 if (history_expansion_p && instream == stdin
1281 && ISATTY (instream))
1283 char *history_value;
1286 *p = '\0'; /* Insert null now. */
1287 expanded = history_expand (linebuffer, &history_value);
1290 /* Print the changes. */
1291 printf_unfiltered ("%s\n", history_value);
1293 /* If there was an error, call this function again. */
1296 xfree (history_value);
1297 return command_line_input (prompt_arg, repeat, annotation_suffix);
1299 if (strlen (history_value) > linelength)
1301 linelength = strlen (history_value) + 1;
1302 linebuffer = (char *) xrealloc (linebuffer, linelength);
1304 strcpy (linebuffer, history_value);
1305 p = linebuffer + strlen (linebuffer);
1306 xfree (history_value);
1310 /* If we just got an empty line, and that is supposed
1311 to repeat the previous command, return the value in the
1313 if (repeat && p == linebuffer)
1315 for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++);
1321 /* Add line to history if appropriate. */
1322 if (instream == stdin
1323 && ISATTY (stdin) && *linebuffer)
1324 add_history (linebuffer);
1326 /* Note: lines consisting solely of comments are added to the command
1327 history. This is useful when you type a command, and then
1328 realize you don't want to execute it quite yet. You can comment
1329 out the command and then later fetch it from the value history
1330 and remove the '#'. The kill ring is probably better, but some
1331 people are in the habit of commenting things out. */
1333 *p1 = '\0'; /* Found a comment. */
1335 /* Save into global buffer if appropriate. */
1338 if (linelength > linesize)
1340 line = xrealloc (line, linelength);
1341 linesize = linelength;
1343 strcpy (line, linebuffer);
1350 /* Print the GDB banner. */
1352 print_gdb_version (struct ui_file *stream)
1354 /* From GNU coding standards, first line is meant to be easy for a
1355 program to parse, and is just canonical program name and version
1356 number, which starts after last space. */
1358 fprintf_filtered (stream, "GNU gdb %s\n", version);
1360 /* Second line is a copyright notice. */
1362 fprintf_filtered (stream, "Copyright 2003 Free Software Foundation, Inc.\n");
1364 /* Following the copyright is a brief statement that the program is
1365 free software, that users are free to copy and change it on
1366 certain conditions, that it is covered by the GNU GPL, and that
1367 there is no warranty. */
1369 fprintf_filtered (stream, "\
1370 GDB is free software, covered by the GNU General Public License, and you are\n\
1371 welcome to change it and/or distribute copies of it under certain conditions.\n\
1372 Type \"show copying\" to see the conditions.\n\
1373 There is absolutely no warranty for GDB. Type \"show warranty\" for details.\n");
1375 /* After the required info we print the configuration information. */
1377 fprintf_filtered (stream, "This GDB was configured as \"");
1378 if (!STREQ (host_name, target_name))
1380 fprintf_filtered (stream, "--host=%s --target=%s", host_name, target_name);
1384 fprintf_filtered (stream, "%s", host_name);
1386 fprintf_filtered (stream, "\".");
1389 /* get_prompt: access method for the GDB prompt string. */
1391 #define MAX_PROMPT_SIZE 256
1394 * int get_prompt_1 (char * buf);
1396 * Work-horse for get_prompt (called via catch_errors).
1397 * Argument is buffer to hold the formatted prompt.
1399 * Returns: 1 for success (use formatted prompt)
1400 * 0 for failure (use gdb_prompt_string).
1403 static int gdb_prompt_escape;
1406 get_prompt_1 (void *data)
1408 char *formatted_prompt = data;
1412 local_prompt = PROMPT (0);
1414 local_prompt = gdb_prompt_string;
1417 if (gdb_prompt_escape == 0)
1419 return 0; /* do no formatting */
1422 /* formatted prompt */
1424 char fmt[40], *promptp, *outp, *tmp;
1425 struct value *arg_val;
1431 struct type *arg_type, *elt_type;
1433 promptp = local_prompt;
1434 outp = formatted_prompt;
1436 while (*promptp != '\0')
1438 int available = MAX_PROMPT_SIZE - (outp - formatted_prompt) - 1;
1440 if (*promptp != gdb_prompt_escape)
1442 if (available >= 1) /* overflow protect */
1443 *outp++ = *promptp++;
1447 /* GDB prompt string contains escape char. Parse for arg.
1448 Two consecutive escape chars followed by arg followed by
1449 a comma means to insert the arg using a default format.
1450 Otherwise a printf format string may be included between
1451 the two escape chars. eg:
1452 %%foo, insert foo using default format
1453 %2.2f%foo, insert foo using "%2.2f" format
1454 A mismatch between the format string and the data type
1455 of "foo" is an error (which we don't know how to protect
1458 fmt[0] = '\0'; /* assume null format string */
1459 if (promptp[1] == gdb_prompt_escape) /* double esc char */
1461 promptp += 2; /* skip past two escape chars. */
1465 /* extract format string from between two esc chars */
1469 fmt[i++] = *promptp++; /* copy format string */
1471 while (i < sizeof (fmt) - 1 &&
1472 *promptp != gdb_prompt_escape &&
1475 if (*promptp != gdb_prompt_escape)
1476 error ("Syntax error at prompt position %d",
1477 (int) (promptp - local_prompt));
1480 promptp++; /* skip second escape char */
1481 fmt[i++] = '\0'; /* terminate the format string */
1485 arg_val = parse_to_comma_and_eval (&promptp);
1486 if (*promptp == ',')
1487 promptp++; /* skip past the comma */
1488 arg_type = check_typedef (VALUE_TYPE (arg_val));
1489 switch (TYPE_CODE (arg_type))
1491 case TYPE_CODE_ARRAY:
1492 elt_type = check_typedef (TYPE_TARGET_TYPE (arg_type));
1493 if (TYPE_LENGTH (arg_type) > 0 &&
1494 TYPE_LENGTH (elt_type) == 1 &&
1495 TYPE_CODE (elt_type) == TYPE_CODE_INT)
1497 int len = TYPE_LENGTH (arg_type);
1499 if (VALUE_LAZY (arg_val))
1500 value_fetch_lazy (arg_val);
1501 tmp = VALUE_CONTENTS (arg_val);
1503 if (len > available)
1504 len = available; /* overflow protect */
1506 /* FIXME: how to protect GDB from crashing
1507 from bad user-supplied format string? */
1509 sprintf (outp, fmt, tmp);
1511 strncpy (outp, tmp, len);
1516 elt_type = check_typedef (TYPE_TARGET_TYPE (arg_type));
1517 addrval = value_as_address (arg_val);
1519 if (TYPE_LENGTH (elt_type) == 1 &&
1520 TYPE_CODE (elt_type) == TYPE_CODE_INT &&
1523 /* display it as a string */
1524 char *default_fmt = "%s";
1528 /* Limiting the number of bytes that the following call
1529 will read protects us from sprintf overflow later. */
1530 i = target_read_string (addrval, /* src */
1532 available, /* len */
1534 if (err) /* read failed */
1535 error ("%s on target_read", safe_strerror (err));
1537 tmp[i] = '\0'; /* force-terminate string */
1538 /* FIXME: how to protect GDB from crashing
1539 from bad user-supplied format string? */
1540 sprintf (outp, fmt[0] == 0 ? default_fmt : fmt,
1546 /* display it as a pointer */
1547 char *default_fmt = "0x%x";
1549 /* FIXME: how to protect GDB from crashing
1550 from bad user-supplied format string? */
1551 if (available >= 16 /*? */ ) /* overflow protect */
1552 sprintf (outp, fmt[0] == 0 ? default_fmt : fmt,
1558 char *default_fmt = "%g";
1560 doubleval = value_as_double (arg_val);
1561 /* FIXME: how to protect GDB from crashing
1562 from bad user-supplied format string? */
1563 if (available >= 16 /*? */ ) /* overflow protect */
1564 sprintf (outp, fmt[0] == 0 ? default_fmt : fmt,
1565 (double) doubleval);
1570 char *default_fmt = "%d";
1572 longval = value_as_long (arg_val);
1573 /* FIXME: how to protect GDB from crashing
1574 from bad user-supplied format string? */
1575 if (available >= 16 /*? */ ) /* overflow protect */
1576 sprintf (outp, fmt[0] == 0 ? default_fmt : fmt,
1580 case TYPE_CODE_BOOL:
1582 /* no default format for bool */
1583 longval = value_as_long (arg_val);
1584 if (available >= 8 /*? */ ) /* overflow protect */
1587 strcpy (outp, "<true>");
1589 strcpy (outp, "<false>");
1593 case TYPE_CODE_ENUM:
1595 /* no default format for enum */
1596 longval = value_as_long (arg_val);
1597 len = TYPE_NFIELDS (arg_type);
1598 /* find enum name if possible */
1599 for (i = 0; i < len; i++)
1600 if (TYPE_FIELD_BITPOS (arg_type, i) == longval)
1601 break; /* match -- end loop */
1603 if (i < len) /* enum name found */
1605 char *name = TYPE_FIELD_NAME (arg_type, i);
1607 strncpy (outp, name, available);
1608 /* in casel available < strlen (name), */
1609 outp[available] = '\0';
1613 if (available >= 16 /*? */ ) /* overflow protect */
1614 sprintf (outp, "%ld", (long) longval);
1618 case TYPE_CODE_VOID:
1620 break; /* void type -- no output */
1622 error ("bad data type at prompt position %d",
1623 (int) (promptp - local_prompt));
1626 outp += strlen (outp);
1629 *outp++ = '\0'; /* terminate prompt string */
1637 static char buf[MAX_PROMPT_SIZE];
1639 if (catch_errors (get_prompt_1, buf, "bad formatted prompt: ",
1642 return &buf[0]; /* successful formatted prompt */
1646 /* Prompt could not be formatted. */
1650 return gdb_prompt_string;
1655 set_prompt (char *s)
1657 /* ??rehrauer: I don't know why this fails, since it looks as though
1658 assignments to prompt are wrapped in calls to savestring...
1663 PROMPT (0) = savestring (s, strlen (s));
1665 gdb_prompt_string = savestring (s, strlen (s));
1669 /* If necessary, make the user confirm that we should quit. Return
1670 non-zero if we should quit, zero if we shouldn't. */
1675 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
1679 /* This is something of a hack. But there's no reliable way to
1680 see if a GUI is running. The `use_windows' variable doesn't
1683 s = "A debugging session is active.\nDo you still want to close the debugger?";
1684 else if (attach_flag)
1685 s = "The program is running. Quit anyway (and detach it)? ";
1687 s = "The program is running. Exit anyway? ";
1696 /* Quit without asking for confirmation. */
1699 quit_force (char *args, int from_tty)
1703 /* An optional expression may be used to cause gdb to terminate with the
1704 value of that expression. */
1707 struct value *val = parse_and_eval (args);
1709 exit_code = (int) value_as_long (val);
1712 if (! ptid_equal (inferior_ptid, null_ptid) && target_has_execution)
1715 target_detach (args, from_tty);
1720 /* UDI wants this, to kill the TIP. */
1723 /* Save the history information if it is appropriate to do so. */
1724 if (write_history_p && history_filename)
1725 write_history (history_filename);
1727 do_final_cleanups (ALL_CLEANUPS); /* Do any final cleanups before exiting */
1732 /* Returns whether GDB is running on a terminal and whether the user
1733 desires that questions be asked of them on that terminal. */
1736 input_from_terminal_p (void)
1738 return gdb_has_a_terminal () && (instream == stdin) & caution;
1743 dont_repeat_command (char *ignored, int from_tty)
1745 *line = 0; /* Can't call dont_repeat here because we're not
1746 necessarily reading from stdin. */
1749 /* Functions to manipulate command line editing control variables. */
1751 /* Number of commands to print in each call to show_commands. */
1752 #define Hist_print 10
1754 show_commands (char *args, int from_tty)
1756 /* Index for history commands. Relative to history_base. */
1759 /* Number of the history entry which we are planning to display next.
1760 Relative to history_base. */
1763 /* The first command in the history which doesn't exist (i.e. one more
1764 than the number of the last command). Relative to history_base. */
1767 /* Print out some of the commands from the command history. */
1768 /* First determine the length of the history list. */
1769 hist_len = history_size;
1770 for (offset = 0; offset < history_size; offset++)
1772 if (!history_get (history_base + offset))
1781 if (args[0] == '+' && args[1] == '\0')
1782 /* "info editing +" should print from the stored position. */
1785 /* "info editing <exp>" should print around command number <exp>. */
1786 num = (parse_and_eval_long (args) - history_base) - Hist_print / 2;
1788 /* "show commands" means print the last Hist_print commands. */
1791 num = hist_len - Hist_print;
1797 /* If there are at least Hist_print commands, we want to display the last
1798 Hist_print rather than, say, the last 6. */
1799 if (hist_len - num < Hist_print)
1801 num = hist_len - Hist_print;
1806 for (offset = num; offset < num + Hist_print && offset < hist_len; offset++)
1808 printf_filtered ("%5d %s\n", history_base + offset,
1809 (history_get (history_base + offset))->line);
1812 /* The next command we want to display is the next one that we haven't
1816 /* If the user repeats this command with return, it should do what
1817 "show commands +" does. This is unnecessary if arg is null,
1818 because "show commands +" is not useful after "show commands". */
1819 if (from_tty && args)
1826 /* Called by do_setshow_command. */
1829 set_history_size_command (char *args, int from_tty, struct cmd_list_element *c)
1831 if (history_size == INT_MAX)
1832 unstifle_history ();
1833 else if (history_size >= 0)
1834 stifle_history (history_size);
1837 history_size = INT_MAX;
1838 error ("History size must be non-negative");
1844 set_history (char *args, int from_tty)
1846 printf_unfiltered ("\"set history\" must be followed by the name of a history subcommand.\n");
1847 help_list (sethistlist, "set history ", -1, gdb_stdout);
1852 show_history (char *args, int from_tty)
1854 cmd_show_list (showhistlist, from_tty, "");
1857 int info_verbose = 0; /* Default verbose msgs off */
1859 /* Called by do_setshow_command. An elaborate joke. */
1862 set_verbose (char *args, int from_tty, struct cmd_list_element *c)
1864 char *cmdname = "verbose";
1865 struct cmd_list_element *showcmd;
1867 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
1871 c->doc = "Set verbose printing of informational messages.";
1872 showcmd->doc = "Show verbose printing of informational messages.";
1876 c->doc = "Set verbosity.";
1877 showcmd->doc = "Show verbosity.";
1881 /* Init the history buffer. Note that we are called after the init file(s)
1882 * have been read so that the user can change the history file via his
1883 * .gdbinit file (for instance). The GDBHISTFILE environment variable
1884 * overrides all of this.
1892 tmpenv = getenv ("HISTSIZE");
1894 history_size = atoi (tmpenv);
1895 else if (!history_size)
1898 stifle_history (history_size);
1900 tmpenv = getenv ("GDBHISTFILE");
1902 history_filename = savestring (tmpenv, strlen (tmpenv));
1903 else if (!history_filename)
1905 /* We include the current directory so that if the user changes
1906 directories the file written will be the same as the one
1909 /* No leading dots in file names are allowed on MSDOS. */
1910 history_filename = concat (current_directory, "/_gdb_history", NULL);
1912 history_filename = concat (current_directory, "/.gdb_history", NULL);
1915 read_history (history_filename);
1921 struct cmd_list_element *c;
1923 /* If we are running the asynchronous version,
1924 we initialize the prompts differently. */
1927 gdb_prompt_string = savestring (DEFAULT_PROMPT, strlen (DEFAULT_PROMPT));
1931 /* initialize the prompt stack to a simple "(gdb) " prompt or to
1932 whatever the DEFAULT_PROMPT is. */
1933 the_prompts.top = 0;
1935 PROMPT (0) = savestring (DEFAULT_PROMPT, strlen (DEFAULT_PROMPT));
1937 /* Set things up for annotation_level > 1, if the user ever decides
1939 async_annotation_suffix = "prompt";
1940 /* Set the variable associated with the setshow prompt command. */
1941 new_async_prompt = savestring (PROMPT (0), strlen (PROMPT (0)));
1943 /* If gdb was started with --annotate=2, this is equivalent to
1944 the user entering the command 'set annotate 2' at the gdb
1945 prompt, so we need to do extra processing. */
1946 if (annotation_level > 1)
1947 set_async_annotation_level (NULL, 0, NULL);
1949 gdb_prompt_escape = 0; /* default to none. */
1951 /* Set the important stuff up for command editing. */
1952 command_editing_p = 1;
1953 history_expansion_p = 0;
1954 write_history_p = 0;
1956 /* Setup important stuff for command line editing. */
1957 rl_completion_entry_function = readline_line_completion_function;
1958 rl_completer_word_break_characters =
1959 get_gdb_completer_word_break_characters ();
1960 rl_completer_quote_characters = get_gdb_completer_quote_characters ();
1961 rl_readline_name = "gdb";
1962 rl_terminal_name = getenv ("TERM");
1964 /* The name for this defun comes from Bash, where it originated.
1965 15 is Control-o, the same binding this function has in Bash. */
1966 rl_add_defun ("operate-and-get-next", gdb_rl_operate_and_get_next, 15);
1968 /* The set prompt command is different depending whether or not the
1969 async version is run. NOTE: this difference is going to
1970 disappear as we make the event loop be the default engine of
1975 (add_set_cmd ("prompt", class_support, var_string,
1976 (char *) &gdb_prompt_string, "Set gdb's prompt",
1982 c = add_set_cmd ("prompt", class_support, var_string,
1983 (char *) &new_async_prompt, "Set gdb's prompt",
1985 add_show_from_set (c, &showlist);
1986 set_cmd_sfunc (c, set_async_prompt);
1990 (add_set_cmd ("prompt-escape-char", class_support, var_zinteger,
1991 (char *) &gdb_prompt_escape,
1992 "Set escape character for formatting of gdb's prompt",
1996 add_com ("dont-repeat", class_support, dont_repeat_command, "Don't repeat this command.\n\
1997 Primarily used inside of user-defined commands that should not be repeated when\n\
2000 /* The set editing command is different depending whether or not the
2001 async version is run. NOTE: this difference is going to disappear
2002 as we make the event loop be the default engine of gdb. */
2006 (add_set_cmd ("editing", class_support, var_boolean, (char *) &command_editing_p,
2007 "Set editing of command lines as they are typed.\n\
2008 Use \"on\" to enable the editing, and \"off\" to disable it.\n\
2009 Without an argument, command line editing is enabled. To edit, use\n\
2010 EMACS-like or VI-like commands like control-P or ESC.", &setlist),
2015 c = add_set_cmd ("editing", class_support, var_boolean, (char *) &async_command_editing_p,
2016 "Set editing of command lines as they are typed.\n\
2017 Use \"on\" to enable the editing, and \"off\" to disable it.\n\
2018 Without an argument, command line editing is enabled. To edit, use\n\
2019 EMACS-like or VI-like commands like control-P or ESC.", &setlist);
2021 add_show_from_set (c, &showlist);
2022 set_cmd_sfunc (c, set_async_editing_command);
2026 (add_set_cmd ("save", no_class, var_boolean, (char *) &write_history_p,
2027 "Set saving of the history record on exit.\n\
2028 Use \"on\" to enable the saving, and \"off\" to disable it.\n\
2029 Without an argument, saving is enabled.", &sethistlist),
2032 c = add_set_cmd ("size", no_class, var_integer, (char *) &history_size,
2033 "Set the size of the command history,\n\
2034 ie. the number of previous commands to keep a record of.", &sethistlist);
2035 add_show_from_set (c, &showhistlist);
2036 set_cmd_sfunc (c, set_history_size_command);
2038 c = add_set_cmd ("filename", no_class, var_filename,
2039 (char *) &history_filename,
2040 "Set the filename in which to record the command history\n\
2041 (the list of previous commands of which a record is kept).", &sethistlist);
2042 set_cmd_completer (c, filename_completer);
2043 add_show_from_set (c, &showhistlist);
2046 (add_set_cmd ("confirm", class_support, var_boolean,
2048 "Set whether to confirm potentially dangerous operations.",
2052 /* The set annotate command is different depending whether or not
2053 the async version is run. NOTE: this difference is going to
2054 disappear as we make the event loop be the default engine of
2058 c = add_set_cmd ("annotate", class_obscure, var_zinteger,
2059 (char *) &annotation_level, "Set annotation_level.\n\
2060 0 == normal; 1 == fullname (for use when running under emacs)\n\
2061 2 == output annotated suitably for use by programs that control GDB.",
2063 c = add_show_from_set (c, &showlist);
2067 c = add_set_cmd ("annotate", class_obscure, var_zinteger,
2068 (char *) &annotation_level, "Set annotation_level.\n\
2069 0 == normal; 1 == fullname (for use when running under emacs)\n\
2070 2 == output annotated suitably for use by programs that control GDB.",
2072 add_show_from_set (c, &showlist);
2073 set_cmd_sfunc (c, set_async_annotation_level);
2078 (add_set_cmd ("exec-done-display", class_support, var_boolean, (char *) &exec_done_display_p,
2079 "Set notification of completion for asynchronous execution commands.\n\
2080 Use \"on\" to enable the notification, and \"off\" to disable it.", &setlist),
2086 gdb_init (char *argv0)
2088 if (pre_init_ui_hook)
2089 pre_init_ui_hook ();
2091 /* Run the init function of each source file */
2093 getcwd (gdb_dirbuf, sizeof (gdb_dirbuf));
2094 current_directory = gdb_dirbuf;
2097 /* Make sure we return to the original directory upon exit, come
2098 what may, since the OS doesn't do that for us. */
2099 make_final_cleanup (do_chdir_cleanup, xstrdup (current_directory));
2102 init_cmd_lists (); /* This needs to be done first */
2103 initialize_targets (); /* Setup target_terminal macros for utils.c */
2104 initialize_utils (); /* Make errors and warnings possible */
2105 initialize_all_files ();
2106 initialize_current_architecture ();
2108 init_main (); /* But that omits this file! Do it now */
2110 /* The signal handling mechanism is different depending whether or
2111 not the async version is run. NOTE: in the future we plan to make
2112 the event loop be the default engine of gdb, and this difference
2115 async_init_signals ();
2119 /* We need a default language for parsing expressions, so simple things like
2120 "set width 0" won't fail if no language is explicitly set in a config file
2121 or implicitly set by reading an executable during startup. */
2122 set_language (language_c);
2123 expected_language = current_language; /* don't warn about the change. */
2125 /* Allow another UI to initialize. If the UI fails to initialize, and
2126 it wants GDB to revert to the CLI, it should clear init_ui_hook. */
2128 init_ui_hook (argv0);