Add previous_saved_command_line to allow a command to repeat a previous command.
[deliverable/binutils-gdb.git] / gdb / top.c
1 /* Top level stuff for GDB, the GNU debugger.
2
3 Copyright (C) 1986-2019 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
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 "common/job-control.h"
39 #include "annotate.h"
40 #include "completer.h"
41 #include "top.h"
42 #include "common/version.h"
43 #include "serial.h"
44 #include "main.h"
45 #include "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 "common/buffer.h"
54 #include "gdb_select.h"
55 #include "common/scope-exit.h"
56
57 /* readline include files. */
58 #include "readline/readline.h"
59 #include "readline/history.h"
60
61 /* readline defines this. */
62 #undef savestring
63
64 #include <sys/types.h>
65
66 #include "event-top.h"
67 #include <sys/stat.h>
68 #include <ctype.h>
69 #include "ui-out.h"
70 #include "cli-out.h"
71 #include "tracepoint.h"
72 #include "inf-loop.h"
73
74 #if defined(TUI)
75 # include "tui/tui.h"
76 #endif
77
78 #ifndef O_NOCTTY
79 # define O_NOCTTY 0
80 #endif
81
82 extern void initialize_all_files (void);
83
84 #define PROMPT(X) the_prompts.prompt_stack[the_prompts.top + X].prompt
85 #define PREFIX(X) the_prompts.prompt_stack[the_prompts.top + X].prefix
86 #define SUFFIX(X) the_prompts.prompt_stack[the_prompts.top + X].suffix
87
88 /* Default command line prompt. This is overriden in some configs. */
89
90 #ifndef DEFAULT_PROMPT
91 #define DEFAULT_PROMPT "(gdb) "
92 #endif
93
94 /* Generate a function that exports a pointer to a field of the
95 current UI. */
96
97 #define gen_ret_current_ui_field_ptr(type, name) \
98 type * \
99 current_ui_## name ## _ptr (void) \
100 { \
101 return &current_ui->m_ ## name; \
102 }
103
104 gen_ret_current_ui_field_ptr (struct ui_file *, gdb_stdout)
105 gen_ret_current_ui_field_ptr (struct ui_file *, gdb_stdin)
106 gen_ret_current_ui_field_ptr (struct ui_file *, gdb_stderr)
107 gen_ret_current_ui_field_ptr (struct ui_file *, gdb_stdlog)
108 gen_ret_current_ui_field_ptr (struct ui_out *, current_uiout)
109
110 /* Initialization file name for gdb. This is host-dependent. */
111
112 const char gdbinit[] = GDBINIT;
113
114 int inhibit_gdbinit = 0;
115
116 extern char lang_frame_mismatch_warn[]; /* language.c */
117
118 /* Flag for whether we want to confirm potentially dangerous
119 operations. Default is yes. */
120
121 int confirm = 1;
122
123 static void
124 show_confirm (struct ui_file *file, int from_tty,
125 struct cmd_list_element *c, const char *value)
126 {
127 fprintf_filtered (file, _("Whether to confirm potentially "
128 "dangerous operations is %s.\n"),
129 value);
130 }
131
132 /* Current working directory. */
133
134 char *current_directory;
135
136 /* The last command line executed on the console. Used for command
137 repetitions when the user enters an empty line. */
138
139 static char *saved_command_line;
140
141 /* If not NULL, the arguments that should be passed if
142 saved_command_line is repeated. */
143
144 static const char *repeat_arguments;
145
146 /* The previous last command line executed on the console. Used for command
147 repetitions when a command wants to relaunch the previously launched
148 command. We need this as when a command is running, saved_command_line
149 already contains the line of the currently executing command. */
150
151 char *previous_saved_command_line;
152
153 /* If not NULL, the arguments that should be passed if the
154 previous_saved_command_line is repeated. */
155
156 static const char *previous_repeat_arguments;
157
158 /* Nonzero if the current command is modified by "server ". This
159 affects things like recording into the command history, commands
160 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
161 whatever) can issue its own commands and also send along commands
162 from the user, and have the user not notice that the user interface
163 is issuing commands too. */
164 int server_command;
165
166 /* Timeout limit for response from target. */
167
168 /* The default value has been changed many times over the years. It
169 was originally 5 seconds. But that was thought to be a long time
170 to sit and wait, so it was changed to 2 seconds. That was thought
171 to be plenty unless the connection was going through some terminal
172 server or multiplexer or other form of hairy serial connection.
173
174 In mid-1996, remote_timeout was moved from remote.c to top.c and
175 it began being used in other remote-* targets. It appears that the
176 default was changed to 20 seconds at that time, perhaps because the
177 Renesas E7000 ICE didn't always respond in a timely manner.
178
179 But if 5 seconds is a long time to sit and wait for retransmissions,
180 20 seconds is far worse. This demonstrates the difficulty of using
181 a single variable for all protocol timeouts.
182
183 As remote.c is used much more than remote-e7000.c, it was changed
184 back to 2 seconds in 1999. */
185
186 int remote_timeout = 2;
187
188 /* Non-zero tells remote* modules to output debugging info. */
189
190 int remote_debug = 0;
191
192 /* Sbrk location on entry to main. Used for statistics only. */
193 #ifdef HAVE_USEFUL_SBRK
194 char *lim_at_start;
195 #endif
196
197 /* Hooks for alternate command interfaces. */
198
199 /* This hook is called from within gdb's many mini-event loops which
200 could steal control from a real user interface's event loop. It
201 returns non-zero if the user is requesting a detach, zero
202 otherwise. */
203
204 int (*deprecated_ui_loop_hook) (int);
205
206
207 /* Called from print_frame_info to list the line we stopped in. */
208
209 void (*deprecated_print_frame_info_listing_hook) (struct symtab * s,
210 int line,
211 int stopline,
212 int noerror);
213 /* Replaces most of query. */
214
215 int (*deprecated_query_hook) (const char *, va_list);
216
217 /* Replaces most of warning. */
218
219 void (*deprecated_warning_hook) (const char *, va_list);
220
221 /* These three functions support getting lines of text from the user.
222 They are used in sequence. First deprecated_readline_begin_hook is
223 called with a text string that might be (for example) a message for
224 the user to type in a sequence of commands to be executed at a
225 breakpoint. If this function calls back to a GUI, it might take
226 this opportunity to pop up a text interaction window with this
227 message. Next, deprecated_readline_hook is called with a prompt
228 that is emitted prior to collecting the user input. It can be
229 called multiple times. Finally, deprecated_readline_end_hook is
230 called to notify the GUI that we are done with the interaction
231 window and it can close it. */
232
233 void (*deprecated_readline_begin_hook) (const char *, ...);
234 char *(*deprecated_readline_hook) (const char *);
235 void (*deprecated_readline_end_hook) (void);
236
237 /* Called as appropriate to notify the interface that we have attached
238 to or detached from an already running process. */
239
240 void (*deprecated_attach_hook) (void);
241 void (*deprecated_detach_hook) (void);
242
243 /* Called during long calculations to allow GUI to repair window
244 damage, and to check for stop buttons, etc... */
245
246 void (*deprecated_interactive_hook) (void);
247
248 /* Called when going to wait for the target. Usually allows the GUI
249 to run while waiting for target events. */
250
251 ptid_t (*deprecated_target_wait_hook) (ptid_t ptid,
252 struct target_waitstatus *status,
253 int options);
254
255 /* Used by UI as a wrapper around command execution. May do various
256 things like enabling/disabling buttons, etc... */
257
258 void (*deprecated_call_command_hook) (struct cmd_list_element * c,
259 const char *cmd, int from_tty);
260
261 /* Called when the current thread changes. Argument is thread id. */
262
263 void (*deprecated_context_hook) (int id);
264
265 /* The highest UI number ever assigned. */
266 static int highest_ui_num;
267
268 /* See top.h. */
269
270 ui::ui (FILE *instream_, FILE *outstream_, FILE *errstream_)
271 : next (nullptr),
272 num (++highest_ui_num),
273 call_readline (nullptr),
274 input_handler (nullptr),
275 command_editing (0),
276 interp_info (nullptr),
277 async (0),
278 secondary_prompt_depth (0),
279 stdin_stream (instream_),
280 instream (instream_),
281 outstream (outstream_),
282 errstream (errstream_),
283 input_fd (fileno (instream)),
284 input_interactive_p (ISATTY (instream)),
285 prompt_state (PROMPT_NEEDED),
286 m_gdb_stdout (new stdio_file (outstream)),
287 m_gdb_stdin (new stdio_file (instream)),
288 m_gdb_stderr (new stderr_file (errstream)),
289 m_gdb_stdlog (m_gdb_stderr),
290 m_current_uiout (nullptr)
291 {
292 buffer_init (&line_buffer);
293
294 if (ui_list == NULL)
295 ui_list = this;
296 else
297 {
298 struct ui *last;
299
300 for (last = ui_list; last->next != NULL; last = last->next)
301 ;
302 last->next = this;
303 }
304 }
305
306 ui::~ui ()
307 {
308 struct ui *ui, *uiprev;
309
310 uiprev = NULL;
311
312 for (ui = ui_list; ui != NULL; uiprev = ui, ui = ui->next)
313 if (ui == this)
314 break;
315
316 gdb_assert (ui != NULL);
317
318 if (uiprev != NULL)
319 uiprev->next = next;
320 else
321 ui_list = next;
322
323 delete m_gdb_stdin;
324 delete m_gdb_stdout;
325 delete m_gdb_stderr;
326 }
327
328 /* Open file named NAME for read/write, making sure not to make it the
329 controlling terminal. */
330
331 static gdb_file_up
332 open_terminal_stream (const char *name)
333 {
334 int fd;
335
336 fd = gdb_open_cloexec (name, O_RDWR | O_NOCTTY, 0);
337 if (fd < 0)
338 perror_with_name (_("opening terminal failed"));
339
340 return gdb_file_up (fdopen (fd, "w+"));
341 }
342
343 /* Implementation of the "new-ui" command. */
344
345 static void
346 new_ui_command (const char *args, int from_tty)
347 {
348 gdb_file_up stream[3];
349 int i;
350 int argc;
351 const char *interpreter_name;
352 const char *tty_name;
353
354 dont_repeat ();
355
356 gdb_argv argv (args);
357 argc = argv.count ();
358
359 if (argc < 2)
360 error (_("Usage: new-ui INTERPRETER TTY"));
361
362 interpreter_name = argv[0];
363 tty_name = argv[1];
364
365 {
366 scoped_restore save_ui = make_scoped_restore (&current_ui);
367
368 /* Open specified terminal, once for each of
369 stdin/stdout/stderr. */
370 for (i = 0; i < 3; i++)
371 stream[i] = open_terminal_stream (tty_name);
372
373 std::unique_ptr<ui> ui
374 (new struct ui (stream[0].get (), stream[1].get (), stream[2].get ()));
375
376 ui->async = 1;
377
378 current_ui = ui.get ();
379
380 set_top_level_interpreter (interpreter_name);
381
382 interp_pre_command_loop (top_level_interpreter ());
383
384 /* Make sure the files are not closed. */
385 stream[0].release ();
386 stream[1].release ();
387 stream[2].release ();
388
389 ui.release ();
390 }
391
392 printf_unfiltered ("New UI allocated\n");
393 }
394
395 /* Handler for SIGHUP. */
396
397 #ifdef SIGHUP
398 /* NOTE 1999-04-29: This function will be static again, once we modify
399 gdb to use the event loop as the default command loop and we merge
400 event-top.c into this file, top.c. */
401 /* static */ void
402 quit_cover (void)
403 {
404 /* Stop asking user for confirmation --- we're exiting. This
405 prevents asking the user dumb questions. */
406 confirm = 0;
407 quit_command ((char *) 0, 0);
408 }
409 #endif /* defined SIGHUP */
410 \f
411 /* Line number we are currently in, in a file which is being sourced. */
412 /* NOTE 1999-04-29: This variable will be static again, once we modify
413 gdb to use the event loop as the default command loop and we merge
414 event-top.c into this file, top.c. */
415 /* static */ int source_line_number;
416
417 /* Name of the file we are sourcing. */
418 /* NOTE 1999-04-29: This variable will be static again, once we modify
419 gdb to use the event loop as the default command loop and we merge
420 event-top.c into this file, top.c. */
421 /* static */ std::string source_file_name;
422
423 /* Read commands from STREAM. */
424 void
425 read_command_file (FILE *stream)
426 {
427 struct ui *ui = current_ui;
428
429 scoped_restore save_instream
430 = make_scoped_restore (&ui->instream, stream);
431
432 /* Read commands from `instream' and execute them until end of file
433 or error reading instream. */
434
435 while (ui->instream != NULL && !feof (ui->instream))
436 {
437 char *command;
438
439 /* Get a command-line. This calls the readline package. */
440 command = command_line_input (NULL, NULL);
441 if (command == NULL)
442 break;
443 command_handler (command);
444 }
445 }
446 \f
447 void (*pre_init_ui_hook) (void);
448
449 #ifdef __MSDOS__
450 static void
451 do_chdir_cleanup (void *old_dir)
452 {
453 chdir ((const char *) old_dir);
454 xfree (old_dir);
455 }
456 #endif
457
458 scoped_value_mark
459 prepare_execute_command ()
460 {
461 /* With multiple threads running while the one we're examining is
462 stopped, the dcache can get stale without us being able to detect
463 it. For the duration of the command, though, use the dcache to
464 help things like backtrace. */
465 if (non_stop)
466 target_dcache_invalidate ();
467
468 return scoped_value_mark ();
469 }
470
471 /* Tell the user if the language has changed (except first time) after
472 executing a command. */
473
474 void
475 check_frame_language_change (void)
476 {
477 static int warned = 0;
478 struct frame_info *frame;
479
480 /* First make sure that a new frame has been selected, in case the
481 command or the hooks changed the program state. */
482 frame = deprecated_safe_get_selected_frame ();
483 if (current_language != expected_language)
484 {
485 if (language_mode == language_mode_auto && info_verbose)
486 {
487 language_info (1); /* Print what changed. */
488 }
489 warned = 0;
490 }
491
492 /* Warn the user if the working language does not match the language
493 of the current frame. Only warn the user if we are actually
494 running the program, i.e. there is a stack. */
495 /* FIXME: This should be cacheing the frame and only running when
496 the frame changes. */
497
498 if (has_stack_frames ())
499 {
500 enum language flang;
501
502 flang = get_frame_language (frame);
503 if (!warned
504 && flang != language_unknown
505 && flang != current_language->la_language)
506 {
507 printf_filtered ("%s\n", lang_frame_mismatch_warn);
508 warned = 1;
509 }
510 }
511 }
512
513 /* See top.h. */
514
515 void
516 wait_sync_command_done (void)
517 {
518 /* Processing events may change the current UI. */
519 scoped_restore save_ui = make_scoped_restore (&current_ui);
520 struct ui *ui = current_ui;
521
522 while (gdb_do_one_event () >= 0)
523 if (ui->prompt_state != PROMPT_BLOCKED)
524 break;
525 }
526
527 /* See top.h. */
528
529 void
530 maybe_wait_sync_command_done (int was_sync)
531 {
532 /* If the interpreter is in sync mode (we're running a user
533 command's list, running command hooks or similars), and we
534 just ran a synchronous command that started the target, wait
535 for that command to end. */
536 if (!current_ui->async
537 && !was_sync
538 && current_ui->prompt_state == PROMPT_BLOCKED)
539 wait_sync_command_done ();
540 }
541
542 /* See command.h. */
543
544 void
545 set_repeat_arguments (const char *args)
546 {
547 repeat_arguments = args;
548 }
549
550 /* Execute the line P as a command, in the current user context.
551 Pass FROM_TTY as second argument to the defining function. */
552
553 void
554 execute_command (const char *p, int from_tty)
555 {
556 struct cmd_list_element *c;
557 const char *line;
558 const char *cmd_start = p;
559
560 auto cleanup_if_error = make_scope_exit (bpstat_clear_actions);
561 scoped_value_mark cleanup = prepare_execute_command ();
562
563 /* Force cleanup of any alloca areas if using C alloca instead of
564 a builtin alloca. */
565 alloca (0);
566
567 /* This can happen when command_line_input hits end of file. */
568 if (p == NULL)
569 {
570 cleanup_if_error.release ();
571 return;
572 }
573
574 target_log_command (p);
575
576 while (*p == ' ' || *p == '\t')
577 p++;
578 if (*p)
579 {
580 const char *cmd = p;
581 const char *arg;
582 int was_sync = current_ui->prompt_state == PROMPT_BLOCKED;
583
584 line = p;
585
586 /* If trace-commands is set then this will print this command. */
587 print_command_trace ("%s", p);
588
589 c = lookup_cmd (&cmd, cmdlist, "", 0, 1);
590 p = cmd;
591
592 scoped_restore save_repeat_args
593 = make_scoped_restore (&repeat_arguments, nullptr);
594 const char *args_pointer = p;
595
596 /* Pass null arg rather than an empty one. */
597 arg = *p ? p : 0;
598
599 /* FIXME: cagney/2002-02-02: The c->type test is pretty dodgy
600 while the is_complete_command(cfunc) test is just plain
601 bogus. They should both be replaced by a test of the form
602 c->strip_trailing_white_space_p. */
603 /* NOTE: cagney/2002-02-02: The function.cfunc in the below
604 can't be replaced with func. This is because it is the
605 cfunc, and not the func, that has the value that the
606 is_complete_command hack is testing for. */
607 /* Clear off trailing whitespace, except for set and complete
608 command. */
609 std::string without_whitespace;
610 if (arg
611 && c->type != set_cmd
612 && !is_complete_command (c))
613 {
614 const char *old_end = arg + strlen (arg) - 1;
615 p = old_end;
616 while (p >= arg && (*p == ' ' || *p == '\t'))
617 p--;
618 if (p != old_end)
619 {
620 without_whitespace = std::string (arg, p + 1);
621 arg = without_whitespace.c_str ();
622 }
623 }
624
625 /* If this command has been pre-hooked, run the hook first. */
626 execute_cmd_pre_hook (c);
627
628 if (c->deprecated_warn_user)
629 deprecated_cmd_warning (line);
630
631 /* c->user_commands would be NULL in the case of a python command. */
632 if (c->theclass == class_user && c->user_commands)
633 execute_user_command (c, arg);
634 else if (c->type == set_cmd)
635 do_set_command (arg, from_tty, c);
636 else if (c->type == show_cmd)
637 do_show_command (arg, from_tty, c);
638 else if (!cmd_func_p (c))
639 error (_("That is not a command, just a help topic."));
640 else if (deprecated_call_command_hook)
641 deprecated_call_command_hook (c, arg, from_tty);
642 else
643 cmd_func (c, arg, from_tty);
644
645 maybe_wait_sync_command_done (was_sync);
646
647 /* If this command has been post-hooked, run the hook last. */
648 execute_cmd_post_hook (c);
649
650 if (repeat_arguments != NULL && cmd_start == saved_command_line)
651 {
652 gdb_assert (strlen (args_pointer) >= strlen (repeat_arguments));
653 strcpy (saved_command_line + (args_pointer - cmd_start),
654 repeat_arguments);
655 }
656 }
657
658 /* Only perform the frame-language-change check if the command
659 we just finished executing did not resume the inferior's execution.
660 If it did resume the inferior, we will do that check after
661 the inferior stopped. */
662 if (has_stack_frames () && inferior_thread ()->state != THREAD_RUNNING)
663 check_frame_language_change ();
664
665 cleanup_if_error.release ();
666 }
667
668 /* Run execute_command for P and FROM_TTY. Capture its output into the
669 returned string, do not display it to the screen. BATCH_FLAG will be
670 temporarily set to true. */
671
672 std::string
673 execute_command_to_string (const char *p, int from_tty,
674 bool term_out)
675 {
676 /* GDB_STDOUT should be better already restored during these
677 restoration callbacks. */
678 set_batch_flag_and_restore_page_info save_page_info;
679
680 scoped_restore save_async = make_scoped_restore (&current_ui->async, 0);
681
682 string_file str_file (term_out);
683
684 {
685 current_uiout->redirect (&str_file);
686 ui_out_redirect_pop redirect_popper (current_uiout);
687
688 scoped_restore save_stdout
689 = make_scoped_restore (&gdb_stdout, &str_file);
690 scoped_restore save_stderr
691 = make_scoped_restore (&gdb_stderr, &str_file);
692 scoped_restore save_stdlog
693 = make_scoped_restore (&gdb_stdlog, &str_file);
694 scoped_restore save_stdtarg
695 = make_scoped_restore (&gdb_stdtarg, &str_file);
696 scoped_restore save_stdtargerr
697 = make_scoped_restore (&gdb_stdtargerr, &str_file);
698
699 execute_command (p, from_tty);
700 }
701
702 return std::move (str_file.string ());
703 }
704
705 \f
706 /* When nonzero, cause dont_repeat to do nothing. This should only be
707 set via prevent_dont_repeat. */
708
709 static int suppress_dont_repeat = 0;
710
711 /* See command.h */
712
713 void
714 dont_repeat (void)
715 {
716 struct ui *ui = current_ui;
717
718 if (suppress_dont_repeat || server_command)
719 return;
720
721 /* If we aren't reading from standard input, we are saving the last
722 thing read from stdin in line and don't want to delete it. Null
723 lines won't repeat here in any case. */
724 if (ui->instream == ui->stdin_stream)
725 {
726 *saved_command_line = 0;
727 repeat_arguments = NULL;
728 }
729 }
730
731 /* See command.h */
732
733 void
734 repeat_previous ()
735 {
736 /* Do not repeat this command, as this command is a repeating command. */
737 dont_repeat ();
738
739 /* We cannot free saved_command_line, as this line is being executed,
740 so swap it with previous_saved_command_line. */
741 std::swap (previous_saved_command_line, saved_command_line);
742 std::swap (previous_repeat_arguments, repeat_arguments);
743 }
744
745 /* See command.h. */
746
747 scoped_restore_tmpl<int>
748 prevent_dont_repeat (void)
749 {
750 return make_scoped_restore (&suppress_dont_repeat, 1);
751 }
752
753 /* See command.h. */
754
755 char *
756 get_saved_command_line ()
757 {
758 return saved_command_line;
759 }
760
761 /* See command.h. */
762
763 void
764 save_command_line (const char *cmd)
765 {
766 xfree (previous_saved_command_line);
767 previous_saved_command_line = saved_command_line;
768 previous_repeat_arguments = repeat_arguments;
769 saved_command_line = xstrdup (cmd);
770 repeat_arguments = NULL;
771 }
772
773 \f
774 /* Read a line from the stream "instream" without command line editing.
775
776 It prints PROMPT once at the start.
777 Action is compatible with "readline", e.g. space for the result is
778 malloc'd and should be freed by the caller.
779
780 A NULL return means end of file. */
781
782 static char *
783 gdb_readline_no_editing (const char *prompt)
784 {
785 struct buffer line_buffer;
786 struct ui *ui = current_ui;
787 /* Read from stdin if we are executing a user defined command. This
788 is the right thing for prompt_for_continue, at least. */
789 FILE *stream = ui->instream != NULL ? ui->instream : stdin;
790 int fd = fileno (stream);
791
792 buffer_init (&line_buffer);
793
794 if (prompt != NULL)
795 {
796 /* Don't use a _filtered function here. It causes the assumed
797 character position to be off, since the newline we read from
798 the user is not accounted for. */
799 fputs_unfiltered (prompt, gdb_stdout);
800 gdb_flush (gdb_stdout);
801 }
802
803 while (1)
804 {
805 int c;
806 fd_set readfds;
807
808 QUIT;
809
810 /* Wait until at least one byte of data is available. Control-C
811 can interrupt interruptible_select, but not fgetc. */
812 FD_ZERO (&readfds);
813 FD_SET (fd, &readfds);
814 if (interruptible_select (fd + 1, &readfds, NULL, NULL, NULL) == -1)
815 {
816 if (errno == EINTR)
817 {
818 /* If this was ctrl-c, the QUIT above handles it. */
819 continue;
820 }
821 perror_with_name (("select"));
822 }
823
824 c = fgetc (stream);
825
826 if (c == EOF)
827 {
828 if (line_buffer.used_size > 0)
829 /* The last line does not end with a newline. Return it, and
830 if we are called again fgetc will still return EOF and
831 we'll return NULL then. */
832 break;
833 xfree (buffer_finish (&line_buffer));
834 return NULL;
835 }
836
837 if (c == '\n')
838 {
839 if (line_buffer.used_size > 0
840 && line_buffer.buffer[line_buffer.used_size - 1] == '\r')
841 line_buffer.used_size--;
842 break;
843 }
844
845 buffer_grow_char (&line_buffer, c);
846 }
847
848 buffer_grow_char (&line_buffer, '\0');
849 return buffer_finish (&line_buffer);
850 }
851
852 /* Variables which control command line editing and history
853 substitution. These variables are given default values at the end
854 of this file. */
855 static int command_editing_p;
856
857 /* NOTE 1999-04-29: This variable will be static again, once we modify
858 gdb to use the event loop as the default command loop and we merge
859 event-top.c into this file, top.c. */
860
861 /* static */ int history_expansion_p;
862
863 static int write_history_p;
864 static void
865 show_write_history_p (struct ui_file *file, int from_tty,
866 struct cmd_list_element *c, const char *value)
867 {
868 fprintf_filtered (file, _("Saving of the history record on exit is %s.\n"),
869 value);
870 }
871
872 /* The variable associated with the "set/show history size"
873 command. The value -1 means unlimited, and -2 means undefined. */
874 static int history_size_setshow_var = -2;
875
876 static void
877 show_history_size (struct ui_file *file, int from_tty,
878 struct cmd_list_element *c, const char *value)
879 {
880 fprintf_filtered (file, _("The size of the command history is %s.\n"),
881 value);
882 }
883
884 /* Variable associated with the "history remove-duplicates" option.
885 The value -1 means unlimited. */
886 static int history_remove_duplicates = 0;
887
888 static void
889 show_history_remove_duplicates (struct ui_file *file, int from_tty,
890 struct cmd_list_element *c, const char *value)
891 {
892 fprintf_filtered (file,
893 _("The number of history entries to look back at for "
894 "duplicates is %s.\n"),
895 value);
896 }
897
898 static char *history_filename;
899 static void
900 show_history_filename (struct ui_file *file, int from_tty,
901 struct cmd_list_element *c, const char *value)
902 {
903 fprintf_filtered (file, _("The filename in which to record "
904 "the command history is \"%s\".\n"),
905 value);
906 }
907
908 /* This is like readline(), but it has some gdb-specific behavior.
909 gdb may want readline in both the synchronous and async modes during
910 a single gdb invocation. At the ordinary top-level prompt we might
911 be using the async readline. That means we can't use
912 rl_pre_input_hook, since it doesn't work properly in async mode.
913 However, for a secondary prompt (" >", such as occurs during a
914 `define'), gdb wants a synchronous response.
915
916 We used to call readline() directly, running it in synchronous
917 mode. But mixing modes this way is not supported, and as of
918 readline 5.x it no longer works; the arrow keys come unbound during
919 the synchronous call. So we make a nested call into the event
920 loop. That's what gdb_readline_wrapper is for. */
921
922 /* A flag set as soon as gdb_readline_wrapper_line is called; we can't
923 rely on gdb_readline_wrapper_result, which might still be NULL if
924 the user types Control-D for EOF. */
925 static int gdb_readline_wrapper_done;
926
927 /* The result of the current call to gdb_readline_wrapper, once a newline
928 is seen. */
929 static char *gdb_readline_wrapper_result;
930
931 /* Any intercepted hook. Operate-and-get-next sets this, expecting it
932 to be called after the newline is processed (which will redisplay
933 the prompt). But in gdb_readline_wrapper we will not get a new
934 prompt until the next call, or until we return to the event loop.
935 So we disable this hook around the newline and restore it before we
936 return. */
937 static void (*saved_after_char_processing_hook) (void);
938
939
940 /* See top.h. */
941
942 int
943 gdb_in_secondary_prompt_p (struct ui *ui)
944 {
945 return ui->secondary_prompt_depth > 0;
946 }
947
948
949 /* This function is called when readline has seen a complete line of
950 text. */
951
952 static void
953 gdb_readline_wrapper_line (gdb::unique_xmalloc_ptr<char> &&line)
954 {
955 gdb_assert (!gdb_readline_wrapper_done);
956 gdb_readline_wrapper_result = line.release ();
957 gdb_readline_wrapper_done = 1;
958
959 /* Prevent operate-and-get-next from acting too early. */
960 saved_after_char_processing_hook = after_char_processing_hook;
961 after_char_processing_hook = NULL;
962
963 /* Prevent parts of the prompt from being redisplayed if annotations
964 are enabled, and readline's state getting out of sync. We'll
965 reinstall the callback handler, which puts the terminal in raw
966 mode (or in readline lingo, in prepped state), when we're next
967 ready to process user input, either in display_gdb_prompt, or if
968 we're handling an asynchronous target event and running in the
969 background, just before returning to the event loop to process
970 further input (or more target events). */
971 if (current_ui->command_editing)
972 gdb_rl_callback_handler_remove ();
973 }
974
975 class gdb_readline_wrapper_cleanup
976 {
977 public:
978 gdb_readline_wrapper_cleanup ()
979 : m_handler_orig (current_ui->input_handler),
980 m_already_prompted_orig (current_ui->command_editing
981 ? rl_already_prompted : 0),
982 m_target_is_async_orig (target_is_async_p ()),
983 m_save_ui (&current_ui)
984 {
985 current_ui->input_handler = gdb_readline_wrapper_line;
986 current_ui->secondary_prompt_depth++;
987
988 if (m_target_is_async_orig)
989 target_async (0);
990 }
991
992 ~gdb_readline_wrapper_cleanup ()
993 {
994 struct ui *ui = current_ui;
995
996 if (ui->command_editing)
997 rl_already_prompted = m_already_prompted_orig;
998
999 gdb_assert (ui->input_handler == gdb_readline_wrapper_line);
1000 ui->input_handler = m_handler_orig;
1001
1002 /* Don't restore our input handler in readline yet. That would make
1003 readline prep the terminal (putting it in raw mode), while the
1004 line we just read may trigger execution of a command that expects
1005 the terminal in the default cooked/canonical mode, such as e.g.,
1006 running Python's interactive online help utility. See
1007 gdb_readline_wrapper_line for when we'll reinstall it. */
1008
1009 gdb_readline_wrapper_result = NULL;
1010 gdb_readline_wrapper_done = 0;
1011 ui->secondary_prompt_depth--;
1012 gdb_assert (ui->secondary_prompt_depth >= 0);
1013
1014 after_char_processing_hook = saved_after_char_processing_hook;
1015 saved_after_char_processing_hook = NULL;
1016
1017 if (m_target_is_async_orig)
1018 target_async (1);
1019 }
1020
1021 DISABLE_COPY_AND_ASSIGN (gdb_readline_wrapper_cleanup);
1022
1023 private:
1024
1025 void (*m_handler_orig) (gdb::unique_xmalloc_ptr<char> &&);
1026 int m_already_prompted_orig;
1027
1028 /* Whether the target was async. */
1029 int m_target_is_async_orig;
1030
1031 /* Processing events may change the current UI. */
1032 scoped_restore_tmpl<struct ui *> m_save_ui;
1033 };
1034
1035 char *
1036 gdb_readline_wrapper (const char *prompt)
1037 {
1038 struct ui *ui = current_ui;
1039
1040 gdb_readline_wrapper_cleanup cleanup;
1041
1042 /* Display our prompt and prevent double prompt display. Don't pass
1043 down a NULL prompt, since that has special meaning for
1044 display_gdb_prompt -- it indicates a request to print the primary
1045 prompt, while we want a secondary prompt here. */
1046 display_gdb_prompt (prompt != NULL ? prompt : "");
1047 if (ui->command_editing)
1048 rl_already_prompted = 1;
1049
1050 if (after_char_processing_hook)
1051 (*after_char_processing_hook) ();
1052 gdb_assert (after_char_processing_hook == NULL);
1053
1054 while (gdb_do_one_event () >= 0)
1055 if (gdb_readline_wrapper_done)
1056 break;
1057
1058 return gdb_readline_wrapper_result;
1059 }
1060
1061 \f
1062 /* The current saved history number from operate-and-get-next.
1063 This is -1 if not valid. */
1064 static int operate_saved_history = -1;
1065
1066 /* This is put on the appropriate hook and helps operate-and-get-next
1067 do its work. */
1068 static void
1069 gdb_rl_operate_and_get_next_completion (void)
1070 {
1071 int delta = where_history () - operate_saved_history;
1072
1073 /* The `key' argument to rl_get_previous_history is ignored. */
1074 rl_get_previous_history (delta, 0);
1075 operate_saved_history = -1;
1076
1077 /* readline doesn't automatically update the display for us. */
1078 rl_redisplay ();
1079
1080 after_char_processing_hook = NULL;
1081 rl_pre_input_hook = NULL;
1082 }
1083
1084 /* This is a gdb-local readline command handler. It accepts the
1085 current command line (like RET does) and, if this command was taken
1086 from the history, arranges for the next command in the history to
1087 appear on the command line when the prompt returns.
1088 We ignore the arguments. */
1089 static int
1090 gdb_rl_operate_and_get_next (int count, int key)
1091 {
1092 int where;
1093
1094 /* Use the async hook. */
1095 after_char_processing_hook = gdb_rl_operate_and_get_next_completion;
1096
1097 /* Find the current line, and find the next line to use. */
1098 where = where_history();
1099
1100 if ((history_is_stifled () && (history_length >= history_max_entries))
1101 || (where >= history_length - 1))
1102 operate_saved_history = where;
1103 else
1104 operate_saved_history = where + 1;
1105
1106 return rl_newline (1, key);
1107 }
1108
1109 /* Number of user commands executed during this session. */
1110
1111 static int command_count = 0;
1112
1113 /* Add the user command COMMAND to the input history list. */
1114
1115 void
1116 gdb_add_history (const char *command)
1117 {
1118 command_count++;
1119
1120 if (history_remove_duplicates != 0)
1121 {
1122 int lookbehind;
1123 int lookbehind_threshold;
1124
1125 /* The lookbehind threshold for finding a duplicate history entry is
1126 bounded by command_count because we can't meaningfully delete
1127 history entries that are already stored in the history file since
1128 the history file is appended to. */
1129 if (history_remove_duplicates == -1
1130 || history_remove_duplicates > command_count)
1131 lookbehind_threshold = command_count;
1132 else
1133 lookbehind_threshold = history_remove_duplicates;
1134
1135 using_history ();
1136 for (lookbehind = 0; lookbehind < lookbehind_threshold; lookbehind++)
1137 {
1138 HIST_ENTRY *temp = previous_history ();
1139
1140 if (temp == NULL)
1141 break;
1142
1143 if (strcmp (temp->line, command) == 0)
1144 {
1145 HIST_ENTRY *prev = remove_history (where_history ());
1146 command_count--;
1147 free_history_entry (prev);
1148 break;
1149 }
1150 }
1151 using_history ();
1152 }
1153
1154 add_history (command);
1155 }
1156
1157 /* Safely append new history entries to the history file in a corruption-free
1158 way using an intermediate local history file. */
1159
1160 static void
1161 gdb_safe_append_history (void)
1162 {
1163 int ret, saved_errno;
1164
1165 std::string local_history_filename
1166 = string_printf ("%s-gdb%ld~", history_filename, (long) getpid ());
1167
1168 ret = rename (history_filename, local_history_filename.c_str ());
1169 saved_errno = errno;
1170 if (ret < 0 && saved_errno != ENOENT)
1171 {
1172 warning (_("Could not rename %s to %s: %s"),
1173 history_filename, local_history_filename.c_str (),
1174 safe_strerror (saved_errno));
1175 }
1176 else
1177 {
1178 if (ret < 0)
1179 {
1180 /* If the rename failed with ENOENT then either the global history
1181 file never existed in the first place or another GDB process is
1182 currently appending to it (and has thus temporarily renamed it).
1183 Since we can't distinguish between these two cases, we have to
1184 conservatively assume the first case and therefore must write out
1185 (not append) our known history to our local history file and try
1186 to move it back anyway. Otherwise a global history file would
1187 never get created! */
1188 gdb_assert (saved_errno == ENOENT);
1189 write_history (local_history_filename.c_str ());
1190 }
1191 else
1192 {
1193 append_history (command_count, local_history_filename.c_str ());
1194 if (history_is_stifled ())
1195 history_truncate_file (local_history_filename.c_str (),
1196 history_max_entries);
1197 }
1198
1199 ret = rename (local_history_filename.c_str (), history_filename);
1200 saved_errno = errno;
1201 if (ret < 0 && saved_errno != EEXIST)
1202 warning (_("Could not rename %s to %s: %s"),
1203 local_history_filename.c_str (), history_filename,
1204 safe_strerror (saved_errno));
1205 }
1206 }
1207
1208 /* Read one line from the command input stream `instream' into a local
1209 static buffer. The buffer is made bigger as necessary. Returns
1210 the address of the start of the line.
1211
1212 NULL is returned for end of file.
1213
1214 This routine either uses fancy command line editing or simple input
1215 as the user has requested. */
1216
1217 char *
1218 command_line_input (const char *prompt_arg, const char *annotation_suffix)
1219 {
1220 static struct buffer cmd_line_buffer;
1221 static int cmd_line_buffer_initialized;
1222 struct ui *ui = current_ui;
1223 const char *prompt = prompt_arg;
1224 char *cmd;
1225 int from_tty = ui->instream == ui->stdin_stream;
1226
1227 /* The annotation suffix must be non-NULL. */
1228 if (annotation_suffix == NULL)
1229 annotation_suffix = "";
1230
1231 if (from_tty && annotation_level > 1)
1232 {
1233 char *local_prompt;
1234
1235 local_prompt
1236 = (char *) alloca ((prompt == NULL ? 0 : strlen (prompt))
1237 + strlen (annotation_suffix) + 40);
1238 if (prompt == NULL)
1239 local_prompt[0] = '\0';
1240 else
1241 strcpy (local_prompt, prompt);
1242 strcat (local_prompt, "\n\032\032");
1243 strcat (local_prompt, annotation_suffix);
1244 strcat (local_prompt, "\n");
1245
1246 prompt = local_prompt;
1247 }
1248
1249 if (!cmd_line_buffer_initialized)
1250 {
1251 buffer_init (&cmd_line_buffer);
1252 cmd_line_buffer_initialized = 1;
1253 }
1254
1255 /* Starting a new command line. */
1256 cmd_line_buffer.used_size = 0;
1257
1258 #ifdef SIGTSTP
1259 if (job_control)
1260 signal (SIGTSTP, handle_sigtstp);
1261 #endif
1262
1263 while (1)
1264 {
1265 gdb::unique_xmalloc_ptr<char> rl;
1266
1267 /* Make sure that all output has been output. Some machines may
1268 let you get away with leaving out some of the gdb_flush, but
1269 not all. */
1270 wrap_here ("");
1271 gdb_flush (gdb_stdout);
1272 gdb_flush (gdb_stderr);
1273
1274 if (!source_file_name.empty ())
1275 ++source_line_number;
1276
1277 if (from_tty && annotation_level > 1)
1278 {
1279 puts_unfiltered ("\n\032\032pre-");
1280 puts_unfiltered (annotation_suffix);
1281 puts_unfiltered ("\n");
1282 }
1283
1284 /* Don't use fancy stuff if not talking to stdin. */
1285 if (deprecated_readline_hook
1286 && from_tty
1287 && input_interactive_p (current_ui))
1288 {
1289 rl.reset ((*deprecated_readline_hook) (prompt));
1290 }
1291 else if (command_editing_p
1292 && from_tty
1293 && input_interactive_p (current_ui))
1294 {
1295 rl.reset (gdb_readline_wrapper (prompt));
1296 }
1297 else
1298 {
1299 rl.reset (gdb_readline_no_editing (prompt));
1300 }
1301
1302 cmd = handle_line_of_input (&cmd_line_buffer, rl.get (),
1303 0, annotation_suffix);
1304 if (cmd == (char *) EOF)
1305 {
1306 cmd = NULL;
1307 break;
1308 }
1309 if (cmd != NULL)
1310 break;
1311
1312 /* Got partial input. I.e., got a line that ends with a
1313 continuation character (backslash). Suppress printing the
1314 prompt again. */
1315 prompt = NULL;
1316 }
1317
1318 #ifdef SIGTSTP
1319 if (job_control)
1320 signal (SIGTSTP, SIG_DFL);
1321 #endif
1322
1323 return cmd;
1324 }
1325 \f
1326 /* See top.h. */
1327 void
1328 print_gdb_version (struct ui_file *stream, bool interactive)
1329 {
1330 /* From GNU coding standards, first line is meant to be easy for a
1331 program to parse, and is just canonical program name and version
1332 number, which starts after last space. */
1333
1334 ui_file_style style;
1335 if (interactive)
1336 {
1337 ui_file_style nstyle = { ui_file_style::MAGENTA, ui_file_style::NONE,
1338 ui_file_style::BOLD };
1339 style = nstyle;
1340 }
1341 fprintf_styled (stream, style, "GNU gdb %s%s\n", PKGVERSION, version);
1342
1343 /* Second line is a copyright notice. */
1344
1345 fprintf_filtered (stream,
1346 "Copyright (C) 2019 Free Software Foundation, Inc.\n");
1347
1348 /* Following the copyright is a brief statement that the program is
1349 free software, that users are free to copy and change it on
1350 certain conditions, that it is covered by the GNU GPL, and that
1351 there is no warranty. */
1352
1353 fprintf_filtered (stream, "\
1354 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\
1355 \nThis is free software: you are free to change and redistribute it.\n\
1356 There is NO WARRANTY, to the extent permitted by law.");
1357
1358 if (!interactive)
1359 return;
1360
1361 fprintf_filtered (stream, ("\nType \"show copying\" and "
1362 "\"show warranty\" for details.\n"));
1363
1364 /* After the required info we print the configuration information. */
1365
1366 fprintf_filtered (stream, "This GDB was configured as \"");
1367 if (strcmp (host_name, target_name) != 0)
1368 {
1369 fprintf_filtered (stream, "--host=%s --target=%s",
1370 host_name, target_name);
1371 }
1372 else
1373 {
1374 fprintf_filtered (stream, "%s", host_name);
1375 }
1376 fprintf_filtered (stream, "\".\n");
1377
1378 fprintf_filtered (stream, _("Type \"show configuration\" "
1379 "for configuration details.\n"));
1380
1381 if (REPORT_BUGS_TO[0])
1382 {
1383 fprintf_filtered (stream,
1384 _("For bug reporting instructions, please see:\n"));
1385 fprintf_filtered (stream, "%s.\n", REPORT_BUGS_TO);
1386 }
1387 fprintf_filtered (stream,
1388 _("Find the GDB manual and other documentation \
1389 resources online at:\n <http://www.gnu.org/software/gdb/documentation/>."));
1390 fprintf_filtered (stream, "\n\n");
1391 fprintf_filtered (stream, _("For help, type \"help\".\n"));
1392 fprintf_filtered (stream,
1393 _("Type \"apropos word\" to search for commands \
1394 related to \"word\"."));
1395 }
1396
1397 /* Print the details of GDB build-time configuration. */
1398 void
1399 print_gdb_configuration (struct ui_file *stream)
1400 {
1401 fprintf_filtered (stream, _("\
1402 This GDB was configured as follows:\n\
1403 configure --host=%s --target=%s\n\
1404 "), host_name, target_name);
1405 fprintf_filtered (stream, _("\
1406 --with-auto-load-dir=%s\n\
1407 --with-auto-load-safe-path=%s\n\
1408 "), AUTO_LOAD_DIR, AUTO_LOAD_SAFE_PATH);
1409 #if HAVE_LIBEXPAT
1410 fprintf_filtered (stream, _("\
1411 --with-expat\n\
1412 "));
1413 #else
1414 fprintf_filtered (stream, _("\
1415 --without-expat\n\
1416 "));
1417 #endif
1418 if (GDB_DATADIR[0])
1419 fprintf_filtered (stream, _("\
1420 --with-gdb-datadir=%s%s\n\
1421 "), GDB_DATADIR, GDB_DATADIR_RELOCATABLE ? " (relocatable)" : "");
1422 #ifdef ICONV_BIN
1423 fprintf_filtered (stream, _("\
1424 --with-iconv-bin=%s%s\n\
1425 "), ICONV_BIN, ICONV_BIN_RELOCATABLE ? " (relocatable)" : "");
1426 #endif
1427 if (JIT_READER_DIR[0])
1428 fprintf_filtered (stream, _("\
1429 --with-jit-reader-dir=%s%s\n\
1430 "), JIT_READER_DIR, JIT_READER_DIR_RELOCATABLE ? " (relocatable)" : "");
1431 #if HAVE_LIBUNWIND_IA64_H
1432 fprintf_filtered (stream, _("\
1433 --with-libunwind-ia64\n\
1434 "));
1435 #else
1436 fprintf_filtered (stream, _("\
1437 --without-libunwind-ia64\n\
1438 "));
1439 #endif
1440 #if HAVE_LIBLZMA
1441 fprintf_filtered (stream, _("\
1442 --with-lzma\n\
1443 "));
1444 #else
1445 fprintf_filtered (stream, _("\
1446 --without-lzma\n\
1447 "));
1448 #endif
1449 #if HAVE_LIBBABELTRACE
1450 fprintf_filtered (stream, _("\
1451 --with-babeltrace\n\
1452 "));
1453 #else
1454 fprintf_filtered (stream, _("\
1455 --without-babeltrace\n\
1456 "));
1457 #endif
1458 #if HAVE_LIBIPT
1459 fprintf_filtered (stream, _("\
1460 --with-intel-pt\n\
1461 "));
1462 #else
1463 fprintf_filtered (stream, _("\
1464 --without-intel-pt\n\
1465 "));
1466 #endif
1467 #if HAVE_LIBMCHECK
1468 fprintf_filtered (stream, _("\
1469 --enable-libmcheck\n\
1470 "));
1471 #else
1472 fprintf_filtered (stream, _("\
1473 --disable-libmcheck\n\
1474 "));
1475 #endif
1476 #if HAVE_LIBMPFR
1477 fprintf_filtered (stream, _("\
1478 --with-mpfr\n\
1479 "));
1480 #else
1481 fprintf_filtered (stream, _("\
1482 --without-mpfr\n\
1483 "));
1484 #endif
1485 #ifdef WITH_PYTHON_PATH
1486 fprintf_filtered (stream, _("\
1487 --with-python=%s%s\n\
1488 "), WITH_PYTHON_PATH, PYTHON_PATH_RELOCATABLE ? " (relocatable)" : "");
1489 #else
1490 fprintf_filtered (stream, _("\
1491 --without-python\n\
1492 "));
1493 #endif
1494 #if HAVE_GUILE
1495 fprintf_filtered (stream, _("\
1496 --with-guile\n\
1497 "));
1498 #else
1499 fprintf_filtered (stream, _("\
1500 --without-guile\n\
1501 "));
1502 #endif
1503 #if HAVE_SOURCE_HIGHLIGHT
1504 fprintf_filtered (stream, _("\
1505 --enable-source-highlight\n\
1506 "));
1507 #else
1508 fprintf_filtered (stream, _("\
1509 --disable-source-highlight\n\
1510 "));
1511 #endif
1512 #ifdef RELOC_SRCDIR
1513 fprintf_filtered (stream, _("\
1514 --with-relocated-sources=%s\n\
1515 "), RELOC_SRCDIR);
1516 #endif
1517 if (DEBUGDIR[0])
1518 fprintf_filtered (stream, _("\
1519 --with-separate-debug-dir=%s%s\n\
1520 "), DEBUGDIR, DEBUGDIR_RELOCATABLE ? " (relocatable)" : "");
1521 if (TARGET_SYSTEM_ROOT[0])
1522 fprintf_filtered (stream, _("\
1523 --with-sysroot=%s%s\n\
1524 "), TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_RELOCATABLE ? " (relocatable)" : "");
1525 if (SYSTEM_GDBINIT[0])
1526 fprintf_filtered (stream, _("\
1527 --with-system-gdbinit=%s%s\n\
1528 "), SYSTEM_GDBINIT, SYSTEM_GDBINIT_RELOCATABLE ? " (relocatable)" : "");
1529 /* We assume "relocatable" will be printed at least once, thus we always
1530 print this text. It's a reasonably safe assumption for now. */
1531 fprintf_filtered (stream, _("\n\
1532 (\"Relocatable\" means the directory can be moved with the GDB installation\n\
1533 tree, and GDB will still find it.)\n\
1534 "));
1535 }
1536 \f
1537
1538 /* The current top level prompt, settable with "set prompt", and/or
1539 with the python `gdb.prompt_hook' hook. */
1540 static char *top_prompt;
1541
1542 /* Access method for the GDB prompt string. */
1543
1544 char *
1545 get_prompt (void)
1546 {
1547 return top_prompt;
1548 }
1549
1550 /* Set method for the GDB prompt string. */
1551
1552 void
1553 set_prompt (const char *s)
1554 {
1555 char *p = xstrdup (s);
1556
1557 xfree (top_prompt);
1558 top_prompt = p;
1559 }
1560 \f
1561
1562 struct qt_args
1563 {
1564 int from_tty;
1565 };
1566
1567 /* Callback for iterate_over_inferiors. Kills or detaches the given
1568 inferior, depending on how we originally gained control of it. */
1569
1570 static int
1571 kill_or_detach (struct inferior *inf, void *args)
1572 {
1573 struct qt_args *qt = (struct qt_args *) args;
1574
1575 if (inf->pid == 0)
1576 return 0;
1577
1578 thread_info *thread = any_thread_of_inferior (inf);
1579 if (thread != NULL)
1580 {
1581 switch_to_thread (thread);
1582
1583 /* Leave core files alone. */
1584 if (target_has_execution)
1585 {
1586 if (inf->attach_flag)
1587 target_detach (inf, qt->from_tty);
1588 else
1589 target_kill ();
1590 }
1591 }
1592
1593 return 0;
1594 }
1595
1596 /* Callback for iterate_over_inferiors. Prints info about what GDB
1597 will do to each inferior on a "quit". ARG points to a struct
1598 ui_out where output is to be collected. */
1599
1600 static int
1601 print_inferior_quit_action (struct inferior *inf, void *arg)
1602 {
1603 struct ui_file *stb = (struct ui_file *) arg;
1604
1605 if (inf->pid == 0)
1606 return 0;
1607
1608 if (inf->attach_flag)
1609 fprintf_filtered (stb,
1610 _("\tInferior %d [%s] will be detached.\n"), inf->num,
1611 target_pid_to_str (ptid_t (inf->pid)).c_str ());
1612 else
1613 fprintf_filtered (stb,
1614 _("\tInferior %d [%s] will be killed.\n"), inf->num,
1615 target_pid_to_str (ptid_t (inf->pid)).c_str ());
1616
1617 return 0;
1618 }
1619
1620 /* If necessary, make the user confirm that we should quit. Return
1621 non-zero if we should quit, zero if we shouldn't. */
1622
1623 int
1624 quit_confirm (void)
1625 {
1626 /* Don't even ask if we're only debugging a core file inferior. */
1627 if (!have_live_inferiors ())
1628 return 1;
1629
1630 /* Build the query string as a single string. */
1631 string_file stb;
1632
1633 stb.puts (_("A debugging session is active.\n\n"));
1634 iterate_over_inferiors (print_inferior_quit_action, &stb);
1635 stb.puts (_("\nQuit anyway? "));
1636
1637 return query ("%s", stb.c_str ());
1638 }
1639
1640 /* Prepare to exit GDB cleanly by undoing any changes made to the
1641 terminal so that we leave the terminal in the state we acquired it. */
1642
1643 static void
1644 undo_terminal_modifications_before_exit (void)
1645 {
1646 struct ui *saved_top_level = current_ui;
1647
1648 target_terminal::ours ();
1649
1650 current_ui = main_ui;
1651
1652 #if defined(TUI)
1653 tui_disable ();
1654 #endif
1655 gdb_disable_readline ();
1656
1657 current_ui = saved_top_level;
1658 }
1659
1660
1661 /* Quit without asking for confirmation. */
1662
1663 void
1664 quit_force (int *exit_arg, int from_tty)
1665 {
1666 int exit_code = 0;
1667 struct qt_args qt;
1668
1669 undo_terminal_modifications_before_exit ();
1670
1671 /* An optional expression may be used to cause gdb to terminate with the
1672 value of that expression. */
1673 if (exit_arg)
1674 exit_code = *exit_arg;
1675 else if (return_child_result)
1676 exit_code = return_child_result_value;
1677
1678 qt.from_tty = from_tty;
1679
1680 /* We want to handle any quit errors and exit regardless. */
1681
1682 /* Get out of tfind mode, and kill or detach all inferiors. */
1683 try
1684 {
1685 disconnect_tracing ();
1686 iterate_over_inferiors (kill_or_detach, &qt);
1687 }
1688 catch (const gdb_exception &ex)
1689 {
1690 exception_print (gdb_stderr, ex);
1691 }
1692
1693 /* Give all pushed targets a chance to do minimal cleanup, and pop
1694 them all out. */
1695 try
1696 {
1697 pop_all_targets ();
1698 }
1699 catch (const gdb_exception &ex)
1700 {
1701 exception_print (gdb_stderr, ex);
1702 }
1703
1704 /* Save the history information if it is appropriate to do so. */
1705 try
1706 {
1707 if (write_history_p && history_filename)
1708 {
1709 struct ui *ui;
1710 int save = 0;
1711
1712 /* History is currently shared between all UIs. If there's
1713 any UI with a terminal, save history. */
1714 ALL_UIS (ui)
1715 {
1716 if (input_interactive_p (ui))
1717 {
1718 save = 1;
1719 break;
1720 }
1721 }
1722
1723 if (save)
1724 gdb_safe_append_history ();
1725 }
1726 }
1727 catch (const gdb_exception &ex)
1728 {
1729 exception_print (gdb_stderr, ex);
1730 }
1731
1732 /* Destroy any values currently allocated now instead of leaving it
1733 to global destructors, because that may be too late. For
1734 example, the destructors of xmethod values call into the Python
1735 runtime, which is finalized via a final cleanup. */
1736 finalize_values ();
1737
1738 /* Do any final cleanups before exiting. */
1739 try
1740 {
1741 do_final_cleanups ();
1742 }
1743 catch (const gdb_exception &ex)
1744 {
1745 exception_print (gdb_stderr, ex);
1746 }
1747
1748 exit (exit_code);
1749 }
1750
1751 /* The value of the "interactive-mode" setting. */
1752 static enum auto_boolean interactive_mode = AUTO_BOOLEAN_AUTO;
1753
1754 /* Implement the "show interactive-mode" option. */
1755
1756 static void
1757 show_interactive_mode (struct ui_file *file, int from_tty,
1758 struct cmd_list_element *c,
1759 const char *value)
1760 {
1761 if (interactive_mode == AUTO_BOOLEAN_AUTO)
1762 fprintf_filtered (file, "Debugger's interactive mode "
1763 "is %s (currently %s).\n",
1764 value, input_interactive_p (current_ui) ? "on" : "off");
1765 else
1766 fprintf_filtered (file, "Debugger's interactive mode is %s.\n", value);
1767 }
1768
1769 /* Returns whether GDB is running on an interactive terminal. */
1770
1771 int
1772 input_interactive_p (struct ui *ui)
1773 {
1774 if (batch_flag)
1775 return 0;
1776
1777 if (interactive_mode != AUTO_BOOLEAN_AUTO)
1778 return interactive_mode == AUTO_BOOLEAN_TRUE;
1779
1780 return ui->input_interactive_p;
1781 }
1782 \f
1783 static void
1784 dont_repeat_command (const char *ignored, int from_tty)
1785 {
1786 /* Can't call dont_repeat here because we're not necessarily reading
1787 from stdin. */
1788 *saved_command_line = 0;
1789 }
1790 \f
1791 /* Functions to manipulate command line editing control variables. */
1792
1793 /* Number of commands to print in each call to show_commands. */
1794 #define Hist_print 10
1795 void
1796 show_commands (const char *args, int from_tty)
1797 {
1798 /* Index for history commands. Relative to history_base. */
1799 int offset;
1800
1801 /* Number of the history entry which we are planning to display next.
1802 Relative to history_base. */
1803 static int num = 0;
1804
1805 /* Print out some of the commands from the command history. */
1806
1807 if (args)
1808 {
1809 if (args[0] == '+' && args[1] == '\0')
1810 /* "info editing +" should print from the stored position. */
1811 ;
1812 else
1813 /* "info editing <exp>" should print around command number <exp>. */
1814 num = (parse_and_eval_long (args) - history_base) - Hist_print / 2;
1815 }
1816 /* "show commands" means print the last Hist_print commands. */
1817 else
1818 {
1819 num = history_length - Hist_print;
1820 }
1821
1822 if (num < 0)
1823 num = 0;
1824
1825 /* If there are at least Hist_print commands, we want to display the last
1826 Hist_print rather than, say, the last 6. */
1827 if (history_length - num < Hist_print)
1828 {
1829 num = history_length - Hist_print;
1830 if (num < 0)
1831 num = 0;
1832 }
1833
1834 for (offset = num;
1835 offset < num + Hist_print && offset < history_length;
1836 offset++)
1837 {
1838 printf_filtered ("%5d %s\n", history_base + offset,
1839 (history_get (history_base + offset))->line);
1840 }
1841
1842 /* The next command we want to display is the next one that we haven't
1843 displayed yet. */
1844 num += Hist_print;
1845
1846 /* If the user repeats this command with return, it should do what
1847 "show commands +" does. This is unnecessary if arg is null,
1848 because "show commands +" is not useful after "show commands". */
1849 if (from_tty && args)
1850 set_repeat_arguments ("+");
1851 }
1852
1853 /* Update the size of our command history file to HISTORY_SIZE.
1854
1855 A HISTORY_SIZE of -1 stands for unlimited. */
1856
1857 static void
1858 set_readline_history_size (int history_size)
1859 {
1860 gdb_assert (history_size >= -1);
1861
1862 if (history_size == -1)
1863 unstifle_history ();
1864 else
1865 stifle_history (history_size);
1866 }
1867
1868 /* Called by do_setshow_command. */
1869 static void
1870 set_history_size_command (const char *args,
1871 int from_tty, struct cmd_list_element *c)
1872 {
1873 set_readline_history_size (history_size_setshow_var);
1874 }
1875
1876 void
1877 set_history (const char *args, int from_tty)
1878 {
1879 printf_unfiltered (_("\"set history\" must be followed "
1880 "by the name of a history subcommand.\n"));
1881 help_list (sethistlist, "set history ", all_commands, gdb_stdout);
1882 }
1883
1884 void
1885 show_history (const char *args, int from_tty)
1886 {
1887 cmd_show_list (showhistlist, from_tty, "");
1888 }
1889
1890 int info_verbose = 0; /* Default verbose msgs off. */
1891
1892 /* Called by do_set_command. An elaborate joke. */
1893 void
1894 set_verbose (const char *args, int from_tty, struct cmd_list_element *c)
1895 {
1896 const char *cmdname = "verbose";
1897 struct cmd_list_element *showcmd;
1898
1899 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
1900 gdb_assert (showcmd != NULL && showcmd != CMD_LIST_AMBIGUOUS);
1901
1902 if (c->doc && c->doc_allocated)
1903 xfree ((char *) c->doc);
1904 if (showcmd->doc && showcmd->doc_allocated)
1905 xfree ((char *) showcmd->doc);
1906 if (info_verbose)
1907 {
1908 c->doc = _("Set verbose printing of informational messages.");
1909 showcmd->doc = _("Show verbose printing of informational messages.");
1910 }
1911 else
1912 {
1913 c->doc = _("Set verbosity.");
1914 showcmd->doc = _("Show verbosity.");
1915 }
1916 c->doc_allocated = 0;
1917 showcmd->doc_allocated = 0;
1918 }
1919
1920 /* Init the history buffer. Note that we are called after the init file(s)
1921 have been read so that the user can change the history file via his
1922 .gdbinit file (for instance). The GDBHISTFILE environment variable
1923 overrides all of this. */
1924
1925 void
1926 init_history (void)
1927 {
1928 const char *tmpenv;
1929
1930 tmpenv = getenv ("GDBHISTSIZE");
1931 if (tmpenv)
1932 {
1933 long var;
1934 int saved_errno;
1935 char *endptr;
1936
1937 tmpenv = skip_spaces (tmpenv);
1938 errno = 0;
1939 var = strtol (tmpenv, &endptr, 10);
1940 saved_errno = errno;
1941 endptr = skip_spaces (endptr);
1942
1943 /* If GDBHISTSIZE is non-numeric then ignore it. If GDBHISTSIZE is the
1944 empty string, a negative number or a huge positive number (larger than
1945 INT_MAX) then set the history size to unlimited. Otherwise set our
1946 history size to the number we have read. This behavior is consistent
1947 with how bash handles HISTSIZE. */
1948 if (*endptr != '\0')
1949 ;
1950 else if (*tmpenv == '\0'
1951 || var < 0
1952 || var > INT_MAX
1953 /* On targets where INT_MAX == LONG_MAX, we have to look at
1954 errno after calling strtol to distinguish between a value that
1955 is exactly INT_MAX and an overflowing value that was clamped
1956 to INT_MAX. */
1957 || (var == INT_MAX && saved_errno == ERANGE))
1958 history_size_setshow_var = -1;
1959 else
1960 history_size_setshow_var = var;
1961 }
1962
1963 /* If neither the init file nor GDBHISTSIZE has set a size yet, pick the
1964 default. */
1965 if (history_size_setshow_var == -2)
1966 history_size_setshow_var = 256;
1967
1968 set_readline_history_size (history_size_setshow_var);
1969
1970 tmpenv = getenv ("GDBHISTFILE");
1971 if (tmpenv)
1972 history_filename = xstrdup (tmpenv);
1973 else if (!history_filename)
1974 {
1975 /* We include the current directory so that if the user changes
1976 directories the file written will be the same as the one
1977 that was read. */
1978 #ifdef __MSDOS__
1979 /* No leading dots in file names are allowed on MSDOS. */
1980 history_filename = concat (current_directory, "/_gdb_history",
1981 (char *)NULL);
1982 #else
1983 history_filename = concat (current_directory, "/.gdb_history",
1984 (char *)NULL);
1985 #endif
1986 }
1987 read_history (history_filename);
1988 }
1989
1990 static void
1991 show_prompt (struct ui_file *file, int from_tty,
1992 struct cmd_list_element *c, const char *value)
1993 {
1994 fprintf_filtered (file, _("Gdb's prompt is \"%s\".\n"), value);
1995 }
1996
1997 /* "set editing" command. */
1998
1999 static void
2000 set_editing (const char *args, int from_tty, struct cmd_list_element *c)
2001 {
2002 change_line_handler (set_editing_cmd_var);
2003 /* Update the control variable so that MI's =cmd-param-changed event
2004 shows the correct value. */
2005 set_editing_cmd_var = current_ui->command_editing;
2006 }
2007
2008 static void
2009 show_editing (struct ui_file *file, int from_tty,
2010 struct cmd_list_element *c, const char *value)
2011 {
2012 fprintf_filtered (file, _("Editing of command lines as "
2013 "they are typed is %s.\n"),
2014 current_ui->command_editing ? _("on") : _("off"));
2015 }
2016
2017 static void
2018 show_annotation_level (struct ui_file *file, int from_tty,
2019 struct cmd_list_element *c, const char *value)
2020 {
2021 fprintf_filtered (file, _("Annotation_level is %s.\n"), value);
2022 }
2023
2024 static void
2025 show_exec_done_display_p (struct ui_file *file, int from_tty,
2026 struct cmd_list_element *c, const char *value)
2027 {
2028 fprintf_filtered (file, _("Notification of completion for "
2029 "asynchronous execution commands is %s.\n"),
2030 value);
2031 }
2032
2033 /* New values of the "data-directory" parameter are staged here. */
2034 static char *staged_gdb_datadir;
2035
2036 /* "set" command for the gdb_datadir configuration variable. */
2037
2038 static void
2039 set_gdb_datadir (const char *args, int from_tty, struct cmd_list_element *c)
2040 {
2041 set_gdb_data_directory (staged_gdb_datadir);
2042 gdb::observers::gdb_datadir_changed.notify ();
2043 }
2044
2045 /* "show" command for the gdb_datadir configuration variable. */
2046
2047 static void
2048 show_gdb_datadir (struct ui_file *file, int from_tty,
2049 struct cmd_list_element *c, const char *value)
2050 {
2051 fprintf_filtered (file, _("GDB's data directory is \"%s\".\n"),
2052 gdb_datadir);
2053 }
2054
2055 static void
2056 set_history_filename (const char *args,
2057 int from_tty, struct cmd_list_element *c)
2058 {
2059 /* We include the current directory so that if the user changes
2060 directories the file written will be the same as the one
2061 that was read. */
2062 if (!IS_ABSOLUTE_PATH (history_filename))
2063 history_filename = reconcat (history_filename, current_directory, "/",
2064 history_filename, (char *) NULL);
2065 }
2066
2067 static void
2068 init_gdb_version_vars (void)
2069 {
2070 struct internalvar *major_version_var = create_internalvar ("_gdb_major");
2071 struct internalvar *minor_version_var = create_internalvar ("_gdb_minor");
2072 int vmajor = 0, vminor = 0, vrevision = 0;
2073 sscanf (version, "%d.%d.%d", &vmajor, &vminor, &vrevision);
2074 set_internalvar_integer (major_version_var, vmajor);
2075 set_internalvar_integer (minor_version_var, vminor + (vrevision > 0));
2076 }
2077
2078 static void
2079 init_main (void)
2080 {
2081 struct cmd_list_element *c;
2082
2083 /* Initialize the prompt to a simple "(gdb) " prompt or to whatever
2084 the DEFAULT_PROMPT is. */
2085 set_prompt (DEFAULT_PROMPT);
2086
2087 /* Set the important stuff up for command editing. */
2088 command_editing_p = 1;
2089 history_expansion_p = 0;
2090 write_history_p = 0;
2091
2092 /* Setup important stuff for command line editing. */
2093 rl_completion_word_break_hook = gdb_completion_word_break_characters;
2094 rl_attempted_completion_function = gdb_rl_attempted_completion_function;
2095 set_rl_completer_word_break_characters (default_word_break_characters ());
2096 rl_completer_quote_characters = get_gdb_completer_quote_characters ();
2097 rl_completion_display_matches_hook = cli_display_match_list;
2098 rl_readline_name = "gdb";
2099 rl_terminal_name = getenv ("TERM");
2100
2101 /* The name for this defun comes from Bash, where it originated.
2102 15 is Control-o, the same binding this function has in Bash. */
2103 rl_add_defun ("operate-and-get-next", gdb_rl_operate_and_get_next, 15);
2104
2105 add_setshow_string_cmd ("prompt", class_support,
2106 &top_prompt,
2107 _("Set gdb's prompt"),
2108 _("Show gdb's prompt"),
2109 NULL, NULL,
2110 show_prompt,
2111 &setlist, &showlist);
2112
2113 add_com ("dont-repeat", class_support, dont_repeat_command, _("\
2114 Don't repeat this command.\nPrimarily \
2115 used inside of user-defined commands that should not be repeated when\n\
2116 hitting return."));
2117
2118 add_setshow_boolean_cmd ("editing", class_support,
2119 &set_editing_cmd_var, _("\
2120 Set editing of command lines as they are typed."), _("\
2121 Show editing of command lines as they are typed."), _("\
2122 Use \"on\" to enable the editing, and \"off\" to disable it.\n\
2123 Without an argument, command line editing is enabled. To edit, use\n\
2124 EMACS-like or VI-like commands like control-P or ESC."),
2125 set_editing,
2126 show_editing,
2127 &setlist, &showlist);
2128
2129 add_setshow_boolean_cmd ("save", no_class, &write_history_p, _("\
2130 Set saving of the history record on exit."), _("\
2131 Show saving of the history record on exit."), _("\
2132 Use \"on\" to enable the saving, and \"off\" to disable it.\n\
2133 Without an argument, saving is enabled."),
2134 NULL,
2135 show_write_history_p,
2136 &sethistlist, &showhistlist);
2137
2138 add_setshow_zuinteger_unlimited_cmd ("size", no_class,
2139 &history_size_setshow_var, _("\
2140 Set the size of the command history,"), _("\
2141 Show the size of the command history,"), _("\
2142 ie. the number of previous commands to keep a record of.\n\
2143 If set to \"unlimited\", the number of commands kept in the history\n\
2144 list is unlimited. This defaults to the value of the environment\n\
2145 variable \"GDBHISTSIZE\", or to 256 if this variable is not set."),
2146 set_history_size_command,
2147 show_history_size,
2148 &sethistlist, &showhistlist);
2149
2150 add_setshow_zuinteger_unlimited_cmd ("remove-duplicates", no_class,
2151 &history_remove_duplicates, _("\
2152 Set how far back in history to look for and remove duplicate entries."), _("\
2153 Show how far back in history to look for and remove duplicate entries."), _("\
2154 If set to a nonzero value N, GDB will look back at the last N history entries\n\
2155 and remove the first history entry that is a duplicate of the most recent\n\
2156 entry, each time a new history entry is added.\n\
2157 If set to \"unlimited\", this lookbehind is unbounded.\n\
2158 Only history entries added during this session are considered for removal.\n\
2159 If set to 0, removal of duplicate history entries is disabled.\n\
2160 By default this option is set to 0."),
2161 NULL,
2162 show_history_remove_duplicates,
2163 &sethistlist, &showhistlist);
2164
2165 add_setshow_filename_cmd ("filename", no_class, &history_filename, _("\
2166 Set the filename in which to record the command history"), _("\
2167 Show the filename in which to record the command history"), _("\
2168 (the list of previous commands of which a record is kept)."),
2169 set_history_filename,
2170 show_history_filename,
2171 &sethistlist, &showhistlist);
2172
2173 add_setshow_boolean_cmd ("confirm", class_support, &confirm, _("\
2174 Set whether to confirm potentially dangerous operations."), _("\
2175 Show whether to confirm potentially dangerous operations."), NULL,
2176 NULL,
2177 show_confirm,
2178 &setlist, &showlist);
2179
2180 add_setshow_zinteger_cmd ("annotate", class_obscure, &annotation_level, _("\
2181 Set annotation_level."), _("\
2182 Show annotation_level."), _("\
2183 0 == normal; 1 == fullname (for use when running under emacs)\n\
2184 2 == output annotated suitably for use by programs that control GDB."),
2185 NULL,
2186 show_annotation_level,
2187 &setlist, &showlist);
2188
2189 add_setshow_boolean_cmd ("exec-done-display", class_support,
2190 &exec_done_display_p, _("\
2191 Set notification of completion for asynchronous execution commands."), _("\
2192 Show notification of completion for asynchronous execution commands."), _("\
2193 Use \"on\" to enable the notification, and \"off\" to disable it."),
2194 NULL,
2195 show_exec_done_display_p,
2196 &setlist, &showlist);
2197
2198 add_setshow_filename_cmd ("data-directory", class_maintenance,
2199 &staged_gdb_datadir, _("Set GDB's data directory."),
2200 _("Show GDB's data directory."),
2201 _("\
2202 When set, GDB uses the specified path to search for data files."),
2203 set_gdb_datadir, show_gdb_datadir,
2204 &setlist,
2205 &showlist);
2206
2207 add_setshow_auto_boolean_cmd ("interactive-mode", class_support,
2208 &interactive_mode, _("\
2209 Set whether GDB's standard input is a terminal."), _("\
2210 Show whether GDB's standard input is a terminal."), _("\
2211 If on, GDB assumes that standard input is a terminal. In practice, it\n\
2212 means that GDB should wait for the user to answer queries associated to\n\
2213 commands entered at the command prompt. If off, GDB assumes that standard\n\
2214 input is not a terminal, and uses the default answer to all queries.\n\
2215 If auto (the default), determine which mode to use based on the standard\n\
2216 input settings."),
2217 NULL,
2218 show_interactive_mode,
2219 &setlist, &showlist);
2220
2221 c = add_cmd ("new-ui", class_support, new_ui_command, _("\
2222 Create a new UI. It takes two arguments:\n\
2223 The first argument is the name of the interpreter to run.\n\
2224 The second argument is the terminal the UI runs on.\n"), &cmdlist);
2225 set_cmd_completer (c, interpreter_completer);
2226 }
2227
2228 void
2229 gdb_init (char *argv0)
2230 {
2231 saved_command_line = xstrdup ("");
2232 previous_saved_command_line = xstrdup ("");
2233
2234 if (pre_init_ui_hook)
2235 pre_init_ui_hook ();
2236
2237 /* Run the init function of each source file. */
2238
2239 #ifdef __MSDOS__
2240 /* Make sure we return to the original directory upon exit, come
2241 what may, since the OS doesn't do that for us. */
2242 make_final_cleanup (do_chdir_cleanup, xstrdup (current_directory));
2243 #endif
2244
2245 init_cmd_lists (); /* This needs to be done first. */
2246 initialize_targets (); /* Setup target_terminal macros for utils.c. */
2247 initialize_utils (); /* Make errors and warnings possible. */
2248
2249 init_page_info ();
2250
2251 /* Here is where we call all the _initialize_foo routines. */
2252 initialize_all_files ();
2253
2254 /* This creates the current_program_space. Do this after all the
2255 _initialize_foo routines have had a chance to install their
2256 per-sspace data keys. Also do this before
2257 initialize_current_architecture is called, because it accesses
2258 exec_bfd of the current program space. */
2259 initialize_progspace ();
2260 initialize_inferiors ();
2261 initialize_current_architecture ();
2262 init_cli_cmds();
2263 init_main (); /* But that omits this file! Do it now. */
2264
2265 initialize_stdin_serial ();
2266
2267 /* Take a snapshot of our tty state before readline/ncurses have had a chance
2268 to alter it. */
2269 set_initial_gdb_ttystate ();
2270
2271 async_init_signals ();
2272
2273 /* We need a default language for parsing expressions, so simple
2274 things like "set width 0" won't fail if no language is explicitly
2275 set in a config file or implicitly set by reading an executable
2276 during startup. */
2277 set_language (language_c);
2278 expected_language = current_language; /* Don't warn about the change. */
2279
2280 /* Python initialization, for example, can require various commands to be
2281 installed. For example "info pretty-printer" needs the "info"
2282 prefix to be installed. Keep things simple and just do final
2283 script initialization here. */
2284 finish_ext_lang_initialization ();
2285
2286 /* Create $_gdb_major and $_gdb_minor convenience variables. */
2287 init_gdb_version_vars ();
2288 }
This page took 0.101071 seconds and 4 git commands to generate.