gdb: Remove use of VEC from dwarf2read.c
[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 overriden 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 /* We assume "relocatable" will be printed at least once, thus we always
1517 print this text. It's a reasonably safe assumption for now. */
1518 fprintf_filtered (stream, _("\n\
1519 (\"Relocatable\" means the directory can be moved with the GDB installation\n\
1520 tree, and GDB will still find it.)\n\
1521 "));
1522 }
1523 \f
1524
1525 /* The current top level prompt, settable with "set prompt", and/or
1526 with the python `gdb.prompt_hook' hook. */
1527 static char *top_prompt;
1528
1529 /* Access method for the GDB prompt string. */
1530
1531 char *
1532 get_prompt (void)
1533 {
1534 return top_prompt;
1535 }
1536
1537 /* Set method for the GDB prompt string. */
1538
1539 void
1540 set_prompt (const char *s)
1541 {
1542 char *p = xstrdup (s);
1543
1544 xfree (top_prompt);
1545 top_prompt = p;
1546 }
1547 \f
1548
1549 struct qt_args
1550 {
1551 int from_tty;
1552 };
1553
1554 /* Callback for iterate_over_inferiors. Kills or detaches the given
1555 inferior, depending on how we originally gained control of it. */
1556
1557 static int
1558 kill_or_detach (struct inferior *inf, void *args)
1559 {
1560 struct qt_args *qt = (struct qt_args *) args;
1561
1562 if (inf->pid == 0)
1563 return 0;
1564
1565 thread_info *thread = any_thread_of_inferior (inf);
1566 if (thread != NULL)
1567 {
1568 switch_to_thread (thread);
1569
1570 /* Leave core files alone. */
1571 if (target_has_execution)
1572 {
1573 if (inf->attach_flag)
1574 target_detach (inf, qt->from_tty);
1575 else
1576 target_kill ();
1577 }
1578 }
1579
1580 return 0;
1581 }
1582
1583 /* Callback for iterate_over_inferiors. Prints info about what GDB
1584 will do to each inferior on a "quit". ARG points to a struct
1585 ui_out where output is to be collected. */
1586
1587 static int
1588 print_inferior_quit_action (struct inferior *inf, void *arg)
1589 {
1590 struct ui_file *stb = (struct ui_file *) arg;
1591
1592 if (inf->pid == 0)
1593 return 0;
1594
1595 if (inf->attach_flag)
1596 fprintf_filtered (stb,
1597 _("\tInferior %d [%s] will be detached.\n"), inf->num,
1598 target_pid_to_str (ptid_t (inf->pid)).c_str ());
1599 else
1600 fprintf_filtered (stb,
1601 _("\tInferior %d [%s] will be killed.\n"), inf->num,
1602 target_pid_to_str (ptid_t (inf->pid)).c_str ());
1603
1604 return 0;
1605 }
1606
1607 /* If necessary, make the user confirm that we should quit. Return
1608 non-zero if we should quit, zero if we shouldn't. */
1609
1610 int
1611 quit_confirm (void)
1612 {
1613 /* Don't even ask if we're only debugging a core file inferior. */
1614 if (!have_live_inferiors ())
1615 return 1;
1616
1617 /* Build the query string as a single string. */
1618 string_file stb;
1619
1620 stb.puts (_("A debugging session is active.\n\n"));
1621 iterate_over_inferiors (print_inferior_quit_action, &stb);
1622 stb.puts (_("\nQuit anyway? "));
1623
1624 return query ("%s", stb.c_str ());
1625 }
1626
1627 /* Prepare to exit GDB cleanly by undoing any changes made to the
1628 terminal so that we leave the terminal in the state we acquired it. */
1629
1630 static void
1631 undo_terminal_modifications_before_exit (void)
1632 {
1633 struct ui *saved_top_level = current_ui;
1634
1635 target_terminal::ours ();
1636
1637 current_ui = main_ui;
1638
1639 #if defined(TUI)
1640 tui_disable ();
1641 #endif
1642 gdb_disable_readline ();
1643
1644 current_ui = saved_top_level;
1645 }
1646
1647
1648 /* Quit without asking for confirmation. */
1649
1650 void
1651 quit_force (int *exit_arg, int from_tty)
1652 {
1653 int exit_code = 0;
1654 struct qt_args qt;
1655
1656 undo_terminal_modifications_before_exit ();
1657
1658 /* An optional expression may be used to cause gdb to terminate with the
1659 value of that expression. */
1660 if (exit_arg)
1661 exit_code = *exit_arg;
1662 else if (return_child_result)
1663 exit_code = return_child_result_value;
1664
1665 qt.from_tty = from_tty;
1666
1667 /* We want to handle any quit errors and exit regardless. */
1668
1669 /* Get out of tfind mode, and kill or detach all inferiors. */
1670 try
1671 {
1672 disconnect_tracing ();
1673 iterate_over_inferiors (kill_or_detach, &qt);
1674 }
1675 catch (const gdb_exception &ex)
1676 {
1677 exception_print (gdb_stderr, ex);
1678 }
1679
1680 /* Give all pushed targets a chance to do minimal cleanup, and pop
1681 them all out. */
1682 try
1683 {
1684 pop_all_targets ();
1685 }
1686 catch (const gdb_exception &ex)
1687 {
1688 exception_print (gdb_stderr, ex);
1689 }
1690
1691 /* Save the history information if it is appropriate to do so. */
1692 try
1693 {
1694 if (write_history_p && history_filename)
1695 {
1696 struct ui *ui;
1697 int save = 0;
1698
1699 /* History is currently shared between all UIs. If there's
1700 any UI with a terminal, save history. */
1701 ALL_UIS (ui)
1702 {
1703 if (input_interactive_p (ui))
1704 {
1705 save = 1;
1706 break;
1707 }
1708 }
1709
1710 if (save)
1711 gdb_safe_append_history ();
1712 }
1713 }
1714 catch (const gdb_exception &ex)
1715 {
1716 exception_print (gdb_stderr, ex);
1717 }
1718
1719 /* Destroy any values currently allocated now instead of leaving it
1720 to global destructors, because that may be too late. For
1721 example, the destructors of xmethod values call into the Python
1722 runtime, which is finalized via a final cleanup. */
1723 finalize_values ();
1724
1725 /* Do any final cleanups before exiting. */
1726 try
1727 {
1728 do_final_cleanups ();
1729 }
1730 catch (const gdb_exception &ex)
1731 {
1732 exception_print (gdb_stderr, ex);
1733 }
1734
1735 exit (exit_code);
1736 }
1737
1738 /* The value of the "interactive-mode" setting. */
1739 static enum auto_boolean interactive_mode = AUTO_BOOLEAN_AUTO;
1740
1741 /* Implement the "show interactive-mode" option. */
1742
1743 static void
1744 show_interactive_mode (struct ui_file *file, int from_tty,
1745 struct cmd_list_element *c,
1746 const char *value)
1747 {
1748 if (interactive_mode == AUTO_BOOLEAN_AUTO)
1749 fprintf_filtered (file, "Debugger's interactive mode "
1750 "is %s (currently %s).\n",
1751 value, input_interactive_p (current_ui) ? "on" : "off");
1752 else
1753 fprintf_filtered (file, "Debugger's interactive mode is %s.\n", value);
1754 }
1755
1756 /* Returns whether GDB is running on an interactive terminal. */
1757
1758 int
1759 input_interactive_p (struct ui *ui)
1760 {
1761 if (batch_flag)
1762 return 0;
1763
1764 if (interactive_mode != AUTO_BOOLEAN_AUTO)
1765 return interactive_mode == AUTO_BOOLEAN_TRUE;
1766
1767 return ui->input_interactive_p;
1768 }
1769 \f
1770 static void
1771 dont_repeat_command (const char *ignored, int from_tty)
1772 {
1773 /* Can't call dont_repeat here because we're not necessarily reading
1774 from stdin. */
1775 *saved_command_line = 0;
1776 }
1777 \f
1778 /* Functions to manipulate command line editing control variables. */
1779
1780 /* Number of commands to print in each call to show_commands. */
1781 #define Hist_print 10
1782 void
1783 show_commands (const char *args, int from_tty)
1784 {
1785 /* Index for history commands. Relative to history_base. */
1786 int offset;
1787
1788 /* Number of the history entry which we are planning to display next.
1789 Relative to history_base. */
1790 static int num = 0;
1791
1792 /* Print out some of the commands from the command history. */
1793
1794 if (args)
1795 {
1796 if (args[0] == '+' && args[1] == '\0')
1797 /* "info editing +" should print from the stored position. */
1798 ;
1799 else
1800 /* "info editing <exp>" should print around command number <exp>. */
1801 num = (parse_and_eval_long (args) - history_base) - Hist_print / 2;
1802 }
1803 /* "show commands" means print the last Hist_print commands. */
1804 else
1805 {
1806 num = history_length - Hist_print;
1807 }
1808
1809 if (num < 0)
1810 num = 0;
1811
1812 /* If there are at least Hist_print commands, we want to display the last
1813 Hist_print rather than, say, the last 6. */
1814 if (history_length - num < Hist_print)
1815 {
1816 num = history_length - Hist_print;
1817 if (num < 0)
1818 num = 0;
1819 }
1820
1821 for (offset = num;
1822 offset < num + Hist_print && offset < history_length;
1823 offset++)
1824 {
1825 printf_filtered ("%5d %s\n", history_base + offset,
1826 (history_get (history_base + offset))->line);
1827 }
1828
1829 /* The next command we want to display is the next one that we haven't
1830 displayed yet. */
1831 num += Hist_print;
1832
1833 /* If the user repeats this command with return, it should do what
1834 "show commands +" does. This is unnecessary if arg is null,
1835 because "show commands +" is not useful after "show commands". */
1836 if (from_tty && args)
1837 set_repeat_arguments ("+");
1838 }
1839
1840 /* Update the size of our command history file to HISTORY_SIZE.
1841
1842 A HISTORY_SIZE of -1 stands for unlimited. */
1843
1844 static void
1845 set_readline_history_size (int history_size)
1846 {
1847 gdb_assert (history_size >= -1);
1848
1849 if (history_size == -1)
1850 unstifle_history ();
1851 else
1852 stifle_history (history_size);
1853 }
1854
1855 /* Called by do_setshow_command. */
1856 static void
1857 set_history_size_command (const char *args,
1858 int from_tty, struct cmd_list_element *c)
1859 {
1860 set_readline_history_size (history_size_setshow_var);
1861 }
1862
1863 void
1864 set_history (const char *args, int from_tty)
1865 {
1866 printf_unfiltered (_("\"set history\" must be followed "
1867 "by the name of a history subcommand.\n"));
1868 help_list (sethistlist, "set history ", all_commands, gdb_stdout);
1869 }
1870
1871 void
1872 show_history (const char *args, int from_tty)
1873 {
1874 cmd_show_list (showhistlist, from_tty, "");
1875 }
1876
1877 bool info_verbose = false; /* Default verbose msgs off. */
1878
1879 /* Called by do_set_command. An elaborate joke. */
1880 void
1881 set_verbose (const char *args, int from_tty, struct cmd_list_element *c)
1882 {
1883 const char *cmdname = "verbose";
1884 struct cmd_list_element *showcmd;
1885
1886 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
1887 gdb_assert (showcmd != NULL && showcmd != CMD_LIST_AMBIGUOUS);
1888
1889 if (c->doc && c->doc_allocated)
1890 xfree ((char *) c->doc);
1891 if (showcmd->doc && showcmd->doc_allocated)
1892 xfree ((char *) showcmd->doc);
1893 if (info_verbose)
1894 {
1895 c->doc = _("Set verbose printing of informational messages.");
1896 showcmd->doc = _("Show verbose printing of informational messages.");
1897 }
1898 else
1899 {
1900 c->doc = _("Set verbosity.");
1901 showcmd->doc = _("Show verbosity.");
1902 }
1903 c->doc_allocated = 0;
1904 showcmd->doc_allocated = 0;
1905 }
1906
1907 /* Init the history buffer. Note that we are called after the init file(s)
1908 have been read so that the user can change the history file via his
1909 .gdbinit file (for instance). The GDBHISTFILE environment variable
1910 overrides all of this. */
1911
1912 void
1913 init_history (void)
1914 {
1915 const char *tmpenv;
1916
1917 tmpenv = getenv ("GDBHISTSIZE");
1918 if (tmpenv)
1919 {
1920 long var;
1921 int saved_errno;
1922 char *endptr;
1923
1924 tmpenv = skip_spaces (tmpenv);
1925 errno = 0;
1926 var = strtol (tmpenv, &endptr, 10);
1927 saved_errno = errno;
1928 endptr = skip_spaces (endptr);
1929
1930 /* If GDBHISTSIZE is non-numeric then ignore it. If GDBHISTSIZE is the
1931 empty string, a negative number or a huge positive number (larger than
1932 INT_MAX) then set the history size to unlimited. Otherwise set our
1933 history size to the number we have read. This behavior is consistent
1934 with how bash handles HISTSIZE. */
1935 if (*endptr != '\0')
1936 ;
1937 else if (*tmpenv == '\0'
1938 || var < 0
1939 || var > INT_MAX
1940 /* On targets where INT_MAX == LONG_MAX, we have to look at
1941 errno after calling strtol to distinguish between a value that
1942 is exactly INT_MAX and an overflowing value that was clamped
1943 to INT_MAX. */
1944 || (var == INT_MAX && saved_errno == ERANGE))
1945 history_size_setshow_var = -1;
1946 else
1947 history_size_setshow_var = var;
1948 }
1949
1950 /* If neither the init file nor GDBHISTSIZE has set a size yet, pick the
1951 default. */
1952 if (history_size_setshow_var == -2)
1953 history_size_setshow_var = 256;
1954
1955 set_readline_history_size (history_size_setshow_var);
1956
1957 tmpenv = getenv ("GDBHISTFILE");
1958 if (tmpenv)
1959 history_filename = xstrdup (tmpenv);
1960 else if (!history_filename)
1961 {
1962 /* We include the current directory so that if the user changes
1963 directories the file written will be the same as the one
1964 that was read. */
1965 #ifdef __MSDOS__
1966 /* No leading dots in file names are allowed on MSDOS. */
1967 history_filename = concat (current_directory, "/_gdb_history",
1968 (char *)NULL);
1969 #else
1970 history_filename = concat (current_directory, "/.gdb_history",
1971 (char *)NULL);
1972 #endif
1973 }
1974 read_history (history_filename);
1975 }
1976
1977 static void
1978 show_prompt (struct ui_file *file, int from_tty,
1979 struct cmd_list_element *c, const char *value)
1980 {
1981 fprintf_filtered (file, _("Gdb's prompt is \"%s\".\n"), value);
1982 }
1983
1984 /* "set editing" command. */
1985
1986 static void
1987 set_editing (const char *args, int from_tty, struct cmd_list_element *c)
1988 {
1989 change_line_handler (set_editing_cmd_var);
1990 /* Update the control variable so that MI's =cmd-param-changed event
1991 shows the correct value. */
1992 set_editing_cmd_var = current_ui->command_editing;
1993 }
1994
1995 static void
1996 show_editing (struct ui_file *file, int from_tty,
1997 struct cmd_list_element *c, const char *value)
1998 {
1999 fprintf_filtered (file, _("Editing of command lines as "
2000 "they are typed is %s.\n"),
2001 current_ui->command_editing ? _("on") : _("off"));
2002 }
2003
2004 static void
2005 show_annotation_level (struct ui_file *file, int from_tty,
2006 struct cmd_list_element *c, const char *value)
2007 {
2008 fprintf_filtered (file, _("Annotation_level is %s.\n"), value);
2009 }
2010
2011 static void
2012 show_exec_done_display_p (struct ui_file *file, int from_tty,
2013 struct cmd_list_element *c, const char *value)
2014 {
2015 fprintf_filtered (file, _("Notification of completion for "
2016 "asynchronous execution commands is %s.\n"),
2017 value);
2018 }
2019
2020 /* New values of the "data-directory" parameter are staged here. */
2021 static char *staged_gdb_datadir;
2022
2023 /* "set" command for the gdb_datadir configuration variable. */
2024
2025 static void
2026 set_gdb_datadir (const char *args, int from_tty, struct cmd_list_element *c)
2027 {
2028 set_gdb_data_directory (staged_gdb_datadir);
2029 gdb::observers::gdb_datadir_changed.notify ();
2030 }
2031
2032 /* "show" command for the gdb_datadir configuration variable. */
2033
2034 static void
2035 show_gdb_datadir (struct ui_file *file, int from_tty,
2036 struct cmd_list_element *c, const char *value)
2037 {
2038 fprintf_filtered (file, _("GDB's data directory is \"%s\".\n"),
2039 gdb_datadir.c_str ());
2040 }
2041
2042 static void
2043 set_history_filename (const char *args,
2044 int from_tty, struct cmd_list_element *c)
2045 {
2046 /* We include the current directory so that if the user changes
2047 directories the file written will be the same as the one
2048 that was read. */
2049 if (!IS_ABSOLUTE_PATH (history_filename))
2050 history_filename = reconcat (history_filename, current_directory, "/",
2051 history_filename, (char *) NULL);
2052 }
2053
2054 static void
2055 init_gdb_version_vars (void)
2056 {
2057 struct internalvar *major_version_var = create_internalvar ("_gdb_major");
2058 struct internalvar *minor_version_var = create_internalvar ("_gdb_minor");
2059 int vmajor = 0, vminor = 0, vrevision = 0;
2060 sscanf (version, "%d.%d.%d", &vmajor, &vminor, &vrevision);
2061 set_internalvar_integer (major_version_var, vmajor);
2062 set_internalvar_integer (minor_version_var, vminor + (vrevision > 0));
2063 }
2064
2065 static void
2066 init_main (void)
2067 {
2068 struct cmd_list_element *c;
2069
2070 /* Initialize the prompt to a simple "(gdb) " prompt or to whatever
2071 the DEFAULT_PROMPT is. */
2072 set_prompt (DEFAULT_PROMPT);
2073
2074 /* Set the important stuff up for command editing. */
2075 command_editing_p = 1;
2076 history_expansion_p = 0;
2077 write_history_p = 0;
2078
2079 /* Setup important stuff for command line editing. */
2080 rl_completion_word_break_hook = gdb_completion_word_break_characters;
2081 rl_attempted_completion_function = gdb_rl_attempted_completion_function;
2082 set_rl_completer_word_break_characters (default_word_break_characters ());
2083 rl_completer_quote_characters = get_gdb_completer_quote_characters ();
2084 rl_completion_display_matches_hook = cli_display_match_list;
2085 rl_readline_name = "gdb";
2086 rl_terminal_name = getenv ("TERM");
2087
2088 /* The name for this defun comes from Bash, where it originated.
2089 15 is Control-o, the same binding this function has in Bash. */
2090 rl_add_defun ("operate-and-get-next", gdb_rl_operate_and_get_next, 15);
2091
2092 add_setshow_string_cmd ("prompt", class_support,
2093 &top_prompt,
2094 _("Set gdb's prompt."),
2095 _("Show gdb's prompt."),
2096 NULL, NULL,
2097 show_prompt,
2098 &setlist, &showlist);
2099
2100 add_com ("dont-repeat", class_support, dont_repeat_command, _("\
2101 Don't repeat this command.\nPrimarily \
2102 used inside of user-defined commands that should not be repeated when\n\
2103 hitting return."));
2104
2105 add_setshow_boolean_cmd ("editing", class_support,
2106 &set_editing_cmd_var, _("\
2107 Set editing of command lines as they are typed."), _("\
2108 Show editing of command lines as they are typed."), _("\
2109 Use \"on\" to enable the editing, and \"off\" to disable it.\n\
2110 Without an argument, command line editing is enabled. To edit, use\n\
2111 EMACS-like or VI-like commands like control-P or ESC."),
2112 set_editing,
2113 show_editing,
2114 &setlist, &showlist);
2115
2116 add_setshow_boolean_cmd ("save", no_class, &write_history_p, _("\
2117 Set saving of the history record on exit."), _("\
2118 Show saving of the history record on exit."), _("\
2119 Use \"on\" to enable the saving, and \"off\" to disable it.\n\
2120 Without an argument, saving is enabled."),
2121 NULL,
2122 show_write_history_p,
2123 &sethistlist, &showhistlist);
2124
2125 add_setshow_zuinteger_unlimited_cmd ("size", no_class,
2126 &history_size_setshow_var, _("\
2127 Set the size of the command history."), _("\
2128 Show the size of the command history."), _("\
2129 This is the number of previous commands to keep a record of.\n\
2130 If set to \"unlimited\", the number of commands kept in the history\n\
2131 list is unlimited. This defaults to the value of the environment\n\
2132 variable \"GDBHISTSIZE\", or to 256 if this variable is not set."),
2133 set_history_size_command,
2134 show_history_size,
2135 &sethistlist, &showhistlist);
2136
2137 add_setshow_zuinteger_unlimited_cmd ("remove-duplicates", no_class,
2138 &history_remove_duplicates, _("\
2139 Set how far back in history to look for and remove duplicate entries."), _("\
2140 Show how far back in history to look for and remove duplicate entries."), _("\
2141 If set to a nonzero value N, GDB will look back at the last N history entries\n\
2142 and remove the first history entry that is a duplicate of the most recent\n\
2143 entry, each time a new history entry is added.\n\
2144 If set to \"unlimited\", this lookbehind is unbounded.\n\
2145 Only history entries added during this session are considered for removal.\n\
2146 If set to 0, removal of duplicate history entries is disabled.\n\
2147 By default this option is set to 0."),
2148 NULL,
2149 show_history_remove_duplicates,
2150 &sethistlist, &showhistlist);
2151
2152 add_setshow_filename_cmd ("filename", no_class, &history_filename, _("\
2153 Set the filename in which to record the command history."), _("\
2154 Show the filename in which to record the command history."), _("\
2155 (the list of previous commands of which a record is kept)."),
2156 set_history_filename,
2157 show_history_filename,
2158 &sethistlist, &showhistlist);
2159
2160 add_setshow_boolean_cmd ("confirm", class_support, &confirm, _("\
2161 Set whether to confirm potentially dangerous operations."), _("\
2162 Show whether to confirm potentially dangerous operations."), NULL,
2163 NULL,
2164 show_confirm,
2165 &setlist, &showlist);
2166
2167 add_setshow_zinteger_cmd ("annotate", class_obscure, &annotation_level, _("\
2168 Set annotation_level."), _("\
2169 Show annotation_level."), _("\
2170 0 == normal; 1 == fullname (for use when running under emacs)\n\
2171 2 == output annotated suitably for use by programs that control GDB."),
2172 NULL,
2173 show_annotation_level,
2174 &setlist, &showlist);
2175
2176 add_setshow_boolean_cmd ("exec-done-display", class_support,
2177 &exec_done_display_p, _("\
2178 Set notification of completion for asynchronous execution commands."), _("\
2179 Show notification of completion for asynchronous execution commands."), _("\
2180 Use \"on\" to enable the notification, and \"off\" to disable it."),
2181 NULL,
2182 show_exec_done_display_p,
2183 &setlist, &showlist);
2184
2185 add_setshow_filename_cmd ("data-directory", class_maintenance,
2186 &staged_gdb_datadir, _("Set GDB's data directory."),
2187 _("Show GDB's data directory."),
2188 _("\
2189 When set, GDB uses the specified path to search for data files."),
2190 set_gdb_datadir, show_gdb_datadir,
2191 &setlist,
2192 &showlist);
2193
2194 add_setshow_auto_boolean_cmd ("interactive-mode", class_support,
2195 &interactive_mode, _("\
2196 Set whether GDB's standard input is a terminal."), _("\
2197 Show whether GDB's standard input is a terminal."), _("\
2198 If on, GDB assumes that standard input is a terminal. In practice, it\n\
2199 means that GDB should wait for the user to answer queries associated to\n\
2200 commands entered at the command prompt. If off, GDB assumes that standard\n\
2201 input is not a terminal, and uses the default answer to all queries.\n\
2202 If auto (the default), determine which mode to use based on the standard\n\
2203 input settings."),
2204 NULL,
2205 show_interactive_mode,
2206 &setlist, &showlist);
2207
2208 c = add_cmd ("new-ui", class_support, new_ui_command, _("\
2209 Create a new UI.\n\
2210 Usage: new-ui INTERPRETER TTY\n\
2211 The first argument is the name of the interpreter to run.\n\
2212 The second argument is the terminal the UI runs on."), &cmdlist);
2213 set_cmd_completer (c, interpreter_completer);
2214 }
2215
2216 void
2217 gdb_init (char *argv0)
2218 {
2219 saved_command_line = xstrdup ("");
2220 previous_saved_command_line = xstrdup ("");
2221
2222 if (pre_init_ui_hook)
2223 pre_init_ui_hook ();
2224
2225 /* Run the init function of each source file. */
2226
2227 #ifdef __MSDOS__
2228 /* Make sure we return to the original directory upon exit, come
2229 what may, since the OS doesn't do that for us. */
2230 make_final_cleanup (do_chdir_cleanup, xstrdup (current_directory));
2231 #endif
2232
2233 init_cmd_lists (); /* This needs to be done first. */
2234 initialize_targets (); /* Setup target_terminal macros for utils.c. */
2235
2236 init_page_info ();
2237
2238 /* Here is where we call all the _initialize_foo routines. */
2239 initialize_all_files ();
2240
2241 /* This creates the current_program_space. Do this after all the
2242 _initialize_foo routines have had a chance to install their
2243 per-sspace data keys. Also do this before
2244 initialize_current_architecture is called, because it accesses
2245 exec_bfd of the current program space. */
2246 initialize_progspace ();
2247 initialize_inferiors ();
2248 initialize_current_architecture ();
2249 init_main (); /* But that omits this file! Do it now. */
2250
2251 initialize_stdin_serial ();
2252
2253 /* Take a snapshot of our tty state before readline/ncurses have had a chance
2254 to alter it. */
2255 set_initial_gdb_ttystate ();
2256
2257 async_init_signals ();
2258
2259 /* We need a default language for parsing expressions, so simple
2260 things like "set width 0" won't fail if no language is explicitly
2261 set in a config file or implicitly set by reading an executable
2262 during startup. */
2263 set_language (language_c);
2264 expected_language = current_language; /* Don't warn about the change. */
2265
2266 /* Python initialization, for example, can require various commands to be
2267 installed. For example "info pretty-printer" needs the "info"
2268 prefix to be installed. Keep things simple and just do final
2269 script initialization here. */
2270 finish_ext_lang_initialization ();
2271
2272 /* Create $_gdb_major and $_gdb_minor convenience variables. */
2273 init_gdb_version_vars ();
2274 }
This page took 0.108976 seconds and 4 git commands to generate.