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