Ensure that libbacktrace/allocfail.sh is not deleted when creating release tarballs.
[binutils-gdb.git] / gdb / top.c
blob91b4e6a3cfe21dfe87d64e4625ab4baa6e99801c
1 /* Top level stuff for GDB, the GNU debugger.
3 Copyright (C) 1986-2022 Free Software Foundation, Inc.
5 This file is part of GDB.
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 3 of the License, or
10 (at your option) any later version.
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.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "defs.h"
21 #include "gdbcmd.h"
22 #include "cli/cli-cmds.h"
23 #include "cli/cli-script.h"
24 #include "cli/cli-setshow.h"
25 #include "cli/cli-decode.h"
26 #include "symtab.h"
27 #include "inferior.h"
28 #include "infrun.h"
29 #include <signal.h>
30 #include "target.h"
31 #include "target-dcache.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"
38 #include "gdbsupport/job-control.h"
39 #include "annotate.h"
40 #include "completer.h"
41 #include "top.h"
42 #include "gdbsupport/version.h"
43 #include "serial.h"
44 #include "main.h"
45 #include "gdbsupport/event-loop.h"
46 #include "gdbthread.h"
47 #include "extension.h"
48 #include "interps.h"
49 #include "observable.h"
50 #include "maint.h"
51 #include "filenames.h"
52 #include "frame.h"
53 #include "gdbsupport/buffer.h"
54 #include "gdbsupport/gdb_select.h"
55 #include "gdbsupport/scope-exit.h"
56 #include "gdbarch.h"
57 #include "gdbsupport/pathstuff.h"
58 #include "cli/cli-style.h"
59 #include "pager.h"
61 /* readline include files. */
62 #include "readline/readline.h"
63 #include "readline/history.h"
65 /* readline defines this. */
66 #undef savestring
68 #include <sys/types.h>
70 #include "event-top.h"
71 #include <sys/stat.h>
72 #include <ctype.h>
73 #include "ui-out.h"
74 #include "cli-out.h"
75 #include "tracepoint.h"
76 #include "inf-loop.h"
78 #if defined(TUI)
79 # include "tui/tui.h"
80 #endif
82 #ifndef O_NOCTTY
83 # define O_NOCTTY 0
84 #endif
86 extern void initialize_all_files (void);
88 #define PROMPT(X) the_prompts.prompt_stack[the_prompts.top + X].prompt
89 #define PREFIX(X) the_prompts.prompt_stack[the_prompts.top + X].prefix
90 #define SUFFIX(X) the_prompts.prompt_stack[the_prompts.top + X].suffix
92 /* Default command line prompt. This is overridden in some configs. */
94 #ifndef DEFAULT_PROMPT
95 #define DEFAULT_PROMPT "(gdb) "
96 #endif
98 struct ui_file **
99 current_ui_gdb_stdout_ptr ()
101 return &current_ui->m_gdb_stdout;
104 struct ui_file **
105 current_ui_gdb_stdin_ptr ()
107 return &current_ui->m_gdb_stdin;
110 struct ui_file **
111 current_ui_gdb_stderr_ptr ()
113 return &current_ui->m_gdb_stderr;
116 struct ui_file **
117 current_ui_gdb_stdlog_ptr ()
119 return &current_ui->m_gdb_stdlog;
122 struct ui_out **
123 current_ui_current_uiout_ptr ()
125 return &current_ui->m_current_uiout;
128 int inhibit_gdbinit = 0;
130 /* Flag for whether we want to confirm potentially dangerous
131 operations. Default is yes. */
133 bool confirm = true;
135 static void
136 show_confirm (struct ui_file *file, int from_tty,
137 struct cmd_list_element *c, const char *value)
139 gdb_printf (file, _("Whether to confirm potentially "
140 "dangerous operations is %s.\n"),
141 value);
144 /* The last command line executed on the console. Used for command
145 repetitions when the user enters an empty line. */
147 static char *saved_command_line;
149 /* If not NULL, the arguments that should be passed if
150 saved_command_line is repeated. */
152 static const char *repeat_arguments;
154 /* The previous last command line executed on the console. Used for command
155 repetitions when a command wants to relaunch the previously launched
156 command. We need this as when a command is running, saved_command_line
157 already contains the line of the currently executing command. */
159 static char *previous_saved_command_line;
161 /* If not NULL, the arguments that should be passed if the
162 previous_saved_command_line is repeated. */
164 static const char *previous_repeat_arguments;
166 /* Nonzero if the current command is modified by "server ". This
167 affects things like recording into the command history, commands
168 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
169 whatever) can issue its own commands and also send along commands
170 from the user, and have the user not notice that the user interface
171 is issuing commands too. */
172 bool server_command;
174 /* Timeout limit for response from target. */
176 /* The default value has been changed many times over the years. It
177 was originally 5 seconds. But that was thought to be a long time
178 to sit and wait, so it was changed to 2 seconds. That was thought
179 to be plenty unless the connection was going through some terminal
180 server or multiplexer or other form of hairy serial connection.
182 In mid-1996, remote_timeout was moved from remote.c to top.c and
183 it began being used in other remote-* targets. It appears that the
184 default was changed to 20 seconds at that time, perhaps because the
185 Renesas E7000 ICE didn't always respond in a timely manner.
187 But if 5 seconds is a long time to sit and wait for retransmissions,
188 20 seconds is far worse. This demonstrates the difficulty of using
189 a single variable for all protocol timeouts.
191 As remote.c is used much more than remote-e7000.c, it was changed
192 back to 2 seconds in 1999. */
194 int remote_timeout = 2;
196 /* Sbrk location on entry to main. Used for statistics only. */
197 #ifdef HAVE_USEFUL_SBRK
198 char *lim_at_start;
199 #endif
201 /* Hooks for alternate command interfaces. */
203 /* This hook is called from within gdb's many mini-event loops which
204 could steal control from a real user interface's event loop. It
205 returns non-zero if the user is requesting a detach, zero
206 otherwise. */
208 int (*deprecated_ui_loop_hook) (int);
211 /* Called from print_frame_info to list the line we stopped in. */
213 void (*deprecated_print_frame_info_listing_hook) (struct symtab * s,
214 int line,
215 int stopline,
216 int noerror);
217 /* Replaces most of query. */
219 int (*deprecated_query_hook) (const char *, va_list);
221 /* Replaces most of warning. */
223 void (*deprecated_warning_hook) (const char *, va_list);
225 /* These three functions support getting lines of text from the user.
226 They are used in sequence. First deprecated_readline_begin_hook is
227 called with a text string that might be (for example) a message for
228 the user to type in a sequence of commands to be executed at a
229 breakpoint. If this function calls back to a GUI, it might take
230 this opportunity to pop up a text interaction window with this
231 message. Next, deprecated_readline_hook is called with a prompt
232 that is emitted prior to collecting the user input. It can be
233 called multiple times. Finally, deprecated_readline_end_hook is
234 called to notify the GUI that we are done with the interaction
235 window and it can close it. */
237 void (*deprecated_readline_begin_hook) (const char *, ...);
238 char *(*deprecated_readline_hook) (const char *);
239 void (*deprecated_readline_end_hook) (void);
241 /* Called as appropriate to notify the interface that we have attached
242 to or detached from an already running process. */
244 void (*deprecated_attach_hook) (void);
245 void (*deprecated_detach_hook) (void);
247 /* Used by UI as a wrapper around command execution. May do various
248 things like enabling/disabling buttons, etc... */
250 void (*deprecated_call_command_hook) (struct cmd_list_element * c,
251 const char *cmd, int from_tty);
253 /* Called when the current thread changes. Argument is thread id. */
255 void (*deprecated_context_hook) (int id);
257 /* The highest UI number ever assigned. */
258 static int highest_ui_num;
260 /* Unbuffer STREAM. This is a wrapper around setbuf(STREAM, nullptr)
261 which applies some special rules for MS-Windows hosts. */
263 static void
264 unbuffer_stream (FILE *stream)
266 /* Unbuffer the input stream so that in gdb_readline_no_editing_callback,
267 the calls to fgetc fetch only one char at the time from STREAM.
269 This is important because gdb_readline_no_editing_callback will read
270 from STREAM up to the first '\n' character, after this GDB returns to
271 the event loop and relies on a select on STREAM indicating that more
272 input is pending.
274 If STREAM is buffered then the fgetc calls may have moved all the
275 pending input from the kernel into a local buffer, after which the
276 select will not indicate that more input is pending, and input after
277 the first '\n' will not be processed immediately.
279 Please ensure that any changes in this area run the MI tests with the
280 FORCE_SEPARATE_MI_TTY=1 flag being passed. */
282 #ifdef __MINGW32__
283 /* With MS-Windows runtime, making stdin unbuffered when it's
284 connected to the terminal causes it to misbehave. */
285 if (!ISATTY (stream))
286 setbuf (stream, nullptr);
287 #else
288 /* On GNU/Linux the issues described above can impact GDB even when
289 dealing with input from a terminal. For now we unbuffer the input
290 stream for everyone except MS-Windows. */
291 setbuf (stream, nullptr);
292 #endif
295 /* See top.h. */
297 ui::ui (FILE *instream_, FILE *outstream_, FILE *errstream_)
298 : num (++highest_ui_num),
299 stdin_stream (instream_),
300 instream (instream_),
301 outstream (outstream_),
302 errstream (errstream_),
303 input_fd (fileno (instream)),
304 m_input_interactive_p (ISATTY (instream)),
305 m_gdb_stdout (new pager_file (new stdio_file (outstream))),
306 m_gdb_stdin (new stdio_file (instream)),
307 m_gdb_stderr (new stderr_file (errstream)),
308 m_gdb_stdlog (new timestamped_file (m_gdb_stderr))
310 unbuffer_stream (instream_);
312 if (ui_list == NULL)
313 ui_list = this;
314 else
316 struct ui *last;
318 for (last = ui_list; last->next != NULL; last = last->next)
320 last->next = this;
324 ui::~ui ()
326 struct ui *ui, *uiprev;
328 uiprev = NULL;
330 for (ui = ui_list; ui != NULL; uiprev = ui, ui = ui->next)
331 if (ui == this)
332 break;
334 gdb_assert (ui != NULL);
336 if (uiprev != NULL)
337 uiprev->next = next;
338 else
339 ui_list = next;
341 delete m_gdb_stdin;
342 delete m_gdb_stdout;
343 delete m_gdb_stderr;
346 /* Open file named NAME for read/write, making sure not to make it the
347 controlling terminal. */
349 static gdb_file_up
350 open_terminal_stream (const char *name)
352 scoped_fd fd = gdb_open_cloexec (name, O_RDWR | O_NOCTTY, 0);
353 if (fd.get () < 0)
354 perror_with_name (_("opening terminal failed"));
356 return fd.to_file ("w+");
359 /* Implementation of the "new-ui" command. */
361 static void
362 new_ui_command (const char *args, int from_tty)
364 int argc;
365 const char *interpreter_name;
366 const char *tty_name;
368 dont_repeat ();
370 gdb_argv argv (args);
371 argc = argv.count ();
373 if (argc < 2)
374 error (_("Usage: new-ui INTERPRETER TTY"));
376 interpreter_name = argv[0];
377 tty_name = argv[1];
380 scoped_restore save_ui = make_scoped_restore (&current_ui);
382 /* Open specified terminal. Note: we used to open it three times,
383 once for each of stdin/stdout/stderr, but that does not work
384 with Windows named pipes. */
385 gdb_file_up stream = open_terminal_stream (tty_name);
387 std::unique_ptr<ui> ui
388 (new struct ui (stream.get (), stream.get (), stream.get ()));
390 ui->async = 1;
392 current_ui = ui.get ();
394 set_top_level_interpreter (interpreter_name);
396 interp_pre_command_loop (top_level_interpreter ());
398 /* Make sure the file is not closed. */
399 stream.release ();
401 ui.release ();
404 gdb_printf ("New UI allocated\n");
407 /* Handler for SIGHUP. */
409 #ifdef SIGHUP
410 /* NOTE 1999-04-29: This function will be static again, once we modify
411 gdb to use the event loop as the default command loop and we merge
412 event-top.c into this file, top.c. */
413 /* static */ void
414 quit_cover (void)
416 /* Stop asking user for confirmation --- we're exiting. This
417 prevents asking the user dumb questions. */
418 confirm = 0;
419 quit_command ((char *) 0, 0);
421 #endif /* defined SIGHUP */
423 /* Line number we are currently in, in a file which is being sourced. */
424 /* NOTE 1999-04-29: This variable will be static again, once we modify
425 gdb to use the event loop as the default command loop and we merge
426 event-top.c into this file, top.c. */
427 /* static */ int source_line_number;
429 /* Name of the file we are sourcing. */
430 /* NOTE 1999-04-29: This variable will be static again, once we modify
431 gdb to use the event loop as the default command loop and we merge
432 event-top.c into this file, top.c. */
433 /* static */ std::string source_file_name;
435 /* Read commands from STREAM. */
436 void
437 read_command_file (FILE *stream)
439 struct ui *ui = current_ui;
441 unbuffer_stream (stream);
443 scoped_restore save_instream
444 = make_scoped_restore (&ui->instream, stream);
446 /* Read commands from `instream' and execute them until end of file
447 or error reading instream. */
449 while (ui->instream != NULL && !feof (ui->instream))
451 /* Get a command-line. This calls the readline package. */
452 std::string command_buffer;
453 const char *command
454 = command_line_input (command_buffer, nullptr, nullptr);
455 if (command == nullptr)
456 break;
457 command_handler (command);
461 #ifdef __MSDOS__
462 static void
463 do_chdir_cleanup (void *old_dir)
465 chdir ((const char *) old_dir);
466 xfree (old_dir);
468 #endif
470 scoped_value_mark
471 prepare_execute_command ()
473 /* With multiple threads running while the one we're examining is
474 stopped, the dcache can get stale without us being able to detect
475 it. For the duration of the command, though, use the dcache to
476 help things like backtrace. */
477 if (non_stop)
478 target_dcache_invalidate ();
480 return scoped_value_mark ();
483 /* Tell the user if the language has changed (except first time) after
484 executing a command. */
486 void
487 check_frame_language_change (void)
489 static int warned = 0;
490 frame_info_ptr frame;
492 /* First make sure that a new frame has been selected, in case the
493 command or the hooks changed the program state. */
494 frame = deprecated_safe_get_selected_frame ();
495 if (current_language != expected_language)
497 if (language_mode == language_mode_auto && info_verbose)
499 /* Print what changed. */
500 language_info ();
502 warned = 0;
505 /* Warn the user if the working language does not match the language
506 of the current frame. Only warn the user if we are actually
507 running the program, i.e. there is a stack. */
508 /* FIXME: This should be cacheing the frame and only running when
509 the frame changes. */
511 if (has_stack_frames ())
513 enum language flang;
515 flang = get_frame_language (frame);
516 if (!warned
517 && flang != language_unknown
518 && flang != current_language->la_language)
520 gdb_printf ("%s\n", _(lang_frame_mismatch_warn));
521 warned = 1;
526 /* See top.h. */
528 void
529 wait_sync_command_done (void)
531 /* Processing events may change the current UI. */
532 scoped_restore save_ui = make_scoped_restore (&current_ui);
533 struct ui *ui = current_ui;
535 /* We're about to wait until the target stops after having resumed
536 it so must force-commit resumptions, in case we're being called
537 in some context where a scoped_disable_commit_resumed object is
538 active. I.e., this function is a commit-resumed sync/flush
539 point. */
540 scoped_enable_commit_resumed enable ("sync wait");
542 while (gdb_do_one_event () >= 0)
543 if (ui->prompt_state != PROMPT_BLOCKED)
544 break;
547 /* See top.h. */
549 void
550 maybe_wait_sync_command_done (int was_sync)
552 /* If the interpreter is in sync mode (we're running a user
553 command's list, running command hooks or similars), and we
554 just ran a synchronous command that started the target, wait
555 for that command to end. */
556 if (!current_ui->async
557 && !was_sync
558 && current_ui->prompt_state == PROMPT_BLOCKED)
559 wait_sync_command_done ();
562 /* See command.h. */
564 void
565 set_repeat_arguments (const char *args)
567 repeat_arguments = args;
570 /* Execute the line P as a command, in the current user context.
571 Pass FROM_TTY as second argument to the defining function. */
573 void
574 execute_command (const char *p, int from_tty)
576 struct cmd_list_element *c;
577 const char *line;
578 const char *cmd_start = p;
580 auto cleanup_if_error = make_scope_exit (bpstat_clear_actions);
581 scoped_value_mark cleanup = prepare_execute_command ();
583 /* This can happen when command_line_input hits end of file. */
584 if (p == NULL)
586 cleanup_if_error.release ();
587 return;
590 target_log_command (p);
592 while (*p == ' ' || *p == '\t')
593 p++;
594 if (*p)
596 const char *cmd = p;
597 const char *arg;
598 std::string default_args;
599 std::string default_args_and_arg;
600 int was_sync = current_ui->prompt_state == PROMPT_BLOCKED;
602 line = p;
604 /* If trace-commands is set then this will print this command. */
605 print_command_trace ("%s", p);
607 c = lookup_cmd (&cmd, cmdlist, "", &default_args, 0, 1);
608 p = cmd;
610 scoped_restore save_repeat_args
611 = make_scoped_restore (&repeat_arguments, nullptr);
612 const char *args_pointer = p;
614 if (!default_args.empty ())
616 if (*p != '\0')
617 default_args_and_arg = default_args + ' ' + p;
618 else
619 default_args_and_arg = default_args;
620 arg = default_args_and_arg.c_str ();
622 else
624 /* Pass null arg rather than an empty one. */
625 arg = *p == '\0' ? nullptr : p;
628 /* FIXME: cagney/2002-02-02: The c->type test is pretty dodgy
629 while the is_complete_command(cfunc) test is just plain
630 bogus. They should both be replaced by a test of the form
631 c->strip_trailing_white_space_p. */
632 /* NOTE: cagney/2002-02-02: The function.cfunc in the below
633 can't be replaced with func. This is because it is the
634 cfunc, and not the func, that has the value that the
635 is_complete_command hack is testing for. */
636 /* Clear off trailing whitespace, except for set and complete
637 command. */
638 std::string without_whitespace;
639 if (arg
640 && c->type != set_cmd
641 && !is_complete_command (c))
643 const char *old_end = arg + strlen (arg) - 1;
644 p = old_end;
645 while (p >= arg && (*p == ' ' || *p == '\t'))
646 p--;
647 if (p != old_end)
649 without_whitespace = std::string (arg, p + 1);
650 arg = without_whitespace.c_str ();
654 /* If this command has been pre-hooked, run the hook first. */
655 execute_cmd_pre_hook (c);
657 if (c->deprecated_warn_user)
658 deprecated_cmd_warning (line, cmdlist);
660 /* c->user_commands would be NULL in the case of a python command. */
661 if (c->theclass == class_user && c->user_commands)
662 execute_user_command (c, arg);
663 else if (c->theclass == class_user
664 && c->is_prefix () && !c->allow_unknown)
665 /* If this is a user defined prefix that does not allow unknown
666 (in other words, C is a prefix command and not a command
667 that can be followed by its args), report the list of
668 subcommands. */
670 std::string prefixname = c->prefixname ();
671 std::string prefixname_no_space
672 = prefixname.substr (0, prefixname.length () - 1);
673 gdb_printf
674 ("\"%s\" must be followed by the name of a subcommand.\n",
675 prefixname_no_space.c_str ());
676 help_list (*c->subcommands, prefixname.c_str (), all_commands,
677 gdb_stdout);
679 else if (c->type == set_cmd)
680 do_set_command (arg, from_tty, c);
681 else if (c->type == show_cmd)
682 do_show_command (arg, from_tty, c);
683 else if (c->is_command_class_help ())
684 error (_("That is not a command, just a help topic."));
685 else if (deprecated_call_command_hook)
686 deprecated_call_command_hook (c, arg, from_tty);
687 else
688 cmd_func (c, arg, from_tty);
690 maybe_wait_sync_command_done (was_sync);
692 /* If this command has been post-hooked, run the hook last.
693 We need to lookup the command again since during its execution,
694 a command may redefine itself. In this case, C pointer
695 becomes invalid so we need to look it up again. */
696 const char *cmd2 = cmd_start;
697 c = lookup_cmd (&cmd2, cmdlist, "", nullptr, 1, 1);
698 if (c != nullptr)
699 execute_cmd_post_hook (c);
701 if (repeat_arguments != NULL && cmd_start == saved_command_line)
703 gdb_assert (strlen (args_pointer) >= strlen (repeat_arguments));
704 strcpy (saved_command_line + (args_pointer - cmd_start),
705 repeat_arguments);
709 /* Only perform the frame-language-change check if the command
710 we just finished executing did not resume the inferior's execution.
711 If it did resume the inferior, we will do that check after
712 the inferior stopped. */
713 if (has_stack_frames () && inferior_thread ()->state != THREAD_RUNNING)
714 check_frame_language_change ();
716 cleanup_if_error.release ();
719 /* See gdbcmd.h. */
721 void
722 execute_fn_to_ui_file (struct ui_file *file, std::function<void(void)> fn)
724 /* GDB_STDOUT should be better already restored during these
725 restoration callbacks. */
726 set_batch_flag_and_restore_page_info save_page_info;
728 scoped_restore save_async = make_scoped_restore (&current_ui->async, 0);
731 ui_out_redirect_pop redirect_popper (current_uiout, file);
733 scoped_restore save_stdout
734 = make_scoped_restore (&gdb_stdout, file);
735 scoped_restore save_stderr
736 = make_scoped_restore (&gdb_stderr, file);
737 scoped_restore save_stdlog
738 = make_scoped_restore (&gdb_stdlog, file);
739 scoped_restore save_stdtarg
740 = make_scoped_restore (&gdb_stdtarg, file);
741 scoped_restore save_stdtargerr
742 = make_scoped_restore (&gdb_stdtargerr, file);
744 fn ();
748 /* See gdbcmd.h. */
750 void
751 execute_fn_to_string (std::string &res, std::function<void(void)> fn,
752 bool term_out)
754 string_file str_file (term_out);
758 execute_fn_to_ui_file (&str_file, fn);
760 catch (...)
762 /* Finally. */
763 res = std::move (str_file.string ());
764 throw;
767 /* And finally. */
768 res = std::move (str_file.string ());
771 /* See gdbcmd.h. */
773 void
774 execute_command_to_ui_file (struct ui_file *file,
775 const char *p, int from_tty)
777 execute_fn_to_ui_file (file, [=]() { execute_command (p, from_tty); });
780 /* See gdbcmd.h. */
782 void
783 execute_command_to_string (std::string &res, const char *p, int from_tty,
784 bool term_out)
786 execute_fn_to_string (res, [=]() { execute_command (p, from_tty); },
787 term_out);
790 /* See gdbcmd.h. */
792 void
793 execute_command_to_string (const char *p, int from_tty,
794 bool term_out)
796 std::string dummy;
797 execute_fn_to_string (dummy, [=]() { execute_command (p, from_tty); },
798 term_out);
801 /* When nonzero, cause dont_repeat to do nothing. This should only be
802 set via prevent_dont_repeat. */
804 static int suppress_dont_repeat = 0;
806 /* See command.h */
808 void
809 dont_repeat (void)
811 struct ui *ui = current_ui;
813 if (suppress_dont_repeat || server_command)
814 return;
816 /* If we aren't reading from standard input, we are saving the last
817 thing read from stdin in line and don't want to delete it. Null
818 lines won't repeat here in any case. */
819 if (ui->instream == ui->stdin_stream)
821 *saved_command_line = 0;
822 repeat_arguments = NULL;
826 /* See command.h */
828 const char *
829 repeat_previous ()
831 /* Do not repeat this command, as this command is a repeating command. */
832 dont_repeat ();
834 /* We cannot free saved_command_line, as this line is being executed,
835 so swap it with previous_saved_command_line. */
836 std::swap (previous_saved_command_line, saved_command_line);
837 std::swap (previous_repeat_arguments, repeat_arguments);
839 const char *prev = skip_spaces (get_saved_command_line ());
840 if (*prev == '\0')
841 error (_("No previous command to relaunch"));
842 return prev;
845 /* See command.h. */
847 scoped_restore_tmpl<int>
848 prevent_dont_repeat (void)
850 return make_scoped_restore (&suppress_dont_repeat, 1);
853 /* See command.h. */
855 char *
856 get_saved_command_line ()
858 return saved_command_line;
861 /* See command.h. */
863 void
864 save_command_line (const char *cmd)
866 xfree (previous_saved_command_line);
867 previous_saved_command_line = saved_command_line;
868 previous_repeat_arguments = repeat_arguments;
869 saved_command_line = xstrdup (cmd);
870 repeat_arguments = NULL;
874 /* Read a line from the stream "instream" without command line editing.
876 It prints PROMPT 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 static char *
883 gdb_readline_no_editing (const char *prompt)
885 struct buffer line_buffer;
886 struct ui *ui = current_ui;
887 /* Read from stdin if we are executing a user defined command. This
888 is the right thing for prompt_for_continue, at least. */
889 FILE *stream = ui->instream != NULL ? ui->instream : stdin;
890 int fd = fileno (stream);
892 buffer_init (&line_buffer);
894 if (prompt != NULL)
896 /* Don't use a _filtered function here. It causes the assumed
897 character position to be off, since the newline we read from
898 the user is not accounted for. */
899 printf_unfiltered ("%s", prompt);
900 gdb_flush (gdb_stdout);
903 while (1)
905 int c;
906 fd_set readfds;
908 QUIT;
910 /* Wait until at least one byte of data is available. Control-C
911 can interrupt interruptible_select, but not fgetc. */
912 FD_ZERO (&readfds);
913 FD_SET (fd, &readfds);
914 if (interruptible_select (fd + 1, &readfds, NULL, NULL, NULL) == -1)
916 if (errno == EINTR)
918 /* If this was ctrl-c, the QUIT above handles it. */
919 continue;
921 perror_with_name (("select"));
924 c = fgetc (stream);
926 if (c == EOF)
928 if (line_buffer.used_size > 0)
929 /* The last line does not end with a newline. Return it, and
930 if we are called again fgetc will still return EOF and
931 we'll return NULL then. */
932 break;
933 xfree (buffer_finish (&line_buffer));
934 return NULL;
937 if (c == '\n')
939 if (line_buffer.used_size > 0
940 && line_buffer.buffer[line_buffer.used_size - 1] == '\r')
941 line_buffer.used_size--;
942 break;
945 buffer_grow_char (&line_buffer, c);
948 buffer_grow_char (&line_buffer, '\0');
949 return buffer_finish (&line_buffer);
952 /* Variables which control command line editing and history
953 substitution. These variables are given default values at the end
954 of this file. */
955 static bool command_editing_p;
957 /* NOTE 1999-04-29: This variable will be static again, once we modify
958 gdb to use the event loop as the default command loop and we merge
959 event-top.c into this file, top.c. */
961 /* static */ bool history_expansion_p;
963 /* Should we write out the command history on exit? In order to write out
964 the history both this flag must be true, and the history_filename
965 variable must be set to something sensible. */
966 static bool write_history_p;
968 /* The name of the file in which GDB history will be written. If this is
969 set to NULL, of the empty string then history will not be written. */
970 static std::string history_filename;
972 /* Implement 'show history save'. */
973 static void
974 show_write_history_p (struct ui_file *file, int from_tty,
975 struct cmd_list_element *c, const char *value)
977 if (!write_history_p || !history_filename.empty ())
978 gdb_printf (file, _("Saving of the history record on exit is %s.\n"),
979 value);
980 else
981 gdb_printf (file, _("Saving of the history is disabled due to "
982 "the value of 'history filename'.\n"));
985 /* The variable associated with the "set/show history size"
986 command. The value -1 means unlimited, and -2 means undefined. */
987 static int history_size_setshow_var = -2;
989 static void
990 show_history_size (struct ui_file *file, int from_tty,
991 struct cmd_list_element *c, const char *value)
993 gdb_printf (file, _("The size of the command history is %s.\n"),
994 value);
997 /* Variable associated with the "history remove-duplicates" option.
998 The value -1 means unlimited. */
999 static int history_remove_duplicates = 0;
1001 static void
1002 show_history_remove_duplicates (struct ui_file *file, int from_tty,
1003 struct cmd_list_element *c, const char *value)
1005 gdb_printf (file,
1006 _("The number of history entries to look back at for "
1007 "duplicates is %s.\n"),
1008 value);
1011 /* Implement 'show history filename'. */
1012 static void
1013 show_history_filename (struct ui_file *file, int from_tty,
1014 struct cmd_list_element *c, const char *value)
1016 if (!history_filename.empty ())
1017 gdb_printf (file, _("The filename in which to record "
1018 "the command history is \"%ps\".\n"),
1019 styled_string (file_name_style.style (), value));
1020 else
1021 gdb_printf (file, _("There is no filename currently set for "
1022 "recording the command history in.\n"));
1025 /* This is like readline(), but it has some gdb-specific behavior.
1026 gdb may want readline in both the synchronous and async modes during
1027 a single gdb invocation. At the ordinary top-level prompt we might
1028 be using the async readline. That means we can't use
1029 rl_pre_input_hook, since it doesn't work properly in async mode.
1030 However, for a secondary prompt (" >", such as occurs during a
1031 `define'), gdb wants a synchronous response.
1033 We used to call readline() directly, running it in synchronous
1034 mode. But mixing modes this way is not supported, and as of
1035 readline 5.x it no longer works; the arrow keys come unbound during
1036 the synchronous call. So we make a nested call into the event
1037 loop. That's what gdb_readline_wrapper is for. */
1039 /* A flag set as soon as gdb_readline_wrapper_line is called; we can't
1040 rely on gdb_readline_wrapper_result, which might still be NULL if
1041 the user types Control-D for EOF. */
1042 static int gdb_readline_wrapper_done;
1044 /* The result of the current call to gdb_readline_wrapper, once a newline
1045 is seen. */
1046 static char *gdb_readline_wrapper_result;
1048 /* Any intercepted hook. Operate-and-get-next sets this, expecting it
1049 to be called after the newline is processed (which will redisplay
1050 the prompt). But in gdb_readline_wrapper we will not get a new
1051 prompt until the next call, or until we return to the event loop.
1052 So we disable this hook around the newline and restore it before we
1053 return. */
1054 static void (*saved_after_char_processing_hook) (void);
1057 /* See top.h. */
1060 gdb_in_secondary_prompt_p (struct ui *ui)
1062 return ui->secondary_prompt_depth > 0;
1066 /* This function is called when readline has seen a complete line of
1067 text. */
1069 static void
1070 gdb_readline_wrapper_line (gdb::unique_xmalloc_ptr<char> &&line)
1072 gdb_assert (!gdb_readline_wrapper_done);
1073 gdb_readline_wrapper_result = line.release ();
1074 gdb_readline_wrapper_done = 1;
1076 /* Prevent operate-and-get-next from acting too early. */
1077 saved_after_char_processing_hook = after_char_processing_hook;
1078 after_char_processing_hook = NULL;
1080 /* Prevent parts of the prompt from being redisplayed if annotations
1081 are enabled, and readline's state getting out of sync. We'll
1082 reinstall the callback handler, which puts the terminal in raw
1083 mode (or in readline lingo, in prepped state), when we're next
1084 ready to process user input, either in display_gdb_prompt, or if
1085 we're handling an asynchronous target event and running in the
1086 background, just before returning to the event loop to process
1087 further input (or more target events). */
1088 if (current_ui->command_editing)
1089 gdb_rl_callback_handler_remove ();
1092 class gdb_readline_wrapper_cleanup
1094 public:
1095 gdb_readline_wrapper_cleanup ()
1096 : m_handler_orig (current_ui->input_handler),
1097 m_already_prompted_orig (current_ui->command_editing
1098 ? rl_already_prompted : 0),
1099 m_target_is_async_orig (target_is_async_p ()),
1100 m_save_ui (&current_ui)
1102 current_ui->input_handler = gdb_readline_wrapper_line;
1103 current_ui->secondary_prompt_depth++;
1105 if (m_target_is_async_orig)
1106 target_async (false);
1109 ~gdb_readline_wrapper_cleanup ()
1111 struct ui *ui = current_ui;
1113 if (ui->command_editing)
1114 rl_already_prompted = m_already_prompted_orig;
1116 gdb_assert (ui->input_handler == gdb_readline_wrapper_line);
1117 ui->input_handler = m_handler_orig;
1119 /* Don't restore our input handler in readline yet. That would make
1120 readline prep the terminal (putting it in raw mode), while the
1121 line we just read may trigger execution of a command that expects
1122 the terminal in the default cooked/canonical mode, such as e.g.,
1123 running Python's interactive online help utility. See
1124 gdb_readline_wrapper_line for when we'll reinstall it. */
1126 gdb_readline_wrapper_result = NULL;
1127 gdb_readline_wrapper_done = 0;
1128 ui->secondary_prompt_depth--;
1129 gdb_assert (ui->secondary_prompt_depth >= 0);
1131 after_char_processing_hook = saved_after_char_processing_hook;
1132 saved_after_char_processing_hook = NULL;
1134 if (m_target_is_async_orig)
1135 target_async (true);
1138 DISABLE_COPY_AND_ASSIGN (gdb_readline_wrapper_cleanup);
1140 private:
1142 void (*m_handler_orig) (gdb::unique_xmalloc_ptr<char> &&);
1143 int m_already_prompted_orig;
1145 /* Whether the target was async. */
1146 int m_target_is_async_orig;
1148 /* Processing events may change the current UI. */
1149 scoped_restore_tmpl<struct ui *> m_save_ui;
1152 char *
1153 gdb_readline_wrapper (const char *prompt)
1155 struct ui *ui = current_ui;
1157 gdb_readline_wrapper_cleanup cleanup;
1159 /* Display our prompt and prevent double prompt display. Don't pass
1160 down a NULL prompt, since that has special meaning for
1161 display_gdb_prompt -- it indicates a request to print the primary
1162 prompt, while we want a secondary prompt here. */
1163 display_gdb_prompt (prompt != NULL ? prompt : "");
1164 if (ui->command_editing)
1165 rl_already_prompted = 1;
1167 if (after_char_processing_hook)
1168 (*after_char_processing_hook) ();
1169 gdb_assert (after_char_processing_hook == NULL);
1171 while (gdb_do_one_event () >= 0)
1172 if (gdb_readline_wrapper_done)
1173 break;
1175 return gdb_readline_wrapper_result;
1179 /* The current saved history number from operate-and-get-next.
1180 This is -1 if not valid. */
1181 static int operate_saved_history = -1;
1183 /* This is put on the appropriate hook and helps operate-and-get-next
1184 do its work. */
1185 static void
1186 gdb_rl_operate_and_get_next_completion (void)
1188 int delta = where_history () - operate_saved_history;
1190 /* The `key' argument to rl_get_previous_history is ignored. */
1191 rl_get_previous_history (delta, 0);
1192 operate_saved_history = -1;
1194 /* readline doesn't automatically update the display for us. */
1195 rl_redisplay ();
1197 after_char_processing_hook = NULL;
1198 rl_pre_input_hook = NULL;
1201 /* This is a gdb-local readline command handler. It accepts the
1202 current command line (like RET does) and, if this command was taken
1203 from the history, arranges for the next command in the history to
1204 appear on the command line when the prompt returns.
1205 We ignore the arguments. */
1206 static int
1207 gdb_rl_operate_and_get_next (int count, int key)
1209 int where;
1211 /* Use the async hook. */
1212 after_char_processing_hook = gdb_rl_operate_and_get_next_completion;
1214 /* Find the current line, and find the next line to use. */
1215 where = where_history();
1217 if ((history_is_stifled () && (history_length >= history_max_entries))
1218 || (where >= history_length - 1))
1219 operate_saved_history = where;
1220 else
1221 operate_saved_history = where + 1;
1223 return rl_newline (1, key);
1226 /* Number of user commands executed during this session. */
1228 static int command_count = 0;
1230 /* Add the user command COMMAND to the input history list. */
1232 void
1233 gdb_add_history (const char *command)
1235 command_count++;
1237 if (history_remove_duplicates != 0)
1239 int lookbehind;
1240 int lookbehind_threshold;
1242 /* The lookbehind threshold for finding a duplicate history entry is
1243 bounded by command_count because we can't meaningfully delete
1244 history entries that are already stored in the history file since
1245 the history file is appended to. */
1246 if (history_remove_duplicates == -1
1247 || history_remove_duplicates > command_count)
1248 lookbehind_threshold = command_count;
1249 else
1250 lookbehind_threshold = history_remove_duplicates;
1252 using_history ();
1253 for (lookbehind = 0; lookbehind < lookbehind_threshold; lookbehind++)
1255 HIST_ENTRY *temp = previous_history ();
1257 if (temp == NULL)
1258 break;
1260 if (strcmp (temp->line, command) == 0)
1262 HIST_ENTRY *prev = remove_history (where_history ());
1263 command_count--;
1264 free_history_entry (prev);
1265 break;
1268 using_history ();
1271 add_history (command);
1274 /* Safely append new history entries to the history file in a corruption-free
1275 way using an intermediate local history file. */
1277 static void
1278 gdb_safe_append_history (void)
1280 int ret, saved_errno;
1282 std::string local_history_filename
1283 = string_printf ("%s-gdb%ld~", history_filename.c_str (), (long) getpid ());
1285 ret = rename (history_filename.c_str (), local_history_filename.c_str ());
1286 saved_errno = errno;
1287 if (ret < 0 && saved_errno != ENOENT)
1289 warning (_("Could not rename %ps to %ps: %s"),
1290 styled_string (file_name_style.style (),
1291 history_filename.c_str ()),
1292 styled_string (file_name_style.style (),
1293 local_history_filename.c_str ()),
1294 safe_strerror (saved_errno));
1296 else
1298 if (ret < 0)
1300 /* If the rename failed with ENOENT then either the global history
1301 file never existed in the first place or another GDB process is
1302 currently appending to it (and has thus temporarily renamed it).
1303 Since we can't distinguish between these two cases, we have to
1304 conservatively assume the first case and therefore must write out
1305 (not append) our known history to our local history file and try
1306 to move it back anyway. Otherwise a global history file would
1307 never get created! */
1308 gdb_assert (saved_errno == ENOENT);
1309 write_history (local_history_filename.c_str ());
1311 else
1313 append_history (command_count, local_history_filename.c_str ());
1314 if (history_is_stifled ())
1315 history_truncate_file (local_history_filename.c_str (),
1316 history_max_entries);
1319 ret = rename (local_history_filename.c_str (), history_filename.c_str ());
1320 saved_errno = errno;
1321 if (ret < 0 && saved_errno != EEXIST)
1322 warning (_("Could not rename %s to %s: %s"),
1323 local_history_filename.c_str (), history_filename.c_str (),
1324 safe_strerror (saved_errno));
1328 /* Read one line from the command input stream `instream'.
1330 CMD_LINE_BUFFER is a buffer that the function may use to store the result, if
1331 it needs to be dynamically-allocated. Otherwise, it is unused.string
1333 Return nullptr for end of file.
1335 This routine either uses fancy command line editing or simple input
1336 as the user has requested. */
1338 const char *
1339 command_line_input (std::string &cmd_line_buffer, const char *prompt_arg,
1340 const char *annotation_suffix)
1342 struct ui *ui = current_ui;
1343 const char *prompt = prompt_arg;
1344 const char *cmd;
1345 int from_tty = ui->instream == ui->stdin_stream;
1347 /* The annotation suffix must be non-NULL. */
1348 if (annotation_suffix == NULL)
1349 annotation_suffix = "";
1351 if (from_tty && annotation_level > 1)
1353 char *local_prompt;
1355 local_prompt
1356 = (char *) alloca ((prompt == NULL ? 0 : strlen (prompt))
1357 + strlen (annotation_suffix) + 40);
1358 if (prompt == NULL)
1359 local_prompt[0] = '\0';
1360 else
1361 strcpy (local_prompt, prompt);
1362 strcat (local_prompt, "\n\032\032");
1363 strcat (local_prompt, annotation_suffix);
1364 strcat (local_prompt, "\n");
1366 prompt = local_prompt;
1369 #ifdef SIGTSTP
1370 if (job_control)
1371 signal (SIGTSTP, handle_sigtstp);
1372 #endif
1374 while (1)
1376 gdb::unique_xmalloc_ptr<char> rl;
1378 /* Make sure that all output has been output. Some machines may
1379 let you get away with leaving out some of the gdb_flush, but
1380 not all. */
1381 gdb_flush (gdb_stdout);
1382 gdb_flush (gdb_stderr);
1384 if (!source_file_name.empty ())
1385 ++source_line_number;
1387 if (from_tty && annotation_level > 1)
1388 printf_unfiltered ("\n\032\032pre-%s\n", annotation_suffix);
1390 /* Don't use fancy stuff if not talking to stdin. */
1391 if (deprecated_readline_hook
1392 && from_tty
1393 && current_ui->input_interactive_p ())
1395 rl.reset ((*deprecated_readline_hook) (prompt));
1397 else if (command_editing_p
1398 && from_tty
1399 && current_ui->input_interactive_p ())
1401 rl.reset (gdb_readline_wrapper (prompt));
1403 else
1405 rl.reset (gdb_readline_no_editing (prompt));
1408 cmd = handle_line_of_input (cmd_line_buffer, rl.get (),
1409 0, annotation_suffix);
1410 if (cmd == (char *) EOF)
1412 cmd = NULL;
1413 break;
1415 if (cmd != NULL)
1416 break;
1418 /* Got partial input. I.e., got a line that ends with a
1419 continuation character (backslash). Suppress printing the
1420 prompt again. */
1421 prompt = NULL;
1424 #ifdef SIGTSTP
1425 if (job_control)
1426 signal (SIGTSTP, SIG_DFL);
1427 #endif
1429 return cmd;
1432 /* See top.h. */
1433 void
1434 print_gdb_version (struct ui_file *stream, bool interactive)
1436 /* From GNU coding standards, first line is meant to be easy for a
1437 program to parse, and is just canonical program name and version
1438 number, which starts after last space. */
1440 std::string v_str = string_printf ("GNU gdb %s%s", PKGVERSION, version);
1441 gdb_printf (stream, "%ps\n",
1442 styled_string (version_style.style (), v_str.c_str ()));
1444 /* Second line is a copyright notice. */
1446 gdb_printf (stream,
1447 "Copyright (C) 2022 Free Software Foundation, Inc.\n");
1449 /* Following the copyright is a brief statement that the program is
1450 free software, that users are free to copy and change it on
1451 certain conditions, that it is covered by the GNU GPL, and that
1452 there is no warranty. */
1454 gdb_printf (stream, "\
1455 License GPLv3+: GNU GPL version 3 or later <%ps>\
1456 \nThis is free software: you are free to change and redistribute it.\n\
1457 There is NO WARRANTY, to the extent permitted by law.",
1458 styled_string (file_name_style.style (),
1459 "http://gnu.org/licenses/gpl.html"));
1461 if (!interactive)
1462 return;
1464 gdb_printf (stream, ("\nType \"show copying\" and "
1465 "\"show warranty\" for details.\n"));
1467 /* After the required info we print the configuration information. */
1469 gdb_printf (stream, "This GDB was configured as \"");
1470 if (strcmp (host_name, target_name) != 0)
1472 gdb_printf (stream, "--host=%s --target=%s",
1473 host_name, target_name);
1475 else
1477 gdb_printf (stream, "%s", host_name);
1479 gdb_printf (stream, "\".\n");
1481 gdb_printf (stream, _("Type \"show configuration\" "
1482 "for configuration details.\n"));
1484 if (REPORT_BUGS_TO[0])
1486 gdb_printf (stream,
1487 _("For bug reporting instructions, please see:\n"));
1488 gdb_printf (stream, "%ps.\n",
1489 styled_string (file_name_style.style (),
1490 REPORT_BUGS_TO));
1492 gdb_printf (stream,
1493 _("Find the GDB manual and other documentation \
1494 resources online at:\n <%ps>."),
1495 styled_string (file_name_style.style (),
1496 "http://www.gnu.org/software/gdb/documentation/"));
1497 gdb_printf (stream, "\n\n");
1498 gdb_printf (stream, _("For help, type \"help\".\n"));
1499 gdb_printf (stream,
1500 _("Type \"apropos word\" to search for commands \
1501 related to \"word\"."));
1504 /* Print the details of GDB build-time configuration. */
1505 void
1506 print_gdb_configuration (struct ui_file *stream)
1508 gdb_printf (stream, _("\
1509 This GDB was configured as follows:\n\
1510 configure --host=%s --target=%s\n\
1511 "), host_name, target_name);
1513 gdb_printf (stream, _("\
1514 --with-auto-load-dir=%s\n\
1515 --with-auto-load-safe-path=%s\n\
1516 "), AUTO_LOAD_DIR, AUTO_LOAD_SAFE_PATH);
1518 #if HAVE_LIBEXPAT
1519 gdb_printf (stream, _("\
1520 --with-expat\n\
1521 "));
1522 #else
1523 gdb_printf (stream, _("\
1524 --without-expat\n\
1525 "));
1526 #endif
1528 if (GDB_DATADIR[0])
1529 gdb_printf (stream, _("\
1530 --with-gdb-datadir=%s%s\n\
1531 "), GDB_DATADIR, GDB_DATADIR_RELOCATABLE ? " (relocatable)" : "");
1533 #ifdef ICONV_BIN
1534 gdb_printf (stream, _("\
1535 --with-iconv-bin=%s%s\n\
1536 "), ICONV_BIN, ICONV_BIN_RELOCATABLE ? " (relocatable)" : "");
1537 #endif
1539 if (JIT_READER_DIR[0])
1540 gdb_printf (stream, _("\
1541 --with-jit-reader-dir=%s%s\n\
1542 "), JIT_READER_DIR, JIT_READER_DIR_RELOCATABLE ? " (relocatable)" : "");
1544 #if HAVE_LIBUNWIND_IA64_H
1545 gdb_printf (stream, _("\
1546 --with-libunwind-ia64\n\
1547 "));
1548 #else
1549 gdb_printf (stream, _("\
1550 --without-libunwind-ia64\n\
1551 "));
1552 #endif
1554 #if HAVE_LIBLZMA
1555 gdb_printf (stream, _("\
1556 --with-lzma\n\
1557 "));
1558 #else
1559 gdb_printf (stream, _("\
1560 --without-lzma\n\
1561 "));
1562 #endif
1564 #if HAVE_LIBBABELTRACE
1565 gdb_printf (stream, _("\
1566 --with-babeltrace\n\
1567 "));
1568 #else
1569 gdb_printf (stream, _("\
1570 --without-babeltrace\n\
1571 "));
1572 #endif
1574 #if HAVE_LIBIPT
1575 gdb_printf (stream, _("\
1576 --with-intel-pt\n\
1577 "));
1578 #else
1579 gdb_printf (stream, _("\
1580 --without-intel-pt\n\
1581 "));
1582 #endif
1584 #if HAVE_LIBXXHASH
1585 gdb_printf (stream, _("\
1586 --with-xxhash\n\
1587 "));
1588 #else
1589 gdb_printf (stream, _("\
1590 --without-xxhash\n\
1591 "));
1592 #endif
1593 #ifdef WITH_PYTHON_PATH
1594 gdb_printf (stream, _("\
1595 --with-python=%s%s\n\
1596 "), WITH_PYTHON_PATH, PYTHON_PATH_RELOCATABLE ? " (relocatable)" : "");
1597 #else
1598 gdb_printf (stream, _("\
1599 --without-python\n\
1600 "));
1601 #endif
1602 #ifdef WITH_PYTHON_LIBDIR
1603 gdb_printf (stream, _("\
1604 --with-python-libdir=%s%s\n\
1605 "), WITH_PYTHON_LIBDIR, PYTHON_LIBDIR_RELOCATABLE ? " (relocatable)" : "");
1606 #else
1607 gdb_printf (stream, _("\
1608 --without-python-libdir\n\
1609 "));
1610 #endif
1612 #if HAVE_LIBDEBUGINFOD
1613 gdb_printf (stream, _("\
1614 --with-debuginfod\n\
1615 "));
1616 #else
1617 gdb_printf (stream, _("\
1618 --without-debuginfod\n\
1619 "));
1620 #endif
1622 #if HAVE_GUILE
1623 gdb_printf (stream, _("\
1624 --with-guile\n\
1625 "));
1626 #else
1627 gdb_printf (stream, _("\
1628 --without-guile\n\
1629 "));
1630 #endif
1632 #if HAVE_SOURCE_HIGHLIGHT
1633 gdb_printf (stream, _("\
1634 --enable-source-highlight\n\
1635 "));
1636 #else
1637 gdb_printf (stream, _("\
1638 --disable-source-highlight\n\
1639 "));
1640 #endif
1642 #if CXX_STD_THREAD
1643 gdb_printf (stream, _("\
1644 --enable-threading\n\
1645 "));
1646 #else
1647 gdb_printf (stream, _("\
1648 --disable-threading\n\
1649 "));
1650 #endif
1652 #ifdef RELOC_SRCDIR
1653 gdb_printf (stream, _("\
1654 --with-relocated-sources=%s\n\
1655 "), RELOC_SRCDIR);
1656 #endif
1658 if (DEBUGDIR[0])
1659 gdb_printf (stream, _("\
1660 --with-separate-debug-dir=%s%s\n\
1661 "), DEBUGDIR, DEBUGDIR_RELOCATABLE ? " (relocatable)" : "");
1663 if (TARGET_SYSTEM_ROOT[0])
1664 gdb_printf (stream, _("\
1665 --with-sysroot=%s%s\n\
1666 "), TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_RELOCATABLE ? " (relocatable)" : "");
1668 if (SYSTEM_GDBINIT[0])
1669 gdb_printf (stream, _("\
1670 --with-system-gdbinit=%s%s\n\
1671 "), SYSTEM_GDBINIT, SYSTEM_GDBINIT_RELOCATABLE ? " (relocatable)" : "");
1673 if (SYSTEM_GDBINIT_DIR[0])
1674 gdb_printf (stream, _("\
1675 --with-system-gdbinit-dir=%s%s\n\
1676 "), SYSTEM_GDBINIT_DIR, SYSTEM_GDBINIT_DIR_RELOCATABLE ? " (relocatable)" : "");
1678 /* We assume "relocatable" will be printed at least once, thus we always
1679 print this text. It's a reasonably safe assumption for now. */
1680 gdb_printf (stream, _("\n\
1681 (\"Relocatable\" means the directory can be moved with the GDB installation\n\
1682 tree, and GDB will still find it.)\n\
1683 "));
1687 /* The current top level prompt, settable with "set prompt", and/or
1688 with the python `gdb.prompt_hook' hook. */
1689 static std::string top_prompt;
1691 /* Access method for the GDB prompt string. */
1693 const std::string &
1694 get_prompt ()
1696 return top_prompt;
1699 /* Set method for the GDB prompt string. */
1701 void
1702 set_prompt (const char *s)
1704 top_prompt = s;
1708 /* Kills or detaches the given inferior, depending on how we originally
1709 gained control of it. */
1711 static void
1712 kill_or_detach (inferior *inf, int from_tty)
1714 if (inf->pid == 0)
1715 return;
1717 thread_info *thread = any_thread_of_inferior (inf);
1718 if (thread != NULL)
1720 switch_to_thread (thread);
1722 /* Leave core files alone. */
1723 if (target_has_execution ())
1725 if (inf->attach_flag)
1726 target_detach (inf, from_tty);
1727 else
1728 target_kill ();
1733 /* Prints info about what GDB will do to inferior INF on a "quit". OUT is
1734 where to collect the output. */
1736 static void
1737 print_inferior_quit_action (inferior *inf, ui_file *out)
1739 if (inf->pid == 0)
1740 return;
1742 if (inf->attach_flag)
1743 gdb_printf (out,
1744 _("\tInferior %d [%s] will be detached.\n"), inf->num,
1745 target_pid_to_str (ptid_t (inf->pid)).c_str ());
1746 else
1747 gdb_printf (out,
1748 _("\tInferior %d [%s] will be killed.\n"), inf->num,
1749 target_pid_to_str (ptid_t (inf->pid)).c_str ());
1752 /* If necessary, make the user confirm that we should quit. Return
1753 non-zero if we should quit, zero if we shouldn't. */
1756 quit_confirm (void)
1758 /* Don't even ask if we're only debugging a core file inferior. */
1759 if (!have_live_inferiors ())
1760 return 1;
1762 /* Build the query string as a single string. */
1763 string_file stb;
1765 stb.puts (_("A debugging session is active.\n\n"));
1767 for (inferior *inf : all_inferiors ())
1768 print_inferior_quit_action (inf, &stb);
1770 stb.puts (_("\nQuit anyway? "));
1772 return query ("%s", stb.c_str ());
1775 /* Prepare to exit GDB cleanly by undoing any changes made to the
1776 terminal so that we leave the terminal in the state we acquired it. */
1778 static void
1779 undo_terminal_modifications_before_exit (void)
1781 struct ui *saved_top_level = current_ui;
1783 target_terminal::ours ();
1785 current_ui = main_ui;
1787 #if defined(TUI)
1788 tui_disable ();
1789 #endif
1790 gdb_disable_readline ();
1792 current_ui = saved_top_level;
1796 /* Quit without asking for confirmation. */
1798 void
1799 quit_force (int *exit_arg, int from_tty)
1801 int exit_code = 0;
1803 /* An optional expression may be used to cause gdb to terminate with the
1804 value of that expression. */
1805 if (exit_arg)
1806 exit_code = *exit_arg;
1807 else if (return_child_result)
1808 exit_code = return_child_result_value;
1810 gdb::observers::gdb_exiting.notify (exit_code);
1812 undo_terminal_modifications_before_exit ();
1814 /* We want to handle any quit errors and exit regardless. */
1816 /* Get out of tfind mode, and kill or detach all inferiors. */
1819 disconnect_tracing ();
1820 for (inferior *inf : all_inferiors ())
1821 kill_or_detach (inf, from_tty);
1823 catch (const gdb_exception &ex)
1825 exception_print (gdb_stderr, ex);
1828 /* Give all pushed targets a chance to do minimal cleanup, and pop
1829 them all out. */
1830 for (inferior *inf : all_inferiors ())
1834 inf->pop_all_targets ();
1836 catch (const gdb_exception &ex)
1838 exception_print (gdb_stderr, ex);
1842 /* Save the history information if it is appropriate to do so. */
1845 if (write_history_p && !history_filename.empty ())
1847 int save = 0;
1849 /* History is currently shared between all UIs. If there's
1850 any UI with a terminal, save history. */
1851 for (ui *ui : all_uis ())
1853 if (ui->input_interactive_p ())
1855 save = 1;
1856 break;
1860 if (save)
1861 gdb_safe_append_history ();
1864 catch (const gdb_exception &ex)
1866 exception_print (gdb_stderr, ex);
1869 /* Destroy any values currently allocated now instead of leaving it
1870 to global destructors, because that may be too late. For
1871 example, the destructors of xmethod values call into the Python
1872 runtime, which is finalized via a final cleanup. */
1873 finalize_values ();
1875 /* Do any final cleanups before exiting. */
1878 do_final_cleanups ();
1880 catch (const gdb_exception &ex)
1882 exception_print (gdb_stderr, ex);
1885 exit (exit_code);
1888 /* The value of the "interactive-mode" setting. */
1889 static enum auto_boolean interactive_mode = AUTO_BOOLEAN_AUTO;
1891 /* Implement the "show interactive-mode" option. */
1893 static void
1894 show_interactive_mode (struct ui_file *file, int from_tty,
1895 struct cmd_list_element *c,
1896 const char *value)
1898 if (interactive_mode == AUTO_BOOLEAN_AUTO)
1899 gdb_printf (file, "Debugger's interactive mode "
1900 "is %s (currently %s).\n",
1901 value, current_ui->input_interactive_p () ? "on" : "off");
1902 else
1903 gdb_printf (file, "Debugger's interactive mode is %s.\n", value);
1906 /* Returns whether GDB is running on an interactive terminal. */
1908 bool
1909 ui::input_interactive_p () const
1911 if (batch_flag)
1912 return false;
1914 if (interactive_mode != AUTO_BOOLEAN_AUTO)
1915 return interactive_mode == AUTO_BOOLEAN_TRUE;
1917 return m_input_interactive_p;
1920 static void
1921 dont_repeat_command (const char *ignored, int from_tty)
1923 /* Can't call dont_repeat here because we're not necessarily reading
1924 from stdin. */
1925 *saved_command_line = 0;
1928 /* Functions to manipulate command line editing control variables. */
1930 /* Number of commands to print in each call to show_commands. */
1931 #define Hist_print 10
1932 void
1933 show_commands (const char *args, int from_tty)
1935 /* Index for history commands. Relative to history_base. */
1936 int offset;
1938 /* Number of the history entry which we are planning to display next.
1939 Relative to history_base. */
1940 static int num = 0;
1942 /* Print out some of the commands from the command history. */
1944 if (args)
1946 if (args[0] == '+' && args[1] == '\0')
1947 /* "info editing +" should print from the stored position. */
1949 else
1950 /* "info editing <exp>" should print around command number <exp>. */
1951 num = (parse_and_eval_long (args) - history_base) - Hist_print / 2;
1953 /* "show commands" means print the last Hist_print commands. */
1954 else
1956 num = history_length - Hist_print;
1959 if (num < 0)
1960 num = 0;
1962 /* If there are at least Hist_print commands, we want to display the last
1963 Hist_print rather than, say, the last 6. */
1964 if (history_length - num < Hist_print)
1966 num = history_length - Hist_print;
1967 if (num < 0)
1968 num = 0;
1971 for (offset = num;
1972 offset < num + Hist_print && offset < history_length;
1973 offset++)
1975 gdb_printf ("%5d %s\n", history_base + offset,
1976 (history_get (history_base + offset))->line);
1979 /* The next command we want to display is the next one that we haven't
1980 displayed yet. */
1981 num += Hist_print;
1983 /* If the user repeats this command with return, it should do what
1984 "show commands +" does. This is unnecessary if arg is null,
1985 because "show commands +" is not useful after "show commands". */
1986 if (from_tty && args)
1987 set_repeat_arguments ("+");
1990 /* Update the size of our command history file to HISTORY_SIZE.
1992 A HISTORY_SIZE of -1 stands for unlimited. */
1994 static void
1995 set_readline_history_size (int history_size)
1997 gdb_assert (history_size >= -1);
1999 if (history_size == -1)
2000 unstifle_history ();
2001 else
2002 stifle_history (history_size);
2005 /* Called by do_setshow_command. */
2006 static void
2007 set_history_size_command (const char *args,
2008 int from_tty, struct cmd_list_element *c)
2010 set_readline_history_size (history_size_setshow_var);
2013 bool info_verbose = false; /* Default verbose msgs off. */
2015 /* Called by do_set_command. An elaborate joke. */
2016 void
2017 set_verbose (const char *args, int from_tty, struct cmd_list_element *c)
2019 const char *cmdname = "verbose";
2020 struct cmd_list_element *showcmd;
2022 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, NULL, 1);
2023 gdb_assert (showcmd != NULL && showcmd != CMD_LIST_AMBIGUOUS);
2025 if (c->doc && c->doc_allocated)
2026 xfree ((char *) c->doc);
2027 if (showcmd->doc && showcmd->doc_allocated)
2028 xfree ((char *) showcmd->doc);
2029 if (info_verbose)
2031 c->doc = _("Set verbose printing of informational messages.");
2032 showcmd->doc = _("Show verbose printing of informational messages.");
2034 else
2036 c->doc = _("Set verbosity.");
2037 showcmd->doc = _("Show verbosity.");
2039 c->doc_allocated = 0;
2040 showcmd->doc_allocated = 0;
2043 /* Init the history buffer. Note that we are called after the init file(s)
2044 have been read so that the user can change the history file via his
2045 .gdbinit file (for instance). The GDBHISTFILE environment variable
2046 overrides all of this. */
2048 void
2049 init_history (void)
2051 const char *tmpenv;
2053 tmpenv = getenv ("GDBHISTSIZE");
2054 if (tmpenv)
2056 long var;
2057 int saved_errno;
2058 char *endptr;
2060 tmpenv = skip_spaces (tmpenv);
2061 errno = 0;
2062 var = strtol (tmpenv, &endptr, 10);
2063 saved_errno = errno;
2064 endptr = skip_spaces (endptr);
2066 /* If GDBHISTSIZE is non-numeric then ignore it. If GDBHISTSIZE is the
2067 empty string, a negative number or a huge positive number (larger than
2068 INT_MAX) then set the history size to unlimited. Otherwise set our
2069 history size to the number we have read. This behavior is consistent
2070 with how bash handles HISTSIZE. */
2071 if (*endptr != '\0')
2073 else if (*tmpenv == '\0'
2074 || var < 0
2075 || var > INT_MAX
2076 /* On targets where INT_MAX == LONG_MAX, we have to look at
2077 errno after calling strtol to distinguish between a value that
2078 is exactly INT_MAX and an overflowing value that was clamped
2079 to INT_MAX. */
2080 || (var == INT_MAX && saved_errno == ERANGE))
2081 history_size_setshow_var = -1;
2082 else
2083 history_size_setshow_var = var;
2086 /* If neither the init file nor GDBHISTSIZE has set a size yet, pick the
2087 default. */
2088 if (history_size_setshow_var == -2)
2089 history_size_setshow_var = 256;
2091 set_readline_history_size (history_size_setshow_var);
2093 if (!history_filename.empty ())
2094 read_history (history_filename.c_str ());
2097 static void
2098 show_prompt (struct ui_file *file, int from_tty,
2099 struct cmd_list_element *c, const char *value)
2101 gdb_printf (file, _("Gdb's prompt is \"%s\".\n"), value);
2104 /* "set editing" command. */
2106 static void
2107 set_editing (const char *args, int from_tty, struct cmd_list_element *c)
2109 change_line_handler (set_editing_cmd_var);
2110 /* Update the control variable so that MI's =cmd-param-changed event
2111 shows the correct value. */
2112 set_editing_cmd_var = current_ui->command_editing;
2115 static void
2116 show_editing (struct ui_file *file, int from_tty,
2117 struct cmd_list_element *c, const char *value)
2119 gdb_printf (file, _("Editing of command lines as "
2120 "they are typed is %s.\n"),
2121 current_ui->command_editing ? _("on") : _("off"));
2124 static void
2125 show_annotation_level (struct ui_file *file, int from_tty,
2126 struct cmd_list_element *c, const char *value)
2128 gdb_printf (file, _("Annotation_level is %s.\n"), value);
2131 static void
2132 show_exec_done_display_p (struct ui_file *file, int from_tty,
2133 struct cmd_list_element *c, const char *value)
2135 gdb_printf (file, _("Notification of completion for "
2136 "asynchronous execution commands is %s.\n"),
2137 value);
2140 /* New values of the "data-directory" parameter are staged here.
2141 Extension languages, for example Python's gdb.parameter API, will read
2142 the value directory from this variable, so we must ensure that this
2143 always contains the correct value. */
2144 static std::string staged_gdb_datadir;
2146 /* "set" command for the gdb_datadir configuration variable. */
2148 static void
2149 set_gdb_datadir (const char *args, int from_tty, struct cmd_list_element *c)
2151 set_gdb_data_directory (staged_gdb_datadir.c_str ());
2153 /* SET_GDB_DATA_DIRECTORY will resolve relative paths in
2154 STAGED_GDB_DATADIR, so we now copy the value from GDB_DATADIR
2155 back into STAGED_GDB_DATADIR so the extension languages can read the
2156 correct value. */
2157 staged_gdb_datadir = gdb_datadir;
2159 gdb::observers::gdb_datadir_changed.notify ();
2162 /* "show" command for the gdb_datadir configuration variable. */
2164 static void
2165 show_gdb_datadir (struct ui_file *file, int from_tty,
2166 struct cmd_list_element *c, const char *value)
2168 gdb_printf (file, _("GDB's data directory is \"%ps\".\n"),
2169 styled_string (file_name_style.style (),
2170 gdb_datadir.c_str ()));
2173 /* Implement 'set history filename'. */
2175 static void
2176 set_history_filename (const char *args,
2177 int from_tty, struct cmd_list_element *c)
2179 /* We include the current directory so that if the user changes
2180 directories the file written will be the same as the one
2181 that was read. */
2182 if (!history_filename.empty ()
2183 && !IS_ABSOLUTE_PATH (history_filename.c_str ()))
2184 history_filename = gdb_abspath (history_filename.c_str ());
2187 /* Whether we're in quiet startup mode. */
2189 static bool startup_quiet;
2191 /* See top.h. */
2193 bool
2194 check_quiet_mode ()
2196 return startup_quiet;
2199 /* Show whether GDB should start up in quiet mode. */
2201 static void
2202 show_startup_quiet (struct ui_file *file, int from_tty,
2203 struct cmd_list_element *c, const char *value)
2205 gdb_printf (file, _("Whether to start up quietly is %s.\n"),
2206 value);
2209 static void
2210 init_main (void)
2212 struct cmd_list_element *c;
2214 /* Initialize the prompt to a simple "(gdb) " prompt or to whatever
2215 the DEFAULT_PROMPT is. */
2216 set_prompt (DEFAULT_PROMPT);
2218 /* Set the important stuff up for command editing. */
2219 command_editing_p = 1;
2220 history_expansion_p = 0;
2221 write_history_p = 0;
2223 /* Setup important stuff for command line editing. */
2224 rl_completion_word_break_hook = gdb_completion_word_break_characters;
2225 rl_attempted_completion_function = gdb_rl_attempted_completion_function;
2226 set_rl_completer_word_break_characters (default_word_break_characters ());
2227 rl_completer_quote_characters = get_gdb_completer_quote_characters ();
2228 rl_completion_display_matches_hook = cli_display_match_list;
2229 rl_readline_name = "gdb";
2230 rl_terminal_name = getenv ("TERM");
2231 rl_deprep_term_function = gdb_rl_deprep_term_function;
2233 /* The name for this defun comes from Bash, where it originated.
2234 15 is Control-o, the same binding this function has in Bash. */
2235 rl_add_defun ("operate-and-get-next", gdb_rl_operate_and_get_next, 15);
2237 add_setshow_string_cmd ("prompt", class_support,
2238 &top_prompt,
2239 _("Set gdb's prompt."),
2240 _("Show gdb's prompt."),
2241 NULL, NULL,
2242 show_prompt,
2243 &setlist, &showlist);
2245 add_com ("dont-repeat", class_support, dont_repeat_command, _("\
2246 Don't repeat this command.\nPrimarily \
2247 used inside of user-defined commands that should not be repeated when\n\
2248 hitting return."));
2250 add_setshow_boolean_cmd ("editing", class_support,
2251 &set_editing_cmd_var, _("\
2252 Set editing of command lines as they are typed."), _("\
2253 Show editing of command lines as they are typed."), _("\
2254 Use \"on\" to enable the editing, and \"off\" to disable it.\n\
2255 Without an argument, command line editing is enabled. To edit, use\n\
2256 EMACS-like or VI-like commands like control-P or ESC."),
2257 set_editing,
2258 show_editing,
2259 &setlist, &showlist);
2261 add_setshow_boolean_cmd ("save", no_class, &write_history_p, _("\
2262 Set saving of the history record on exit."), _("\
2263 Show saving of the history record on exit."), _("\
2264 Use \"on\" to enable the saving, and \"off\" to disable it.\n\
2265 Without an argument, saving is enabled."),
2266 NULL,
2267 show_write_history_p,
2268 &sethistlist, &showhistlist);
2270 add_setshow_zuinteger_unlimited_cmd ("size", no_class,
2271 &history_size_setshow_var, _("\
2272 Set the size of the command history."), _("\
2273 Show the size of the command history."), _("\
2274 This is the number of previous commands to keep a record of.\n\
2275 If set to \"unlimited\", the number of commands kept in the history\n\
2276 list is unlimited. This defaults to the value of the environment\n\
2277 variable \"GDBHISTSIZE\", or to 256 if this variable is not set."),
2278 set_history_size_command,
2279 show_history_size,
2280 &sethistlist, &showhistlist);
2282 add_setshow_zuinteger_unlimited_cmd ("remove-duplicates", no_class,
2283 &history_remove_duplicates, _("\
2284 Set how far back in history to look for and remove duplicate entries."), _("\
2285 Show how far back in history to look for and remove duplicate entries."), _("\
2286 If set to a nonzero value N, GDB will look back at the last N history entries\n\
2287 and remove the first history entry that is a duplicate of the most recent\n\
2288 entry, each time a new history entry is added.\n\
2289 If set to \"unlimited\", this lookbehind is unbounded.\n\
2290 Only history entries added during this session are considered for removal.\n\
2291 If set to 0, removal of duplicate history entries is disabled.\n\
2292 By default this option is set to 0."),
2293 NULL,
2294 show_history_remove_duplicates,
2295 &sethistlist, &showhistlist);
2297 add_setshow_optional_filename_cmd ("filename", no_class, &history_filename, _("\
2298 Set the filename in which to record the command history."), _("\
2299 Show the filename in which to record the command history."), _("\
2300 (the list of previous commands of which a record is kept)."),
2301 set_history_filename,
2302 show_history_filename,
2303 &sethistlist, &showhistlist);
2305 add_setshow_boolean_cmd ("confirm", class_support, &confirm, _("\
2306 Set whether to confirm potentially dangerous operations."), _("\
2307 Show whether to confirm potentially dangerous operations."), NULL,
2308 NULL,
2309 show_confirm,
2310 &setlist, &showlist);
2312 add_setshow_zinteger_cmd ("annotate", class_obscure, &annotation_level, _("\
2313 Set annotation_level."), _("\
2314 Show annotation_level."), _("\
2315 0 == normal; 1 == fullname (for use when running under emacs)\n\
2316 2 == output annotated suitably for use by programs that control GDB."),
2317 NULL,
2318 show_annotation_level,
2319 &setlist, &showlist);
2321 add_setshow_boolean_cmd ("exec-done-display", class_support,
2322 &exec_done_display_p, _("\
2323 Set notification of completion for asynchronous execution commands."), _("\
2324 Show notification of completion for asynchronous execution commands."), _("\
2325 Use \"on\" to enable the notification, and \"off\" to disable it."),
2326 NULL,
2327 show_exec_done_display_p,
2328 &setlist, &showlist);
2330 add_setshow_filename_cmd ("data-directory", class_maintenance,
2331 &staged_gdb_datadir, _("Set GDB's data directory."),
2332 _("Show GDB's data directory."),
2333 _("\
2334 When set, GDB uses the specified path to search for data files."),
2335 set_gdb_datadir, show_gdb_datadir,
2336 &setlist,
2337 &showlist);
2338 /* Prime the initial value for data-directory. */
2339 staged_gdb_datadir = gdb_datadir;
2341 add_setshow_auto_boolean_cmd ("interactive-mode", class_support,
2342 &interactive_mode, _("\
2343 Set whether GDB's standard input is a terminal."), _("\
2344 Show whether GDB's standard input is a terminal."), _("\
2345 If on, GDB assumes that standard input is a terminal. In practice, it\n\
2346 means that GDB should wait for the user to answer queries associated to\n\
2347 commands entered at the command prompt. If off, GDB assumes that standard\n\
2348 input is not a terminal, and uses the default answer to all queries.\n\
2349 If auto (the default), determine which mode to use based on the standard\n\
2350 input settings."),
2351 NULL,
2352 show_interactive_mode,
2353 &setlist, &showlist);
2355 add_setshow_boolean_cmd ("startup-quietly", class_support,
2356 &startup_quiet, _("\
2357 Set whether GDB should start up quietly."), _(" \
2358 Show whether GDB should start up quietly."), _("\
2359 This setting will not affect the current session. Instead this command\n\
2360 should be added to the .gdbearlyinit file in the users home directory to\n\
2361 affect future GDB sessions."),
2362 NULL,
2363 show_startup_quiet,
2364 &setlist, &showlist);
2366 c = add_cmd ("new-ui", class_support, new_ui_command, _("\
2367 Create a new UI.\n\
2368 Usage: new-ui INTERPRETER TTY\n\
2369 The first argument is the name of the interpreter to run.\n\
2370 The second argument is the terminal the UI runs on."), &cmdlist);
2371 set_cmd_completer (c, interpreter_completer);
2373 struct internalvar *major_version_var = create_internalvar ("_gdb_major");
2374 struct internalvar *minor_version_var = create_internalvar ("_gdb_minor");
2375 int vmajor = 0, vminor = 0, vrevision = 0;
2376 sscanf (version, "%d.%d.%d", &vmajor, &vminor, &vrevision);
2377 set_internalvar_integer (major_version_var, vmajor);
2378 set_internalvar_integer (minor_version_var, vminor + (vrevision > 0));
2381 /* See top.h. */
2383 void
2384 gdb_init ()
2386 saved_command_line = xstrdup ("");
2387 previous_saved_command_line = xstrdup ("");
2389 /* Run the init function of each source file. */
2391 #ifdef __MSDOS__
2392 /* Make sure we return to the original directory upon exit, come
2393 what may, since the OS doesn't do that for us. */
2394 make_final_cleanup (do_chdir_cleanup, xstrdup (current_directory));
2395 #endif
2397 init_page_info ();
2399 /* Here is where we call all the _initialize_foo routines. */
2400 initialize_all_files ();
2402 /* This creates the current_program_space. Do this after all the
2403 _initialize_foo routines have had a chance to install their
2404 per-sspace data keys. Also do this before
2405 initialize_current_architecture is called, because it accesses
2406 exec_bfd of the current program space. */
2407 initialize_progspace ();
2408 initialize_inferiors ();
2409 initialize_current_architecture ();
2410 init_main (); /* But that omits this file! Do it now. */
2412 initialize_stdin_serial ();
2414 /* Take a snapshot of our tty state before readline/ncurses have had a chance
2415 to alter it. */
2416 set_initial_gdb_ttystate ();
2418 gdb_init_signals ();
2420 /* We need a default language for parsing expressions, so simple
2421 things like "set width 0" won't fail if no language is explicitly
2422 set in a config file or implicitly set by reading an executable
2423 during startup. */
2424 set_language (language_c);
2425 expected_language = current_language; /* Don't warn about the change. */
2428 void _initialize_top ();
2429 void
2430 _initialize_top ()
2432 /* Determine a default value for the history filename. */
2433 const char *tmpenv = getenv ("GDBHISTFILE");
2434 if (tmpenv != nullptr)
2435 history_filename = tmpenv;
2436 else
2438 /* We include the current directory so that if the user changes
2439 directories the file written will be the same as the one
2440 that was read. */
2441 #ifdef __MSDOS__
2442 /* No leading dots in file names are allowed on MSDOS. */
2443 const char *fname = "_gdb_history";
2444 #else
2445 const char *fname = ".gdb_history";
2446 #endif
2448 history_filename = gdb_abspath (fname);