PR binutils/11983
[deliverable/binutils-gdb.git] / gdb / top.c
CommitLineData
c906108c 1/* Top level stuff for GDB, the GNU debugger.
a752853e 2
ecd75fc8 3 Copyright (C) 1986-2014 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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
a9762ec7 9 the Free Software Foundation; either version 3 of the License, or
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
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.
c906108c 16
c5aa993b 17 You should have received a copy of the GNU General Public License
a9762ec7 18 along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20#include "defs.h"
21#include "gdbcmd.h"
210661e7
EZ
22#include "cli/cli-cmds.h"
23#include "cli/cli-script.h"
24#include "cli/cli-setshow.h"
18a642a1 25#include "cli/cli-decode.h"
c906108c
SS
26#include "symtab.h"
27#include "inferior.h"
60250e8b 28#include "exceptions.h"
042be3a9 29#include <signal.h>
c906108c 30#include "target.h"
68c765e2 31#include "target-dcache.h"
c906108c
SS
32#include "breakpoint.h"
33#include "gdbtypes.h"
34#include "expression.h"
35#include "value.h"
36#include "language.h"
c5aa993b 37#include "terminal.h" /* For job_control. */
c906108c 38#include "annotate.h"
c5f0f3d0 39#include "completer.h"
c906108c 40#include "top.h"
d4f3574e 41#include "version.h"
210661e7 42#include "serial.h"
d16aafd8 43#include "doublest.h"
f9c696d2 44#include "gdb_assert.h"
f17517ea 45#include "main.h"
2e03ee74 46#include "event-loop.h"
8ea051c5 47#include "gdbthread.h"
9dea9163 48#include "python/python.h"
b4a14fd0 49#include "interps.h"
6dea1fbd 50#include "observer.h"
bd712aed 51#include "maint.h"
97c85fc6 52#include "filenames.h"
c906108c 53
371d5dec 54/* readline include files. */
dbda9972
AC
55#include "readline/readline.h"
56#include "readline/history.h"
c906108c
SS
57
58/* readline defines this. */
59#undef savestring
60
61#include <sys/types.h>
c906108c 62
c2c6d25f 63#include "event-top.h"
0e9f083f 64#include <string.h>
53ce3c39 65#include <sys/stat.h>
c906108c 66#include <ctype.h>
8b93c638
JM
67#include "ui-out.h"
68#include "cli-out.h"
2f9d54cf 69#include "tracepoint.h"
c906108c 70
ca7b0bbc
TT
71extern void initialize_all_files (void);
72
95298e72
PM
73#define PROMPT(X) the_prompts.prompt_stack[the_prompts.top + X].prompt
74#define PREFIX(X) the_prompts.prompt_stack[the_prompts.top + X].prefix
75#define SUFFIX(X) the_prompts.prompt_stack[the_prompts.top + X].suffix
76
371d5dec 77/* Default command line prompt. This is overriden in some configs. */
104c1213
JM
78
79#ifndef DEFAULT_PROMPT
80#define DEFAULT_PROMPT "(gdb) "
c906108c
SS
81#endif
82
e655c1a2 83/* Initialization file name for gdb. This is host-dependent. */
eaae3919 84
e655c1a2 85const char gdbinit[] = GDBINIT;
c906108c
SS
86
87int inhibit_gdbinit = 0;
88
89/* If nonzero, and GDB has been configured to be able to use windows,
90 attempt to open them upon startup. */
91
f15ab4a7 92int use_windows = 0;
c906108c 93
c906108c
SS
94extern char lang_frame_mismatch_warn[]; /* language.c */
95
050a2e1d
PA
96/* Flag for whether we want to confirm potentially dangerous
97 operations. Default is yes. */
98
e360902b 99int confirm = 1;
c906108c 100
920d2a44 101static void
e360902b 102show_confirm (struct ui_file *file, int from_tty,
920d2a44
AC
103 struct cmd_list_element *c, const char *value)
104{
3e43a32a
MS
105 fprintf_filtered (file, _("Whether to confirm potentially "
106 "dangerous operations is %s.\n"),
920d2a44
AC
107 value);
108}
c906108c 109
371d5dec
MS
110/* stdio stream that command input is being read from. Set to stdin
111 normally. Set by source_command to the file we are sourcing. Set
112 to NULL if we are executing a user-defined command or interacting
113 via a GUI. */
c906108c
SS
114
115FILE *instream;
116
698ba934
DJ
117/* Flag to indicate whether a user defined command is currently running. */
118
119int in_user_command;
120
c906108c
SS
121/* Current working directory. */
122
123char *current_directory;
124
125/* The directory name is actually stored here (usually). */
126char gdb_dirbuf[1024];
127
128/* Function to call before reading a command, if nonzero.
129 The function receives two args: an input stream,
130 and a prompt string. */
131
507f3c78 132void (*window_hook) (FILE *, char *);
c906108c 133
c906108c
SS
134/* Buffer used for reading command lines, and the size
135 allocated for it so far. */
136
dc7eb48e
PA
137char *saved_command_line;
138int saved_command_line_size = 100;
c906108c
SS
139
140/* Nonzero if the current command is modified by "server ". This
c2d11a7d 141 affects things like recording into the command history, commands
c906108c
SS
142 repeating on RETURN, etc. This is so a user interface (emacs, GUI,
143 whatever) can issue its own commands and also send along commands
144 from the user, and have the user not notice that the user interface
145 is issuing commands too. */
146int server_command;
147
371d5dec 148/* Timeout limit for response from target. */
c906108c 149
ce808e91
AC
150/* The default value has been changed many times over the years. It
151 was originally 5 seconds. But that was thought to be a long time
152 to sit and wait, so it was changed to 2 seconds. That was thought
153 to be plenty unless the connection was going through some terminal
154 server or multiplexer or other form of hairy serial connection.
155
156 In mid-1996, remote_timeout was moved from remote.c to top.c and
157 it began being used in other remote-* targets. It appears that the
158 default was changed to 20 seconds at that time, perhaps because the
85a453d5 159 Renesas E7000 ICE didn't always respond in a timely manner.
ce808e91
AC
160
161 But if 5 seconds is a long time to sit and wait for retransmissions,
162 20 seconds is far worse. This demonstrates the difficulty of using
163 a single variable for all protocol timeouts.
164
165 As remote.c is used much more than remote-e7000.c, it was changed
371d5dec 166 back to 2 seconds in 1999. */
ce808e91
AC
167
168int remote_timeout = 2;
c906108c
SS
169
170/* Non-zero tells remote* modules to output debugging info. */
171
172int remote_debug = 0;
173
6dd77b81
RH
174/* Sbrk location on entry to main. Used for statistics only. */
175#ifdef HAVE_SBRK
176char *lim_at_start;
177#endif
178
c906108c
SS
179/* Hooks for alternate command interfaces. */
180
371d5dec
MS
181/* Called after most modules have been initialized, but before taking
182 users command file.
1ad24239 183
371d5dec
MS
184 If the UI fails to initialize and it wants GDB to continue using
185 the default UI, then it should clear this hook before returning. */
c906108c 186
9a4105ab 187void (*deprecated_init_ui_hook) (char *argv0);
7a292a7a 188
371d5dec
MS
189/* This hook is called from within gdb's many mini-event loops which
190 could steal control from a real user interface's event loop. It
191 returns non-zero if the user is requesting a detach, zero
192 otherwise. */
7a292a7a 193
98bbd631 194int (*deprecated_ui_loop_hook) (int);
c906108c 195
c906108c 196
c906108c
SS
197/* Called from print_frame_info to list the line we stopped in. */
198
371d5dec
MS
199void (*deprecated_print_frame_info_listing_hook) (struct symtab * s,
200 int line,
201 int stopline,
202 int noerror);
c906108c
SS
203/* Replaces most of query. */
204
9a4105ab 205int (*deprecated_query_hook) (const char *, va_list);
c906108c
SS
206
207/* Replaces most of warning. */
208
9a4105ab 209void (*deprecated_warning_hook) (const char *, va_list);
c906108c 210
9a4105ab
AC
211/* These three functions support getting lines of text from the user.
212 They are used in sequence. First deprecated_readline_begin_hook is
213 called with a text string that might be (for example) a message for
214 the user to type in a sequence of commands to be executed at a
215 breakpoint. If this function calls back to a GUI, it might take
216 this opportunity to pop up a text interaction window with this
217 message. Next, deprecated_readline_hook is called with a prompt
218 that is emitted prior to collecting the user input. It can be
219 called multiple times. Finally, deprecated_readline_end_hook is
220 called to notify the GUI that we are done with the interaction
221 window and it can close it. */
c906108c 222
9a4105ab
AC
223void (*deprecated_readline_begin_hook) (char *, ...);
224char *(*deprecated_readline_hook) (char *);
225void (*deprecated_readline_end_hook) (void);
c906108c 226
6426a772 227/* Called as appropriate to notify the interface that we have attached
371d5dec 228 to or detached from an already running process. */
6426a772 229
9a4105ab
AC
230void (*deprecated_attach_hook) (void);
231void (*deprecated_detach_hook) (void);
6426a772 232
371d5dec
MS
233/* Called during long calculations to allow GUI to repair window
234 damage, and to check for stop buttons, etc... */
c906108c 235
9a4105ab 236void (*deprecated_interactive_hook) (void);
c906108c 237
c378eb4e 238/* Tell the GUI someone changed the register REGNO. -1 means
c906108c 239 that the caller does not know which register changed or
371d5dec 240 that several registers have changed (see value_assign). */
9a4105ab 241void (*deprecated_register_changed_hook) (int regno);
c906108c 242
371d5dec
MS
243/* Called when going to wait for the target. Usually allows the GUI
244 to run while waiting for target events. */
c906108c 245
9a4105ab 246ptid_t (*deprecated_target_wait_hook) (ptid_t ptid,
47608cb1
PA
247 struct target_waitstatus *status,
248 int options);
c906108c 249
371d5dec
MS
250/* Used by UI as a wrapper around command execution. May do various
251 things like enabling/disabling buttons, etc... */
c906108c 252
371d5dec
MS
253void (*deprecated_call_command_hook) (struct cmd_list_element * c,
254 char *cmd, int from_tty);
c906108c 255
96baa820
JM
256/* Called after a `set' command has finished. Is only run if the
257 `set' command succeeded. */
258
9a4105ab 259void (*deprecated_set_hook) (struct cmd_list_element * c);
96baa820 260
c906108c
SS
261/* Called when the current thread changes. Argument is thread id. */
262
9a4105ab 263void (*deprecated_context_hook) (int id);
c906108c 264
c906108c
SS
265/* Handler for SIGHUP. */
266
267#ifdef SIGHUP
392a587b 268/* NOTE 1999-04-29: This function will be static again, once we modify
cd0fc7c3 269 gdb to use the event loop as the default command loop and we merge
c378eb4e 270 event-top.c into this file, top.c. */
b2cd6b29
JM
271/* static */ void
272quit_cover (void)
c906108c 273{
e360902b
PA
274 /* Stop asking user for confirmation --- we're exiting. This
275 prevents asking the user dumb questions. */
276 confirm = 0;
c5aa993b 277 quit_command ((char *) 0, 0);
c906108c
SS
278}
279#endif /* defined SIGHUP */
280\f
7a9dd1b2 281/* Line number we are currently in, in a file which is being sourced. */
392a587b 282/* NOTE 1999-04-29: This variable will be static again, once we modify
cd0fc7c3 283 gdb to use the event loop as the default command loop and we merge
c378eb4e 284 event-top.c into this file, top.c. */
cd0fc7c3 285/* static */ int source_line_number;
c906108c
SS
286
287/* Name of the file we are sourcing. */
392a587b 288/* NOTE 1999-04-29: This variable will be static again, once we modify
cd0fc7c3 289 gdb to use the event loop as the default command loop and we merge
c378eb4e 290 event-top.c into this file, top.c. */
05159abe 291/* static */ const char *source_file_name;
c906108c 292
c906108c
SS
293/* Clean up on error during a "source" command (or execution of a
294 user-defined command). */
295
d318976c 296void
e41a3b1a 297do_restore_instream_cleanup (void *stream)
c906108c
SS
298{
299 /* Restore the previous input stream. */
300 instream = stream;
301}
302
303/* Read commands from STREAM. */
304void
fba45db2 305read_command_file (FILE *stream)
c906108c
SS
306{
307 struct cleanup *cleanups;
308
e41a3b1a 309 cleanups = make_cleanup (do_restore_instream_cleanup, instream);
c906108c 310 instream = stream;
c5aa993b 311 command_loop ();
c906108c
SS
312 do_cleanups (cleanups);
313}
314\f
507f3c78 315void (*pre_init_ui_hook) (void);
c906108c 316
e41a3b1a 317#ifdef __MSDOS__
70976b65 318static void
e41a3b1a
AC
319do_chdir_cleanup (void *old_dir)
320{
321 chdir (old_dir);
b8c9b27d 322 xfree (old_dir);
e41a3b1a
AC
323}
324#endif
325
028d0ed5 326struct cleanup *
4e5d721f
DE
327prepare_execute_command (void)
328{
028d0ed5
TJB
329 struct value *mark;
330 struct cleanup *cleanup;
331
332 mark = value_mark ();
333 cleanup = make_cleanup_value_free_to_mark (mark);
4e5d721f 334
371d5dec
MS
335 /* With multiple threads running while the one we're examining is
336 stopped, the dcache can get stale without us being able to detect
337 it. For the duration of the command, though, use the dcache to
338 help things like backtrace. */
4e5d721f
DE
339 if (non_stop)
340 target_dcache_invalidate ();
028d0ed5
TJB
341
342 return cleanup;
4e5d721f
DE
343}
344
77cce10f
PA
345/* Tell the user if the language has changed (except first time) after
346 executing a command. */
347
348void
349check_frame_language_change (void)
350{
351 static int warned = 0;
352
353 /* First make sure that a new frame has been selected, in case the
354 command or the hooks changed the program state. */
355 deprecated_safe_get_selected_frame ();
356 if (current_language != expected_language)
357 {
358 if (language_mode == language_mode_auto && info_verbose)
359 {
360 language_info (1); /* Print what changed. */
361 }
362 warned = 0;
363 }
364
365 /* Warn the user if the working language does not match the language
366 of the current frame. Only warn the user if we are actually
367 running the program, i.e. there is a stack. */
368 /* FIXME: This should be cacheing the frame and only running when
369 the frame changes. */
370
371 if (has_stack_frames ())
372 {
373 enum language flang;
374
375 flang = get_frame_language ();
376 if (!warned
377 && flang != language_unknown
378 && flang != current_language->la_language)
379 {
380 printf_filtered ("%s\n", lang_frame_mismatch_warn);
381 warned = 1;
382 }
383 }
384}
385
648bf667 386/* Execute the line P as a command, in the current user context.
d318976c 387 Pass FROM_TTY as second argument to the defining function. */
c906108c 388
d318976c
FN
389void
390execute_command (char *p, int from_tty)
c906108c 391{
353d1d73 392 struct cleanup *cleanup_if_error, *cleanup;
52f0bd74 393 struct cmd_list_element *c;
d318976c 394 char *line;
4e5d721f 395
353d1d73 396 cleanup_if_error = make_bpstat_clear_actions_cleanup ();
028d0ed5 397 cleanup = prepare_execute_command ();
c906108c 398
d318976c
FN
399 /* Force cleanup of any alloca areas if using C alloca instead of
400 a builtin alloca. */
401 alloca (0);
c906108c 402
d318976c
FN
403 /* This can happen when command_line_input hits end of file. */
404 if (p == NULL)
5fe41fbf
TT
405 {
406 do_cleanups (cleanup);
5ae85e44 407 discard_cleanups (cleanup_if_error);
5fe41fbf
TT
408 return;
409 }
c906108c 410
49d03eab 411 target_log_command (p);
8b93c638 412
d318976c
FN
413 while (*p == ' ' || *p == '\t')
414 p++;
415 if (*p)
8b93c638 416 {
6f937416 417 const char *cmd = p;
d318976c
FN
418 char *arg;
419 line = p;
8b93c638 420
16026cd7
AS
421 /* If trace-commands is set then this will print this command. */
422 print_command_trace (p);
423
6f937416
PA
424 c = lookup_cmd (&cmd, cmdlist, "", 0, 1);
425 p = (char *) cmd;
8b93c638 426
d318976c
FN
427 /* Pass null arg rather than an empty one. */
428 arg = *p ? p : 0;
8b93c638 429
9f60d481
AC
430 /* FIXME: cagney/2002-02-02: The c->type test is pretty dodgy
431 while the is_complete_command(cfunc) test is just plain
432 bogus. They should both be replaced by a test of the form
433 c->strip_trailing_white_space_p. */
434 /* NOTE: cagney/2002-02-02: The function.cfunc in the below
435 can't be replaced with func. This is because it is the
436 cfunc, and not the func, that has the value that the
437 is_complete_command hack is testing for. */
438 /* Clear off trailing whitespace, except for set and complete
439 command. */
d318976c
FN
440 if (arg
441 && c->type != set_cmd
bbaca940 442 && !is_complete_command (c))
8b93c638 443 {
d318976c
FN
444 p = arg + strlen (arg) - 1;
445 while (p >= arg && (*p == ' ' || *p == '\t'))
446 p--;
447 *(p + 1) = '\0';
8b93c638
JM
448 }
449
371d5dec 450 /* If this command has been pre-hooked, run the hook first. */
5913bcb0 451 execute_cmd_pre_hook (c);
c906108c 452
d318976c 453 if (c->flags & DEPRECATED_WARN_USER)
6f937416 454 deprecated_cmd_warning (line);
c906108c 455
7d74f244
DE
456 /* c->user_commands would be NULL in the case of a python command. */
457 if (c->class == class_user && c->user_commands)
d318976c 458 execute_user_command (c, arg);
5b9afe8a
YQ
459 else if (c->type == set_cmd)
460 do_set_command (arg, from_tty, c);
461 else if (c->type == show_cmd)
462 do_show_command (arg, from_tty, c);
f436dd25 463 else if (!cmd_func_p (c))
8a3fe4f8 464 error (_("That is not a command, just a help topic."));
9a4105ab 465 else if (deprecated_call_command_hook)
050a2e1d 466 deprecated_call_command_hook (c, arg, from_tty);
d318976c 467 else
050a2e1d 468 cmd_func (c, arg, from_tty);
b4a14fd0
PA
469
470 /* If the interpreter is in sync mode (we're running a user
471 command's list, running command hooks or similars), and we
472 just ran a synchronous command that started the target, wait
473 for that command to end. */
0f641c01 474 if (!interpreter_async && sync_execution)
b4a14fd0
PA
475 {
476 while (gdb_do_one_event () >= 0)
477 if (!sync_execution)
478 break;
479 }
480
371d5dec 481 /* If this command has been post-hooked, run the hook last. */
5913bcb0 482 execute_cmd_post_hook (c);
c906108c 483
c906108c
SS
484 }
485
77cce10f 486 check_frame_language_change ();
028d0ed5 487
353d1d73
JK
488 do_cleanups (cleanup);
489 discard_cleanups (cleanup_if_error);
c906108c
SS
490}
491
5da1313b
JK
492/* Run execute_command for P and FROM_TTY. Capture its output into the
493 returned string, do not display it to the screen. BATCH_FLAG will be
494 temporarily set to true. */
495
496char *
497execute_command_to_string (char *p, int from_tty)
498{
499 struct ui_file *str_file;
500 struct cleanup *cleanup;
501 char *retval;
502
503 /* GDB_STDOUT should be better already restored during these
504 restoration callbacks. */
505 cleanup = set_batch_flag_and_make_cleanup_restore_page_info ();
506
b4a14fd0
PA
507 make_cleanup_restore_integer (&interpreter_async);
508 interpreter_async = 0;
509
5da1313b
JK
510 str_file = mem_fileopen ();
511
8d4d924b 512 make_cleanup_ui_file_delete (str_file);
5da1313b
JK
513 make_cleanup_restore_ui_file (&gdb_stdout);
514 make_cleanup_restore_ui_file (&gdb_stderr);
8d4d924b
JK
515 make_cleanup_restore_ui_file (&gdb_stdlog);
516 make_cleanup_restore_ui_file (&gdb_stdtarg);
517 make_cleanup_restore_ui_file (&gdb_stdtargerr);
518
79a45e25 519 if (ui_out_redirect (current_uiout, str_file) < 0)
8d4d924b
JK
520 warning (_("Current output protocol does not support redirection"));
521 else
79a45e25 522 make_cleanup_ui_out_redirect_pop (current_uiout);
5da1313b
JK
523
524 gdb_stdout = str_file;
525 gdb_stderr = str_file;
8d4d924b
JK
526 gdb_stdlog = str_file;
527 gdb_stdtarg = str_file;
528 gdb_stdtargerr = str_file;
5da1313b
JK
529
530 execute_command (p, from_tty);
531
532 retval = ui_file_xstrdup (str_file, NULL);
533
534 do_cleanups (cleanup);
535
536 return retval;
537}
538
d318976c
FN
539/* Read commands from `instream' and execute them
540 until end of file or error reading instream. */
c906108c 541
d318976c
FN
542void
543command_loop (void)
c906108c 544{
d318976c
FN
545 struct cleanup *old_chain;
546 char *command;
547 int stdin_is_tty = ISATTY (stdin);
c5aa993b 548
d318976c
FN
549 while (instream && !feof (instream))
550 {
d318976c 551 if (window_hook && instream == stdin)
ab821bc6 552 (*window_hook) (instream, get_prompt ());
c906108c 553
522002f9 554 clear_quit_flag ();
d318976c
FN
555 if (instream == stdin && stdin_is_tty)
556 reinitialize_more_filter ();
557 old_chain = make_cleanup (null_cleanup, 0);
c906108c 558
c378eb4e 559 /* Get a command-line. This calls the readline package. */
d318976c 560 command = command_line_input (instream == stdin ?
ab821bc6 561 get_prompt () : (char *) NULL,
d318976c 562 instream == stdin, "prompt");
d318976c 563 if (command == 0)
5fe41fbf
TT
564 {
565 do_cleanups (old_chain);
566 return;
567 }
c906108c 568
0f3bb72e 569 make_command_stats_cleanup (1);
9e0b60a8 570
d318976c 571 execute_command (command, instream == stdin);
347bddb7
PA
572
573 /* Do any commands attached to breakpoint we are stopped at. */
574 bpstat_do_actions ();
575
d318976c 576 do_cleanups (old_chain);
9e0b60a8 577 }
9e0b60a8 578}
d318976c 579\f
47a80e90
TT
580/* When nonzero, cause dont_repeat to do nothing. This should only be
581 set via prevent_dont_repeat. */
582
583static int suppress_dont_repeat = 0;
584
d318976c 585/* Commands call this if they do not want to be repeated by null lines. */
9e0b60a8 586
d318976c
FN
587void
588dont_repeat (void)
9e0b60a8 589{
47a80e90 590 if (suppress_dont_repeat || server_command)
d318976c 591 return;
9e0b60a8 592
d318976c 593 /* If we aren't reading from standard input, we are saving the last
371d5dec
MS
594 thing read from stdin in line and don't want to delete it. Null
595 lines won't repeat here in any case. */
d318976c 596 if (instream == stdin)
dc7eb48e 597 *saved_command_line = 0;
9e0b60a8 598}
47a80e90
TT
599
600/* Prevent dont_repeat from working, and return a cleanup that
601 restores the previous state. */
602
603struct cleanup *
604prevent_dont_repeat (void)
605{
606 struct cleanup *result = make_cleanup_restore_integer (&suppress_dont_repeat);
607
608 suppress_dont_repeat = 1;
609 return result;
610}
611
d318976c
FN
612\f
613/* Read a line from the stream "instream" without command line editing.
9e0b60a8 614
d318976c
FN
615 It prints PROMPT_ARG once at the start.
616 Action is compatible with "readline", e.g. space for the result is
617 malloc'd and should be freed by the caller.
9e0b60a8 618
d318976c
FN
619 A NULL return means end of file. */
620char *
621gdb_readline (char *prompt_arg)
9e0b60a8 622{
d318976c
FN
623 int c;
624 char *result;
625 int input_index = 0;
626 int result_size = 80;
9e0b60a8 627
d318976c 628 if (prompt_arg)
9e0b60a8 629 {
d318976c
FN
630 /* Don't use a _filtered function here. It causes the assumed
631 character position to be off, since the newline we read from
632 the user is not accounted for. */
633 fputs_unfiltered (prompt_arg, gdb_stdout);
9e0b60a8
JM
634 gdb_flush (gdb_stdout);
635 }
636
d318976c 637 result = (char *) xmalloc (result_size);
9e0b60a8
JM
638
639 while (1)
640 {
d318976c
FN
641 /* Read from stdin if we are executing a user defined command.
642 This is the right thing for prompt_for_continue, at least. */
643 c = fgetc (instream ? instream : stdin);
9e0b60a8 644
d318976c 645 if (c == EOF)
9e0b60a8 646 {
d318976c
FN
647 if (input_index > 0)
648 /* The last line does not end with a newline. Return it, and
649 if we are called again fgetc will still return EOF and
650 we'll return NULL then. */
9e0b60a8 651 break;
b8c9b27d 652 xfree (result);
d318976c 653 return NULL;
9e0b60a8 654 }
c5aa993b 655
d318976c 656 if (c == '\n')
9e0b60a8 657 {
d318976c
FN
658 if (input_index > 0 && result[input_index - 1] == '\r')
659 input_index--;
660 break;
9e0b60a8 661 }
9e0b60a8 662
d318976c
FN
663 result[input_index++] = c;
664 while (input_index >= result_size)
9e0b60a8 665 {
d318976c
FN
666 result_size *= 2;
667 result = (char *) xrealloc (result, result_size);
9e0b60a8 668 }
9e0b60a8
JM
669 }
670
d318976c
FN
671 result[input_index++] = '\0';
672 return result;
9e0b60a8
JM
673}
674
d318976c
FN
675/* Variables which control command line editing and history
676 substitution. These variables are given default values at the end
677 of this file. */
678static int command_editing_p;
920d2a44 679
d318976c
FN
680/* NOTE 1999-04-29: This variable will be static again, once we modify
681 gdb to use the event loop as the default command loop and we merge
c378eb4e 682 event-top.c into this file, top.c. */
920d2a44 683
d318976c 684/* static */ int history_expansion_p;
920d2a44 685
d318976c 686static int write_history_p;
920d2a44
AC
687static void
688show_write_history_p (struct ui_file *file, int from_tty,
689 struct cmd_list_element *c, const char *value)
690{
691 fprintf_filtered (file, _("Saving of the history record on exit is %s.\n"),
692 value);
693}
694
840a9a1f
PA
695/* The variable associated with the "set/show history size"
696 command. */
697static unsigned int history_size_setshow_var;
698
920d2a44
AC
699static void
700show_history_size (struct ui_file *file, int from_tty,
701 struct cmd_list_element *c, const char *value)
702{
703 fprintf_filtered (file, _("The size of the command history is %s.\n"),
704 value);
705}
706
d318976c 707static char *history_filename;
920d2a44
AC
708static void
709show_history_filename (struct ui_file *file, int from_tty,
710 struct cmd_list_element *c, const char *value)
711{
3e43a32a
MS
712 fprintf_filtered (file, _("The filename in which to record "
713 "the command history is \"%s\".\n"),
920d2a44
AC
714 value);
715}
9e0b60a8 716
b4f5539f 717/* This is like readline(), but it has some gdb-specific behavior.
2e03ee74 718 gdb may want readline in both the synchronous and async modes during
b4f5539f
TT
719 a single gdb invocation. At the ordinary top-level prompt we might
720 be using the async readline. That means we can't use
721 rl_pre_input_hook, since it doesn't work properly in async mode.
722 However, for a secondary prompt (" >", such as occurs during a
2e03ee74
DJ
723 `define'), gdb wants a synchronous response.
724
725 We used to call readline() directly, running it in synchronous
726 mode. But mixing modes this way is not supported, and as of
727 readline 5.x it no longer works; the arrow keys come unbound during
728 the synchronous call. So we make a nested call into the event
729 loop. That's what gdb_readline_wrapper is for. */
730
731/* A flag set as soon as gdb_readline_wrapper_line is called; we can't
732 rely on gdb_readline_wrapper_result, which might still be NULL if
733 the user types Control-D for EOF. */
734static int gdb_readline_wrapper_done;
735
736/* The result of the current call to gdb_readline_wrapper, once a newline
737 is seen. */
738static char *gdb_readline_wrapper_result;
739
740/* Any intercepted hook. Operate-and-get-next sets this, expecting it
741 to be called after the newline is processed (which will redisplay
742 the prompt). But in gdb_readline_wrapper we will not get a new
743 prompt until the next call, or until we return to the event loop.
744 So we disable this hook around the newline and restore it before we
745 return. */
746static void (*saved_after_char_processing_hook) (void);
747
748/* This function is called when readline has seen a complete line of
749 text. */
750
751static void
752gdb_readline_wrapper_line (char *line)
753{
754 gdb_assert (!gdb_readline_wrapper_done);
755 gdb_readline_wrapper_result = line;
756 gdb_readline_wrapper_done = 1;
757
758 /* Prevent operate-and-get-next from acting too early. */
759 saved_after_char_processing_hook = after_char_processing_hook;
760 after_char_processing_hook = NULL;
1b05479a
DJ
761
762 /* Prevent parts of the prompt from being redisplayed if annotations
763 are enabled, and readline's state getting out of sync. */
764 if (async_command_editing_p)
765 rl_callback_handler_remove ();
2e03ee74
DJ
766}
767
768struct gdb_readline_wrapper_cleanup
769 {
770 void (*handler_orig) (char *);
2e03ee74
DJ
771 int already_prompted_orig;
772 };
773
774static void
775gdb_readline_wrapper_cleanup (void *arg)
776{
777 struct gdb_readline_wrapper_cleanup *cleanup = arg;
778
2e03ee74 779 rl_already_prompted = cleanup->already_prompted_orig;
2e03ee74
DJ
780
781 gdb_assert (input_handler == gdb_readline_wrapper_line);
782 input_handler = cleanup->handler_orig;
783 gdb_readline_wrapper_result = NULL;
784 gdb_readline_wrapper_done = 0;
785
786 after_char_processing_hook = saved_after_char_processing_hook;
787 saved_after_char_processing_hook = NULL;
788
789 xfree (cleanup);
790}
791
b4f5539f
TT
792char *
793gdb_readline_wrapper (char *prompt)
794{
2e03ee74
DJ
795 struct cleanup *back_to;
796 struct gdb_readline_wrapper_cleanup *cleanup;
797 char *retval;
798
799 cleanup = xmalloc (sizeof (*cleanup));
800 cleanup->handler_orig = input_handler;
801 input_handler = gdb_readline_wrapper_line;
802
2e03ee74
DJ
803 cleanup->already_prompted_orig = rl_already_prompted;
804
805 back_to = make_cleanup (gdb_readline_wrapper_cleanup, cleanup);
806
807 /* Display our prompt and prevent double prompt display. */
1b05479a 808 display_gdb_prompt (prompt);
2e03ee74
DJ
809 rl_already_prompted = 1;
810
362646f5 811 if (after_char_processing_hook)
2e03ee74
DJ
812 (*after_char_processing_hook) ();
813 gdb_assert (after_char_processing_hook == NULL);
814
e0dd0826 815 while (gdb_do_one_event () >= 0)
2e03ee74
DJ
816 if (gdb_readline_wrapper_done)
817 break;
b4f5539f 818
2e03ee74
DJ
819 retval = gdb_readline_wrapper_result;
820 do_cleanups (back_to);
821 return retval;
b4f5539f
TT
822}
823
9e0b60a8 824\f
467d8519
TT
825/* The current saved history number from operate-and-get-next.
826 This is -1 if not valid. */
827static int operate_saved_history = -1;
828
829/* This is put on the appropriate hook and helps operate-and-get-next
830 do its work. */
b9362cc7 831static void
5ae5f592 832gdb_rl_operate_and_get_next_completion (void)
467d8519
TT
833{
834 int delta = where_history () - operate_saved_history;
5d502164 835
467d8519
TT
836 /* The `key' argument to rl_get_previous_history is ignored. */
837 rl_get_previous_history (delta, 0);
838 operate_saved_history = -1;
839
840 /* readline doesn't automatically update the display for us. */
12f4afab 841 rl_redisplay ();
467d8519
TT
842
843 after_char_processing_hook = NULL;
844 rl_pre_input_hook = NULL;
845}
846
847/* This is a gdb-local readline command handler. It accepts the
848 current command line (like RET does) and, if this command was taken
849 from the history, arranges for the next command in the history to
850 appear on the command line when the prompt returns.
851 We ignore the arguments. */
852static int
853gdb_rl_operate_and_get_next (int count, int key)
854{
b5686e99
MK
855 int where;
856
362646f5
AC
857 /* Use the async hook. */
858 after_char_processing_hook = gdb_rl_operate_and_get_next_completion;
467d8519 859
b5686e99
MK
860 /* Find the current line, and find the next line to use. */
861 where = where_history();
862
1fb2e2b5
PA
863 if ((history_is_stifled () && (history_length >= history_max_entries))
864 || (where >= history_length - 1))
b5686e99
MK
865 operate_saved_history = where;
866 else
867 operate_saved_history = where + 1;
868
467d8519
TT
869 return rl_newline (1, key);
870}
871\f
d318976c
FN
872/* Read one line from the command input stream `instream'
873 into the local static buffer `linebuffer' (whose current length
874 is `linelength').
875 The buffer is made bigger as necessary.
876 Returns the address of the start of the line.
9e0b60a8 877
d318976c 878 NULL is returned for end of file.
9e0b60a8 879
d318976c
FN
880 *If* the instream == stdin & stdin is a terminal, the line read
881 is copied into the file line saver (global var char *line,
882 length linesize) so that it can be duplicated.
9e0b60a8 883
d318976c
FN
884 This routine either uses fancy command line editing or
885 simple input as the user has requested. */
10689f25 886
d318976c
FN
887char *
888command_line_input (char *prompt_arg, int repeat, char *annotation_suffix)
9e0b60a8 889{
d318976c
FN
890 static char *linebuffer = 0;
891 static unsigned linelength = 0;
52f0bd74 892 char *p;
d318976c
FN
893 char *p1;
894 char *rl;
895 char *local_prompt = prompt_arg;
896 char *nline;
897 char got_eof = 0;
898
899 /* The annotation suffix must be non-NULL. */
900 if (annotation_suffix == NULL)
901 annotation_suffix = "";
9e0b60a8 902
d318976c
FN
903 if (annotation_level > 1 && instream == stdin)
904 {
905 local_prompt = alloca ((prompt_arg == NULL ? 0 : strlen (prompt_arg))
906 + strlen (annotation_suffix) + 40);
907 if (prompt_arg == NULL)
908 local_prompt[0] = '\0';
909 else
910 strcpy (local_prompt, prompt_arg);
911 strcat (local_prompt, "\n\032\032");
912 strcat (local_prompt, annotation_suffix);
913 strcat (local_prompt, "\n");
914 }
9e0b60a8 915
d318976c 916 if (linebuffer == 0)
9e0b60a8 917 {
d318976c
FN
918 linelength = 80;
919 linebuffer = (char *) xmalloc (linelength);
9e0b60a8 920 }
9e0b60a8 921
d318976c 922 p = linebuffer;
9e0b60a8 923
d318976c
FN
924 /* Control-C quits instantly if typed while in this loop
925 since it should not wait until the user types a newline. */
926 immediate_quit++;
522002f9 927 QUIT;
d318976c
FN
928#ifdef STOP_SIGNAL
929 if (job_control)
362646f5 930 signal (STOP_SIGNAL, handle_stop_sig);
d318976c
FN
931#endif
932
933 while (1)
9e0b60a8 934 {
371d5dec
MS
935 /* Make sure that all output has been output. Some machines may
936 let you get away with leaving out some of the gdb_flush, but
937 not all. */
d318976c
FN
938 wrap_here ("");
939 gdb_flush (gdb_stdout);
940 gdb_flush (gdb_stderr);
941
942 if (source_file_name != NULL)
637537d0 943 ++source_line_number;
d318976c
FN
944
945 if (annotation_level > 1 && instream == stdin)
946 {
306d9ac5
DC
947 puts_unfiltered ("\n\032\032pre-");
948 puts_unfiltered (annotation_suffix);
949 puts_unfiltered ("\n");
d318976c
FN
950 }
951
952 /* Don't use fancy stuff if not talking to stdin. */
698ba934 953 if (deprecated_readline_hook && input_from_terminal_p ())
d318976c 954 {
9a4105ab 955 rl = (*deprecated_readline_hook) (local_prompt);
d318976c 956 }
698ba934 957 else if (command_editing_p && input_from_terminal_p ())
d318976c 958 {
b4f5539f 959 rl = gdb_readline_wrapper (local_prompt);
d318976c 960 }
9e0b60a8 961 else
d318976c
FN
962 {
963 rl = gdb_readline (local_prompt);
964 }
9e0b60a8 965
d318976c
FN
966 if (annotation_level > 1 && instream == stdin)
967 {
306d9ac5
DC
968 puts_unfiltered ("\n\032\032post-");
969 puts_unfiltered (annotation_suffix);
970 puts_unfiltered ("\n");
d318976c 971 }
9e0b60a8 972
d318976c 973 if (!rl || rl == (char *) EOF)
9e0b60a8 974 {
d318976c
FN
975 got_eof = 1;
976 break;
9e0b60a8 977 }
d318976c
FN
978 if (strlen (rl) + 1 + (p - linebuffer) > linelength)
979 {
980 linelength = strlen (rl) + 1 + (p - linebuffer);
981 nline = (char *) xrealloc (linebuffer, linelength);
982 p += nline - linebuffer;
983 linebuffer = nline;
984 }
985 p1 = rl;
986 /* Copy line. Don't copy null at end. (Leaves line alone
371d5dec 987 if this was just a newline). */
d318976c
FN
988 while (*p1)
989 *p++ = *p1++;
9e0b60a8 990
b8c9b27d 991 xfree (rl); /* Allocated in readline. */
9e0b60a8 992
d318976c
FN
993 if (p == linebuffer || *(p - 1) != '\\')
994 break;
9e0b60a8 995
d318976c
FN
996 p--; /* Put on top of '\'. */
997 local_prompt = (char *) 0;
998 }
9e0b60a8 999
d318976c
FN
1000#ifdef STOP_SIGNAL
1001 if (job_control)
1002 signal (STOP_SIGNAL, SIG_DFL);
1003#endif
1004 immediate_quit--;
9e0b60a8 1005
d318976c
FN
1006 if (got_eof)
1007 return NULL;
9e0b60a8 1008
d318976c
FN
1009#define SERVER_COMMAND_LENGTH 7
1010 server_command =
1011 (p - linebuffer > SERVER_COMMAND_LENGTH)
bf896cb0 1012 && strncmp (linebuffer, "server ", SERVER_COMMAND_LENGTH) == 0;
d318976c 1013 if (server_command)
9e0b60a8 1014 {
d318976c
FN
1015 /* Note that we don't set `line'. Between this and the check in
1016 dont_repeat, this insures that repeating will still do the
1017 right thing. */
1018 *p = '\0';
1019 return linebuffer + SERVER_COMMAND_LENGTH;
9e0b60a8 1020 }
9e0b60a8 1021
d318976c
FN
1022 /* Do history expansion if that is wished. */
1023 if (history_expansion_p && instream == stdin
1024 && ISATTY (instream))
1025 {
1026 char *history_value;
1027 int expanded;
9e0b60a8 1028
d318976c
FN
1029 *p = '\0'; /* Insert null now. */
1030 expanded = history_expand (linebuffer, &history_value);
1031 if (expanded)
1032 {
1033 /* Print the changes. */
1034 printf_unfiltered ("%s\n", history_value);
9e0b60a8 1035
d318976c
FN
1036 /* If there was an error, call this function again. */
1037 if (expanded < 0)
1038 {
b8c9b27d 1039 xfree (history_value);
3e43a32a
MS
1040 return command_line_input (prompt_arg, repeat,
1041 annotation_suffix);
d318976c
FN
1042 }
1043 if (strlen (history_value) > linelength)
1044 {
1045 linelength = strlen (history_value) + 1;
1046 linebuffer = (char *) xrealloc (linebuffer, linelength);
1047 }
1048 strcpy (linebuffer, history_value);
1049 p = linebuffer + strlen (linebuffer);
d318976c 1050 }
91d2803c 1051 xfree (history_value);
d318976c 1052 }
9e0b60a8 1053
371d5dec
MS
1054 /* If we just got an empty line, and that is supposed to repeat the
1055 previous command, return the value in the global buffer. */
d318976c 1056 if (repeat && p == linebuffer)
dc7eb48e 1057 return saved_command_line;
d318976c
FN
1058 for (p1 = linebuffer; *p1 == ' ' || *p1 == '\t'; p1++);
1059 if (repeat && !*p1)
dc7eb48e 1060 return saved_command_line;
9e0b60a8 1061
d318976c 1062 *p = 0;
9e0b60a8 1063
d318976c 1064 /* Add line to history if appropriate. */
840da61a 1065 if (*linebuffer && input_from_terminal_p ())
d318976c 1066 add_history (linebuffer);
9e0b60a8 1067
d318976c
FN
1068 /* Note: lines consisting solely of comments are added to the command
1069 history. This is useful when you type a command, and then
1070 realize you don't want to execute it quite yet. You can comment
1071 out the command and then later fetch it from the value history
1072 and remove the '#'. The kill ring is probably better, but some
1073 people are in the habit of commenting things out. */
1074 if (*p1 == '#')
371d5dec 1075 *p1 = '\0'; /* Found a comment. */
9e0b60a8 1076
d318976c
FN
1077 /* Save into global buffer if appropriate. */
1078 if (repeat)
1079 {
dc7eb48e 1080 if (linelength > saved_command_line_size)
d318976c 1081 {
dc7eb48e
PA
1082 saved_command_line = xrealloc (saved_command_line, linelength);
1083 saved_command_line_size = linelength;
d318976c 1084 }
dc7eb48e
PA
1085 strcpy (saved_command_line, linebuffer);
1086 return saved_command_line;
d318976c 1087 }
9e0b60a8 1088
d318976c 1089 return linebuffer;
9e0b60a8
JM
1090}
1091\f
371d5dec 1092/* Print the GDB banner. */
9e0b60a8 1093void
fba45db2 1094print_gdb_version (struct ui_file *stream)
9e0b60a8
JM
1095{
1096 /* From GNU coding standards, first line is meant to be easy for a
1097 program to parse, and is just canonical program name and version
371d5dec 1098 number, which starts after last space. */
9e0b60a8 1099
c16158bc 1100 fprintf_filtered (stream, "GNU gdb %s%s\n", PKGVERSION, version);
9e0b60a8 1101
371d5dec 1102 /* Second line is a copyright notice. */
9e0b60a8 1103
3e43a32a 1104 fprintf_filtered (stream,
28498c42 1105 "Copyright (C) 2014 Free Software Foundation, Inc.\n");
9e0b60a8
JM
1106
1107 /* Following the copyright is a brief statement that the program is
1108 free software, that users are free to copy and change it on
1109 certain conditions, that it is covered by the GNU GPL, and that
371d5dec 1110 there is no warranty. */
9e0b60a8
JM
1111
1112 fprintf_filtered (stream, "\
3e43a32a
MS
1113License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\
1114\nThis is free software: you are free to change and redistribute it.\n\
0b93d57c 1115There is NO WARRANTY, to the extent permitted by law. Type \"show copying\"\n\
b8533aec 1116and \"show warranty\" for details.\n");
9e0b60a8 1117
371d5dec 1118 /* After the required info we print the configuration information. */
9e0b60a8
JM
1119
1120 fprintf_filtered (stream, "This GDB was configured as \"");
6314a349 1121 if (strcmp (host_name, target_name) != 0)
9e0b60a8 1122 {
3e43a32a
MS
1123 fprintf_filtered (stream, "--host=%s --target=%s",
1124 host_name, target_name);
9e0b60a8
JM
1125 }
1126 else
1127 {
1128 fprintf_filtered (stream, "%s", host_name);
1129 }
6eaaf48b
EZ
1130 fprintf_filtered (stream, "\".\n\
1131Type \"show configuration\" for configuration details.");
c16158bc
JM
1132
1133 if (REPORT_BUGS_TO[0])
1134 {
6eaaf48b 1135 fprintf_filtered (stream,
c16158bc 1136 _("\nFor bug reporting instructions, please see:\n"));
1cf55f60 1137 fprintf_filtered (stream, "%s.\n", REPORT_BUGS_TO);
c16158bc 1138 }
1cf55f60
PM
1139 fprintf_filtered (stream,
1140 _("Find the GDB manual and other documentation \
1141resources online at:\n<http://www.gnu.org/software/gdb/documentation/>.\n"));
1142 fprintf_filtered (stream, _("For help, type \"help\".\n"));
1143 fprintf_filtered (stream, _("Type \"apropos word\" to search for \
af4c453a 1144commands related to \"word\"."));
9e0b60a8 1145}
6eaaf48b
EZ
1146
1147/* Print the details of GDB build-time configuration. */
1148void
1149print_gdb_configuration (struct ui_file *stream)
1150{
1151 fprintf_filtered (stream, _("\
1152This GDB was configured as follows:\n\
1153 configure --host=%s --target=%s\n\
1154"), host_name, target_name);
1155 fprintf_filtered (stream, _("\
1156 --with-auto-load-dir=%s\n\
1157 --with-auto-load-safe-path=%s\n\
1158"), AUTO_LOAD_DIR, AUTO_LOAD_SAFE_PATH);
1159#if HAVE_LIBEXPAT
1160 fprintf_filtered (stream, _("\
1161 --with-expat\n\
1162"));
1163#else
1164 fprintf_filtered (stream, _("\
1165 --without-expat\n\
1166"));
1167#endif
1168 if (GDB_DATADIR[0])
1169 fprintf_filtered (stream, _("\
1170 --with-gdb-datadir=%s%s\n\
1171"), GDB_DATADIR, GDB_DATADIR_RELOCATABLE ? " (relocatable)" : "");
1172#ifdef ICONV_BIN
1173 fprintf_filtered (stream, _("\
1174 --with-iconv-bin=%s%s\n\
1175"), ICONV_BIN, ICONV_BIN_RELOCATABLE ? " (relocatable)" : "");
1176#endif
1177 if (JIT_READER_DIR[0])
1178 fprintf_filtered (stream, _("\
1179 --with-jit-reader-dir=%s%s\n\
1180"), JIT_READER_DIR, JIT_READER_DIR_RELOCATABLE ? " (relocatable)" : "");
1181#if HAVE_LIBUNWIND_IA64_H
1182 fprintf_filtered (stream, _("\
1183 --with-libunwind-ia64\n\
1184"));
1185#else
1186 fprintf_filtered (stream, _("\
1187 --without-libunwind-ia64\n\
1188"));
1189#endif
1190#if HAVE_LIBLZMA
1191 fprintf_filtered (stream, _("\
1192 --with-lzma\n\
1193"));
1194#else
1195 fprintf_filtered (stream, _("\
1196 --without-lzma\n\
1197"));
1198#endif
1199#ifdef WITH_PYTHON_PATH
1200 fprintf_filtered (stream, _("\
1201 --with-python=%s%s\n\
1202"), WITH_PYTHON_PATH, PYTHON_PATH_RELOCATABLE ? " (relocatable)" : "");
1203#endif
1204#ifdef RELOC_SRCDIR
1205 fprintf_filtered (stream, _("\
1206 --with-relocated-sources=%s\n\
1207"), RELOC_SRCDIR);
1208#endif
1209 if (DEBUGDIR[0])
1210 fprintf_filtered (stream, _("\
1211 --with-separate-debug-dir=%s%s\n\
1212"), DEBUGDIR, DEBUGDIR_RELOCATABLE ? " (relocatable)" : "");
1213 if (TARGET_SYSTEM_ROOT[0])
1214 fprintf_filtered (stream, _("\
1215 --with-sysroot=%s%s\n\
1216"), TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT_RELOCATABLE ? " (relocatable)" : "");
1217 if (SYSTEM_GDBINIT[0])
1218 fprintf_filtered (stream, _("\
1219 --with-system-gdbinit=%s%s\n\
1220"), SYSTEM_GDBINIT, SYSTEM_GDBINIT_RELOCATABLE ? " (relocatable)" : "");
1221#if HAVE_ZLIB_H
1222 fprintf_filtered (stream, _("\
1223 --with-zlib\n\
1224"));
1225#else
1226 fprintf_filtered (stream, _("\
1227 --without-zlib\n\
1228"));
1229#endif
ab116149
YQ
1230#if HAVE_LIBBABELTRACE
1231 fprintf_filtered (stream, _("\
1232 --with-babeltrace\n\
1233"));
1234#else
1235 fprintf_filtered (stream, _("\
1236 --without-babeltrace\n\
1237"));
1238#endif
48d1d6f5
EZ
1239 /* We assume "relocatable" will be printed at least once, thus we always
1240 print this text. It's a reasonably safe assumption for now. */
1241 fprintf_filtered (stream, _("\n\
1242(\"Relocatable\" means the directory can be moved with the GDB installation\n\
1243tree, and GDB will still find it.)\n\
1244"));
6eaaf48b 1245}
9e0b60a8 1246\f
95298e72 1247
ab821bc6
PA
1248/* The current top level prompt, settable with "set prompt", and/or
1249 with the python `gdb.prompt_hook' hook. */
1250static char *top_prompt;
9e0b60a8 1251
ab821bc6 1252/* Access method for the GDB prompt string. */
95298e72
PM
1253
1254char *
ab821bc6 1255get_prompt (void)
95298e72 1256{
ab821bc6 1257 return top_prompt;
95298e72
PM
1258}
1259
ab821bc6 1260/* Set method for the GDB prompt string. */
95298e72
PM
1261
1262void
ab821bc6 1263set_prompt (const char *s)
95298e72 1264{
ab821bc6 1265 char *p = xstrdup (s);
95298e72 1266
ab821bc6
PA
1267 xfree (top_prompt);
1268 top_prompt = p;
9e0b60a8 1269}
9e0b60a8 1270\f
c5aa993b 1271
b0abbc58 1272struct qt_args
9e0b60a8 1273{
b0abbc58
JJ
1274 char *args;
1275 int from_tty;
1276};
9e0b60a8 1277
54a012c9
PA
1278/* Callback for iterate_over_inferiors. Kills or detaches the given
1279 inferior, depending on how we originally gained control of it. */
1280
1281static int
1282kill_or_detach (struct inferior *inf, void *args)
1283{
1284 struct qt_args *qt = args;
1285 struct thread_info *thread;
1286
6c95b8df
PA
1287 if (inf->pid == 0)
1288 return 0;
1289
b8fa0bfa
PA
1290 thread = any_thread_of_process (inf->pid);
1291 if (thread != NULL)
9e0b60a8 1292 {
54a012c9 1293 switch_to_thread (thread->ptid);
c35b1492
PA
1294
1295 /* Leave core files alone. */
1296 if (target_has_execution)
1297 {
1298 if (inf->attach_flag)
1299 target_detach (qt->args, qt->from_tty);
1300 else
1301 target_kill ();
1302 }
9e0b60a8
JM
1303 }
1304
54a012c9
PA
1305 return 0;
1306}
1307
b8fa0bfa
PA
1308/* Callback for iterate_over_inferiors. Prints info about what GDB
1309 will do to each inferior on a "quit". ARG points to a struct
1310 ui_out where output is to be collected. */
1311
1312static int
1313print_inferior_quit_action (struct inferior *inf, void *arg)
1314{
1315 struct ui_file *stb = arg;
1316
6c95b8df
PA
1317 if (inf->pid == 0)
1318 return 0;
1319
b8fa0bfa
PA
1320 if (inf->attach_flag)
1321 fprintf_filtered (stb,
1322 _("\tInferior %d [%s] will be detached.\n"), inf->num,
1323 target_pid_to_str (pid_to_ptid (inf->pid)));
1324 else
1325 fprintf_filtered (stb,
1326 _("\tInferior %d [%s] will be killed.\n"), inf->num,
1327 target_pid_to_str (pid_to_ptid (inf->pid)));
1328
1329 return 0;
1330}
1331
1332/* If necessary, make the user confirm that we should quit. Return
1333 non-zero if we should quit, zero if we shouldn't. */
1334
1335int
1336quit_confirm (void)
1337{
1338 struct ui_file *stb;
1339 struct cleanup *old_chain;
1340 char *str;
1341 int qr;
1342
1343 /* Don't even ask if we're only debugging a core file inferior. */
1344 if (!have_live_inferiors ())
1345 return 1;
1346
1347 /* Build the query string as a single string. */
1348 stb = mem_fileopen ();
1349 old_chain = make_cleanup_ui_file_delete (stb);
1350
5a5d8ead
AB
1351 fprintf_filtered (stb, _("A debugging session is active.\n\n"));
1352 iterate_over_inferiors (print_inferior_quit_action, stb);
1353 fprintf_filtered (stb, _("\nQuit anyway? "));
b8fa0bfa
PA
1354
1355 str = ui_file_xstrdup (stb, NULL);
1356 make_cleanup (xfree, str);
1357
1358 qr = query ("%s", str);
1359 do_cleanups (old_chain);
1360 return qr;
1361}
1362
b0abbc58
JJ
1363/* Quit without asking for confirmation. */
1364
1365void
1366quit_force (char *args, int from_tty)
1367{
1368 int exit_code = 0;
365c70b1 1369 struct qt_args qt;
2f9d54cf 1370 volatile struct gdb_exception ex;
b0abbc58
JJ
1371
1372 /* An optional expression may be used to cause gdb to terminate with the
371d5dec 1373 value of that expression. */
b0abbc58
JJ
1374 if (args)
1375 {
1376 struct value *val = parse_and_eval (args);
1377
1378 exit_code = (int) value_as_long (val);
1379 }
4b0ad762
AS
1380 else if (return_child_result)
1381 exit_code = return_child_result_value;
b0abbc58 1382
365c70b1
JJ
1383 qt.args = args;
1384 qt.from_tty = from_tty;
1385
2f9d54cf
PA
1386 /* Wrappers to make the code below a bit more readable. */
1387#define DO_TRY \
1388 TRY_CATCH (ex, RETURN_MASK_ALL)
1389
1390#define DO_PRINT_EX \
1391 if (ex.reason < 0) \
1392 exception_print (gdb_stderr, ex)
1393
b0abbc58 1394 /* We want to handle any quit errors and exit regardless. */
2f9d54cf
PA
1395
1396 /* Get out of tfind mode, and kill or detach all inferiors. */
1397 DO_TRY
1398 {
1399 disconnect_tracing ();
1400 iterate_over_inferiors (kill_or_detach, &qt);
1401 }
1402 DO_PRINT_EX;
1403
1404 /* Give all pushed targets a chance to do minimal cleanup, and pop
1405 them all out. */
1406 DO_TRY
1407 {
1408 pop_all_targets ();
1409 }
1410 DO_PRINT_EX;
1411
1412 /* Save the history information if it is appropriate to do so. */
1413 DO_TRY
1414 {
35ab155d
MB
1415 if (write_history_p && history_filename
1416 && input_from_terminal_p ())
2f9d54cf
PA
1417 write_history (history_filename);
1418 }
1419 DO_PRINT_EX;
1420
1421 /* Do any final cleanups before exiting. */
1422 DO_TRY
1423 {
1424 do_final_cleanups (all_cleanups ());
1425 }
1426 DO_PRINT_EX;
b0abbc58 1427
9e0b60a8
JM
1428 exit (exit_code);
1429}
1430
698ba934
DJ
1431/* Returns whether GDB is running on a terminal and input is
1432 currently coming from that terminal. */
9e0b60a8
JM
1433
1434int
fba45db2 1435input_from_terminal_p (void)
9e0b60a8 1436{
c63a1f86
JK
1437 if (batch_flag)
1438 return 0;
1439
698ba934
DJ
1440 if (gdb_has_a_terminal () && instream == stdin)
1441 return 1;
1442
1443 /* If INSTREAM is unset, and we are not in a user command, we
1444 must be in Insight. That's like having a terminal, for our
1445 purposes. */
1446 if (instream == NULL && !in_user_command)
1447 return 1;
1448
1449 return 0;
9e0b60a8
JM
1450}
1451\f
9e0b60a8 1452static void
fba45db2 1453dont_repeat_command (char *ignored, int from_tty)
9e0b60a8 1454{
dc7eb48e
PA
1455 /* Can't call dont_repeat here because we're not necessarily reading
1456 from stdin. */
1457 *saved_command_line = 0;
9e0b60a8
JM
1458}
1459\f
1460/* Functions to manipulate command line editing control variables. */
1461
1462/* Number of commands to print in each call to show_commands. */
1463#define Hist_print 10
d318976c 1464void
fba45db2 1465show_commands (char *args, int from_tty)
9e0b60a8
JM
1466{
1467 /* Index for history commands. Relative to history_base. */
1468 int offset;
1469
1470 /* Number of the history entry which we are planning to display next.
1471 Relative to history_base. */
1472 static int num = 0;
1473
9e0b60a8 1474 /* Print out some of the commands from the command history. */
9e0b60a8
JM
1475
1476 if (args)
1477 {
1478 if (args[0] == '+' && args[1] == '\0')
1479 /* "info editing +" should print from the stored position. */
1480 ;
1481 else
1482 /* "info editing <exp>" should print around command number <exp>. */
0e828ed1 1483 num = (parse_and_eval_long (args) - history_base) - Hist_print / 2;
9e0b60a8
JM
1484 }
1485 /* "show commands" means print the last Hist_print commands. */
1486 else
1487 {
840a9a1f 1488 num = history_length - Hist_print;
9e0b60a8
JM
1489 }
1490
1491 if (num < 0)
1492 num = 0;
1493
1494 /* If there are at least Hist_print commands, we want to display the last
1495 Hist_print rather than, say, the last 6. */
840a9a1f 1496 if (history_length - num < Hist_print)
9e0b60a8 1497 {
840a9a1f 1498 num = history_length - Hist_print;
9e0b60a8
JM
1499 if (num < 0)
1500 num = 0;
1501 }
1502
840a9a1f
PA
1503 for (offset = num;
1504 offset < num + Hist_print && offset < history_length;
1505 offset++)
9e0b60a8
JM
1506 {
1507 printf_filtered ("%5d %s\n", history_base + offset,
c5aa993b 1508 (history_get (history_base + offset))->line);
9e0b60a8
JM
1509 }
1510
1511 /* The next command we want to display is the next one that we haven't
1512 displayed yet. */
1513 num += Hist_print;
1514
1515 /* If the user repeats this command with return, it should do what
1516 "show commands +" does. This is unnecessary if arg is null,
1517 because "show commands +" is not useful after "show commands". */
1518 if (from_tty && args)
1519 {
1520 args[0] = '+';
1521 args[1] = '\0';
1522 }
1523}
1524
1525/* Called by do_setshow_command. */
9e0b60a8 1526static void
fba45db2 1527set_history_size_command (char *args, int from_tty, struct cmd_list_element *c)
9e0b60a8 1528{
840a9a1f
PA
1529 /* Readline's history interface works with 'int', so it can only
1530 handle history sizes up to INT_MAX. The command itself is
1531 uinteger, so UINT_MAX means "unlimited", but we only get that if
1532 the user does "set history size 0" -- "set history size <UINT_MAX>"
1533 throws out-of-range. */
1534 if (history_size_setshow_var > INT_MAX
1535 && history_size_setshow_var != UINT_MAX)
9e0b60a8 1536 {
840a9a1f
PA
1537 unsigned int new_value = history_size_setshow_var;
1538
1539 /* Restore previous value before throwing. */
1540 if (history_is_stifled ())
1541 history_size_setshow_var = history_max_entries;
1542 else
1543 history_size_setshow_var = UINT_MAX;
1544
1545 error (_("integer %u out of range"), new_value);
9e0b60a8 1546 }
840a9a1f
PA
1547
1548 /* Commit the new value to readline's history. */
1549 if (history_size_setshow_var == UINT_MAX)
1550 unstifle_history ();
883b9c6c 1551 else
840a9a1f 1552 stifle_history (history_size_setshow_var);
9e0b60a8
JM
1553}
1554
d318976c 1555void
fba45db2 1556set_history (char *args, int from_tty)
9e0b60a8 1557{
3e43a32a
MS
1558 printf_unfiltered (_("\"set history\" must be followed "
1559 "by the name of a history subcommand.\n"));
9e0b60a8
JM
1560 help_list (sethistlist, "set history ", -1, gdb_stdout);
1561}
1562
d318976c 1563void
fba45db2 1564show_history (char *args, int from_tty)
9e0b60a8
JM
1565{
1566 cmd_show_list (showhistlist, from_tty, "");
1567}
1568
371d5dec 1569int info_verbose = 0; /* Default verbose msgs off. */
9e0b60a8
JM
1570
1571/* Called by do_setshow_command. An elaborate joke. */
d318976c 1572void
fba45db2 1573set_verbose (char *args, int from_tty, struct cmd_list_element *c)
9e0b60a8 1574{
6f937416 1575 const char *cmdname = "verbose";
9e0b60a8
JM
1576 struct cmd_list_element *showcmd;
1577
1578 showcmd = lookup_cmd_1 (&cmdname, showlist, NULL, 1);
1427fe5e 1579 gdb_assert (showcmd != NULL && showcmd != CMD_LIST_AMBIGUOUS);
9e0b60a8
JM
1580
1581 if (info_verbose)
1582 {
1583 c->doc = "Set verbose printing of informational messages.";
1584 showcmd->doc = "Show verbose printing of informational messages.";
1585 }
1586 else
1587 {
1588 c->doc = "Set verbosity.";
1589 showcmd->doc = "Show verbosity.";
1590 }
1591}
1592
9e0b60a8 1593/* Init the history buffer. Note that we are called after the init file(s)
371d5dec
MS
1594 have been read so that the user can change the history file via his
1595 .gdbinit file (for instance). The GDBHISTFILE environment variable
1596 overrides all of this. */
9e0b60a8
JM
1597
1598void
fba45db2 1599init_history (void)
9e0b60a8
JM
1600{
1601 char *tmpenv;
1602
1603 tmpenv = getenv ("HISTSIZE");
1604 if (tmpenv)
840a9a1f
PA
1605 {
1606 int var;
1607
1608 var = atoi (tmpenv);
1609 if (var < 0)
1610 {
1611 /* Prefer ending up with no history rather than overflowing
1612 readline's history interface, which uses signed 'int'
1613 everywhere. */
1614 var = 0;
1615 }
1616
1617 history_size_setshow_var = var;
1618 }
1619 /* If the init file hasn't set a size yet, pick the default. */
1620 else if (history_size_setshow_var == 0)
1621 history_size_setshow_var = 256;
9e0b60a8 1622
840a9a1f
PA
1623 /* Note that unlike "set history size 0", "HISTSIZE=0" really sets
1624 the history size to 0... */
1625 stifle_history (history_size_setshow_var);
9e0b60a8
JM
1626
1627 tmpenv = getenv ("GDBHISTFILE");
1628 if (tmpenv)
1b36a34b 1629 history_filename = xstrdup (tmpenv);
c5aa993b
JM
1630 else if (!history_filename)
1631 {
1632 /* We include the current directory so that if the user changes
1633 directories the file written will be the same as the one
1634 that was read. */
a0b3c4fd 1635#ifdef __MSDOS__
eb2f494a 1636 /* No leading dots in file names are allowed on MSDOS. */
1754f103
MK
1637 history_filename = concat (current_directory, "/_gdb_history",
1638 (char *)NULL);
a0b3c4fd 1639#else
1754f103
MK
1640 history_filename = concat (current_directory, "/.gdb_history",
1641 (char *)NULL);
a0b3c4fd 1642#endif
c5aa993b 1643 }
9e0b60a8
JM
1644 read_history (history_filename);
1645}
1646
920d2a44 1647static void
ab821bc6
PA
1648show_prompt (struct ui_file *file, int from_tty,
1649 struct cmd_list_element *c, const char *value)
920d2a44
AC
1650{
1651 fprintf_filtered (file, _("Gdb's prompt is \"%s\".\n"), value);
1652}
1653
1654static void
1655show_async_command_editing_p (struct ui_file *file, int from_tty,
1656 struct cmd_list_element *c, const char *value)
1657{
3e43a32a
MS
1658 fprintf_filtered (file, _("Editing of command lines as "
1659 "they are typed is %s.\n"),
920d2a44
AC
1660 value);
1661}
1662
1663static void
1664show_annotation_level (struct ui_file *file, int from_tty,
1665 struct cmd_list_element *c, const char *value)
1666{
1667 fprintf_filtered (file, _("Annotation_level is %s.\n"), value);
1668}
1669
1670static void
1671show_exec_done_display_p (struct ui_file *file, int from_tty,
1672 struct cmd_list_element *c, const char *value)
1673{
3e43a32a
MS
1674 fprintf_filtered (file, _("Notification of completion for "
1675 "asynchronous execution commands is %s.\n"),
920d2a44
AC
1676 value);
1677}
6dea1fbd
JK
1678
1679/* "set" command for the gdb_datadir configuration variable. */
1680
1681static void
1682set_gdb_datadir (char *args, int from_tty, struct cmd_list_element *c)
1683{
1684 observer_notify_gdb_datadir_changed ();
1685}
1686
97c85fc6
MB
1687static void
1688set_history_filename (char *args, int from_tty, struct cmd_list_element *c)
1689{
1690 /* We include the current directory so that if the user changes
1691 directories the file written will be the same as the one
1692 that was read. */
1693 if (!IS_ABSOLUTE_PATH (history_filename))
1694 history_filename = reconcat (history_filename, current_directory, "/",
1695 history_filename, (char *) NULL);
1696}
1697
9e0b60a8 1698static void
fba45db2 1699init_main (void)
9e0b60a8 1700{
ab821bc6
PA
1701 /* Initialize the prompt to a simple "(gdb) " prompt or to whatever
1702 the DEFAULT_PROMPT is. */
1703 set_prompt (DEFAULT_PROMPT);
1704
362646f5
AC
1705 /* Set things up for annotation_level > 1, if the user ever decides
1706 to use it. */
1707 async_annotation_suffix = "prompt";
362646f5 1708
9e0b60a8
JM
1709 /* Set the important stuff up for command editing. */
1710 command_editing_p = 1;
9e0b60a8 1711 history_expansion_p = 0;
452a569e 1712 write_history_p = 0;
9e0b60a8
JM
1713
1714 /* Setup important stuff for command line editing. */
67c296a2 1715 rl_completion_word_break_hook = gdb_completion_word_break_characters;
38017ce8 1716 rl_completion_entry_function = readline_line_completion_function;
51065942 1717 rl_completer_word_break_characters = default_word_break_characters ();
d318976c 1718 rl_completer_quote_characters = get_gdb_completer_quote_characters ();
9e0b60a8 1719 rl_readline_name = "gdb";
7cb3ec5e 1720 rl_terminal_name = getenv ("TERM");
9e0b60a8 1721
467d8519
TT
1722 /* The name for this defun comes from Bash, where it originated.
1723 15 is Control-o, the same binding this function has in Bash. */
1724 rl_add_defun ("operate-and-get-next", gdb_rl_operate_and_get_next, 15);
1725
4d28ad1e 1726 add_setshow_string_cmd ("prompt", class_support,
ab821bc6 1727 &top_prompt,
3e43a32a
MS
1728 _("Set gdb's prompt"),
1729 _("Show gdb's prompt"),
ab821bc6
PA
1730 NULL, NULL,
1731 show_prompt,
4d28ad1e 1732 &setlist, &showlist);
9e0b60a8 1733
1bedd215 1734 add_com ("dont-repeat", class_support, dont_repeat_command, _("\
3e43a32a
MS
1735Don't repeat this command.\nPrimarily \
1736used inside of user-defined commands that should not be repeated when\n\
1bedd215 1737hitting return."));
9e0b60a8 1738
5bf193a2
AC
1739 add_setshow_boolean_cmd ("editing", class_support,
1740 &async_command_editing_p, _("\
1741Set editing of command lines as they are typed."), _("\
1742Show editing of command lines as they are typed."), _("\
9e0b60a8
JM
1743Use \"on\" to enable the editing, and \"off\" to disable it.\n\
1744Without an argument, command line editing is enabled. To edit, use\n\
5bf193a2
AC
1745EMACS-like or VI-like commands like control-P or ESC."),
1746 set_async_editing_command,
920d2a44 1747 show_async_command_editing_p,
5bf193a2
AC
1748 &setlist, &showlist);
1749
1750 add_setshow_boolean_cmd ("save", no_class, &write_history_p, _("\
1751Set saving of the history record on exit."), _("\
1752Show saving of the history record on exit."), _("\
9e0b60a8 1753Use \"on\" to enable the saving, and \"off\" to disable it.\n\
5bf193a2
AC
1754Without an argument, saving is enabled."),
1755 NULL,
920d2a44 1756 show_write_history_p,
5bf193a2 1757 &sethistlist, &showhistlist);
9e0b60a8 1758
840a9a1f 1759 add_setshow_uinteger_cmd ("size", no_class, &history_size_setshow_var, _("\
4d28ad1e
AC
1760Set the size of the command history,"), _("\
1761Show the size of the command history,"), _("\
f81d1120
PA
1762ie. the number of previous commands to keep a record of.\n\
1763If set to \"unlimited\", the number of commands kept in the history\n\
1764list is unlimited. This defaults to the value of the environment\n\
1765variable \"HISTSIZE\", or to 256 if this variable is not set."),
883b9c6c
YQ
1766 set_history_size_command,
1767 show_history_size,
1768 &sethistlist, &showhistlist);
4d28ad1e
AC
1769
1770 add_setshow_filename_cmd ("filename", no_class, &history_filename, _("\
1771Set the filename in which to record the command history"), _("\
1772Show the filename in which to record the command history"), _("\
1773(the list of previous commands of which a record is kept)."),
97c85fc6 1774 set_history_filename,
920d2a44 1775 show_history_filename,
4d28ad1e 1776 &sethistlist, &showhistlist);
9e0b60a8 1777
e360902b 1778 add_setshow_boolean_cmd ("confirm", class_support, &confirm, _("\
5bf193a2
AC
1779Set whether to confirm potentially dangerous operations."), _("\
1780Show whether to confirm potentially dangerous operations."), NULL,
1781 NULL,
e360902b 1782 show_confirm,
5bf193a2 1783 &setlist, &showlist);
9e0b60a8 1784
85c07804
AC
1785 add_setshow_zinteger_cmd ("annotate", class_obscure, &annotation_level, _("\
1786Set annotation_level."), _("\
1787Show annotation_level."), _("\
9e0b60a8 17880 == normal; 1 == fullname (for use when running under emacs)\n\
85c07804 17892 == output annotated suitably for use by programs that control GDB."),
ab821bc6 1790 NULL,
920d2a44 1791 show_annotation_level,
85c07804 1792 &setlist, &showlist);
362646f5 1793
5bf193a2
AC
1794 add_setshow_boolean_cmd ("exec-done-display", class_support,
1795 &exec_done_display_p, _("\
1796Set notification of completion for asynchronous execution commands."), _("\
1797Show notification of completion for asynchronous execution commands."), _("\
1798Use \"on\" to enable the notification, and \"off\" to disable it."),
1799 NULL,
920d2a44 1800 show_exec_done_display_p,
5bf193a2 1801 &setlist, &showlist);
b14b1491
TT
1802
1803 add_setshow_filename_cmd ("data-directory", class_maintenance,
1804 &gdb_datadir, _("Set GDB's data directory."),
1805 _("Show GDB's data directory."),
1806 _("\
1807When set, GDB uses the specified path to search for data files."),
6dea1fbd 1808 set_gdb_datadir, NULL,
b14b1491
TT
1809 &setlist,
1810 &showlist);
9e0b60a8 1811}
64cdedad
EZ
1812
1813void
1814gdb_init (char *argv0)
1815{
1816 if (pre_init_ui_hook)
1817 pre_init_ui_hook ();
1818
371d5dec 1819 /* Run the init function of each source file. */
64cdedad 1820
64cdedad
EZ
1821#ifdef __MSDOS__
1822 /* Make sure we return to the original directory upon exit, come
1823 what may, since the OS doesn't do that for us. */
1824 make_final_cleanup (do_chdir_cleanup, xstrdup (current_directory));
1825#endif
1826
371d5dec
MS
1827 init_cmd_lists (); /* This needs to be done first. */
1828 initialize_targets (); /* Setup target_terminal macros for utils.c. */
1829 initialize_utils (); /* Make errors and warnings possible. */
9dea9163
DE
1830
1831 /* Here is where we call all the _initialize_foo routines. */
64cdedad 1832 initialize_all_files ();
9dea9163 1833
6c95b8df
PA
1834 /* This creates the current_program_space. Do this after all the
1835 _initialize_foo routines have had a chance to install their
1836 per-sspace data keys. Also do this before
1837 initialize_current_architecture is called, because it accesses
1838 exec_bfd of the current program space. */
1839 initialize_progspace ();
1840 initialize_inferiors ();
64cdedad
EZ
1841 initialize_current_architecture ();
1842 init_cli_cmds();
843b20dc 1843 initialize_event_loop ();
371d5dec 1844 init_main (); /* But that omits this file! Do it now. */
64cdedad 1845
0ea3f30e
DJ
1846 initialize_stdin_serial ();
1847
362646f5 1848 async_init_signals ();
64cdedad 1849
371d5dec
MS
1850 /* We need a default language for parsing expressions, so simple
1851 things like "set width 0" won't fail if no language is explicitly
1852 set in a config file or implicitly set by reading an executable
1853 during startup. */
64cdedad 1854 set_language (language_c);
371d5dec 1855 expected_language = current_language; /* Don't warn about the change. */
64cdedad 1856
c378eb4e 1857 /* Allow another UI to initialize. If the UI fails to initialize,
9a4105ab
AC
1858 and it wants GDB to revert to the CLI, it should clear
1859 deprecated_init_ui_hook. */
1860 if (deprecated_init_ui_hook)
1861 deprecated_init_ui_hook (argv0);
9dea9163
DE
1862
1863#ifdef HAVE_PYTHON
371d5dec
MS
1864 /* Python initialization can require various commands to be
1865 installed. For example "info pretty-printer" needs the "info"
1866 prefix to be installed. Keep things simple and just do final
1867 python initialization here. */
9dea9163
DE
1868 finish_python_initialization ();
1869#endif
64cdedad 1870}
This page took 1.565658 seconds and 4 git commands to generate.