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