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